@charset "utf-8";
/* CSS Document */

/* ベースとなるスタイル
-----------------------------------------------------------------*/
body {
     -webkit-text-size-adjust: 100%;
   	/* overflow-x: hidden;
      overflow-y: hidden;
 じわっと画像が表示される */
 	animation: fadeIn 1.5s ease 0s 1 normal;
    -webkit-animation: fadeIn 1.5s ease 0s 1 normal;
}

/* じわっと画像が表示される */
@keyframes fadeIn { /*上のbody内で呼び出しているアニメーションと名前をそろえる*/
    0% {opacity: 0} /* 始め */
    100% {opacity: 1} /* 終わり */
}
/*古いブラウザ用*/
@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

/* article
--------------------------------------------------------- */
article {
	width: 100%;
	margin: 0;
	padding: 0;
	border: none;
	font-size: 62.5%;
	text-align: justify;
	vertical-align: baseline;
 font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  font-weight: normal;
	line-height: 1.75;
    letter-spacing: 0.64px;
	font-feature-settings: "palt";
	font-smoothing: antialiased;
	-webkit-font-smoothing: antialiased;
  color: #606060;
}
article img {
	display: block;
	height: auto;
	max-width: 100%;
}
article a {
	text-decoration: none;
}
figure img {
	text-align: center;
	margin: 0 auto;
	image-rendering: -webkit-optimize-contrast;
}
/* clearfix
--------------------------------------------------------- */
.clearfix:after {
	clear: both;
	content: "";
	display: block;
}
.clearfix {
	*zoom: 1;
}

/* 順番 
1.位置情報系＝position, top, right, z-index, display, float等
2.サイズ＝width, height, padding, margin
3.文字系＝font, line-height, letter-spacing, color- text-align等
4.背景＝background, border等
5.その他＝animation, transition等
*/
/*h2 各タイトル
--------------------------------------------------------- */
h2.seo_title {
  display: inline-block;
  text-align: center;
  position: relative;
  height: 60px;
  padding: 9px 0;
  font-size: 18px;
  background: #f57a78;
  color: #FFF;
  letter-spacing: 0.36rem;
  text-transform: uppercase;
  margin-block-end:30px;
}
h2.seo_title span {
  line-height: 42px;
  margin: 0;
  padding: 9px 30px;
  border-top: dashed 2px rgba(255, 255, 255, 0.5);
  border-bottom: dashed 2px rgba(255, 255, 255, 0.5);
}
h2.seo_title::before, h2.seo_title::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 0;
  height: 0;
}
h2.seo_title::before {
  top: 0;
  left: 0;
  border-width: 30px 0 30px 15px;
  border-color: transparent transparent transparent #FFF;
  border-style: solid;
}
h2.seo_title::after {
  top: 0;
  right: 0;
  border-width: 30px 15px 30px 0;
  border-color: transparent #FFF transparent transparent;
  border-style: solid;
}



/* txet
--------------------------------------------------------- */
.txtarea {
	width: 100%;
	margin-inline-start: auto;
	margin-inline-end: auto;
	margin-block-start: 30px;
	margin-block-end: 30px;
	padding-inline-start: 10px;
	padding-inline-end: 10px;
	text-align: justify;
	text-justify: inter-ideograph;
	font-size: 1.525rem;
}
.txtarea p {
	margin-block-end: 10px;
	text-align: left;
}

.innerWrap{
	max-width: 980px;
	margin: 0 auto;
	padding-inline-start: 10px;
	padding-inline-end: 10px;
	margin-block-end:180px;
	font-size: 1.65rem;
	letter-spacing: 0.075rem;
}

/* 768px */
@media screen and (min-width: 769px) {
	.sp-only { display:none; }
}
@media screen and (max-width: 768px) {
	.pc-only { display: none; }
}