@charset "UTF-8";
/*==========================================
  Common
==========================================*/
/* base
==================================*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
pre,
blockquote,
ul,
li,
ol,
dl,
dd,
tr {
  font-size: 16px;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1;
}

a {
  color: #262626;
  text-decoration: none;
  transition: 0.3s;
}
a:visited {
  color: #262626;
}
a:hover {
  color: #262626;
  text-decoration: none;
}
a:active {
  color: #262626;
}
@media (min-width: 900px) {
  a.tel {
    pointer-events: none;
    cursor: default;
  }
}


/* main
==================================*/
main {
  display: block; /*IE対策*/
}


/* header
==================================*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: transparent;
  width: 100%;
  height: 100px;
}

header .logo_mv {
  margin: 30px 0 0 50px;
  width: 170px;
}

header .logo_mv a{
  display: block;
}

header .logo_mv a:hover{
  opacity: 0.8;
}

header .logo_mv a img{
  width: 100%;
}

header .header_menu {
  position: fixed;
  right: 50px;
  top: 50px;
}

@media (max-width: 768px) {
	header {
	  height: auto;
	}

	header .logo_mv {
	  margin: 25px 0 0 16px;
	  width: 120px;
	}

	header .header_menu {
	  display: none;
	}	
}

header .header_menu ul {
  display: flex;
  gap: 50px;
}

header .header_menu ul li a{
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

header .header_menu.second_page ul li a{
  color: #222222!important;
}

header .header_menu.invert ul li a{
  color: #222222;
}

header .header_menu ul li a:hover{
  opacity: 0.8;
}

header .header_inner{
	display: none;
}

@media (max-width: 768px) {
	
	header .header_inner{
		display: inherit;
	}
}

header .header_inner #menu_btn {
    max-width: 75px;
    height: 50px;
  position: fixed;
  right: 0;
  top: 0;
  cursor: pointer;
  width: 100%;
  z-index: 1000;
}
header .header_inner #menu_btn span {
    background-color: #fff;
    display: block;
    height: 1px;
    width: 31px;
    left: 22px;
    position: absolute;
    top: 50%;
    transition: 0.3s;
}
	
	
header .header_inner #menu_btn span:nth-of-type(1) {
  transform-origin: left top;
  top: 44px;
}
header .header_inner #menu_btn span:nth-of-type(2) {
  transform-origin: left bottom;
  top: 57px;
}
header .header_inner #menu_btn:hover span:nth-of-type(1) {
  transform: translateX(12px);
}
header .header_inner #menu_btn:hover span:nth-of-type(2) {
  transform: translateX(-12px);
}
header .header_inner #menu_btn.active span:nth-of-type(1) {
  right: 26px;
  transform: rotate(13deg);
}
header .header_inner #menu_btn.active span:nth-of-type(2) {
  right: 26px;
  transform: rotate(-13deg);
}
header .header_inner .menu_bg {
  background-color: #47AC66;
  max-width: 170px;
  height: 102px;
  position: fixed;
  right: 0;
  top: 0;
  width: 100%;
}
header .header_inner .big_menu {
  color: #fff;
  padding: 0;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  box-sizing: border-box;
  pointer-events: auto;
  transform: translateY(-10000px);
}
header .header_inner .big_menu.active {
  transform: translateY(0px);
}
header .header_inner .big_menu .bg1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #47AC66;
  z-index: 1;
  opacity: 1;
  animation: slideOut 0.6s cubic-bezier(1, 0, 0, 1) 0.2s forwards;
}
header .header_inner .big_menu .bg1.active {
  animation: slideIn 1s cubic-bezier(0.19, 1, 0.22, 1) 0s forwards;
}
@keyframes slideIn {
  0% {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes slideOut {
  0% {
    transform: translateY(0);
  }
  to {
    transform: translateY(-100%);
  }
}
header .header_inner .big_menu .container {
  display: grid;
  grid-template-rows: 1fr 100px 200px;
  position: relative;
  z-index: 3;
  padding-top: 90px;
}
header .header_inner .big_menu .container .menu_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  -moz-column-gap: 50px;
       column-gap: 50px;
}
header .header_inner .big_menu .container .menu_inner .bm_list li {
  padding-bottom: 40px;
}
header .header_inner .big_menu .container .menu_inner .bm_list li a {
  color: #fff;
  font-size: 36px;
  line-height: 1.2;
  font-family: "Poppins";
  font-weight: 600;
  letter-spacing: -0.01em;
}
header .header_inner .big_menu .container .menu_inner .bm_list li a span {
  font-size: 14px;
  font-family: "Noto Sans JP";
  font-weight: 400;
  display: block;
  padding-bottom: 5px;
}
header .header_inner .big_menu .container .menu_inner .bm_list li a:hover {
  opacity: 0.8;
}

header .header_inner .big_menu .container .menu_inner .bm_list li a {
  display: inline-block;
  animation: fadeOut 0.4s ease-out 0s forwards;
  opacity: 0;
}

header .header_inner .big_menu .container.active .menu_inner .bm_list li a {
  animation: fadeIn 0.6s ease-out 0.48s forwards;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d1 {
  animation-delay: 0.5s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d2 {
  animation-delay: 0.52s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d3 {
  animation-delay: 0.54s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d4 {
  animation-delay: 0.56s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d5 {
  animation-delay: 0.58s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d6 {
  animation-delay: 0.6s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d7 {
  animation-delay: 0.62s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d8 {
  animation-delay: 0.64s;
}
header .header_inner .big_menu .container.active .menu_inner .bm_list li a.d9 {
  animation-delay: 0.66s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
    transform: translateY(0px);
  }
  to {
    opacity: 0;
    transform: translateY(-20px);
  }
}
header .header_inner .big_menu .over_scroll {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}
@media (max-width: 899px) {
 

  header .header_inner #menu_btn span:nth-of-type(1) {
    transform-origin: left top;
    top: 22px;
  }
  header .header_inner #menu_btn span:nth-of-type(2) {
    transform-origin: left bottom;
    top: 28px;
  }
  header .header_inner #menu_btn:hover span:nth-of-type(1) {
    transform: translateX(0);
  }
  header .header_inner #menu_btn:hover span:nth-of-type(2) {
    transform: translateX(0);
  }
  header .header_inner #menu_btn.active::after {
    border-left: transparent;
  }
  header .header_inner #menu_btn.active span:nth-of-type(1) {
    right: 26px;
    transform: rotate(12deg);
  }
  header .header_inner #menu_btn.active span:nth-of-type(2) {
    right: 26px;
    transform: rotate(-12deg);
  }
  header .header_inner .menu_bg {
    max-width: 75px;
    height: 50px;
  }
  header .header_inner .big_menu {
    padding: 65px 0 45px 0;
    width: 100%;
    overflow: hidden;
  }
  header .header_inner .big_menu .container {
    display: grid;
    grid-template-rows: 1fr;
    position: relative;
    height: 100%;
    overflow-y: scroll;
    padding-top: 0;
  }
  header .header_inner .big_menu .container .menu_inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-direction: column;
    -moz-column-gap: 0;
         column-gap: 0;
    padding-left: 10px;
    padding-right: 10px;
  }
  header .header_inner .big_menu .container .menu_inner .bm_list li {
    line-height: 1.2;
    padding-bottom: 24px;
  }
  header .header_inner .big_menu .container .menu_inner .bm_list li a {
    font-size: 28px;
    letter-spacing: -0.01em;
    display: block;
  }
  header .header_inner .big_menu .container .menu_inner .bm_list li a span {
    font-size: 13px;
    padding-bottom: 5px;
    letter-spacing: 0.05em;
  }
  header .header_inner .big_menu .container .menu_inner .bm_list li a:hover {
    color: #fff;
  }
  header .header_inner .big_menu .container .btn_corp {
    padding-bottom: 45px;
    position: relative;
  }
  header .header_inner .big_menu .container .btn_corp a {
    max-width: 412px;
    font-size: 15px;
    width: 100%;
  }
  header .header_inner .big_menu .container .btn_corp a::after {
    top: 36px;
  }
  header .header_inner .big_menu .container .btn_corp a span {
    display: inline-block;
  }
  header .header_inner .big_menu .container .btn_corp a span::after {
    right: -10px;
    top: 28px;
  }
  header .header_inner .big_menu .container .btn_corp a span small {
    display: block;
  }
  header .header_inner .big_menu .container .btn_corp a:hover {
    border-color: #29385e;
  }
  header .header_inner .big_menu .container .btn_corp a:hover::after {
    transform: none;
  }
  
}



/*==================================
  Top
==================================*/


.mv_sec {
  position: relative;
  overflow: hidden;
  z-index: 100;
}
.mv_sec.mv_sec_gd {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: visible;
  z-index: 1;
}

.mv_sec .catch_wrap .catch_bdr {
  position: fixed;
  top: 0px;
  left: 50px;
  z-index: 3;
  overflow: hidden;
}
.mv_sec .catch_wrap .catch_bdr h2 {
  width: clamp(600px, 68vw, 1100px);
}
.mv_sec .catch_wrap .catch_bdr h2 span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.mv_sec .catch_wrap .catch_bdr h2 img {
  opacity: 0;
  max-width: 100%;
  height: auto;
}
.mv_sec .catch_wrap .catch_bdr h2 span.top img {
  transition: 0.5s 0.2s ease-out;
  transform: translateX(-60px);
  padding-bottom: 28px;
}

@media (max-width: 899px) {
  .mv_sec .catch_wrap .catch_bdr h2 span.top img {
    padding-bottom: 24px;
  }
}


.mv_sec .catch_wrap .catch_bdr h2 span.btm img {
  transition: 0.5s 0.3s ease-out;
  transform: translateX(60px);
}
.mv_sec .catch_wrap .catch_bdr.move h2 span.top img {
  opacity: 1;
  transform: translateX(0px);
}


.mv_sec .catch_wrap .catch_bdr.move h2 span.btm img {
  opacity: 1;
  transform: translateX(0px);
}
.mv_sec .catch_wrap .catch {
  position: fixed;
  top: 0px;
  left: 50px;
  z-index: 3;
  overflow: hidden;
}
.mv_sec .catch_wrap .catch h2 {
  width: clamp(600px, 68vw, 1100px);
}
.mv_sec .catch_wrap .catch h2 span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.mv_sec .catch_wrap .catch h2 img {
  opacity: 0;
  max-width: 100%;
  height: auto;
}

.mv_sec .catch_wrap .catch h2 span.top img {
  padding-bottom: 28px;
}
@media (max-width: 899px) {
  .mv_sec .catch_wrap .catch h2 span.top img {
    padding-bottom: 24px;
  }
}


.mv_sec .catch_wrap .catch.move h2 {
  display: flex;
  flex-wrap: wrap;
  width: clamp(600px, 68vw, 1100px);
}

.mv_sec .catch_wrap .catch_clr {
  position: fixed;
  bottom: 50px;
  left: 50px;
  z-index: -1;
}
.mv_sec .catch_wrap .catch_clr.abso {
  position: absolute;
  bottom: -410px;
  left: 50px;
}
.mv_sec .catch_wrap .catch_clr h2 {
  width: clamp(600px, 68vw, 1100px);
}
.mv_sec .catch_wrap .catch_clr h2 span {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.mv_sec .catch_wrap .catch_clr h2 img {
  max-width: 100%;
  height: auto;
}
.mv_sec .catch_wrap .catch_clr h2 span.top img {
  padding-bottom: 28px;
}

.mv_sec .catch_wrap .catch_clr h2 span.mdl img {
  padding-bottom: 28px;
}

@media (max-width: 899px) {
  .mv_sec {
    position: relative;
  }
  .mv_sec .logo_mv {
    max-width: 204px;
    width: 100%;
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 5;
  }

  .mv_sec .catch_wrap .catch_bdr {
    will-change: transform;
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 1000;
  }
  .mv_sec .catch_wrap .catch_bdr h2 {
    box-sizing: border-box;
    width: 100% !important;
    padding: 0 0 0 40px;
  }
  .mv_sec .catch_wrap .catch {
    will-change: transform;
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: 3;
  }
  .mv_sec .catch_wrap .catch h2 {
    box-sizing: border-box;
    width: 100% !important;
    padding: 0 135px;
  }
  .mv_sec .catch_wrap .catch_clr {
    will-change: transform;
    position: fixed;
    top: 50%;
    left: 0;
    width: 100%;
    text-align: center;
    z-index: -1;
  }
  .mv_sec .catch_wrap .catch_clr h2 {
    box-sizing: border-box;
    width: 100% !important;
   padding: 0 0 0 40px;
  }
}

@media (max-width: 768px) {
  .mv_sec .catch_wrap .catch_bdr h2 {
    padding: 0 50px 0 16px;
	  width: auto;
  }
  .mv_sec .catch_wrap .catch_clr h2 {
    padding: 0 50px 0 16px;
  }	
}
#video-area{
    z-index: -1;
    overflow: hidden;
}

#video {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /*縦横幅指定*/
    width: 177.77777778vh; /* 16:9 の幅→16 ÷ 9＝ 177.77% */
    height: 56.25vw; /* 16:9の幅 → 9 ÷ 16 = 56.25% */
    min-height: 100%;
    min-width: 100%;
}

@media (max-width: 768px) {
	#video-area video{
	
	}

	#video-area img {
		width: 100%;
		height: 100vh;
    	z-index: -100;
	}	

}



/* lead_sec
==================================*/
.lead_sec {
  padding: 650px 0 0;
}

.lead_sec .container {
  width: 100%;
}

.lead_sec .container .col_wrap {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 0;
       column-gap: 0;
  gap: 65px;
}
.lead_sec .container .col_wrap .photo_area {
  width: 48%;
}
.lead_sec .container .col_wrap .photo_area figure img {
  width: 100%;
}

.lead_sec .container .col_wrap .text_area {
  padding-top: 40px;
  width: 500px;
}

.lead_sec .container .col_wrap .text_area h3 {
  font-size: 36px;
  font-family: "Noto Sans JP";
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.055em;
  margin-bottom: 30px;
}

.lead_sec .container .col_wrap .text_area .txt_lead {
  font-size: 18px;
  line-height: 42px;
}

@media (max-width: 1280px) {
	.lead_sec .container {
	  padding-left: 0;
	}
	
	.lead_sec .container .col_wrap .photo_area {
		width: 50%;
	}
	
	.lead_sec .container .col_wrap {
	  align-items: flex-end;
	}	
	.lead_sec .container .col_wrap .text_area {
		width: 50%;
		padding-bottom: 50px;
	}
}

@media (max-width: 768px) {
	
	.lead_sec {
	  padding: 500px 0 0;
	}

	.lead_sec .container {
	  width: 100%;
      padding-right: 0;	
	}

	.lead_sec .container .col_wrap {
	  display: flex;
	  gap: 0;
		flex-wrap:wrap-reverse;
	}
	.lead_sec .container .col_wrap .photo_area {
	  width: 100%;
	}
	.lead_sec .container .col_wrap .photo_area figure img {
	  width: 100%;
	}

	.lead_sec .container .col_wrap .text_area {
	  padding-top: 40px;
		padding-left: 16px;
		padding-right: 16px;
	  width: 100%;
	}

	.lead_sec .container .col_wrap .text_area h3 {
	  font-size: 28px;
	  margin-bottom: 30px;
	}

	.lead_sec .container .col_wrap .text_area .txt_lead {
	  font-size: 16px;
	  line-height: 34px;
	}
}

/* service_top
==================================*/

.service_top {
  background: #B5D569;
  padding: 130px 0 0 0;
}
.service_top .container .ttl_grade_jpn{
  margin-top: 20px;
}

.service_top .service_inner{
  display: flex;
  justify-content: space-between;
}

.service_top .service_inner .btn_block a{
  border: 1px solid #222222;
}

.service_top .service_inner .btn_block a:hover{
  border: 1px solid #222222;
  background:rgba(0,0,0,0.025);
  transform:scale(1.1,1.1);
}

.service_top .img_service{
  margin-top: 50px;
}
.service_top .img_service img{
  width: 100%;
}

.service_top .catch_txt{
  width: 100%;
  margin-top: 130px;	
}
.service_top .catch_txt img{
  width: 100%;
}

.service_top .container .txt_service{
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  margin-top: 40px;
}

@media (max-width: 768px) {
	
	.service_top {
	  padding: 100px 0 0 0;
	}

	.service_top .service_inner{
	  display: flex;
	  justify-content: space-between;
	}

	.service_top .service_inner .btn_block a{
	  border: 1px solid #222222;
	}

	.service_top .service_inner .btn_block a:hover{
	  border: 1px solid #222222;
	  background:rgba(0,0,0,0.025);
	  transform:scale(1.1,1.1);
	}

	.service_top .img_service{
	  margin-top: 50px;
	}
	.service_top .img_service img{
	  width: 100%;
	}

	.service_top .catch_txt{
	  width: auto;
	  padding-left: 16px;
	  padding-right: 16px;
	  padding-bottom: 16px;
	  margin-top: 80px;	
	}
	.service_top .catch_txt img{
	  width: 100%;
	}

	.service_top .container .txt_service{
	  font-size: 15px;
	}	
}


/* company_top
==================================*/

.company_top {
  background: #F3F3F3;
  padding: 130px 0 200px 0;
}
.company_top .container .ttl_grade_jpn{
  margin-top: 20px;
}

.company_top .container_inner {
  display: flex;
  justify-content: space-between;
  gap: 65px;
  margin-top: 55px;	
}

.company_top .container_inner .left_wrap {
  width: 50%;
}
.company_top .container_inner .left_wrap .ttl_grade_jpn {
  margin-top: 20px;
}

.company_top .container_inner .list_wrap {
  width: 50%;
}
.company_top .container_inner .list_wrap ul li {
  border-top: solid 1px #aaaaaa;
}

.company_top .container_inner .list_wrap ul li:nth-of-type(2) {
  border-bottom: 1px solid #aaaaaa;
  }
.company_top .container_inner .list_wrap ul li a {
  font-size: 24px;
  font-family: "Noto Sans JP";
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 40px 0;
}

.company_top .container_inner .list_wrap ul li a .btn_block{
  align-items: center;
  border: 1px solid #222222;
  border-radius: 50%;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 60px;
  max-width: 100%;	
  transition: all 0.2s;
}
.company_top .container_inner .list_wrap ul li a .btn_block img{
  flex: none;
  height: auto;
  width: 15px;
  max-width: 100%;
}
.company_top .container_inner .list_wrap ul li a:hover{
  transition: all 0.2s;
  transform: translate(3px,0);
}
.company_top .container_inner .list_wrap ul li a:hover .btn_block{
  border: 1px solid #222222;
  background: rgba(0,0,0,0.025);
  transform: scale(1.1,1.1);
}
.company_top .container_inner .list_wrap ul li a:hover .btn_block img{
  transform: translate(2px,0);
  transition: all 0.2s;
}

@media (max-width: 768px) {
	
	.company_top {
	  padding: 100px 0;
	}

	.company_top .container_inner {
	  display : block;
	  gap: 0;
	  margin-top: 50px;	
	}

	.company_top .container_inner .left_wrap {
	  width: 100%;
	}

	.company_top .container_inner .list_wrap {
	  width: 100%;
		margin-top: 50px;
	}
	.company_top .container_inner .list_wrap ul li {
	  border-top: solid 1px #aaaaaa;
	}

	.company_top .container_inner .list_wrap ul li:nth-of-type(2) {
	  border-bottom: 1px solid #aaaaaa;
	  }
	.company_top .container_inner .list_wrap ul li a {
	  font-size: 20px;
	  padding: 30px 0;
	}

	.company_top .container_inner .list_wrap ul li a .btn_block{
	  height: 60px;
	  width: 60px;
	}

	
}


/* recruit
==================================*/

.contact_recruit{
  width: 100%;
  background: #47AC66;
  padding: 130px 0;
}

.contact_recruit .recruit_inner{
  display: flex;
  justify-content: space-between;
}

.contact_recruit .container .ttl_grade{
  color: #ffffff;
}

.contact_recruit .container .ttl_grade_jpn{
  color: #ffffff;
  margin-top: 20px;
}

.contact_recruit .container .txt_recruit{
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 40px;
}

@media (max-width: 768px) {
	
	.contact_recruit{
	  padding: 100px 0;
	}

	.contact_recruit .container .txt_recruit{
	  font-size: 15px;
	  line-height: 30px;
	  font-weight: 500;
	  color: #ffffff;
	  margin-top: 40px;
	}	
}


/* contact
==================================*/

.contact_sec{
  width: 100%;
  background: url(../img/img_contact.jpg) no-repeat 0 0;
  background-position: bottom;
  background-size: cover;
  padding: 80px 0;
}

.contact_sec .container{
  display: flex;
  justify-content: space-between;
}

.contact_sec .container .ttl_grade{
  color: #ffffff;
}

.contact_sec .container .ttl_grade_jpn{
  color: #ffffff;
  margin-top: 20px;
}

.contact_sec .container .txt_contact{
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin-top: 20px;
}

@media (max-width: 768px) {

	.contact_sec .container .txt_contact{
	  font-size: 14px;
		line-height: 24px;
	}	
}


/* services
==================================*/

.services{
  padding: 250px 0 150px 0;	
}

.services h3{
  font-size: 36px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.055em;
  margin-top: 80px;	
}

.services .txt_services{
  font-size: 18px;
  font-weight: 500;
  line-height: 42px;
  margin-top: 40px;
}

.services .service_wrap{
	margin: 150px 0 0 0;
}

.services .service_wrap ul{
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: space-around;
}

.services .service_wrap ul li{
  width: 31%;
}

.services .service_wrap ul li:nth-of-type(4) {
  margin-top: 50px;
  margin-left: 17%;
}
.services .service_wrap ul li:nth-of-type(5) {
  margin-top: 50px;
  margin-right: 17%;
}

.services .service_wrap ul li h4{
  font-size: 26px;
  font-weight: 700;
  margin-top: 25px;	
}

.services .service_wrap ul li p{
  font-size: 16px;
  font-weight: 500;
  line-height: 26px;
  margin-top: 20px;	
}

@media (max-width: 768px) {
	.services{
	  padding: 250px 0 100px 0;	
	}

	.services h3{
	  font-size: 30px;
	}

	.services .txt_services{
	  font-size: 16px;
	  line-height: 36px;
	}

	.services .service_wrap{
		margin: 80px 0 0 0;
	}

	.services .service_wrap ul{
	  display: block;
	  gap: 0;
	}

	.services .service_wrap ul li{
	  width: 100%;
		margin-bottom: 80px;
	}
	
	.services .service_wrap ul li:last-child{
		margin-bottom: 0;
	}

	.services .service_wrap ul li:nth-of-type(4) {
	  margin-top: 0;
	  margin-left: 0;
	}
	.services .service_wrap ul li:nth-of-type(5) {
	  margin-top: 0;
	  margin-right: 0;
	}

	.services .service_wrap ul li h4{
	  font-size: 24px;
	}

	.services .service_wrap ul li p{
	  font-size: 15px;
	  line-height: 26px;
	}
	
}


/* companies
==================================*/

.companies{
  padding: 250px 0 0 0;	
}

.companies .txt_companies{
  font-size: 22px;
  font-weight: 700;
  line-height: 46px;
  margin: 100px 0 150px 0;
  color: #1FB64D;
}

.companies .companies_wrap{
  background: #B5D569;	
  padding: 150px 0;
}

.companies .companies_wrap .container{
  display: flex;
  justify-content: space-between;	
}

.companies .companies_wrap .companies_ttl p{
  font-size: 18px;
  font-weight: 500;
}

.companies .companies_wrap .companies_ttl h3{
  display: inline-block;
  font-size: 80px;
  font-family: "Poppins";
  font-weight: 500;
  letter-spacing: 0.015em;
}

.companies .companies_wrap .companies_tbl{
  width: 57%;
}

.companies .companies_wrap .companies_tbl ul li{
  display: flex;
  border-bottom: 1px solid #90A957;
  padding: 25px 0;
}

.companies .companies_wrap .companies_tbl ul li p{
  font-size: 16px;
  line-height: 30px;
}

.companies .companies_wrap .companies_tbl ul li p:first-child{
  width: 140px;
}


.companies .companies_sec_wrap{
  background: #F3F3F3;	
  padding: 150px 0;
}

.companies .companies_sec_wrap .container{
  display: flex;
  justify-content: space-between;	
}

.companies .companies_sec_wrap .companies_ttl p{
  font-size: 18px;
  font-weight: 500;
}

.companies .companies_sec_wrap .companies_ttl h3{
  display: inline-block;
  font-size: 80px;
  font-family: "Poppins";
  font-weight: 500;
  letter-spacing: 0.015em;
}

.companies .companies_sec_wrap .companies_ttl .name{
  display: flex;
  align-items: center;
  margin-top: 50px;
}

.companies .companies_sec_wrap .companies_ttl .name p{
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}

.companies .companies_sec_wrap .companies_ttl .name p:first-child{
  border-right: 1px solid #aaaaaa;
  padding-right: 15px;
  margin-right: 15px;
}


.companies .companies_sec_wrap .companies_message{
  width: 57%;
}

.companies .companies_sec_wrap .companies_message p.sub_ttl{
  font-size: 30px;
  line-height: 50px;
  font-weight: 700;
}


.companies .companies_sec_wrap .companies_message p{
  font-size: 16px;
  line-height: 32px;
  font-weight: 500;
  margin-top: 50px;
}

@media (max-width: 768px) {
	.companies{
	  padding: 250px 0 0 0;	
	}

	.companies .txt_companies{
	  font-size: 20px;
	  line-height: 40px;
	  margin: 50px 0 150px 0;
	}

	.companies .companies_wrap{
	  padding: 100px 0;
	}

	.companies .companies_wrap .container{
	  display: block;	
	}

	.companies .companies_wrap .companies_ttl p{
	  font-size: 16px;
	}

	.companies .companies_wrap .companies_ttl h3{
	  font-size: 55px;
	}

	.companies .companies_wrap .companies_tbl{
	  width: 100%;
	  margin-top: 20px;
	}

	.companies .companies_wrap .companies_tbl ul li{
	  display: block;
	  border-bottom: 1px solid #90A957;
	  padding: 25px 0;
	}

	.companies .companies_wrap .companies_tbl ul li p{
	  font-size: 15px;
	  line-height: 28px;
	}

	.companies .companies_wrap .companies_tbl ul li p:first-child{
	  width: 140px;
	}


	.companies .companies_sec_wrap{
	  padding: 100px 0;
	}

	.companies .companies_sec_wrap .container{
	  display: block;
	}

	.companies .companies_sec_wrap .companies_ttl p{
	  font-size: 16px;
	}

	.companies .companies_sec_wrap .companies_ttl h3{
	  display: inline-block;
	  font-size: 55px;
	  font-family: "Poppins";
	  font-weight: 500;
	  letter-spacing: 0.015em;
	}


	.companies .companies_sec_wrap .companies_ttl .name p{
	  font-size: 17px;
	}


	.companies .companies_sec_wrap .companies_message{
	  width: 100%;
	}

	.companies .companies_sec_wrap .companies_message p.sub_ttl{
	  font-size: 28px;
	  line-height: 48px;
	}


	.companies .companies_sec_wrap .companies_message p{
	  font-size: 15px;
	  line-height: 32px;
	}	

}

/* footer
==================================*/
footer {
  background: #28282C;
  color: #fff;
  display: flex;
  justify-content: center;
}
footer .footer_inner .container {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 100px 0;
}
footer .footer_inner .container .nav_wrap .logo_ft {
  margin-bottom: 40px;
  width: 120px;
}
footer .footer_inner .container .nav_wrap .company {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.15em;
}
footer .footer_inner .container .nav_wrap .address {
  font-size: 16px;
  font-weight: 500;
  margin-top: 10px;
}

footer .footer_inner .container .copy {
  font-family: "Poppins";
  font-weight: 800;
  font-size: 16px;
}

@media (max-width: 1280px) {
	footer .footer_inner {
	  width: 100%!important;
	}
	footer .footer_inner .container {
	  width: 100%!important;
	  padding-left: 30px;
      padding-right: 30px;
	}
}

@media (max-width: 768px) {
	footer .footer_inner {
	  width: 100%!important;
	}
	footer .footer_inner .container {
	  width: 100%!important;
      padding: 80px 16px;	
      display: block;
	  text-align: center;
	}	

	footer .footer_inner .container .nav_wrap .logo_ft {
		margin: auto;
		margin-bottom: 40px;
	}
	footer .footer_inner .container .nav_wrap .company {
	  font-size: 18px;
	}
	footer .footer_inner .container .nav_wrap .address {
	  font-size: 14px;
	}
	
	footer .footer_inner .container .copy {
	  font-size: 14px;
	  margin-top: 50px;
	}	
}



/* Animation
==================================*/

.move {
  transform: translate(0, 0);
  opacity: 1;
}

/*==================================
  Component
==================================*/
html {
  overflow: auto;
}
html.no_move {
  overflow: hidden;
}

img {
  max-width: 100%;
  height: auto;
}
img[src$=".png"], img[src$=".jpg"] {
  backface-visibility: hidden;
}

img.scale {
  transform: scale(1.2);
  opacity: 0;
  transition: all 0.6s 0.3s ease-out;
}

.move img.scale {
  opacity: 1;
  transform: scale(1);
}

img.scale.move {
  opacity: 1;
  transform: scale(1);
}

.container {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.ttl_grade{
  font-size: 100px;
  font-family: "Poppins";
  font-weight: 500;
  letter-spacing: 0.015em;
}

.ttl_grade_jpn{
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.015em;
}

.page_ttl p{
  color: #222222;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;	
}

.page_ttl h2{
  display: inline-block;
  font-size: 120px;
  font-family: "Poppins";
  font-weight: 600;
  letter-spacing: 0.015em;
  background: linear-gradient(90deg, #20BD55 0%, #73BB17 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.for_pc{
	display: inherit;
}

.for_sp{
	display: none;
}

@media (max-width: 768px) {

	.for_pc{
		display: none;
	}
	
	.for_sp{
		display: inherit;
	}
}

@media (max-width: 1280px) {
  .container {
	width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}

@media (max-width: 768px) {

  .container {
	width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }	
	
	.ttl_grade{
	  font-size: 55px;
	}

	.ttl_grade_jpn{
	  font-size: 16px;
	  font-weight: 500;
	  letter-spacing: 0.015em;
	}

	.page_ttl p{
	  color: #222222;
	  font-size: 18px;
	  font-weight: 500;
	  margin-bottom: 10px;	
	}

	.page_ttl h2{
	  display: inline-block;
	  font-size: 65px;
	  font-family: "Poppins";
	  font-weight: 600;
	  letter-spacing: 0.015em;
	  background: linear-gradient(90deg, #20BD55 0%, #73BB17 100%);
	  -webkit-background-clip: text;
	  -webkit-text-fill-color: transparent;
	}
}



/*==================================
	ボタン系
==================================*/

.btn_block a{
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  height: 100px;
  justify-content: center;
  width: 100px;
  max-width: 100%;	
}
.btn_block a img{
  flex: none;
  height: auto;
  width: 20px;
  max-width: 100%;
  transition: all 0.2s;
}
.btn_block a:hover{
  border: 1px solid #ffffff;
  background:rgba(255,255,255,0.1);
  transform:scale(1.1,1.1);
}

.btn_block a:hover img{
  transform: translate(3px,0);
  transition: all 0.2s;
}

@media (max-width: 768px) {
	
.btn_block a{
  align-items: center;
  border: 1px solid #ffffff;
  border-radius: 50%;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 60px;
  max-width: 100%;	
}
.btn_block a img{
  flex: none;
  height: auto;
  width: 20px;
  max-width: 100%;
  transition: all 0.2s;
}
.btn_block a:hover{
  border: 1px solid #ffffff;
  background:rgba(255,255,255,0.1);
  transform:scale(1.1,1.1);
}

.btn_block a:hover img{
  transform: translate(3px,0);
  transition: all 0.2s;
}
	
}

