@charset "utf8";
/*=============================
	- font-style
	- 汎用 color & background
	- 汎用 wrap & title
	- top.css  TOPページCSS
==============================*/

/*----------------------------------------------------
	font-style
----------------------------------------------------*/
/*  全体 font  */
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}


/*----------------------------------------------------
	汎用 color & background
----------------------------------------------------*/
/* color */
.white {
  color: #fff;
}
.point_color01 {
  /*--ポイント文字カラー 赤 --*/
  color: #e53935;
}
.point_color02 {
  /*--ポイント文字カラー 黒 --*/
  color: #000;
}
.point_back01 {
  /*--ポイント背景カラー 赤 --*/
  background: #e53935;
}
.point_back02 {
  /*--ポイント背景カラー 薄グレー--*/
  background: #eef0f2;
}
.point_back03 {
  /*--ポイント背景カラー 黒--*/
  background: #000;
}

/*----------------------------------------------------
	汎用 buttton
----------------------------------------------------*/
/* 無料相談ボタン */
.btn01 {
  display: inline-block;
  text-align: center;
  min-width: 320px;
  letter-spacing: 0.05em;
  border-radius: 80px;
  padding: 22px 0 21px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .btn01 {
    width: 100%;
    max-width: 100%;
    min-width: auto;
    border-radius: 100px;
  }
}

/* 青枠丸ボタン */
.btn02 {
    text-align: center;
    font-size: 18px;
    line-height: 1.2em;
    min-width: 350px;
    border-radius: 0;
    padding: 25px 0;
	margin: auto;
	display: inline-block;
}
@media screen and (max-width: 767px) {
  .btn02 {
    font-size: 16px;
	width: 80%;
	min-width: inherit;
	padding: 20px;
  }
}

/*----------------------------------------------------
	汎用 wrap & title
----------------------------------------------------*/
/*  width 管理  */
.mywidth {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .mywidth {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/*  メインコンテンツwrap   */
#main-wrapp { overflow-x: hidden; }
section { padding: 4.5em 0;}

@media screen and (max-width: 767px) {
  section {
    padding: 2.0em 0;
  }
}

/* title */
.text {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.8em;
	letter-spacing: 0.05em;
	/* 明朝体 */
	font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
}
@media screen and (max-width: 767px) {
	.text {
		font-size: 14px;
		line-height: 1.6em;
	}
}
.ellipsis_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.ellipsis_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
.ellipsis_3 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}


/* title */
.top_title {
    text-align: center;
    margin-bottom: 3.75em;
}

.content-title01 {
  color: #000;
  position: relative;
  z-index: 1;
}
.content-title01 .title-english {
  font-size: 48px;
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  text-transform: uppercase;
  letter-spacing: 0;
  margin-bottom: 2px;
}
@media screen and (max-width: 767px) {
  .top_title {
    width: 70%;
	margin: 0 auto 30px;
  }
	
  .content-title01 .title-english {
    font-size: 40px;
  }
}

/*----------------------------------------------------
	top.css  TOPページCSS
----------------------------------------------------*/

/*  main_v  */
.main_v { position: relative; }
.main_v::before,
.main_v::after {
	content: "";
	display: inline-block;
	position: absolute;
}
.main_v::before {
	width: 53vw;
    max-width: 1013px;
    height: 28.5vw;
	background: url("../images/hinomaru_01.png") no-repeat;
	background-size: contain;
	top: 0;
	left: 0;
}
.main_v::after {
	width: 37vw;
    max-width: 698px;
    height: 13vw;
	background: url("../images/mv_back.png") no-repeat;
	background-size: contain;
	top: 1.5em;
	right: 0;
}
.main_v .inner {
	padding-left: 5em;
}
.main_v .main_title {
    width: 173px;
    height: 637px;
    position: relative;
    z-index: 1;
}
.main_v .strengths_wrap {
	display: inline-block;
    position: absolute;
    top: 3.5em;
    left: 20.5em;
	z-index: 1;
}
.main_v .strengths_title {
	width: 27vw;
    margin-bottom: 15px;
}
.main_v .strengths_title img{
	filter: drop-shadow(0 0px 5px #e53935);
}

.main_v .strengths_text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}
.main_v .strengths_text span {
    font-size: 22px;
	line-height: 1.6em;
    font-weight: 700;
    padding: 0 0.5em;
    background: #fff;
    border: 1px solid #000;
}
.main_v .strengths_text span + span { margin-top: 10px; }

.main_v .mv_img_wrap {
    width: 80%;
    max-width: 960px;
    position: absolute;
	bottom: 0;
    right: 0;
}
@media screen and (max-width: 1680px) {
	.main_v .strengths_title {
		width: 20vw;
		margin-bottom: 15px;
	}
}
@media screen and (max-width: 1200px) {
  .main_v::before {
    width: 70vw;
    height: 38vw;
  }
  .main_v .inner {
    padding-left: 2vw;
    padding-bottom: 5em;
  }
  .main_v .main_title {
    width: 11vw;
	height: 41vw;
  }
  .main_v .strengths_wrap {
    position: absolute;
    top: 2em;
    left: 13em;
    z-index: 1;
  }
  .main_v .strengths_title { width: 28vw; }
	
}
@media screen and (max-width: 1080px) {
	.main_v::before {
		width: 83vw;
		height: 45vw;
	}
	.main_v::after {
		width: 45vw;
		height: 15vw;
	}
	.main_v .inner {
        padding-bottom: 20vw;
    }
}
@media screen and (max-width: 767px) {
  .main_v::before {
    width: 55vw;
    height: 30vw;
  }
  .main_v::after {
    width: 40vw;
    height: 13vw;
    position: absolute;
    top: 50%;
  }
  .main_v .inner { padding-bottom: 10vw; }

  .main_v .main_title {
    width: 18vw;
    height: auto;
  }

  .main_v .strengths_wrap {
    top: 1.5em;
    left: 23.5vw;
  }
  .main_v .strengths_title { width: 27.5vw; }
  .main_v .strengths_text span { font-size: 16px; }
	
}
@media screen and (max-width: 420px) {
	.main_v .strengths_text span {
	  font-size: 3.5vw;
    }
}



/*  #top_search  */
#top_search {
	margin-top: 3.5em;
    padding: 2em 0;
	position: relative;
    z-index: 1;
}
#top_search .outer {
    display: flex;
    align-items: center;
}
#top_search .title {
	font-size: 22px;
    white-space: nowrap;
    position: relative;
    display: flex;
    align-items: center;
}
#top_search .title::before {
    content: "";
	width: 25px;
	height: 25px;
	background: url("../images/i_search.png") no-repeat;
	background-size: contain;
	display: inline-block;
	margin-right: 8px;
}
#top_search form {
	width: 100%;
    padding-left: 20px;
}
#top_search form .inner {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
	gap: 0 10px;
}
#top_search form select,
#top_search form input {
	padding: 0.5em 1em;
    background: #fff;
	border: 1px solid #ddd;
	height: 50px;
	border-radius: 0;
	outline: none;
}
#top_search form select {
	width: calc((100% - 440px) / 3 );
	padding: 0.5em 2em 0.5em 1em;
	background: url(../images/select_arrow.png) no-repeat #fff;
    background-position: 95% center;
}
#top_search form input {
	width: 250px;
}
#top_search form .btn_search {
	color: #fff;
    font-size: 18px;
    font-weight: bold;
	width: 150px;
	padding: 0.5em 1em;
	background: #e53935;
    border: 1px solid #e53935;
    cursor: pointer;
}
@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	#top_search .outer { flex-direction: column; }
	#top_search .title {
		font-size: 20px;
		margin-bottom: 20px;
	}
	
	#top_search form { padding: 0 0; }
	#top_search form .inner {
		gap: 10px 10px;
		justify-content: center;
	}
	#top_search form select {
		/*width: calc((100% - 20px ) / 3);*/
		width: calc((100% - 10px) / 2);
	}
	#top_search form input { 
		/*width: 50%;*/
		width: calc((100% - 10px) / 2);
	}
	#top_search form .btn_search {
		font-size: 16px;
		width: 50%;
	}
}
@media screen and (max-width: 420px) {
	
}




/*  content01  */
.content01 {
	padding-top: 90px;
    padding-bottom: 60px;
	position: relative;
}
.content01::after {
	content: "";
	display: inline-block;
	width: 380px;
	height: 527px;
	background: url("../images/back_bamboo.png") no-repeat;
	background-size: contain;
	position: absolute;
    bottom: -5vw;
    left: 0;
	content: none;
}
.content01 .outer {
	padding-bottom: 3.5em;
	position: relative;
	
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 0 50px;
}
.content01 .outer::after {
	content: "";
	display: inline-block;
	width: 364px;
	height: 296px;
	background: url("../images/img_content01.png") no-repeat;
	background-size: contain;
	position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}
.content01 .title {
	writing-mode: vertical-rl;
    text-orientation: upright;
}
.content01 .title span {
    /*writing-mode: vertical-rl;
    text-orientation: upright;*/
	font-size: 32px;
    line-height: 1.8em;
    border-right: 1px solid #000;
}
.content01 .inner {
	z-index: 2;
}

.content01 .text { font-size: 18px; }

@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	.content01 {
		padding-top: 50px;
		padding-bottom: 2.0em;
	}
	.content01::after {
		width: 45vw;
		height: 63vw;
		position: absolute;
		bottom: inherit;
		top: 28vw;
	}
	.content01 .outer {
		flex-direction: column;
		padding-bottom: 0;
	}
	.content01 .outer::after {
		width: 50vw;
		height: 41vw;
		background: url(../images/img_content01_sp.png) no-repeat;
    	background-size: contain;
	}
	.content01 .title {
		writing-mode: inherit;
		text-orientation: inherit;
		margin-bottom: 20px;
	}
	.content01 .title span {
		font-size: 20px;
		border-right: none;
		border-bottom: 1px solid #000;
	}
	.content01 .text { font-size: 14px; }
}

#strength::before {
	content: "";
	display: inline-block;
    width: 30vw;
    max-width: 544px;
    height: 36.5vw;
    background: url(../images/hinomaru_03.png) no-repeat;
    background-size: contain;
	position: absolute;
    top: -2vw;
    left: 0;
}
#strength .outer {
    padding-left: 5em;
    display: flex;
    align-items: flex-start;
}
#strength .strength_title {}
#strength .inner {
    width: calc(100% -(178px + 50px));
    width: 60%;
}
#strength .title {
    margin-bottom: 50px;
}
#strength .sub_title {
    margin-bottom: 20px;
}
#strength .sub_title span {
	font-size: 32px;
    line-height: 1.8em;
    border-bottom: 1px solid #000;
}

@media screen and (max-width: 1200px) {
	#strength .strength_title {
		width: 11vw;
        height: auto;
	}
	#strength .outer {
		padding-left: 2em;
	}
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	#strength::before {
		width: 23vw;
		height: 30vw;
		top: 6vw;
	}
	#strength .outer {
		gap: 0 0;
		justify-content: space-between;
		flex-direction: row;
		padding-left: 2vw;
	}
	#strength .strength_title {
        width: 18vw;
        height: auto;
    }

	#strength .inner {
        width: calc(100% - (18vw + 20px));
    }
	#strength .title {
		margin-bottom: 20px;
	}
	#strength .sub_title {
		margin-bottom: 10px;
	}
	#strength .sub_title span {
        font-size: 4.5vw;
    }
	
}
	
	
	

/*  content02  */
.content02 {
	padding-top: 2em;
}
.kodawari_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 20px 20px;
}
.kodawari_list li {
    width: calc((100% - 60px ) / 4);
}
.kodawari_list li a {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.8em;
    text-align: center;
    /* letter-spacing: 0.05em; */
    font-family: "Noto Serif JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
	
	padding: 1em;
    border: 1px solid #000;
	transition: 0.5s;
}
.kodawari_list li a:hover {
	color: #fff;
	background: #000;
}

@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	.kodawari_list {
		gap: 15px 15px;
	}
	.kodawari_list li {
		width: calc((100% - 15px) / 2);
	}
	.kodawari_list li a {
		font-size: 13px;
		padding: 1em 0.5em;
	}
}


/*  content03  */
.content03 {
  padding-top: 50px;
  padding-bottom: 80px;
  position: relative;
}
.content03::before,
.content03::after {
	content: "";
	display: inline-block;
	position: absolute;
}
.content03::before {
	width: 19vw;
    height: 33.5vw;
	background: url("../images/hinomaru_02.png") no-repeat;
	background-size: contain;
	position: absolute;
    top: -5vw;
    left: 0;
	content: none;
}
.content03::after {
	width: 28vw;
    max-width: 525px;
    height: 8.5vw;
	background: url("../images/back_mt.png") no-repeat;
	background-size: contain;
    top: 0;
    right: 0;
}
.kyujin_list {
	gap: 30px 30px;
	position: relative;
	z-index: 2;
}
.kyujin_list .box {
  width: calc((100% - 90px) / 4);
}
.kyujin_list .box figure {
  width: 100%;
  height: 220px;
}
.kyujin_list .box figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.kyujin_list .box .title {
  margin: 10px 0;
  font-weight: 700;
  line-height: 1.6em;
}
.kyujin_list .box .overview {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
}
.kyujin_list .box .overview dt,
.kyujin_list .box .overview dd {}
.kyujin_list .box .overview dt {
    width: 19px;
    margin-right: 6px;
    text-align: center;
}
.kyujin_list .box .overview dd {
	width: calc(100% - 25px);
	font-size: 15px;
    font-weight: 600;
}
@media screen and (max-width: 1200px) {
	.content03::after {
		width: 35vw;
		height: 11vw;
		top: 3em;
	}
}
@media screen and (max-width: 1080px) {
	.content03::after {
        width: 40vw;
        height: 13vw;
    }
}
@media screen and (max-width: 767px) {
  .content03 {
    padding: 2.0em 0;
  }
  .content03::before {
	width: 15vw;
	height: 25vw;
	top: 7vw;
  }
  .content03::after {
	width: 33vw;
	height: 11vw;
	top: 0em;
  }
  .kyujin_list .box {
    margin: 0 20px;
  }
  .kyujin_list .box figure { height: 45vw; }
	
  .kyujin_list .box .overview {
    align-items: center;
  }
  .kyujin_list .box .overview dt {}
  .kyujin_list .box .overview dt img { 
	  display: inline;
	  vertical-align: middle;
	}
  .kyujin_list .box .overview dd {
    font-size: 14px;
  }

	
  .home .slick-prev,
  .home .slick-next {
	width: 20px;
	height: 35px;
    }
  .home .slick-prev { left: -10px; }
  .home .slick-next { right: -10px; }
  .home .slick-prev:before,
  .home .slick-next:before {
	width: 20px;
	height: 35px;
  }
	
}

/*  content04  */
.content04 {
}
.column_list {
	gap: 50px;
}
.column_list .box {
  width: calc((100% - 100px ) / 3);
}
.column_list .box figure {
  width: 100%;
  height: 300px;
}
.column_list .box figure img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.column_list .box .title {
  margin-top: 20px;
  font-size: 18px;
  font-weight: 700;
}
.column_list .box .text {
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  .content04 {
  }
  .column_list {gap: 20px 0;}
  .column_list .box {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .column_list .box figure {width: 38%;height: 25vw;}
  .column_list .box .inner {
    width: 62%;
    padding-left: 15px;
  }
  .column_list .box .title {
    margin-top: 0;
    font-size: 14px;
  }

}


/*  content05  */
.content05 {
	position: relative;
}
.content05::after {
	content: "";
	display: inline-block;
	width: 17vw;
    max-width: 320px;
    height: 34.5vw;
	background: url("../images/hinomaru_04.png") no-repeat;
	background-size: contain;
	position: absolute;
    top: -15vw;
    right: 0;
}
@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	
}



/*  content06  */
.content06 {
	position: relative;
}
.content06::before {
	content: "";
    display: inline-block;
    width: 31vw;
    max-width: 577px;
    height: 18vw;
    background: url(../images/content06_back.png) no-repeat;
    background-size: contain;
    position: absolute;
    top: -6vw;
    left: 0;
}
.content06 figure {
    width: 80%;
    max-width: 718px;
    margin: auto;
}

@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
	.content06::before {
		width: 40vw;
		height: 23vw;
		position: absolute;
		top: -15vw;
	}
}



/*  content07  */
.content07 {
}
.news_list {
	width: 100%;
	max-width: 900px;
	margin: auto;
}
.news_list li {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.news_list li + li { margin-top: 20px; }
.news_list li .date {
    font-size: 16px;
    line-height: 1.8em;
    min-width: 90px;
    margin-right: 2em;
}
@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
  .content07 {
  }
  .news_list {
    position: relative;
    z-index: 1;
  }
  
}



/*  content08  */
.content08 { position: relative; }
#role::before,
#role::after {
	content: "";
    display: inline-block;
	position: absolute;
	z-index: 0;
}
#role::before {
	width: 30vw;
    max-width: 544px;
    height: 36.5vw;
    background: url(../images/hinomaru_03.png) no-repeat;
    background-size: contain;
    top: -6vw;
    left: 0;
}
#role::after {
	width: 30vw;
    max-width: 574px;
    height: 18.5vw;
    background: url(../images/role_back_01.png) no-repeat;
    background-size: contain;
	position: absolute;
    top: 0;
    right: 0;
}
#role .outer {
  padding-left: 3.5em;
  display: flex;
  align-items: flex-start;
}
#role .outer::after {
    content: "";
    display: inline-block;
    width: 22vw;
    max-width: 424px;
    height: 23.5vw;
    background: url(../images/role_back_02.png) no-repeat;
    background-size: contain;
    position: absolute;
    bottom: -1vw;
    right: -6.5vw;
    z-index: 1;
}
#role .role_title {
    width: 178px;
    height: 572px;
	margin-right: 50px;
    position: relative;
    z-index: 1;
}
#role .inner {
    width: calc(100% -(178px + 50px));
    width: 60%;
}

#role .inner .title {
    margin-bottom: 50px;
}
#role .inner .subtitle {
    font-size: 28px;
    margin-bottom: 20px;
}

@media screen and (max-width: 1200px) {
	
}
@media screen and (max-width: 1080px) {
	
}
@media screen and (max-width: 767px) {
  .content08 {
  }
	
  #role::before {
    top: -18.5vw;
    left: 0;
  }
  #role::after {
    top: -5vw;
    right: 0;
  }
	
  #role .outer { padding: 0 2.5vw; }
  #role .outer::after {
    position: absolute;
	top: 0;
	right: 0.5em;
  }
	
  #role .role_title {
    width: 18vw;
    height: auto;
    margin-right: 20px;
  }
	
  #role .inner { width: calc(100% - (18vw + 20px)); }
  #role .inner .title {
    width: 80%;
    margin-bottom: 30px;
  }
  #role .inner .subtitle { 
	font-size: 18px;
	margin-bottom: 10px;
  }
}



