@charset "utf-8";
/* CSS Document */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i, form,
dl, dt, dd, ol, ul, li,
fieldset, legend,
table, caption, tbody, tfoot, thead, tr, th,
article, aside, dialog, figure, footer, header,
hgroup, menu, nav, section,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
}
article, aside, dialog, figure, footer, header,
hgroup, nav, section {
	display:block;
}
nav ul {
	list-style:none;
}
blockquote, q {
	quotes:none;
}
table{border-collapse:collapse;}
blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}
em{ font-style:normal;}
strong{
	font-weight: bold;
}
a{
	color: rgba(47,102,160,1.00);
}
p{
	font-size: 16px;
	line-height: 1.6em;
}
th{
	font-weight: normal;
	text-align: left;
}
body{
	margin:0;
	padding: 0;
	font-family:sans-serif;
	font-weight: 300;
}
main img{max-width: 100%; height: auto;}
/*----------------------------------------------------------- Header-*/
.header{
	background-color: #2f2c76;
	width: 100%;
	position: fixed;
 font-family: "Shippori Mincho B1", serif;
 font-weight: 400;
	z-index: 100;
}
.header .inner{
	margin: 0 auto;
	padding: 5px 0;
	width: 1100px;
	position: relative;
	display: flex;
	justify-content: flex-start;
}
.head-logo{
	padding: 3px 0 0 0;
}
.head-logo a{
	width:140px;
	height: 45px;
	display: block;
	background: url("../images/common/yakushizi-logo.png") no-repeat;
	background-size: contain;
	text-indent: 100%;
	overflow: hidden;
	white-space: nowrap;
	transition: ease 0.2s;
}
.head-logo a:hover{
	opacity: 0.7;
}
.head-nav ul{
	width: 900px;
	display: flex;
	justify-content:flex-end;
	padding: 12px 0 0 0px;
}
.head-nav ul li{}
.head-nav ul li a{
	padding: 0 15px;
	text-decoration: none;
	color: #e3e3ed;
	transition: ease 0.2s;
}
.head-nav ul li:nth-child(2){
	border-right: #e3e3ed 1px dotted;
	border-left: #e3e3ed 1px dotted;
}
.head-nav ul li a:hover{
	color: #BCBCDD;
}

@media screen and (max-width: 768px) {
.header .inner{
	width: 100%;
}
.head-logo{
	padding: 0 0 0 0;
}
.head-logo a{
	width:110px;
	height: 32px;
	display: block;
	background-position: top right;
}
.head-nav ul{
	display: none;
}



}
/*----------------------------------------------------------NAV-*/
.hamburger {
	display: block;
	position: absolute;
	right: 0px;
	top: 16px;
	width: 50px;
	height: 50px;
	cursor: pointer;
	border-radius: 5px;
	z-index: 3100;
}
.hamburger:before{
	content: 'MENU';
	color: #EBEDFB;
	position: absolute;
	top: -8px;
	font-size: 10px;
	width: 50px;
	text-align: center;
	font-family: Arial, Helvetica, "sans-serif";
	}
.ham_line {
	position: absolute;
	width: 30px;
	height: 2px;
	left: 10px;
	background-color: #E5E7F7;
}
.ham_line1 { top: 10px; transition: ease 0.3s;}
.ham_line2 { top: 18px; transition: ease 0.3s;}
.ham_line3 { top: 26px; transition: ease 0.3s;}
.open .ham_line{background-color: #E5E7F7 !important;}
.open .ham_line1 {
	-webkit-transform: rotate(220deg);
  transform: rotate(225deg);
  top: 18px;
}
.open .ham_line2 {
  -webkit-transform: translateY(0) rotate(-45deg);
  transform: translateY(0) rotate(-45deg);
}
.open .ham_line3 {
 opacity: 0;
}
nav.hnav{
	margin: 0 auto;
	position: fixed;
	opacity: 0;
	top: 0;
	right: -100%;
	width: 60%;
	height: calc(100vh - 80px);
	background-color: #38355c;
	background-image: url("../images/common/cloud3.png");
	background-repeat: no-repeat;
	background-position: left 30px;
	padding: 100px 0 0 70px;
	transition: all 0.5s;
	overflow-y: auto;
	z-index: 1000;
	box-sizing: border-box;
	border-radius: 0 0 0 30px;
}
.open .hnav {
	opacity: 1;
	right: 0;
}
.hnav ul{
	justify-content:flex-start;
	width: 100%;
	line-height: inherit;
	flex-wrap: wrap;
}
.hnav ul li a{
	display: block;
	white-space: nowrap;
	text-align: left;
	color: #E5E7F7;
	font-size: 20px;
	font-weight: 400;
	transition: ease .3s;
	padding: 6px 0 6px 10px;
	text-decoration: none;
	border-bottom: #7299bd 1px dotted;
}
.hnav ul li a:hover{
	background-color: #3F3E78;
	text-indent: 15px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
}
.open .black-bg {
  opacity: 0.5;
  visibility: visible;
}
@media screen and (max-width: 768px) {
.hamburger {
	right: 5px;
	top: 8px;
	width: 45px;
	height: 45px;
	z-index: 3100;
}
.hamburger:before{
	top: -3px;
	font-size: 8px;
	}
.ham_line {
	position: absolute;
	width: 30px;
	height: 2px;
	left: 10px;
	background-color: #E5E7F7;
}
nav.hnav{
	right: -100%;
	width: 90%;
	height: calc(100vh - 30px);
	background-position: left 30px;
	padding: 80px 0 0 20px;
	transition: all 0.5s;
	overflow-y: auto;
	z-index: 1000;
	box-sizing: border-box;
	border-radius: 0 0 0 20px;
}
.open .hnav {
	opacity: 1;
	right: 0;
}
.hnav ul{
	justify-content:flex-start;
	width: 100%;
	line-height: inherit;
	flex-wrap: wrap;
}
.hnav ul li a{
	display: block;
	color: #E5E7F7;
	font-size: 16px;
	padding: 6px 0 6px 8px;
}
}
/*------------------------------------------------header nav-*/
.nav-logo-area{
	display: flex;
	padding: 30px 0 0 0;
}
.nav-logo{
	width: 180px;
	height: 55px;
	display: block;
	background: url("../images/common/yakushizi-logo.png") no-repeat;
	background-size: contain;
	margin-right: 20px;
}
.nav-logo:after{
	content: "栃木県足利市川崎町2262";
	position: relative;
	bottom: -55px;
	font-size: 14px;
	font-weight: bold;
	color: #B8B9D9;
	display: block;
	text-align: center;
}
.nav-tel{
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 13px;
	padding: 0 0 0 20px;
	color: #B8B9D9;
	border-left:#B8B9D9 1px dotted;
}
.nav-tel a.foot-tel{
	font-family:"sans-serif";
	font-size: 32px;
	font-weight: bold;
	color: #B8B9D9;
	display: block;
	text-decoration: none;
}
.nav-tel .mail-btn a{
	display: block;
	text-decoration: none;
	color:#fff;
	padding: 3px;
	background-color: #5a5e9e;
	border-radius: 4px;
	text-align: center;
}
.nav-tel .mail-btn a:hover{
	background-color: #43477F;
}
nav.trace{
	padding-top: 15px;
	margin: 0 auto;
	width: 1000px;
}
nav.trace.extend{margin-top: 30px;}
nav.trace a{
	display: inline-block;
	background-color: #DDDAF5;
	color: #38355c;
	text-decoration: none;
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 12px;
	margin-right: 10px;
}
nav.trace a:nth-child(2){
	background-color: #E9E8F5;
}
nav.trace a:hover{
	background-color: #C8C5ED;
}
nav.trace span{
	display: inline-block;
	background-color: #F1EFF9;
	color: #38355c;
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 12px;
}
@media screen and (max-width: 768px) {
.nav-logo-area{
	display: flex;
	padding: 30px 0 0 0;
}
.nav-logo{
	width: 120px;
	height: 35px;
	background-size: contain;
	margin-right: 20px;
}
.nav-logo:after{
	content: "栃木県足利市川崎町2262";
	position: relative;
	bottom: -40px;
	font-size: 12px;
	font-weight: bold;
	color: #B8B9D9;
	display: block;
	text-align: center;
}
.nav-tel{
	font-size: 12px;
	padding: 0 0 0 10px;
}
.nav-tel a.foot-tel{
	font-size: 18px;
	font-weight: bold;
	text-decoration: none;
}
.nav-tel .mail-btn a{
	display: block;
	text-decoration: none;
	color:#fff;
	padding: 3px 0;
	background-color: #5a5e9e;
	border-radius: 4px;
	text-align: center;
}
.nav-tel .mail-btn a:hover{
	background-color: #43477F;
}
nav.trace{
	padding-top: 5px;
	margin: 0 auto;
	width: 96%;
}
nav.trace.extend{margin-top: 50px;}
}
/*-------------------------------------------------Footer-*/
.footer{
	background-color: #2f2c76;
	padding: 40px 0;
}
.footer .inner{
	color: #b9bada;
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	position: relative;
}
.footer .inner a{
	text-decoration: none;
	color: #b9bada;
	transition: ease 0.2s;
}
.foot-unit-a{
	background: url("../images/common/foot-logo.png") no-repeat;
	background-size: contain;
	width: 210px;
	padding: 100px 0 0 0;
	margin-right: 10px;
	font-size: 18px;
	text-align: center;
}
.foot-unit-b{
	width: 420px;
	padding: 0 10px 0 30px;
	display: flex;
	border-right: 1px #b9bada dotted;
	border-left: 1px #b9bada dotted;
}
.foot-unit-c{padding-left: 20px;}
.foot-unit-sns{
	display: block;
	text-align: center;
	font-size: 12px;
	padding-left: 30px;
}
.foot-unit-sns span {
	font-size: 42px;
	display: block;
	margin: 5px auto;
}
.foot-unit-sns span:hover{
		color: #8686B5;
}
.foot-unit-b p{
	font-size: 14px;
}
.foot-unit-b .foot-tel a{
	font-size: 36px;
	font-weight: bold;
}
.foot-unit-b .foot-tel a:hover{
	color: #8686B5;
}
.foot-unit-b .foot-mail a{
	text-align: center;
	border: 1px solid #7A7CC5;
	display: block;
	padding: 4px;
}
.foot-unit-b .foot-mail a:hover{
	background-color: #514EA4;
}
.foot-nav{
	display: flex;
}
.foot-nav ul{
	width: 140px;
}
.foot-nav ul li a{
	font-size: 14px;
	padding-bottom: 3px;
}
.foot-nav ul li a:hover{
	color: #8686B5;
}
.copy{
	font-family: Arial, Helvetica, "sans-serif";
	font-size: 12px;
	padding-top: 30px;
}
.pagetop a{
	position: absolute;
	top: -63px;
	right: 0px;
	font-size: 12px;
	padding: 7px;
	background-color: #2f2c76;
	border-radius: 5px 5px 0 0;
}
.pagetop a:hover{
	top: -70px;
}
@media screen and (max-width: 768px) {
.footer{
	padding: 20px 0;
}
.footer .inner{
	color: #b9bada;
	width: 96%;
}
.footer .inner a{
	text-decoration: none;
	color: #b9bada;
	transition: ease 0.2s;
}
.foot-unit-a{
	width: 43%;
	padding: 60px 0 0 0;
	font-size: 13px;
}
.foot-unit-b{
	width: 55%;
	padding: 0 10px 0 20px;
	display: flex;
	border-right: none;
	border-left: 1px #b9bada dotted;
}
.foot-unit-c,
.foot-unit-sns{display: none;}
.foot-unit-sns span:hover{
		color: #8686B5;
}
.foot-unit-b p{
	font-size: 11px;
}
.foot-unit-b .foot-tel a{
	font-size: 20px;
	font-weight: bold;
}
.foot-unit-b .foot-mail a{
	padding: 2px 0;
	font-size: 13px;
}
.copy{
	font-size: 10px;
	padding-top: 15px;
}
.pagetop a{
	position: absolute;
	top: -60px;
	right: 0px;
	font-size: 12px;
	padding: 7px;
	background-color: #2f2c76;
	border-radius: 5px;
}
.pagetop a:hover{
	top: -60px;
}
}
/*----------------------------------------------------body-*/
main{
	padding-top: 56px;
}
main p{
	font-size: 16px;
	line-height: 1.8em;
	color: #4B4B4B;
	padding-bottom: 1em;
}

h1.norml-h1,h1{
	font-size: 36px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	padding: 0 0 0.4em 0;
	margin-bottom: 1.4em;
	border-bottom: 1px solid #B8AE7B;
}
h1.norml-h1:before{
	position: relative;
	top:11px;
	display: inline-block;
	content: "";
	width: 60px;
	height: 50px;
	background: url("../images/common/h1bulled.png") no-repeat;
	background-size: contain;
}
h1.norml-h1 span{
	font-size: 21px;
	background-color: #8A93C1;
	padding: 2px 8px 3px;
	margin-left: 10px;
	border-radius: 5px;
	color: #fff;
	vertical-align:baseline;
}
h1.top-h1{
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	font-size: 56px;
	color: #2f2c76;
	text-align: center;
	padding: 1em 0 0;
	border: none;
	margin-bottom: 0;
}
h1.top-h1 rt{font-size: 14px;}
h1.top-h1:before{}
h2{
	font-size: 28px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	padding: 0 0 1.2em 0;
}
p + h2,img + h2{
	padding: 3em 0 1.2em 0;
}
img + p{	padding-top: 1.5em;}
.center-h2-cover{
	text-align: center;
}
h2.center-h2{
	display: inline-block;
	margin:3em 0 0 0;
	padding: 0.8em 1em;
	border-top: 1px solid #B8AE7B;
	border-bottom: 1px solid #B8AE7B;
}
h3{
	font-size: 20px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	padding:1.8em 0 0.5em;
}
ul.normal-ul {
	list-style-type: none;
}
ul.normal-ul li{

}
ul.normal-ul li:before{
	content: "・";
}
@media screen and (max-width: 768px) {
main{
	padding-top: 40px;
}
main p{
	font-size: 16px;
	line-height: 1.8em;
	color: #4B4B4B;
	padding-bottom: 1em;
}

h1.norml-h1,h1{
	font-size: 34px;
	padding: 0 0 0.4em 0;
	margin-bottom: 1.4em;
}
h1.norml-h1:before{
	position: relative;
	top:11px;
	display: inline-block;
	content: "";
	width: 56px;
	height: 50px;
	background: url("../images/common/h1bulled.png") no-repeat;
	background-size: contain;
}
h1.norml-h1 span{
	font-size: 18px;
}
h1.top-h1{
	font-size: 36px;
	color: #2f2c76;
	text-align: center;
	padding: 1em 0 0;
}
h1.top-h1 rt{font-size: 14px;}
h1.top-h1:before{}
h2{
	font-size: 28px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	padding: 0 0 1.2em 0;
}
p + h2,img + h2{
	padding: 2em 0 1.2em 0;
}
img + p{	padding-top: 1.5em;}
.center-h2-cover{
	text-align: center;
}
h2.center-h2{
	display: inline-block;
	margin:3em 0 0 0;
	padding: 0.8em 1em;
	border-top: 1px solid #B8AE7B;
	border-bottom: 1px solid #B8AE7B;
}
h3{
	font-size: 20px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	padding:1.8em 0 0.5em;
}
ul.normal-ul {
	list-style-type: none;
}
ul.normal-ul li{

}
ul.normal-ul li:before{
	content: "・";
}
}
/*-------------------------------------------------------btn-*/
.btn,.btn-center{
	display: block;
	border-radius: 24px;
	width: 400px;
	border: 3px solid #7778ae;
	background-color: #fff;
	margin-top: 1.5em;
	transition: ease .2s;
}
.btn-center{margin: 1.5em auto 0;}
a.btn-1s{
	display: block;
	text-decoration: none;
	text-align: center;
	color: #535486;
	margin: 2px;
	padding: 5px 0 4px 0;
	border: 1px solid #7778ae;
	border-radius: 20px;
	font-size: 18px;
	transition: ease .2s;
	position: relative;
}
a.btn-1s:after{
	position: absolute;
	right: 7px;
	content: "\e903";
	font-size: 20px;
	font-family: "icomoon";
	transition: ease .2s;
}
.btn:hover{	background-color: #7778ae;}
.btn:hover a.btn-1s{color: #fff; border:1px solid #fff;}
a.btn-1s:hover:after{	right: -30px; color: #535486;}
.btn:active{background-color: #DF7A36;}
input.o_btn{
	display: block;
	border-radius: 24px;
	width: 160px;
	border: 1px solid #7778ae;
	outline: double 5px #7778ae;
	background-color: #fff;
	margin-top: 1.5em;
	transition: ease .2s;
	font-size: 18px;
	cursor: pointer;
	margin: 10px 10px;
}
input.o_btn.usu{
	border: 1px solid #AFAFCB;
	outline: double 5px #9D9DC4;
	background-color: #fff;
}
input.o_btn:hover{
	background-color: #7778ae;
	color: #fff;
}
@media screen and (max-width: 768px) {
.btn,.btn-center{
	width: 90%;
	border: 3px solid #7778ae;
	margin: 1.5em auto 0;
}
.btn-center{margin: 1.5em auto 0;}
a.btn-1s{
	display: block;
	text-decoration: none;
	text-align: center;
	color: #535486;
	margin: 2px;
	padding: 5px 0 4px 0;
	border: 1px solid #7778ae;
	border-radius: 20px;
	font-size: 15px;
	transition: ease .2s;
	position: relative;
}
a.btn-1s:after{
	position: absolute;
	right: 5px;
	top: 7px;
	content: "\e903";
	font-size: 16px;
	font-family: "icomoon";
	transition: ease .2s;
}
.btn:hover{	background-color: #7778ae;}
.btn:hover a.btn-1s{color: #fff; border:1px solid #fff;}
a.btn-1s:hover:after{	right: -30px; color: #535486;}
.btn:active{background-color: #DF7A36;}
input.o_btn{
	display: block;
	border-radius: 24px;
	width: 160px;
	border: 1px solid #7778ae;
	outline: double 5px #7778ae;
	background-color: #fff;
	margin-top: 1.5em;
	transition: ease .2s;
	font-size: 18px;
	cursor: pointer;
	margin: 10px 10px;
}
input.o_btn.usu{
	border: 1px solid #AFAFCB;
	outline: double 5px #9D9DC4;
	background-color: #fff;
}
input.o_btn:hover{
	background-color: #7778ae;
	color: #fff;
}
}
/*------------------------------------------------------Top-*/
.top-img{
	width:100%;
	height: auto;
	aspect-ratio:16/8;
}
.swiper-slide img{
	width: 100%;
	height: auto;
	object-fit: cover;
}
.name-data{
	text-align: center;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	font-size: 34px;
	color: #2f2c76;
	padding: 0.5em 0 1em;
}
.name-data ruby rt{	font-weight: 400;}
section{
}
section .inner{
	width: 1000px;
	padding: 4em 0;
	margin: 0 auto;
}
section.firstview{
	padding-bottom: 8em;
	background-image: url("../images/common/cloud1.png"), url("../images/common/cloud2.png");
	background-repeat: no-repeat,no-repeat;
	background-position: left 40px, right 160px;
	background-size: 32vw;
}
section.type-a{
	background-color: #f7f7fa;
}
section .inner-a,section .inner-b{
	width: 100%;
	display: flex;
	padding: 8em 0;
}
section .inner-e{
	display: flex;
	padding: 8em 0 0 0;
}
.inner-e.bg-bie{
	background: url("../images/about/bie.png") no-repeat 72vw 100px;
	background-size: 18vw;
}
.inner-e.bg-ka{
	background: url("../images/about/ka.png") no-repeat 10vw 100px;
	background-size: 18vw;
}
section .inner-c{
	width: 1000px;
	padding: 8em 0;
	margin: 0 auto;
}
section .inner-d{
	width: 800px;
	padding: 4em 0 8em;
	margin: 0 auto;
}
section .inner-c .top-images {
	width: 800px;
	margin: 0 auto;
	height: 350px;
}
section .inner-c .top-text {
	box-sizing: border-box;
	margin: 0 auto;
	padding:0 20px;
	width: 800px;
}
section .inner-c .top-text h2 {
	text-align: center;
	padding: 2em 0 1em;
}
section .inner-a .top-images{
order: 1;
}
section .inner-a .top-text{
order: 2;
}
section .inner-b .top-images{
order: 2;
}
section .inner-b .top-text{
order: 1;
}
section .inner-f{
	width: 1000px;
	padding: 4em 0 0em;
	border-bottom: 1px solid #ccc;
	margin: 0 auto;
}
section.bg-fuji-a,section.bg-fuji-a2{
	background:url("../images/common/fuji01.png") no-repeat right top;
	background-size: 24vw;
}
section.bg-fuji-b{
	background:url("../images/common/fuji02.png") no-repeat right top;
	background-size: 24vw;
}
section.tubo{
	background:url("../images/common/tubo-bg.png") no-repeat -50px 200px;
	background-size: 28vw;
}
section.tubo-w{
	background:url("../images/common/tubo-bg-w.png") no-repeat 75vw 400px #f7f7fa;;
	background-size: 28vw;
}
.top-images{
	width: 50%;
	height: auto;
	aspect-ratio:16/9;
}
.top-images img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.top-text{
	box-sizing: border-box;
	padding:0 0 0 40px;
	width: 500px;
}
section .inner-b .top-text{
	padding: 0 40px 0 0;
	width: 500px;
	margin-left: calc((100vw - 1000px) / 2);
}
table.top-data{
	margin: 20px auto;
	width: 360px;
	font-size: 22px;
	font-family: "Shippori Mincho B1", serif;
	font-weight: 600;
	line-height: 1.9em;

}
table.top-data th{
	text-align: left;
	padding: 18px 5px 10px 0;
	border-bottom:1px solid #ddd;
	white-space: nowrap;
}
table.top-data td{
	padding: 18px 10px 10px 0;
	border-bottom:1px solid #ddd;
}
.top-goriyaku{
	text-align: center;
	font-size: 28px;
	padding: 2em 0 1em 0;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	color: #2f2c76;
}
.top-news{
	padding-bottom: 2em;
}
.top-news-title{
	padding: 10px 0;margin-bottom: 10px;
	border-bottom: 1px solid #BBBBBB;
}
.top-news-title a{
	text-decoration: none;
	color: #4B4B4B;
	display: block;
	padding-top: 15px;
}
.top-news-title a:hover{
	color: #5B659C;
}
.news-badge{
	background-color: #5B659C;
	padding: 3px 10px 2px;
	border-radius: 3px;
	color: #fff;
}
.news-date{
	padding-left: 15px;
}
.map{
	width: 100%;
	height: 600px;
}
.map iframe{
	width: 100%;
	height: 600px;
}
@media (min-width: 1600px){
	main{
		width: 100vw;
		overflow: hidden;
	}
section .inner-a,section .inner-b,.inner-e{
	width: 1760px;
	margin: 0 auto;
}
section .inner-b .top-text{
	padding: 0 40px 0 0;
	width: 880px;
	margin-left: calc((100vw - 1760px) / 2);
}
.inner-e.bg-bie{
	background: url("../images/about/bie.png") no-repeat 60vw 100px;
}
}
@media screen and (max-width: 768px) {
.top-img{
	width:100%;
	height: auto;
	aspect-ratio:4/3;
}
.swiper-slide img{
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.name-data{
	font-size: 28px;
	padding: 0.5em 0 1em;
}
section .inner{
	width: 96%;
	padding: 2em 0;
}
section.firstview{
	padding-bottom: 8em;
	background-image: url("../images/common/cloud1.png"), url("../images/common/cloud2.png");
	background-repeat: no-repeat,no-repeat;
	background-position: left 20px, right 190px;
	background-size: 58vw;
}

section .inner-a{
	flex-wrap: wrap;
	padding: 4em 4% 4em 0;
	width: 96%
}
section .inner-b{
	flex-wrap: wrap;
	padding: 4em 0 4em 4%;
	width: 96%
}
section .inner-e{
	flex-wrap: wrap;
	padding: 5em 0 0 0;
}
.inner-e.bg-bie{
	background: url("../images/about/bie.png") no-repeat left 700px;
	background-size: 42vw;
}
.inner-e.bg-ka{
	background: url("../images/about/ka.png") no-repeat left 700px;
	background-size: 38vw;
}
section .inner-c{
	width: 100%;
	padding: 4em 0;
	margin: 0 auto;
}
section .inner-d{
	width: 96%;
	padding: 4em 0 4em;
	margin: 0 auto;
}
section .inner-c .top-images {
	width: 90%;
	margin: 0 auto;
	height: 220px;
}
section .inner-c .top-text {
	box-sizing: border-box;
	margin: 0 auto;
	padding:0 20px;
	width: 100%;
}
section .inner-c .top-text h2 {
	text-align: center;
	padding: 2em 0 1em;
}
section .inner-a .top-images{
width: 100%;
order: 1;
}
section .inner-a .top-images img{
	border-radius: 0px 18px 18px 0px;
}
section .inner-a .top-text{
	width: 98%;
	order: 2;
	padding: 0 0 0 2%;
}
section .inner-b .top-images{
	width: 100%;
	order: 1;
}
section .inner-b .top-images img{
	border-radius: 18px 0 0 18px;
}
section .inner-b .top-text{
	width: 98%;
	order: 2;
	padding: 0 2% 0 0;
	margin-left: inherit;
}
section .inner-f{
	width: 96%;
	padding: 4em 0 0em;
	border-bottom: 1px solid #ccc;
	margin: 0 auto;
}
section.bg-fuji-a{
	background:url("../images/common/fuji01.png") no-repeat right top;
	background-size: 50vw;
}
section.bg-fuji-a2{
	background:none;
}
section.bg-fuji-b{
	background:url("../images/common/fuji02.png") no-repeat right top;
	background-size: 50vw;
}
section.tubo{
	background:url("../images/common/tubo-bg.png") no-repeat -10vw 200px;
	background-size: 65vw;
}
section.tubo-w{
	background:url("../images/common/tubo-bg-w.png") no-repeat right 400px #f7f7fa;;
	background-size: 45vw;
}
.top-images{
	width: inherit;
	height: inherit;
	aspect-ratio:inherit;
}
.top-images img{
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.top-text{
	box-sizing: inherit;
	padding:inherit;
	width: inherit;
}
	.top-text h2{
		font-size: 24px;
	padding: 1em 0 1em 0;
}
table.top-data{
	margin: 20px auto 10px;
	width: 94%;
	font-size: 22px;
	font-family: "Shippori Mincho B1", serif;
}
table.top-data th{
	padding: 16px 10px 8px 0;
	border-bottom:1px solid #ddd;
}
table.top-data td{
	padding: 16px 10px 8px 0;
	border-bottom:1px solid #ddd;
}
.top-goriyaku{
	text-align: center;
	font-size: 28px;
	padding: 2em 0 1em 0;
	font-family: "Yuji Syuku", serif;
	font-weight: 400;
	color: #2f2c76;
}
.top-news{
	padding-bottom: 2em;
}
.top-news-title{
	padding: 10px 0;margin-bottom: 10px;
	border-bottom: 1px solid #BBBBBB;
}
.top-news-title a{
	text-decoration: none;
	color: #4B4B4B;
	display: block;
	padding-top: 15px;
}
.top-news-title a:hover{
	color: #5B659C;
}
.news-badge{
	background-color: #5B659C;
	padding: 3px 6px 2px;
	border-radius: 3px;
	color: #fff;
}
.news-date{
	padding-left: 5px;
	font-size: 14px;
}
.map{
	width: 100%;
	height: 300px;
}
.map iframe{
	width: 100%;
	height: 300px;
}
}
/*---------------------------------------------------Contact-*/
.inq-dl{
	width: 100%;
	margin: 2em 0;
}
.inq-dl th{
	width: 25%;
	padding: 20px 0;
	vertical-align:top;
	border-bottom: 1px solid #E4E4E4;
}
.inq-dl td{
	width: 75%;
	padding: 20px 0 18px 5px;
	border-bottom: 1px solid #E4E4E4;
}
.short-box,.short-box2{
	width: 80%;
	margin: 0 auto;
}
.short-box img{
	margin: 10px;
}
.need{
	color: #FFFFFF;
	font-size: 12px;
	padding: 1px 5px 0px 5px;
	background-color: #BD2123;
	border-radius: 3px;
	margin-left: 10px;
}
input.textbox,textarea.textbox{
	width: 95%;
	padding: 8px 3px;
	border-radius: 5px;
	border: 1px solid #ccc;
}
option{
	-webkit-appearance: none;
  appearance: none;
}
.buttonArea{
	display: flex;
	justify-content: center;
	padding: 2em 0;
}
input.o_btn{}
input.o_btn.usu{}

@media screen and (max-width: 768px) {
.inq-dl{
	width: 100%;
	margin: 2em 0;
}
.inq-dl th{
	width: 28%;
	font-size: 15px;
}
.inq-dl td{
	width: 72%;
}
.short-box{
	width: 80%;
	margin: 0 auto;
}
.short-box2{
	width: 96%;
	margin: 0 auto;
}
.short-box img{
	margin: 10px;
}
.short-box2 img{
	margin: 0px;
}
.need{
	color: #BD2123;
	font-size: 10px;
	padding: 0;
	background-color: transparent;
	border-radius:initial;
	margin-left: 5px;
}
input.textbox,textarea.textbox{
	width: 95%;
	padding: 8px 3px;
	border-radius: 5px;
	border: 1px solid #ccc;
}
option{
	-webkit-appearance: none;
  appearance: none;
}
.buttonArea{
	display: flex;
	justify-content: center;
	padding: 2em 0;
}
input.o_btn{}
input.o_btn.usu{}
}
/*-----------------------------------------------------about-*/
.jp-para{
	 -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
		text-orientation: upright;
		text-align:left;
}
.jp-para .riyaku{
	display: inline;
	font-family: "Shippori Mincho B1", serif;
	font-size: 36px;
}
.jp-para .shingon{
	font-family: "Shippori Mincho B1", serif;
	font-size: 24px;
	line-height: 1.6em;
	padding: 0 30px;
}
.jp-para.yakushi{
	order: 2;
	color: #295587;
}
.jp-para.zizou{
	width: 50%;
	order: 1;
	color: #de7f18;
}
.jp-para.yakushi span,
.jp-para.zizou span{ font-size: 60px;}
.yakushi-img{
	aspect-ratio:10/13;
	width: 45%;
	margin-right: 5%;
	order: 1;
}
.yakushi-img img{
	border-radius: 0 50px 50px 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.zizou-img{
	aspect-ratio:10/13;
	width: 45%;
	margin-left: 5%;
	order: 2;
}
.zizou-img img{
	border-radius: 50px 0 0 50px;
	width: 100%;
	height: 100%;
	object-fit:cover;
}
.ruri-column{
		width: 49%;
	}
.column-a{
	margin: 20px 0 10px;
	display: flex;
	justify-content: space-between;
}
.column-a-img{
	width: 280px;
	margin-right: 30px;
}
.column-a-img img{
	width: 100%;
	height: auto;
}
.column-a-img span{
	font-size: 12px;
}
.column-a-txt{
	width: 690px;
}
.column-a-txt h3{

}
.column-a p,.column-b p{
	font-size: 15px;
}
.column-a h3{
	padding-top: 0;
	font-size: 26px;
}
.column-a h3 span{font-size: 18px;}

.column-b-cover{
	display: flex;
	justify-content: space-between;
}
.column-b{
	width: 470px;
}
.column-b h3{font-size: 26px; padding: 0 0 0.5em 0;}
.column-b h3 span{font-size: 18px;}
.column-b img{
	width: 100%;
	height: auto;
	margin-bottom: 15px;
}
.logo-box{
	width: 110px;
	height: 110px;
	margin: 5px auto 30px;
}
.jp-para h3{
	color: #000;
	font-size: 56px;
	padding: 0;
	font-weight: 400;
}
.jp-para h3 em{
	padding: 10px 8px;
	border: 1px solid #333;
	font-size: 22px;
	margin-top: 30px;
}
.kamon{
	width: 120px;
	padding-left: 50px;
	font-size: 13px;
}
.note-box1{
	display: flex;
	background-color: #ebe9fc;
	border-radius: 10px;
	padding: 15px;
	margin-top: 10px;
	font-size: 14px;
}
.note-box2{
	display: inline-block;
	background-color: #F1F0F8;
	border-radius: 10px;
	padding: 15px;
	margin: 20px 0 40px;
}
.note-box3{
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	margin-top: 10px;
}
.suzuki{
	width: 110px;
	height: 110px;
	margin-left: 20px;
}
.suzuki-txt{
	width: 340px;
}
.suzuki img{
	padding: 5px;
	border-radius: 50%;
	width: 110px;
	height: 110px;
}
@media (min-width: 1600px){
.yakushi-img img,.zizou-img img{
	border-radius: 40px;
}
}
@media screen and (max-width: 768px) {
.jp-para .riyaku{
	display: initial;
	font-size: 20px;
}
.jp-para .shingon{
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	line-height: 1.2em;
	padding: 0 30px;
}
.jp-para.yakushi{
	order: 2;
	color: #295587;
	width: 70%;
	margin: 0 auto;
}
.jp-para.zizou{
	order: 2;
	color: #de7f18;
	width: 70%;
	margin: 0 auto;
	display: inline;
}
.jp-para.yakushi span,
.jp-para.zizou span{
	display: inline;
	font-size: 40px;
	}
.yakushi-img{
	aspect-ratio:10/13;
	width: 100%;
	margin-right: 0;
	order: 1;
	margin-bottom: 30px;
}
.yakushi-img img{
	border-radius: 0 0 15px 15px;
}
.zizou-img{
	aspect-ratio:10/13;
	width: 100%;
	margin-left: 0;
	order: 1;
	margin-bottom: 30px;
}
.zizou-img img{
	border-radius: 0 0 15px 15px;
}
.ruri-column{
		width: 100%;
	}
.column-a{
	margin: 20px 0 10px;
	display: initial;
	justify-content: initial;
}
.column-a-img{
	width: 100%;
	margin-right: 0;
	margin-top: 4em;
}
.column-a-img.old-pict{
	width: 65%;
	margin: 0.8em auto 0.5em;
}
.column-a-img img{
	width: 100%;
	height: auto;
}
.column-a-img span{
	display: block;
	text-align: center;
	padding-bottom: 1em;
}
.column-a-txt{
	width: 100%;
}
.column-a p,.column-b p{
	font-size: 15px;
}
.column-a h3{
	padding: 20px 0 1em;
	font-size: 24px;
}
.column-b-cover{
	display: initial;
	justify-content: initial;
}
.column-b{
	width: 96%;
	margin: 0 auto 3em;
}
.column-b h3{font-size: 26px; padding: 0 0 0.5em 0;}
.column-b h3 span{font-size: 18px;}
.column-b img{
	width: 100%;
	height: auto;
	margin-bottom:0;
}
.logo-box{
	width: 110px;
	height: 110px;
	margin: 5px auto 30px;
}
.jp-para h3{
	font-size: 40px;
	padding: 0;
}
.jp-para h3 em{
	padding: 8px 6px;
	border: 1px solid #333;
	font-size: 18px;
	margin-top: 20px;
}
.kamon{
	width: 380px;
	padding-left: 20px;
	font-size: 13px;
}
.note-box1{
	display: flex;
	background-color: #ebe9fc;
	border-radius: 10px;
	padding: 15px;
	margin-top: 10px;
	font-size: 14px;
}
.note-box2{
	display: inline-block;
	background-color: #F1F0F8;
	border-radius: 10px;
	padding: 15px;
	margin: 20px 0 40px;
}
.note-box3{
	width: 90%;
	background-color: #fff;
	border-radius: 10px;
	padding: 15px;
	margin-top: 10px auto;
}
.suzuki{
	width: 33%;
	height: 30%;
	margin-left: 0;
}
.suzuki-txt{
	width: 65%;
	font-size: 13px;
}
.suzuki img{
	padding: 5px;
	border-radius: 50%;
	width: 100px;
	height: 100px;
}
}
/*-------------------------------------Data & 63 & Houji--*/
.subheader{
	width: 100%;
	position: fixed;
	top: 58px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 15px;
}
.subheader ul{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	border-left: 1px solid #ccc;
}
.subheader ul li a{font-size: 14px;
	color: #4e4e4e;
	padding: 2px 0;
	width: 200px;
	text-decoration: none;
	display: block;
	text-align: center;
	background-color: rgba(255,255,255,.7);
	border-right: 1px solid #ccc;
}
.subheader ul li a:hover{background-color: #B3B1D9;}
.box-63{width: 960px;}
.box-63mori{
	display: flex;
	justify-content:space-between;
	width: 1000px;
	margin: 20px auto;
}
.box-63mori div{ padding: 0 20px;}
.box-63mori div img{
	width: auto;
	height: 335px;
}
.list-table{width: 100%; font-size: 15px;}
.list-table td{
	padding: 5px 0 5px 5px;
}
.list-table th{
	padding: 5px;
}
.bochi-cover{}
.bochi{
	margin: 0 0 20px 0;
	display: flex;
}
.bochi img{
	width: 300px;
	margin: 0 30px 0 0;
	height: 300px;
}
.bochi h3{
	font-size: 24px;
	padding: 0 0 1em 0;
}
.kuyou-cover{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.kuyou{
	width: 480px;
	margin-bottom: 35px;
}
.kuyou img{
	width: 100%;
	height: auto;
}
.kuyou h3{
	font-size: 24px;
	padding: 0 0 0.6em 0;
}
.box-zyushoku{
	display: flex;
	justify-content: space-between;
}
.box-zyushoku-data h3{
	padding-top: 0;
}
.box-zyushoku-img{
	width: 200px;
	margin-right: 25px;
}
.box-data{
	display: flex;
	justify-content: space-between;
	margin: 2em 0;
}
.box-odou-img{
	width: 50%;
}
table.data-table{width: 400px; height:300px;}
table.data-table th{
	padding: 5px 10px 5px 10px;
	border-bottom: #ccc 1px solid;
}
table.data-table td{
	padding: 5px 10px 5px 10px;
	border-bottom: #ccc 1px solid;
	border-left: #ccc 1px solid;
}
table.data-table th:last-child{border-bottom: none;}
.hana-img{
	display: flex;
	flex-wrap: wrap;
	justify-content:space-between;
}
.hana-img img{
	width: 310px;
	margin-bottom: 40px;
}
.omamori-case{
	display: flex;
	justify-content: space-between;
	text-align: center;
	flex-wrap: wrap;
	margin-bottom: 80px;
}
.omamori{
	width: 290px;
	padding-bottom: 20px;
}
.omamori img,.gosyuin-img img{width: 100%;}
.gosyuin-case{
	width: 900px;
	margin: 40px auto;
}
.gosyuin{
	display: flex;
	margin-bottom: 30px;
}
.gosyuin-img{
	width: 230px;
	margin-right: 50px;
	border: 1px solid #ccc;
}
.gosyuin-data{}
.gosyuin-data h3{
	padding-top: 0;
}

@media screen and (max-width: 768px) {
.subheader{
	top: 43px;
	width: 100vw;
	margin-bottom: 15px;
}
.subheader ul{
	width: 100vw;
	margin: 0 auto;
	justify-content: center;
	flex-wrap: wrap;
	border-left:none;
}
.subheader ul li a{
	font-size: 10px;
	width: 20vw;
	color: #4e4e4e;
	padding: 2px 0;
	text-decoration: none;
	text-align: center;
	border-right: 1px solid #ccc;
	box-sizing: border-box;
}
.subheader ul li a:hover{background-color: #B3B1D9;}
.box-63{width: 960px;}
.box-63mori{
	display: block;
	justify-content:inherit;
	width: 90%;
	margin: 20px auto;
}
.box-63mori div{
	width:90%;
	padding:20px 0;
	margin: 0 auto;
	}
.box-63mori div img{
	width:100%;
	height:auto ;
	display: block;
}
.list-table{}
.list-table td{
	border-bottom: #E4E4E4 1px solid;
	padding: 5px 0 5px 8px;
}
.list-table th{
	border-bottom: #E4E4E4 1px solid;
	border-right: #E4E4E4 1px solid;
	padding: 5px 8px;
}
.bochi-cover{}
.bochi{
	margin: 0 0 20px 0;
	display: block;
}
.bochi img{
	width: 100%;
	margin: 0 0 0 0;
	height: auto;
}
.bochi h3{
	font-size: 24px;
	padding: 0 0 1em 0;
}
.kuyou-cover{
	display: block;
	flex-wrap: inherit;
	justify-content: inherit;
}
.kuyou{
	width: 96%;
	margin-bottom: 35px;
	margin: 0 auto;
}
.kuyou img{
	width: 100%;
	height: auto;
}
.kuyou h3{
	font-size: 24px;
	padding: 0 0 0.6em 0;
}
.box-zyushoku{
	display: block;
	justify-content:inherit;
}
.box-zyushoku-data h3{
	padding-top: 0;
}
.box-zyushoku-img{
	width: 150px;
	height: 150px;
	margin: 0 auto 30px;
}
.box-zyushoku-img img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 50%;
}
.box-data{
	display: flex;
	justify-content: space-between;
	margin: 2em 0;
}
.box-odou-img{
	width: 40%;
	border: #fff 5px solid;
}
.box-odou-img img{
	width: 100%;
	border-radius: 5px;
}
table.data-table{
	width: 350px;
	height:300px;
	font-size: 15px;
	}
table.data-table th{
	padding: 4px 5px 4px 5px;
	border-bottom: #ccc 1px solid;
}
table.data-table td{
	padding: 4px 0px 4px 5px;
	border-bottom: #ccc 1px solid;
	border-left: #ccc 1px solid;
}
table.data-table th:last-child{border-bottom: none;}
.hana-img{
	padding-bottom: 3em;
}
.hana-img img{
	width: 49%;
	margin-bottom: 2%;
}
.omamori-case{
	flex-wrap: wrap;
	justify-content: space-between;
	text-align: center;
	margin-bottom: 80px;
}
.omamori{
	width: 49%;
	margin-top: 15px;
}
.omamori img,.gosyuin-img img{width: 100%;}
.gosyuin-case{
	width: 96%;
	margin: 30px auto;
}
.gosyuin{
	display: block;
	margin-bottom: 30px;
	border-bottom: 1px solid #ccc;
}
.gosyuin-img{
	width: 230px;
	margin: 0 auto;
	border: 1px solid #ccc;
}
.gosyuin-data{
	width: 86%;
	margin: 20px auto;
	}
.gosyuin-data h3{
	padding-top: 0;
}
}
/*-----------------------------------------------------Fuji--*/
.fuji-back{
	padding: 20px;
	border-radius: 10px;
	background-image: url("../images/common/fuji-bg.png");
	position: relative;
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	display: flex;
	justify-content: space-between;
}
.line-1st{
	text-align: center;
	padding: 60px 0 0 0;
	width: 33%;
}
.line-2nd{
	text-align: center;
	width: 33%;
	margin-bottom: -30px;
}
.line-3rd{
	text-align: center;
	width: 33%;
}
.purple-back{
	background-color: #f2edf3;
	padding: 20px 20px 50px 20px;
	border-radius: 10px;
	position: relative;
	font-family: "Shippori Mincho B1", serif;
	font-size: 20px;
	display: flex;
	justify-content: center;
	margin-bottom: 80px;
}
.line-4th{/*--center--*/
	text-align: center;
	margin-left: -90px;
	padding-bottom: 20px;
}
.line-5th{
	text-align: center;
	padding: 100px 0 0 6%;
	width: 20%;
}
.line-5th em{
font-size: 22px;
color: #de7f18;
}
.line-6th{
	text-align: center;
		width: 30%;
	margin-top: -20px;
	padding-bottom: 100px;
	background: url("../images/fuji/line-T.png") no-repeat center 80px;
}
.line-7th{
	text-align: center;
	padding: 0 6% 0 0;
	width: 20%;
	position: relative;
}
.line-8th{
	background-color: #9a7fbc;
	display: block;
	font-weight: 600;
	text-align: center;
	padding: 3px 0;
	border-radius: 6px;
	margin: 5px 0 30px;
	color: #fff;
}
.line-7th img,.line-5th img{
	width:100%;
}
.line-7th em{
font-size: 22px;
color: #1d479d;
}
.line-1st img,.line-2nd img,.line-3rd img{margin-top:10px; border-radius: 8px;}
.serif01{
	background-color: #FFFFFF;
	width: 250px;
	padding: 3px 0;
	position: absolute;
	top: 20px;
	left: 20px;
	text-align: center;
	border-radius: 18px;
}
.iql{
	font-size: 60px;
	font-weight: 600;
	display: inline-block;
	transform: rotate(90deg);
	text-indent: 20px;
color: #867CCB;
}
.mayoke{
	font-family: "Shippori Mincho B1", serif;
	background-color: #867CCB;
	padding: 2px 15px;
	color: #fff;
	font-size: 20px;
	border-radius: 6px;
}
.serif02{
	font-weight: 600;
	background-color: #de7f18;
	border-radius: 6px;
	padding: 2px 0;
	color: #fff;
	margin-bottom: 5px;
}
.serif03{
	font-weight: 600;
	background-color: #1d479d;
	border-radius: 6px;
	padding: 2px 0;
	color: #fff;
	margin-bottom: 5px;
}
.dot-a{
	background:url("../images/fuji/dot-a.png") repeat-y;
	width: 20px; 
	height: 200px;
	right: 55%;
	position: absolute;
	top: -200px;
}
.dot-b{
	background:url("../images/fuji/dot-a.png") repeat-y;
	width: 20px; 
	height: 30px;
	right: 55%;
	position: absolute;
	top: 70px;
}
.dot-c{
	background:url("../images/fuji/dot-b.png") repeat-x;
	width: 100px; 
	height: 20px;
	left: -90px;
	position: absolute;
	top: 44px;
}
@media screen and (max-width: 768px) {
.fuji-back{
	padding: 15px 15px 0 15px;
	font-size: 15px;
	font-weight: 600;
}
.line-1st{
	padding: 64px 0 0 0;
	width: 30%;
}
.line-2nd{
	width: 30%;
	padding: 55px 0 0 0;
	margin-bottom: -30px;
	line-height: 1em;
}
.line-3rd{
	padding: 40px 0 0 0;
	width: 30%;
	line-height: 1em;
}
.purple-back{
	background-color: #f2edf3;
	padding: 15px;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 80px;
}
	img.marufuzi{width:80px; height: 80px;}
.line-4th{/*--center--*/
	text-align: center;
	margin-left: -90px;
	padding-bottom: 0px;
}
.line-5th{
	text-align: center;
	padding: 115px 0 0 0;
	width: 33%;
}
.line-5th em{
font-size: 18px;
}
.line-6th{
	text-align: center;
	width: 30%;
	margin-top: -20px;
	background: url("../images/fuji/line-T.png") no-repeat center 80px;
	background-size: 200px;
}
.line-7th{
	text-align: center;
	padding: 0 0 0 0;
	width: 33%;
	position: relative;
}
.line-7th em{
font-size: 18px;
}
	.serif01{
	width: 120px;
	padding: 3px 0;
	position: absolute;
	top: 15px;
	left: 10px;
	text-align: center;
	border-radius: 18px;
}
.dot-a{
	background-size: 8px;
	height: 175px;
	right: 30%;
	top: -175px;
}
.dot-b{
	background-size: 8px;
	width: 20px; 
	height: 20px;
	right: 30%;
	top: 88px;
}
.dot-c{
	background-size: 90px;
	width: 30px; 
	height: 20px;
	left: -25px;
	top: 44px;transform: rotate(20deg);
}
}
/*----------------------------------------------------WP-----*/
.news-column{
	width: 100%;
	padding: 60px 0 0px;
}
.single-column{
	width: 100%;
	padding: 60px 0 30px;
}
.news-column .news-list:last-child{border-bottom: none;}
.news-list{
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 30px;
}
.news-list-txt{
	width: 780px;
}
.news-list-txt a{
	text-decoration: none;
	color: #494949;
	display: block;
	margin-top: 4px;
	padding: 18px 15px 18px 0;
	transition: ease 0.2s;
}
.news-list-txt a:hover{
	background-color: #ECEDF1;
	border-radius: 5px;
	padding: 18px 0 18px 15px;
}
.news-list-txt .news-badge{font-size: 14px;}
.news-tmb{
	width: 180px;
	height: 110px;
}
.news-tmb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.data-column{
	width: 100%;
	margin-top: 50px;
	padding-bottom: 40px;
	font-size: 15px;
	clear: both;
	display: flex;
	justify-content: space-between;
}
.data-column-list{
	width: 75%;
	border-right: 1px solid #ccc;
}
.data-column-cat{
	width: 20%;
}
.data-column h3{
	font-size: 24px;
	padding-top: 0;
}
.data-column ul{
	text-align: left;
}
.data-column ul li{
	padding: 2px 0;
	list-style-type: none;
	display: block;
}
.data-column ul li a{
	text-decoration: none;
	color: #494949;
	transition: ease 0.2s;
}
.data-column ul li a:hover{
	margin-left: 10px;
	color: #676767;
}
.news-badge-mini{
	background-color: #D6D2E9;
	padding: 2px 10px 1px;
	border-radius: 2px;
	color: #525252;
	font-size: 12px;
	width: 100px;
	display: inline-block;
	text-align: center;
	margin-right: 10px;
}
	.data-column ul li em{
	margin-right: 20px;
	}
.navigation{
	width: 100%;
	padding: 50px 0 0 0;
	clear: both;
	display: flex;
	justify-content: space-between;
}
.navigation .alignright{
	width: 45%;
 overflow: hidden;
 white-space: nowrap;
	padding: 4px 13px 3px;
	text-align: right;
}
.navigation .alignleft{
	width: 45%;
 overflow: hidden;
 white-space: nowrap;
	padding: 4px 13px 3px;
}
.navigation .alignright a,
.navigation .alignleft a{
	text-decoration: none;
	background-color: #DBD7F0;
	color: #525252;
	font-size: 14px;
	box-sizing: border-box;
	padding: 4px 13px 3px;
	border-radius: 25px;
	text-overflow: ellipsis;
}
.navigation .alignright a:hover,
.navigation .alignleft a:hover{
	background-color: #C9C5DD;
}
.navigation .alignright a:after{
	content: "\ea3c";
	font-family: "icomoon";
}
.navigation .alignleft a:before{
	content: "\ea40";
	font-family: "icomoon";
}
.wp-block-image{
	padding: 1em 0 2em 0;
}
.wp-block-gallery .wp-block-image{
	padding: 1em 0 0 0;
}
h2.screen-reader-text{display: none;}
nav.navigation{
	font-size: 24px;
	display: flex;
	justify-content: center;
}
.nav-links a.page-numbers.prev,
.nav-links a.page-numbers.next{display: none;}
a.page-numbers{
	text-decoration: none;
	padding: 2px 6px 0px;
	color: #525252;
}
a.page-numbers:hover{
	background-color: #5B659C;
	color: #fff;
	border-radius: 5px;
}
.page-numbers.current{
	padding: 2px 6px 0px;
	background-color: #8C94BF;
	color: #fff;
	border-radius: 5px;
}
.post{
	width:86%;
	margin:0 auto;
}
	.post iframe{
		width:100%;
		height: 100%;
		aspect-ratio:16/9;
	} 
@media screen and (max-width: 768px) {
.news-column{
	width: 100%;
	padding: 10px 0 0px;
}
.single-column{
	width: 100%;
	padding: 60px 0 30px;
}
.news-column .news-list:last-child{border-bottom: none;}
.news-list{
	width: 100%;
	padding-bottom: 20px;
	border-bottom: 1px solid #ccc;
	margin-bottom: 20px;
}
.news-list-txt{
	width: 60%;
}
.news-list-txt a{
	margin-top: 4px;
	padding: 10px 0px 0px 0;
	transition: ease 0.2s;
}
.news-list-txt a p{	line-height: 1.4em; font-size: 15px;}
.news-list-txt a:hover{
	background-color: none;
	border-radius: initial;
	padding: 10px 0px 0px 0;
}
.news-list-txt .news-badge{font-size: 14px;}
.news-tmb{
	width: 36%;
	margin-right: 4%;
	height: 100px;
}
.news-tmb img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.data-column{
	width: 100%;
	margin-top: 50px;
	padding-bottom: 40px;
	display: block;
	clear: both;
}
.data-column-list{
	width: 100%;
	border-right: none;
	padding-bottom: 2em;
}
.data-column-cat{
	width: 100%;
}
.data-column h3{
}
.data-column ul{
	text-align: left;
}
.data-column ul li{
	padding: 5px 0;
	margin: 5px 0;
	border-bottom: 1px solid #ccc;
}
.data-column ul li a{
	display: block;
	font-size: 15px;
	margin-top: 5px;
}
.data-column ul li a:hover{
	margin-left: 10px;
	color: #676767;
}
.news-badge-mini{
	margin-right: 10px;
}
.data-column ul li em{
	color: #808080;
	}
.navigation{
	width: 100%;
	padding: 50px 0 0 0;
}
.navigation .alignright{
	width: 48%;
	padding: 4px 3px 3px;
}
.navigation .alignleft{
	width: 48%;
	padding: 4px 3px 3px;
}
.navigation .alignright a,
.navigation .alignleft a{
	font-size: 12px;
	padding: 4px 10px 3px;
	border-radius: 5px;
}
.navigation .alignright a:after{
	content: "";
	font-family: initial;
}
.navigation .alignleft a:before{
	content: "";
	font-family:initial;
}
.wp-block-image{
	padding: 1em 0 2em 0;
}
h2.screen-reader-text{display: none;}
nav.navigation{
	font-size: 24px;
	display: flex;
	justify-content: center;
}
.nav-links a.page-numbers.prev,
.nav-links a.page-numbers.next{display: none;}
a.page-numbers{
	text-decoration: none;
	padding: 2px 6px 0px;
	color: #525252;
}
a.page-numbers:hover{
	background-color: #5B659C;
	color: #fff;
	border-radius: 5px;
}
.page-numbers.current{
	padding: 2px 6px 0px;
	background-color: #8C94BF;
	color: #fff;
	border-radius: 5px;
}
.calendar iframe{
	width: 100%;
	height: 40vh;
}
.post{
	width:initial; margin:initial;
	}
}

/*---------------------------------------------------Utility-*/
a[target="_blank"]:after{
	content: " \f08e";
	font-family: "icomoon";
	padding-right: 5px;
}
a[title="download"]:after{
	content: "\e9c5";
	font-family: "icomoon";
}
.all-right{text-align:right;}
.all-center{text-align: center;}
.flex,.flex2{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
hr.wp-block-separator{ border: none;	border-bottom: 1px solid #ccc;}
hr{
	height: 1px;
	border: none;
	border-bottom: 1px solid #ccc;
	margin: 20px 0 40px;
	padding: 20px 0;
}
.has-background{
	margin: 10px 0 25px;
	border-radius: 10px;
}
.pc-none{display: none;}
.sp-none{display: block;}
@media screen and (max-width: 768px) {
.flex{
	display: initial;
	justify-content: initial;
	width: 100%;
}
.flex2{
	display: flex;
	justify-content: space-between;
	width: 100%;
}
.pc-none{display: inherit;}
.sp-none{display: none;}
}

/*------------------------------------------------------Font-*/
@font-face {
  font-family: 'icomoon';
  src:  url('../fonts/icomoon.eot?b61g35');
  src:  url('../fonts/icomoon.eot?b61g35#iefix') format('embedded-opentype'),
    url('../fonts/icomoon.ttf?b61g35') format('truetype'),
    url('../fonts/icomoon.woff?b61g35') format('woff'),
    url('../fonts/icomoon.svg?b61g35#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;

  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-arrow:before {
  content: "\e903";
}
.icon-logo:before {
  content: "\e900";
}
.icon-ka:before {
  content: "\e901";
}
.icon-bie:before {
  content: "\e902";
}
.icon-download2:before {
  content: "\e9c5";
}
.icon-arrow-up2:before {
  content: "\ea3a";
}
.icon-arrow-right2:before {
  content: "\ea3c";
}
.icon-arrow-down2:before {
  content: "\ea3e";
}
.icon-arrow-left2:before {
  content: "\ea40";
}
.icon-envelope-o:before {
  content: "\f003";
}
.icon-map-marker:before {
  content: "\f041";
}
.icon-exclamation-triangle:before {
  content: "\f071";
}
.icon-warning:before {
  content: "\f071";
}
.icon-calendar:before {
  content: "\f073";
}
.icon-external-link:before {
  content: "\f08e";
}
.icon-phone:before {
  content: "\f095";
}
.icon-phone-square:before {
  content: "\f098";
}
.icon-angle-left:before {
  content: "\f104";
}
.icon-angle-right:before {
  content: "\f105";
}
.icon-angle-up:before {
  content: "\f106";
}
.icon-angle-down:before {
  content: "\f107";
}
.icon-instagram:before {
  content: "\f16d";
}
