@charset "utf-8";
/*
Theme Name: jyokoen
Description:
Theme URI:
Author: hagihara
Version: 1.0
License: ライセンス
License URI: ライセンスの URL
*/
/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
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,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
	box-sizing: border-box;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
h5 {
	font-weight: 500;
}

/* ----------------------------------------------------------------------
 base
---------------------------------------------------------------------- */
html {
    font-size: 50%;
}
@media (min-width: 1025px) {
	html {
		font-size: 62.5%;
	}
}

body {
    color: #231815;
    /*font-family: YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;*/
	font-family: "秀英にじみ丸ゴシック B" ,"ヒラギノ丸ゴ Pro W4","ヒラギノ丸ゴ Pro","Hiragino Maru Gothic Pro","ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","HG丸ｺﾞｼｯｸM-PRO","HGMaruGothicMPRO";
    font-size: 1.7rem;
	font-weight: 500;
    line-height: 2;
}
@media (min-width: 768px) {
	body {
		font-size: 1.8rem;
	}
}

a {
	text-decoration: none;
	outline:none;
	cursor: pointer;
	word-break: break-all;
}
a:hover {
    transition: .2s;
}

a.underline-link:hover {
	border-bottom: 2px solid;
	 transition: .2s;
}

.border {
	border: 2px solid #003D00;
}

a[target="_blank"]::after {
	font-family: "Font Awesome 5 Free";
	content: "\f35d";
	font-size: 0.8em;
    margin-left: 9px;
	margin-right: 9px;
    font-weight: 700;
}
/* 例外 */
.target-icon-non a[target="_blank"]::after {
	content: " ";
	margin-left: 0px;
	margin-right: 0px;
	margin-top: 0px;
}
a img:hover {
  opacity: .8;
}

img.scale, img.responsive {
	max-width: 100%;
	height: auto;
}
img{
    -webkit-backface-visibility: hidden;
    vertical-align: bottom;
}

/*区切り*/
svg{
    width: 100%;
    height:10px;
	margin-top: 20px;
	padding-top: 10px;

}
svg line{
    fill: none;
    stroke: #597916;
    stroke-width: 5;
    stroke-linecap: round;
    stroke-dasharray: 1, 10;
}
/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.flex{
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap{
    flex-wrap: wrap;
}
.fl-column {
    flex-direction: column;
}
.fl-center{
    justify-content: center;
    align-items: center;
}
.fl-between{
    flex-wrap: wrap;
    justify-content: space-between;
}
.fl-justify{
    justify-content: center;
}
.fl-around{
    justify-content: space-around;
}
.fl-end{
	justify-content: flex-end;
}
.fl-start{
	justify-content: flex-start;
}
.fl-align-center {
    align-items: center;
}
.fl-align-start{
    align-items: flex-start;
}
.fl-align-self-start-only {
	align-self: flex-start;
}
.fl-align-self-end {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-end {
		align-self: flex-end;
	}
}
.fl-align-self-start {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-start {
		align-self: flex-start;
	}
}
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.grid-column{
    padding: 1.5rem 1rem;
}
/* 3つ */
.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media (min-width:768px) {
	.grid-3 {
		display: grid;
		gap: 3rem;
		grid-template-columns: repeat(auto-fit, minmax(29%, 1fr));
	}
}
.col-2{
    width: 100%;
}
@media (min-width:768px) {
	.col-2 {
		width: 50%;
	}
}
.col-xs-2 {
    width: 50%;
}
.col-xs-2-sub {
    width: 48.5%;
}

.col-2-top1 {
    width: 100%;
}
@media (min-width:1025px) {
	.col-2-top1 {
		width: 55%;
	}
}

.col-2-top2 {
    width: 100%;
}
@media (min-width:1025px) {
	.col-2-top2 {
		width: 45%;
	}
}

.col-3{
    width: 100%;
}
@media (min-width:768px) {
	.col-3 {
		width: 31%;
	}
}

.col-xs-3 {
    width: 48%;
}
@media (min-width:768px) {
	.col-xs-3 {
		width: 31%;
	}
}

.col-4{
    width: calc(50% - 1px);
}
@media (min-width:768px) {
	.col-4 {
		width: calc(25% - 1px);
	}
}

/* sub-page */
.col-2-sub {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-sub {
		width: 48.5%;
	}
}

/* sub-page */
.col-2-contact-area {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-contact-area {
		width: 46%;
	}
}

.col-4-sub {
    width: calc(50% - 10px);
}
@media (min-width:768px) {
	.col-4-sub {
		width: calc(25% - 10px);
	}
}
@media (min-width:1025px) {
	.col-4-sub {
		width: calc(25% - 20px);
	}
}

.contents-150,.contents-135,.contents,.contents-02{
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width:768px) {
	.contents-150,.contents-135,.contents{
        width: 94%;
    }
    .contents-02{
        width: 90%;
    }
}

@media (min-width: 1025px) {
	.contents-150{
        width: 150rem;
    }
	.contents-135{
        width: 135rem;
    }
	.contents{
        width: 120rem;
    }
    .contents-02{
        width: 100rem;
    }
}

.contents-contact-area {
	width: 84%;
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1025px) {
	.contents-contact-area {
        width: 50rem;
    }
}

.text-c{
    text-align: center;
}
.text-r{
    text-align: right;
}
.text-lc,.text-l{
    text-align: left;
}
.text-cl{
    text-align: center;
}

@media (min-width:768px) {
	.text-lc{
		text-align: center;
	}
	.text-cl{
		text-align: left;
	}
}

/* ----------------------------------------------------------------------
 アニメーション
---------------------------------------------------------------------- */
.h-chara {
  animation: fuwafuwa 1s ease-in-out infinite alternate;
  position: absolute;
  top: 10rem;
  right: 3rem;
}
@media (min-width:768px) {
	.h-chara {
	  top: 2.5rem;
	  right: 2rem;
	}
}
.h-chara img {
	width: 75px;
  }
@media (min-width:768px) {
	.h-chara img {
		width: 120px;
	}
}

.fuwafuwa {
	-webkit-animation-name:fuwafuwa; /* fuwafuwaっていうアニメーションをしてね！ */
	-webkit-animation-duration:2s;
	-webkit-animation-iteration-count:infinite;
	/*-webkit-animation-direction:alternate;*/
	-webkit-animation-timing-function:ease;
	
	-moz-animation-name:fuwafuwa;
	-moz-animation-duration:2s;
	-moz-animation-iteration-count:infinite;
	/*-moz-animation-direction:alternate;*/
	-moz-animation-timing-function:ease;
}
/* fuwafuwaっていうアニメーションはこんなふうだよ！ */
@-webkit-keyframes fuwafuwa {
	0% {-webkit-transform:translate(0, 0);}
	50% {-webkit-transform:translate(0, -10px);}
	100% {-webkit-transform:translate(0, 0);}
}
@-moz-keyframes fuwafuwa {
	0% {-moz-transform:translate(0, 0);}
	50% {-moz-transform:translate(0, -10px);}
	100% {-moz-transform:translate(0, 0);}
}
/*IE11対応コード*/
@keyframes fuwafuwa {
	0% {transform:translate(0, 0);}
	50% {transform:translate(0, -10px);}
	100% {transform:translate(0, 0);}
}

/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:767px) {
	.sp-column {
		flex-direction: column;
	}
	.sp-center{
		text-align: center;
	}
	.sp-mgn {
		padding-left: 1.5rem;
		padding-right: 1.5rem;
	}
	.sp-mt-1 {
		margin-top: 1rem;
	}
	.sp-mt-2 {
		margin-top: 2rem;
	}
	.sp-mt-3 {
		margin-top: 3rem;
	}
	.sp-mt-5 {
		margin-top: 5rem;
	}
	.sp-mt-8 {
		margin-top: 8rem;
	}
	.sp-mt-10 {
		margin-top: 10rem;
	}
}

/* ----------------------------------------------------------------------
 タブレット特例
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tb-mt-3 {
		margin-top: 3rem;
	}
	.tb-mt-10 {
		margin-top: 10rem;
	}
}
/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mtb-1{
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.mtb-2{
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.mt-1{
    margin-top: 1rem;
}
.mt-2{
    margin-top: 2rem;
}


.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}


.mt-4{
    margin-top: 2rem;
}
@media (min-width: 768px) {
	.mt-4{
	   	margin-top: 4rem;
	}
}


.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}


.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}


.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}


.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}


.mt-15{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}


.mt-20{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}

.mt-25{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-25{
	   	margin-top: 25rem;
	}
}

.mb-1{
    margin-bottom: 1rem;
}
.mb-3{
    margin-bottom: 3rem;
}


.mb-5{
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.mb-5{
	   	margin-bottom: 5rem;
	}
}

.mb-8{
    margin-bottom: 4rem;
}
@media (min-width: 768px) {
	.mb-8{
	   	margin-bottom: 8rem;
	}
}

.mb-10{
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
	.mb-10{
	   	margin-bottom: 10rem;
	}
}

.mb-15{
    margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
	.mb-15{
	   	margin-bottom: 15rem;
	}
}

.mb-20{
    margin-bottom: 10rem;
}
@media (min-width: 768px) {
	.mb-20{
	   	margin-bottom: 20rem;
	}
}

.ml-1{
    margin-left: 1rem;
}
.ml-2{
    margin-left: 2rem;
}
.ml-3{
    margin-left: 3rem;
}

.mr-03{
    margin-right: .3rem;
}

.mr-1{
    margin-right: 1rem;
}
.mr-2{
    margin-right: 2rem;
}
.mr-3{
    margin-right: 3rem;
}
.m-auto {
	margin-left : auto;
	margin-right: auto; 
}


.ml-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.ml-auto {
		margin-left : auto;
		margin-right: 0; 
	}
}


.mr-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.mr-auto {
		margin-left : 0;
		margin-right: auto; 
	}
}

.pt-10 {
	padding-top: 5rem;
}
@media (min-width: 768px) {
	.pt-10 {
		padding-top: 10rem;
	}
}

.pd-1 {
    padding: 1rem;
}

.pd-2 {
    padding: 2rem;
}

.pd-3 {
    padding: 3rem;
}

.pd-5 {
    padding: 5rem;
}

.pd-8 {
    padding: 5rem;
}
@media (min-width: 1025px) {
	.pd-8 {
		padding: 8rem;
	}
}
.pb-1{
    padding-bottom: 1rem;
}
.pb-20 {
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
	.pb-20 {
		padding-bottom: 20rem;
	}
}

.pd-tb-4 {
	padding: 4rem 0;
}
.pd-tb-6 {
	padding: 6rem 0;
}
.pd-tb-8 {
	padding: 8rem 0;
}

.pr-4 {
	padding-right: 0;
}
@media (min-width: 1025px) {
	.pr-4 {
		padding-right: 4rem;
	}
}

.pl-4 {
	padding-left: 0;
}
@media (min-width: 1025px) {
	.pl-4 {
		padding-left: 4rem;
	}
}

.height-100p {
	height: 100%;
}
.width-86p {
	width: 86%;
}
.width-100p {
	width: 100%;
}
/* ----------------------------------------------------------------------
 フォント関連
---------------------------------------------------------------------- */
/* サイズ */
.fs-75{
    font-size: 5.625rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-75{
    	font-size: 7.5rem;
	}
}

.fs-60{
    font-size: 4.02rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-60{
    	font-size: 6rem;
	}
}

.fs-55{
    font-size: 4.125rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-55{
    	font-size: 5.5rem;
	}
}


.fs-45{
    font-size: 3.375rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-45{
    	font-size: 4.5rem;
	}
}

.fs-36 {
	font-size: 2.7rem;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-36 {
		font-size: 3.6rem;
	}
}


.fs-30 {
	font-size: 2.25rem;
	line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-30 {
		font-size: 3rem;
	}
}

.fs-26{
    font-size: 1.95rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-26{
    	font-size: 2.6rem;
	}
}

.fs-24{
    font-size: 1.875rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-24{
    	font-size: 2.4rem;
	}
}

.fs-20 {
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-20{
    	font-size: 2rem;
	}
}


.fs-16{
    font-size: 1.5rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-16{
    	font-size: 1.6rem;
	}
}

.fs-15{
    font-size: 1.3rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-15{
    	font-size: 1.5rem;
	}
}

.fs-13{
    font-size: 1.2rem;
    line-height: 1.7;
}
@media (min-width: 768px) {
	.fs-13{
    	font-size: 1.3rem;
	}
}

.fs-80p {
    font-size: 80%;
}
.fs-90p {
    font-size: 90%;
}
.fs-110p {
    font-size: 110%;
}
.fs-120p {
    font-size: 120%;
}

.en {
	font-family: 'Alata', sans-serif;
}
.en-2 {
	font-family: 'Allura', cursive;
	transform: rotate(-5deg);
	color: #003D00;
	width: 80px;
	font-size: 24px;
}
@media (min-width:768px) {
	.en-2 {
		width: 100px;
		font-size: 36px;
	}
}

.tate {
	writing-mode: vertical-rl;
	letter-spacing: .1em;
}

.bold{
    font-weight: 700!important;
}
.normal {
	font-weight: 500!important;
}
.underline {
	border-bottom: 2px solid;	
}
.underline-red {
	border-bottom: 1px solid #900000;	
}
.maker {
	color: #003D00;
	font-weight: 700;
	background: linear-gradient(transparent 0%, #d1d7e6 0%);
}
.line-15 {
	line-height: 1.5;
}
.line-16 {
	line-height: 1.6;
}
.line-20 {
	line-height: 2;
}
.line-22 {
	line-height: 2.2;
}
.line-25 {
	line-height: 2.5;
}
.line-27 {
	line-height: 2.7;
}

.ls-01 {
	letter-spacing: 0.1em;
}
.ls-04 {
	letter-spacing: 0.4em;
}

/* 色*/
.main-color{
    color: #003D00;
}
.sub-color{
    color: #628024;
}
.white{
    color: #fff;
}
.black{
    color: #4C463D;
}
.red {
	color: #E63828;
}

/* インデント */
.indent-1 {
    padding-left:1em;
    text-indent:-1em;
}

/* position */
.p-relative {
	position: relative;
}

/* ----------------------------------------------------------------------
 背景色
---------------------------------------------------------------------- */
.bg {
    background: #ECF3FB;
}
.bg-base {
    background: #F6F9E8;
}
.bg-main {
    background: #003D00;
}
.bg-yellow {
    background: #FEE100;
}
.bg-black {
    background: #111;
}
.bg-gray {
	background: #FBFBFB;
}
.bg-gray-02 {
	background: #F1F1F1;
}
.bg-red {
	background: #900000;
}
.bg-pink {
	background: #ea6383;
}
.bg-white {
	background: #fff;
}

/* padding */
.bg-pd {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
@media (min-width: 1025px) {
	.bg-pd {
		padding-top: 15rem;
		padding-bottom: 15rem;
	}
}


/* ----------------------------------------------------------------------
 ボタン
---------------------------------------------------------------------- */
.btn{
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 600;
	margin-left: auto;
	margin-right: auto;
	width: 300px;
	border-radius: 50px;
}
@media (min-width: 1025px) {
	.btn{
		height: 50px;
		line-height: 50px;
		font-weight: 700;
    }
}
.btn:hover {
  transition: all .2s;
}

/* PCで左よせボタン */
.btn-free {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 600;
	width: 280px;
	border-radius: 50px;
}
@media (min-width: 1025px) {
	.btn-free {
		height: 50px;
		line-height: 50px;
    }
}
.btn-free:hover {
  transition: all .2s;
}

/* 100%幅 */
.btn-wide {
	display: block;
    height: 50px;
	line-height: 50px;
	text-align: center;
    font-weight: 600;
	width: 100%;
	border-radius: 50px;
}
@media (min-width: 1025px) {
	.btn-wide {
		height: 60px;
		line-height: 60px;
    }
}
.btn-wide:hover {
  transition: all .2s;
}


/* メインカラー */
.btn-main-color {
	color: #fff;
	background: #003D00;
	border: 1px solid #003D00;	
}
.btn-main-color:hover {
  background: none;
  color: #003D00;
}

/* サブカラー */
.btn-sub-color {
	color: #fff;
	background: #628024;
	border: 1px solid #628024;	
}
.btn-sub-color:hover {
	background: none;
	color: #628024;
}

/* 赤線文字赤ボタン */
.btn-red {
	background: none;
	color:#E63828;
	border: 2px solid #E63828;	
}
.btn-red:hover {
	color: #fff;
	background: #E63828;
	border: 2px solid #E63828;	
}

/* 白色 */
.btn-white {
	color: #003D00;
	background: #fff;
	border: 2px solid #fff;
	
}
.btn-white:hover {
  background: none;
  color: #003D00;
  border: 2px solid #003D00;
}

/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */
.sp-only-on {
    display: block;
   }
@media (min-width: 768px) {
	.sp-only-on {
        display: none;
    }
}

.sp-on {
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on {
        display: none;
    }
}

.tab-on {
    display: none;
}
@media (min-width: 768px) {
	.tab-on {
		display: block;
	}
}

.pc-on {
    display: none;
}
@media (min-width: 1025px) {
	.pc-on {
		display: block;
	}
}

/* ----------------------------------------------------------------------
 サイト共通
---------------------------------------------------------------------- */
header{
    width: 100%;
    height: auto;
}
@media (min-width: 1025px) {
	header{
        display: flex;
		align-items: center;
    }
}
header nav{
        margin-left: auto;
        margin-right: 2rem;
}
header a{
        color: #ED6D2C;
}

.seo {
	display: none;	
	
}
@media (min-width: 1025px) {
	.seo {
		display: block;
		position: absolute;
		top: 10px;
		right: 25px;
		font-size: 1.1rem;
		color: #4C463D;
		padding: 0;
	}
}
.seo a {
	font-size: 1.1rem;
	font-weight: 400;
	color: #4C463D;
	text-align: left;
}

.header-logo{
	display: flex;
	justify-content: center;
	align-items: center;
}
.header-logo img {
	width: 94px;
}
@media (min-width: 1025px) {
	.header-logo img {
		width: 94px;
    }
}

/*パソコンメニュー*/
.pc-nav {
	display: none;
}
@media (min-width: 1025px) {
	.pc-nav{
        display: flex;
		align-items: center;
		text-align: center;
		width: 100%;
		margin-top: 2rem;
		font-weight: 500;
    }
    .pc-nav li {
		display: flex;
		justify-content: center;
		align-items: center;
        margin: 0;
		line-height: 1.2;
		width: calc(100% / 7);
		height: 60px;
		text-shadow: 1px 2px 0 #fff;
    }
	.pc-nav li span {
		display: block;
		font-size: 12px;
		margin-top: 5px;
	}
	.pc-nav li a {
		display: flex;	
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		color: #221815;
		font-size: 18px;
		font-weight: 700;
	}
	.pc-nav li:hover {
		background: url(images/active-02.png) top center no-repeat;
	} 
	.pc-nav li.active-03:hover {
		background: url(images/active-03.png) top center no-repeat;
	} 
	.pc-nav li.hover-non:hover {
		background: none;		
	}
}

.pc-nav li.active-02-on {
	background: url(images/active-02.png) top center no-repeat;
}
.pc-nav li.active-03-on {
	background: url(images/active-03.png) top center no-repeat;
}

/* スマホメニュー */
.sp_nav{
        display: block;
}
@media (min-width: 1025px) {
	.sp_nav{
        display: none;
    }
}

.open #global-nav {
    z-index: 1000;
    visibility: visible;
}
#global-nav {
    visibility: hidden;
    position: fixed;
    display: table;
    vertical-align: middle;
    color: #fff;
    top: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    font-size: 16px;
}
#global-nav ul {
    display: table-cell;
    vertical-align: middle;
    list-style: none;
}
#global-nav a {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 10px 0;
}
/*nav-list*/
#global-nav ul li {
    opacity: 0;
    -webkit-transform: scaleX(0) translateX(-260px);
    transform: scaleX(0) translateX(-260px);
    -webkit-transition: none;
    transition: none;
}
.open #global-nav ul li {
    opacity: 1;
    -webkit-transform: scaleX(1) translateX(0);
    transform: scaleX(1) translateX(0);
    -webkit-transition: all .3s ease-out;
    transition: all .3s ease-out;
    -webkit-transition-delay: .1s;
    transition-delay: .1s;
}
.open #global-nav ul li:nth-child(2) {
    -webkit-transition-delay: .2s;
    transition-delay: .2s;
}
.open #global-nav ul li:nth-child(3) {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
}
.open #global-nav ul li:nth-child(4) {
    -webkit-transition-delay: .4s;
    transition-delay: .4s;
}
.open #global-nav ul li:nth-child(5) {
    -webkit-transition-delay: .5s;
    transition-delay: .5s;
}
.open #global-nav ul li:nth-child(6) {
    -webkit-transition-delay: .6s;
    transition-delay: .6s;
}
.open #global-nav ul li:nth-child(7) {
    -webkit-transition-delay: .7s;
    transition-delay: .7s;
}
.open #global-nav ul li:nth-child(8) {
    -webkit-transition-delay: .8s;
    transition-delay: .8s;
}
.open #global-nav ul li:nth-child(9) {
    -webkit-transition-delay: .9s;
    transition-delay: .9s;
}
.open #global-nav ul li:nth-child(10) {
    -webkit-transition-delay: 1.0s;
    transition-delay: 1.0s;
}
.open #global-nav ul li:nth-child(11) {
    -webkit-transition-delay: 1.1s;
    transition-delay: 1.1s;
}
.open #global-nav ul li:nth-child(12) {
    -webkit-transition-delay: 1.2s;
    transition-delay: 1.2s;
}
.open #global-nav ul li:nth-child(13) {
    -webkit-transition-delay: 1.3s;
    transition-delay: 1.3s;
}
.open #global-nav ul li:nth-child(14) {
    -webkit-transition-delay: 1.4s;
    transition-delay: 1.4s;
}
.open #global-nav ul li:nth-child(15) {
    -webkit-transition-delay: 1.5s;
    transition-delay: 1.5s;
}
.open #global-nav ul li:nth-child(16) {
    -webkit-transition-delay: 1.6s;
    transition-delay: 1.6s;
}

/*#nav-bg*/
#nav-bg {
    content: "";
    width: 45px;
    height: 45px;
    top: 8px;
    right: 10px;
    display: block;
    position: fixed;
    background: #003D00;
    box-shadow: 0 0.5rem 3rem rgba(153, 153, 153, 0.3);
    box-sizing: border-box;
    z-index: 999;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}
.open #nav-bg {
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: all .6s ease-out;
    transition: all .6s ease-out;
    background: #003D00;
    width: 3000px;
    height: 3000px;
    margin-right: -1200px;
    margin-top: -1200px;
}
/*#nav-toggle*/
#nav-toggle {
    display: block;
    position: fixed;
    right: 18px;
    top: 2px;
    width: 25px;
    height: 30px;
    cursor: pointer;
    padding: 10px 11px;
    z-index: 1001;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#nav-toggle div {
    position: relative;
}
#nav-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 20px;
    background: #fff;
    left: 11px;
    zoom: 1;
    -webkit-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
    top: 12px;
}
#nav-toggle span:nth-child(2) {
    top: 19px;
}
#nav-toggle span:nth-child(3) {
    top: 26px;
}
.open #nav-toggle {
    background: transparent;
}
.open #nav-toggle span {
    background: #fff;
}
.open #nav-toggle span:nth-child(1) {
    top: 25px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    zoom: 1;
}
.open #nav-toggle span:nth-child(2) {
    width: 0;
    left: 50%;
}
.open #nav-toggle span:nth-child(3) {
    top: 25px;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    zoom: 1;
}

/* お問い合わせエリア */
.contact-area{
    width: 100%;
    padding: 7rem 0;
    background: #2899D3;
	/*background: url(./images/contact-area-sp.jpg) center;
    background-size: cover;*/
}
@media (min-width: 1025px) {
    .contact-area{
		/*background: url(./images/contact-area.jpg) center;*/
		height: 22rem;
    }
}

/* footer */
footer {
    max-width: 100%;
	height: auto;
}
@media (min-width: 1025px) {
	footer {
	}
}

/*フッターナビ*/
.footer-nav-con {
	display: flex;
	justify-content: center;
	background: #C9BC9C;
}
@media (min-width: 1025px) {
	.footer-nav-con {
		display: flex;
		justify-content: center;
		background: #C9BC9C;
	}
}
.footer-nav {
	display: none;
}
@media (min-width: 1025px) {
	.footer-nav {
		display: flex;
		width: 100rem;
		padding: 1rem 0;
	}
}
.footer-nav a{
   color: #4C463D;
}
.footer-nav a:hover{
    padding-bottom: 0.1rem;
    border-bottom: 2px solid #003D00;
}
.footer-nav li{
	line-height: 2;
	width: 16.5%;
	text-align: center;
}

/*フッターコンタクト*/
.footer-nav-con-2 {
	position: relative;
	background: url(./images/footer.png) repeat-x bottom, url(./images/pat-01.png) repeat top;
	height: auto;
	padding-top: 8rem;
	padding-bottom: 25rem;
}

.footer-logo {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3rem;;
}
.footer-logo img {
}
@media (min-width: 1025px) {
	.footer-logo img {
		width: 94px;
    }
}

.copyright{
	background: #013D01;
	text-align: center;
	font-size: 12px;
	color: #fff;
	padding: 2rem 0;
}
.copyright a{
	color: #fff;
}

/* ----------------------------------------------------------------------
 cta-area
---------------------------------------------------------------------- */

.pagetop {
  display: none;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  z-index: 999;
}

@media (min-width: 768px) {
	.pagetop {
		right: 0rem;
	}
}
@media (min-width: 1025px) {
	.pagetop {
		right: 1rem;
	}
}
.pagetop img {
	width: 48px;
}
@media (min-width: 768px) {
	.pagetop img {
		width: 60px;
	}
}

.cta-pc {
	display: none;
	position: fixed;
	left: 0rem;
	bottom: 50%;
	transform: translateY(50%);
	z-index: 9;
}
.cta-pc img {
	display: none;
}
@media (min-width: 1025px) {
	.cta-pc img	{
		display: block;
		width: 110px;
	}
}

/* ----------------------------------------------------------------------
 動画埋め込み
---------------------------------------------------------------------- */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 1rem auto 5rem auto;
}
.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
	.movie-wrap {
		margin: 6rem auto 10rem auto;
		width: 80%;
	}
}
/* ----------------------------------------------------------------------
 GoogleMap埋め込み
---------------------------------------------------------------------- */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}

/* ----------------------------------------------------------------------
 table 横スクロール
---------------------------------------------------------------------- */
/* 横スクロール */
.scroll-area {
  overflow: auto;
  white-space: nowrap;
}
.scroll-area::-webkit-scrollbar {
  height: 7px;
}
.scroll-area::-webkit-scrollbar-track {
  background: #efefef；
}
.scroll-area::-webkit-scrollbar-thumb {
	background: #eee;
}
/*tb-type-01*/
.tb-type-01 {
	table-layout: fixed;
	width: 100%;
	min-width: 100%;
	border-top: 2px solid #003D00;
    border-bottom: 2px solid #003D00;
}

.tb-type-01 tr {
    
}
.tb-type-01 tr:nth-child(even) {
	background: #F1F1F1;
}
.tb-type-01 th {
	width: 11rem;
	vertical-align: middle;
	text-align: center;
	font-weight: 700;
	color: #003D00;
	/*background: #d1d7e6;*/
	font-size: 13px;
	line-height: 1.5;
	padding: .5rem;
}
@media only screen and (min-width: 768px) {
.tb-type-01 th {
	width: 18rem;
	font-size: 16px;
}
}
@media only screen and (min-width: 1025px) {
	.tb-type-01 th {
		width: 25rem;
		font-size: 18px;
		padding: 3rem 1rem;
	}
}

.tb-type-01 td {
	width: 22rem;
	font-size: 12px;
	line-height: 1.5;
	padding: 2rem;
	text-align: center;
	vertical-align: middle;	
}
@media only screen and (min-width: 768px) {
	.tb-type-01 td {
		width: 25rem;
		font-size: 14px;
		padding: 2rem;
	}
}
@media only screen and (min-width: 1025px) {
	.tb-type-01 td {
		font-size: 18px;
	}
}

/* ----------------------------------------------------------------------
 top-page
---------------------------------------------------------------------- */
.full {
	position: relative;
}

.full a {
	background-size: cover;
	height: 30vh;
}
@media (min-width: 1025px) {
	.full a {
		height: calc(29vh);
	}
}


.full a.img01 {
	background: url("images/hero-01-sp.jpg") center center no-repeat;
	background-size: cover;	
}
 .full a.img02 {
	background: url("images/hero-02-sp.jpg") center center no-repeat;
	background-size: cover;
}
 .full a.img03 {
	background: url("images/hero-03-sp.jpg") center center no-repeat;
	background-size: cover;
}
 .full a.img04 {
	background: url("images/hero-04-sp.jpg") center center no-repeat;
	background-size: cover;
}
/*
 .full a.img05 {
	background: url("images/hero-05.png") center center no-repeat;
	background-size: cover;
}
 .full a.img06 {
	background: url("images/hero-06.png") center center no-repeat;
	background-size: cover;
}
 .full a.img07 {
	background: url("images/hero-07.png") center center no-repeat;
	background-size: cover;
}
*/
@media (min-width: 1025px) {
	.full a.img01 {
		background: url("images/hero-01.png") center center no-repeat;
		background-size: cover;
	}
	 .full a.img02 {
		background: url("images/hero-02.png") center center no-repeat;
		background-size: cover;
	 }
	 .full a.img03 {
		background: url("images/hero-03.png") center center no-repeat;
		background-size: cover;
	 }
	.full a.img04 {
		background: url("images/hero-04.png") center center no-repeat;
		background-size: cover;
	 }
}


.full .slick-dots {
	bottom: -11%;
	z-index: +1;
}

@media (min-width: 1025px) {
	.full .slick-dots {
		bottom: -12%;
		z-index: +1;
	}
}
@media (min-width: 1300px) {
	.full .slick-dots {
		bottom: -10%;
		z-index: +1;
	}
}

/* hover時の色を変更 */
.full .slick-dots li button:hover:before,
.full .slick-dots li button:focus:before {
    opacity: 1;
	color: #003D00;
}

.full .slick-dots li button:before{
    font-family: 'slick';
    font-size: 13px;
    line-height: 30px;
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 10px;
    /* 元のcontentプロパティの値だとfont-sizeを変更した際に位置がずれてしまうので値を変更 */
    /* content: '•'; */
    content: '●';
    text-align: center;
    opacity: .25;
    color: #111;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
/* active時の色を変更 */
.full .slick-dots li.slick-active button:before	{
		opacity: .75;
		color: #003D00;
	}



/* 縦文字-ごあいさつ */
.top-greeting {
	color: #003D00;
	font-size: 4.125rem;
    line-height: 1.5;
	font-weight: 700;

	letter-spacing: .1em;
	writing-mode: horizontal-tb;
	width: 100%;
}
@media only screen and (min-width: 1025px) {
	.top-greeting {
		writing-mode: vertical-rl;
		width: auto;
	
		display: flex;
		justify-content: center;
		
		border: 2px solid;
		font-size: 2.6rem;
		padding-top: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 1rem;
		line-height: 1;
	}
}

/* 新茶 */
.top-shincha {
	background: url(images/top-shincha-back-sp.jpg) no-repeat left top;
	color: #003D00;
	height: atuo;
	margin-left: auto;
	margin-right: auto;
	width: calc(100% - 3rem);
	padding-top: 5rem;
	padding-bottom: 5rem;
}

@media only screen and (min-width: 768px) {
	.top-shincha {
		height: 400px;
		background: url(images/top-shincha-back.jpg) no-repeat center top;
		width: 100rem;
		padding-top: 0;

	}
}

/* paris 2021 */
.contents-paris {
	max-width: 100%;
	margin-right: auto;
    margin-left: auto;
}
@media (min-width:768px) {
	.contents-paris {
        width: 94%;
    }
}
@media (min-width: 1025px) {
	.contents-paris {
        width: 100rem;
    }
}

/* ----------------------------------------------------------------------
 サブページ共通
---------------------------------------------------------------------- */
.wrapper {
    width: 100%;
    padding-top: 8rem;
}

.sub-img {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
    width: 100%;
    height: 200px;
}
@media (min-width: 1025px) {
	.sub-img{
        height: 300px;
    }
}
.sub-img-c {
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	background: linear-gradient(rgba(255,255,255,.9),rgba(255,255,255,.9));
	width: 160px;
	height: 160px;
}
@media (min-width: 1025px) {
	.sub-img-c {
		width: 240px;
		height: 240px;
	}
}
.about-wazuka-menu {
	display: flex;
	align-items: center;
    width: 100%;
    height: 200px;
	background: url(images/pat-02.png) repeat top;
}
@media (min-width: 1025px) {
	.about-wazuka-menu {
        height: 300px;
    }
}
.about-wazuka-menu-con {
	width: 70%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1025px) {
	.about-wazuka-menu-con {
        width: 50rem;
    }
}

.about-wazuka-menu-con div {
	height: auto;
}

.about-wazuka-menu-con div a {
	display: block;
	height: auto;
	padding-top: 3em;
}
@media (min-width: 768px) {
	.about-wazuka-menu-con div a {
		padding-top: 2em;
	}
}

.about-wazuka-menu-con div a:hover {
	background: url(images/active-01.png) top left no-repeat;
	padding-top: 2em;
}

.about-wazuka-menu-con .active-01 {
	background: url(images/active-01.png) top left no-repeat;
	padding-top: 3em;
}
@media (min-width: 768px) {
	.about-wazuka-menu-con .active-01 {
		background: url(images/active-01.png) top left no-repeat;
		padding-top: 2em;
	}
}


/*背景画像*/
.about-wazuka {
    background: url(images/sub-img-about-wazuka.jpg) center center;
	background-size: cover;
}
.access {
    background: url(images/sub-img-access.jpg) center center;
	background-size: cover;
}
.contact {
	background: url(images/sub-img-contact.jpg) center center;
	background-size: cover;
}
.link {
	background: url(images/sub-img-link.jpg) center center;
	background-size: cover;
}
.client {
	background: url(images/sub-img-client.jpg) center center;
	background-size: cover;
}

/* ----------------------------------------------------------------------
 和束茶について
---------------------------------------------------------------------- */

/* 縦文字-ごあいさつ */
.about-wazuka-tit {
	color: #003D00;
	font-size: 4.125rem;
    line-height: 1.5;
	font-weight: 700;

	letter-spacing: .1em;
	writing-mode: horizontal-tb;
	width: 100%;
}
@media only screen and (min-width: 1025px) {
	.about-wazuka-tit {
		writing-mode: vertical-rl;
		width: auto;	
	
		display: flex;
		justify-content: center;

		border: 2px solid;
		font-size: 3.6rem;
		padding-top: 1rem;
		padding-left: 1rem;
		padding-right: 1rem;
		padding-bottom: 1rem;
		line-height: 1;
	}
}

.about-wazuka-text-con {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-top: 1rem;
}
@media only screen and (min-width: 1025px) {
	.about-wazuka-text-con {
		flex-direction: row-reverse;
		margin-top: 4rem;		
	}
}

.about-wazuka-text {
	letter-spacing: .1em;
	writing-mode: horizontal-tb;
	width: 100%;
}
@media only screen and (min-width: 1025px) {
	.about-wazuka-text {
		writing-mode: vertical-rl;
	}
}

.about-wazuka-space {
	margin-top: 2rem;
}
@media only screen and (min-width: 1025px) {
	.about-wazuka-space {
		margin-top: 0;
		margin-right: 2.5rem;
	}
}


/* ----------------------------------------------------------------------
 お茶は妙薬
---------------------------------------------------------------------- */

.col-2-sub-myoyaku {
    width: 100%;
	border: 1px solid #003D00;
	padding: 3rem;
}
@media (min-width:768px) {
	.col-2-sub-myoyaku {
		width: calc( 50% - 12rem);
		padding: 5rem;
	}
}

/* ----------------------------------------------------------------------
 お茶の淹れ方
---------------------------------------------------------------------- */

.about-irekata-con {
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1025px) {
	.about-irekata-con {
        width: 45rem;
    }
}

.about-irekata-con-02 {
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1025px) {
	.about-irekata-con-02 {
        width: 90rem;
    }
}

.about-irekata-con-03 {
	max-width: 100%;
	margin-right: auto;
    margin-left: auto;
}
@media (min-width: 1025px) {
	.about-irekata-con-03 {
        width: 70rem;
    }
}

.about-irekata-arrow {
	width: 60px;
}
@media (min-width: 1025px) {
	.about-irekata-arrow {
		width: 118px;
	}
}

/*見出しタイプ*/
.about-irekata-type {
	font-size: 3.5rem;
	border-radius: 60px;
	padding-left: 3.5rem;
	line-height: 1.8;
}
@media (min-width: 768px) {
	.about-irekata-type {
		padding-left: 5rem;
	}
}
.about-irekata-type-01 {
	background: #97A94E;
	color: #fff;
}

.about-irekata-type-02 {
	background: url(images/pat-02.png) repeat top;
	color: #fff;
}
.about-irekata-type-03 {
	background: url(images/pat-03.png) repeat top;
	color: #fff;
}
.about-irekata-type-04 {
	background: url(images/pat-04.png) repeat top;
	color: #fff;
}

.about-irekata-yellow {
	display: inline-block;
	font-size: 2.5rem;
	color: #231815;
	line-height: 1.6;
	background: #FFEF00;
}

.dot-border {
	color: #003D00;
	font-weight: 700;
	font-size: 1.8rem;
	border-bottom: 2px dotted;
	width: 100%;
}

/* ----------------------------------------------------------------------
 アクセス
---------------------------------------------------------------------- */
.access-train {
	border-top: 2px dotted #003D00;
	padding-top: 5rem;	
	padding-bottom: 1rem;
}
@media only screen and (min-width: 768px) {
	.access-train {
		border-top: none;
		padding-top: 0;
		padding-left: 5rem;
		border-left: 2px dotted #003D00;
	}
}


/* ----------------------------------------------------------------------
 キャラクター
---------------------------------------------------------------------- */
.profile-bg {
	background: url(images/profile-bg.jpg) center top no-repeat;
	background-size: cover;
	height: auto;
	padding-top: 10rem;
}
@media only screen and (min-width: 768px) {
	.profile-bg {
		background: url(images/profile-bg.jpg) center top no-repeat;
		padding-top: 250px;
	}
}

/* ----------------------------------------------------------------------
 link
---------------------------------------------------------------------- */
.link-area a {
	color: #003D00;
}

/* ----------------------------------------------------------------------
 mailform pro
---------------------------------------------------------------------- */

button{
	font-family: YuGothic,'Yu Gothic','Yu Gothic UI','ヒラギノ角ゴシック','Hiragino Sans','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif;
	text-shadow: none!important;
	cursor: pointer;
    transition: .3s;
	font-size: 1.6rem;
	font-weight: 400;
}
button:hover{
    background: none;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input, textarea {
  padding: 15px 15px !important;
  background: none;
  border: 1px solid #848587;
  font-size: 16px;
}
textarea {
	min-width: 100%;
	min-height: 200px;
}
@media only screen and (min-width: 1025px) {
textarea {
	min-height: 400px;
}
}

input:focus,
textarea:focus {
  outline: none;
  background: #FBFBFB;
}
input:-webkit-autofill {
  box-shadow: 0 0 0 1000px #FBFBFB inset;
}

input::placeholder, textarea::placeholder {
  color: #999999;
  font-family: 'Noto Sans JP', sans-serif;
}

input[type=radio] {
	padding: 4px !important;
	background: none;
	border: none;
}
@media only screen and (min-width: 1025px) {
	input[type=radio] {
		padding: 6px !important;
		background: none;
	}
}

.contact-head {
	display: flex;
	align-items: center;
	margin: 2em 0 1rem 0;
	font-weight: 700;
}
  @media only screen and (min-width: 1025px) {
    .contact-head {
      margin: 5rem 0 1.5rem 0;
	  }
}

.contact-name {
	font-size: 16px;
	color: #003100;
	font-weight: 700;
}
@media only screen and (min-width: 1025px) {
    .contact-name {
      font-size: 20px;
	 }
}

.required {
	margin-left: 15px;
	padding: 0px 15px 0 15px;
	border: 1px solid;
	color: #fff;
	background: #E63828;
	font-size: 13px;
	font-weight: 400;
	vertical-align: middle;
	height: 25px;
	line-height: 2;
}

.form-s {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }
  @media only screen and (min-width: 1025px) {
    .form-s {
      width: 100%;
	  }
}

.form-m {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
  @media only screen and (min-width: 1025px) {
    .form-m {
      width: 70%;
	  }
}

.form-l, .form-xl {
  width: 100%;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

.form-xl {
  height: 250px; }
  @media only screen and (min-width: 1025px) {
    .form-xl {
      height: 300px;
	  }
}

input[type=submit] {
	padding: 0!important;
}
.submit-btn {
	display: block;
	cursor: pointer;
	margin: 3rem auto 3rem;  
	font-size: 17px;
	min-width: 280px;
}
  @media only screen and (min-width: 1025px) {
    .submit-btn {
		margin: 7rem auto 10rem;
	  }
}

/* ----------------------------------------------------------------------
 lightbox.css
---------------------------------------------------------------------- */
  body:after {
	content: url(./images/recruit/close.jpg) url(./images/recruit/loading.gif) url(./images/recruit/prev.jpg) url(./images/recruit/next.jpg);
	display: none;
  }
  
  body.lb-disable-scrolling {
	overflow: hidden;
  }
  
  .lightboxOverlay {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 9999;
	background-color: black;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
	opacity: 0.8;
	display: none;
  }
  
  .lightbox {
	position: absolute;
	left: 0;
	width: 100%;
	z-index: 10000;
	text-align: center;
	line-height: 0;
	font-weight: normal;
  }
  
  .lightbox .lb-image {
	display: block;
	height: auto;
	max-width: inherit;
	max-height: none;
	border-radius: 3px;
  
	/* Image border */
	border: 4px solid white;
  }
  
  .lightbox a img {
	border: none;
  }
  
  .lb-outerContainer {
	position: relative;
	*zoom: 1;
	width: 250px;
	height: 250px;
	margin: 0 auto;
	border-radius: 4px;
  
	/* Background color behind image.
	   This is visible during transitions. */
	background-color: white;
  }
  
  .lb-outerContainer:after {
	content: "";
	display: table;
	clear: both;
  }
  
  .lb-loader {
	position: absolute;
	top: 43%;
	left: 0;
	height: 25%;
	width: 100%;
	text-align: center;
	line-height: 0;
  }
  
  .lb-cancel {
	display: block;
	width: 32px;
	height: 32px;
	margin: 0 auto;
	background: url(./images/recruit/loading.gif) no-repeat;
  }
  
  .lb-nav {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 10;
  }
  
  .lb-container > .nav {
	left: 0;
  }
  
  .lb-nav a {
	outline: none;
	background-image: url('data:image/gif;base64,R0lGODlhAQABAPAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
  }
  
  .lb-prev, .lb-next {
	height: 100%;
	cursor: pointer;
	display: block;
  }
  
  .lb-nav a.lb-prev {
	width: 34%;
	left: 0;
	float: left;
	background: url(./images/recruit/prev.jpg) left 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-prev:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }
  
  .lb-nav a.lb-next {
	width: 64%;
	right: 0;
	float: right;
	background: url(./images/recruit/next.jpg) right 48% no-repeat;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
	opacity: 0;
	-webkit-transition: opacity 0.6s;
	-moz-transition: opacity 0.6s;
	-o-transition: opacity 0.6s;
	transition: opacity 0.6s;
  }
  
  .lb-nav a.lb-next:hover {
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }
  
  .lb-dataContainer {
	margin: 0 auto;
	padding-top: 5px;
	*zoom: 1;
	width: 100%;
	-moz-border-radius-bottomleft: 4px;
	-webkit-border-bottom-left-radius: 4px;
	border-bottom-left-radius: 4px;
	-moz-border-radius-bottomright: 4px;
	-webkit-border-bottom-right-radius: 4px;
	border-bottom-right-radius: 4px;
  }
  
  .lb-dataContainer:after {
	content: "";
	display: table;
	clear: both;
  }
  
  .lb-data {
	padding: 0 4px;
	color: #ccc;
  }
  
  .lb-data .lb-details {
	width: 85%;
	float: left;
	text-align: left;
	line-height: 1.1em;
  }
  
  .lb-data .lb-caption {
	font-size: 13px;
	font-weight: bold;
	line-height: 1em;
  }
  
  .lb-data .lb-caption a {
	color: #4ae;
  }
  
  .lb-data .lb-number {
	display: block;
	clear: left;
	padding-bottom: 1em;
	font-size: 12px;
	color: #999999;
  }
  
  .lb-data .lb-close {
	display: block;
	float: right;
	width: 30px;
	height: 30px;
	background: url(./images/recruit/close.jpg) top right no-repeat;
	text-align: right;
	outline: none;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
	opacity: 0.7;
	-webkit-transition: opacity 0.2s;
	-moz-transition: opacity 0.2s;
	-o-transition: opacity 0.2s;
	transition: opacity 0.2s;
  }
  
  .lb-data .lb-close:hover {
	cursor: pointer;
	filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
	opacity: 1;
  }

  
/* ----------------------------------------------------------------------
 IE11
---------------------------------------------------------------------- */
@media all and (-ms-high-contrast: none){
body{
    font-family: "メイリオ", Meiryo, Osaka, "sans-serif";    
}
.footer{
    box-shadow: 0px 1px #848587;
    
}
.wrapper{
    box-shadow: 0px 1px #848587;
    margin-bottom: 0!important;
}
.grid,.grid-3{
    overflow: hidden;
	display: flex;
	justify-content: space-between;
}
.grid-column {
	width: 150px;
}	
}