	@charset "utf-8";

/* ----------------------------------------------
共有
---------------------------------------------- */

html{
}

body {

	font-family: "Noto Sans JP", "メイリオ","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3",Meiryo,"ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif,Helvetica, Helvetica Neue, Arial, Verdana;
/*  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;*/
  /*'Zen Maru Gothic',*/
	background:#ffffff;
	color:#000000;
/*	color:#4a4a4a;*/
	width: 100%;
	letter-spacing: 0.05em;
	box-sizing: border-box;
	font-size: 90%;
}

body{
	line-height:2em;
	overflow-x: hidden;
}

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

img{
	width: 100%;
	height: auto;
}

h2{

}

a{
	text-decoration: none;
	color: #313334;
	cursor:pointer;
	display: block;
}

a:hover{
	text-decoration: none;
color: #55c0ee;
}

div{

}

.center_img{
	text-align: center;
}

.center_img img{
	display: inline-block;
	width: 100%;
}

.clearfix::after {
	content: "";
	display: block;
	clear: both;
}

.font_m{
	font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.w_1000{
max-width: 1000px;
margin: 0 auto;
}

.pa_40{
	padding: 0 40px;
}

.color_p{
	color: #eb6da5;
}

.c_red{
	color: #e60012;
}

.c_orange{
	color: #e85d08;
}

.pc_none{
	display: none;
}

.sp_none{
	display: initial;
}

.be_1100{
	display: none;
}

.aligncenter{
	text-align: center;
}

/* --------------
共有 @media screen
----------------- */

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

.center_img img {
	width: 100%;
	height: auto;
}

.w_1000{

}

.pad_sp40{
	padding-right: 40px;
	padding-left: 40px;
}

.pc_none{
	display: initial;
}

.sp_none{
	display: none;
}

}


@media screen and (min-width: 1100px) {

.be_1100{
	display: initial;
}

}

/* ----------------------------------------------
ハンバーガーメニュー
---------------------------------------------- */

/*　ハンバーガーボタン　*/
.hamburger {
    display: block;
    position: fixed;
    z-index: 150;
    right: 13px;
    top: 12px;
    width: 100px;
    height: 100px;
    cursor: pointer;
    text-align: center;
    background-color: #10466f;
    border-radius: 21px;
}

.hamburger span {
  display : block;
  position: absolute;
  width   : 66px;
  height  : 12px ;
  left    : 17px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  border-radius: 100px;
}
.hamburger span:nth-child(1) {
  top: 24px;
}
.hamburger span:nth-child(2) {
  top: 45px;
}
.hamburger span:nth-child(3) {
  top: 66px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 45px;
	left: 15px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 45px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 120;
  top  : 0;
  left : 0;
  color: #fff;
/*  background: rgb(25 25 25 / 80%);*/
  text-align: center;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  display: none;
}

nav.globalMenuSp ul {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  display: none;
  line-height: 1.2em;
  border-bottom: dotted 1px #8e8e8e;
  padding-top: 1rem;
  padding-bottom: 1rem;
}
nav.globalMenuSp ul li:last-child {
/*  padding-bottom: 0;*/
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
  display: block;
  color: #313334;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
  height: 100%;
  overflow-y: scroll;

}

/* --------------
ハンバーガー @media screen
----------------- */

@media screen and (min-width: 800px) {


/*		.globalMenuSp{
			display:none;
		}*/
	}


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

	nav.globalMenuSp ul li {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}

/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 150;
  right : 13px;
  top   : 12px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  text-align: center;
  background: rgba(0,0,0,0.5);
/*  border-radius:100px;*/
/*  background-color: #000000;*/
}

.hamburger span {
  display : block;
  position: absolute;
	width: 46px;
	height: 10px;
	left: 7px;
  background : #ffffff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
  border-radius: 100px;
}
.hamburger span:nth-child(1) {
 top: 10px;
}
.hamburger span:nth-child(2) {
  top: 26px;
}
.hamburger span:nth-child(3) {
  top: 42px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
	top: 25px;
		left: 7px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
	top: 25px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

}

/* ----------------------------------------------
全体
---------------------------------------------- */

body{
/*	padding-top: 80px;*/
/*	background:url(../img/main-assets/line.png);*/
/*	background-repeat: repeat-x;*/
	background-color: #ffffff;
}

.wrapper{
	position: relative;
	box-sizing: border-box;
	max-width: 1366px;
	margin: 0 auto;
	padding-left: 40px;
	padding-right: 40px;
}

section{
/*	padding-left: 50px;
	padding-right: 50px;*/
}

header{
	position: relative;
}

.flex_box{
	display: flex;
}

.jc_sb{
	justify-content: space-between; 
}

.jc_sa{
	justify-content: space-around; 
}

.jc_sc{
	justify-content: center; 
}

.ai_fe{
	align-items:flex-end;
}

.po_re{
	position: relative;
}

.only_wrapper{
	width: 1366px;
}

.hidden_100{
	width: 100%;
	overflow: hidden;
}


/* --------------
全体 @media screen
----------------- */


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


.wrapper{
	box-sizing: border-box;
	max-width: initial;
	min-width: initial;
	padding: 0 1rem;
}

}

/* ----------------------------------------------
グローバルナビ
---------------------------------------------- */
#logo{
	position: relative;
	height: 162px;
}

#logo > div{
	position: absolute;
	top: 20px;
}

#logo > div img{
	width: 186px;
}


#logo h1 {
	position: absolute;
	top: 65px;
}

#logo h1 img{
	width: 346px;
}

nav{
	
}

nav ul:nth-of-type(1){
	display: inline-block;
	background-color: #ffffff
}

nav ul:nth-of-type(1) li{
	display: inline-block;
	font-weight: bold;
}

nav ul:nth-of-type(1) {
/*    border: 1px solid #85c023;
	border-radius: 4em;
	display: inline-block;
	background-color: #ffffff;*/
}

#gn{

}

#gn ul li{
	padding: 0.5em 2em 0 0;
}


#gn ul:nth-of-type(1) li:nth-of-type(1){
	padding-left: 0;
}

#gn ul:nth-of-type(1) li a{
	text-decoration: none;
	display: block;
}

#gn_sub{
	position: absolute;
	top: 12px;
	right: 118px;
	text-align: center;
}

#gn_sub ul li{
	width: 180px;
	height:47px;
	line-height: 47px;
}

#gn_sub ul li:nth-of-type(1){
	background-color: #cb1c1b;
	margin-bottom: 5px;
}

#gn_sub ul li:nth-of-type(2){
	background-color: #000000;
}

#gn_sub ul li a{
	color: #ffffff;
	text-decoration: none;
/*	font-weight: bold;*/
}



/* --------------
グローバルナビ @media screen
----------------- */

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

#logo {
	height: 66px;
}

#logo > div img {
	width: clamp(140px, 30%, 300px);
	margin-left: 5px;
	margin-bottom: 20px;
}

#logo h1{
	top: 60px;
	left: 10px;
}

#logo h1 img {
	width: clamp(200px, 35%, 400px);
}

#gn_sub{
	display: none;
}

}

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

#gn{
	display: none;
}


}


/* ----------------------------------------------
メインエリア
---------------------------------------------- */

#main_back{
	margin-top: 75px;
	background:url(../img/blue-b-assets/blue-b_logoback.png);
	background-repeat: no-repeat;
    background-size: 56%;
    background-position: 164% 82%;

/*	background-color: #ffff00;*/

}

#main_area_box{
	width: 100%;
	overflow: hidden;
	text-align: center;
}

#main_area img{
	width: 100%;
}


#main_area div:nth-of-type(2) img{
/*	width: 35%;
	margin-left: auto;
	margin-right: auto;*/
}

#main_area h2{
	font-size: 2rem;
	text-align: center;
	margin-top: 2em;
	letter-spacing: 0.2em;
}

#main_area h2 span{
	display: block;
	font-size: 0.6em;
	margin-top: 1.8em;
	line-height: 1.4em;
}

#main_area .flex_box div:nth-of-type(1){
	width: 80%;
/*	background-color: #cccc00;*/
}

#main_area .flex_box div:nth-of-type(2){
	width: 20%;
/*	background-color: #cc0000;*/
}

#main_area .flex_box div:nth-of-type(1) img{
	width: 95%;
}

#main_area .flex_box div:nth-of-type(2) img{
	width: 180%;
	
}


/*--メインイメージ--*/

#main_img{
	position: relative;
}

#main_img img{

}

#main_img img:nth-of-type(2){
	width: 45vw;
	top: -40px;
	right: 60px;
}

#main_img #main_copy1{
    position: absolute;
    top: 0vw;
    width: clamp(180px, 14vw, 1000px);
    left: 7vw;
}

#main_img #main_img_woman{
    position: absolute;
    top: 31vw;
    width: 17vw;
}

.use_img{
	height: clamp(120px, 14vw, 300px);
	background-image: url(../img/main_under-assets/main_under.png);
	background-repeat: repeat-x;
	background-size: contain;
	position: relative;
}

.use_img:after{
	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	bottom: -30px;
	height: 30px;
	width: 100%;
	z-index: 100;
}

#main_copy2{
	background-color: #7dcbe1;
	color: #ffffff;
	font-weight: bold;

/*	  display: flex;
  justify-content: center;
  align-items: center;*/

	text-align: center;
	border-radius: 50%;
	width: 20vw;
	height: 20vw;
	font-size: 2vw;
	line-height: 3vw;
	position: relative;

	margin-top: -5vw;
}

#main_copy2_in{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit- transform: translateY(-50%) translateX(-50%);
  width: 20vw;
}

#main_under_copy{
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 9rem;
	font-family: "メイリオ","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3",Meiryo,"ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif,Helvetica, Helvetica Neue, Arial, Verdana;
}

#main_under_copy span{
	font-weight: bold;
	font-size: clamp(26px, 4vw, 4rem);
	margin-bottom: 1.5rem;
	display: inline-block;
	position: relative;
}

#main_under_copy span img{
	height: 14rem;
}

#main_under_copy span img:nth-of-type(1){
	width: auto;
	position: absolute;
    left: -20rem;
    top: -4rem;
}

#main_under_copy span img:nth-of-type(2){
	width: auto;
	position: absolute;
    right: -20.5rem;;
    top: -3rem;
}

#kodera_g{
	margin-bottom: 65px;
}

#kodera_g img{
	width: clamp(300px, 35%, 450px);
	margin-left: auto;
	margin-right: auto;
}

/* --------------
メインイメージ @media screen
----------------- */


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

#main_area {
	margin-top: 0px;
}

#main_area h2 {
	font-size: 1.2rem;
}

#main_img {
/*    height: 68vw;
	margin-top: 0px;*/
}

#main_img img:nth-of-type(2) {
	width: 68vw;
	top: -50px;
	right: 5px;
}

#main_area .flex_box div:nth-of-type(1) {
	width: 100%;
}


#main_back {
	margin-top: clamp(80px, 20%, 400px);
	background: url(../img/kodera-assets/kodera_sq.png);
	background-repeat: no-repeat;
	background-size: 59%;
	background-position: 122% 60%;
	/* background-color: #ffff00; */
}

#main_img #main_copy1 {
    position: absolute;
    top: 6px;
    width: clamp(115px, 24vw, 1000px);
    left: 40px;
}

#main_copy2 {
	width: 30vw;
	height: 30vw;
	font-size: 3vw;
	line-height: 3.5vw;
	margin-top: -8vw;
}

#main_copy2_in {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    width: 30vw;
}

#main_img #main_img_woman {
    position: absolute;
    top: 70vw;
    width: 17vw;
}

}



/* --------------
メインイメージ @media screen 640
----------------- */


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


#main_under_copy span img {
    height: 10rem;
}

#main_under_copy span img:nth-of-type(1){
    left: -4rem;
    top: 3rem;
}

#main_under_copy span img:nth-of-type(2) {
    right: -3rem;
    top: 4rem;
}

}
/* ----------------------------------------------
NEWS_BOX
---------------------------------------------- */

#news{
	margin-top: 100px;
	margin-bottom: 100px;
}

#news_b{
	margin-top: 130px;
	padding-bottom: 60px;
}

#news_b img{
	width: 60%;
}

#news_box #news_c li{
  display: flex;
  padding:15px;
  border-bottom:1px solid #000;
}

#news_box #news_c .label{
  background-color:#f1abba;
  border-radius:100vh;
  color:#fff;
  padding:1px 25px;
  margin:0 20px;
  font-size: 0.7em;
  }

#news_box .text{
  
}

/* --------------
NEWS_BOX @media screen
----------------- */


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

#news_box {
  display: flex;
  margin-top: 40px;
  flex-direction: column;
}

#news_box #news_c{
  width: initial;
}

#news_box #news_b{
	width: initial;
	margin-top: 35px;
}

#news_box>div img {
	width: 40%;
	margin-top: 15px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 15px;
	display: block;
}

#news_b {
	margin-top: 0px;
	padding-bottom: 60px;
}

}


/* ----------------------------------------------
news 新規
---------------------------------------------- */

.news{
	width: 75%;
	margin: 0 auto 7vw auto;
	font-size: 0.8em;
}

.news a{
	color: #4a4a4a;;
}

.news img:nth-of-type(1) {
	max-width: 260px;
	margin: 0 auto 5vw auto;
	width: 50%;
	display: block;
}

.inner {
  width: 80%;
  background-color: #fff;
  margin: 0 auto;
  padding: 65px 0 100px;
}


.sub_ttl {
  font-size: 30px;
  text-align: center;
  margin-bottom: 40px;
}


.news_list {
  margin: 0 2%;
  width: 100%;
}

.news_list_item {
  padding: 1em 0;
  border-bottom: 1px dotted #E6E6E6;
  font-size: 0.8em;
}

.news_list_item:first-child {
  border-top: 1px dotted #E6E6E6;
}
.news_list_item a,.not_a {
 position: relative;
 display: flex;
 padding-right: 30px;

}

.news_list_item a{
text-decoration: underline;
}

.news_list_date {
  display: flex;
  margin-right: 15px;
  align-items: center;
}

.news_item{
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.nx_green{
	background: #86c024;
}

.nx_blue{
	background: #7dcbe0;
}

.nx_pink{
	background: #e4a6c9;
}

.nx_red{
	background: #cb1c1b;
}

.nx_orange{
	background: #e79014;
}



.news_item_news,.news_item {
  color: #ffffff;
  border-radius: 14px;
  width: 20em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_movie {
  background: #5ed0f5;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_grouphome,.news_item_to {
  background: #f1abba;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_communication,.news_item_ib {
  background: #eba300;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_blog {
  background: #67be18;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.news_item_etc {
  background: #f07171;
  color: #ffffff;
  border-radius: 14px;
  width: 14em;
  text-align: center;
  margin-left: 20px;
  font-size: 0.8em;
  line-height: 2.5em;
}

.arrow {
  width: 25px;
  height: 1px;
  background: #707070;
  position: absolute;
  top: 50%;
  right: 5%;
}

.arrow::after {
  content: "";
  display: block;
  width: 6px;
  height: 1px;
  background: #707070;
  transform: rotate(45deg);
  position: absolute;
  right: 0px;
  bottom: 2px;
}

.news_title{
	font-weight: bold;
	font-size: 1.2em;
}


/* --------------
news 新規 @media screen
----------------- */

@media screen and (max-width: 1024px) {
	.news_list_item a,.not_a {
		display: block;
	}
}

@media screen and (max-width: 769px) {
	.news_list_item a,.not_a  {
	}

	.arrow {
/*        display: none;*/
	}

.news_list {
	margin: 0 2%;
	width: initial;
}

}
@media screen and (max-width: 480px) {
	.arrow {
        display: none;
	}
	.news_list_item a,.not_a {
		padding-right: 0;
	}
}


/* ----------------------------------------------
about
---------------------------------------------- */

#about{
	position: relative;
	padding-top: initial;
}

#about .flex_box{
/*	flex-direction: row-reverse;*/
}

#about .wrapper h2{
	text-align: center;
	margin-top: clamp(20px, 4vw, 100px);
	padding-bottom: 60px;
	font-size: 1.6rem;
	letter-spacing: 0.3rem;
  font-weight: bold;
}

#about .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#about ul{
	margin-right: 2rem;

}

#about li{
	margin-bottom: 120px;
}

#about .flex_box > div:nth-of-type(1){
	width: 60%;
	padding: 2rem 2rem 0 2rem;
}

#about .flex_box > div:nth-of-type(1) div{
    position: relative;
    background-color: #7dcbe1;
    color: #ffffff;
    display: block;
    padding: 1em 0.5em;
    width: clamp(80%, 80%, 26em);
    text-align: center;
    margin: 4rem auto 0 auto;
    letter-spacing: 0.2em;
    border-radius: 100rem;
		font-weight: bold;
}

#about .flex_box > div:nth-of-type(1) div:before{
/*	position: absolute;
	content: "";
	bottom: -10px;
	right: -10px;
	height: 4rem;
	width: 25em;
	background-color: #dad8d8;
	z-index:-1;
	border-radius: 100rem;*/
}

#about .flex_box > div:nth-of-type(2){
	width: 40%;
}

#about h3 img{
	height: clamp(20px, 4vw, 58px)
}

#about .flex_box > div:nth-of-type(2) img{
	width: 80%;
}

#about h3{
	margin-bottom: 1rem;
}

#about p{
	margin-left: 1rem;
	
}

#about span,#schedule span{
/*	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: block;*/
}

#about span span,#schedule span span{
	color: #ea8ab6;
	display: inline-block;
}

/* --------------
#about @media screen 800
----------------- */

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


#about .wrapper h2 img {
	width: 100%;
}

#about .flex_box{
	flex-direction: column;
}

#about .flex_box > div:nth-of-type(1) {
	width: 100%;
}

#about h3{
	text-align: center;
}

#about h3 img {
	height: 7vw;
	display: inline-block;
}

#about li {
	margin-bottom: 55px;
}

#about .flex_box > div:nth-of-type(2) {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#about .flex_box > div:nth-of-type(2) img{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

#about .flex_box > div:nth-of-type(1) div{
    margin: 4rem auto 4rem auto;
}
}

/* --------------
#about  @media screen 600
----------------- */

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

#about .flex_box > div:nth-of-type(2) img{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#about .flex_box > div:nth-of-type(1) div {
    width: 100%;
    line-height: 1.3em
}

}

/* ----------------------------------------------
point1
---------------------------------------------- */

#point1{
	position: relative;
	margin-bottom: 100px;
}

#point_h{
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 9rem;
}

#point_h span{
	font-weight: bold;
	font-size: clamp(26px, 4vw, 4rem);
	margin-bottom: 3.5rem;
	display: inline-block;
	position: relative;
}

#point_h span img{
	
}

#point_h span img:nth-of-type(1){
	width: auto;
	position: absolute;
    left: -9.5rem;
    top: -4rem;
    height: 14rem;
}

#point_h span img:nth-of-type(2){
	width: auto;
	position: absolute;
    right: -12.5rem;
    top: -3rem;
    height: 11rem;
}


#point1 .flex_box{
	flex-direction: row-reverse;
}

#point1 .wrapper h2{
	text-align: center;
	margin-top: clamp(20px, 4vw, 100px);
	padding-bottom: 16px;
	font-size: 1.6rem;
	letter-spacing: 0.3rem;
  font-weight: bold;
}

#point1 .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#point1 ul{
	margin-right: 2rem;

}

#point1 li{
	margin-bottom: 120px;
}

#point1 .flex_box > div:nth-of-type(1){
	width: 60%;
	padding: 2rem;
}

#point1 .flex_box > div:nth-of-type(1) div{
	position: relative;
	background-color: #cb1c1b;
	color: #ffffff;
	display: block;
	padding: 1em 0em;
	width: 15em;
	text-align: center;
	margin: 4rem auto;
	letter-spacing: 0.2em;
}

#point1 .flex_box > div:nth-of-type(1) div:before{
	position: absolute;
	content: "";
	bottom: -10px;
	right: -10px;
	height: 4rem;
	width: 15em;
	background-color: #dad8d8;
	z-index:-1;
}

#point1 .flex_box > div:nth-of-type(2){
	width: 40%;
}

#point1 h3 img{
	height: clamp(20px, 4vw, 58px)
}

#point1 .flex_box > div:nth-of-type(2) img{
	width: 100%;
}

#point1 h3{
	margin-bottom: 1rem;
}

#point1 p{
	margin-left: 1rem;
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	
}

#point1 span,#schedule span{
	font-size: 0.8rem;
	margin-top: 0.5rem;
	display: block;
}

#point1 span span,#schedule span span{
	color: #ea8ab6;
	display: inline-block;
}

/* --------------
feature @media screen 800
----------------- */

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


#point1 .wrapper h2 img {
	width: 100%;
}

#point1 .flex_box{
	flex-direction: column;
}

#point1 .flex_box > div:nth-of-type(1) {
	width: 100%;
}

#point1 h3{
	text-align: center;
}

#point1 h3 img {
	height: 7vw;
	display: inline-block;
}

#point1 li {
	margin-bottom: 55px;
}

#point1 .flex_box > div:nth-of-type(2) {
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#point1 .flex_box > div:nth-of-type(2) img{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
}

#point_h span img:nth-of-type(1) {
    left: -11.5rem;
    top: -4rem;
    height: 14rem;
}

#point_h span img:nth-of-type(2) {
    right: -16.5rem;
    top: -3rem;
    height: 11rem;
}

}

/* --------------
#point1 @media screen 600
----------------- */

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

#point1 .flex_box > div:nth-of-type(2) img{
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}

#point_h{
	text-align: center;
	margin-top: 2rem;
	margin-bottom: 2rem;
	
}

#point_h span img:nth-of-type(2) {
    right: -4.5rem;
    top: -13rem;
    height: 7.5rem;
}

#point_h span img:nth-of-type(1) {
    left: -2.5rem;
    top: -11rem;
    height: 10rem;
}

}


/* ----------------------------------------------
point2
---------------------------------------------- */

#point2{
	position: relative;
	padding-top: clamp(100px, 30vw, 140px);
	margin-bottom: clamp(100px, 10vw, 175px);
	text-align: center;
}

#point2 p{
	width: 85%;
	display: inline-block;
	text-align: left;
	padding-bottom: 1em;
}


#point2 > img:nth-of-type(1){
	margin-left: auto;
	margin-right: auto;
	width: clamp(100px, 30%, 180px); 
	margin-top: 100px;
	margin-bottom: 100px; 
}

#point2:after{
/*	position: absolute;
	content: "";
	background:url(../img/main-assets/line.png);
	background-repeat: repeat-x;
	background-size: contain;
	bottom: -30px;
    height: 30px;
    width: 100%;
    z-index: 100;*/
}

#point_up{
	margin-top: 80px;
}

#point_up img{
	width: 100%;
}

#point2 .wrapper h2{
	text-align: center;
/*	margin-top: 100px;*/
	padding-bottom: 60px;
}

#point2 .wrapper h2 img{
	width: 80%;
	display: inline-block;
}

#point_fukidashi{
	position: absolute;
	top:-180px;
}

#point_fukidashi img{
	width:clamp(280px, 50%, 500px);
}


#point2 ul{
	margin-left: 2rem;

}

#point2 li{
	margin-bottom: 120px;
}

#point2 .flex_box > div:nth-of-type(1){
	width: 50%;
}

#point2 .flex_box > div:nth-of-type(2){
	width: 50%;
	text-align: right;
}

#point2 h3 img{
	height: clamp(87px, 10vw, 126px);
}

#point2 .flex_box > div:nth-of-type(2) img {
	width: 85%;
	margin: 0 auto;
}

#point2 h3{
	margin-bottom: 1rem;
}

#point2 span{
/*	font-size: 0.8rem;
	margin-top: 1rem;
	display: block;*/
}

#point2 span span{
	color: #ea8ab6;
	display: inline-block;
}

#point2_con img:nth-of-type(1){
	width: 85%;
	margin: 0 auto;
}

#point2_con{
	height: auto;
	position: relative;

}

#point2_con img:nth-of-type(2){
    width: 40%;
    position: absolute;
    top: 74%;
    left: -11%;
}

#point2_con img:nth-of-type(3){
	width: 40%;
	position: absolute;
    bottom: -10%;
    right: -22%;
}

/* --------------
point2 @media screen 800
----------------- */

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

#point_up {
	margin-top: 120px;
}

#point_fukidashi {
	top: -140px;
}

#point2 .wrapper h2 img {
	width: 100%;
}

#point2 h3 img {
	height: 20vw;
	width: auto;
}

#point2 .wrapper h2 {
    text-align: center;
	margin-bottom: clamp(2rem, 5vw, 5rem);
	padding: initial;
}

}

/* --------------
point2  @media screen 600
----------------- */

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

#point2 .flex_box {
	flex-direction: column-reverse; 
}

#point2 .flex_box > div:nth-of-type(1) {
	width: initial;
}

#point2_con {
   
}

#point2_con img:nth-of-type(1) {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 10vw;
}

#point2_con img:nth-of-type(2) {
	width: 40%;
	top: 85%;
	left: -8%;
}

#point2_con img:nth-of-type(3) {
	width: 30%;
        bottom: 5%;
        right: -5%;
}


#point2 .flex_box > div:nth-of-type(2) {
	width: initial;
}

#point2 .flex_box > div:nth-of-type(2) {
    width: initial;
    margin-left: initial;
}

#point2 .flex_box > div:nth-of-type(2) img {
	width: 85%;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 40px;
}


}


/* ----------------------------------------------
everyday
---------------------------------------------- */

#everyday{
	padding-top: clamp(40px, 10vw, 175px);
	margin-bottom: clamp(100px, 10vw, 175px);
}

#everyday h2{
	
}

#everyday h3{
	text-align: center;
	margin: 1rem 0 2rem 0;
	font-size: 1.5em;
	font-weight: bold;
}

#everyday h2 img{
	width: clamp(1px, 70vw, 960px);
	margin: 0 auto;
}

#everyday_1{

}

#everyday_2,#everyday_3{
	margin-top: 5vw;
}

#everyday_1 img,#everyday_2 img,#everyday_3 img{
	width: clamp(80%, 80%, 960px);
	margin-right: auto;
	margin-left: auto;
}

#everyday_1 p,#everyday_2 p,#everyday_3 p{
	font-size: clamp(16px, 1.5vw, 2rem);
	margin-top: 1rem;
	width: clamp(300px, 70%, 800px);
	margin-left: auto;
	margin-right: auto;
}

#everyday_1 p,#everyday_3 p{
	text-align: right;
}

#everyday_2 p{
	text-align: left;
}

/* --------------
#everyday @media screen 600
----------------- */

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

	#everyday h2 img {
    width: 90%;
}

#everyday_1 img,#everyday_2 img,#everyday_3 img{
	width: 100%

}

}

/* ----------------------------------------------
analysis
---------------------------------------------- */

#analysis{
	margin-bottom: clamp(100px, 10vw, 175px);
	padding-top: initial;
}

#analysis h2{
	font-size: clamp(1.2rem, 3.2vw, 3rem);
	font-weight: bold;
	border-bottom: solid 7px ;
	text-align: center;
/*	width: clamp(70%, 70%, 70%);*/
	margin-left: auto;
	margin-right: auto;
	padding:0.5em 1.5em;
	display: inline-block;
}


#analysis h2 div{
	display: flex;
	justify-content: center;
	align-items: center;
}

.tate{
	writing-mode: vertical-rl;
	font-size: 0.5rem;
	border-right: 1px solid;
	margin-right: 1rem;
	padding-right: 1rem;
	display: inline-block;
}

#analysis p{
	width: 70%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	text-align: left;
}

.analysis_1{
	text-align: center;
	margin-bottom: 50px;
	margin-top: clamp(40px, 7vw, 80px);
}

.analysis_2,.analysis_3,.analysis_4{
	text-align: center;
	margin-bottom: clamp(40px, 7vw, 80px);
}

.analysis_1 img{
	display: inline-block;
	width: 80%;
}

.analysis_2 img,.analysis_4 img{
	display: inline-block;
	width: 80%;
}

.analysis_3 img{
	display: inline-block;
	width: clamp(160px, 45%, 45%);
}


/* --------------
#analysis @media screen 800
----------------- */

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

#analysis h2 {
    font-size: clamp(1.5rem, 3vw, 3rem);
    font-weight: bold;
    border-bottom: solid 7px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 0.5rem;
    padding-top: 0.5rem;
}

#analysis p {
    width: 80%;

}
}

/* --------------
#everyday @media screen 600
----------------- */

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

.analysis_1 img {
    width: 100%;
}

.analysis_2 img, .analysis_4 img {
    width: 100%;
}

#analysis p {
    width: 85%;

}

}

/* ----------------------------------------------
power-re
---------------------------------------------- */

#power-re {
	margin-bottom: clamp(100px, 10vw, 175px);
	padding-top: clamp(100px, 10vw, 175px);
}

#power-re_1 h2 img {
    width: clamp(300px, 45%, 45%);
    margin: 0 auto;
}

#power-re_1 p{
	width: 45%;
	margin-left: auto;
	margin-right: auto;
	margin-top: 2rem;
	margin-bottom: 4rem;
}

#power-re_2 {
	display: flex;

}

#power-re_2 > div:nth-of-type(1){
	margin-right: 20px;
	width: 45%;
}

#power-re_2 > div:nth-of-type(1) img{
	object-fit: cover;
	width: 100%;
	height:100%;
}

#power-re_2 > div:nth-of-type(2){
	width: 55%;
}

#power-re_2 h2{
	background-color: #f5da41;
	font-weight: bold;
	display: inline-block;
	padding: 0.2em 4em;
	font-size: 1.3rem;
	border-radius: 50px 50px 0 0;
	line-height: 1.3em;;;
}

#power-re_2 h2 img {
    width: 45%;
    margin: 0 auto;
}

.power-re_fe{
	 align-items:flex-end
}

.power-re_fe div{
/*	background-color: #cc0000;*/
}

#power-re_2 p{
	
}

#power-re_2 > div:nth-of-type(2) img{
	width: 30%;
	margin-left: 1rem;
}

#power-re_ex{
	border: 1px solid #000000;
	padding: 2em;
}

#power-re_ex h3{
	font-weight: bold;
	margin-bottom: 1em;
	font-size: 1.3rem;
}

/* --------------
#power-re @media screen 800
----------------- */

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

#power-re_1 h2 img {
    width: 60%;
    margin: 0 auto;
}


#power-re_2 {
    flex-direction: column; 
}

#power-re_2 > div:nth-of-type(1) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
}

#power-re_2 > div:nth-of-type(2) {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
}

#power-re_1 p {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}


}

/* --------------
#power-re @media screen 600
----------------- */

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


#power-re_2 > div:nth-of-type(1) {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#power-re_2 > div:nth-of-type(2) {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 35px;
}

#power-re_1 p {
    width: 85%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

#power-re {
    margin-bottom: 40px;
    padding-top: 40px;
}

    #power-re_1 h2 img {
        width: 80%;
        margin: 0 auto;
    }

}


/* ----------------------------------------------
intro_box
---------------------------------------------- */

.intro_box{
	font-size: 0.8rem;
	flex-wrap: wrap;
	font-family: "メイリオ","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3",Meiryo,"ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif,Helvetica, Helvetica Neue, Arial, Verdana;
	}

.intro_box li{
	width:30%;
}

.intro_box > li{
	margin-top: 100px;
}

.intro_box > li:nth-of-type(2),.intro_box > li:nth-of-type(5),.intro_box > li:nth-of-type(8){
	margin-left: 5%;
	margin-right: 5%;
}

.intro_box li > div img{
	width:100%;
	border-radius: 15px;
	position: relative;
	z-index: 10;
}

.intro_box li > div img:before{
	position: absolute;
	content: "";
	left: 0%;
	height: 50px;
	width: 10px;
	background-color: #f1a1a1;
	border-radius: 15px;
	z-index: 5;
}


.intro_box h3{
/*	padding-left: 10px;*/
	margin-bottom: 10px;
	font-size: 1.2rem;
/*    line-height: 50px;
	height: 10%;*/
	position: relative;
}

.intro_box h3:before{
/*	position: absolute;
	content: "";
	left: 0%;
	height: 100%;
	width: 10px;
	background-color: #f1a1a1;
	border-radius: 10px;*/
}

.intro_box h3 img{
	width: 60%;
  margin: 0 auto;
/*	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	-webkit- transform: translateY(-50%) translateX(-50%);*/

}

.intro_box h4{
	font-weight: bold;
	font-size: 1rem;
	margin-top: 1rem;
}

.intro_box ol li{
	width:100%;
	line-height: 1.3rem;
/*	word-break: break-word;*/
}

.intro_box ol li:nth-of-type(1){

}

.intro_box ol li:nth-of-type(3){
	margin: 1rem 0;
}

.intro_box ol li:nth-of-type(4){
	margin-bottom: 1rem;
}

.intro_box ol li a{
	color: #0482fd;
	text-decoration: underline;
}

.intro_box ol li div a{
	color: #ffffff;
	text-decoration: none;
}

.intro_box ol li div{
	background-color: #f1a1a1;
	color: #ffffff;
	width: 47%;
	display: inline-block;
	border-radius: 1rem;
	text-align: center;
	font-size: 0.8rem;
	padding: 0.2em 0;
}

/* --------------
intro_box  @media screen 960
----------------- */

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

/*.intro_box li {
	width: 40%;
	margin-left: auto;
	margin-right: auto;
}*/

}


/* --------------
intro_box  @media screen 800
----------------- */

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

.intro_box{
	 justify-content: space-between;
}

.intro_box li {
	width: 47.5%;
	margin-top: 40px;
}

.intro_box h3{

}

.intro_box h4 {
    line-height: 1.3em;
    margin-bottom: 1em;
}

.intro_box ol li {
    width: 100%;
    line-height: 1.3rem;
    word-break: break-word;
    margin-top: 1em;
}

.intro_box ol li:nth-of-type(1){

}

.intro_box ol li div {
	background-color: #f1a1a1;
	color: #ffffff;
	width: 100%;
	display: block;
	border-radius: 1rem;
	text-align: center;
	font-size: 0.8rem;
	padding: 0.5em 0;
	margin-bottom: 1rem;
}

.intro_box > li:nth-of-type(2),.intro_box > li:nth-of-type(5),.intro_box > li:nth-of-type(8){
	margin-left: 0;
	margin-right: 0;
}

}


/* --------------
intro_box  @media screen 428
----------------- */

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


.intro_box li {
	font-size: 0.9em;
	
}

}




/* ----------------------------------------------
Mail
---------------------------------------------- */

#mail{
	position: relative;
	padding-top: clamp(40px, 10vw, 175px);

}

#mail:after{
/*	position: absolute;
	content: "";
	background:url(../img/main-assets/dot_line.png);
	background-repeat: no-repeat;
	background-size: contain;
	bottom: -80px;
	left: 50%;
    transform: translate(-50%, -50%);
    height: 10px;
    width: 80%;
    z-index: 100;*/
}

#mail .wrapper h2{
	text-align: center;
}

/*#mail .wrapper h2 img{
	width: 80%;
	display: inline-block;
}*/

#mail h2{
	position: relative;
	font-size: clamp(26px, 4vw, 4rem);
	font-weight: bold;
}

#mail_h{
	text-align: center;
	margin-top: 2rem;
	/*margin-bottom: 9rem;*/
	font-family: "メイリオ","ヒラギノ角ゴ ProN W3","HiraKakuProN-W3","ヒラギノ角ゴ Pro W3","HiraKakuPro-W3",Meiryo,"ＭＳ Ｐゴシック","MS Pgothic","Osaka",sans-serif,Helvetica, Helvetica Neue, Arial, Verdana;
}

#mail_h span{
	font-weight: bold;
	font-size: clamp(26px, 4vw, 4rem);
	margin-bottom: 1.5rem;
	display: inline-block;
	position: relative;
}

#mail_h span img{
	height: 14rem;
}

#mail_h span img:nth-of-type(1){
	width: auto;
	position: absolute;
  left: -20rem;
  top: -4rem;
}

#mail_h span img:nth-of-type(2){
	width: auto;
	position: absolute;
  right: -20rem;
  top: -3rem;
}

.pri_box {
	border: 1px solid #55c0ee;
	border-radius: 2em;
	background: #fff;
	padding: 2.5em;
	height: 14em;
	overflow: auto;
	overflow-x: hidden;
	overflow-y: scroll;
	font-size: 0.9em;
	line-height: 1.2em;
	margin-top: 60px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

input:focus,textarea:focus {
  outline: 2px #55c0ee solid;
}

/* --------------
mail  @media screen 800
----------------- */

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

#mail {
	margin-right: 0;
	margin-left: 0;
}

#mail .wrapper h2 img {
    width: 100%;
}

#mail_h span img:nth-of-type(1) {
        left: -9rem;
        top: -2rem;
    }

#mail_h span img:nth-of-type(2) {
	right: -7rem;
        top: -1rem;
    }

#mail_h span img{
    height: 14rem;
}

}


/* --------------
mail  @media screen 600
----------------- */

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

#mail {
	margin-right: 0;
	margin-left: 0;

}

#mail_h{

    margin-bottom: 2rem;
}

#mail_h span img:nth-of-type(1) {
        left: -5rem;
        top: -1rem;
    }

#mail_h span img:nth-of-type(2) {
	right: -3.5rem;
        top: -1rem;
    }

#mail_h span img{
    height: 10rem;
}

}

/* ----------------------------------------------
company
---------------------------------------------- */

#company{
	position: relative;
	background-color: #94d4ef;
	background-image: url(../img/blue-b-assets/blue_dot.png);
	margin-top: clamp(100px, 10vw, 175px);
  margin-bottom: initial;
  padding-top: clamp(100px, 10vw, 175px);
  padding-bottom: clamp(100px, 10vw, 175px);
}

#company ul{
	display: flex;
	flex-wrap: wrap;
}

#company li{
	width: 80%;
	background-color: #ffffff;
	border-radius: 12px;
	padding: 40px;
	margin-bottom: 2%;
	margin-left: auto;
	margin-right: auto;
}

#company li:nth-of-type(even){
	margin-left: 2%;
}

#company h2{
	text-align: center;
	margin-bottom: 80px;
}

#company ul h2{
	text-align: center;
	margin-top: 0;
	margin-bottom: 40px;
	position: relative;
}

#company h2 img{
	width: 80%;
	display: inline-block;
}

#company ul li h2 img{
	width: 45%;
	display: inline-block;
}

#company ul h2:after {
    position: absolute;
    content: "";
    /* background: url(../img/assets/line.png); */
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -47px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
    border-bottom: solid 4px var(--blue);
}

#company dl{
	display: flex;
	flex-wrap: wrap; 
	line-height: 1.2em;
	margin-top: 85px;
}

#company dt{
	font-weight: bold;
	width: 30%;
	margin-bottom: 1rem;
}

#company dd{
	width: 70%;
	margin-bottom: 1rem;
/*	font-size: 0.8rem;*/
}

.tel{
	text-align: center;
	position: relative;
	padding: 20px 0 60px 0;
}

.tel:after {
    position: absolute;
    content: "";
    background: url(../img/parts-assets/dot_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
}

.tel img{
	width: 80%;
	display: inline-block;
}

.gmap{
	margin-top: 40px;
	text-align: center;
}

.gmap img{
	width: 70%;
	display: inline-block;
}

#kdr{
	width: 60%;
	margin-left: auto;
	margin-right: auto;
	border: solid 8px #55c0ee;
	background-color: #ffffff;
	border-radius: 24px;
	padding: 40px;
	position: relative;
	margin-top: 40px;
}

#kdr h2{
	text-align: center;
	margin: 0;
}

#company #kdr h2 img{
	width: 40%;
	display: inline-block;
}

#company #kdr dl{
/*	display: flex;
	flex-wrap: wrap; 
	line-height: 1.2em;*/
	margin-top: 70px;
}

#kdr div{
	text-align: center;
	margin-top: 2rem;
}

#kdr div img{
	width: 40%;
	display: inline-block;
}

#kdr div:nth-of-type(1){
	background-color: #55c0ee;
	font-size: 1.5rem;
	border-radius: 1em;
/*	font-weight: bold;*/
	color: #ffffff;
	padding: 0.5rem;
	position: absolute;
	width: 80%;
	left: 50%;
    transform: translate(-50%, -50%);
    top:-2rem;
}

#company #kdr h2{
	position: relative;
}

#company #kdr h2:after {
    position: absolute;
    content: "";
    background: url(../img/parts-assets/dot_line.png);
    background-repeat: no-repeat;
    background-size: contain;
    bottom: -52px;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 15px;
    width: 100%;
    z-index: 100;
}


/* --------------
company   @media screen 800
----------------- */

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

#company h2 img {
    width: 100%;
}

#company ul {
    flex-direction: column;
}

#company li {
    width: 100%;
    padding: 1.5em;
}

#company li:nth-of-type(2) {
    margin-left: 0%;
    margin-top: 2rem;
}

#kdr {
    width: 100%;
    padding: 40px;
    margin-top: 40px;
}

#company #kdr h2 img {
    width: 80%;
    display: inline-block;
}

#kdr div img {
    width: 70%;
    display: inline-block;
}

#company li:nth-of-type(even){
	margin-left: 0;
}

#company ul li h2 img{
	width: 45%;
}

}

/* --------------
company @media screen 480
----------------- */

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

#company ul li h2 img{
	width: 65%;
}

.tel img {
    width: 100%;
    display: inline-block;
}

}

/* ----------------------------------------------
footer
---------------------------------------------- */

footer{
	display: flex;
	flex-wrap: wrap;
	padding-top: 65px;
}

footer div:nth-of-type(1){
	width: 45%;
/*	background-color: #cc0000;*/
	padding-left: 60px;
	line-height: 1.6em;
}

footer div:nth-of-type(2){
	width: 55%;
/*	background-color: #cccc00;*/
	padding-right: 60px;
	padding-left: 2em;
}

footer div:nth-of-type(2) li{
	display: inline-block;
	margin-right: 2em;
	margin-bottom: 1em;
	/*border: 1px #58c1ef solid;*/
	border-radius: 3em;
	padding: 0.5em 1em;
	background-color: #7dcbe1;
}

footer div:nth-of-type(2) li a{
	color: #ffffff;
}

footer div:nth-of-type(3){
	border-top: 1px solid #dddddd;
	border-bottom: 1px solid #dddddd;
	width: 100%;
	margin-top: 60px;
	padding: 40px 20px;
}

footer div:nth-of-type(3) img{
	display: inline-block;
	margin-right: 30px;
	width: 12%;
}

footer h2 img{
	width: clamp(200px, 40%, 400px);
}

/* --------------
footer @media screen 800
----------------- */

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

footer div:nth-of-type(1),footer div:nth-of-type(2) {
	width: 90%;
	padding-left: 0;
	padding-right: 0;
	margin-left: auto;
	margin-right: auto;
}

footer div:nth-of-type(1){
	margin-bottom: 3em;
}

}

/* --------------
footer @media screen 480
----------------- */

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

footer{
}

footer div:nth-of-type(3) img{
	display: inline-block;
	margin-right: 30px;
	width: 40%;
	margin-bottom: 30px;
}

footer div:nth-of-type(2) li {
    display: block;
    text-align: center;
    margin-right: 0;
    margin-bottom: 1em;
    border: 1px #58c1ef solid;
    border-radius: 3em;
    padding: 0.5em 1em;
    background-color: #58c1ef;
}


}


/* ----------------------------------------------
contact_after
---------------------------------------------- */

#contact_after {
	position: relative;
}

#contact_after .wrapper h2 {
	font-size: 1.4em;
	margin: 8em 0 4em 0;
	font-weight: bold;
}

#contact_after .wrapper h2 img {
	width: 80%;
	display: inline-block;
}

#contact_after .wrapper h2 + p {
/*	text-align: center;
	font-size: 2rem;
	line-height: 1.3em;
	margin-bottom: 4rem;*/
}

#contact_after:after {
    position: absolute;
    content: "";
    background-color: #dddddd;
    width: 100%;
    height: 18px;
}

/* --------------
contact_after @media screen 800
----------------- */

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

#contact_after .wrapper h2 img {
	width: 100%;
}

#contact_after .wrapper h2 + p {
	font-size: 1rem;
}

}