@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&family=Noto+Sans+JP:wght@300;400;500;700&display=swap');

/*============================================

common.css

============================================*/


/*-------------------------------------------

Reset

--------------------------------------------*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline;}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section{display:block;}
body{line-height:1;}
ol, ul{list-style:none;}
blockquote, q{quotes:none;}
blockquote:before, blockquote:after,
q:before, q:after{content:'';content:none;}
table{border-collapse:collapse;border-spacing:0;}

h1,
h1 *,
h2,
h2 *,
h3,
h3 *,
h4,
h4 *,
h5,
h5 *,
h6,
h6 * {
  letter-spacing: 1px ;
  font-feature-settings: "palt"
}

/*form*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
select::-ms-expand {
  display: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
  font-family: '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium', '游ゴシック', 'Yu Gothic', sans-serif;
  font-weight: 500;
  font-size: 1.0rem;
  color: #000;
  line-height: 1.7;
  overflow-y: scroll;
  overflow-x: hidden;
}
body.open {
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 721px) and (max-width: 1000px) {
  body {
    font-size: 2rem;
  }
}

@media screen and (min-width: 360px) and (max-width: 720px) {
  body {
    font-size: calc(1rem + ((1vw - .36rem) * 2.7778));
  }
}

@media screen and (max-width: 359px) {
  body {
    font-size: 1rem;
  }
}



/*-------------------------------------------

Setting

--------------------------------------------*/

* {
  box-sizing: border-box;
}
img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/*for clearFix*/
.cf:after {
  display: block ;
  height: 0 ;
  visibility: hidden ;
  clear: both ;
  content:"";
}

/* 追加 MacIE 5 と WinIE 7 向け */
.cf {
  display: inline-block ;
}

/*MacIE \*/
* html .cf {
	height: 1em ;
}

.cf {
	display: block;
}

.fwb {
	font-weight: 700;
}

/* font family */
.fontRounded {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
}

/* mark */
.asterisk {
  position: relative;
  display: inline-block;
  padding-left: 1em;
}
.asterisk:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
}

/* 上付き文字 */
.superscript {
  font-size: .4em;
  vertical-align: text-top;
}



/*-------------------------------------------

Animation

--------------------------------------------*/
.is-fadein {
  opacity: 0;
  transform: translateY(10rem);
  transition: opacity .8s, transform .8s, -webkit-transform .8s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.is-fadein.is-show {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}



/*-------------------------------------------

PC

--------------------------------------------*/
.onlySP,
.onlyTablet {
	display: none !important;
}

a {
	transition:.3s;
}
a:hover {
  opacity: .6;
  cursor: pointer;
}
a img {
	transition: .3s;
}

a:hover.none img {
	opacity:1;
}



/*-------------------------------------------

SP

--------------------------------------------*/
@media screen and (max-width:1000px){
	.onlyPC {
    display: none !important;
  }
	.onlySP {
    display: block !important;
  }
  br.onlySP {
    display: inline-block !important;
  }
}
