@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@200..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:wght@400;700&family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');


/*---------------------------------------------------
初期設定
----------------------------------------------------*/
*{box-sizing: border-box;}

html { font-size: 62.5%; }
body { font-size: 16px; font-size: 1.6rem; } 

body {
  min-width: 320px; 
  line-height: 1.8;
  color:#000;
  background: #fff;
  font-family: 'Roboto', 'Noto Sans JP', sans-serif;
}

/* IEだけに適応 */
_:lang(x)::-ms-backdrop, .selector {
  font-family: "Segoe UI", Meiryo, sans-serif;}

.serif{font-family: 'Noto Serif JP', serif;}

/* 親要素の高さ100% に */
html,body{height:100%;}

/* 画像の拡大縮小*/
img {
  max-width: 100%;
  height: auto;
  vertical-align:bottom;
  border:none;
}

.clear{clear:both;}
/*clearfix*/
.clearfix {zoom: 1;}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/*---------------------------------------------------
共有
----------------------------------------------------*/
#wrapper{
  overflow:hidden;
}

article,section,nav,figure{
	display: block;
	margin: 0;
	padding: 0;
}

/* ---------------
共通 色
 --------------- */
:root {
  --blue: #2415d0;
  --bgblue: #f3f2fd;
  --lblue: #dedbf8;
  --dblue: #100956;
}

/*---------------------
レイアウト設定 SP
---------------------*/

.inner{
	max-width: 1000px;
	margin: 0 auto;
}

/* ※トップで使用 */
.inner140{
  max-width: 146rem;
  margin: 0 auto;
  padding: 0 3rem;
}


/*---------------------
改行設定 SP
---------------------*/
.spBpcN{display: block;}
.spNpcB{display: none;}

.spBpcN1000{display: block;}
.spNpcB1000{display: none;}


/*　-------------
リンクP
----------------*/
a{
  color:#000;
  text-decoration:none;
  transition: .5s;
}
a:focus, *:focus {outline:none;}


/*　-------------
フォント
----------------*/
.font-roboto {
  font-family: 'Roboto', sans-serif;
}

.font-outfit {
  font-family: "Outfit", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}


/*----------------------------------------------------
タブレット・PC用
----------------------------------------------------*/
@media only screen and (min-width: 750px) {

  /*---------------------
  レイアウト設定 750
  ---------------------*/
  .inner140{
    max-width: 152rem;
    padding: 0 6rem;
  }


  /*---------------------
  改行設定 750
  ---------------------*/
  .spBpcN{display: none;}
  .spNpcB{display: block;}

}


/*----------------------------------------------------
PC 1000
----------------------------------------------------*/
@media only screen and (min-width: 1000px) {

  /*---------------------
  改行設定 1000
  ---------------------*/
  .spBpcN1000{display: none;}
  .spNpcB1000{display: block;}

}