@charset "utf-8";

.logo{
  height: 7vw;
  margin-top: 1vw;
  margin-left: 3vw;
}

.qr-pc{
  text-align: center;
}

.qr-image{
  height: 40vh;
  margin-top: 5vh;
}

.text-pc{
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 3.5vh;
}

.footer-pc{
  position: absolute;
  bottom: 0;
  right: 3vw;
  padding-bottom: 1vh;
}

.social-icon-pc{
  display: flex;
}

.list-pc{
  list-style: none;
}

.twitter-pc{
  width:4vw;
  margin-right: 2vw;
}

.instagram-pc{
  width: 4vw;
}

@media screen and (min-width:415px) {

  .header-sp{
    display: none;
  }

  .main-sp{
    display: none;
  }

  .footer-sp{
    display: none;
  }
  }

/*-----------------------------------------------以下、ロード画面のcss----------------------------------------------------*/

/* Loading背景画面設定　*/
#splash {
    /*fixedで全面に固定*/
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  background:#fff;
  text-align:center;
  color:#fff;
}

/* Loading画像中央配置　*/
#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width:240px;
}

/* fadeUpをするアイコンの動き */

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}


#container{
    width:100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

a{
    color: #fff;
}

a:hover{
     text-decoration: none;
}



/*-----------------------------------------------以下、スマホ用のcss----------------------------------------------------*/

@media screen and (max-width:414px) {

/*--------------------------------------------*/
/*-------------① PC版ページの非表示-------------*/
/*--------------------------------------------*/
.header-pc{display: none}
.qr-pc{display: none}
.footer-pc{display:none}

body{
  margin: auto;
}

/*--------------------------------------------*/
/*-------------② ハンバーガーメニュー------------*/
/*--------------------------------------------*/

/*アクティブになったエリア*/
#g-nav.panelactive{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
	  top: 0;
	  width:100%;
    height: 100vh;
}

/*丸の拡大*/
.circle-bg{
    position: fixed;
	  z-index:15;
    /*丸の形*/
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #E98BA1;
    /*丸のスタート位置と形状*/
	  transform: scale(0);/*scaleをはじめは0に*/
	  right:-50px;
    top:-50px;
    transition: all 0.6s;/*0.6秒かけてアニメーション*/
}

.circle-bg.circleactive{
	transform: scale(50);/*クラスが付与されたらscaleを拡大*/
}

/*ナビゲーションの縦スクロール*/
#g-nav-list{
    display: none;/*はじめは表示なし*/
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

#g-nav.panelactive #g-nav-list{
     display: block; /*クラスが付与されたら出現*/
}

/*ナビゲーション*/
.menu-ul {
	opacity: 0;/*はじめは透過0*/
    /*ナビゲーション天地中央揃え※レイアウトによって調整してください。不必要なら削除*/
    position: absolute;
    z-index: 0;
    top: 37%;
    left:31%;
    transform: translate(-50%,-50%);
    pointer-events: none;
}

/*背景が出現後にナビゲーションを表示*/
#g-nav.panelactive ul {
    opacity:1;
    z-index: 999;
    pointer-events: auto;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li{
animation-name:gnaviAnime;
animation-duration:1s;
animation-delay:.2s;/*0.2 秒遅らせて出現*/
animation-fill-mode:forwards;
opacity:0;
}
@keyframes gnaviAnime{
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}


/*リストのレイアウト設定*/
#g-nav li{
	list-style: none;
}

#g-nav li a{
	color: #fff;
	text-decoration: none;
	padding:10px;
	letter-spacing: 0.15em;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 30px;
  line-height: 2.7em;
}


/*========= ボタンのためのCSS ===============*/
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: absolute;
	background:#fff;
	cursor: pointer;
  width: 65px;
  height:65px;
  border: solid 2px #7CB4D5;
	border-radius: 100px;
  z-index: 2000;
  text-align: center;
  top: 22px;
  right: 20px;
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: relative;
  }

.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
    height: 2px;
	  background: #fff;
    opacity: 0;
    position: absolute;
    top: 18px;
    right: 25px;
 }

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

.openbtn span:nth-of-type(2) {
	top:20px;
	right:1px;
	font-size:1rem;
	text-transform: uppercase;
	color:  #7CB4D5;
  font-family: heisei-maru-gothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

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

/*activeクラスが付与されると線が回転して×になり、Menu表記をしている2つ目の要素が透過して消える*/
.openbtn.active span:nth-of-type(1) {
    top: 32px;
    right: 13px;
    transform: translateY(0px) rotate(-45deg);
    width: 60%;
    opacity: 1;
}

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

.openbtn.active span:nth-of-type(3){
    top: 32px;
    right: 13px;
    transform: translateY(0px) rotate(45deg);
    width: 60%;
    opacity: 1;
}

.openbtn.active {
  border: none;
  background: rgba(0, 0, 0, 0);
}


.social-menu{
  display: flex;
  position: absolute;
  bottom: 10vh;
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.name{
  margin: 0;
  padding-top: 1vh;
  padding-bottom: 1vh;
  margin-right: 3vw;
  padding: 10px;
}

.ponitte-design{
  font-family: heisei-maru-gothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 17px;
  color: #fff;
  letter-spacing: 0.07em;
  line-height: 1em;
  margin: auto;
}

.message{
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10.5px;
  letter-spacing: 0.07em;
  color: #fff;
  margin: 0;
}

.twitter{
  width: 10vw;
  padding-top: 0;
  padding-bottom: 1vh;
  margin-top: 0;
}


.twitter-image{
  width: 10vw;
  padding-top: 0;
  padding-bottom: 1vh;
  margin-top: 0;
}

.instagram{
  width: 10vw;
  margin-top: 0.6vh;
  padding-bottom: 1vh;
  margin-right: .3vw;
}

.instagram-image{
  width: 10vw;
  margin-top: 0.6vh;
  padding-bottom: 1vh;
  margin-right: .3vw;
}

.social-menu.active{
  opacity: 1;
  z-index: 999;
  pointer-events: auto;
}


#home-logo{
  z-index: 3;
  padding-top: 25px;
  margin-left: 25px;
}

.logo-image{
  width:42vw;
}

.header-sp{
  padding-bottom: 12px;
  background: rgba(255, 255, 255, 0.9);
  margin: 0;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
}




/*--------------------------------------------*/
/*-------------③ 背景色設定--------------------*/
/*--------------------------------------------*/
.main-sp{
  background: linear-gradient(to bottom,#fff 85%,#7CB4D5);
  height: auto;
  padding-top: 105px;
}

.title-area{
  background: #fff;
  z-index: 10;
  position: relative;
}

.title-image{
  width:100vw;
  height: 56.3vw;
  object-fit: cover;
  opacity: 0.2;
}

.title-text{
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  padding:0;
  margin:0;
  font-size:40px;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  letter-spacing: 0.2em;
  color: #555;
}



.select-menu-container {
  margin: 13px auto 0;
  margin-bottom: 50px;
  position: relative;
  width: 100vw;
  text-align: right;
  z-index: 10;
}

.select-menu {
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
  border-radius: 50px;
  border: 1px solid #ccc;
  padding: 7px 50px 4px 30px;
  width: 55vw;
  background-color: none;
  font-family: heisei-maru-gothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
  color: #aaa;
  background: #fafafa;
  letter-spacing: 0.07em;
  line-height: 2;
  margin-right: 7px;
}

.select-menu::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}

.under{
  width: 20px;
  height: 20px;
  position: absolute;
  z-index: 20;
  right: 25px;
  top: 13px;
  pointer-events: none;
}



/*---------------------------------------------*/
/*-------------④ Works Card-------------------*/
/*--------------------------------------------*/

.explain-text-area{
  padding-left: 7vw;
  margin-bottom: 3vh;
  margin-top: 5vh;
}

.explain-text{
  margin: 0 auto;
  color: #000;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 14px;
  margin-bottom: 10px;
  line-height: 32px;
}



.link-area{
  text-align: center;
  margin: 0 auto;
  color: #000;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 16px;
  margin-bottom: 10vh;
  margin-top: 5vh;
  letter-spacing: 2px;
}

.link-box{
  margin:1vh 5vw;
  border: 0.5px solid #000;
}

.link{
  color: #000;
  text-decoration: none;
}




/*--------------------------------------------*/
/*-------------⑩ フッタ設定--------------------*/
/*--------------------------------------------*/

.ul-area{
  padding: 30px;
  text-align: center;
  justify-content: center;
  padding-bottom: 30px;

}

.footer-ul{
  margin: 0 auto;
  list-style: none;
  display: flex;
  padding: 0;
  justify-content: space-between;
}

.footer-p{
  margin: 0 auto;
  color: #fff;
  font-family: fot-tsukuaoldmin-pr6n, sans-serif;
  font-weight: 300;
  font-style: normal;
  font-size: 10px;
}

.footer-h2{
  margin: 0 auto;
  padding: 0;
  color: #fff;
  font-family: heisei-maru-gothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  letter-spacing: 0.05em
}
