@charset "UTF-8";

body{
    font-size: clamp(14px, 2.5vw, 16px);
    animation-name:fadeInAnime;
    animation-duration:2s;
    animation-fill-mode:forwards;
    opacity:0;
    line-height: 1.8;
	overflow-x: auto;
	text-align:justify;
	-webkit-overflow-scrolling: touch;
	color: #231815;
	font-family: "Zen Kaku Gothic New", sans-serif;
  	font-weight: 300;
  	font-style: normal;
    }
    @keyframes fadeInAnime{
      from {
        opacity: 0;
      }
      to {
        opacity: 1;
      }
    }
html {
	font-weight: 400;
	font-style: normal;
  }
*{box-sizing: border-box;}
.fb--01{
	font-weight: 500;
}
.fb--02{
	font-weight: 400;
}
a {
    transition: 0.5s;
}
a:hover {
    opacity: 0.5;
}
a.link-line{
	border-bottom: 1px solid var(--pink);
	padding-bottom: 1px;
}
:root {
	--blue--01: #2b3f49;
	--blue--02: #edf0f2;/* 薄い青 */
	--blue--03: #004480;
	--light_gray: #f1f6f5;
	--green: #4faa3e;
	--orange: #f49e00;
	--yellow: #fed600;
	--pink: #ea5e87;
	--wh: #fff;
	--base: #231815;
	--font-b: 500;
}

/* カラー */
.back_light_gray{background-color: var(--light_gray)}

.back_yellow_lt{ background-color: #fffae3; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_green_lt{ background-color: #edf7ea; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_pink_lt{ background-color: #fdefea; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}
.back_blue_lt{ background-color: #d6f1fa; border-radius: 40px; margin: 60px 5% 0 ; padding: 60px 0;}

/* タイトルまわり */
.ttl--01{
	font-size: 18px;
	color: var(--blue--03);
	font-weight: 500;
} 
.ttl--02{
	background-color: var(--blue--03);
	color: #fff;
	padding: 5px 10px;
	margin-block: 30px 10px;
}
.ttl--03{
	font-size: 18px;
	margin-bottom: 10px;
	font-weight: 500;
}
.page_ttl{
	text-align: center;
	font-size: 40px;
	margin-block: 30px 60px
}

/* テキストインデント */
.text_indent--01{
	text-indent: -1em;
	margin-left: 1em;
}

/* テキスト */
.txt--01{font-size: clamp(25px, 2.5vw, 48px);}    
.txt--02{font-size: clamp(16px, 2.5vw, 23px);}    
.txt--03{font-size: clamp(14px, 2.5vw, 18px);}    
.txt--04{font-size: clamp(14px, 2.5vw, 21px);}    
.txt02{font-size: 20px;}
.txt03{font-size: 13px;}

/* マージン */
.mt10px{margin-top: 10px}
.mt20px{margin-top: 20px}
.mt30px{margin-top: 30px !important}

.mb10{margin-bottom: 10px}
.mb20{margin-bottom: 20px}
.mb30{margin-bottom: 30px}

.pt--01{padding-top:2%;}
.pt--02{padding-top:5%;}
.pt--03{padding-top:3%;}
.pt--04{padding-top:7%;}
@media screen and (max-width: 767px) {
.flex_column{
	flex-flow: column;
}
.flex-start{
	align-items: center !important;
}
}/* //media */

/* 飾り */
.marker {
    background: linear-gradient(transparent 50%, yellow 50%);
	font-size: 18px;
}

/* レイアウト関連 wrap flex center img100 外部リンク */
.border--01{
	border: 1px solid var(--blue--03);
	border-radius: 10px;
	padding: 30px;
	margin-top: 40px;
}
.border--02{
	border: 1px dashed var(--blue--03);
	border-radius: 10px;
	padding: 30px;
	margin-top: 40px;
}
.position_re{
	position: relative
}
.wrap--01{
	padding-inline: 5%;
}
.wrap--02{
	padding-inline: 10%;
}
.box_center{
	display: table;
	margin-inline: auto;
}
.position-re{
	position: relative
}
.flex--01{
	display: flex;
	gap: 50px;
}
.flex--02{
	display: flex;
	gap: 30px;
}
.flex-direction-row{
  flex-direction: row-reverse;
}
.justify--01{
	justify-content: space-evenly;
}
.justify--02{
	justify-content: center;
}
.justify--03{
	justify-content: space-around;
}
.align--01{
	align-items: center;
}
.border_none{
	border: none !important
}
.outside_link::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url("../img/common/link.svg") no-repeat center / contain;
  margin-right: 6px; /* テキストとの間隔 */
  vertical-align: middle;
}

@media screen and (min-width:768px) and ( max-width:1200px) {
.wrap{
	padding-inline: 0%;
}
.wrap--02{
	padding-inline: 5%;
}
}
@media screen and (max-width: 767px) {
.flex_column{
	flex-flow: column;
}
.flex-start{
	align-items: center !important;
}
}/* //media */

.t_center{text-align: center}
.t_center_left{text-align: center;}
.t_right{text-align :right}
@media screen and (max-width: 767px) {
.t_center_left{text-align: left !important;}
}/* //media */

.img100{ width: 100%}

/* ボタン */
.btn--01 {
	display: table;
  	margin: 20px auto 0;
  	border: 0.5px solid var(--base);
  	padding: 3px 15px 4px;
  	border-radius: 8px;
	font-weight: 400;
}
.btn--01:hover {
	background-color: rgb(153, 153, 153, 1);
	border: none;
	color: #fff;
	opacity: 1;
}



.btn--pink a{
	background-color: var(--pink)
}
.btn--orange a{
	background-color: var(--orange)
}
.btn--green a{
	background-color: var(--green)
}
.btn--02 {
  border-radius: 30px;
  padding: 5px 35px 6px;
  font-size: clamp(20px, 2.5vw, 30px);
  color: #fff;
  display: table;
  margin-inline: auto;
	text-align: center;
}
/* ====================================================
 ヘッダー 
 ====================================================*/
#header {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
  padding: 4px 5% 0 2%;
  align-items: baseline;
  letter-spacing: 1px;
}
#header.page_header{
	height: 80px;
	background-color: rgba(0, 0, 0, 0.6);
}
#header .header_logo--01 {
  	font-size: 23px;
	color: #fff;
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}
#header .header_logo--01 img{
  	width: 55px;
	margin-right: 5px;
}
#header .header_nav{
	display: flex;
	font-size: 14px;
}
#header .header_nav ul{
	display: flex;
	gap: 15px;
	flex-wrap: wrap;
	align-items: center;
}
#header .header_nav ul li a{
	color: #fff;
}
#header .header_nav .header_nav_tel {
  font-size: 19px;
  letter-spacing: 3px;
}
#header .header_nav .header_nav_form a{
	border: 1px solid #fff;
  	border-radius: 8px;
  	padding: 4px 15px 5px;
  	text-align: center;
}
.header_fp{
  	position: absolute;
  	top: 90px;
  	right: 5%;
  	z-index: 1;
	width: 200px;
}



@media screen and (min-width:768px) and ( max-width:1200px) {

}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
#header.scroll-nav {
	background-color: rgba(0, 0, 0, 0.6);
	height: 80px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	  align-items: center;
}
#header .header_nav_fp {
	display: none
}
#header.scroll-nav .header_nav_fp {
	display: block;
	width: 100px;
}






.contact-link{
	position: fixed;
	top: 150px;
	right: 0;
	z-index: 2;
}
.contact-link a{
	background-color: var(--green);
	display: block;
	padding: 20px 20px;
	border-radius: 20px 0 0 20px;
}
.contact-link a:hover{
	opacity: 1;
	background-color: var(--pink);
}



/* ====================================================
 フッター
 ====================================================*/
.footer_contact_recruit{
	display: flex;
	justify-content: center;
	gap: 100px;
	margin-top: 100px;
}
.footer_contact_recruit li{
	width: calc(100% / 2 - 400px)
}
.footer_contact_recruit a{
	display: block;
	border: 1px solid var(--base);
	border-radius: 20px;
	padding: 30px;
	text-align: center;
	font-size: 20px;
}

.footer_works{
	margin-top: 100px;
	padding-inline: 10%;
}
.footer_works p{
	position: absolute;  /* 親に relative が必要 */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
	color: #fff;
	font-size: 60px;
}
.footer_sns{
}
.footer_sns_list {
  display: flex;
  justify-content: end;
  gap: 30px;
  margin-top: 10px;
  align-items: center;
}
.footer_sns_list li {
  width: calc(60% / 2 - 30px);
}

#footer{
	border-top: 1px solid var(--base);
	margin: 90px 5%;
}
#footer .footer_wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 60px 0;
  background-color: var(--wh);
  border-radius: 40px;
}
#footer .footer_wrap .footer_fp{
	width: 200px;
}
#footer .footer_ttl h1{
	width: 300px
}
#footer address{
	margin-top: 30px;
	font-size: 14px;
}
#footer .footer_nav ul{
	width: 500px;
	display : flex;
	gap: 1em;
	flex-wrap: wrap;
}

/* コンテンツ
 ====================================================*/
section .head{
	margin: 50px auto 40px;
	text-align: center;
}
section .head p{
	font-size: 11px;
}
section .head h2{
	display: inline-block;
	border-bottom: 1px solid var(--base);
	font-size: clamp(24px, 3vw, 40px);
	line-height: 1.4;
	white-space: nowrap
}
@media screen and (max-width: 767px) {
	section .head {
  margin: 30px auto 20px;
}
}
.box01{
	width: min(1160px, 90%);
	margin: 90px auto;
	padding: 1px 5% 50px;
	border-radius: 30px;
}
.box02{
	width: min(1000px, 100%);
  	padding: 30px 5% 40px !important;
  	border-radius: 30px;
}
.box03{
	width: min(800px, 100%);
  	padding: 30px 0 40px;
	margin: 0 auto;
  	border-radius: 30px;
}
@media screen and (max-width: 767px) {
.box01-sp {
  margin: -50px auto;
}
}

/* ページ
 ====================================================*/
main#page{
	padding-top: 120px;
}
.page-wrap{
	width: min(1000px, 90%);
	padding: 110px auto;
	margin-inline: auto;
}
.page_sec--01{/* バックに色がある */
	background-color: var(--blue--02);
	padding-block: 100px;
}

.content--01{/* 共通コピー */
	margin: 30px 20%;
	display: flex;
	gap: 40px;
	justify-content: center;
	margin-top: 30px;
}
.content--01 dt{
	font-weight: 500;
	color: var(--blue--03);
	font-size: 18px;
	white-space: nowrap;
}
.content--01 dd > p:nth-child(2){
	border-top: 1px dashed var(--blue--01);
	padding-top: 5px;
	margin-top: 8px;
}
.content--01 .ttl{
	font-weight: 500;
	color: var(--blue--03);
}

/* 横に無限スクロール
 ====================================================*/
 @keyframes infinity-scroll-left {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-100%);
    }
}
.scroll-infinity__wrap {
    display: flex;
    overflow: hidden;
}

.scroll-infinity__list {
    display: flex;
    padding: 0
}
.scroll-infinity__list li{
	width: 360px;
  	padding-right: 20px;
    list-style: none;

}
.scroll-infinity__list li img{
  	width: 100%;
	border-radius: 20px;
}
.scroll-infinity__list--left {
    animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

/*540px以下*/
@media only screen and (max-width: 540px) {
.scroll-infinity__list li{
  width: 230px;
  padding-right: 20px;
      list-style: none;
}
}

  


/* スマホ　フッター固定
 ====================================================*/
/*リンクを右下に固定*/
#page-sp {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-sp.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-sp.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

/* ヘッダー追従のための
 ====================================================*/

@media screen and (max-width: 767px) {
.sp-kotei{
  z-index: 2;
}
.sp-kotei ul{
	position: fixed;
    display: flex;
    bottom: 5px;
    z-index: 2;
    justify-content: center;
    gap: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: auto;
	padding: 0 1%;
}
.sp-kotei img{
  width: 100%;
}
}

/* ナビゲーションのためのCSS
 ====================================================*/
#g-nav{
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position:fixed;
	z-index: -1;
	opacity: 0;/*はじめは透過0*/
    /*ナビの位置と形状*/
	top:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background: var(--blue--01);
    /*動き*/
	transition: all 0.3s;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive{
	opacity: 1;
	z-index:999;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    z-index: 999;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
	width: 100%;
}

#g-nav.panelactive ul {
    display: block;
}

/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
    text-align: center; 
}
#g-nav li a{
	text-decoration: none;
	padding:10px;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	color: #fff;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: fixed;
  z-index: 9999;
  top: 15px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
	
/*×に変化*/	
.openbtn span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 0px;
  height: 1px;
  border-radius: 2px;
  background-color: #fff;
  width: 90%;
  z-index: 99999999;
}

.openbtn span:nth-of-type(1) {
	top:15px;	
}

.openbtn span:nth-of-type(2) {
	top:23px;
}

.openbtn span:nth-of-type(3) {
	top:31px;
}

.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 60%;
}

.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}

.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 60%;
}

/* ====================================================
 sp　ここから
 ====================================================*/
@media screen and (max-width: 767px) {

/* sp カラー */
.back_yellow_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_green_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_pink_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}
.back_blue_lt{ border-radius: 30px; margin: 40px 0% 0 ; padding: 10% 5%;}

/* sp タイトルまわり */
.ttl_group img{
	width: auto !important;
	height: 35px;
} 
.page_ttl{
	font-size: 30px;
}
/* ====================================================
 sp ヘッダー 
 ====================================================*/
#header{
	height: 80px;		
	padding-inline: 0
}
#header .header_logo--01 {
	width: auto;
	font-size: 18px;
	margin: 10px 0 0 2%;
}
#header .header_logo--01 img{
	width: 50px;
}
#header.scroll-nav {
    height: 60px;
    padding-bottom: 10px;
}
.openbtn{
	top: 18px;
}
#header .header_nav {/*ヘッダーナビをフローティング*/
    position: fixed;
    display: flex;
    bottom: 0;
    background-color: var(--blue--01);
    font-size: 14px;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
    padding: 20px 0;
    justify-content: center;
    letter-spacing: 0;
  }
#header .header_nav .header_nav_form a {
  border: none;
  border-radius: 8px;
  padding: 0;
}
#header .header_nav ul {
  display: flex;
  gap: 0px;
  align-items: center;
}
 #header .header_nav ul li + li {
    border-left: 0.5px solid #fff;
    padding-inline: 10px;
  }
#header .header_nav .header_nav_tel {
	font-size: 14px;
	letter-spacing: 0px;
	padding-right: 10px;
}
/* ====================================================
 sp フッター
 ====================================================*/
#footer .footer_ttl h1 {
	width: 230px;
	margin-inline: auto;
}
#footer .footer_wrap {
  padding: 30px 5%;
}
#footer .map {
  height: 300px;
}
address {
  text-align: center;
}
#footer .footer_nav ul {
  width: 100%;
  display: flex;
  gap: 0 2em;
  flex-wrap: wrap;
  margin-block: 40px;
}
#footer .footer_wrap .footer_fp {
  width: 150px;
  margin-inline: auto;
}
.footer_contact_recruit {
  gap: 10px;
  margin-inline: 5%;
}	
.footer_contact_recruit li {
  width: calc(100% / 2 - 10px);
}
.footer_contact_recruit a {
  padding: 20px 0px;
  text-align: center;
  font-size: 16px;
}
.footer_works p {
  font-size: 30px;
}
	

.content--01{/* 共通コピー */
	margin: 30px 10%;
	gap: 10px;
	flex-flow: column
}

}/* // sp　ここまで */


/* ====================================================
 ふわっと
 ====================================================*/
.fade-in-up {/* その場で */
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



.fadein {/* スクロールで */
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.fadein.show {
  opacity: 1;
  transform: translateY(0);
}

/* 下で止まるページトップ
 ====================================================*/
/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom: 30px;
	width: 60px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

