/* リセット */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');


.noto-sans-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}



html{
/* 1rem = 15pxと再定義 */
font-size: 15px;
}


/* フォント設定 */


/* グローバル変数 */
:root {
	--main_color: #004b32;
	--sub_color: #267b3a;
	--white_bg: #F5F5F5;
	--swhite:#ffffff;
	--sub_bg: #FAF9F5;
	--glay_bg:#3D3D3D;
	--accent-color: #b7282e;
	--main_text:#00331c;
	--white_text:#EFEFEF;
	--black_text:#222222;
	--sub_text:#007b43;
}



/* ベーススタイル */
body {
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  line-height: 1.6;
  color: var(--main_color);
  background-color: var(--white_bg);
}

a{
	color: var(--accent-color);
	font-weight: 600;	
	text-decoration: none;

}

h1{
  font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
  font-weight:800;
}

.link_text_button{
	display: block;
	margin:1rem auto;
	width:70%;
	border:solid 1px var(--main_color);
	background-color: var(--main_color);
	color:var(--swhite);
	font-size: 1.1rem;
	font-weight: 600;
	padding:0.2rem;
	text-decoration: none; /* リンクの下線を消す */
	border-radius: 5px;

}
.attention{
	color:var(--accent-color);
	font-weight:bold;
}


.link_text_button:hover {
	background-color: var(--accent-color); /* ホバー時に背景色を変更 */
	border-color: var(--accent_color);
	color: white; /* ホバー時に文字色を白に */
	}


.pc { display: block !important; }
.sp { display: none !important; }

/*--------------------ヘッダー部------------------------------*/

.header_outflame{
	background-color:var(--swhite);
	display:flex;
	flex-direction:row;
	width:100%;


}
.header_left{
	display:flex;
	flex-direction: column;
	width:50%
}

.header_right{
	display: flex;
	flex-direction: column;
	width:50%;
	justify-content:flex-start;
}
/*--------------------左 ヘッダー部------------------------------*/
.license_text{
	padding:0.5rem;

}
.contact-outflame{
	justify-content:flex-end;
	
	height:auto;
}

.logo-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.logo {
  background-repeat: no-repeat;
  width:360px;
  height:100px;
}


/*--------------------右 ヘッダー部------------------------------*/
.contact-block{
  display:flex;
  flex-flow: column;
  }


/*問い合わせボタン*/
.contact{
	z-index: 1200;
	margin-top: 0px;
	height:auto;
	display:flex;
	flex-direction: row;
	justify-content:flex-end;
}

.mail-contact a{
	width:auto;
	display: block; /* ボックス型にする */
	margin-right: 0.5rem;
	font-size: 1.0rem;
	font-weight: 600;
	color: var(--white_text);
	background-color: var(--accent-color);
	padding: 0.8rem;
	border:1px solid var(--accent-color);
	border-radius: 0px 0px 15px 15px; /* 下側のみ角を丸く */
	box-shadow: 0 0 8px gray;
	text-decoration: none; /* リンクの下線を消す */
	height:3.0em;
}

/*メールで問い合わせボタンhovar*/
.mail-contact a:hover{
	color: var(--accent-color);
	background-color:var(--swhite);
}


/*LINEで問い合わせボタン*/
.line-contact a{
	width:auto;
	display: block; /* ボックス型にする */
	margin-right: 0.5rem;
	font-size: 1.0rem;
	font-weight: 600;
	color: var(--white_text);
	background-color: #00B900;
	padding: 0.8rem;
	border: solid 1px #00B900;
	border-radius: 0px 0px 15px 15px; /* 下側のみ角を丸く */
	box-shadow: 0 0 8px gray;
	text-decoration: none; /* リンクの下線を消す */
	height:3rem;
}

/*LINEで問い合わせボタンhovar*/
.line-contact a:hover{
	color: #00B900;
	background-color:var(--swhite);
}



.tell-contact-outflame{
	display: flex;
	justify-content:flex-end;
	padding-top:1rem;
  
}
  
.tell-contact{
  display: flex;
  flex-flow: column;
  background-color: #f04b32;
  width:100%;

}
.tell-contact-text{
		padding-right:1.0rem;
	font-size:1.0rem;
	font-weight: 500;
	color:var(--main_text);
	text-align:right;
	margin-bottom:0rem;
	line-height:1.0rem;
}

.tell-contact-no{
	padding-right:1.0rem;
	text-align:right;
	margin-top:0.2rem;
	margin-bottom:0.0em;
	line-height: 1.6rem;
}

.tell-contact-no a{
	font-size:1.8rem;
	color:var(--accent-color);
	font-weight:600;		
	display: inline-block; /* ボックス型にする */
	text-decoration: none; /* リンクの下線を消す */
	transition: background-color 0.3s; /* ホバー時の滑らかな変化 */
}




.tell-contact-caption{
	padding-right:1.0rem;
	font-size:1.0rem;
	font-weight: 600;
	color:var(--main_text);
	text-align:right;
	line-height: 1.0rem;
}


/* ヘッダー */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color:white;
}

.header-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0rem;
  color: var(--main_color);
}



.header-bottom {
  background-color:  var(--main_color);
  font-size: 1.2rem;
  padding: 0.5rem 1rem;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* ヘッダー下段のナビゲーション */
.nav-menu ul {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  color: white;
  font-weight:bold;
  text-decoration: none;
  padding: 0.5rem 1.0rem; /* ボタンらしいパディング */
  border-radius: 5px; /* 角丸でボタン感 */
  transition: background-color 0.3s, color 0.3s; /* 背景色と文字色の両方をスムーズに */
}

.nav-menu a:hover {
  background-color: var(--accent-color); /* ホバー時に背景色を変更 */
  color: white; /* ホバー時に文字色を白に */
}

/* ハンバーガーメニュー */
.nav-toggle {
  display: none;
}

.hamburger {
	display: none;
	flex-direction: column;
	justify-content: space-around;
	background-color: var(--main_color);
	width: 2rem;
	height: 1.5rem;
	cursor: pointer;
}

.hamburger span {
  width: 100%;
  height: 0.25rem;
  background-color: var(--swhite);/*/var(--primary-color); /* ヘッダー底部の白背景に合わせる */
  border-radius: 2px;
  transition: all 0.3s;
}

.nav-toggle:checked ~ .hamburger span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle:checked ~ .hamburger span:nth-child(2) {
  opacity: 0;
}

.nav-toggle:checked ~ .hamburger span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* スライダー */
.slider {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;

}


.slides {
  display: flex;
  width:300%;
  transition: transform 0.5s ease-in-out;
}

.slide {
  flex: 0 0 100%;
  position: relative;
}

.slide img { 
  width: 100%;
  height: 600px;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}


/*おしらせ*/
.news{
	padding:1rem;

}

.news_contents{
	background-color:#ffffff;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.195);
	max-width:1200px;
	width:100%;
	margin: 1rem auto;
	gap: 2rem;
	border-radius: 5px;
	/*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);*/
	padding:1.0rem;
	color:var(--main_text);
	text-align:left;
}
.news_contents table{
	display:inline-block;
	width:100%;
	border-collapse:  collapse;    
	margin:0px auto;
	text-align: left;
}


.news_contents th{
	border-bottom: dotted 1px   var(--sub_color);/*下線*/
	color: var(--accent-color);
	width:80px;
	vertical-align:top;
}

.news_contents td{
	border-bottom: dotted 1px   var(--sub_color);/*下線*/
	max-width:100%;
	width:1200px;
	text-align:left;
}

.news h1{
	font-family: "Noto Sans JP", "Yu Gothic", sans-serif;
	padding: 0.0rem 0;/*上下の余白*/
	border-bottom: solid 3px   var(--main_color);/*下線*/
	border-width:2px;
	font-size:1.5rem;
	margin-bottom:1rem;

}
.news h3{
	margin-left: 1rem;
	margin-top: 0.5rem;
	padding:0.2rem;
	font-size: 1.2rem;
	font-weight: normal;
	color:var(--accent-color);
	
}
.news_text{
	font-size:1.0rem;
	margin-left:1.0rem;
	color:var(--black_text);

}




/* メインコンテンツ */
.container {
  max-width: 1200px;
  margin: 0% auto;
  padding:0rem;
  background-color:(--white_bg);
}

.main-content {
  max-width: 1200px;
  width:100%;
  margin: 0rem auto;
  padding: 2rem;
  background-color: var(--swhite);
  border-radius: 5px;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.195);
}

.main-content-label{
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    align-items: center; /* 垂直方向の中央揃え */
    gap: 20px; /* 画像とh1の間隔 */
}

.main-content-label img {
    max-width: 100px; /* 画像サイズ（適宜調整） */
    height: auto;
}

.main-content-label h1 {
    font-size: 24px; /* h1のフォントサイズ（適宜調整） */
    text-align:left;
}


.chara-img{
	display: inline;
	padding-left:3rem;
}


.main-content h1 {
  font-size: 2.0rem;
  margin-bottom: 1rem;
    margin: 0rem auto;
}

.main-content p {
  font-size: 1.2rem;
  color: var(black_text);
}

/*コンテンツボックス*/
.container-boxes{
  display: flex;
  flex:3;
  flex-wrap: wrap;
  justify-content: space-around; /* ボックス間のスペースを均等にする */
  padding:1rem;	

  gap:1.5rem;
}

.box {
  	max-width: 320px; /* 各ボックスの幅を全体の30%に設定 */
  /* 他のスタイル（背景色、パディングなど）も必要に応じて追加 */
     min-width: 300px;
  	box-shadow: 0 0 8px gray;
	border:1px solid var(--sub_color);
	border-radius: 20px;
	background-color:var(--swhit);

	padding:0px;
	color:var(--black_text);
	text-align: center;
	
}
.box h2{
	font-size:2.5rem;
}

.box-image{
	
            width: 100%;
            height: auto;
            object-fit: cover; /* 画像をボックスにフィット（アスペクト比を保持しつつ収まるように） */
            display: flex; /* 余白防止 */
}


.container-boxes img{
	margin:0;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	object-fit: cover;


}


.container-boxes h2{
	font-family:"Noto Sans JP","Yu Gothic", sans-serif;
	font-size: 1.8rem;
	font-weight:600;
	color:var(--accent-color);
	margin:1rem;

}

.container-boxes p{
	padding:1rem;
	font-size: 1.1rem;
	font-weight: 500;
	text-align:justify;

}
/*---------------------------------- service -----------------------------------*/
.sevice_outflame {
	max-width:1200px;
	margin: 2rem auto;
}

.service_contents{
	background-color:var(--swhite);
	border:0px solid #222222;
	border-radius: 5px;
	padding:2rem;
	text-align: center;
		box-shadow: 0 10px 10px rgba(0, 0, 0, 0.195);

}


.blank_banar_image{
	display:none !important;
}
.service_box_outflame{
	display: flex;
	flex-direction: row;
	padding:1rem;
	border: #b7282e;
	border-radius: 20px;
	gap:2rem;
	width:100%;
			flex-wrap: wrap;
	}



.banar_image{
	width: 15%;
	flex:1;
	border:2px solid var(--main_color);
	border-radius: 10px;


}




/*---------------------------------- greeting -----------------------------------*/
.greeting{
	background-color:var(--swhite);
	max-width: 1200px;
	width:100%;
	margin: 2rem auto;
	gap: 2rem;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.195);
	border-radius: 5px;
	padding:2.5rem;
	color:var(--main_text);
	display:block;

}

.greeting_contents{
	margin:1rem;

}

.greeting h1{
	padding: 0.5em 0;/*上下の余白*/
	border-bottom: solid 3px   var(--sub_color);/*下線*/
	font-size:1.5rem;
	margin-bottom:1rem;
}

.greeting_image{
	text-align:center;
	max-width:100%;
	margin:0px auto;



}
.greeting_photo{
	margin:0 auto;
	box-shadow: 0 0 8px gray;
	max-width:80%;
}

.greeting p{
	font-size:1.1rem;
	font-weight: 500;
	width:100%;
	max-width:600px;
	margin: 1rem auto;
	text-align:justify;
}


.sidebar {
  flex: 1;
  padding: 1rem;
  background-color: var(--background-color);
  border-radius: 5px;
}

.sns-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.sns-link {
  display: block;
  padding: 0.5rem 1rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  text-align: center;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.sns-link:hover {
  background-color: var(--accent-color);
}

/* フッター */
footer {
  background-color: var(--glay_bg);
  color: var(--white_text);
  text-align: center;
  padding: 1rem;
  margin-top: 0px;
}

.footer-companyname {
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.footer-license {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.footer-tel{
	font-size:1.5rem;
	line-height:15px;
	margin:0.5rem;
}




address {
  font-style: normal;
  font-size: 1.2rem;
  line-height: 1.8;
}

address a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

address a:hover {
  color: var(--accent-color);
}

footer ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}

footer ul li a {
  color: white;
  text-decoration: none;
}

footer ul li a:hover {
  color: var(--accent-color);
}

/*---------------------------------- conpany.html -----------------------------------*/

.company_info_container {
	padding:1rem;
	background-color:var(--white_bg);
	color:var(--black_text);
	max-width:1200px;
	margin:0px auto;
}



.company_info_contents {
  margin-bottom: 1rem;
    width:100%;
	margin:0px auto;
}

.company_info_contents h1{
	font-size:1.5rem;
	font-weight:bold;
	margin-bottom:1rem;
	border-bottom: solid 3px   var(--sub_color);/*下線*/
}

.company_info_contents table{
  margin-bottom: 1rem;
  max-width:100%;
  width:100%;
  border:solid 1px var(--black_text);
  border-collapse:  collapse;    
  margin:0px auto;
}

.company_info_contents  th{
  width:25%;
  border:solid 1px var(--black_text);
  text-align:left;
  padding: 5px;     
}

.company_info_contents  td{
  width:80%;
  text-align:left;
  border-bottom:solid 1px var(--black_text);
  padding: 5px;  
}

.company_map {
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
    margin:0px auto;
}
.gmap{
    aspect-ratio: 16 / 9;
    max-width: 1000px;
    width: 100%;
    height: auto;
	object-fit: cover; /* 画像をボックスにフィット（アスペクト比を保持しつつ収まるように） */

}

/*---------------------------------- Contact.html -----------------------------------*/
.contact_form_container {
	padding:1rem;
	background-color: var(--white_bg);
	color:var(--black_text);
	max-width:1200px;
	margin:0px auto;
}

.contact_form_contents {
	margin-top:1rem;
	border: solid 1px var(--sub_color);
	border-radius: 20px;
	padding:1rem;
	background-color: var(--swhite);
	color:var(--black_text);
	max-width:80%;
	margin:0px auto;
}


.contact_form_title h1{
	font-size:1.5rem;
	font-weight:bold;
	margin:1rem;
	border-bottom: solid 3px   var(--sub_color);/*下線*/
	font-size:1.5rem;
}

.contact_form_title p{
	font-size:1.0rem;
	font-weight:bold;
	margin:1rem;

}

.contact_form {
	font-size:1.0rem;
	padding:2rem;
}

.contact_form a {
	text-decoration:none;
 	color: var(--accent-color);
	font-size:1.0rem;
}

.contact_form label{
	color: var(--black_text);
	font-size:1.1rem;
	font-weight:bold;
}


.input_text{
	color: var(--black_text);
	font-size:1.1rem;
	margin-left:1rem;
}

.contact_form textarea{
	color: var(--black_text);
 	font-size:1.0rem;
 	max-width:700px;
	width:70%;
	height:120px;

}

.submitter {
	width:10rem;
	height:3rem;
}

/*---------------------------------- company.html -----------------------------------*/
.company_info {
	margin:2rem;
}

.company_info_contents {
	margin-top:2rem;
	padding:2rem;
	max-width:1200px;
	color:#00331c;
	background-color: var(--swhite);
	margin:0px auto;
	border: solid 0px #00331c;
	border-radius: 20px;
	font-weight: 500;
}

.company_info_contents h1{
	font-size:1.4rem;
}


.company_info_contents h2{
	font-size:1.0rem;
	font-weight:600;
}

.company_info_text {
	margin-left:2rem;
}

/*---------------------------------- プライバシーポリシー -----------------------------------*/
.privacy {
	margin:2rem;
}

.privacy_text {
	margin-top:2rem;
	padding:2rem;
	max-width:1200px;
	color:#00331c;
	background-color:#ffffff;
	margin:0px auto;
	border: solid 1px #00331c;
	border-radius: 20px;
	font-weight: 500;
}
.privacy_text h1{
	font-size:1.4rem;
	font-weight: 800;
}

.privacy_text h2{
	font-size:1.2rem;
}
.privacy_text h3{
	font-size:1.1rem;
}
.privacy_text p{
	font-size:1.0rem;
	margin:0.5em;
}

.privacy_text ul{
	padding-left:2rem;
}

/*---------------------------------- 利用規約-----------------------------------*/
.terms {
	margin:2rem;
}

.terms_text {
	margin-top:2rem;
	font-weight: 500;
	padding:2rem;
	max-width:1200px;
	color:#00331c;
	background-color:#ffffff;
	margin:0px auto;
	border: solid 1px #00331c;
	border-radius: 20px;
}


.terms_text h2{
	font-size:1.2rem;
	font-weight: 800;
}
.terms_text h3{
	font-size:1.1rem;
}
.terms_text p{
	font-size:1.0rem;
	margin:0.5em;
}

.terms_text ul{
	padding-left:2rem;
}

/*---------------------------------- レスポンシブデザイン -----------------------------------*/
@media (max-width: 768px) {

    .pc { display: none !important; }
    .sp { display: block !important;}

.header_left{

	height:auto;
}

.header_right{

	height:auto;
}


/*LINEで問い合わせボタン*/
.line-contact a{
	display: inline-block; /* ボックス型にする */
	margin-right: 0.5rem;
	font-size: clamp(6px, 4vw, 8px); /* 例 */
	font-weight: bold;
	height:2.8rem;
	color:#EFEFEF;
	background-color:#00B900;
	padding:0.6rem 0.6rem 0.6rem 0.6rem;
	border: solid 0px;
	border-radius: 0px 0px 5px 5px;
	box-shadow: 0 0 3px gray;
	text-decoration: none; /* リンクの下線を消す */
	transition: background-color 0.3s; /* ホバー時の滑らかな変化 */
	white-space: nowrap;
}




/*メールで問い合わせボタン*/
.mail-contact a{

    display: inline-block; /* ボックス型にする */
	margin-right: 0.5rem;
	font-size: clamp(6px, 4vw, 8px); /* 例 */
	font-weight: bold;
	height:2.8rem;
	color:#EFEFEF;
	background-color:var(--accent-color);
	padding:0.6rem 0.6rem 0.6rem 0.6rem;
	border: solid 0px;
	border-radius: 0px 0px 5px 5px;
	box-shadow: 0 0 3px gray;
	text-decoration: none; /* リンクの下線を消す */
	transition: background-color 0.3s; /* ホバー時の滑らかな変化 */
	white-space: nowrap;
}



.tell-contact-text{
	font-size:0.8rem;
	color:var(--main_text);
	text-align:right;	
	margin-bottom:0rem;
		margin-right: 0.5rem;
	line-height:1.2rem;
	white-space: nowrap;
}

.tell-contact-no{
		margin-right: 0.5rem;
}
.tell-contact-no a{
	font-size:1.4rem;
	font-weight:bold;
	color:var(--accent-color);
	text-decoration: non;
	text-align:right;
	margin-top:0.2rem;
	margin-bottom:0.2rem;
	line-height:1.4rem;
	white-space: nowrap;

}


.tell-contact-caption{
	padding-right:1.0rem;
	font-size:1.0rem;
	color:var(--main_text);
	line-height:1.2rem;
	text-align:right;	
	margin-right: 0.5rem;
	white-space: nowrap;

}
.license_text{
	font-size: clamp(6px, 4vw, 8px); /* 例 */
	white-space: nowrap;
}

.logo_outflame{
	width: 100%;

}
.logo_outflame img{
	width:100%;
	height:100%;
object-fit: contain;
}

.license{
  font-size: 0.8rem;
  padding-left:0.2rem;
  margin-left:0.2rem;
  vertical-align: top;
	 }


html{
/* 1rem = 50pxと再定義 */
font-size: 10px;
}
  .nav-menu {
    display: none;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--main_color);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-toggle:checked ~ .nav-menu {
    display: block;
  }

  .nav-menu ul {
    flex-direction: column;
    padding: 0.3rem;
    gap: 0.5rem;
  }

  .nav-menu ul li {
    margin: 0.5rem 0;
    border-bottom:solid 1px #ffffff;
  }

  .nav-menu a {
    display: block; /* リンクをブロック要素にして全幅に */
    padding: 0.75rem 1rem; /* モバイルで少し大きめに */
    border-radius: 5px;
    text-align: center; /* 中央揃えでボタン感を強調 */
  }

  .nav-menu a:hover {
    background-color: var(--accent-color);
    color: white;
  }

  .hamburger {
    display: flex;
  }


  .slide img {
  height:auto;;
  object-fit: contain;
  }

	.news h3{
	font-size:1.0rem;
	
	}
	.news_text{
	font-size:1.0rem;
	
	}
	

  .container {
    flex-direction: column;
    width:100%;
  }

  .container-boxes{
	margin:1rem;
    display: flex;
	flex-direction: column;
	text-align: center;
  }
  .container-boxes div {
  	width: 80%; /* 各ボックスの幅を全体の30%に設定 */
  	max-width:330px;
	margin: 0rem auto;
  	/* 他のスタイル（背景色、パディングなど）も必要に応じて追加 */
    flex-shrink: 0.5;
  	box-shadow: 0 0 8px gray;
	border:1px solid #007A6E;
	border-radius: 20px;
	background-color:#fefefe;
	margin-bottom:1rem;
	color:#3B2B21;
	text-align: center;
	
}
  .service_box_outflame{
	
		padding:1rem;
		border: #b7282e;
		border-radius: 20px;
		gap:1rem;
		width:100%;
		flex-wrap: wrap;
		justify-content:center;
	}

	.banar_image{
	width: calc(35% - 10px);
	max-width:140px;


	}
	.blank_banar_image{
	width: calc(35% - 10px);
	height:auto;
		max-width:130px;

	}

	.footer-companyname {
	font-size: 1rem;
	}

	.footer-license {
	font-size: 0.85rem;
	}

	address {
	font-size: 0.8rem;
	}
	}

@media (max-width: 413px) {
	.license_text{
		font-size: 0.6rem;

	}



}