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

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

@media(max-width: 768px) {


body{
  min-width: 100%;
}
.pc{
  display: none;
}
.sp{
  display: block;
}
.inner {
  padding: 0;
  max-width: 100%;
}
.inner02 {
  max-width: 100%;
}
.inner03 {
  max-width: 100%;
}

/*---------------------
*　下層ページ共通
---------------------*/
#company,
#service,
#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;
}

#company .header_under .openbtn1 span,
#service .header_under .openbtn1 span,
#recruit .header_under .openbtn1 span,
#contact .header_under .openbtn1 span {
  left: 7px;
  background-color: #fff;
}
#company .header_under .openbtn1 span:nth-of-type(1) ,
#service .header_under .openbtn1 span:nth-of-type(1) ,
#recruit .header_under .openbtn1 span:nth-of-type(1) ,
#contact .header_under .openbtn1 span:nth-of-type(1) {
    top: 14px;
    width: 20px;
}
#company .header_under .openbtn1 span:nth-of-type(2) ,
#service .header_under .openbtn1 span:nth-of-type(2) ,
#recruit .header_under .openbtn1 span:nth-of-type(2) ,
#contact .header_under .openbtn1 span:nth-of-type(2) {
  top: 22px;
  width: 20px;
}


#company .openbtn1.active span:nth-of-type(1) ,
#service .openbtn1.active span:nth-of-type(1) ,
#recruit .openbtn1.active span:nth-of-type(1) ,
#contact .openbtn1.active span:nth-of-type(1) {
  top: 10px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
#company .openbtn1.active span:nth-of-type(2),
#service .openbtn1.active span:nth-of-type(2),
#recruit .openbtn1.active span:nth-of-type(2),
#contact .openbtn1.active span:nth-of-type(2) {
  top: 22px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}



/*---------------------
*　section共通
---------------------*/


.under_txt {
  line-height: 1.6;
  padding-bottom: 40px;
  letter-spacing: 0.15em;
}
.under_section {
  margin-top: 75px;
}
.under_title .under_txt {
  letter-spacing: 0.2em;
  padding-bottom: 28px;
  font-size: 1.9rem;
}

/*---------------------
under_section
---------------------*/

.under_section .inner03 {
  max-width: 100%;
  width: 92%;
}
.section_sabtitle {
  font-size: 2.2rem;
  margin-bottom: 75px;
  font-weight: 500;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  letter-spacing: 0.2em;
}

/*---------------------
*　ボタン
---------------------*/
/* クリックしたら波紋が広がる */
.btn{
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*はみ出す波紋を隠す*/
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display:inline-block;
  background: #fff;
  color: #BE1A65;
  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;
}

.btn02{
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*はみ出す波紋を隠す*/
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display:inline-block;
  background: #BE1A65;
  color: #fff;
  padding: 17px 28px;
  border-radius: 25px;
  outline: none;
  width: 174px;
  height: 49px;
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: 0.09em;
  box-shadow: 0 3px 5px rgba(0, 0, 0, .3);
}

.btn02::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;
}
/*クリックされたあとの形状の設定*/
.btn02:active::after {
  transform: scale(0, 0);
  transition: 0s;
  opacity: 0.3;
}



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




/*---------------------
*　ハンバーガーボタン
---------------------*/
.openbtn1 {
  position: relative;
  width: 34px;
  height: 34px;
  display: inline-block;
  background-color: transparent;
  z-index: 1000;
}
.openbtn1 span {
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: -3px;
  height: 1px;
  background-color: #fff;
}
.openbtn1 span:nth-of-type(1) {
  top: 10px;
  width: 36px;
}
.openbtn1 span:nth-of-type(2) {
  top: 26px;
  width: 28px;
}
.scroll-nav .openbtn1 span {
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 7px;
  height: 1px;
  background-color: #fff;
}  
.scroll-nav .openbtn1 span:nth-of-type(1) {
  top: 13px;
  width: 20px;
}
.scroll-nav .openbtn1 span:nth-of-type(2) {
  top: 21px;
  width: 20px;
}
.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.3s;
}
/*アクティブクラスがついたら位置を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: -60px;
  left: 50%;
  transform: translate(-50%,-50%);
}
.globalMenu_item h1 img {
  width: 145px;
}
/*ナビゲーション*/
.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 {
  padding: 18px;
}
.ham__ja {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.ham__en {
  font-size: 1.2rem;
} 
.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: -88px;
  left:50%;
  transform: translate(-50%);
}
.icon_box a{
  text-align: center;
  padding: 15px;
  font-size:2rem;
}


/*---------------------
*　footer
---------------------*/
.footer .inner03 {
  width: 92%;
  padding-bottom: 50px;
}
.footer .flex-start {
  display: block;
}
.footer .text::before {
  display: none;
}
.footer .text {
  position: relative;
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
}
.copyright {
  font-size: 7px;
  display: inline-block;
  text-align: center;
  padding: 6px 4%;
  width: 100%;
  letter-spacing: 0.1em;
}
/*---------------------
video
---------------------*/
.underlayer video{
  width: 100%;
  height: 224px;
  padding-left: 3%;
  padding-right: 3%;
}

}