@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@500&family=Montserrat:wght@700&family=Noto+Sans+JP:wght@400;500;700&family=Montserrat:wght@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;}

/*form*/
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  height: 100%;
  background: #FFF;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 1.0rem;
  font-feature-settings: "palt";
  color: #555;
  line-height: 1.7;
  overflow-y: scroll;
  overflow-x: hidden;
}
body.open {
  height: 100%;
  overflow: hidden;
}

@media screen and (max-width: 720px) {
  body {
    font-size: calc(1rem + ((1vw - .36rem) * 2.7778));
  }
}



/*-------------------------------------------

Setting

--------------------------------------------*/

* {
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  text-align: center;
  font-weight: 700;
}

a {
  color: inherit;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

/* flex */
[class*=flex] {
  display: flex;
}
[class*=flex][class*=Between] {
  justify-content: space-between;
}
[class*=flex][class*=Middle] {
  align-items: center;
}

/* text color */
.txtAccent {
  color: #FF621C;
}

/* font family */
.fontRounded {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 500;
  transform: rotateZ(.05deg);
}
.fontRounded .comma {
  letter-spacing: -.4em;
}
.fontMontserrat {
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
}

/* subscript */
.subscript {
  display: inline-block;
  transform: translateY(.3em);
}

/* side slash */
.sideSlash {
  display: inline-block;
  position: relative;
  padding: 0 1em;
}
.sideSlash:before,
.sideSlash:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: -.5em;
  width: 3px;
  background: #0e0c54;
}
.sideSlash:before {
  left: 0;
  transform: rotate(-25deg);
}
.sideSlash:after {
  right: 0;
  transform: rotate(25deg);
}

/* mark */
.asterisk {
  position: relative;
  display: inline-block;
  padding-left: 1em;
}
.asterisk:before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  font-size: 1em;
}



/*-------------------------------------------

PC

--------------------------------------------*/

.onlySP,
.onlyTablet {
	display: none !important;
}

a {
	transition:.3s;
}
@media screen and (min-width: 721px) {
  a:hover {
    opacity: .6;
    cursor: pointer;
  }
}
a img {
	transition: .3s;
}

/*-------------------------------------------

SP

--------------------------------------------*/
@media screen and (max-width:720px) {
	.onlyPC{
    display: none !important;
  }
	.onlySP {
    display: block !important;
  }
  br.onlySP {
    display: inline-block !important;
  }
}
