@charset "utf-8";

/* ======================================================================
 reset
====================================================================== */
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*, *::before, *::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  overflow-y: scroll;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

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,
input, select, textarea {
  box-sizing: border-box;
}

html {
  /* Sets a specific default `font-size` for user with `rem` type scales.*/
  font-size: 62.5%;
  /* Changes the default tap highlight to be completely transparent in iOS.*/
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  color: var(--text-bk);
  line-height: 1;
  background: #fff;
  font-family: "Noto Sans JP", 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", Avenir, "Helvetica Neue", Helvetica, Arial, Verdana, Roboto, sans-serif;
  font-weight: 400;
  word-wrap: break-word;
  word-break: break-all;
  min-width: 1240px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  body {
    min-width: inherit;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
	text-decoration: none;
	display: block;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	margin: 0;
	overflow-wrap:break-word;
	font-weight: normal;
	font-size: 100%;
}
img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
	display:block;
	vertical-align: middle;
	width: 100%;
	height: auto;
}
input,
textarea,
select,
button {
	appearance: none;
	-webkit-appearance: none;
	background: none;
	border: none;
	border-radius: 0;
	color: inherit;
	font-size: 100%;
	font-weight: 400;
	outline: none;
}

/*
* common
*/
:root {
	/* color */
	--color-wh: #FFF;
    --color-main: #007B36;
    --color-sub: #009944;
    --color-light: #1FD06A;
    --color-neon:#16F594;
    --color-light-grey: #BCBCBC;
    --bk-bk: #222736;
    --bk-gr: #004E22;
    --bk-light-gr: #EEEEEE;
    --text-bk: #141414;
    --text-grey: #565656;
    --color-separator: #EEEEEE;


    /* font family*/
    --poppins: "Poppins", sans-serif;
    --notoSansCJK: "Noto Sans JP", sans-serif;

}

body {
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}

.l-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 1200px;
}
@media (width <= 768px) {
    .l-inner {
        padding: 0 20px;
        width: 100%;
    }
}

.pc_hidden {
  display: none;
}
.pc_hidden_br{
  display: none;
}
.pc_hidden_inline {
  display: none;
}

/* スマホサイズ（画面幅 768px 以下）の設定 */
@media (width <= 768px) {
  .pc_hidden {
    display: block;
  }
	.pc_hidden_inline {
  display:inline;
}
  .sp_hidden {
    display: none!important;
  }
.pc_hidden_br{
  display: block;
}
}