@charset "UTF-8";
/*------------------------------
テンプレートCSS
------------------------------*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
/*全体共通*/
body {
  -webkit-text-size-adjust: 100%;
  width: 100%;
  overflow-x: hidden;
  position: relative;
  --c-text:#333;
  --c-base:#fff;
  --c-key1:#1B5F4D;
  --c-key2:#FCB400;
  --c-accent:#E95A24;
  --c-yellow:#F3E621;
  --c-blue:#3372b9;
  --c-pink:#ff7987;
  --c-o-bg:#FBF9EA;
  --c-gray:#E6E6E6;
  color: var(--c-text);
  background-color:var(--c-base);
}
h1{
  max-height: 100%; 
}
a{
	color: #333333;
	font-weight: normal;
}
a:hover{
	cursor: pointer;
	transition: .3s;
	opacity: .5;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.red{
	color: var(--c-accent);
}
.yellow{
	color: var(--c-yellow);
}
.blue{
	color: var(--c-blue);
}
.pink{
	color: var(--c-pink);
}
.center{
	text-align: center;
}
.under{
	text-decoration: underline;
}
#loading{
	position: absolute;
	background-color: #fff;
	z-index: 1000;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
}
/*パンくずリスト*/
.breadcrumbs{
  margin: 10px auto;
  width: 90%;
  max-width: 1070px;
}
.breadcrumbs li{
	position: relative;
	padding-right: 15px;
	margin-right: 15px;
	line-height: 20px;
	height: 20px;
}
.breadcrumbs li:first-child{
	padding-left: 0;
}
.breadcrumbs li a,.breadcrumbs li{
	display: inline-block;
	font-size: 1.4rem;
	color: var(--c-text);
  margin-bottom: 10px;
}
.breadcrumbs li a{
	color: var(--c-key1);
	border-bottom: 1px solid var(--c-key1);
}
.breadcrumbs li:after{
	content: "";
    display: inline-block;
    border-top: 1px var(--c-text) solid;
    border-right: 1px var(--c-text) solid;
    position: absolute;
    top: 2px;
    bottom: 0;
    margin: auto;
    right: -6px;
    width: 8px;
    height: 8px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.breadcrumbs li:last-child::after{
	display: none;
}

/*フォント*/
html { font-size: 62.5%; } 
body { font-size: 1.6rem; } 
h1 { font-size: 2.5rem; } 
h2 { font-size: 2rem; }
body{
	--ff-main:"Zen Maru Gothic", sans-serif;
	--ff-serif: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
	--ff-en: "Zen Maru Gothic", sans-serif;
	--fw-medium: 500;
	--fw-bold: 700;
	font-family: var(--ff-main);
	font-weight: var(--fw-medium);
	font-style: normal;
	font-display: swap;
}
/* IE表示用のCSS　*/
@media all and (-ms-high-contrast:none){
    body {font-family: "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans",sans-serif;}
}

p,li,dd{
	font-family: var(--ff-main);
	font-weight: var(--fw-medium);
	font-style: normal;
	line-height: 30px;
	letter-spacing: 0.05em;
}
h1,h2,h3,h4,h5,h6{
	font-family: var(--ff-main);
	font-weight: bold;
}
.bold{
	font-weight: var(--fw-bold);
}
.serif{
	font-family: '游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;
}
.sanSerif{
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
    font-weight: 500;
}


/*ブレイクポイント*/
.is-sp {
	display: none!important;
}
@media screen and (max-width: 899px) {
	.is-pc {
		display: none!important;
	}
	.is-sp {
		display: block!important;
	}
}
/*------------------------------
共通CSS
------------------------------*/
/*ベース背景*/
body{
	background-color: #fff;
    background-image: radial-gradient(circle, #fee8b2 1.5px, transparent 1.5px), radial-gradient(circle, #fee8b2 1.5px, transparent 1.5px);
  	background-position: 0 0, 8.5px 17px;
  	background-size: 17px 34px;
}
/*ヘッダー*/
header{
	position: relative;
}
header #headerLogo {
	width: 310px;
	margin: 5px auto;
}
header .headerNav{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto 30px;
	background-color: var(--c-key1);
	border-radius: 50px;
	box-shadow: 1px 1px 2px #ccc;
	height: 50px;
}
header .headerNav ul{
	display: flex;
	gap: 40px;
	justify-content: center;
	align-items: center;
	height: 50px;
}
header .headerNav li{
	position: relative;
	display: flex;
	flex-flow: column;
}
header .headerNav li a{
	width: 100%;
	color: #fff;
	font-size: 1.7rem;
	text-align: center;
	line-height: 1.2;
	display: inline-block;
	flex-flow: column;
}
header .headerNav li a span{
	font-size: 0.7em;
	display: block;
	/*margin-top: -12px;*/
}
header .headerNav li:after{
	content:'';
	width: 2px;
	height: 20px;
	background-color: #fff;
	border-radius: 10px;
	position: absolute;
	right: -20px;
	top: 0;
	bottom: 0;
	margin: auto;
	transform: rotate(20deg);
}
header .headerNav li:last-child:after{
	display: none;
}
header .headerNav .has-child {
	position: relative;
}
header .headerNav .subNav {
	display: none;
	position: absolute;
	top: 100%;
	left: -7.5%;
	right: 0;
	margin: auto;
	z-index: 10;
	width: 115%;
	background: var(--c-key1);
	border-radius: 0 0 15px 15px;
	transition: .3s;
	opacity: 0;
}
header .headerNav .has-child:hover .subNav {
	display: flex;
	transition: .3s;
	opacity: 1;
}

@media screen and (max-width:1130px){
	header .headerNav ul{
		gap:20px;
	}
	header .headerNav li a{
		font-size: 1.5rem;
	}
	header .headerNav li:after{
		right: -10px;
	}
}
@media screen and (max-width:899px){
	header{
		padding: 0;
	}
	header .headerNav{
		width: 100%;
		background: none;
		box-shadow: none;
		border-radius: 0;
		position: fixed;
		top: 0;
		bottom: 0;
		margin: auto;
		z-index: -1;
	}
	header .headerNav ul{
		flex-flow: column;
	}
	header .headerNav li:after{
		display: none;
	}
	header #headerLogo{
		width: 260px;
		margin: 0;
	}
	header #headerLogo a{
		display: inline-block; 
		line-height: 60px;
	}
	header #headerLogo a img{
		vertical-align: middle;
	}
	header:after{
		display: none;
	}
	header .homeBtn{
		position: fixed;
		top: 20px;
		left: 8%;
		opacity: 0;
		transition: .5s;
		-webkit-transform: scale(0);
		transform: scale(0);
	}
	header .homeBtn span {
	    display: block;
	    width: 24px;
	    height: 22px;
	    background: url(../img/home.svg)center/100% no-repeat;
	}

	/*ナビゲーションボタン*/
	header .navBtn{
		width: 30px;
		height: 30px;
		position: fixed;
		right: 25px;
		top: 19px;
		z-index: 101;
	}
	header .navBtn span{
		width: 100%;
		height: 2px;
		display: block;
		background-color: #fff;
		position: absolute;
		transition: .3s;
		top:-10px;
		right: 0;
		bottom: 0;
		left: 0;
		margin: auto;
		border-radius: 10px;
	}
	header .navBtn span:last-child{
		top: 10px;
	}
	header #nav-bg {
	    content: "";
	    width: 2400px;
	    height: 2400px;
	    margin-right: -1200px;
	    margin-top: -1200px;
	    top: 34px;
	    right: 40px;
	    display: block;
	    position: fixed;
	    background: #84be3f;
	    -webkit-border-radius: 50%;
	    border-radius: 50%;
	    -webkit-transition: all .3s ease-out;
	    transition: all .3s ease-out;
	    -webkit-backface-visibility: hidden;
	    backface-visibility: hidden;
	    -webkit-transform: scale(.02);
	    transform: scale(.02);
	    z-index: 100;
	}
	/*オープン後*/
	header.open .navBtn span{
		transition: .3s;
	}
	header.open .navBtn span:first-child{
		top:0;
		-webkit-transform:rotate(-40deg);
	}
	header.open .navBtn span:last-child{
		top:0;
		-webkit-transform:rotate(40deg);
	}
	header.open #nav-bg {
	    -webkit-transform: scale(1);
	    transform: scale(1);
	    -webkit-transition: all .6s ease-out;
	    transition: all .6s ease-out;
	}
	header.open .headerNav{
		z-index: 102;
	}
	header .headerNav li {
        opacity: 0;
        -webkit-transform: scaleX(0) translateX(-260px);
        transform: scaleX(0) translateX(-260px);
        -webkit-transition: none;
        transition: none;
        pointer-events: none;
    }
	header.open .headerNav 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;
	    pointer-events: visible;
	}
	header.open .headerNav li:nth-child(2) {
	  -webkit-transition-delay: .2s;
	  transition-delay: .2s;
	}
	header.open .headerNav li:nth-child(3) {
	  -webkit-transition-delay: .3s;
	  transition-delay: .3s;
	}
	header.open .headerNav li:nth-child(4) {
	  -webkit-transition-delay: .4s;
	  transition-delay: .4s;
	}
	header.open .headerNav li:nth-child(5) {
	  -webkit-transition-delay: .5s;
	  transition-delay: .5s;
	}
	header.open .headerNav li:nth-child(6) {
	  -webkit-transition-delay: .6s;
	  transition-delay: .6s;
	}
	header.open .homeBtn{
		opacity: 1;
		transition: .5s;
		-webkit-transform: scale(1);
		transform: scale(1);
	}
	header .headerNav .subNav{
		display: flex;
		justify-content: center;
		align-content: center;
		opacity: 1;
		border-radius: 30px;
		position: static;
		height: 30px;
		width: 100%;
		margin-top: 8px;
	}
	header .headerNav .subNav li a{
		font-size: 1.6rem;
	}
}
@media screen and (max-width:480px){
	/*ヘッダー*/
	header #nav-bg{
		right: 30px;
		width: 185vh;
    height: 185vh;
    margin-right: -92.5vh;
    margin-top: -92.5vh;
      -webkit-transform: scale(.04);
  	transform: scale(.04);
	}
	header .navBtn{
		right: 17.5px;
		top: 21px;
		width: 25px;
		height: 25px;
	}
	header .navBtn span{
		top: -8px;
	}
	header .navBtn span:last-child{
		top: 8px;
	}
	header .headerNav ul{
		margin-top: -40px;
	}
}

/*メインビジュアル*/
#mainVisual{
	margin: 30px auto;
	width: 90%;
	max-width: 1070px;
	height: 400px;	
	border-radius: 15px 15px 0 0; 
	position: relative;
	z-index: 2;
	display: flex;
	flex-flow: column;
	justify-content: center;
}
#top #mainVisual{
	background-position: center bottom;
	background-size: cover;
	background-repeat: no-repeat;
}
#mainVisual:after{
	content: '';
	position: absolute;
	background: url(../img/deco_mv.png)center/100% no-repeat;
	width: 120%;
	left: -10%;
	max-width: 1300px;
	height: 500px;
	z-index: 3;
  top: -50px;
  pointer-events: none;
}
/*メインビジュアル内テキスト*/

#mainVisual #copyText .pageTitle{
	height: 35px;
	line-height: 35px;
	color: #fff;
	font-weight: var(--fw-bold);
	background-color: var(--c-key1);
	display: inline-block;
	padding: 0 25px;
	letter-spacing: 2px;
	font-size: 2rem;
	margin-bottom: 10px;
}
#mainVisual #copyText .copy{
	height: 60px;
	line-height: 58px;
	background-color: #fff;
	border-radius: 0 50px 50px 0;
	margin-bottom: 10px;
	font-size: 3.2rem;
	font-weight: var(--fw-bold);
	padding: 0 25px;
	letter-spacing: 3px;
	color: var(--c-key1);
	display: inline-block;
}
#mainVisual #copyText .copy span{
	font-size: 3.7rem;
}
#mainVisual #copyText .disc{
	color: #fff;
	font-size: 1.8rem;
	font-weight: var(--fw-bold);
	padding: 0 25px;
	letter-spacing: 0.05em;
    text-shadow: 2px 2px 4px #333;
}

@media screen and (max-width:899px){
	/*メインビジュアル*/
	#mainVisual{
		margin: 0;
		border-radius: 0;
		width: 100%;
		height: 600px;
		}
	#mainVisual:after{
		display: none;
	}
	#mainVisual #copyText{
		top: 20px;
		bottom: auto;
	}
	
	#mainVisual #copyText .disc{
		font-size: 1.6rem;
	}
}

@media screen and (max-width:544px){
	#mainVisual #copyText .pageTitle{
		font-size: 1.9rem;
		padding: 0 15px;
	}
	#mainVisual #copyText .copy{
		font-size: 2.5rem;
		padding: 0px 15px;
		letter-spacing: 1px;
	}
	#mainVisual #copyText .copy span{
		font-size: 2.8rem;
	}
}

/*SP*/
@media screen and (max-width:480px){
	/*メインビジュアル*/
	#mainVisual{
		height: 500px;
	}
	#mainVisual #keyVisual:after{
		height: 68%;
	}
	#mainVisual #copyText .copy{
		font-size: 2rem;
		letter-spacing: 0;
	}
}
/*メインコンテンツ*/
#mainBox{
	width: 100%;
	overflow-x: hidden;
}
.mainCntBox{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 0;
	position: relative;
}
.mainCntBox.max{
	width: 100%;
	max-width: 100%;
}
.mainCntBox.pink{
	background-color: #ffa3a3;
}
/*見出し*/
.cntTitle{
	text-align: center;
	margin-bottom: 50px;
}
.cntTitle h1,.cntTitle h2{
	font-size: 2.2rem;
	font-weight: var(--fw-bold);
	letter-spacing: 3px;
	margin: 10px 0;
}
.cntTitle span{
	font-size: 1.5rem;
	letter-spacing: 3px;
	position: relative;
	display: inline-block;
	font-weight: var(--fw-medium);
}
.cntTitle span:before,.cntTitle span:after{
	content:'';
	height: 1px;
	width: 50px;
	top: 4px;
	bottom: 0;
	margin: auto;
	position: absolute;
	background-color: #333;
}
.cntTitle span:before{
	right: 115%;
}
.cntTitle span:after{
	left: 115%;
}
/*白抜き*/
.mainCntBox.pink .cntTitle,.mainCntBox.f-contact .cntTitle h1,.mainCntBox.pink .cntTitle .h1{
	color: #fff;
}
.mainCntBox.f-contact .cntTitle span:before,.mainCntBox.f-contact .cntTitle span:after{
	background-color: #fff;
}
/*h3*/
.mainCntBox h3{
	font-size: 2.2rem;
	text-align: center;
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 30px;
	color: var(--c-key2);
}
.yellowLine{
	position: relative;
	display: inline-block;
	z-index: 1;
}
.yellowLine:before{
	content:'';
	width: 102%;
	height: 10px;
	background-color: #f4e621;
	position: absolute;
	bottom:2px;
	left: -1%;
	z-index: -1;
	border-radius: 10px;
}

/*背景*/
.yellow_bg{
	background-color: var(--c-o-bg);
}

/*ボタン*/
.greenBtn a{
	display: block;
	text-align: center;
	width: 90%;
    max-width: 400px;
    margin: 50px auto;
    background-color: var(--c-key1);
    border-radius: 50px;
    box-shadow: 1px 1px 2px #ccc;
    height: 50px;
    line-height: 50px;
    color: #fff;
    letter-spacing: 2px;
    transition: all .5s;
    position: relative;
    font-size: 1.8rem;
}
.greenBtn a::after{
	content: '';
	position: absolute;
	background: url("../img/arrow_r_w.png") center / 100% no-repeat;
    right: 25px;
    width: 10px;
    height: 9px;
    top: 0;
    bottom: 0;
    margin: auto;
}
.greenBtn a:hover{
	opacity: .5;
}
.greenBtn.style02 a{
	border-radius: 0;
	border: 2px solid var(--c-key1);
	background-color: #fff;
	color: var(--c-key1);
	line-height: 46px;
}
.greenBtn.style02 a::after{
	background: url("../img/arrow_r_g.png") center / 100% no-repeat;
}

.contactBtn a{
	display: block;
	width: 90%;
	max-width: 400px;
	height: 60px;
	line-height: 60px;
	background-color: #fff;
	text-align: center;
	letter-spacing: 3px;
	font-size: 2rem;
	border-radius: 50px;
	border: 1px solid #333;
	box-shadow: 0 0 2px rgba(0,0,0,.5);
	margin: 0 auto;
}
.contactBtn a span{
	position: relative;
	display: inline-block;
}
.contactBtn a span:after,.contactBtn a span:before{
	content:'';
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
}
.contactBtn a span:before{
	background: url("../img/contact_btn_icon.png")center/100% no-repeat;
	left: -43px;
	width: 24px;
	height: 20px;
}
.contactBtn a span:after{
	background: url("../img/arrow_r_o.png")center/100% no-repeat;
	right: -43px;
	width: 13px;
	height: 13px;
}
#topReturn{
	position: fixed;
	right: 10px;
	bottom: 20px;
	z-index: 100;
}
#topReturn a{
	width: 60px;
	height: 60px;
	display: block;
	background: url("../img/topReturn.png")center/100% no-repeat;
}
@media screen and (max-width:899px){
	.contactBtn a{
		font-size: 1.8rem;
	}
	.contactBtn a span:before{
		left: -36px;
	}
	.contactBtn a span:after{
	    right: -36px;
	}
}


/*フッター*/
footer{
	background-color: var(--c-base);
}
/*#footer .snsBox{
	background: #fff;
	padding: 20px 0;
}
#footer .snsBox > div{
	width: 90%;
	max-width: 800px;
	margin: 0 auto; 
}
#footer .snsBox p{
	font-weight: var(--fw-bold);
}
#footer .snsBox li{
	float: left;
}
#footer .snsBox p{
	display: inline-block;
	vertical-align: middle;
	padding-right: 20px;
	border-right: 1px solid #aaa;
	color: #555;
}
#footer .snsBox ul{
	display: inline-block;
	vertical-align: middle;
	padding-left: 13px;
}
#footer .snsBox ul li{
	margin: 0 5px;
	transition: all .3s; 
}
#footer .snsBox ul li:hover{
	opacity: .8;
}
#footer .snsBox ul li a{
	display: block;
}*/
#contactBox p{
	color: #fff;
	text-align: center;
	margin-top: 20px;
	font-size: 1.5rem;
}
#footerCnt{
	padding: 50px 0;
	width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 5%;
  position: relative;
  justify-content: space-between;
}
footer .footerLeft {
  color: #fff;
  width: 300px;
}
footer .footerRight {
	flex:1;
  padding-top: 20px;
  max-width: 620px;
}
footer small {
  font-size: 1.2rem;
  letter-spacing: 1px;
  position: absolute;
  bottom: 20px;
}
footer .footerRight ul{
	display: flex;
	flex-wrap: wrap;
	gap: 15px 30px;
	justify-content: end;
}
footer .footerRight ul li{
	min-width: 100px;
	text-align: center;
	line-height: 1.3;
	display: flex;
	align-items: center;
	text-align: left;
  justify-content: center;
}

@media screen and (max-width:899px){
	#footerCnt{
		padding: 30px 0 80px;
		flex-flow: column;
		align-items: center;
	}
	footer .footerRight ul{
		justify-content: center;
		gap: 15px 0;
	}
	footer .footerRight ul li{
		font-size: 1.4rem;
		width: 50%;
		text-align: center;
	}
}

/*矢印*/
.scrollDown{
    width: 50px;
    height: 100px;
    text-align: center;
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 10;
}
.scrollDown span {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 25px;
    animation: sdl 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    height: 60%;
    /*transform-origin: 0 0;*/
  }
  50% {
    height: 100%;
    /*transform-origin: 0 0;*/
  }
  100% {
    height: 60%;
    /*transform-origin: 0 100%;*/
  }
}
.scrollDown span:before {
    content: '';
    width: 1px;
    height: 100%;
    background-color: #333;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.scrollDown span:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 21px;
    right: 0;
    width: 1px;
    height: 13px;
    background-color: #333;
    -webkit-transform: rotate(-30deg);
    transform: rotate(-30deg);
}
/*その他共通パーツ*/
.img-cover{
	width: 100%;
	height: 100%;
	object-fit: cover;
	-o-object-fit: cover;
}

@media screen and (max-width:480px){
	/*ボタン*/
	.greenBtn a{
		margin-bottom: 0;
		margin-top: 20px;
	}
	/*見出し*/
	.cntTitle{
		margin-bottom: 30px;
	}
	.mainCntBox h3{
		font-size: 2rem;
	}

	/*矢印*/
	.scrollDown{
		bottom: 0;
	}
}

/* ボックススタイル */
.box-style01{
	border-radius: 20px;
	background-color: var(--c-key2);
  position: relative;
  z-index: 1;
}
.box-style01::before {
  content: '';
  position: absolute;
  border: 2px solid #000;
  background-color: #fff;
  bottom: 8px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  left: 0;
  z-index: -1;
}
.box-style02{
	border-radius: 20px;
  background-image: linear-gradient(to right, #eec57d 0%, #ff7987 100%, transparent 50%);
  position: relative;
  z-index: 1;
}
.box-style02::before {
  content: '';
  position: absolute;
  border: 2px solid #000;
  background-color: #fff;
  bottom: 8px;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  left: 0;
  z-index: -1;
}
/*------------------------------
共通セクションCSS
------------------------------*/
.mainCntBox .decoImg{
	position: absolute;
}
.f-contact,.f-contact02{
	background-color: var(--c-key2);
	background-image: url("../img/contact_s_deco.png");
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
.f-contact .cntTitle{
	color: #fff;
}
.f-contact02 .cntBox{
	max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.f-contact02 .cntBox .cntImg{
    width: 40%;
    height: 80%;
}
.f-contact02 .cntBox .cntImg img {
    border-radius: 20px;
}
.f-contact02 .cntBox .cntTxt {
    width: 55%;
    padding: 20px 3% 30px;
    height: 350px;
    margin-left: -20px;
}
#contactBox.f-contact02 p,#contactBox.f-contact02 h3{
	color: var(--c-text);
}
.f-contact02 .cntBox .cntTitle{
	margin-bottom: 30px;
}
.f-contact02 .cntBox h3{
	font-size: 1.9rem;
	margin-bottom: 0;
	letter-spacing: 0.05em;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.f-contact02 .cntBox .cntTxt .contactBtn a{
	margin: 30px auto 15px;
	font-size: 1.8rem;
	letter-spacing: 0.08em;
}
@media screen and (max-width:899px){
	.mainCntBox .decoImg{
		transform: scale(0.7);
	}
	.f-contact {
		background-image: url("../img/contact_s_deco_sp.png");
		background-size: 140%;
	}
	.f-contact::after{
		display: none;
	}
	.f-contact02{
		padding-bottom: 20px;
	}
  .f-contact02 .cntBox {
    flex-flow: column;
    align-items: center;
    width: 100%;
    gap: 30px;
	}
  .f-contact02 .cntBox .cntImg {
    width: 90%;
    height: 180px;
  }
  .f-contact02 .cntBox .cntTxt {
    width: 90%;
    margin: 0 auto;
    height: auto;
    padding: 20px 5% 30px;
  }
  .f-contact02 .cntBox .cntTxt .contactBtn a{
  	width: 100%;
  }
 }

/*------------------------------
01.TOPページ
------------------------------*/

/*東京ひかりの村について*/
#top #aboutBox{
	position: relative;
}
#top #aboutBox .cnt p{
	text-align: center;
	margin-bottom: 15px;
}
#top #aboutBox .cntImg > div{
	position: absolute;
}
#top #aboutBox .cntImg .cntImg01{
	width: 180px;
	height: 180px;
	left: 0;
	top: 0;
}
#top #aboutBox .cntImg .cntImg02{
	width: 260px;
	height: 260px;
	right: -2%;
	top: 50px;
}
#top #aboutBox .cntImg .cntImg03{
	width: 220px;
	height: 220px;
	left: 3%;
	bottom: 120px;
}
#top #aboutBox .cntImg .decoImg01{
	width: 190px;
	left: -5%;
  top: 100px;
}
#top #aboutBox .cntImg .decoImg02{
	width: 170px;
  right: -5%;
  bottom: 90px;
}
@media screen and (max-width:1176px){
	#top #aboutBox .cntImg .cntImg03{
		left: -11%;
	}
}
@media screen and (max-width:899px){
	#top #aboutBox .cntImg > div:not(.decoImg){
		display: none;	
	}
}
@media screen and (max-width:480px){
	#top #aboutBox .cntImg .decoImg01{
		left: -20%;
	}
	#top #aboutBox .cntImg .decoImg02{
	    right: -17%;
    	bottom: 20px;
	}
}


/*事業内容*/
#top #serviceBox .cntBox{
	width: 90%;
	max-width: 1100px;
	margin: 100px auto 0;
}
#top #serviceBox .cntBox .cnt{
	margin: 0 auto 80px;
	padding: 10px 20px 26px 20px;
  display: flex;
  gap: 4%;
}
#top #serviceBox .cntBox .cnt:last-child{
	margin-bottom: 20px;
}
#top #serviceBox .cntBox .cnt .no_icon{
	position: absolute;
	left: 0;
	right: 0;
	top: -50px;
	margin: auto;
	width: 62px;
}
#top #serviceBox .cntBox .cnt .cntImg{
	width: 40%;
}
#top #serviceBox .cntBox .cnt .cntImg > img{
	border-radius: 10px;
}
#top #serviceBox .cntBox .cnt .cntTxt{
	flex: 1;
	padding-top: 20px;
	padding-bottom: 20px;
	position: relative;	
	display: flex;
	flex-flow: column;
	gap:20px;
}
#top #serviceBox .cntBox .cnt .cntTxt .greenBtn a{
	margin: auto;
}
#top #serviceBox .cntBox .cnt .cntTxt h3{
	text-align: left;
	color: var(--c-text);
	margin-bottom: 0;a
}
#top #serviceBox .decoImg03{
	width: 360px;
	left: -15%;
	top: 100px;
}
#top #serviceBox .decoImg04{
	width: 300px;
	right: -10%;
	bottom: 25%;
}
#top #serviceBox .decoImg05{
	width: 250px;
	left: -8%;
	bottom: -150px;
}

@media screen and (max-width:899px){
	#top #serviceBox .cntBox .cnt:after{
		right: 2%;
		bottom: -85px;
	}
	#top #serviceBox .cntBox .cnt .cntTxt{
		align-items: center;
	}
	#top #serviceBox .cntBox .cnt .cntImg{
		width: 100%;
		max-width: 450px;
	}
	#top #serviceBox .cntBox .cnt .cntTxt .greenBtn{
		width: 100%;
	}
	#top #serviceBox .cntBox .cnt{
		margin-bottom: 60px;
	}
	#top #serviceBox .cntBox .cnt .cntTxt h3{
		font-size: 2rem;
	}
}
@media screen and (max-width:480px){
	#top #serviceBox .decoImg03{
		left: -35%;
	}
	#top #serviceBox .decoImg04{
		right: -25%;
	}
	#top #serviceBox .decoImg05{
		left: -21%;
		bottom: -130px;
	}
	#top #serviceBox .cntBox .cnt .cntTxt h3{
		font-size: 1.8rem;
	}
	#top #serviceBox .cntBox .cnt .cntTxt p{
		font-size: 1.5rem;
	}
}

/*最新のお知らせ*/
#top #newsBox .cntBox{
	max-width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	align-items: center;
}
#top #newsBox .cntBox ul{
	border-top: none;
}
#top #newsBox .cntTxt{
	width: 52%;
	padding: 0 25px 30px; 
  height: 350px;
	margin-left: -20px;
}
#top #newsBox .cntTxt li{
	padding: 20px 0;
	border-bottom: 2px solid #000;
}
#top #newsBox .cntTxt h3{
	text-align: left;
	font-size: 1.5rem;
	line-height: 20px;
	margin-bottom: 0;
}
#top #newsBox .cntImg{
	width: 40%;
	height: 80%;
}
#top #newsBox .cntImg img{
	border-radius: 20px;
}
#top #newsBox .cntTxt .greenBtn a{
	margin: 35px auto 0;
}
#top #newsBox .newsDate{
	color: var(--c-key2);
}
#top #newsBox .newsTitle{
	color: var(--c-text);
}
#top #newsBox .decoImg06{
	width: 300px;
	right: -18%;
	bottom: -30px;
}

/*TAB*/
@media screen and (max-width:899px){
	#top #newsBox .cntBox{
		flex-flow: column;
		align-items: center;
		width: 100%;
		gap: 30px;
	}
	#top #newsBox .cntImg{
		width: 100%;
		height: 180px;
	}
	#top #newsBox .cntTxt{
		width: 100%;
		margin-left: auto;
		height: auto;
	}
}
@media screen and (max-width:480px){
	#top #newsBox .decoImg06{
	right: -32%;	
	}
}


/*------------------------------
02.東京光の村について
------------------------------*/

/*メインビジュアル*/
#aboutus #mainVisual{
    background-position: center bottom;
    background-size: cover;
    background-repeat: no-repeat;
}
/*東京光の村について*/
#aboutus #aboutBox{
	padding-bottom: 0;
}
#aboutus #aboutBox .cntBox > div{
	padding: 50px 0;
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
#aboutus #aboutBox .cntTitle h3{
	margin-bottom: 0;
	color: var(--c-text);
}
#aboutus #aboutBox .cntBox01{
	background: url(../img/philosophy_bg.png)top center/cover no-repeat;
	position: relative;
}
#aboutus #aboutBox .cntBox01 > div{
	padding: 70px 0 50px;	
}
#aboutus #aboutBox .cntBox01 .philosophy{
	width: 90%;
	max-width: 500px;
	margin: 0 auto;
}
/*企業理念*/
#aboutus #aboutBox .cntBox02 .cntTxt{
	background: #fff;
	padding: 50px 5%;
	border-radius: 15px;
    margin: 0 auto;
    text-align: center;
}
#aboutus #aboutBox .cntBox02 .cntTxt h4{
	margin-bottom: 30px;
	font-size: 2.2rem;
	color: var(--c-key2);
	letter-spacing: 1px;
}
#aboutus #aboutBox .cntBox02 .cntTxt p:first-of-type{
	margin-bottom: 20px;
}
#aboutus #aboutBox .cntBox02 .cntTxt .cnt01{
	margin-bottom: 60px;
}
#aboutus #aboutBox .cntBox02 .cntTxt .greenBtn a{
	margin-top: 30px;
}
#aboutus #aboutBox .cntBox02 .cntTxt .cnt02 ol{
	text-align: left;
	display: inline-block;
	border: 2px solid var(--c-key1);
	padding: 20px;
	margin-top: 10px;
}
#aboutus #aboutBox .cntBox02 .cntTxt .cnt02 li{
	list-style-type: decimal;
	font-weight: var(--fw-bold);
	margin-bottom: 15px;
	color: var(--c-key1);
	margin-left: 20px;
}
#aboutus #aboutBox .cntBox02 .cntTxt .cnt02 li:last-child{
	margin-bottom: 0;
}
/*サービス概要*/
#aboutus #aboutBox .cntBox03 .cntTitle{
	margin-bottom: 30px;
}
#aboutus #aboutBox .cntBox03 .cntText{
	margin: 80px auto 30px;
	display: flex;
	gap: 20px;
	justify-content: center;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt{
	flex:1;
	border-radius: 20px;
    padding: 10px 20px 40px 20px;
    background-color: var(--c-key2);
    position: relative;
    z-index: 1;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt::before{
    content: '';
    position: absolute;
    border: 2px solid #000;
    background-color: #fff;
    bottom: 8px;
    width: 100%;
    height: 100%;
    border-radius: 20px;
    left: 0;
    z-index: -1;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt .no_icon {
    position: absolute;
    left: 0;
    right: 0;
    top: -50px;
    margin: auto;
    width: 62px;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt h4{
	text-align: center;
	margin: 30px auto 20px;
	font-size: 2rem;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt p{
	min-height: 60px;
	text-align: center;
}
#aboutus #aboutBox .cntBox03 .cntText .cnt .greenBtn a{
	margin: 30px auto 0;
}
@media screen and (max-width:899px){
	/*企業理念*/
	#aboutus #aboutBox .cntBox02 .cnt{
		width: 100%;
		display: block;
	}
	#aboutus #aboutBox .cntBox02 .cnt01{
		margin-bottom: 30px;
	}
	#aboutus #aboutBox .cntBox02 .cntTxt p{
		text-align: left;
	}
	/*サービス概要*/
	#aboutus #aboutBox .cntBox03 .cntText{
		flex-flow: column;
		gap: 60px;
	}
}
/*SP*/
@media screen and (max-width:480px){
	/*東京光の村について*/
	#aboutus #aboutBox .cntBox01 .philosophy{
		width: 100%;
	}
	/*企業理念*/
	#aboutus #aboutBox .cntBox02 .cnt > div p{
		line-height: 30px;
		font-size: 1.5rem;
	}
	#aboutus #aboutBox .cntBox02 .cnt li{
		line-height: 30px;
		font-size: 1.5rem;
	}
	#aboutus #aboutBox .cntBox02 .cntTxt .cnt02 li{
		line-height: 1.6;
	}
}

/*会社情報*/
#aboutus #companyBox .cntBox{
	width: 90%;
	max-width: 800px;
	margin: 0 auto;
}
#aboutus #companyBox .cntBox > table{
	width: 100%;
}
#aboutus #companyBox table tr {
    border-bottom: 1px solid #333;
}
#aboutus #companyBox table tr:first-child{
	 border-top: 1px solid #333;
}
#aboutus #companyBox table th {
    padding: 40px 20px;
    width: 30%;
    text-align: left;
    vertical-align: top;
    font-weight: bold;
    vertical-align: middle;
    letter-spacing: 1px;
    color: var(--c-key1);
}
#aboutus #companyBox table td {
    padding: 30px 20px 30px 0;
    text-align: left;
    vertical-align: top;
    line-height: 30px;
    letter-spacing: 1px;
    font-weight: bold;
}
#aboutus #companyBox table td li{
    list-style-type: disc;
    margin-left: 20px;
}
#aboutus #companyBox .cntBox.c-map{
	margin: 50px auto;
	height: 400px;
}
#aboutus #companyBox .cntBox.c-map p{
	letter-spacing: 2px;
}
/*SP*/
@media screen and (max-width:480px){
    #aboutus #companyBox table th {
        display: block;
        padding: 20px 10px 10px;
        font-size: 1.7rem;
        width: 100%;
    }
    #aboutus #companyBox table td {
       display: block;
       font-weight: normal;
       padding: 0 10px 10px;
       line-height: 28px;
    }
}


/*------------------------------
03.就労継続支援 B型
------------------------------*/
/*メインビジュアル*/
#shuro-b #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}

/*施設紹介*/
#shuro-b #aboutBox .cntBox{
	display: flex;
	gap: 5%;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#shuro-b #aboutBox .cntBox .cntImg{
	max-width: 350px;
}
#shuro-b #aboutBox .cntBox .cntImg img{
	border-radius: 20px;
}
#shuro-b #aboutBox .cntBox .cntTxt{
	flex:1;
	padding-top: 10px;
}
#shuro-b #aboutBox .cntBox .cntTxt .copy span{
	border: 1px solid var(--c-text);
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 1.5rem;
}
#shuro-b #aboutBox .cntBox .cntTxt .copy h3{
	text-align: left;
	margin-top: 20px;
}
#shuro-b #aboutBox .cntBox .cntTxt p{
	margin-bottom: 20px;
}

@media screen and (max-width:899px){
	#shuro-b #aboutBox .cntBox{
		flex-flow: column;
		padding: 0;
		gap:20px;
	}
	#shuro-b #aboutBox .cntBox .cntTxt .copy h3{
		margin-bottom: 10px;
	}
}
/*サービス紹介*/
#shuro-b #serviceBox .cnt{
	display: flex;
	gap: 5%;
	margin-bottom: 40px;
}
#shuro-b #serviceBox .cnt.reverse{
	flex-flow: row-reverse;
}
#shuro-b #serviceBox .cntBox{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#shuro-b #serviceBox .cnt h3{
	display: flex;
	align-items: center;
}
#shuro-b #serviceBox .cnt h3 img{
	width: 72px;
	margin-right: 10px;
}
#shuro-b #serviceBox .cntImg{
	width: 40%;
}
#shuro-b #serviceBox .cntTxt{
	flex: 1;
}
#shuro-b #serviceBox .cnt-activity{
	padding: 40px 5%;
	position: relative;
	border-radius: 20px;
	margin: 40px auto 60px;
}
#shuro-b #serviceBox .cnt-activity h3{
	color: var(--c-text);
}
#shuro-b #serviceBox .deptBox{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
	margin-top: 40px;
}
#shuro-b #serviceBox .deptBox .deptCnt{
	width: calc(50% - 30px);
	background-color: #fff;
	padding: 30px;
	border-radius: 10px;
}
#shuro-b #serviceBox .deptBox .deptCnt h4{
	display: flex;
	align-items: center;
	font-size: 1.8rem;
}
#shuro-b #serviceBox .deptBox .deptCnt h4 img{
	width: 40px;
	margin-right: 10px;
}
#shuro-b #serviceBox .deptBox .deptCnt h4 span.yellowLine:before{
	bottom: -6px;
}
#shuro-b #serviceBox .deptBox .deptCnt .greenBtn a{
	margin: 20px auto 0;
	font-size: 1.5rem;
}
#shuro-b #serviceBox .cnt-activity .decoImg{
	position: absolute;
}
#shuro-b #serviceBox .cnt-activity .decoImg01{
	width: 230px;
	left: -10%;
	top: 100px;
}
#shuro-b #serviceBox .cnt-activity .decoImg02{
	width: 230px;
	right: 3%;
	top: -50px;
}
#shuro-b #serviceBox .cnt-activity .decoImg03{
	width: 230px;
	left: 1%;
	top: -20px;
}
#shuro-b #serviceBox .cnt-activity .decoImg04{
	width: 180px;
	right: -3%;
	top: 50px;
}
@media screen and (max-width:899px){
	#shuro-b #serviceBox .cntBox{
		padding: 0;
	}
	#shuro-b #serviceBox .cnt,#shuro-b #serviceBox .cnt.reverse{
		flex-flow: column;
		margin: 0 auto 30px;
		gap: 20px;
		align-items: center;
	}
	#shuro-b #serviceBox .cntImg{
		width: 100%;
		max-width: 500px;
	}
	#shuro-b #serviceBox .cnt-activity{
		padding: 30px 5%;
	}
	#shuro-b #serviceBox .cnt h3{
		justify-content: center;
		margin-left: -40px;
	}
	#shuro-b #serviceBox .cnt h3 img{
		width: 60px;
	}
	#shuro-b #serviceBox .deptBox{
		gap: 20px;
		margin-top: 20px;
	}
	#shuro-b #serviceBox .deptBox .deptCnt{
		width: 100%;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg01{
		left: -15%;
		top: 80px;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg02{
		right: -5%;
		top: -70px;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg03{
		left: -12%;
		top: -80px;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg04{
		right: -15%;
		top: -10px;
	}
	#shuro-b #serviceBox .deptBox .deptCnt h4 div span{
		margin-bottom: 10px;
	}
}
@media screen and (max-width:480px){
	#shuro-b #serviceBox .cnt-activity .decoImg01{
		left: -25%;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg02{
		right: -20%;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg03{
		width: 180px;
		top: -60px;
		left: -20%;
	}
	#shuro-b #serviceBox .cnt-activity .decoImg04{
		width: 150px;
		right: -18%;
	}
}
/* 1日の流れ */
#shuro-b #flowBox{
	padding-bottom: 200px;
}
#shuro-b #flowBox .cntBox{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}
#shuro-b #flowBox h3{
	color: var(--c-text);
}
#shuro-b #flowBox h4{
	text-align: center;
	font-size: 2rem;
	color: var(--c-key1);
	margin-bottom: 40px;
	position: relative;
}
#shuro-b #flowBox h4{
	background-image: url("../img/h_line_dot.png");
	background-size: auto 8px;
	background-position: center;
	background-repeat: repeat-x;
}
#shuro-b #flowBox h4 span{
	background-color: var(--c-o-bg);
	padding: 0 60px;
}
#shuro-b #flowBox .cntDesc{
	text-align: center;
}
#shuro-b #flowBox .schedule{
	position: relative;
	margin-top: 50px;
}
#shuro-b #flowBox .schedule::before{
	content:'';
	background-color: #DEDEDE;
	position: absolute;
	width: 31px;
	height: calc(100% - 100px);
	left: 0;
	right: 0;
	top:50px;
	margin: auto;
	z-index: 0;
}
#shuro-b #flowBox .schedule::after{
	content: '';
	background-image: url("../img/flow_arrow.png");
	background-repeat: repeat-y;
	background-size: contain;
	position: absolute;
	width: 11px;
	height: calc(100% - 100px);
	left: 0;
	right: 0;
	top:50px;
	margin: auto;
}
#shuro-b #flowBox .schedule .cnt{
	display: flex;
	gap: 20px;
	justify-content: end;
	align-items: center;
	z-index: 1;
	position: relative;
}
#shuro-b #flowBox .schedule .cnt.reverse{
	flex-flow: row-reverse;
	justify-content: start;
}
#shuro-b #flowBox .schedule .clock-icon{
	width: 88px;
}
#shuro-b #flowBox .schedule .content{
	padding: 20px;
	background-color: var(--c-base);
	border-radius: 15px;
	width: calc(50% - 65px);
	position: relative;
}
#shuro-b #flowBox .schedule .content::before{
	content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -15px;
  border: 15px solid transparent;
  border-right: 15px solid var(--c-base);
}
#shuro-b #flowBox .schedule .reverse .content::before{
	right: -30px;
	left: auto;
	border-left: 15px solid var(--c-base);
 	border-right: 15px solid transparent;
}
#shuro-b #flowBox .schedule .content .time{
	display: flex;
	align-items: center;
	justify-content: start;
	gap: 5px 20px;
	border-bottom: 1px dashed var(--c-text);
	padding-bottom: 10px;
	margin-bottom: 10px;
	flex-wrap: wrap;
}
#shuro-b #flowBox .schedule .content .time.b-none{
	border-bottom: none;
	margin-bottom: 0;
	padding-bottom: 0;
}
#shuro-b #flowBox .schedule .content .time > span{
	flex: none;
	color: var(--c-key2);
	font-size: 2.8rem;
}
#shuro-b #flowBox .schedule .content .time > p{
	flex: none;
	font-size: 2rem;
}
#shuro-b #flowBox .schedule .img-on .content {
	display: flex;
	gap: 10px;
	align-items: center;
}
#shuro-b #flowBox .schedule .img-on .content *{
	flex: 1;
}
#shuro-b #flowBox .schedule .img-on .content .cntImg{
	width: 30%;
	max-width: 150px;
	flex: none;
}
#shuro-b #flowBox .schedule .img-on .content .greenBtn.style02 a{
	margin: 20px 0 10px;
	border-radius: 30px;
	font-size: 1.6rem;
}
@media screen and (max-width:899px){
	#shuro-b #flowBox h3{
		margin-bottom: 0;
	}
	#shuro-b #flowBox h4 span{
		padding: 0 31px;
	}
	#shuro-b #flowBox .schedule{
		margin-top: 30px;
	}
	#shuro-b #flowBox .schedule::before{
		left: 20px;
		margin: 0;
	}
	#shuro-b #flowBox .schedule::after{
		left: 30px;
		margin: 0;
	}
	#shuro-b #flowBox .schedule .cnt{
		justify-content: start;
		margin-bottom: 20px;
	}
	#shuro-b #flowBox .schedule .cnt.reverse{
		flex-flow: row;
	}
	#shuro-b #flowBox .schedule .content{
		width: 100%;
	}
	#shuro-b #flowBox .schedule .reverse .content::before{
		border-left: 15px solid transparent;
    border-right: 15px solid var(--c-base);
    left: -30px;
		right: auto;
	}
	#shuro-b #flowBox .schedule .content .time{
		gap: 5px 10px;
	}
	#shuro-b #flowBox .schedule .content .time > span{
		font-size: 2.2rem;
	}
	#shuro-b #flowBox .schedule .content .time > p{
		font-size: 1.8rem;
	}
	#shuro-b #flowBox .schedule .content .desc{
		font-size: 1.4rem;
	}
	#shuro-b #flowBox .schedule .clock-icon{
		width: 68px;
		min-width: 68px;
	}
}
@media screen and (max-width:480px){
	#shuro-b #flowBox h4 span{
		font-size: 1.8rem;
	}
	#shuro-b #flowBox .schedule .img-on .content{
		flex-flow: column-reverse;
	}
	#shuro-b #flowBox .schedule .img-on .content .cntImg{
		width: 60%;
	}
}
/* 年間行事 */
#shuro-b #flowBox .cntBox02{
	margin-top: 100px;
}
#shuro-b #flowBox .event{
	position: relative;
}
#shuro-b #flowBox .event > dl{
	width: 90%;
	max-width: 500px;
	margin: 50px auto 0;
}
#shuro-b #flowBox .event > dl > div{
	display: flex;
	align-items: center;
	gap: 20px;
	margin-bottom: 30px;
	position: relative;
}
#shuro-b #flowBox .event > dl > div::before{
	content: '';
	border-left: 2px dashed var(--c-text);
	height: 150%;
	position: absolute;
	top: 30px;
	left: 50px;
	z-index: 0;
}
#shuro-b #flowBox .event > dl > div:last-child::before{
	display: none;
}
#shuro-b #flowBox .event dt{
	background-color: var(--c-key2);
	padding: 2px 0 6px;
	border-radius: 20px;
	color: #fff;
	font-size: 1.4rem;
	letter-spacing: 1px;
	min-width: 100px;
	text-align: center;
	z-index: 1;
}
#shuro-b #flowBox .event dt span{
	font-size: 2.2rem;
}
#shuro-b #flowBox .event dd{
	font-size: 1.8rem;
}
#shuro-b #flowBox .event .decoImg05{
	width: 160px;
	left: -5%;
  top: 40px;
}
#shuro-b #flowBox .event .decoImg06{
	width: 190px;
	right: 2%;
  top: 140px;
}
#shuro-b #flowBox .event .decoImg07{
	width: 180px;
	left: 4%;
  top: 250px;
}
#shuro-b #flowBox .event .decoImg08{
	width: 130px;
	left: -5%;
  top: 500px;
}
#shuro-b #flowBox .event .decoImg09{
	width: 160px;
	right: -2%;
  top: 450px;
}
#shuro-b #flowBox .event .caution{
	text-align: right;
	font-size: 1.4rem;
	margin-top: 10px;
}
@media screen and (max-width:1040px){
	#shuro-b #flowBox .event .decoImg05{
		width: 140px;
		left: -8%;
	}
	#shuro-b #flowBox .event .decoImg06{
		width: 170px;
		right: 0;
	}
	#shuro-b #flowBox .event .decoImg07{
		width: 160px;
		left: -2%;
	}
	#shuro-b #flowBox .event .decoImg08{
		width: 110px;
		left: -7%;
	}
	#shuro-b #flowBox .event .decoImg09{
		width: 140px;
		right: -3%;
	}
}
@media screen and (max-width:899px){
	#shuro-b #flowBox .cntBox02{
		margin-top: 60px;
	}
	#shuro-b #flowBox .event > dl{
		margin: 0;
		width: 75%;
	}
	#shuro-b #flowBox .event > dl > div{
		gap: 10px;
	}
	#shuro-b #flowBox .event dt{
		min-width: 70px;
	}
	#shuro-b #flowBox .event dd{
		font-size: 1.6rem;
		line-height: 1.5;
	}
	#shuro-b #flowBox .event > dl > div::before{
		left: 35px;
	}
	#shuro-b #flowBox .event .decoImg05{
		width: 120px;
		left: auto;
		right: -8%;
 		top: 0px;
	}
	#shuro-b #flowBox .event .decoImg06{
		width: 120px;
		right: -8%;
	  top: 140px;
	}
	#shuro-b #flowBox .event .decoImg07{
		width: 120px;
		left: auto;
		right: -8%;
	  top: 280px;
	}
	#shuro-b #flowBox .event .decoImg08{
		width: 120px;
		left: auto;
		right: -8%;;
	  top: 560px;
	}
	#shuro-b #flowBox .event .decoImg09{
		width: 120px;
		right: -8%;
	  top: 420px;
	}
	#shuro-b #flowBox .event .caution{
		font-size: 1.2rem;
		line-height: 1.5;
		text-align: left;
	}
	#shuro-b #flowBox .schedule .img-on .content .greenBtn.style02 a{
		letter-spacing: 0.05em;
	}
	#shuro-b #flowBox .schedule .img-on .content .greenBtn.style02 a::after{
		right: 15px;
	}
}
/* CTA */
#shuro-b #ctaBox{
  background: url("../img/shuro-b_guide_cta_bg.png") top center / cover no-repeat;
  position: relative;
  margin-top: -150px;
}
#shuro-b #ctaBox .cnt{
	width: 90%;
	max-width: 465px;
	margin: 120px auto 30px;
  padding: 40px 20px 60px 20px;
}
#shuro-b #ctaBox .cnt h4{
	text-align: center;
	font-size: 2rem;
	display: flex;
	justify-content: center;
	gap: 5px;
	align-items: center;
}
#shuro-b #ctaBox .cnt .greenBtn a{
	margin: 40px auto 0;
}

@media screen and (max-width:480px){
	#shuro-b #ctaBox{
		padding: 20px 0;
	}
	#shuro-b #ctaBox .cnt{
    padding: 20px 0px 40px 0px;
	}
	#shuro-b #ctaBox .cnt h4{
		font-size: 1.8rem;
	}
	#shuro-b #ctaBox .cnt .greenBtn a{
		margin: 20px auto 0;
		max-width: 300px;
	}
}
#shuro-b #aboutBox .decoImg10{
	width: 180px;
  right: 4%;
  top: 0;
}
#shuro-b #aboutBox .decoImg11{
	width: 220px;
  left: -4%;
  top: 550px;
}
#shuro-b #serviceBox .decoImg12{
	width: 250px;
  left: -7%;
  top: 1150px;
}
#shuro-b #serviceBox .decoImg13{
	width: 200px;
  right: -4%;
  bottom: 580px;
}
#shuro-b #serviceBox .decoImg14{
	width: 300px;
  left: -5%;
  bottom: -80px;
  z-index: 1;
}
#shuro-b #flowBox .cntBox .decoImg15{
	width: 280px;
  left: -20%;
  top: 320px;
}
#shuro-b #flowBox .cntBox .decoImg16{
	width: 420px;
  right: -20%;
  top: 560px;
}
#shuro-b #flowBox .cntBox .decoImg17{
	width: 380px;
  left: -22%;
  top: 140px;
}
#shuro-b #flowBox .cntBox .decoImg18{
	width: 320px;
  right: -20%;
  bottom: 120px;
}
#shuro-b #flowBox .cntBox .decoImg19{
	width: 280px;
  left: -15%;
  bottom: -250px;
}
@media screen and (max-width:480px){
	#shuro-b #aboutBox .decoImg10{
	  right: -14%;
	}
	#shuro-b #aboutBox .decoImg11{
	  left: -24%;
	}
	#shuro-b #serviceBox .decoImg12{
	  left: -27%;
	  top: 1800px;
	}
	#shuro-b #serviceBox .decoImg13{
	  right: -20%;
	  bottom: 740px;
	}
	#shuro-b #serviceBox .decoImg14{
	  left: -25%;
	  bottom: -120px;
	}
	#shuro-b #flowBox .cntBox .decoImg15{
	  left: -40%;
	  top: 380px;
	}
	#shuro-b #flowBox .cntBox .decoImg16{
	  right: -40%;
	  top: 750px;
	}
	#shuro-b #flowBox .cntBox .decoImg17{
	  left: -42%;
	  top: 50px;
	}
	#shuro-b #flowBox .cntBox .decoImg18{
	  right: -48%;
	  bottom: 180px;
	}
	#shuro-b #flowBox .cntBox .decoImg19{
	  left: -38%;
	  bottom: -150px;
	}
}

/*------------------------------
04.ご利用案内
------------------------------*/
/*メインビジュアル*/
#userguide #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
/*ご利用案内*/
#userguide #guideinfo .cntBox{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
#userguide #guideinfo .cntBox .cnt{
	background-color: #fff;
	padding: 20px 3%;
	border-radius: 30px;
}
#userguide #guideinfo .cntBox .cnt li{
	border-bottom: 1px dashed var(--c-text);
	padding: 20px 20px 20px 30px;
	position: relative;
}
#userguide #guideinfo .cntBox .cnt li::before{
	content: '';
	position: absolute;
	width: 15px;
	height: 15px;
	background-color: var(--c-key2);
	border-radius: 8px;
	left: 8px;
	top: 28px;
}
#userguide #guideinfo .cntBox .cnt li .greenBtn a{
	border-radius: 30px;
	margin: 20px auto 10px;
}
@media screen and (max-width:899px){
	#userguide #guideinfo .cntBox .cnt{
		padding: 0 3% 20px;
	}
	#userguide #guideinfo .cntBox .cnt li{
		padding: 15px 15px 15px 20px;
	}
	#userguide #guideinfo .cntBox .cnt li .greenBtn a{
		width: 100%;
		font-size: 1.4rem;
		letter-spacing: 0.05em;
	}
	#userguide #guideinfo .cntBox .cnt li .greenBtn a::after{
		right: 10px;
	}
	#userguide #guideinfo .cntBox .cnt li::before{
		width: 10px;
		height: 10px;
		left: 5px;
		top: 26px;
	}
}
/* 利用までの流れ */
#userguide #guideinfo .flowBox{
	width: 90%;
	max-width: 1100px;
	margin: 60px auto;
}
#userguide #guideinfo .flowBox .cntTitle h3{
	color: var(--c-text);
}
#userguide #guideinfo .flowBox .cnt{
	border-radius: 15px;
	border: 2px solid var(--c-text);
	display: flex;
	padding: 20px;
	margin-bottom: 40px;
	background-color: #fff;
	align-items: center;
	gap: 20px;
	position: relative;
}
#userguide #guideinfo .flowBox .cnt::after{
	content: '';
	width: 20px;
	height: 17px;
	background-image: url("../img/arrow_d_o.png");
	background-size: 100%;
	background-repeat: no-repeat;
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	top: 120%;
}
#userguide #guideinfo .flowBox .cnt:last-child::after{
	display: none;
}
#userguide #guideinfo .flowBox .cnt dt{
	background-color: var(--c-key2);
  padding: 2px 0 6px;
  border-radius: 20px;
  color: #fff;
  font-size: 1.4rem;
  letter-spacing: 1px;
  min-width: 120px;
  height: 30px;
  text-align: center;
  z-index: 1;
  margin-left: -50px;
}
#userguide #guideinfo .flowBox .cnt dt span {
  font-size: 2.2rem;
}
#userguide #guideinfo .flowBox .cnt dd{
	font-size: 1.8rem;
}
@media screen and (max-width:480px){
	#userguide #guideinfo .flowBox .cntTitle{
		margin-bottom: 20px;
	}
	#userguide #guideinfo .flowBox .cnt{
		gap: 10px;
	}
	#userguide #guideinfo .flowBox .cnt dt{
		text-align: right;
		padding-right: 20px;
		margin-left: -90px;
	}
}

/* よくある質問 */
#userguide #faqBox .cntBox{
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}
#userguide #faqBox .cntBox > dl{
	display: flex;
	flex-wrap: wrap;
	gap: 25px 25px;
	justify-content: center;
}
#userguide #faqBox .cntBox .cnt{
	width: calc(50% - 25px);
	background-color: #fff;
	padding: 20px 2%;
	border-radius: 15px;
}
#userguide #faqBox .cntBox .cnt dt{
	display: flex;
	align-items: center;
	border-bottom: 2px dashed var(--c-text);
	margin-bottom: 20px;
	padding-bottom: 20px;
}
#userguide #faqBox .cntBox .cnt img{
	width: 50px;
  margin-right: 10px;
}
#userguide #faqBox .cntBox .cnt dd{
	display: flex;
	align-items: start;
}
@media screen and (max-width:899px){
	#userguide #faqBox .cntBox > dl{
		gap: 20px;
	}
	#userguide #faqBox .cntBox .cnt{
		width: 100%;
	}
}

/*------------------------------
05.グループホーム
------------------------------*/
/*メインビジュアル*/
#g-home #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
/*ホームの特徴*/
#g-home #featuresBox .cntBox {
  display: flex;
  gap: 5%;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  flex-flow: row-reverse;
  align-items: end;
}
#g-home #featuresBox .cntBox .cntImg {
  max-width: 450px;
}
#g-home #featuresBox .cntBox .cntTxt {
  flex: 1;
  padding-top: 10px;
}
#g-home #featuresBox .cntBox .cntTxt .copy{
	margin-bottom: 20px;
}
#g-home #featuresBox .cntBox .cntTxt .copy span {
  border: 1px solid var(--c-text);
  padding: 3px 10px;
  border-radius: 15px;
  font-size: 1.5rem;
}
#g-home #featuresBox .cntBox .cntTxt p {
  margin-bottom: 20px;
}
#g-home #featuresBox .cntBox .cntTxt .point{
	display: flex;
	align-items: center;
	gap: 20px;
	padding: 20px;
	border-radius: 10px;
}
#g-home #featuresBox .cntBox .cntTxt .point li{
	padding-left: 20px;
	position: relative;
	margin-bottom: 10px;
}
#g-home #featuresBox .cntBox .cntTxt .point li::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  background-color: var(--c-key2);
  border-radius: 8px;
  left: 0;
  top: 12px;
}
#g-home #featuresBox .cntBox .cntTxt .point li:last-child{
	margin-bottom: 0;
}
#g-home #featuresBox .subCnt{
	display: flex;
  gap: 5%;
  width: 90%;
  max-width: 1100px;
  margin: 60px auto;
  border-radius: 20px;
  border: 1px solid var(--c-text);
  background: #fff;
  padding: 40px 5%;
}
#g-home #featuresBox .subCnt > div{
	flex: 1;
}
#g-home #featuresBox .subCnt img{
	width: 100%;
	max-height: 250px;
	border-radius: 20px;
}
#g-home #featuresBox .subCnt p{
	text-align: center;
	margin-top: 10px;
}
@media screen and (max-width:899px){
	#g-home #featuresBox .cntBox{
		flex-flow: column;
		align-items: start;
		gap: 20px;
	}
	#g-home #featuresBox .subCnt{
		padding: 20px 3%;
		margin: 30px auto;
	}
	#g-home #featuresBox .subCnt p{
		font-size: 1.4rem;
		line-height: 1.6;
	}
	#g-home #featuresBox .subCnt img{
		height: 150px;
	}
}
@media screen and (max-width:480px){
	#g-home #featuresBox .cntBox .cntTxt .point{
		padding: 15px;
		gap: 10px;
	}
	#g-home #featuresBox .cntBox .cntTxt .point img{
		width: 60px;
	}
	#g-home #featuresBox .cntBox .cntTxt .point li{
		font-size: 1.4rem;
		line-height: 1.5;
	}
	#g-home #featuresBox .cntBox .cntTxt .point li::before{
		top: 8px;
	}
	#g-home #featuresBox .subCnt{
		flex-flow: column;
		gap: 20px;
	}
}

/*ご利用料金*/
#g-home #priceBox .cntBox{
  margin: 0 auto 80px;
  padding: 30px 5%;
  gap: 4%;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#g-home #priceBox .cntBox h3{
	background-color: var(--c-key1);
	border-radius: 30px;
	color: #fff;
	text-align: center;
	padding: 3px 30px 4px;
	width: 530px;
	margin: 0 auto 30px;
}
#g-home #priceBox .cntBox .cnt .price-list{
	display: flex;
	flex-wrap: wrap;
	gap: 20px 5%;
}
#g-home #priceBox .cntBox .cnt .price-list div{
	width: 45%;
	border-bottom: 1px solid var(--c-key1);
	padding-bottom: 20px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
#g-home #priceBox .cntBox .cnt dt{
	color: var(--c-key1);
	font-size: 2rem;
}
#g-home #priceBox .cntBox .cnt dd span{
	font-size: 2rem;
	margin-right: 10px;
}
#g-home #priceBox .cntBox .cnt .price-sum{
	margin: 0 auto;
	width: 300px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 20px;
	border: 1px solid var(--c-key1);
	margin-top: 40px;
	margin-bottom: 10px;
}
@media screen and (max-width:899px){
	#g-home #priceBox .cntBox{
    padding: 20px 5% 30px;
	}
	#g-home #priceBox .cntBox h3{
		font-size: 1.8rem;
		width: auto;
	}
	#g-home #priceBox .cntBox .cnt .price-list{
		flex-flow: column;
	}
	#g-home #priceBox .cntBox .cnt .price-list div{
		width: 100%;
		padding-bottom: 10px;
	}
	#g-home #priceBox .cntBox .cnt .price-sum{
		margin-top: 30px;
	}
}
/*アクセス*/
#g-home #accessBox .cntBox{
  display: flex;
  gap: 5%;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
}
#g-home #accessBox .cntBox .map{
  max-width: 500px;
  width: 50%;
}
#g-home #accessBox .cntBox .cntTxt{
  flex: 1;
  padding-top: 10px;
}
#g-home #accessBox .cntBox .cntTxt h3{
	text-align: left;
	margin-bottom: 10px;
}
#g-home #accessBox .cntBox .cntTxt .access{
	border: 1px solid var(--c-text);
	background: #fff;
	border-radius: 20px;
	padding: 10px 15px;
	margin-top: 20px;
}
@media screen and (max-width:899px){
	#g-home #accessBox .cntBox{
		flex-flow: column;
		gap: 20px;
	}
	#g-home #accessBox .cntBox .map{
		width: 100%;
		max-width: 100%;
		margin: 0 auto;
		height: 260px;
	}
}
/*------------------------------
06.手作りパン工房「アンダンテ」
------------------------------*/
/*メインビジュアル*/
#bakery #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
/*パン工房の紹介*/
#bakery #aboutBox .cntBox{
	display: flex;
	gap: 5%;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#bakery #aboutBox .cntBox .cntImg{
	max-width: 450px;
}
#bakery #aboutBox .cntBox .cntImg img{
	border-radius: 20px;
}
#bakery #aboutBox .cntBox .cntTxt{
	flex:1;
	padding-top: 10px;
}
#bakery #aboutBox .cntBox .cntTxt .copy span{
	border: 1px solid var(--c-text);
	padding: 3px 10px;
	border-radius: 15px;
	font-size: 1.5rem;
}
#bakery #aboutBox .cntBox .cntTxt .copy h3{
	text-align: left;
	margin-top: 20px;
}
#bakery #aboutBox .cntBox .cntTxt p{
	margin-bottom: 20px;
}

@media screen and (max-width:899px){
	#bakery #aboutBox .cntBox{
		flex-flow: column;
		padding: 0;
		gap:20px;
	}
	#bakery #aboutBox .cntBox .cntTxt .copy h3{
		margin-bottom: 10px;
	}
}
#bakery #aboutBox .telCnt{
	border-radius: 20px;
	width: 90%;
	margin: 60px auto;
	max-width: 500px;
}
#bakery #aboutBox .telCnt a{
	width: 100%;
	height: 100%;
	display: block;
	padding: 15px 5% 40px;
}
#bakery #aboutBox .telCnt h3{
	display: flex;
	gap:15px;
	align-items: center;
	justify-content: center;
	color: var(--c-text);
	font-size: 1.8rem;
	margin-bottom:10px;
}
#bakery #aboutBox .telCnt p{
	font-size: 4.5rem;
	font-weight: bold;
	text-align: center;
	margin-bottom: 20px;
}
#bakery #aboutBox .telCnt p span{
	font-size: 0.6em;
	margin-right: 5px;
	transform: translateY(-5px);
	display: inline-block;
}
#bakery #aboutBox .telCnt a > span{
	font-size: 1.4rem;
	text-align: center;
	display: block;
}
@media screen and (max-width:480px){
	#bakery #aboutBox .telCnt{
		margin: 20px auto 40px;
	}
	#bakery #aboutBox .telCnt h3{
		margin-right: 30px;
	}
	#bakery #aboutBox .telCnt p{
		font-size: 3.5rem;
	}
}
/*出張販売のご案内*/
#bakery #aboutBox .pstoreBox h3{
	color: var(--c-text);
}
#bakery #aboutBox .schedule{
	display: flex;
	flex-wrap: wrap;
	gap: 40px 3%;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}
#bakery #aboutBox .schedule .cnt{
	/*width: 30%;*/
	border-radius: 20px;
	border: 2px solid var(--c-text);
	padding: 0 20px 20px;
	display: flex;
	flex-flow: column;
	justify-content: center;
	gap: 10px;
	align-items: center;
	background-color: #fff;
}
#bakery #aboutBox .schedule .cnt p{
	background-color: var(--c-key2);
  border-radius: 20px;
  color: #fff;
  font-size: 1.6rem;
  letter-spacing: 1px;
  min-width: 120px;
  height: 30px;
  text-align: center;
  z-index: 1;
  margin-top: -17px;
}
#bakery #aboutBox .schedule .cnt h4{
	font-size: 1.8rem;
	text-align: center;
	margin-bottom: 10px;
}
#bakery #aboutBox .schedule .cnt img{
	width: 100%;
	height: 150px;
	border-radius: 15px;
}
#bakery #aboutBox .schedule .schedule-place-list{
	display: flex;
	gap: 20px;
	flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width:899px){
	#bakery #aboutBox .schedule{
		gap: 25px 5%;
		width: 100%;
	}
	#bakery #aboutBox .schedule .cnt{
		width: 45%;
		padding: 10px 10px;
		gap: 10px;
	}
	#bakery #aboutBox .schedule .cnt h4{
		font-size: 1.6rem;
		line-height: 1.4;
	}
	#bakery #aboutBox .schedule .cnt p{
		font-size: 1.5rem;
		min-width: 80px;
		margin-top: -24px;
	}
	#bakery #aboutBox .schedule .cnt.place-count-2{
		width: 95%;
	}

}
/*メニュー*/
#bakery #menuBox .cntBox{
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
#bakery #menuBox .cateTitle{
	margin-bottom: 40px;
	text-align: center;
}
#bakery #menuBox .cateTitle h3{
	color: var(--c-text);
}
#bakery #menuBox .itemCateBox{
	margin: 60px auto;
}
#bakery #menuBox .item-index{
	display: flex;
	flex-wrap: wrap;
	gap: 30px;
}
#bakery #menuBox .item-index .item{
	display: flex;
	flex-flow: column;
	justify-content: space-between;
	width: calc(33.3% - 30px);
	border-radius: 20px;
	padding: 20px;
	border: 2px solid var(--c-text);
	background-color: #fff;
}
#bakery #menuBox .item-index .item .item-img img{
	width: 100%;
	height: 200px;
	border-radius: 15px;
}
#bakery #menuBox .item-index .item h4{
	text-align: center;
	margin: 20px 0;
	font-size: 1.8rem;
	color: var(--c-key1);
}
#bakery #menuBox .item-index .item .item-copy{
	text-align: center;
	font-weight: bold;
	border-radius: 35px;
	background-color: var(--c-o-bg);
	padding: 2px 0 5px;
}
#bakery #menuBox .item-index .item p {
	line-height: 1.5;
	margin-bottom: 10px;
}
#bakery #menuBox .item-index .item .item-price{
	text-align: center;
	border: 1px solid var(--c-text);
	padding: 5px 0 8px;	
	background-color: #fff;
	bottom: 20px;
}
#bakery #menuBox .item-index .item .item-price span{
	font-size: 1.4em;
	margin-right: 2px;
}
#bakery #menuBox .price-info{
	margin-top: 20px;
}
@media screen and (max-width:899px){
	#bakery #menuBox .cateTitle{
		margin-bottom: 20px;
	}
	#bakery #menuBox .item-index{
		gap: 20px;
	}
	#bakery #menuBox .item-index .item{
		width: 100%;
	}
	#bakery #menuBox .item-index .item .item-img img{
		height: 180px;
	}
	#bakery #menuBox .item-index p{
		font-size: 1.4rem;
	}
	#bakery #menuBox .itemCateBox{
		margin: 40px auto;
	}
}
@media screen and (max-width:480px){
	#bakery #menuBox .cateTitle h3{
		font-size: 1.8rem;
	}
}
/*------------------------------
07.お知らせ
------------------------------*/
/*メインビジュアル*/
#news #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
/*お知らせ一覧*/
#news #newsBox .cntBox{
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 5% 50px;
}
#news #newsBox .cntBox .recent-list {
    border-bottom: 2px solid var(--c-text);
}
#news #newsBox .cntBox ul a {
    display: block;
    padding: 15px 10px;
    font-weight: normal;
    transition: .3s;
}
#news #newsBox .cntBox .recent-list p {
    color: var(--c-key2);
}
#news #newsBox .cntBox .recent-list h3 {
    font-size: 1.6rem;
    color: var(--c-text);
    text-align: left;
    margin-bottom: 0;
    font-weight: bold;
}
#news .tablenav {
    text-align: center;
    margin-top: 30px;
}
#news .tablenav .current {
    font-weight: normal;
    background: var(--c-key1);
    color: #fff;
    display: inline-block;
    padding: 10px 15px 12px;
    margin: 0 3px;
    font-size: 1.5rem;
    border-radius: 5px;
}
#news .tablenav a {
    border: 1px solid var(--c-key1);
    background: #FFF;
    color: var(--c-key1);
    display: inline-block;
    padding: 10px 15px 12px;
    margin: 0 3px;
    font-size: 1.5rem;
    border-radius: 5px;
}
@media screen and (max-width:899px){
	#news #newsBox .cntBox{
		padding: 0 5% 40px;
	}
	#news #newsBox .cntBox ul a {
		padding: 10px 5px 15px;
	}
}

/*------------------------------
08.お知らせ（個別記事）
------------------------------*/
/*個別ページ*/
#news #newsArticleBox{
	max-width: 1000px;
}
/*個別ページ*/
#news #newsArticleBox .cntTitle{
	margin-bottom: 30px;
	border-bottom: 3px solid var(--c-text);
	padding: 0 10px 10px;
}
#news #newsArticleBox .newsDate{
	text-align: left;
	color: var(--c-key2);
}
#news #newsArticleBox .newsTitle{
	text-align: left;
	letter-spacing: 2px;
	font-size: 2.8rem;
	line-height: 40px;
	margin-top: 0;
}
#news #newsArticleBox .cntBox{
	padding: 0 10px;
	/*max-width: 780px;*/
	margin: 20px auto;
	width: 100%;
}
#news #newsArticleBox .cntBox h2{
    font-size: 2.4rem;
    font-weight: bold;
    margin: 30px 0 40px;
    padding-bottom: 15px;
    background: var(--c-key2);
    padding: 10px 20px;
    color: #fff;
    border-radius: 6px;
    line-height: 1.7;
}
#news #newsArticleBox .cntBox h3{
	text-align: left;
    font-weight: bold;
    letter-spacing: 1px;
    margin: 50px 0 30px;
    padding-left: 15px;
    border-left: 6px solid var(--c-key1);
    font-size: 2.4rem;
    color: var(--c-text);
}
#news #newsArticleBox .cntBox h4{
	font-size: 2.2rem;
	margin: 30px 0 20px;
	line-height: 1.6;
}
#news #newsArticleBox .cntBox h5{
	font-size: 2.0rem;
	margin: 30px 0 20px;
	line-height: 1.6;
}
#news #newsArticleBox .cntBox h6{
	font-size: 1.8rem;
	line-height: 1.6;
	margin: 20px 0;
}
#news #newsArticleBox .cntBox p{
    font-size: 1.6rem;
    text-align: left;
    line-height: 28px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}
#news #newsArticleBox .cntBox li{
	letter-spacing: 1px;
	margin-left: 10px;
	margin-bottom: 10px;
	line-height: 28px;
}
#news #newsArticleBox .cntBox strong{
	font-weight: bold;
}

#news #newsArticleBox .cntBox  ul{
   padding: 20px 10px 10px 30px;
	list-style-type: disc;
}
#news #newsArticleBox .cntBox  ol{
	padding: 20px 10px 10px 30px;
	list-style-type: decimal;
}
#news #newsArticleBox .cntBox table{
	margin: 20px 0;
}
#news #newsArticleBox .cntBox td{
	border: 1px solid #ccc;
}
#news #newsArticleBox .cntBox .cntImg{
	text-align: center;
}
#news #newsArticleBox .cntBox img{
	margin-bottom: 20px;
}
#news #newsArticleBox .cntBox a{
  color: var(--c-key1);
  border-bottom: 1px solid var(--c-key1);
  padding-bottom: 5px;
}

#news #newsArticleBox .cntBox a:hover {
    opacity: .5;
}
#news #newsArticleBox .cntBox img{
	max-width: 100%;
	height: auto;
}

/*TAB*/
@media screen and (max-width:899px){
	#news #newsArticleBox{
		padding-top: 10px;
	}
	#news #newsArticleBox .cntBox{
		padding: 0;
	}
	#news #newsArticleBox .cntBox .cntTitle{
		margin-bottom: 20px;
    letter-spacing: 2px;
    font-size: 2.4rem;
    margin-bottom: 0;
	}
	
	#news #newsArticleBox .cntBox p{
		font-size: 1.5rem;
		margin-bottom: 15px;
	    line-height: 27px;
	}
	#news #newsArticleBox .cntBoxx ol,#news #newsArticleBox .cntBox ul{
	    padding: 18px 9px 8px 24px;
	}
	#news #newsArticleBox .cntBox li{
		font-size: 1.5rem;
	    margin-left: 6px;
    	margin-bottom: 5px;
	}
	#news #newsArticleBox .cntBox h2{
		font-size: 2rem;
	    padding: 10px 9px;
	    margin-top: 20px;
	}
	#news #newsArticleBox .cntBox h3{
		font-size: 2rem;
		padding-left: 10px;
		margin: 30px 0 20px;
 	   border-left: 5px solid #84BE40;
	}

}


/*------------------------------
09.お問い合わせ
------------------------------*/
/*メインビジュアル*/
#contact #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
#contactFormBox .cntBox{
  width: 90%;
  max-width: 880px;
  margin: 0 auto;
  padding: 30px 0 50px;
}
#contactFormBox .cntDisc {
    font-weight: bold;
    font-size: 1.8rem;
    letter-spacing: 2px;
}
#contactFormBox form {
    border-top: 1px solid #333;
}
#contactFormBox form .row {
    padding: 40px 20px;
    border-bottom: 1px solid #333;
    position: relative;
}
#contactFormBox form .row > p {
    width: 35%;
    display: inline-block;
    vertical-align: middle;
    font-weight: bold;
}
#contactFormBox form label.required:after {
    content: '必須';
    font-size: 1.2rem;
    color: #fff;
    background-color: #e95a24;
    padding: 2px 6px 3px;
    height: 22px;
    border-radius: 15px;
    margin-left: 10px;
}
#contactFormBox form .required {
    position: relative;
}
#contactFormBox form .userInput {
    width: 60%;
    display: inline-block;
    vertical-align: middle;
}
#contactFormBox form input, #contactFormBox form textarea {
    width: 100%;
    padding: 15px 10px;
    vertical-align: middle;
    border: 1px solid #333;
    border-radius: 3px;
    letter-spacing: 1px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#contactFormBox form .radio .wpcf7-list-item {
    width: 100%;
    margin-bottom: 18px;
    color: var(--c-text);
    font-size: 1.5rem;
}
#contactFormBox form .radio input {
    width: 30px;
    padding: 0;
    margin: 0;
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
}
#contactFormBox form .userInput p.caution {
    font-size: 1.2rem;
    color: #333;
    position: absolute;
    bottom: 10px;
}
#contactFormBox form .submitBtn{
	width: 90%;
  max-width: 400px;
  margin: 40px auto 0;
  position: relative;
}
#contactFormBox form #submit{
  border-radius: 3px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 1.5rem;
  display: block;
  border: none;
  box-shadow: 1px 1px 3px #ccc;
  background-color: var(--c-key1);
  margin: 30px auto 0;
  border-radius: 50px;
}
#contactFormBox form .submitBtn::before{
	content: '';
  position: absolute;
  background: url(../img/arrow_r_w.png) center / 100% no-repeat;
  right: 25px;
  width: 10px;
  height: 9px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#contactFormBox form #submit:hover{
	opacity: .5;
	transition: .5s;
}
@media screen and (max-width:899px){
  #contactFormBox .cntDisc {
    font-size: 1.6rem;
    letter-spacing: 1px;
  }
	#contactFormBox form .row > p {
    width: 100%;
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.5rem;
  }
  #contactFormBox form input, #contactFormBox form textarea {
    width: 100%;
    letter-spacing: 1px;
    font-size: 16px;
  }
  #contactFormBox form .row {
    padding: 18px 8px 20px;
  }
  #contactFormBox form .radio .wpcf7-list-item {
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 8px;
	}
	#contactFormBox form .userInput {
    width: 100%;
  }
  #contactFormBox form .userInput p.caution{
  	position: static;
  }
  #contactFormBox form .radio{
  	margin-top: 20px;
  }
}

/* 本来の送信メッセージは非表示にする */
.wpcf7 form.sent .wpcf7-response-output {
    display: none;
}

/* モーダルウィンドウを作成する */
#wpcf7-modal {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    justify-content: center;
    align-items: center;
}

#wpcf7-modal__bg {
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .5);
    z-index: -1;
}

#wpcf7-modal__wrap {
    background-color: #ffffff;
    border-radius: 10px;
    width: 90%;
    padding: 20px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    text-align: center;
}
#wpcf7-modal__wrap a{
	margin-top: 20px;
  display: inline-block;
  color: var(--c-key1);
  border-bottom: 1px solid var(--c-key1);
  padding-bottom: 2px;
}

#contactFormBox .submitBtn .wpcf7-spinner {
  display: none;
}
/*------------------------------
10.情報公開
------------------------------*/
/*メインビジュアル*/
#information  #mainVisual{
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
}
#information #mainVisual .pageTitle{
	font-size: 3.2rem;
	height: 45px;
	line-height: 42px;
}
#information h3{
	color: var(--c-text);
}
#information .mainCntBox{
	padding-bottom: 0;
}
#information .cntBox{
	padding: 20px 5% 50px;
	flex: 1;
}
#information .cntBox .cntTitle{
	margin-bottom: 0;
}
#information .cntBox .cnt.doc-list-box {
    display: flex;
    flex-wrap: wrap;
    gap:30px 5%;
    justify-content: center;
}
#information .cntBox .cnt.doc-list-box .doc-list {
    flex: 1;
}
#information .cntBox .cnt.doc-list-box .doc-list h4 {
    background-color: var(--c-key1);
    border-radius: 30px;
    color: #fff;
    text-align: center;
    padding: 3px 30px 4px;
    margin: 0 auto;
}
#information .cntBox .cnt.doc-list-box .doc-list li{
	border-bottom: 1px solid var(--c-key1);
  text-align: center;
  width: 100%;
}
#information .cntBox .cnt.doc-list-box .doc-list a{
  width: 100%;
  height: 100%;
  display: block;
  color: var(--c-key1);
  font-weight: bold;
  font-size: 1.8rem;
  padding: 20px 0;
}
#information #otherDocuBox{
	display: flex;
	gap: 30px 5%;
}
/*#information #evaluationBox .greenBtn a{
	border-radius: 0;
}
#information #downloadBox .cnt{
	margin: 100px 0;
}
#information #downloadBox .cntTitle{
	margin: 0;	
}
#information #downloadBox .greenBtn.style02{
	display: flex;
	gap: 10px;
	align-items: center;
	justify-content: center;
}
#information #downloadBox .cnt:first-child{
	margin-top: 0;
}
#information #downloadBox .greenBtn.style02 a{
	margin: 0;
	font-size: 1.8rem;
	font-weight: bold;
}
#information #downloadBox .greenBtn.style02 img{
	width: 60px;
}*/
@media screen and (max-width:899px){
	#information #mainVisual .pageTitle{
		font-size: 2.6rem;
	}
	#information #evaluationBox{
		padding-bottom: 0;
	}
	#information .cntBox .cnt.doc-list-box{
		flex-flow: column;
	}
	#information .cntBox .cnt.doc-list-box .doc-list a{
		font-size: 1.6rem;
		padding: 15px 0;
	}
	#information #otherDocuBox{
		flex-flow: column;
	}
	/*#information #evaluationBox .cntTitle{
		margin-bottom: 0;
	}
	#information #downloadBox .cnt{
		margin: 50px 0;
	}
	#information #downloadBox .greenBtn.style02 img{
		width: 50px;
	}
	#information #downloadBox .greenBtn.style02 a{
		font-size: 1.5rem;
		letter-spacing: 0.05em;
	}*/
}