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

html{
  font-size: 62.5%;
  width: 100%;
}
body{
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
  background-color: #fff;
  font-size: 1.4rem;
  font-weight: 300;
  color: #333;
  letter-spacing: 0.1em;
  position: relative;
  min-width: 1180px;
  line-height: 1.2;
}
img{
  max-width: 100%;
  vertical-align:bottom;
  image-rendering: -webkit-optimize-contrast;
}

.sans{
  font-family: 'Noto Sans JP', sans-serif;
}
.yumincho{
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
.yugothic{
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
}
.raleway{
  font-family: 'Raleway', sans-serif;
}
.bold{
  font-weight: bold;
}
.medium{
  font-weight:500;
}
.semibold{
  font-weight: 600;
}

a{
	color: #fff;
}
a:hover{
	opacity: 0.7;
	transition: 0.3s;
}

*, *:before, *:after{
  box-sizing: border-box;
}
.pc{
  display: block;
}
.sp{
  display: none;
}
.inner {
  max-width: 1340px;
  margin: 0 auto;
}
.inner02 {
  max-width: 1240px;
  margin: 0 auto;
}
.inner03 {
  max-width: 1140px;
  margin: 0 auto;
}



/* flex群 */
.flex{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.flex-start{
  display: flex;
  align-items: flex-start;
}



/*---------------------
*　下層ページ共通
---------------------*/
.header_under .openbtn1{
  background-color: #BE1A65;
  border-radius: 50px;
}

.header_under .openbtn1 span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 15px;
  height: 1px;
  background-color: #fff;
}
.header_under .openbtn1 span:nth-of-type(1) {
  top:22px;	
  width: 20px;
}
.header_under .openbtn1 span:nth-of-type(1) .active{
  opacity: 0;
}
.header_under .openbtn1 span:nth-of-type(2) {
  top:30px;
  width: 20px;
}
.header_under .openbtn1 span:nth-of-type(2) .active{
  opacity: 0;
}

.under_section{
  margin-top: 100px;
}
.under_title{
  margin-top: 96px; 
}
.under_title .under_txt {
  line-height: 2;
  padding-bottom: 100px;
  text-align: center;
  font-size: 2.2rem;
  font-family :'Noto Serif JP', serif;
  letter-spacing: 0.4em;
}


/*---------------------
*　section共通
---------------------*/
.section_title{
  font-size: 3.5rem;
  font-weight: 700;
  padding-bottom: 16px;
  font-family: 'Raleway', sans-serif;
  letter-spacing: 0.1em;
}
.section_sabtitle{
  font-size: 2.2rem;
  margin-bottom: 93px;
  font-weight: 500;
  position: relative;
  font-family :'Noto Serif JP', serif;
  letter-spacing: 0.4em;
}
.section_sabtitle::after {
  content: '';
  width: 114px;
  height: 1px;
  display: inline-block;
  background-color: #333333;
  position: absolute;
  top: 66px;
  left: 0;
}
.under_txt{
  line-height: 2.5;
  padding-bottom: 60px;
}



/*---------------------
*　ボタン
---------------------*/
/* クリックしたら波紋が広がる */
.btn{
  /*波紋の基点とするためrelativeを指定*/
  position: relative;
  /*はみ出す波紋を隠す*/
  overflow: hidden;
  /*ボタンの形状*/
  text-decoration: none;
  display:inline-block;
  background: #fff;
  color: #BE1A65;
  padding: 17px 80px;
  border-radius: 25px;
  outline: none;
  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: 15px 80px;
  border-radius: 25px;
  outline: none;
  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: 25px 0;
}
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
.header.scroll-nav {
  background: #fff;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
.header_inner{
  margin: 0 76px;
}

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: 25px 0;
/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
  /* 背景を白にする */
  background: #fff;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
/* ロゴに関するスタイル */
.header-logo {
  height: auto;
	width: 186px;
}



/*---------------------
*　ハンバーガーボタン
---------------------*/
.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;
}
.openbtn1 span:nth-of-type(1) {
  top:20px;	
  width: 36px;
}
.openbtn1 span:nth-of-type(1) .active{
  opacity: 0;
}
.openbtn1 span:nth-of-type(2) {
  top:36px;
  width: 28px;
}
.openbtn1 span:nth-of-type(2) .active{
  opacity: 0;
}

/*スクロールしたらボタンピンク*/
.scroll-nav .openbtn1{
	background-color: #BE1A65;
  border-radius: 50px;
}
.scroll-nav .openbtn1 span:nth-of-type(1) {
  top:22px;	
  width: 20px;
}
.scroll-nav .openbtn1 span:nth-of-type(1) .active{
  opacity: 0;
}
.scroll-nav .openbtn1 span:nth-of-type(2) {
  top:30px;
  width: 20px;
}
.scroll-nav .openbtn1 span:nth-of-type(2) .active{
  opacity: 0;
}

.openbtn1.active {
  border-radius: 50%;
  border: solid 1px #fff;
  background-color: transparent;
}
.openbtn1.active span{
	background-color: #fff;
}
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 12px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}
.openbtn1.active span:nth-of-type(2) {
  top: 30px;
  left: 12px;
  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(0,0,0,0.5);
  /*動き*/
  transition: all 0.2s;
}
/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
  top: 0;
}
/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999; 
  width: 40%;
  height: 100vh;/*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #1f1f1f;
  right: 0;
}
/*リストのレイアウト設定*/
.globalMenu_item h1{
  width: 100%;
  position: absolute;
  top: -15%;
  left:50%;
  transform: translate(-50%,-50%);
}
.globalMenu_item h1 img{
  width: 160px;
}
/*ナビゲーション*/
.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: 26px 10px;
  display: block;
	letter-spacing: 0.1em;
	/* font-weight: bold; */
}
.ham__ja{
  letter-spacing: 0.3em;
	font-size: 2.2rem;
	display: block;
  margin-bottom: 10px;
  font-family :'YuGothic','Yu Gothic', 	sans-serif;
}
.ham__en{
	/* text-transform: uppercase; */
	display: block;
	font-size: 1.1rem;
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
}
.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{
  position: absolute;
  bottom: -20%;
  left:50%;
  transform: translate(-50%);
}
.icon_box img{
  width: 19px;
}
.icon_box a{
  text-align: center;
  padding: 15px;
}


/*---------------------
contact_link内
---------------------*/
.contact__link{
  width: 100%;
  height: 58.2vh;
  min-height: 350px;
  position: relative;
  font-size: 4.5rem;
  color: #fff;
  background-image: url("../images/common/contact.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}
.contact_container{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 253px;
  height: 242px;
  text-align: center;
}
.contact_container h2{
  letter-spacing: 0.1em;
  font-size: 3.5rem;
  padding-bottom: 18px;
}
.contact_container h3{
  position: relative;
  letter-spacing: 0.4em;
  font-size: 2.2rem;
  padding-bottom: 124px;
}
.contact_container h3::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 114px;
  height: 1px;
  top: 66px;
  left: 50%;
  transform: translate(-50%,-50%);
}



/*---------------------
*　footer
---------------------*/
.footer{
  padding-top: 70px;
  background: #1F1F1F;
  color: #fff;
}
.footer .inner03{
  width: 100%;
  padding-bottom: 50px;
}
.footer .text{
  position: relative;
  width: 26%;
  font-family: 'Noto Sans JP', sans-serif;
}
.footer .text::before{
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  width: 1px;
  height: 191px;
  top:0;
  right: 0%;
}

.footer a{
  padding-bottom: 40px;
}
.footer .c_name{
  font-size: 1.7rem;
  padding-bottom: 40px;
}
.footer .ad{
  padding-bottom: 55px;
  line-height: 2;
  font-size: 1.3rem;
}
.footer .sns a{
  margin-right: 32px;
}
.footer .sns img{
  width: 19px;
}
footer .right{
  width: 74%;
}
footer .nav_first {
  display: flex;
  justify-content:flex-start;
  flex-wrap: wrap;
  letter-spacing: 0.1em;
  padding-left:45px;
  padding-top: 75px;
  font-family :'YuGothic','Yu Gothic', 	sans-serif;
}
footer .nav_first .nav_inner{
  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: 25%;
}
footer .nav_inner a{
  font-size: 1.4rem;
}
.copyright{
  font-size: 10px;
  width: 100%;
  display: inline-block;
  text-align: center;
  padding: 9px;
}




