/* CSS Document */

/*------------------------------------------------
 サイト基本カラー
------------------------------------------------*/
:root {
  --main_color: #69bb00;
	--main_color_80: #87c933;
	--main_color_50: #b4dd80;
	--main_color_30: #d2ebb2;
	--main_color_20: #e1f1cc;
	--main_color_10: #f0f8e5;
	--main_color_5: #f7fcf2;
}
	
/*共通設定*/
body {
	color: #333;
	letter-spacing: 0.05rem;
	font-size: 16px;
	font-family: "Sawarabi Gothic";
	position: relative;
	font-feature-settings: "palt";
}
a {
	color: #333;
}
/* PCのときは電話番号をクリックさせない */
a[href^="tel"] { 
	pointer-events: none;
}
@media (max-width:480px) {
	body {
		font-size: 14px;
	}
}

.inner_80p {
	width: 80%;
	margin: 0 auto;
}
.mb_40 {
	margin-bottom: 40px !important;
}
.mb_60 {
	margin-bottom: 60px !important;
}
.mb_80 {
	margin-bottom: 80px !important;
}
.color {
	color: var(--main_color_80);
}
.center {
	text-align: center;
}
.kome {
	padding-left: 1rem;
	text-indent: -1rem;
	font-size: 0.9rem;
}
.border {
	display: inline-block;
	padding: 1rem 3rem;
  border: 4px solid var(--main_color_30);
	background-color: #fff;
}
.bold {
	font-weight: bold;
}
.big {
	font-size: 1.4rem;
}
h2 {
	margin-bottom: 3rem;
	letter-spacing: 0.15rem;
	font-size: 30px;
	color: #4b4948;
	font-weight: 600;
	line-height: 1.5;
}
h2 span {
	display: block;
	color: var(--main_color_80);
	font-size: 20px;
	letter-spacing: 0.05rem;
}
.midashi_3 {
	margin-bottom: 2rem;
	padding: 0.08rem 0.8rem;
	font-weight: 500;
	font-size: 1.3rem;
	border-left: 4px solid var(--main_color);
}
.midashi_4 {
	margin-bottom: 0.8rem;
	font-weight: 600;
	font-size: 1.2rem;
}
/* PCとスマホで表示切り替え PC=表示、SP=非表示 */
.pc {
  display: block !important;
}
.sp {
  display: none !important;
}
/* PCとスマホで改行切り替え pc_br=表示、SP=非表示 */
.pc_br {
  display: block;
}
.sp_br {
  display: none;
}
@media (max-width:480px) {
	.border {
		padding: 1rem;
	}
	.big {
		font-size: 1.1rem;
	}
	h2 {
		font-size: 20px;
		margin: 25px 0 35px;
	}
	h2 span {
		font-size: 16px;
	}
	.midashi_3 {
		margin-bottom: 2rem;
		font-size: 1.1rem;
		border-left: 3px solid var(--main_color);
	}
	.midashi_4 {
		font-size: 1.0rem;
	}
	/* PCとスマホで表示切り替え PC=非表示、SP=表示 */
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
	.pc_br {
		display: none;
	}
	.sp_br {
		display: block;
	}
	/* スマホの時にはクリックできるように */
	a[href^="tel"] {
		pointer-events: auto;
		text-decoration: underline;
		/*border-bottom: 1px solid var(--key-color-20);*/
	}
}



/*== ボタン共通設定-----------------------------------------*/
.btn {
    /*アニメーションの起点とするためrelativeを指定*/
    position: relative;
	overflow: hidden;
    /*ボタンの形状*/
	text-decoration: none;
	display: inline-block;
   	/*border: 1px solid #555;*//* ボーダーの色と太さ */
    padding: 7.5px 20px;
	margin-top: 25px;
	border-radius: 5px;
	border: 1px solid var(--main_color);
	background: var(--main_color);
    text-align: center;
    outline: none;
    /*アニメーションの指定*/   
    transition: ease .2s;
}
/*ボタン内spanの形状*/
.btn span {
	position: relative;
	z-index: 3;/*z-indexの数値をあげて文字を背景よりも手前に表示*/
	color:#fff;
}
.btn:hover {	
}
.btn:hover span{
	color: var(--main_color);
}
/*== 背景が流れる（左から右） */
.bgleft:before {
 	content: '';
    /*絶対配置で位置を指定*/
 	position: absolute;
 	top: 0;
 	left: 0;
 	z-index: 2;
    /*色や形状*/
 	background: #fff;/*背景色*/
 	width: 100%;
	height: 100%;
    /*アニメーション*/
 	transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
 	transform: scale(0, 1);
	transform-origin: right top;
}
.saiyou-link .bgleft:before {
	background: #f6f6f6;
}

/*hoverした際の形状*/
.bgleft:hover:before{
	transform-origin:left top;
	transform:scale(1, 1);
}


/*フェードイン共通設定----------------------------------------*/
.js-fade-1,.js-fade-2,.js-fade-3 {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
}
.js-fade-1 {
	transition: opacity 1s,visibility 1s, transform 1s;
}
.js-fade-2 {
	transition: opacity 2s,visibility 2s, transform 2s;
}
.js-fade-3 {
	transition: opacity 2.5s,visibility 2.5s, transform 2.5s;
}

.scroll {
	opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}


/*テーブルスクロール----------------------------------------*/
@media screen and (max-width:480px) {
	.table_wrapper {
		overflow-x: auto;
		display: block;
		margin-bottom: 1rem;
	}
	.table_wrapper table th,
	.table_wrapper table td {
		white-space: nowrap;
	}
}


/*header-------------------------------------------------------------------------------------------------------------------------------------------------------*/
header {
	position: sticky;
	top: 0vh;
	background: #fff;
	z-index: 10;
}
.header {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  /*z-index: 999;*/
}
@media screen and (min-width: 1140px) {
  .header {
    height: 80px;
  }
}
.header__inner {
  padding: 25px 45px; 
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit; /*親要素の高さを継承*/
  position: relative;
  z-index: 20;
}
@media (max-width:1280px) {
	.header__inner {
		padding: 25px 10px;
	}
}
@media (max-width:1140px) {
	.header__inner {
		padding: 20px;
	}
}
/* ヘッダーのロゴ部分 */
.header__title a img {
  padding-right:0.8rem
}
.header-title h1 {
	/*font-weight: normal;*/
}
.header-title a {
	display: flex;
	align-items: center;
	font-size: 1.0rem;
	text-decoration: none;
}
.header-title a h1 {
	font-size: 30px;
	line-height: 1.1;
	letter-spacing: 0.05rem;
}
.header-title a:hover {
	opacity: 0.8;
}
.header-title a h1 span {
	display: block;
	font-size: 0.9rem;
	color: #666;
}
@media (max-width:1140px) {
	.header-title a {
		padding-left: 0px;
	}
}
@media (max-width:480px) {
	.header-title a h1  {
		font-size:  1.2rem;
	}
	.header-title a h1 span {
		font-size:  0.7rem;
	}
	.header-title a p {
		font-size: 18px;
	}
	.header-title img {
		/*width: 50px;*/
		height: 33px;
	}
}
/* ヘッダーのナビ部分 */
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
  }
@media (max-width:1140px) {
	.header__nav {
	  position: fixed;
	  right: 0;
	  left: 0;
	  top: 88px;
	  height: 100vh;
	  transform: translateX(100%); 
	  background-color: #fff; /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
	  transition: ease .4s; /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
	  display: flex;
	  font-weight: normal;
	}
}
@media (max-width:480px) {
	.header__nav {
	  top: 72px;
	}
}
.nav__items {
  margin: 100px auto auto;
}
@media screen and (min-width: 1140px) {
  .nav__items {
    margin: initial;
    width: 100%;
		 height: initial;
    display: flex;
    align-items: center;
    justify-content: flex-end;
		gap: 1.2rem;
  }
}
.nav-items__item {
  height: 100%;
  display: flex;
  align-items: center;
}
.nav-items__item a {
	display: block;
	font-size: 0.90rem;
	letter-spacing: 0.05rem;
}
@media (max-width:1140px) {
	.nav-items__item {
		padding: 0;
	}
}
@media screen and (min-width: 1140px) {
  .nav-items__item:before {
    position: absolute;
    content: "";
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    opacity: 0;
  }
  .nav-items__item:hover:before {
    opacity: 1;
  }
}
.nav-items .nav-items__item{
	list-style: none;
}


/* ナビのリンク */
.nav-items__item a {
  width: 100%;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  text-decoration: none;
  color: #333;
}
.nav-items__item:last-child a {
  margin-bottom: 0;
}
.nav-items__item a:hover {
	/*opacity: 0.5;*/
	color: var(--main_color);
}

/*電話リンク　*/
.tel-link {
	line-height: 1;
	text-align: center;
	list-style: none;
}
.tel-link a {
	text-decoration: none;
	color: #333;
}
.tel-link span {
	display: block;
	font-size: 26px;
	color: var(--main_color);
  font-weight: bold;
}
.tel-link p {
	font-size: 12px;
	display: inline-block;
	text-align: center;
	font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

@media (max-width:1140px) {
	.tel-link {
		padding: 0 0 25px;
	}
	.tel-link p {
		margin-bottom: 0.3rem;
	}
}

/*ナビお問い合わせボタン*/
.h-contact a {
	display: block;
	color: #fff;
	background: var(--main_color);
	padding: 10px 15px;
	text-decoration: none;
	border-radius: 5px;
}
@media screen and (min-width: 1140px) {
	.nav-items__item a {
	   margin-bottom: 0;
	   font-size: 16px;
    }
	.h-contact a{
	display: none;
	}
}
@media (max-width:480px) {
	.tel-link:hover {
		opacity: 0.5;
	}
}


/* ハンバーガーメニュー ----------------------------- */
.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}
@media screen and (min-width: 1140px) {
  /*PC時非表示にする*/
  .hamburger {
    display: none;
  }
}
.header__hamburger {
  width: 30px;
  height: 100%;
}
.hamburger {
  background-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  border-color: transparent; /*buttonタグデフォルトスタイルを打ち消し*/
  z-index: 9999;
  cursor: pointer;
}
/* ハンバーガーメニューの線 */
.hamburger span {
  width: 100%;
  height: 2px;
  background-color: var(--main_color);
  position: relative;
  transition: ease .4s; 
  display: block;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 7px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

/*ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
/*.header__hamburger.active {
	position: fixed;
	right: 20px;
}*/

.hamburger.active span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: -12px;
  transform: rotate(-45deg);
}

/*ヘッダーをスクロールしたとき*/
.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
}

/*カレント*/
.current a,.current-2 a{
	color: #2999c4;
}




/*トップイメージ-------------------------------------------------------------------------------------------*/
.top-img {
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	gap: 1.5rem;
	height: calc(100vh - 100px);
	padding: 0 3rem;;
	background-image: url("../img/24332540_m.webp");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
/*.top-img .js-box {
	width: 55%;
	animation: fadeIn 3s ease 0s 1 normal;
    -webkit-animation: fadeIn 3s ease 0s 1 normal;
}*/
/* じわっと画像が表示される */
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}

/*古いブラウザ用*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
.top-img .top-p {
}
.top-img .top-p p {
}
.top-img .top-p p span {
	font-size: 42px;
	font-weight: 600;
	padding-bottom: 25px;
}
.js-text-anime span {
  opacity: 0;
  transition: 0.5s;
	color: var(--main_color);
}
@media (max-width:1280px) {
	.top-img .top-p p span {
		font-size: 32px;
		letter-spacing: 0.2rem;
	}
}
@media (max-width:780px) {
	.top-img .js-box {
		width: 65%;
		margin: 0 0 0 auto;
	}
	.top-img .top-p {
		width: 100%;
		margin:  0 auto 0 0;
	}
}
@media (max-width:640px) {
	.top-img {
		flex-direction: column;
		align-items: center;
		padding: 0 2rem;
	}
	.top-img .top-p {
		text-align: center;
		margin: 0 auto;
	}
}
@media (max-width:480px) {
	.top-img .js-box {
		width: 100%;
	}
	.top-img .top-p p {
		font-size: 12px;
	}
	.top-img .top-p p span {
		font-size: 20px;
		letter-spacing: 0;
	}
}

/*冒頭-------------------------------------------------------------------------------------------*/
#intro {
	padding: 100px 0;
	background: #f6f6f6;
	text-align: center;
}
#intro p {
	line-height: 1.8;
}
#intro p:not(:last-of-type) {
	margin-bottom: 2rem;
}
#intro p span {
	display: block;
	margin-bottom: 0.4rem;
	font-size: 1.3rem;
	font-weight: bold;
	color: var(--main_color);
}
@media (max-width:480px) {
	#intro .inner_80p {
		width: 95%;
	}
}

/*空室情報-------------------------------------------------------------------------------------------*/
#room {
	padding: 100px 0;
}
#room p {
	margin-top: 2.2rem;
	margin-bottom: 0.5rem;
}
#room p span {
	padding: 0.8rem 1.5rem;
	border: 4px solid var(--main_color_30);
	font-size: 1.3rem;
	font-weight: 500;
}
@media (max-width:480px) {
	#room p span {
	padding: 0.8rem 1.3rem;
	border: 3px solid var(--main_color_30);
	font-size: 1.1rem;
	}
}





/*施設案内------------------------------------------------------------------------------------------------*/
#facility {
	padding: 100px 0;
	background: #f6f6f6;
}
.s-container {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.s-container .contents {
	width: 30%;
	margin-bottom: 2rem;
}
.s-container .contents p {
	padding-top: 20px;
	letter-spacing: 0.05rem;
	line-height: 1.5;
	font-size: 15px;
	color: grey;
}
.s-container .contents p span {
	display: block;
	font-weight: 600;
	padding-bottom: 10px;
	font-size: 17px;
	color: #333;
}
/*概要*/
.gaiyou-flex {
	display: flex;
	justify-content: space-between;
	/*padding: 30px 0 50px;*/
}
.gaiyou {
	width: 47.5%;
}
.gaiyou dl {
	display: flex;
	padding: 1rem 0.8rem;
	border-bottom: 1px solid #fff;
}
.gaiyou dl dt {
	width: 40%;
	/*white-space: nowrap;*/
	font-weight: 600;
}
#facility .gaiyou:first-of-type dl dt {
	width: 25%;
}
.gaiyou dl dd {
	width: 60%;
	letter-spacing: 0.1rem;
}
#facility .gaiyou:first-of-type dl dd {
	width: 75%;
}
.gaiyou dl dd a {
	text-decoration: none;
	color: #082f50;
}
@media (max-width:1040px) {
	/*概要*/
	.gaiyou-flex {
		display: block;
	}
	.gaiyou {
		width: 100%;
	}
	#facility .gaiyou:first-of-type dl dt,
	.gaiyou dl dt {
		width: 35%;
	}
	#facility .gaiyou:first-of-type dl dd,
	.gaiyou dl dd {
		width: 65%;
	}
}
@media (max-width:780px) {
	.s-container .contents {
		width: 45%;
		padding-bottom: 50px;
	}
}
@media (max-width:480px) {
	.s-container .contents {
		width: 100%;
		padding-bottom: 0;
	}
	.s-container .contents p {
		font-size: 13px;
	}
	.gaiyou-flex {
		display: block;
		width: 100%;
		padding-top: 10px;
	}
	.gaiyou {
		width: 100%;
	}
	.gaiyou dl {
		justify-content: space-between;
		padding: 0.8rem 0;
	}
	.gaiyou dl dd {
		width: 70%;
	}
	.gaiyou dl dd span {
		display: none;
	}
}
/*マップ*/
.map iframe {
	width: 100%;
	height: 400px;
}
/*協力医療機関と福祉施設*/
ul.list_01 {
	list-style: none;
}
ul.list_01 li {
	margin-bottom: 1.4rem;
}
ul.list_01 li span {
	padding: 0.5rem 1rem;
	background-color: #f5f5f5;
	font-size: 1.1rem;
}
ul.list_01.wh li span {
	background-color: #fff;
}
/*年間行事*/
.gaiyou-flex.nenkan .gaiyou dl {
	border: none;
}
.gaiyou-flex.nenkan .gaiyou dl dt {
	width: 14% !important;
	min-width: 14%;
	padding-right: 1rem;
	border-right: 1px solid #fff;
	font-size: 1.05rem;
	color: var(--main_color);
	text-align: right;
	white-space: nowrap;
}
.gaiyou-flex.nenkan .gaiyou dl dd {
	width: 86% !important;
	padding-left: 1rem;
}
@media (max-width:1040px) {
	.gaiyou-flex.nenkan .gaiyou dl dd br.pc {
		display: none !important;
	}
}
@media (max-width:480px) {
	ul.list_01 li {
		margin-bottom: 1rem;
	}
	ul.list_01 li span {
		display: block;
		padding: 0.5rem 0.5rem;
		font-size: 16px;
	}
	.gaiyou-flex.nenkan .gaiyou dl dt {
		width: 20% !important;
		min-width: 20%;
		font-size: 0.8rem;
	}
}





/*ご入居の流れ------------------------------------------------*/
#flow {
	padding: 100px 0;
}
ol.flow {
	display: flex;
	gap: 1.5rem;
	margin-top: 3rem;
	list-style: none;
}
ol.flow li {
	width: 20%;
}
ol.flow li .wrapper {
	position: relative;
	height: 100%;
	padding: 2rem 1.5rem;
	background-color: #f7f8f8;
}
ol.flow li .wrapper .step {
	position: absolute;
	top: -32px;
	left: 0;
	font-size: 22px;
	color: var(--main_color_50);
	letter-spacing: 0;
	line-height: 1;
}
ol.flow li .wrapper span {
	margin-left: 0.2rem;
	font-size: 36px;
	color: #c3c3c3;
	letter-spacing: 0;
	line-height: 1;
}
ol.flow li .wrapper .title {
	margin-bottom: 1.0rem;
	font-size: 18px;
	font-weight: 600;
	color: var(--main_color);
	text-align: center;
}
ol.flow li .wrapper p {
	font-size: 0.95rem;
	line-height: 1.6;
}
/*お持ちいただく物*/
#flow p.color {
	margin-bottom: 1rem;
	font-size: 1.2rem;
	font-weight: 600;
}
@media screen and (max-width:960px) {
	ol.flow {
		flex-wrap: wrap;
		gap: 3%;
		margin-top: 4rem;
		margin-bottom: 0 !important;
	}
	ol.flow li {
		width: 31%;
		margin-bottom: 3rem;
	}
}
@media screen and (max-width:640px) {
	ol.flow {
		gap: 3%;
	}
	ol.flow li {
		width: 48.5%;
		margin-bottom: 2.5rem;
	}
}
@media screen and (max-width:480px) {
	#flow {
		padding: 50px 0;
	}
	ol.flow li {
		width: 100%;
	}
	ol.flow li .wrapper {
		padding: 1.0rem 1.0rem 1.5rem 1.0rem;
	}
	ol.flow li .wrapper .step {
		top: -27px;
		font-size: 18px;
	}
	ol.flow li .wrapper span {
		margin-left: 0.2rem;
		font-size: 30px;
	}
	ol.flow li .wrapper .title {
		margin-bottom: 0.2rem;
		font-size: 17px;
	}
	ol.flow li .wrapper p {
	font-size: 14px;
}
	/*お持ちいただく物*/
	#flow p.color {
		font-size: 1.0rem;
	}
}




/*ご利用料金------------------------------------------------*/
#price {
	padding: 100px 0;
	background: #f6f6f6;
}
table.table_03 {
	margin-bottom: 1rem;
	border-collapse: collapse;
	background-color: #fff;
}
table.table_03 th,
table.table_03 td {
  border:1px solid #dcdddd;
}
table.table_03 tr {
}
table.table_03 th {
  width: 25%;
  padding: 1rem 1.5rem;
	background-color: var(--key-color-5);
	text-align: center;
  vertical-align: middle;
  font-weight: 500;
}
table.table_03 td {
	padding: 1rem 1.5rem;
  vertical-align: top;
  text-align: left;
}
table.table_03 td:first-of-type {
	background-color: #fafafa;
	font-weight: bold;
}
table.table_03 td:last-of-type {
	text-align: right;
}
@media (max-width:480px) {
	#price {
		padding: 50px 0;
	}
	table.table_03 {
		width: 100%;
	}
}




/*求人情報------------------------------------------------*/
#recruit {
	padding: 100px 0;
}
table.table_02 {
	margin-bottom: 1rem;
	border-collapse: collapse;
}
table.table_02 th,
table.table_02 td {
	border: 1px solid #dcdddd;
}
table.table_02 th {
  width: 25%;
  padding: 1rem 1.5rem;
	background-color: #f5f5f5;
	text-align: center;
  vertical-align: middle;
  font-weight: 500;
}
table.table_02 td {
	padding: 1rem 1.5rem;
  vertical-align: top;
  text-align: left;
}
#recruit p {
	text-align: center;
}
#recruit p.tel {
	margin-bottom: 0.8rem;
}
#recruit p.tel::before {
	display: inline-block;
	content: "";
	margin-right: 0.5rem;
	background-image: url("../img/tel_icon.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 24px;
	height: 24px;
}
#recruit p.tel a {
	text-decoration: none;
	font-size: 2.2rem;
	color: var(--main_color);
}
@media screen and (max-width:960px) {
	table.table_02 th {
		width: 22%;
	}
}
@media screen and (max-width:768px) {
	table.table_02 th {
		width: 25%;
	}
}
@media screen and (max-width:640px) {
	table.table_02 {
	}
	table.table_02 tr {
		border-bottom: none;
	}
	table.table_02 th {
		background-color: #f5f5f5;
		text-align: left;
		font-weight: bold;
	}
  table.table_02 th, 
	table.table_02 td {
    display: block;
    width: 100%;
		padding: 1rem;
		border: 1px solid #dcdddd;
		border-bottom: none;
  }
  table.table_02 tr:last-child td:last-child {
    border-bottom: 1px solid #dcdddd;
  }
}
@media screen and (max-width:480px) {
	#recruit {
		padding: 50px 0;
	}
	#recruit .border {
		display: block;
	}
	#recruit p.tel {
		margin-bottom: 0;
	}
	#recruit p.tel a {
		font-size: 30px;
	}
}


/*情報公開------------------------------------------------*/
#disclosure {
	padding: 100px 0;
	background: #f6f6f6;
}
@media (max-width:480px) {
	#disclosure {
		padding: 50px 0;
	}
}
ul.list_02 {
	list-style: none;
}
ul.list_02 li {
  margin-bottom: 0.6rem;
  padding-left: 1em;
	text-indent: -1em;
}
ul.list_02 li::before {
  content: '';
  display: inline-block;
	margin-right: 10px;
  width: 16px;
	height: 18px;
  background-image: url("../img/icon_pdf.svg");
	background-repeat: no-repeat;
  background-size: contain;
  vertical-align: middle;
}
ul.list_02 li a {
	font-weight: 500;
}
@media (max-width:480px) {
	#disclosure {
		padding: 50px 0;
	}
}
	


/*お問い合わせ------------------------------------------------*/
#contact {
	padding: 60px 0;
}
@media (max-width:480px) {
	#contact {
		padding: 50px 0;
	}
}
#contact p {
	text-align: center;
}
#contact p.text {
	font-size: 1.5rem;
}
#contact a.tel {
	font-size: 46px;
	font-weight: 400;
	color: var(--main_color);
	text-decoration: none;
}
#contact a.tel::before {
	display: inline-block;
	content: "";
	margin-right: 0.4rem;
	background-image: url("../img/tel_icon.svg");
	background-repeat: no-repeat;
	background-size: contain;
	background-position: center;
	width: 30px;
	height: 30px;
}
@media (max-width:480px) {
	#contact .border {
		display: block;
	}
	#contact p.text {
		font-size: 1.0rem;
	}
	#contact a.tel {
		padding-left: 1rem;
		font-size: 30px;
	}
	#contact a.tel::before {
		width: 22px;
		height: 22px;
	}
}



/*フッター------------------------------------------------------------------------------------------------*/
footer {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	background: #4b4948;
	color: #fff;
	padding: 10px 0;
}
.f-adress {
	padding: 10px 40px;
}
.f-adress p {
	font-size: 14px;
	line-height: 1.5;
}
.f-adress p a {
	text-decoration: none;
	color: #fff;
}
.f-adress .f-logo {
	font-size: 24px;
	padding-bottom: 10px;
}
.copyright {
	font-size: 12px;
	padding: 10px 40px;
}

@media (max-width:480px) {
	footer {
		display: block;
		text-align: center;
		padding-top: 25px;
	}
	.f-adress p {
		font-size: 12px;
	}
	.f-adress .f-logo {
		padding-bottom: 25px;
		font-size: 20px;
	}
	.copyright {
		padding-bottom: 0;
		font-size: 10px;
	}
}


/*TOPへ戻るボタン*/
#pagetop {
	height: 50px;/*枠の大きさ*/
	width: 50px;/*枠の大きさ*/
	position:fixed;
	right: 30px;
	bottom: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.nav-pagetop {
	width: 30px;/*矢印の大きさ*/
	height: 30px;/*矢印の大きさ*/
	border-top: 2px solid #082f50;
	border-right: 2px solid #082f50;
	transform: translateY(20%) rotate(-45deg);
	filter: contrast(100);/*背景色によって濃くなる*/
}

@media (max-width:480px) {
	#pagetop {
		right: 20px;
	}
}






