﻿@charset "UTF-8";

/*
YUI 3.4.1 (build 4118)
Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
html{color:#000;background:#FFF}body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote,th,td{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,strong,th,var{font-style:normal;font-weight:normal}ol,ul{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup,sub{vertical-align:baseline;line-height:1.1;}sup{vertical-align:text-top;}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{font-size:100%}legend{color:#000}em,strong{font-weight:bold;}

/*
YUI 3.4.1 (build 4118)
Copyright 2011 Yahoo! Inc. All rights reserved.
Licensed under the BSD License.
http://yuilibrary.com/license/
*/
body{font:13px/1.231 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;font-size:small;font:x-small}select,input,button,textarea{font:99% 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;vertical-align:middle;}table{font-size:inherit;font:100%}pre,code,kbd,samp,tt{font-family:monospace;font-size:108%;line-height:100%}
img{ vertical-align: bottom; }

/* 
link color 
*/
a:link{color:#0077cc; text-decoration:none;}
a:visited{text-decoration:none;}
a:hover{text-decoration:underline;}
a:active{text-decoration:underline;}

/*
rollover image
*/
a img {
  transition-property: opacity;
  transition-duration: 0.2s;
}

a:hover img {
  opacity: 0.6;
  -ms-filter: "alpha(opacity=60)";
  filter: alpha(opacity=60);
}

/*
container
*/
html{height:100%; min-width:1280px;}
html {
  scroll-behavior: smooth;
}
@media screen and (max-width:767px) {
	html{height:100%; min-width:360px;}
}
body{height:100%; min-width:1280px;}
@media screen and (max-width:767px) {
	body{height:100%; min-width:360px;}
}

body {
  width: 100%;
  position: relative;
  color: #283739;
  font-family: "游ゴシック体", "Zen Kaku Gothic New", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 767px) {
    body {
      height:100%;
      /* min-width: 480px */
      }
	}

i {
  margin-left: 1rem;
}

sub {
  display: contents;
  bottom: 0;
}

/* スプラッシュウィンドウ */
#splash_screen {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100vw;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  opacity: 1;
  transition: opacity 0.5s ease;
}

#splash_screen.is-hidden {
  opacity: 0;
}

.splash_logo {
  position: relative;
  top: 50%;
  left: 50%;
  width: 15%;
  transform: translate(-50%,-50%);
  animation: fadein-text 0.8s ease forwards;
}

@media (max-width: 767px) {
  .splash_logo {
    width: 50%;
  }
}

@keyframes fadein-text {
  0% {
    opacity: 0;
    transform: translate(-50%, -30%); 
  }

  100% {
    opacity: 1;
    transform: translate(-50%, -50%); 
  }
}

/* header */
.header {
  overflow: hidden;
  position: relative;
  width: 100%;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.12);
}

.header_inner {
  position: relative;
	display: flex;
  align-items: center;
  width: 1280px;
  height: 91px;
  margin: 0 auto;
  padding-left: .5rem;
  padding-right: .5rem;
}
@media (max-width: 767px) {
  .header_inner {
    width: 100%;
    height: 60px;
  }
}
.header_inner img {
  margin-left: 0;
	width: 90%;
  height: 63px;
}
@media (max-width: 767px) {
    .header_inner img {
      width: 60%;
      margin-left: .5rem;
      }
	}

.header_nav {
  display: block;
  margin-left: auto;
}
@media (max-width: 767px) {
    .header_nav {
        overflow: hidden;
        position: fixed;
        top: 60px;
        bottom: 100%;
        left: 0;
        right: 100%;
        display: flex;
        justify-content: center;
        padding: 50px 0;
        background-color: rgba(0, 0, 0, 0);
        transition: background-color .3s;
    }
    .header_nav.open {
        overflow: hidden;
        bottom: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .35);
    }
	}

.header_list {
  display: flex;
  list-style: none;
	font-size: 1.2em;
}
@media (max-width: 767px) {
  .header_list {
    overflow-y: auto;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 80%;
    min-width: 300px;
    max-width: 400px;
    height: 100%;
    margin: 0 auto;
    transition: transform .3s;
    transform: translateY(10%);
  }

  .header_nav.open .header_list {
    transform: translateY(0);
  }
}

.header_list_item {
  margin-top: 1rem;
  margin-left: 1.5rem;
}
.header_list_item:first-child {
  margin-left: 0;
}
@media (max-width: 767px) {
  .header_list_item {
    position: relative;
    width: 100%;
    margin-top: 0;
    margin-left: 0;
  }
  .header_list_item:first-child {
    margin-left: 0;
  }
}

.header_list_item a {
	padding: 1rem;
	color: #333;
}

.header_list_item a:hover {
	text-decoration: none;
}

.header_list_item a::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 100%;
  background: #00aeef;
  left: 10%;
  transform: scale(0, 1);
  transition: .6s;
}

.header_list_item a:hover::after {
  transform: scale(1, 1);
}

@media (max-width: 767px) {
  .header_list_item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;  
    padding: 1.25rem 1.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    background-color: #fff;
    color: #333;
    font-weight: bold;
    transition: background-color .3s;
  }

  .header_list_item a:hover {
    text-decoration: none;
    background-color: rgb(206, 236, 240);
  }

  .header_list_item a::after {
    content: unset;
  }

  .header_list_item:first-child a {
    border-radius: 10px 10px 0 0;
  }
  .header_list_item:last-child a {
    border-radius: 0 0 10px 10px;
  }
}

.fixed_header {
  position: fixed;
  top: -80px;
  left: 0;
  background: #fff;
  z-index: 200;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}

.fixed_header.is-show {
  top: 0;
  visibility: visible;
}

#spNavBtn {
	display: none;
}
@media screen and (max-width:767px) {
	#spNavBtn {
		z-index: 30;
		position: relative;
		box-sizing: border-box;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 36px;
		height: 36px;
		margin-left: auto;
		background-color: rgba(0,0,0,.05);
		border: none;
		border-radius: 3px;
		cursor: pointer;
	}

	#spNavBtn::before {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(-10px) rotate(0);
		transition: transform .3s;
	}
	#spNavBtn::after {
		content: "";
		position: absolute;
		top: 50%;
		transform: translateY(7px) rotate(0);
		transition: transform .3s;
	}
	#spNavBtn.open::before {
		transform: translateY(-1.5px) rotate(45deg);
	}
	#spNavBtn.open::after {
		transform: translateY(-1.5px) rotate(-45deg);
	}
}
@media screen and (max-width:767px) {
	#spNavBtn .spNavBtnLabel,
	#spNavBtn::before,
	#spNavBtn::after {
		display: block;
		width: 28px;
		height: 3px;
		background-color: #0088EB;
		border-radius: 2px;
		overflow: hidden;
		white-space: nowrap;
		text-indent: -9999px;
	}
	#spNavBtn.open .spNavBtnLabel {
		opacity: 0;
	}
}

/* key_visual */
/* テキストアニメーション */
.slideIn_text {
  line-height: 1.8;
  position: relative;
  animation: slideIn 2s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: none;
}

.slideIn_text:nth-child(1) {
  animation-delay: 0.5s;
  opacity: 0;
}

.slideIn_text:nth-child(2) {
  animation-delay: 1s;
  opacity: 0;
}

.slideIn_text:nth-child(3) {
  animation-delay: 2s;
  opacity: 0;
}

@keyframes slideIn {
  0% {
    transform: translateX(-600px);
  }
  100% {
    transform: translateX(0);
  }
  40%,100% {
    opacity: 1;
  }
}

/* 背景色 */
.text_bK_color {
  transform: translate(-50%,-50%);
  padding: 5px;
  background: linear-gradient(90deg, #2EC5D6, #0091ff) fixed;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  animation: colorSideIn 3s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation: none;
}

@keyframes colorSideIn {
  50% {
    background-size: 100% 100%;
  }
  100% {
    background-size: 0 100%;
  }
}

.slideIn_text:nth-child(1) .text_bK_color  {
  animation-delay: 0.5s;
}

.slideIn_text:nth-child(2) .text_bK_color  {
  animation-delay: 1s;
}

.slideIn_text:nth-child(3) .text_bK_color  {
  animation-delay: 2s;
}

.text_bK_color.animate {
  opacity: 1;
  animation-delay: var(--delay, 0s);
}

.text_bK_color.animate {
  opacity: 1;
  animation-delay: var(--delay, 0s);
}


.kv_visual {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
@media (max-width: 767px) {
    .kv_visual {
      padding-top: 75%; 
      height: 50vh;
    }
	}

.kv_visual video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.kv_title {
    position: absolute;
    bottom: 15%;
    left: 5%;
    color: white;
    text-align: left;
    font-size: 4.35rem;
    font-weight: bold;
		text-shadow: 2px 2px #333;
    white-space: nowrap;
}
@media (max-width: 767px) {
  .kv_title {
    bottom: 1.5rem;
    left: 1.5rem;
    font-size: 3.5rem;
    font-size: clamp(2rem, calc(100vw / 13), 3.5rem);
    transform: none;
  }
}
.wrap {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  padding-bottom: 1.6rem;
}
@media (max-width: 767px) {
    .wrap {
         max-width: 100%;
    }
}


.box {
  margin-bottom: 10px;
  background-color: #125585;
  color: #fff;
  animation: sample 2.5s 0s;
  width: 360px;
}

.pc_none {
  display: none;
}
@media (max-width: 767px) {
    .pc_none {
         display: block;
    }
}

/* news */
.news_list {
    position: relative;
		right: 0;
		font-size: 16px;
		font-weight: 500;
		color: #fff;
}

.news_list_item {
    position: absolute;
		bottom: 0;
		right: 0;
		border-top-left-radius: 5px;
		background-color: #2EC5D6;
    white-space: nowrap;
}
@media screen and (max-width: 767px){
	.news_list_item {
			position: unset;
			border-top-left-radius: 0;
	}
}

.news_list_item a {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
	align-items: center;
	padding: 1rem;
  text-decoration: none;
  color: #fff;

}
@media screen and (max-width: 767px){
	.news_list_item a {
    flex-wrap: wrap;
    line-height: 2;
	}
}

.news_list_item h2 {
	padding-right: 1rem;

}

.news_list_item .date {
  margin: 0;
  color: #fff;
	padding-right: 1rem;
}

.news_list_item .category {
		margin: 0;
		padding-right: 1rem;
		font-size: 14px;
}

.news_list_item .category span {
  display: inline-block;
	width: 110px;
	padding: .5rem 0;
  color: #2ec5d6;
  text-align: center;
  line-height: 1;
	border-radius: 10px;
  background: #fff;
}

.target {
    width: 280px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
@media screen and (max-width: 767px){
	.target {
    width: 100%;
        white-space: unset;
	}
}

#group {
  position: relative;
}
@media screen and (max-width: 767px){
    #group {
      aspect-ratio:　1 / 1 ; /* 1:1のアスペクト比 */
    }
  }

#topics {
  padding: 60px;
  background-color: #29BCCC;
  box-shadow: 0 0 10px rgba(0,0,0,.05);
}

@media screen and (max-width: 767px){
    #topics {
      padding: 50px 20px 20px;
    }
  }

#topics .wrap{
  padding: 20px 50px;
  background-color: #fff;
}

@media screen and (max-width: 767px){
    #topics .wrap{
      padding: 20px 10px;
    }
  }

.topics_list {
  list-style: none outside;
  margin: 0;
  padding: 0;
  font-size: 1.2em;
}

.topics_item a {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 20px;
}
@media screen and (max-width: 767px){
  .topics_item a {
    flex-wrap: wrap;
    }
  }

.topics_item:first-child a {
  border-top: 1px solid #CCC;
}

.topics_item .date {
  margin: 0;
  padding-right: 2rem;
}
@media screen and (max-width: 767px){
  .topics_item .date {
    flex-wrap: wrap;
    }
  }

.topics_item .category{
  margin: 0;
  min-width: 140px;
  padding-right: 2rem;
}

.category .cate_news,
 .category .cate_recruit {
  color: #fff;
  text-align: center;
  display: inline-block;
  padding: 5px 20px;
  line-height: 1;
}

.category .cate_news {
  background: #0086F2;
}

.category .cate_recruit {
  background: #2EC5D6;
}

.topics_item .title {
  margin-top: 0;
  width: 100%;
}
@media screen and (max-width: 767px){
  .topics_item .title {
    margin-top: 1rem;
    flex-wrap: wrap;
    }
  }

.topics_item a:hover .title {
  opacity: .8;
}

.topics_item_list {
  margin-top: 2em;
  font-size: 1.2em;
  text-align: right;
  color: #000;
}
@media screen and (max-width: 767px){
  .topics_item_list {
      text-align: center;
    }
  }

  .topics_item_list a {
    text-decoration: none;
  }

  .topics_item_list a:hover {
    opacity: .8;
  }
  

.item .title {
  margin: 0;
  width: 100%;
}

.slick_inner {
  width: 100%;
}

.slick_container {
  position: relative;
  /* インナー幅から片側をはみ出させる */
  /* width: calc(100% + (100vw - 100%) / 2); */
  /* margin-left: auto; */
}

.icon_wrap {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 767px) {
  .icon_wrap {
    overflow-x: hidden;
    margin-bottom: 0;
  }
}

.icon-container {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 3rem 6rem;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
.icon-container {
      gap: 2rem 0;
    }
}

.ser_btn {
  text-align: center;
  margin-bottom: 2rem;
}

/* アイコン表示アニメーション */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

.icon-container .icon-item {
    display: flex;
    flex-direction: column;
    margin-right: 120px;
}

@media screen and (max-width: 767px) {
  .icon-container .icon-item {
    margin-right: 30px;
  }
}

.icon-container .icon-itemlink {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 auto;
}
.icon-container .icon-itemlink:hover {
    text-decoration: none;
}

.icon {
    width: 180px;
    aspect-ratio: 1/1;
    background-color: #0088EC;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 767px) {
  .icon {
    width: 100px;
    height: 100px;
  }
}

.icon img {
    display: block;
    max-width: 100%;
    height: auto;
}

@media screen and (max-width: 767px) {
  .icon img {
    max-width: 100%;
    width: 80%;
    height: auto;
  }
}


/* スライダー */
/* スライダードット */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots li button:before {
  font-size: 13px;
}

.slick-dots li.slick-active button:before {
  color: #0088EC;
}

.dots-wrapper {
  position: relative;
  bottom: 0;
  width: 100%;
  margin-bottom: 70px;
  text-align: center;
}

.slick-current .icon {
  background-color: #009b2c;
}

/* スライダー矢印 */
.slick_prev,
.slick_next {
  position: relative;
  top: 30px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: #f1f1f1;
  z-index: 1;  
}

@media screen and (max-width: 767px) {
  .slick_prev,
  .slick_next {
    width: 30px;
    height: 30px; 
  }  
}

.slick_prev {
  right: 150px;
}

@media screen and (max-width: 767px) {
  .slick_prev {
    right: 130px;
  }
}

.slick_next {
  left: 150px;
}

@media screen and (max-width: 767px) {
  .slick_next {
    left: 130px;
  }
}

.slick_prev:before,
.slick_next:before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #0088EC;
  border-right: 2px solid #0088EC;
  opacity: 1;
  content: '';
}

.slick_prev:before {
  transform: translate(-25%, -50%) rotate(-135deg);
}

.slick_next:before {
  transform: translate(-75%, -50%) rotate(45deg);
}


.text_b {
    display: flex;
    align-items: flex-start;
		text-align: center;
		padding-top: 1rem;
    margin-top: 5px;
    font-size: 1.4em;
		color: #0088EC;
    white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .text_b {
      font-size: 1.2em;
  }
  .text_b i {
      margin-left: .5rem;
  }
}

/* global　navi */
.global-list {
  list-style: none; /* リストのデフォルトの点を消す */
  padding: 0;
}

.global-item {
  display: inline-block; /* 横並びにする */
  margin: 10px;
}

.global-item a {
  text-decoration: none; /* 下線を消す */
  color: #333;
  font-weight: bold;
}


/* 見出し */
.cont_casetitll {
    position: absolute;
    width: 100%;
		display: flex;
    flex-direction: column;
		align-items: center;
		padding-top: 6rem;
		padding-bottom: 3.2rem;
    line-height: 1;
    z-index: 1;
    pointer-events: none;
}
@media (max-width: 767px) {
  .cont_casetitll {
		padding-top: 3rem;
}
}
.cont_titll {
    position: relative;
		align-items: center;
		display: flex;
    flex-direction: column;
		padding-top: 6rem;
		padding-bottom: 3.2rem;
    line-height: 1;
    color: #333;
}
.cont_titll.cont_topicstitll {
		padding-top: 3rem;
}

@media (max-width: 767px) {
  .cont_titll {
    padding-top: 3rem;
    padding-bottom: 2rem;
  }
.cont_titll.cont_topicstitll {
		padding-top: 3%;
}
}

.title_wh, .title_wh_sub,
.title_bl, .title_bl_sub {
		display: flex;
    flex-direction: column;
		align-items: start;
    line-height: 1.2;
}
  @media (max-width: 767px) {
    .title_wh, .title_wh_sub,
    .title_bl, .title_bl_sub {
      align-items: center;
    }
  }

.title_wh,
.title_bl {
    margin-bottom: .5rem;
    font-weight: 600;
    font-size: 5em;
}
@media (max-width: 767px) {
  .title_wh,
  .title_bl {
      font-size: 3.5em;
  }
}

.title_wh_sub,
.title_bl_sub {
		font-size: 1.4rem;
}
@media (max-width: 767px) {
  .title_wh_sub,
  .title_bl_sub {
      font-size: 1.0rem;
  }
}
.title_wh {
		color: #fff;
}

.title_wh_sub {
		color: #fff;
}

.title_bl {
			color: #0088EC;
}

.title_bl_sub {
		color: #333;
}

/* 事例紹介 */
.case {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    width: 100%;
		padding: 0;
		overflow: hidden;

	}
  @media (max-width: 767px) {
    .case {
          width: 100%;

        flex-direction: column;
    }
}

	.case a  {
		text-decoration: none;
	}

.cont_case { 
		flex: 1;
		aspect-ratio: 1;
    height: 52vh;
    color: white;
    font-size: 2rem;
    display: flex;
		flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    clip-path: inset(0);
    padding: 10rem;
    margin: auto;
    width: 100%;
}

.cont_case:hover {
	transform: scale(1.1);
  transition: 0.9s ease-in-out;

}

/* .bg1 { background: url('../img/AdobeStock_1038545690_Preview.jpeg') center/cover no-repeat; }
.bg2 { background: url('../img/AdobeStock_487813128_Preview.jpeg') center/cover no-repeat; }
.bg3 { background: url('../img/AdobeStock_591032696_Preview.jpeg') center/cover no-repeat; } */



/* 事例紹介　テスト */
.flex3 {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  margin-top: 2rem;
}
@media (max-width: 767px) {
    .flex3 {
      flex-direction: column;
  }
}

.flex3item {
  position: relative;
  width: 100%;
  /* height: 50vh; */
  clip-path: inset(0);
}
@media (max-width: 767px) {
    .flex3item {
      height: auto;
    }
}

.flex3item img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    height: 64vh;
    min-height: 500px;
    max-height: 600px;
}
@media (max-width: 767px) {
    .flex3item img {
        height: 46vh;
      min-height: 300px;
      max-height: 500px;
    }
}

.flex3_list {
  position: absolute;
  bottom: 1.5rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  color: #fff;
  text-align: end;

}
@media (max-width: 767px) {
    .flex3_list {
      justify-content: flex-end;
    }
}

.flex3_title {
  margin-bottom: 1rem;
  margin-left: 1rem;
  font-size: 2.4em;
  white-space: nowrap;
  font-weight: 600;
  text-shadow: 1px 1px 2px #333;
  z-index: 0;
}
@media (max-width: 767px) {
    .flex3_title {
      margin-left: 0;
      font-size: 2.2em;
    }
}

.flex3_title span {
  color: #2ec5d6;
  font-size: 3em;
  font-weight: bold;
  position: absolute;
  bottom: 3rem;
  left: -6rem;
}
@media (max-width: 767px) {
    .flex3_title span {
      bottom: 6rem;
      right: 0;
    }
}
/* .flex3item::before {
  counter-increment: number 1;
  content: counter(number, decimal-leading-zero) " ";
  color: #2ec5d6;
  font-size: 3em;
  font-weight: bold;
  position: absolute;
    bottom: 0;
    left: 2rem;
    font-size: 7.4em;
} */


.flex3_text {
  width: 180px;
  padding: .7rem ;
  font-size: 1.3em;
  font-weight: bold;
  text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin-right: 0;
	border-radius: 100vw;
	color: #fff;
	background: #2ec5d6;
  letter-spacing: 1;
}

/* テスト */
.filter_black {
		width: 100%;
    height: inherit;
    background-color: rgba(0,0,0,0.4);
}

.case_title {
  font-weight: bold;
	color: #fff;
}

.case_title:before {
  content: counter(listnum, decimal-leading-zero);
  color: #2ec5d6;
  font-size: 3em;
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 5px;
}

.casebtm {
	font-size: .6em;
	padding: .5rem 1.5rem;
	border-radius: 50px;
	background-color: #2EC5D6;
}


/* 動く背景色 */
.bk_color {
  position: relative;
  z-index: 0;
  background: linear-gradient(90deg, #ccffe5, #cdf3ff, #e8ffc2) fixed;
  background-size: 200% 200%;
  animation: GradietionAnimation 5s ease infinite;
  overflow: hidden;
}

@keyframes GradietionAnimation { 
  0%{background-position:0% 50%}
  50%{background-position:100% 50%}
  100%{background-position:0% 50%}
}

/* 会社情報の白背景ぼかし */
.bk_color::before {
  content: "";
  position: absolute;
  top: 120px;
  bottom: -200px;
  right: 0;
  left: 0;
  margin-left: auto;
  margin-right: auto;
  max-width: 1400px;
  width: 80%;
  background-color: rgb(255,255,255,1);
  box-shadow: 0 0 100px 80px #fff;
  border-radius: 550px 550px 0 0;
  z-index: -2;
}

 @media (max-width: 767px){
  .bk_color::before {
    
    box-shadow: 0 0 100px 140px #fff;
  }
 }

/* パララックス画像のぼかし */
.bk_color::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 200px;
  z-index: -1;
  background: linear-gradient( rgba(255,255,255,0) , #fff 80%);
}

/* 会社情報 */
#company {
  position: relative;
  z-index: 99;
}

.company_container {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 5rem;
    padding: 3rem 0;
    background-color: rgba(255, 255, 255, 0.8);
}
 @media (max-width: 767px) {
    .company_container {
    margin-top: 0;
    padding: 1rem 0 3rem;
    background-color: rgba(255, 255, 255, 0);
  }
}

.video-background {
    position: absolute;
    top: 260px;
    left: 0;
    width: 72%;
    height: 65vh;
    min-height: 500px;
    max-height: 600px;
    object-fit: cover;
    z-index: -1;
}
@media (max-width: 767px) {
    .video-background{
    display: none;

  }
}     

.companyInfoList {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 3rem;
  padding-right: 3rem;
}
@media (max-width: 767px) {
  .companyInfoList {
    gap: .5rem;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.companyInfoListItem {
  width: calc(100% / 3);
}
@media (max-width: 767px) {
  .companyInfoListItem {
    width: calc((100% - 1rem) / 2);
  }
}

.companyInfoListItemLink {
  color: white !important;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 260px;
}
@media (max-width: 767px) {
  .companyInfoListItemLink {
    height: 120px;
  }
}

/* .companyInfoListItemLink::before {
  content: "";
  z-index: 1;
  position: absolute;
  inset: 0;
  display: block; */
  /* background-color: rgba(24, 170, 158, 0.3);
  transition: background-color .3s; */
/* } */
/* .companyInfoListItemLink:hover::before {
  background-color: rgba(41, 204, 190, 0.6);
} */
.companyInfoListItemTitle {
  z-index: 2;
  position: absolute;
  top: 50%;
  left: 50%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  column-gap: .25rem;
  /* width: 100%; */
  width: auto;
  padding: 8px 10px;
  transform: translate(-50%, -50%);
  font-size: 1.6rem;
  font-weight: 500;
  text-shadow: 2px 2px 0 #555;
  background: rgb(0, 0, 0, 0.4);
  white-space: nowrap;
}
@media (max-width: 767px) {
  .companyInfoListItemTitle {
    font-size: 1.2rem;
  }
}
.companyInfoListItemImage {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale .3s;
}
.companyInfoListItemLink:hover .companyInfoListItemImage {
  opacity: unset;
  scale: 1.1;
}

.companyInfoListItemIcon {
  margin-top: .35rem;
  margin-left: 0;
  font-size: 1.2rem;
  transition: transform .3s;
}
@media (max-width: 767px) {
  .companyInfoListItemIcon {
    margin-top: 0;
    font-size: .75rem;
  }
}
.companyInfoListItemLink:hover .companyInfoListItemIcon {
  transform: translateX(7px);
}

.company_item {
    width: 30%;
    display: inline-block;
    text-align: center;
}
@media (max-width: 767px) {
    .company_item {
        width: calc(90% / 2);
        margin: 0
  }
}

.com_btn {
  margin:  50px auto 0;
}

/* グループ会社 */
.parallax_box {
  position: relative;
  top: 0;
}

.parallax_content {
  z-index: -1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding-bottom: 8rem;
  font-size: 3em;
  text-align: center;
  font-weight: 500;
  /* height: 46vh; */
  /* min-height: 400px; */
  background-position: center bottom 5%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
}
/* @media (max-width: 767px) {
    .parallax_content {
      height: 36vh; 
       min-height: 300px; 
    }
	} */

.parallax_contentlist {
    width: 100%;
    line-height: 1.4em;
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 1) 25%, rgba(255, 255, 255, 0) 100%);
}

.parallax_contentlist_items {
    width: 60%;
    min-width: 750px;
    margin: 0 auto;
    /* width: calc(100% / 3 -3rem); */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0rem;
    padding-bottom: 1rem;
    line-height: 1.6;
}
@media (max-width: 767px) {
    .parallax_contentlist_items {
        width: 100%;
        min-width: unset;
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: 1.4em;

    }
}

.parallax_contentlist_item {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    /* margin-right: 1.6em; */
    padding: .75rem 1rem;
}
@media (max-width: 767px) {
    .parallax_contentlist_item {
      width: calc(100% / 2);
      margin-right: 0;
      padding: .8rem .2rem;
    }
}
.parallax_contentlist_item_name {
  order: 1;
  font-size: .85rem;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .parallax_contentlist_item_name {
    font-size: .75rem;
  }
}
.parallax_contentlist_item_imgWrap {
  width: 100%;
}
.parallax_contentlist_item_img {
  order: 0;
  display: block;
  width: 100%;
  aspect-ratio: 280 / 173;
  object-fit: cover;
  padding-bottom: .5rem;
}

/* .parallax_contentlist_items::before {
    display: block;
    content: "";
    display: inline-block;
    width: 1em;
    height: 1em;
    background-color: rgba(63, 164, 231, 0.8);
    border-radius: 50%;
    margin-right: 0;
    margin-bottom: -.6em;
}
@media (max-width: 767px) {
    .parallax_contentlist_items::before {
      display: none;
    }
} */

.img_bg_01{
  background-image: url(../img/gr_bg.jpeg);
}

.mask::before {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 300 / 34;
    bottom: 0;
    right: 0;
    background-color: #fff;
    -webkit-mask-image: url(../img/line3.svg);
    mask-image: url(../img/line3.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: left;
    mask-position: 0 0;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    z-index: 998;
}
@media (max-width: 767px) {
  .mask::before {
      aspect-ratio: 300 / 36;
  }
}
.mask::after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 300 / 33;
    bottom: 0;
    left: 0;
    background-color: #fff;
    -webkit-mask-image: url(../img/line3.svg);
    mask-image: url(../img/line3.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: right;
    mask-position: 0 0;
    -webkit-mask-size: 100%;
    mask-size: 100%;
    z-index: 998;
    transform: scaleX(-100%);
}
@media (max-width: 767px) {
  .mask::before {
      aspect-ratio: 300 / 35;
  }
}

.parallax_box::after {
    content: "";
    position: absolute;
    width: 100%;
    aspect-ratio: 300 / 30;
    bottom: 0;
    left: 0;
    background-color: #29BCCC;
    -webkit-mask-image: url(../img/line.svg);
    mask-image: url(../img/line.svg);
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
    -webkit-mask-size: 100%;
    mask-size: 100%;
}

.gr_btn {
  position: absolute;
  left: 50%;
  bottom: 20%;
  transform: translateX(-50%);
  z-index: 1;
}
@media (max-width: 767px) {
  .gr_btn {
      top: 85%;
  }
}
@media (max-width: 576px) {
  .gr_btn {
      top: 80%;
  }
}

a.btn_s {
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: .5rem 1.5rem;
  font-size: .6em;
	border-radius: 100vw;
	color: #fff;
	background: #2ec5d6;
}
@media (max-width: 767px) {
    a.btn_s {
        padding: 15px;
          right: 0;
    }
	}

a.btn_s:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #2ec5d6;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}




/* big　btn */
a.big_btn {
  position: absolute;
  bottom: 10px;
  right: 0;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
	padding: 1rem 2.5rem;
  font-size: .6em;
	border-radius: 100vw;
	color: #fff;
	background: #2ec5d6;
}
@media (max-width: 767px) {
    a.big_btn {
        padding: 15px;
        right: 0;
    }
	}

a.big_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #2ec5d6;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}


/* normal　btn */
a.link_btn {
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	margin: auto;
  padding: .7rem 2.4rem;
  font-size: 1.6em;
  font-weight: bold;
	border-radius: 100vw;
  color: #fff;
	background: #2ec5d6;
}
@media (max-width: 767px) {
  a.link_btn {
      padding: 1rem;
      right: 1rem;
      bottom: 4.6rem;
  }
}

a.link_btn:hover {
	background-position: right center;
	background-size: 200% auto;
	-webkit-animation: pulse 2s infinite;
	animation: shad26 1.5s infinite;
	color: #fff;
}
@keyframes shad26 {
	0% {box-shadow: 0 0 0 0 #2ec5d6;}
	70% {box-shadow: 0 0 0 10px rgb(39 172 217 / 0%);}
	100% {box-shadow: 0 0 0 0 rgb(39 172 217 / 0%);}
}


/* フッター */
.footer {
    text-align: center;
    position: relative;
    width: 100%;
		background-color: #EEF5F8;
		font-size: 1.2em;
    padding-top: 3rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
}

	.footer_nav {
		position: relative;
		width: 100%;
    margin: 0 auto;
}

@media (max-width: 767px) {
  .footer_nav {
    padding: 2rem 1rem;
  }
}

.footer_navitem {
    display: flex;
		flex-wrap: wrap;
    flex-direction: column;
    list-style: none;
    padding: 0;
		text-align: left;
		gap: 1rem;
}
@media (max-width: 767px) {
    .footer_navitem {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
				gap: 1.2rem;
    }
	}

.footer_navitem i {
    margin-right: .5rem;
}

.footer_navitemlist {
    display: inline;
}
@media (max-width: 767px) {
  .footer_navitemlist {
      display: block;
      width: calc((100% - 1.2rem) / 2);
      text-align: center;
  }
}

.footer_navitemlist .midashi {
  color: inherit;
  font-size: 1.2rem;
  font-weight: 500;
}
@media (max-width: 767px) {
  .footer_navitemlist .midashi {
    font-size: 1.0rem;
  }
}

.footer_navitemlist a {
    text-decoration: none;
    color: #333;
}

.footer_navitemlist a:hover {
    opacity: .6;
}
@media (max-width: 767px) {
  .footer_navitemlist a {
    white-space: nowrap;
  }
}


.footer_navitemlist .req {
  padding: .8rem 2rem;
  border-radius: 50px;  
  color: #fff;
  background-color: #009b2c;
  font-weight: 600;
}

.footer_navitem_s {
    display: flex;
		flex-wrap: wrap;
    flex-direction: column;
    gap: .6rem;
    list-style: none;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
		text-align: left;
}

.footer_navitemlist_s {
    margin-left: .75rem;
    font-size: 1em;
}

.footer_navitemlist_s:first-child {
    margin-top: .5rem;
}

#inquiry_Button {
  margin-bottom: 15px;
}

.row {
  margin-right: 0;
}

.row > * {
  padding-right: 0;
}

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

@media (max-width: 767px) {
  .footer_layout {
    flex-flow: column-reverse;
  }
}

.gr_wrap {
  text-align: center;
}
.gr_subtitle {
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.3rem 3rem;
  border: 3px solid rgb(180, 217, 221);
  background-color: #fff;
  color: inherit !important;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
}
.gr_subtitle:hover {
  text-decoration: none;
}
@media (max-width: 767px) {
  .gr_subtitle {
      flex-direction: column-reverse;
      gap: .75rem;
      width: calc(100% - 1.6rem);
      margin-top: 30px;
      margin-left: auto;
      margin-right: auto;
      padding: 0.5rem;
      font-size: 0.7rem;
  }
}
.gr_subtitle:hover img {
  opacity: inherit;
}

.gr_icon {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  display: block;
  font-size: 1rem;
  color: #d9d9d9;
  
}

.iso_item {
	display: flex;
  align-items: center;
}

@media (max-width: 767px) {
  .iso_item {
    justify-content: center;
    gap: 20px;
  }
}

.iso_item img {
  width: 150px;
  height: auto;
}

@media (max-width: 767px) {
  .iso_item img {
    width: 120px;
    height: auto;
  }
}

.footer_info {
		padding: 1.5rem;
    margin-top: 30px;
		color: #fff;
		background-color: #2EC5D6;
    font-size: 1em;
    white-space: nowrap;
    box-shadow: inset 0 0 10px rgba(0,0,0,.05);
}
@media (max-width: 767px) {
    .footer_info {
        margin-top: 15px;
        font-size: .7em;
        font-weight: 600;
        white-space: unset;
    }
	}

/* ページトップ */
.pagetop {
  position: fixed;
  right: 3%;
  bottom: 20px;
  display: none;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  background: #2EC5D6;
  border: solid 3px #fff;
  border-radius: 100%;
  z-index: 1000;
}

@media (max-width: 767px) {
  .pagetop {
    right: 3%;
    bottom: 80px;
  }
}

#content .pagetop {
	bottom: 80px;
}

.pagetop:hover {
	opacity: 0.6;
}

.arrow {
 	width: 10px;
	height: 10px;
 	border-top: 3px solid #fff;
 	border-right: 3px solid #fff;
 	transform: rotate(-45deg);
	margin-top: 5px;
}