@charset "utf-8";
@import url("global.css");


/*---------------------------------------------------------------------------------------
	Overall settings
----------------------------------------------------------------------------------------*/
body{
	color: var(--base);
	font-size: var(--medium);
	font-family: var(--gothic);
	font-feature-settings: 'palt' on;
	-webkit-font-smoothing: antialias;
	letter-spacing: 0.05em;
}
body.noscroll{ andoverflow: hidden;}

a{ color: var(--base); text-decoration: underline; -webkit-transition: all .2s; transition: all .2s;}
a:hover{ text-decoration:none; color: var(--key) }
a.no-deco {text-decoration: none;}

::selection {background-color: var(--back2)!important;}/*選択したテキスト*/


/*---footerを常にブラウザ最下部に固定----*/

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 959px) {
	html{ font-size: 60%;}
	body{ line-height: 1.6;}
}
@media screen and (max-width: 768px) {
	html{ font-size: 58%;}
}
/*---------------------------------------------------------------------------------------
	contents
----------------------------------------------------------------------------------------*/

/* font*/
.caution{ color: var(--caution)!important;}
.marker{
	background: linear-gradient(transparent 60%, var(--marker) 60%);
}
.underline{ text-decoration: underline;}

/* bg color */
.bg-key{ background: var(--key)!important; color: var(--white);}

/* block */
.section {
    position: relative;
    width: 94%;
    max-width: 1200px;
	margin: 0 auto 3em;
}

.txtarea{
	margin-bottom: 3em;
}
.txtarea.mb0{
	margin-bottom: 0em;
}
.txtarea.bdr{
	padding: 1em;
	border: 1px solid var(--line2);
}
.txtarea.box {
	padding: 1em;
	background: var(--back2);
}

.column-2 {
	display: flex;
	justify-content: space-between;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	.section {
		margin-bottom: 2em;
	}

	.txtarea{
		margin-bottom: 3em;
	}
	.column-2 {
		display: block;
	}
}
/* link */
a img {
	transition: 0.5s ease-in;
}

a:hover img {
	opacity:  0.6;
}

a[target="_blank"]:after {
	display: inline-block;
	content: "";
    background: url(../images/icn-url.svg) center / 10px no-repeat;
	background-size: contain;
    height: 10px;
    width: 10px;
	margin-left: .5em;
	margin-right: .5em;
	vertical-align: middle;
}
a.no-icn[target="_blank"]:after,
a[href$=".jpg"][target="_blank"]:after,
a[href$=".png"][target="_blank"]:after {
	display: none;
}

a.map[target="_blank"]:after {
	display: inline-block;
	content: "";
	background: url(../images/icn-map.svg) no-repeat;
	background-size: contain;
	margin-left: .3em;
	width: 14px;
	height: 15px;
}
a[href$=".pdf"][target="_blank"]:after {
	display: inline-block;
	content: "";
	background: url(../images/icn-pdf.svg) no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}
a[href$=".xlsx"][target="_blank"]:after {
	display: inline-block;
	content:"";
	background: url(../images/icn-excel.png) no-repeat;
	background-size: contain;
	width: 20px;
	height: 20px;
}
a[href*="tel:"] {
	text-decoration: none;
}

@media (min-width: 751px) {
	a[href*="tel:"] {
		pointer-events: none;
		cursor: default;
		text-decoration: none;
	}
	a[href*="tel:"]:hover {
		color: var(--base);
	}
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	a[target="_blank"]:after {
	    height: 12px;
	    width: 12px;
		margin-left: .5em;
	    background: url(../images/icn-url.svg) center / 12px no-repeat;
	}
}


/* btn */
.btn1 {
	text-align: center;
	margin: 2em 0;
}
.btn1 a {
	display: inline-block;
	min-width: 250px;
	padding: .5em 2.2em .5em 1em;
	text-align: center;
	text-decoration: none;
	outline: none;
	background-color: #fff;
	position: relative;
	border: 1px solid var(--line2);
	transition: color 0.5s ease;
}
.btn1 a:hover {
  color: #fff;
}
.btn1 a:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

.btn1 a::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--back1);
	transform: scaleX(0);
	transform-origin: right;
	transition: all 0.5s ease;
	transition-property: transform;
}
.btn1 a span {
  position: relative;
}
.btn1 a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.8em; 
  transform: translateY(-50%); 
  width: 18px;
  height: 18px;
  background: url(../images/arrow-right.svg) no-repeat center / contain;
  z-index: 3;
  pointer-events: none;
}
.btn1 a:hover::after{
  background: url(../images/arrow-right-w.svg) no-repeat center / contain;
}

.btn1.back a {
	padding: .5em 1em .5em 2.2em;
}
.btn1.back a:after {
    background: url(../images/arrow-left.svg) no-repeat center / contain;
	left: 0.8em;
	right: inherit;
}
.btn1.back a:hover::after{
  background: url(../images/arrow-left-w.svg) no-repeat center / contain;
}

.btn1 a[target="_blank"]:after {
  width: 16px;
  height: 16px;
  background: url(../images/icn-url.svg) no-repeat center / contain;
}
.btn1 a[target="_blank"]:hover::after{
  background: url(../images/icn-url-w.svg) no-repeat center / contain;
}

.btn1 a[href$=".pdf"][target="_blank"]:after {
	background: url(../images/icn-pdf.svg) no-repeat;
  width: 16px;
  height: 16px;
}
.btn1 a[href$=".pdf"][target="_blank"]:hover:after {
	background: url(../images/icn-pdf-w.svg) no-repeat;
}
.btn1 a[href$=".xlsx"][target="_blank"]:after {
	background: url(../images/icn-excel.png) no-repeat;
	width: 20px;
	height: 20px;
}

/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {

}

/* table */
table.table01{
	width: 100%;
	text-align: left;
	border-top: 1px solid var(--white);
	border-left: 1px solid var(--white);
}
table.table01.t-center{
	text-align: center;
}

table.table01 th,
table.table01 td{
	padding: .5em 1em;
	border-bottom: 1px solid var(--white);
	border-right: 1px solid var(--white);
	word-break: break-all;
}
table.table01 th{
	background: var(--back2);
	vertical-align: top;
	width: 1%;
	min-width: 200px;
	white-space: nowrap;
}
table.table01.th-center th,
table.table01.td-center td{
	text-align: center;
	vertical-align: middle;
}

table.table02{
	width: 100%;
	border-top: 1px solid var(--line1);
	border-left: 1px solid var(--line1);
}
table.table02{
	text-align: center;
}

table.table02 th,
table.table02 td{
	padding: .5em 1em;
	border-bottom: 1px solid var(--line1);
	border-right: 1px solid var(--line1);
	word-break: break-all;
}
table.table02 th{
	text-align: center;
	background: var(--back2);
}
table.table02 td{
	width: 1%;
	white-space: nowrap;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	table.table01,
	table.table02{
		font-size: var(--small);
	}
	table.table01 th,
	table.table01 td,
	table.table01 th,
	table.table01 td{
		padding: .5em;
		display: block;
		width: 100%;
	}
	table.table01 th{
	}
	table.table01.th-center th,
	table.table01.td-center td{
	}
}
/* list */
.list1 li{
	list-style-type: disc;
	margin-left: 1.5em;
	line-height: 1.5;
	margin-bottom: .5em;
}
.list2 li,
ol li{
	list-style-type: decimal;
	margin-left: 1.5em;
	line-height: 1.5;
	margin-bottom: .5em;
}
.list-number {
   counter-reset: count 0;
}
.list-number li {
	position: relative;
	font-size: var(--large);
	padding-left: 2em;
	margin-bottom: 1em;
}
.list-number li:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: count 1;
    content: counter(count);
    background: var(--key);
    color: var(--white);
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5;
    text-align: center;
    border-radius: 50%;
}


/* dl */
.dl1 {

}
.dl1 dt {
	position: relative;
	font-size: var(--large);
	font-weight: bold;
}
.dl1 dd {
	margin-bottom: 1.5em;
}
.dl2 dt {
	font-weight: bold;
	font-size: var(--x-large);
	margin-bottom: .3em;
}
.dl2 dt:before {
	content: "●";
	color: var(--key);
	margin-right: .5em;
}
.dl2 dd {
	margin-bottom: 2em;
	margin-left: 1.5em;
}
.dl1.number {
    counter-reset: count 0;
}
.dl1.number dt {
    padding-left: 1.8em;
}
.dl1.number dt:before {
    display: inline-block;
    position: absolute;
    left: 0;
    top: 0;
    counter-increment: count 1;
    content: counter(count);
    background: var(--key);
    color: var(--white);
    width: 1.5em;
    height: 1.5em;
    line-height: 1.5;
    text-align: center;
    border-radius: 50%;
}
.dl1.number dd {
    padding-left: 1.8em;
}
/*見出し*/
.hl01 {
	font-size: var(--xx-large);
    margin-bottom: .3em;
}
.hl02 {
	font-size: var(--x-large);
    margin-bottom: .3em;
}
.hl03 {
	font-size: var(--large);
    margin-bottom: .3em;
}
@media screen and (max-width: 768px) {
	.hl01 { font-size: var(--x-large); margin-bottom: .5em;}
	.hl02 { font-size: var(--large); margin-bottom: .5em;}
	.hl03 { font-size: var(--medium); margin-bottom: .5em;}
}
/*---------------------------------------------------------------------------------------
	tag
----------------------------------------------------------------------------------------*/

.tag {
    display: inline-block;
    min-width: 6em;
    padding: .5em 1em;
    font-size: var(--x-small);
    text-align: center;
    vertical-align: middle;
    border: 1px solid var(--line1);
    background: var(--white);
    line-height: 1;
}
.tag.so-ten {
    border: 1px solid var(--key);
}
@media screen and (max-width: 959px) {
	.tag {
	    min-width: 4em;
	    padding: .5em;
	    font-size: var(--x-small);
	}

}

/*---------------------------------------------------------------------------------------
	animation
----------------------------------------------------------------------------------------*/
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}
 @keyframes DownAnime{
  from {
  	opacity: 0;
	transform: translateY(-90px);
  }
  to {
  	opacity: 1;
	transform: translateY(0);
  }
}

/*---------------------------------------------------------------------------------------
	main
----------------------------------------------------------------------------------------*/
main {
    position: relative;
    margin-bottom: 5em;
    margin-top: calc(10vh + 2em);
}
body#is-home main {
    margin-top: 0;
	margin-bottom: 0;
}
body:not(#is-home) main{
    margin-top: 100px;
}

@media screen and (max-width:1400px){
	body#is-home main,
	body:not(#is-home) main{
	    margin-top: 50px;
	}
}
/*---------------------------------------------------------------------------------------
	header
----------------------------------------------------------------------------------------*/
header div.menu{
	display: none;
}

body header.site-header{
	position: fixed;
	width: 100%;
	height: 10vh;
	z-index: 999;
}
body#is-home header.site-header{
	bottom: 0;
}
body:not(#is-home) header.site-header{
	background: rgba(255, 255, 255, .9);
	top: 0;
}

.headerwrap{
	position: fixed;
	right: 0;
	width: 100%;
	height: 10vh;
	padding-right: 2%;
	display: flex;
	justify-content: right;
	align-items: center;
	z-index: 1000;
	transition: all .3s ease-in-out;
}
body#is-home .headerwrap{
  bottom: 0;
  top: auto;
	justify-content: center;
	background: rgba(255, 255, 255, 1);
}
body#is-home header.site-header.HeightMin .headerwrap{
	justify-content: right;
	background: none;
}

body:not(#is-home) .headerwrap{
  top: 0;
  bottom: auto;
}

body header.site-header.HeightMin{
	position: fixed;
	top: 0;
	height: 70px;
	background: rgba(255, 255, 255, .9);
}
body#is-home  header.site-header.HeightMin .headerwrap,
body header.site-header.HeightMin .headerwrap{
	height: 70px;
	top: 0;
	bottom: auto;
}


#logo{
	position: fixed;
	top: 0;
	left: 0;
	width: 300px;
	padding: 1.5em;
	z-index: 1001;
	transition: all .3s ease-in-out;
}
body:not(#is-home) #logo{
	padding: 1em 0 0 1.5em;
}
body#is-home #logo{
	padding: 1.5em;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0 10px 20px rgba(0,0,0,0.25);
}
body#is-home header.HeightMin #logo,
body:not(#is-home) header.HeightMin #logo{
	width: 230px;
	padding: .8em 0 0 1.5em;
	box-shadow: none;
	background: none;
}

body header a [target="_blank"]:after {
    display: none;
 }

.gnav{
	display: flex;
	gap: 50px;
	list-style: none;
	margin: 0;
	font-family: var(--mincho);
}
.gnav li {
	text-align: center;
	transition: all .3s ease-in-out;
	cursor: pointer;
}
.gnav li a {
	position: relative;
	padding: 4px 0;
	text-decoration: none;
}
.gnav li.current a{
	border-bottom: 3px solid var(--key);
}
.gnav li a:hover {
	color: var(--key);
}

/*------------------------------ responsive ------------------------------*/

@media screen and (max-width:1400px){

	body header.site-header,
	body header.site-header.HeightMin{
		height: 50px;
	}
	body#is-home .headerwrap{
	  top: 0;
	  bottom: auto;
	}
	body#is-home #logo,
	body:not(#is-home) #logo,
	body#is-home header.HeightMin #logo,
	body:not(#is-home) header.HeightMin #logo{
		background: none;/*トップのロゴ背景色消す*/
		box-shadow: none;/*トップのロゴ影消す*/
		width: 160px;
		padding: .5em 0 0 1em;
	}
	body#is-home header .headerwrap,
	body header .headerwrap {
	    display: none;
	    position: fixed;
	    width: 100%;
	    height: 100%;
	    left: 0;
	    top: 0;
	    z-index: 2010;
	    overflow-scrolling: touch;
	    -webkit-overflow-scrolling: touch;
	    overflow-y: auto;
	    opacity: 0;
	}
	body#is-home header.open .headerwrap,
	body#is-home header.HeightMin.open .headerwrap,
	body header.open .headerwrap,
	body header.HeightMin.open .headerwrap {
		display: block;
		overflow: visible;
		opacity: 1;
		height: 100%;
		background: rgba(0,0,0,0.9);
		animation: fadeIn 0.3s ease-in 0s forwards;
	}
	.gnav{
		display: block;
		margin-top: 100px;
		margin-right: 0px;
	}
	.gnav li {
		width: 100%;
		margin: 0;
		text-align: center;
		cursor: pointer;
		font-size: var(--large);
	}
	.gnav li a {
		position: relative;
		padding: 1em;
		display: block;
		color: var(--white);
		background: ;
	}
	.gnav li.current a{
		border-bottom: none;
		color: var(--key);
	}


	header div.menu{
		display: block;
		position: fixed;
		right: 10px;
		top: 5px;
		width: 40px;
		height: 40px;
		cursor: pointer;
		z-index: 3000;
		font-size: 0.9rem;
		text-align: center;
		font-family: var(--gothic);
	}
	header div.menu span,
	header div.menu span:before,
	header div.menu span:after{
		position: absolute;
		display: block;
		width: 32px;
		height: 2px;
		background: var(--base);
		-webkit-transition: .32s ease-in-out;
		        transition: .32s ease-in-out;
	}
	header div.menu span{
		top: 16px;
		left: 4px;
	}
	header div.menu span:before{
		left: 0;
		top: 10px;
	}
	header div.menu span:after{
		left: 0;
		top: 20px;
	}
	header div.menu span:before,header div.menu span:after{
		content: ""
	}
	header.open div.menu span{
		background: var(--white);
		top: 22px;
		-webkit-transform: rotate(45deg);
		        transform: rotate(45deg);
	}
	header.open div.menu span:before{
		background: var(--white);
		left: 50%; 
		width: 0;
	}
	header.open div.menu span:after{
		background: var(--white);
		top: 0;
		-webkit-transform: rotate(-90deg);
		        transform: rotate(-90deg);
	}

}

/*---------------------------------------------------------------------------------------
	footer
----------------------------------------------------------------------------------------*/

footer{
	position: relative;
	width: 100%;
	background: var(--back3);
	padding: 2em 0 0;
	font-size: var(--small);
}
footer a{
	text-decoration: none;
}
.footer-info {
	width: 96%;
	max-width: 1200px;
	position: relative;
	margin: 0 auto;
}
.footer-info h2 {
	font-family: var(--mincho);
	text-align: center;
	font-size: var(--x-large);
}
.footer-info h2 span {
	display: block;
	font-size: var(--x-small);
}
.footer-info p{
	font-size: var(--x-small);
}
.footer-nav {
	position: relative;
	width: 96%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 1em 0;
}

.footer-nav ul{
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.footer-nav li:not(:last-child):after{
	content: ' | ';
	margin-right: .5em;
}
.footer-nav li a {
}
.footer-copyright{
	font-size: var(--x-small);
	padding: .5em 1em;
	text-align: center;
}
#pagetop {
    position: fixed;
    text-align: center;
    width: 40px;
    height: auto;
    right: 20px;
    bottom: 2%;
    z-index: 1002;
    cursor: pointer;
}
#pagetop p {
	font-size: var(--xx-small);
	font-weight: bold;
	white-space: nowrap;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	#pagetop {
	    width: 25px;
	}
}


/*---------------------------------------------------------------------------------------
	ページタイトル
----------------------------------------------------------------------------------------*/
#pgtitle {
	background-image: url('../images/index/top-main-bk.jpg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	text-align: center;
	color: var(--white);
	font-size: var(--xx-large);
	font-weight: normal;
	font-family: var(--mincho);
	text-shadow: 0 0 10px #000;
	padding: 1.5em 1em;
}
#pgtitle span {
	display: block;
	font-size: var(--small);
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	#pgtitle {
		font-size: var(--large);
		padding: 1em .5em;
	}
}
/*---------------------------------------------------------------------------------------
	パンくず
----------------------------------------------------------------------------------------*/
.pnav{
	padding: .5em 1em;
	margin-bottom: 3em;
	display: flex;
	flex-wrap: wrap;
	font-size: var(--x-small);
	background: var(--back3);
}

.pnav li a {
	font-weight: normal;
}

.pnav li:not(:last-child):after{
	display: inline-block;
    content: ">";
	margin: 0 .5em;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	.pnav{
		margin-bottom: 2em;
		font-size: var(--x-small);
	}
	.pnav li:not(:last-child):after{
		width: 8px;
		height: 9px;
	}
}
/*---------------------------------------------------------------------------------------
	ページ内リンク
----------------------------------------------------------------------------------------*/
.pagelink {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 1.5em;
	margin-bottom: 2em;
}
.pagelink a {
	text-decoration: none;
}
.pagelink li { 
	position: relative;
}
.pagelink li::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 0.3em;

  background: url("../images/arrow-down.svg") no-repeat center;
  background-size: contain;

  vertical-align: middle;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.pagelink {
		gap: 1em;
	}
	.pagelink li::after {
	  width: 10px;
	  height: 10px;
	  margin-left: 0.3em;
	}
}
/*---------------------------------------------------------------------------------------
	googlemap
----------------------------------------------------------------------------------------*/

.gmap {
	position: relative;
	overflow: hidden;
    width: 100%;
	height: 0;
    padding-bottom: 40%;
 }
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.gmap {
		padding-bottom: 60%;
	}
	.gmap.top {
	    padding-bottom: 60%;
	}
}
/*---------------------------------------------------------------------------------------
	pager
----------------------------------------------------------------------------------------*/
.pager {
    margin: 3em auto 0;
    display: flex;
    justify-content: center;
    align-items: center;
    align-self: center;
}
.pager li {
	position: relative;
    margin: 0 .3em;
}

.pager li a {
	display: inline-block;
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align:center;
    border: 1px solid var(--key);
    border-radius: 3px;
    color: var(--key);
    text-decoration: none;
}

.pager li.prev a,
.pager li.next a {
    background: none;
    border: none;
	line-height: 20px;
    padding-top: 10px;
	width: 20px;
}
.pager li.prev a img,
.pager li.next a img{
    height: 20px;
}
.pager li a.active,
.pager li a:hover {
   	background: var(--key);
    color: var(--white);
	opacity: 1;
}
.pager li.prev a:hover,
.pager li.next a:hover {
   	background: none;
}
.pager li a:hover img {
	opacity: 1;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width:768px){
	.pager {
	}
	.pager li {
	    margin: 0 .3em;
	}
	.pager li a {
		width: 24px;
		height: 24px;
		line-height: 20px;
	}
	.pager li.prev a,
	.pager li.next a {
		line-height: 12px;
	    padding-top: 4px;
	}
	.pager li.prev a img,
	.pager li.next a img{
	    height: 12px;
	}
}

/*---------------------------------------------------------------------------------------
	contact
----------------------------------------------------------------------------------------*/

.contact-box {
	background: var(--back2);
	padding: 2.5em 0;
}
.contact-box ul{
	display: flex;
	justify-content: space-between;
	font-family: var(--eng);
	font-weight: bold;
}
.contact-box li {
	width: 48%;
	font-size: var(--xx-large);
	display: flex;
	align-items: center;
}
.contact-box li.tel:before {
	content: "";
    background: url(../images/icn-tel.svg) center / 50px no-repeat;
	background-size: contain;
    height: 50px;
    width: 50px;
	margin-right: .5em;
}
.contact-box li.mail:before {
	content: "";
    background: url(../images/icn-mail.svg) center / 50px no-repeat;
	background-size: contain;
    height: 50px;
    width: 50px;
	margin-right: .5em;
}
.contact-box a {
	text-decoration: none;
}
/*------------------------------ responsive ------------------------------*/
@media screen and (max-width: 768px) {
	.contact-box ul{
		display: block;
	}
	.contact-box li {
		width: 100%;
		font-size: var(--xxx-large);
	}
	.contact-box li:not(last-child) {
		margin-bottom: 1em;
	}
	.contact-box li.tel:before {
	    height: 50px;
	    width: 50px;
	}
	.contact-box li.mail:before {
	    height: 50px;
	    width: 50px;
	}

}