@charset "UTF-8";

:root {
  --color1: #1a1a1a;
	--color2: #ed3f25;
  --hr-color: #ccc;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}
html {
  font-size: 10px;
	-ms-overflow-style: none;
	scrollbar-width: none;
}
body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
	font-style: normal;
  color: var(--color1);
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.5;
}
* {
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
ul {
  list-style: none;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after, q:before, q:after {
  content: '';
  content: none;
}
a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: var(--color1);
}
a:hover {
  text-decoration: none;
}
a:visited {
  color: var(--color1);
}
a:link {
  color: var(--color1);
}
a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
  transition: all .3s;
}
ins {
  background-color: #ff9;
  color: var(--color1);
  text-decoration: none;
}
mark {
  background-color: #ff9;
  color: var(--color1);
  font-style: italic;
  font-weight: bold;
}
del {
  text-decoration: line-through;
}
abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid var(--hr-color);
  margin: 1em 0;
  padding: 0;
}
input, select {
  vertical-align: middle;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
::placeholder {
  color: var(--hr-color);
}
.picthover {
	transform: scale(1, 1);
	transition: all 0.3s 0s ease-Out;
}
a:hover .picthover {
	transform: scale(1.018, 1.018);
	transition: all 0.3s 0s ease-Out;
	opacity: 1;
}

/* 共通
------------------------------*/
.sp {
  display: none !important;
}
.center {
	text-align: center;
}
.flex {
	display: flex;
}
.font_bold {
	font-weight: bold;
}
.font_en {
	font-family: 'Poppins', sans-serif;
}
.wrap {
	width: 90%;
	max-width: 1000px;
	margin: 0 auto;
}
.middle_wrap {
  max-width: 800px;
}
.cms_txt {
	font-size: 16px;
	line-height: 1.75;
	text-align: justify;
}
.no_post {
  margin: 0 auto;
}
@media screen and (max-width:768px) {
	.pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
	.cms_txt,
  .no_post {
		font-size: 13px;
	}
}