@charset "utf-8";

header.under_page .head_logo{
	display: flex;
	justify-content: center;
	align-items: center;
}

header.under_page .head_logo h1{
	margin-bottom: 0;
}

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

	header.under_page .head_logo{
		
	}

}

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

	header.under_page{
		height: 6rem;
		position: fixed;
	}

	header.under_page .head_logo{
		width: 60vw;
		margin-left: 0;
		max-width: unset;
	}

}

/*---*/

h2.title{
	position: relative;
	font-size: 3rem;
	font-weight: 700;
	text-align: center;
	margin-bottom: 11rem;
}

h2.title.contact{
	color: #14808F;
	margin-bottom: 7rem;
}

div.h2_text{
	text-align: center;
	margin-bottom: 4rem;
}

h2.title::after{
	position: absolute;
	content: url(../img/line.png);
	display: inline-block;
	transform: scale(0.5);
	bottom: -5rem;
	left: 0;
	right: 0;
}

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

	h2.title{
		font-size: 2.5rem;
		margin-bottom: 7rem;
	}

	div.h2_text{
		text-align: left;
		margin-bottom: 3rem;
	}

	h2.title.contact + div.h2_text{
		text-align: center;
		font-size: 4.0vw;
	}

}

/*---*/

.bt{
	
}

.bt.max340{
	max-width: 34rem;
	margin-left: auto;
	margin-right: auto;	
}

.bt.mini{
	max-width: 22rem;
	margin-left: auto;
	margin-right: 0;	
}

.bt a{
	display: flex;
	justify-content: center;
	align-items: center;
	background: #D1414D;
	color: #fff;
	width: 100%;
	height: 6rem;
	border-radius: 6rem;
}

.bt.mini a{
	height: 4rem;
}

.bt a::after{
	content: url(../img/next.png);
	display: inline-block;
	transform: scale(0.5);
	margin-top: 0.5rem;
	margin-right: -1rem;
}

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

	.bt a{
		font-size: 3.8vw;
	}

	.bt.mini{
		max-width: 20rem;
		margin-left: auto;
		margin-right: auto;
		font-size: 1.5rem;
	}

}

/*---*/

.top_about{
	
}

.top_about .top_about_contents{
	display: flex;
	background: url(../img/image-bg-01.png);
	background-repeat: no-repeat;
	background-position: left 70vw top 13vw;
	background-size: 23%;
}

.top_about .top_about_contents .image{
	max-width: 47vw;
	margin-right: 7vw;
}

.top_about .top_about_contents .image img{
	border-radius: 0 3rem 3rem 0;
}

.top_about .top_about_contents .text{
	max-width: 31vw;
}

.top_about .top_about_contents .text p{
	margin-bottom: 4rem;
}

@media (max-width: 1180px) {

	.top_about .top_about_contents {
		background-position: left 58vw top 3vw;
		background-size: 30%;
	}

	.top_about .top_about_contents .text {
		max-width: 40vw;
	}

}

@media (max-width: 820px) {

	.top_about .top_about_contents {
		background-position: left 6vw top 20vw;
		background-size: 26%;
	}

	.top_about .top_about_contents .image{
		max-width: 40vw;
	}

	.top_about .top_about_contents .text {
		max-width: 46vw;
	}

}

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

	.top_about .top_about_contents {
		background-position: left 8vw top 90vw;
		background-size: 85%;
		flex-wrap: wrap;
	}

	.top_about .top_about_contents .image {
		max-width: 100%;
		margin-right: 0;
		margin-bottom: 3rem;
	}

	.top_about .top_about_contents .image img{
		border-radius: 0;
	}

	.top_about .top_about_contents .text {
		max-width: 100%;
		padding-left: 3rem;
		padding-right: 3rem;
	}

}

/*---*/

.top_news{

}

.top_news .top_news_contents{
	background: #FDFDF5;
	padding: 5rem;
}

@media (max-width: 559px) {

	.top_news article{
		padding-left: 0;
		padding-right: 0;
	}

	.top_news .top_news_contents{
		padding: 4rem 3rem;
	}

}

/**/

.top_news_list{
	border-top: 0.1rem dotted #aaa;
	margin-bottom: 3rem;
}

.top_news_list li{
	display: flex;
	padding: 2rem;
	border-bottom: 0.1rem dotted #aaa;
}

.top_news_list .date{
	display: flex;
	font-size: 1.8rem;
	font-weight: 700;
	width: 8vw;
	min-width: 14rem;
}

.top_news_list .category{
	background: #14808F;
	color: #fff;
	width: 10vw;
	min-width: 20rem;
	border-radius: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-right: 3rem;
}

.top_news_list .article{

}

.top_news_list .article a{
	text-decoration: underline;
}

.top_news_list .article a:hover{
	text-decoration: none;
}

/* タブボタンエリア */
.tab-buttons {
	display: grid;
	grid-template-columns: repeat(6, 1fr); /* ← 常に6列分割 */
	gap: 8px;
	justify-content: start;
	margin-bottom: 20px;
}

.tab-button {
	flex: 1 1 calc(16.66% - 8px); /* ← 1行6個配置（100% ÷ 6 = 約16.66%） */
	min-width: 120px;
	padding: 0 15px 0 0;
	text-align: center;
	background: #fff;
	border: 0.1rem solid #595959;
	border-radius: 4rem;
	/* border: none;
	border-radius: 6px; */
	cursor: pointer;
	font-size: 1.5rem;
	transition: all 0.25s ease;
	color: #595959;
	position: relative;

	display: flex;
	justify-content: center;
	align-items: center;
	height: 4rem;
}

.tab-button:hover {
	background: #9ef4ff;
}

.tab-button.active {
	background: #14808F;
	color: #fff;
	/* font-weight: bold; */
}

.tab-button::after {
	content: url(../img/next_glay.png);
	display: inline-block;
	transform: scale(0.4);
	margin-top: 0.2rem;
	position: absolute;
	right: 0;
}

.tab-button.active::after {
	content: url(../img/next.png);
	display: inline-block;
	transform: scale(0.4) rotate(90deg);
	margin-top: 0.0rem;
	transition: .3s;
}


/* コンテンツエリア */
.tab-content {
	display: none;
	/* background: #fff; */
	padding: 2rem 0;
	border-radius: 0;
	/* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
}

.tab-content.active {
	display: block;
}

@media (max-width: 1180px) {

	.tab-buttons {
		grid-template-columns: repeat(4, 1fr);
	}

	.top_news_list li {
		align-items: baseline;
	}

	.top_news_list .date {
		width: 14vw;
	}

	.top_news_list .category {
		width: 17vw;
	}

	.top_news_list .article {
		width: 47vw;
	}

}

@media (max-width: 820px) {

	.tab-buttons {
		grid-template-columns: repeat(3, 1fr);
	}

	.top_news_list .date {
		width: 25vw;
	}

	.top_news_list .category {
		width: 30vw;
	}

	.top_news_list .article {
		width: 45vw;
	}

}

@media (max-width: 559px) {

	.tab-buttons {
		/* grid-template-columns: repeat(2, 1fr); */
		gap: unset;
		grid-template-columns: unset;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}

	.tab-button {
		width: 49%;
		height: 3rem;
		font-size: 3vw;
		min-width: auto;
		flex: unset;
		margin-bottom: 0.7rem;
	}

	.tab-button:first-child {
		width: 100%;
	}

	.tab-content {
		padding: 0 0 2rem;
	}

	.top_news_list li {
		flex-wrap: wrap;
		padding: 1rem 0;
	}

	.top_news_list .date {
		min-width: 12rem;
		font-size: 1.4rem;
	}

	.top_news_list .date {
		width: 25vw;
	}

	.top_news_list .category {
		min-width: 16rem;
		font-size: 1.3rem;
	}

	.top_news_list .article {
		width: 100%;
		font-size: 1.4rem;
		margin-top: 0.5rem;
		/*1行の省略表示*/
		overflow: hidden;          /* 溢れた部分を隠す */
		text-overflow: ellipsis;   /* 溢れた部分を「...」にする */
		white-space: nowrap;       /* 1行で表示 */
	}

}

/*---*/

.top_office{
	
}

.top_office .top_office_list{
	display: flex;
	flex-wrap: wrap;
	gap: 8%;
	/* justify-content: space-between; */
}

.top_office .top_office_list li{
	/* width: 28%; */
	flex: 0 0 calc((100% - 220px) / 3); /* gapを引いた幅で3等分 */
	margin-bottom: 8rem;
}

.top_office .top_office_list li .name{
	color: #14808F;
	border: 0.1rem solid #14808F;
	text-align: center;
	border-radius: 4rem;
	margin-bottom: 1rem;
	font-weight: 700;

	font-size: 1.6rem;
    line-height: 2;
}

.top_office .top_office_list li .image{
	margin-bottom: 1rem;

    aspect-ratio: 32 / 21;
    overflow: hidden;
    border-radius: 1rem;
    outline: none;
}

.top_office .top_office_list li .image img:focus,
.top_office .top_office_list li .image a:focus {
  outline: none;
}

/* a自体のoutlineは使わない */
.top_office .top_office_list li .image a:focus-visible {
  outline: none;
}

/* キーボード操作時のみ表示 */
body.using-keyboard .top_office .top_office_list li .image:focus-within {
  outline: 3px solid #3C3C3C;
  outline-offset: 2px;
}

.top_office .top_office_list li .image img{
	border-radius: 1rem;
}

.top_office .top_office_list li .date{
	
}

.top_office .top_office_list li .date dl{
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
	margin-bottom: 3rem;
}

.top_office .top_office_list li:nth-child(5) .date dl{
	margin-bottom: 1rem;
}

.top_office .top_office_list li .date dl dt{
	/*width: 10%;*/
	width: auto;
    margin-right: 3%;
	font-size: 1.4rem;
	color: #14808F;
}

.top_office .top_office_list li .date dl dt.address{
	/*width: 10%;*/
	width: auto;
    margin-right: 3%;
}

.top_office .top_office_list li .date dl dd{
	width: 38%;
	margin-bottom: 0;
}

.top_office .top_office_list li .date dl dd.address{
	/*width: 90%;*/
	width: 85%;
	line-height: 1.5;
}

.top_office .top_office_list li .date dl dd.tel{
	font-family: "Akshar", sans-serif;
	font-size: 2.5rem;
	margin-right: 3%;
	white-space: nowrap;
}

.top_office .top_office_list li .date dl dd.fax{
	font-family: "Akshar", sans-serif;
	font-size: 2.5rem;
	white-space: nowrap;
}

@media (max-width: 1440px) {

	.top_office .top_office_list {
	    gap: 3%;
	}

	.top_office .top_office_list li {
	    width: 31%;
	    flex: unset;
	}

}

@media (max-width: 1300px) {

	.top_office .top_office_list li .date dl dd.tel{
		font-size: 1.8vw;
	}

	.top_office .top_office_list li .date dl dd.fax{
		font-size: 1.8vw;
	}

}


@media (max-width: 1180px) {

	.top_office .top_office_list {
		display: flex;
		flex-wrap: wrap;
		gap: unset;
	}

	.top_office .top_office_list li {
		width: 31%;
		margin-right: 3.5%;
		flex: unset;
	}

	.top_office .top_office_list li:nth-child(3n) {
		margin-right: 0;
	}

	.top_office .top_office_list li .name {
		font-size: 1.35vw;
	}

	.top_office .top_office_list li:nth-child(5) .date dl{
		margin-bottom: 1.3rem;
	}

	.top_office .top_office_list li .date dl dt.address {
		/*width: 12%;*/
		width: auto;
	}

	.top_office .top_office_list li .date dl dd.address {
		width: 88%;
		font-size: 1.3vw;
	}

	.top_office .top_office_list li .date dl dt {
		/*width: 12%;*/
		width: auto;
	}

	.top_office .top_office_list li .date dl dd {
		width: 36%;
	}

	.top_office .top_office_list li .date dl dd.tel {
		font-size: 1.8vw;
	}

	.top_office .top_office_list li .date dl dd.fax {
		font-size: 1.8vw;
	}

}

@media (max-width: 1024px) {

	.top_office .top_office_list li .date dl dd.tel {
		width: 34%;
	}

	.top_office .top_office_list li .date dl dd {
		width: 34%;
	}

}

@media (max-width: 820px) {

	.top_office .top_office_list li {
		width: 48%;
		margin-right: 4%;
		margin-bottom: 6rem;
	}

	.top_office .top_office_list li:nth-child(3n) {
		margin-right: 4%;
	}

	.top_office .top_office_list li:nth-child(2n) {
		margin-right: 0;
	}

	.top_office .top_office_list li .name {
		font-size: 2.0vw;
	}

	.top_office .top_office_list li .date dl dd.address {
		font-size: 1.8vw;
	}

	.top_office .top_office_list li .date dl dd.tel {
		font-size: 2.7vw;
		width: 40%;
	}

	.top_office .top_office_list li .date dl dd.fax {
		font-size: 2.7vw;
	}

	.top_office .top_office_list li .date dl dt.fax {
		/*width: 9%;*/
	}

}

@media (max-width: 767px) {

	.top_office .top_office_list li .date dl dd.tel {
		width: auto;
        margin-right: 5%;
	}

	.top_office .top_office_list li .date dl dd {
		width: auto;
	}

}

@media (max-width: 559px) {

	.top_office .top_office_list li {
		width: 100%;
		margin-right: 0%;
		margin-bottom: 6rem;
	}

	.top_office .top_office_list li:nth-child(3n) {
		margin-right: 0%;
	}

	.top_office .top_office_list li .name {
		font-size: 4.0vw;
	}

	.top_office .top_office_list li .date dl {
		margin-bottom: 1rem;
	}

	.top_office .top_office_list li:nth-child(5) .date dl{
		margin-bottom: 1.0rem;
	}

	.top_office .top_office_list li .date dl dd.address {
		font-size: 3.6vw;
	}

	.top_office .top_office_list li .date dl dd.tel {
		font-size: 5.5vw;
		/*width: 41%;*/
	}

	.top_office .top_office_list li .date dl dt.fax {
		/*width: 9%;*/
	}

	.top_office .top_office_list li .date dl dd.fax {
		font-size: 5.5vw;
	}

}

@media (max-width: 375px) {

	.top_office .top_office_list li .date dl dd.tel {
		font-size: 5.4vw;
	}

	.top_office .top_office_list li .date dl dd.fax {
		font-size: 5.4vw;
	}

}

/*---*/

.top_gallery{
	position: relative;
	padding-top: 12vw;
	background-image: url(../img/gallery/gallery-bg.jpg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-color: #EFFBDD;
	background-position: top -4vw left;
	padding-bottom: 10rem;
}

.top_gallery .image.butterfly{
	max-width: 7vw;
	position: absolute;
	top: -2rem;
	left: 12vw;
}

.top_gallery .image.leaf{
	max-width: 18vw;
	position: absolute;
	top: -5rem;
	right: 12vw;
}

.top_gallery .top_gallery_list{
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	list-style: none;
	padding: 0;
	margin: 0;
}

.top_gallery .top_gallery_list li{
	flex: 0 0 calc((91% - 40px) / 5);
	margin-bottom: 1rem;
}

.top_gallery .top_gallery_list li .image{
	margin-bottom: 1rem;
	overflow: hidden;
	aspect-ratio: 500 / 323;
	border-radius: 1rem;
}

.top_gallery .image img:focus,
.top_gallery .image a:focus {
  outline: none;
}

/* a自体のoutlineは使わない */
.top_gallery .image a:focus-visible {
  outline: none;
}

/* 親要素にフォーカス表示 */
/* 通常（マウス操作）では表示しない */
.top_gallery .image {
  outline: none;
}

/* キーボード操作時のみ表示 */
body.using-keyboard .top_gallery .image:focus-within {
  outline: 3px solid #3C3C3C;
  outline-offset: 2px;
}

.top_gallery .top_gallery_list li .image img{
	border-radius: 1rem;
}

.top_gallery .top_gallery_list li .name{
	background: #14808F;
	font-size: 1.4rem;
	color: #fff;
	border-radius: 0.5rem;
	text-align: center;
	margin-bottom: 0.5rem;
}

.top_gallery .top_gallery_list li .date{

}

.top_gallery .top_gallery_list li .date dl{
	font-size: 1.4rem;
	display: flex;
}

.top_gallery .top_gallery_list li .date dl dt{
	width: 20%;
	color: #0B5660;
}

.top_gallery .top_gallery_list li .date dl dd{
	width: 80%;
}

@media (max-width: 1440px) {

	.top_gallery .top_gallery_list li{
		flex: 0 0 calc((89% - 40px) / 5);
		margin-bottom: 1rem;
	}

}

@media (max-width: 1180px) {

	.top_gallery .h2_text{
		width: 70%;
		text-align: left;
		margin-left: auto;
		margin-right: auto;
	}

	.top_gallery .h2_text .pc{
		display: none;
	}

	.top_gallery .top_gallery_list {
		gap: unset;
	}

	.top_gallery .top_gallery_list li {
		flex: unset;
		width: 18%;
		margin-right: 2.5%;
		margin-bottom: 2rem;
	}

	.top_gallery .top_gallery_list li:nth-child(5n) {
		margin-right: 0%;
	}

	.top_gallery .top_gallery_list li .date dl dt{
		width: 25%;
	}

	.top_gallery .top_gallery_list li .date dl dd{
		width: 75%;
	}

}

@media (max-width: 820px) {

	.top_gallery .h2_text{
		width: 100%;
	}


	.top_gallery .top_gallery_list li {
		width: 22%;
		margin-right: 4%;
	}

	.top_gallery .top_gallery_list li:nth-child(5n) {
		margin-right: 4%;
	}

	.top_gallery .top_gallery_list li:nth-child(4n) {
		margin-right: 0;
	}

}

@media (max-width: 559px) {

	.top_gallery {
		padding-top: 24vw;
	}

	.top_gallery .image.leaf {
		max-width: 29vw;
		top: -3rem;
		right: 12vw;
	}

	.top_gallery .image.butterfly {
		max-width: 17vw;
		top: -4rem;
		left: 22vw;
	}

	.top_gallery .top_gallery_list li {
		width: 48%;
		margin-right: 4%;
	}

	.top_gallery .top_gallery_list li:nth-child(5n) {
		margin-right: 4%;
	}

	.top_gallery .top_gallery_list li:nth-child(2n) {
		margin-right: 0%;
	}

}

/*----------*/

.top_recruit{
	
}

.top_recruit .top_recruit_contents{
	display: flex;
	justify-content: end;
	background: url(../img/image-bg-02.png);
	background-repeat: no-repeat;
	background-position: right 72vw top 13vw;
	background-size: 20%;
}

.top_recruit .top_recruit_contents .image{
	max-width: 47vw;
	margin-left: 7vw;
}

.top_recruit .top_recruit_contents .image img{
	border-radius: 3rem 0 0 3rem;
}

.top_recruit .top_recruit_contents .text{
	max-width: 31vw;
}

.top_recruit .top_recruit_contents .text p{
	margin-bottom: 4rem;
}

@media (max-width: 1180px) {

	.top_recruit .top_recruit_contents {
		background-position: right 69vw top 19vw;
		background-size: 20%;
		padding-bottom: 7vw;
	}

	.top_recruit .top_recruit_contents .text {
		max-width: 40vw;
	}

}

@media (max-width: 820px) {

	.top_recruit .top_recruit_contents {
		background-position: right 15vw top 21vw;
		background-size: 20%;
	}

	.top_recruit .top_recruit_contents .image{
		max-width: 40vw;
	}

	.top_recruit .top_recruit_contents .text{
		max-width: 46vw;
	}

}

@media (max-width: 559px) {

	.top_recruit .top_recruit_contents {
		background-position: right 8vw top 65vw;
		background-size: 85%;
		padding-bottom: 0;
		flex-wrap: wrap;
		flex-direction: column-reverse;
	}

	.top_recruit .top_recruit_contents .image {
		max-width: 100%;
		margin-left: 0;
		margin-bottom: 3rem;
    }

	.top_recruit .top_recruit_contents .image img{
		border-radius: 0;
	}

	.top_recruit .top_recruit_contents .text {
		max-width: 100%;
		padding-left: 3rem;
		padding-right: 3rem;
	}

}

/*----------*/

.footer_contact{
	margin-bottom: -20rem;
	z-index: 1;
	position: relative;
}

.footer_contact article{
	
}

.footer_contact article .inside{
	border: 0.2rem solid #14808F;
	border-radius: 3rem;
	padding: 5rem;
	background: #fff;
	z-index: 0;
	position: relative;
}

.footer_contact article .footer_contact_contents{

}

.footer_contact article .footer_contact_contents ul{
	display: flex;
	justify-content: space-between;
}

.footer_contact article .footer_contact_contents ul li{
	background: #F0F0F0;
	width: 32%;
	height: 10rem;
	border-radius: 1rem;
	border: 0.2rem solid #E8E8E8;
}

.footer_contact article .footer_contact_contents ul li:last-child{
	background: #D1414D;
	width: 31.5%;
	border-radius: 1rem;
	border: none;
}

.footer_contact article .footer_contact_contents ul li a{
	padding: 1rem 1rem;
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	border-radius: 1rem;
}

.footer_contact article .footer_contact_contents ul li:last-child a{
	color: #fff;
}

.footer_contact article .footer_contact_contents ul li > div{
	padding: 1rem 1rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
}

.footer_contact article .footer_contact_contents ul li .text{
	font-weight: 700;
	text-align: center;
	width: 100%;
}

.footer_contact article .footer_contact_contents ul li .flex_line{
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer_contact article .footer_contact_contents ul li .flex_line .icon{
	margin-top: -0.5rem;
	margin-right: 0.5rem;
}

.footer_contact article .footer_contact_contents ul li .flex_line .icon.phone{
	max-width: 2.3rem;
}

.footer_contact article .footer_contact_contents ul li .flex_line .icon.fax{
	max-width: 2.6rem;
	min-width: 2.6rem;
}

.footer_contact article .footer_contact_contents ul li .flex_line .icon.mail{
	max-width: 3.2rem;
}

.footer_contact article .footer_contact_contents ul li .flex_line .number{
	font-family: "Akshar", sans-serif;
	font-size: 3.0rem;
	font-weight: bold;
	margin-right: 1rem;
	line-height: 1;
	white-space: nowrap;
}

.footer_contact article .footer_contact_contents ul li .flex_line .hours{
	font-size: 1.2rem;
	line-height: 1.6;
}

.footer_contact article .footer_contact_contents ul li:nth-child(2) .flex_line .hours{
	min-width: 15rem;
}

.footer_contact article .footer_contact_contents ul li .flex_line .mail_text{
	display: flex;
	align-items: center;
	line-height: 1;
}

.footer_contact article .footer_contact_contents ul li .flex_line .mail_text::after{
	content: url(../img/next.png);
	display: inline-block;
	transform: scale(0.5);
	margin-top: 0.5rem;
	margin-right: -1.0rem;
}

/*@media (max-width: 1180px) {*/
@media (max-width: 1440px) {

	.footer_contact article .inside{
		padding: 5rem 4rem;
	}

	.footer_contact article .footer_contact_contents ul {
		flex-wrap: wrap;
		justify-content: space-evenly;
	}

	.footer_contact article .footer_contact_contents ul li {
		width: 48%;
		margin-bottom: 2rem;
	}

	.footer_contact article .footer_contact_contents ul li:last-child {
		width: 50%;
		margin-bottom: 0;
	}

}

@media (max-width: 1000px) {

	.footer_contact article .footer_contact_contents ul li {
		width: 70%;
		margin-bottom: 2rem;
	}

	.footer_contact article .footer_contact_contents ul li:last-child {
		width: 70%;
		margin-bottom: 0;
	}

}

@media (max-width: 767px) {

	.footer_contact article .footer_contact_contents ul li {
		width: 100%;
	}

	.footer_contact article .footer_contact_contents ul li:last-child {
		width: 100%;
		margin-bottom: 0;
	}

}

@media (max-width: 559px) {

	.footer_contact{
		margin-bottom: -6rem;
		z-index: 1;
		position: relative;
	}

	.footer_contact article .inside {
		padding: 3rem 2rem;
	}

	.footer_contact article .footer_contact_contents ul li {
		width: 100%;
		margin-bottom: 1.5rem;
	}

	.footer_contact article .footer_contact_contents ul li:first-child {
		background: #D1414D;
		border: none;
	}

	.footer_contact article .footer_contact_contents ul li:first-child a {
		color: #fff;
	}

	.footer_contact article .footer_contact_contents ul li:first-child a .icon.phone img{
		
	}

	.footer_contact article .footer_contact_contents ul li:nth-child(2) {
        display: flex;
        align-items: center;
	}

	.footer_contact article .footer_contact_contents ul li:nth-child(2) .flex_line .hours {
        margin-top: 0.5rem;
	}

	.footer_contact article .footer_contact_contents ul li:last-child {
		width: 100%;
		margin-bottom: 0;
	}

	.footer_contact article .footer_contact_contents ul li:last-child a{
		padding: 1.5rem 1rem;
	}

	.footer_contact article .footer_contact_contents ul li .flex_line .mail_text::after{
		margin-top: 0.0rem;
	}

	.footer_contact article .footer_contact_contents ul li a {
		padding: 0.5rem 1rem;
	}

	.footer_contact article .footer_contact_contents ul li > div {
		padding: 0.5rem 1rem;
	}

	.footer_contact article .footer_contact_contents ul li .flex_line {
		flex-wrap: wrap;
	}

}

@media (max-width: 420px) {

	.footer_contact article .footer_contact_contents ul li .flex_line .number {
		font-size: 7vw;
	}

	.footer_contact article .footer_contact_contents ul li .flex_line .hours {
		font-size: 2.9vw;
	}

	.footer_contact article .footer_contact_contents ul li .text {
		font-size: 4.0vw;
	}

	.footer_contact article .footer_contact_contents ul li .flex_line .mail_text{
		font-size: 4.0vw;
	}

}


