@charset "UTF-8";

/* Common ====================================== */

:root {
  --brightblue:#52BEC6;
  --bluegray:#738B93;
  --lightblue:#E1EDF6;
  --bg_lightgray:#F8F8F8;
}
html {
    scroll-padding-top: 60px;
    scroll-behavior: smooth;
}
body {
	font-family: 'Noto Sans JP', 'Mitr', sans-serif;
	color: #333;
	line-height: 2;
	position: relative;
	font-size: 14px;
}
main {
  margin: 60px 0 0 0;
  background-color: var(--bg_lightgray);
}
a {
	color: #fff;
	cursor: pointer;
}
small {
	font-size: 0.8em;
}

bold {
	font-weight: bold;
}

img {
	width: 100%;
}
.space {
	padding-top: 150px;
	width: 1000px;
}
.pc {
	display: none;
}
.sp {
	display: block;
}

@media screen and (min-width:768px){
  .pc {
    display: block;
  }
  .sp {
    display: none;
  }
  html {
    scroll-padding-top: 80px;
  }
  body {
  	font-size: 16px;
  }
}


/* header ====================================== */
header {
  position: fixed;
  top: 0;
  z-index: 1000;
  width: 100%;
}

.header-container{
	display: flex;
	height: 60px;
	align-items: center;
	background-color: #fff;
}

.header-logo{
	width: 80px;
  margin-left: 15px;
  display: flex;
  align-items: center;
}
.logo-wrap{
	display: flex;
  margin-right: auto;
  justify-content: center;
  align-items: center;
}
.logo-text{
  display: flex;
  color: #333;
  font-size: 12px;
  align-items: center;
  margin-left: 10px;
}
#burger-nav{
  position:fixed;
  z-index: -1;
  opacity: 0;/*はじめは透過0*/
  /*ナビの位置と形状*/
  top: 60px;
  width: 100%;
  height: 100vh;/*ナビの高さ*/
  background: #fff;
  /*動き*/
  transition: all 0.3s;
  visibility: hidden;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#burger-nav.panelactive{
  opacity: 1;
  z-index: 999;
  visibility: visible;
}

/*ナビゲーションの縦スクロール*/
#burger-nav.panelactive #burger-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;/*表示する高さ*/
  padding: 0 20px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#burger-nav.panelactive > #burger-nav-list > ul{
  display: block;
  position: relative;
  z-index: 999;
}

/*リストのレイアウト設定*/

#burger-nav ul li{
  position: relative;
  list-style: none;
  text-align: center;
  font-size: 16px;
  font-weight: 600;
}

#burger-nav ul li a{
  color: #333;
  text-decoration: none;
  padding: 15px 35px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/*ヘッダーアコーディオン*/
.accordion {
  width: 100%;
  margin: 30px auto 20px;
  background: #FFF;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  display: none;
}
.accordion > li {
  border-bottom: 1px solid var(--lightblue);
}
.header-nav-pc{
  display: none;
}
/*==1050px以上の形状*/
@media screen and (min-width: 1050px){
  .header-container{
    height: 80px;
  }
  .header-logo{
    margin-left: 25px;
    width: 140px;
  }
  .logo-text{
    font-size: 16px;
  }
  .header-nav-pc {
    display: flex;
    align-items: center;
  }
  .header-nav-lists {
    display: flex;
    gap: 40px;
    align-items: center;
    margin: 0 30px 0 0;
  }
  .header-nav-list {
    width: auto;
    height: 80px;
    position: relative;
    transition: all .3s;
  }
  
  .header-nav-list a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    letter-spacing: 0.05em;
    font-weight: 600;
    transition: all .3s;
    cursor: pointer;
  }
  .header-nav-list > a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: var(--bluegray);
    bottom: 20px;
    transform: scale(0, 1);
    transform-origin: right top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の右端*/
    transition: transform 0.3s;  /*変形の時間*/
  }
  .header-nav-list > a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
    transform-origin: left top; /*左から右に向かう*/
  }

}

/*========= ボタンのためのCSS ===============*/
.burger-btn{
  position: relative;
  z-index: 9999;/*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height:50px;
}

/*×に変化*/
.burger-btn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background-color: var(--bluegray);
  width: 60%;
}
.burger-btn span:nth-of-type(1) {
  top:12px;
}
.burger-btn span:nth-of-type(2) {
  top:23px;
}
.burger-btn span:nth-of-type(3) {
  top:34px;
}
.burger-btn.active span:nth-of-type(1) {
    top: 18px;
    left: 13px;
    transform: translateY(6px) rotate(-45deg);
    width: 65%;
}
.burger-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.burger-btn.active span:nth-of-type(3){
    top: 30px;
    left: 13px;
    transform: translateY(-6px) rotate(45deg);
    width: 65%;
}
@media screen and (min-width: 1050px){
  .burger-btn{
    display: none;
  }
}

/* mainv ====================================== */

.mainimg-area {
  width: 100%;
  height: 80vh;
  background-image: url(../images/mainv_sp.png);
  background-size:  cover;
  position: relative;
  font-family: "toppan-bunkyu-midashi-go-std", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.mainimg-area_copy {
  position: absolute;
  top: 20%;
  left: 10%;
  display: flex;
  flex-flow: column;
  gap: 20px;
  width: 80%;
}
.mainimg-area_maintext {
  font-size: clamp(24px, 4vw, 60px);
  line-height: 1.8em;
}
.mainimg-area_maintext>span {
  font-family: "ab-megadot9", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 5px;
}
.mainimg-area_maintext>span:before {
  content:"<";
  color: var(--brightblue);
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-right: 5px;
}
.mainimg-area_maintext>span:after {
  content:">";
  color: var(--brightblue);
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-left: 5px;
}
.mainimg-area_subtext {
  font-size: clamp(14px, 2vw, 32px);
}

@media screen and (min-width: 768px){
  .mainimg-area {
    height: 95vh;
    background-image: url(../images/mainv_pc.png);
  }
}

/* copy ====================================== */
.maincopy-area {
  padding: 80px 30px;
  text-align: center;
  background-color: #fff;
}
.maincopy-area_wrap {
  position: relative;
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
}
.maincopy-area_text {
  position: relative;
  z-index: 1;
}
.maincopy_span {
  font-family: "ab-megadot9", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin: 0 5px;
}
.maincopy_span:before {
  content:"<";
  color: var(--brightblue);
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-right: 5px;
}
.maincopy_span:after {
  content:">";
  color: var(--brightblue);
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 900;
  font-style: normal;
  margin-left: 5px;
}
.p_br {
  margin: 0 0 1em 0;
}
.maincopy-area_img01 {
  position: absolute;
  top: -30%;
  left: 0%;
  width: 20vw;
  max-width: 120px;
  animation: floating01 3s ease-in-out infinite alternate-reverse;
}
.maincopy-area_img02 {
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 20vw;
  max-width: 100px;
  animation: floating02 2s ease-in-out infinite alternate-reverse;
}

/* Animation */

@keyframes floating01 {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

@keyframes floating02 {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}

@media screen and (min-width: 768px) {
  .maincopy-area_wrap {
    max-width: 720px;
  }
  .maincopy-area_img01 {
    top: 0%;
    left: -5%;
  }
  .maincopy-area_img02 {
    bottom: -5%;
    right: 0%;
  }
}

/* contents common ====================================== */

h2 {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
h2:before,
h2:after {
  color: var(--brightblue);
  font-weight: 900;
  font-style: normal;
  line-height: 1;
  font-size: 1.5em;

}
h2:before {
  content:"<";
}
h2:after {
  content:">";
}
h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 1em 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
h4 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px 0;
}
h4:before {
  content:"///";
  color: var(--bluegray);
  font-weight: 900;
  font-style: italic;
  margin-right: 10px;
}
.content-area {
  padding: 0 30px;
  margin: 100px auto;
  max-width: 990px;
}
.content-area>article {
  margin: 30px 0 0 0;
}

.content-area article:first-of-type {
  margin: 20px 0 0 0;
}

a.content_btn {
  display: inline-block;
  width: 100%;
  background-color: var(--brightblue);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 1em;
  border-radius: 15px;
}
span.linkout:after {
  font-family: "Font Awesome 5 Free";
  content: '\f14c';
  font-weight: 900;
  margin: 0 0 0 5px;
}

@media screen and (min-width: 768px){
  h2 {
    font-size: 36px;
    gap: 15px;
  }
  h3 {
    font-size: 32px;
  }
  h4 {
    font-size: 24px;
  }
  .content-area>article {
    margin: 80px 0 0 0;
  }
}


/* 事業内容 ====================================== */
.workicon {
  width: 35px;
}
.content-work_wrap {
  display: flex;
  flex-flow: column;
  margin: 0 auto 50px auto;
  position: relative;
}
.content-work_img {
  width: 90%;
  max-width: 450px;
}
.content-work_text {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.2em 1em 1.2em 1.2em;
  width: 90%;
  margin: -20px 0 0 auto;
}
.content-work_text>aside {
  margin: 10px 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.content-work_ex {
}
.content-work_ex>span {
  display: inline-block;
  background-color: var(--lightblue);
  padding: 5px 15px;
}
.content-work_ex>span:before {
  content:"#";
  color: var(--bluegray);
  font-weight: 600;
  font-style: normal;
  margin-right: 5px;
}

@media screen and (min-width: 768px){
  .workicon {
  width: 50px;
  }
  .content-work_wrap {
  margin: 0 auto 100px auto;
  }
  .content-work_text {
    position: absolute;
    top: 30%;
    left: 40%;
    width: 60%;
    max-width: 630px;
  }

}

/* 取り組み ====================================== */
.content-initiative_wrap {
  display: flex;
  flex-flow: column;
}
.content-initiative_img {
  width: 100%;
}
.content-initiative_text {
  margin: 20px 0 0 0;
}
@media screen and (min-width: 768px){
  .content-initiative_wrap {
  flex-flow: wrap;
  gap: 30px;
  }
  .content-initiative_img {
    width: calc(50% - 15px);
  }
  .content-initiative_text {
    width: calc(50% - 15px);
  }
}

/* 会社概要 ====================================== */
.content-office_wrap {
  display: flex;
  flex-flow: column;
  margin: 0 0 30px 0;
}
.content-office_img {
  width: 100%;
}
.content-office_text {
  margin: 20px 0 0 0;
}
table.office_info th {
  width: 20%;
  min-width: 60px;
  font-weight: 700;
}
table.office_info th span {
  border-bottom: #ccc solid 2px;
  display: block;
}
table.office_info td {
  padding: 0 0 0 1em;
}

@media screen and (min-width: 768px){
  .content-office_wrap {
    flex-flow: wrap;
    gap: 30px;
  }
  .content-office_img {
    width: calc(50% - 15px);
  }
  .content-office_text{
    width: calc(50% - 15px);
  }
}

/* 採用情報 ====================================== */
.recruit-area {
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)),url(../images/recruit_bg.jpg);
  background-size:  cover;
  background-position: bottom;
  width: 100%;
  padding: 80px 30px;
  margin: 0 0 80px 0;
}
.recruit-area_wrap {
  display: flex;
  flex-flow: column;
  gap: 30px;
  text-align: center;
  margin: 30px 0 0 0;
  justify-content: center;
}
a.rec_btn{
  display: inline-block;
  width: 100%;
  background-color: var(--brightblue);
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 1em;
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

a.rec_btn_stop{
  display: inline-block;
  width: 100%;
  background-color: #999999;
  color: #fff;
  text-align: center;
  font-weight: 700;
  padding: 1em;
  border-radius: 15px;
  cursor: default;
}

@media screen and (min-width: 768px){
  .recruit-area_wrap {
    flex-flow: wrap;
    max-width: 990px;
    margin: 30px auto 0 auto;
  }
  a.rec_btn {
    width: calc(50% - 30px);
    padding: 2em;
  }
  a.rec_btn_stop {
    width: calc(50% - 30px);
    padding: 3em;
  }
}

/* お問い合わせ ====================================== */
.cta-area {
  padding: 0 30px 80px 30px;
  margin: 80px 0 0 0;
  text-align: center;
}
.cta-area_wrap {
  display: flex;
  flex-flow: column;
  gap: 10px;
  justify-content: center;
  align-items: center;
  margin: 20px 0 30px 0;
  background-color: #fff;
  padding: 20px 0;
  border-radius: 20px;
}
.cta_title {
  font-family: "corporate-logo-ver2", sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 16px;
}
.cta_tell {
  font-size: 24px;
  font-weight: 700;
}
.cta_tell:before {
  font-family: "Font Awesome 5 Free";
  content: '\f095';
  font-weight: 900;
  margin: 0 10px 0 0;
}

@media screen and (min-width: 768px){
  .cta-area {
    max-width: 990px;
    margin: 80px auto 0 auto;
  }
  .cta_title {
    font-size: 24px;
  }
}

/* footer ====================================== */
.footer-wrap {
  display: flex;
  flex-flow: column;
  padding: 30px;
  gap: 15px;
}
.footer-wrap_map {
  width: 100%;
  max-width: 100%;
}
.footer-wrap_map iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}
.copyright {
  font-size: 14px;
  text-align: center;
}

@media screen and (min-width: 768px){
  .footer-wrap {
    flex-flow: wrap;
    max-width: 990px;
    margin: 0 auto;
    gap: 30px;
    padding: 80px 30px;
  }
  .footer-wrap_map {
    width: calc(50% - 15px);
  }
  .footer-wrap_text {
    width: calc(50% - 15px);
  }
}

/* うごきCSS ====================================== */
.fadeUpTrigger,
.blurTrigger {
    opacity: 0;
}

.blur {
  animation-name: blurAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
}
@keyframes blurAnime {
  from {
    opacity: 0;
    filter: blur(10px);
    transform: scale(1.02);
  }
  to {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: both;
  opacity: 0;
}

.fadeOut {
  animation: fadeOutAnime .8s both;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOutAnime {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(100px); }
}

/*maincopy*/
.bgextend {
  animation-name: bgextendAnimeBase;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to{
    opacity: 1;
  }
}
.bgLRextend::before {
  animation-name: bgLRexetndAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
@keyframes bgLRexetndAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgapper {
  animation-name: bgextendAnimeSecond;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}