@charset "utf-8";
/* CSS Document */

/*---------------------------------------
sp
---------------------------------------*/

@media(max-width: 768px) {

body{
  font-family: 'Noto Sans JP', sans-serif;
  background-color: #fff;
  font-size: 1.5rem;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  min-width: 100%;
}

.pc{
    display: none;
}
.sp{
    display: block;
}
  
.inner {
    padding: 0 1%;
    max-width: 100%;
}
.inner02 {
    max-width: 100%;
    margin-bottom: 200px;
}
  
/*---------------------
*　下層ページ共通
---------------------*/
#about,
#works,
#people,
#recruit,
#contact{
  min-width: 100%;
}
.header_under .openbtn1 span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  background-color: #707070;
}

.header_under .openbtn1.active span {
   background-color: #fff;
}
  
  
  
/*---------------------
*　section共通
---------------------*/
.under_section{
  padding-top: 60px;
}
.section_title h1{
  padding-bottom: 5px;
}
.section_sabtitle{
  line-height: 2;
  margin-bottom: 134px;
  text-align: center;
}
.section_icon{
    font-size: 1.4rem;
    padding: 15px;
    border: 1px solid #fff;
    margin-bottom: 7px;
    margin-left: 70px;
    width: 165px;
    text-align: center;
    letter-spacing: 0.1em;
}
.section_text{
    line-height: 2;
}
.under_title{
  font-size: 2.2rem;
  margin: auto;
  text-align: center;
}
.under_title{
  font-size: 2.2rem;
  margin: auto;
  text-align: center;
  position: relative;
  margin-bottom: 10px;
}
.under_title::after {
  content: '';
  width: 52px;
  height: 1px;
  display: inline-block;
  background-color: #707070;
  position: absolute;
  bottom: -10px;
  left: calc(50% - 26px)
}


/*---------------------
*　ボタン
---------------------*/
/* クリックしたら波紋が広がる */
.btn{
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*はみ出す波紋を隠す*/
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display:inline-block;
  background: #fff;
  color: #333;
  padding: 17px 28px;
  border-radius: 25px;
  outline: none;
  width: 174px;
  height: 49px;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.09em;
}
.btn::after {
  content: "";
  /*絶対配置で波紋位置を決める*/
  position: absolute;
  top: 0;
  left: 0;
  /*波紋の形状*/
  background: radial-gradient(circle, #fff 10%, transparent 10%) no-repeat 50%;
  transform: scale(10, 10);
  /*はじめは透過0に*/
  opacity: 0;
  /*アニメーションの設定*/
  transition: transform 0.3s, opacity 1s;
}
/*クリックされたあとの形状の設定*/
.btn:active::after {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.3;
}

/*---------------------
*　六角形のアイコン
---------------------*/
/*白*/
.hexagon-w {
  margin-right: 5px;
  width: 25px;
  height: 20px;
  clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #fff;
}
/*オレンジ*/
.hexagon-o {
  margin-right: 5px;
  width: 25px;
  height: 20px;
  clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #DDC190;
}
/*青*/
.hexagon-b {
  margin-right: 5px;
  width: 25px;
  height: 20px;
	clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #4D6B94;
}
/*緑*/
.hexagon-m {
  margin-right: 5px;
  width: 25px;
  height: 20px;
	clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #81905E;
}
/*淡いグレー*/
.hexagon-e {
  margin-right: 5px;
  width: 25px;
  height: 20px;
	clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #8B9A98;
}
/*グレー*/
.hexagon-g {
  margin-right: 5px;
  width: 25px;
  height: 20px;
	clip-path: polygon(25% 0, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
	background: #565656;
}



/*---------------------
*　header
---------------------*/
.header {
  top:0;
  left: 0;
  position: fixed;
  transition: color 0.4s ease-out;
  width: 100%;
  z-index: 1;
  /* headerに余白を作る */
  padding: 5px 0;
}
.header_inner{
  margin: 0 3%;
}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header.scroll-nav {
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
header .logo_w{
  display:block
}
header.scroll-nav .logo_w{
  display: none;
}
header .logo_g{
  display:none
}
header.scroll-nav .logo_g{
  display: block;
}
/*下層ページのヘッダー*/
.header_under {
  top:0;
  left: 0;
  position: fixed;
  transition: color 0.4s ease-out;
  width: 100%;
  z-index: 1;
  /* headerに余白を作る */
  padding: 5px 0;
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
  /* 背景を白にする */
  background: #fff;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
/* ロゴに関するスタイル */
.header-logo {
    width: 110px;
}


/*---------------------
*　ハンバーガーボタン
---------------------*/
.openbtn1{
  position: relative;
  width: 50px;
  height:50px;
  display: inline-block;
  background-color: transparent;
  z-index: 1000;
}
/*ボタン内側*/
.openbtn1 span{
  display: inline-block;
  transition: all .5s;/*アニメーションの設定*/
  position: absolute;
  left: 15px;
  height: 1px;
	background-color: #fff;
}
/*スクロールしたらボタン内側グレー*/
.scroll-nav .openbtn1 span{
	background-color: #494949;
}
.openbtn1 span:nth-of-type(1) {
  top: 16px;
  width: 34px;
}
.openbtn1 span:nth-of-type(1) .active{
  opacity: 0;
}
.openbtn1 span:nth-of-type(2) {
  top: 32px;
  width: 24px;
}
.openbtn1 span:nth-of-type(2) .active{
  opacity: 0;
}

.openbtn1.active {
  border-radius: 50%;
  border: solid 1px #fff;
  width: 34px;
  height: 34px;
  margin-top: 15px;
}
.openbtn1.active span{
	background-color: #fff;
}
.openbtn1.active span:nth-of-type(1) {
  top: 10px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  top: 22px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}


/*------------------------
*　ハンバーガーボタンクリック時グローバルメニュー
------------------------*/
#g-nav{
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position:fixed;
  z-index: 999;
  /*ナビのスタート位置と形状*/
  top:-120%;
  right:0;
  width: 100%;
  height: 100vh;/*ナビの高さ*/
  background:rgba(72,72,71,0.9);
  /*動き*/
  transition: all 0.6s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 100%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
/*リストのレイアウト設定*/
.globalMenu_item h1{
  width: 100%;
  position: absolute;
  top: -10%;
  left:50%;
  transform: translate(-50%,-50%);
}
.globalMenu_item h1 img{
  width: 116px;
}
/*ナビゲーション*/
.globalMenu_item {
  position: absolute;
  z-index: 999;
  top:55%;
  left:50%;
  transform: translate(-50%,-50%);
}
/*リストのレイアウト設定*/
.globalMenu_item li{
  list-style: none;
  width: 200px;
  margin: 0 auto;
}
.globalMenu_item li a{
	color: #fff;
	text-decoration: none;
	padding:20px;
	display: block;
	letter-spacing: 0.1em;
	/* font-weight: bold; */
}
.globalMenu_item h1 img.sp {
    display: inline;
}
.globalMenu_item h1 img.pc {
    display: none;
}
.ham__ja{
	font-size: 1.7rem;
	display: block;
  margin-bottom: 10px;
}
.ham__en{
	/* text-transform: uppercase; */
	display: block;
  font-family: 'Playfair Display', serif;
}
.globalMenuSp-list {
  position: absolute;
  top: 220px;
  left: 100px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.globalMenu_item:first-of-type{
  width: 100%;
  text-align: center;
}
.icon_box{
  width: 120px;
  position: absolute;
  bottom: -10%;
  left:50%;
  transform: translate(-50%);
}
.icon_box a{
  text-align: center;
  padding: 15px;
  font-size:2rem;
}


/*---------------------
contact_link内
---------------------*/
.contact_link{
  margin-top: 100px;
  width: 100%;
  height: auto;
  min-width: auto;
  min-height: auto;
}
.contact_link .flex-end {
  display: block;
}
/*Recruit*/
.recruit_container{
  width:100%;
  position: relative;
  min-height: 300px;
  background-image: url("../images/common/f_recruit.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
/*Contact*/
.contact_container{
  width: 100%;
  background-image: url("../images/common/f_contact_sp.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  min-height: 300px;
}
.contact_link h2{
  padding-top: 50px;
  position: absolute;
  top: 0%;
  left: 4%;
  letter-spacing: 0.4em;
  color: #fff;
  }
.contact_link .playfair{
  padding-top: 80px;
  font-size: 3rem;
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%);
  color: #fff;
}
.contact_link .btn{ 
  position: absolute;
  bottom: 10%;
  left: 50%;
  transform: translate(-50%);
}



/*---------------------
*　footer
---------------------*/
.footer{
  margin-top: 105px;
}
.footer .inner02{
  margin-bottom: 60px;
  width: 100%;
}
.footer .text {
  width: 100%;
  padding: 0 4%;
}
  .footer .text::before{
  display: none;
}

.footer a{
  color: #2c2c2c;
  padding-bottom: 40px;
}
.footer .c_name{
  font-size: 1.7rem;
  color: #151515;
  padding-bottom: 40px;
}
.footer .ad{
  padding-bottom: 55px;
  line-height: 2;
  font-size: 1.3rem;
}
.footer .sns{
  font-size: 1.8rem;
  padding-bottom: 70px;
}
.footer .sns a{
  margin-right: 32px;
}
.footer .ad,
.footer .sns{
  color: #333333;
}
footer .right{
  display: none;
  }
footer .nav_first {
  display: flex;
  justify-content:flex-start;
  flex-wrap: wrap;
  letter-spacing: 0.3em;
  font-size: 1.4rem;
  padding-right:40px;
  padding-left:45px;
}
footer .nav_first .nav_inner{
  padding-left:100px;
}
footer .nav_first .nav_inner:nth-child(3){
  text-align: right;
  
}
footer .nav_first li>a {
  padding-bottom: 15px;
  display: block;
}
footer .nav_second {
  font-size: 1.3rem;
}
footer .nav_inner{
  padding-bottom: 20px;
  width: 33.3%;
}
footer .nav_inner a{
  font-size: 1.4rem;
}
.copyright{
  padding: 9px 3%;
  letter-spacing: 0.1em;
}




/*---------------------
video
---------------------*/
.underlayer video{
    width: 100%;
    height: 224px;
    padding-left: 3%;
    padding-right: 3%;
}

}