@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------

	Reset Styles

------------------------------------------------------------------------ */


/* ========================================================================
	Reset Styles
======================================================================== */

/* font */
/* .font_notosansjp-medium{
	font-family:'Noto Sans JP', sans-serif;
	font-weight:500;
	font-style:normal;
}

.font_notosansjp-semibold{
	font-family:'Noto Sans JP', sans-serif;
	font-weight:600;
	font-style:normal;
} */


/* HTML5 */
article, aside, figure, figcaption, video, footer, header,
main, nav, section, summary{
	display:block;
	margin:0;
}


/* Base Styles */
*{
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-o-box-sizing:border-box;
	-ms-box-sizing:border-box;
	box-sizing:border-box;
}

html, body, div, h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
ul, ol, li, dl, dt, dd,
table, th, td,
form, fieldset{
	margin:0;
	padding:0;
	font-weight:normal;
}

h1, h2, h3, h4, h5, h6,
p, blockquote, pre, address, small,
li, dt, dd, th, td{
	font-weight:400;
}

html{
	font-size:62.5%; /* 10px */
}

body{
	font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",	Meiryo,	sans-serif;
	/* font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif; */
	/* font-family: 'Noto Sans JP', "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",	Meiryo,	sans-serif; */
	font-size:1.6rem;
	/* font-size:var(--fontsize18); */
	/* color:#333333; */
	color:#011432;
	line-height:1.5;
	letter-spacing:0.048em;
	-webkit-text-size-adjust:100%;
	overflow-wrap: anywhere; /* 収まらない場合に折り返す */
  word-break: normal; /* 単語の分割はデフォルトに依存 */
  line-break: strict; /* 禁則処理を厳格に適用 */
}



select,input,button,textarea{
	font-family:inherit;
	font-size:100%;
	color:#111;
}

pre,code,kbd,samp{
	font-family:inherit;
}

img,
iframe{
	border:none;
	vertical-align:bottom;
}

table{
	width:100%;
	border:none;
	border-collapse:collapse;
	border-spacing:0;
}

label{
	display:inline-block;
	margin:0 0 0 0;
	cursor:pointer;
	line-height:1;
}

input{
	padding:0;
	vertical-align:middle;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="url"],
textarea{
	width:100%;
	height:40px;
	padding:0 10px;
	border:1px solid #c3c6d8;
	border-radius:5px;
	vertical-align:baseline;
	-webkit-appearance:none;
}

textarea{
	display:block;
	width:100%;
	height:auto;
	padding:10px;
}

input[type="file"]{
	width:90%; /* iPhone・iPad */
}

input[type="radio"],
input[type="checkbox"]{
	margin:0 0 0 0;
	vertical-align:baseline;
	cursor:pointer;
}

button,
input[type="image"],
input[type="submit"],
input[type="button"]{
	margin:0; /* iPhone・iPad */
	padding:0;
	background:none;
	border:none;
	font-weight:bold;
	cursor:pointer;
	-webkit-appearance:none; /* iPhone・iPad グラデーション解除 */
}

select,
select option,
select optgroup{
	padding:0 10px;
	font-style:normal;
	cursor:pointer;
	outline:none;
}

ol,ul{
	list-style:none;
}

h1,h2,h3,h4,h5,h6,small{
	font-size:100%;
}

address{
	font-style:normal;
} 

a,
input{
	outline:none;
}


/* Basic Text Link */
a{
	font-weight:400;
	color:#111;
	text-decoration:none;
	transition-duration:0.2s;
}
a:link{
	color:#111;
}
a:visited{
	/* color:#111; */
}
a:hover{
	color:#111;
	opacity: 0.8;
}
a:focus{
	color:#111;
}
a:active{
	color:#111;
}


/* Common Styles */
img{
	max-width:100%;
	height:auto;
}

.clearfix::after{
	content:"";
	display:block;
	clear:both;
}

.center{
	text-align:center;
}




/* 改行（以下自身で追加）
-------------------------------------------------------  */

@media screen and (min-width: 768px) {

	/* PCではSPの改行を消す */
	.sp-only {
		display: none;
	}
}

@media screen and (max-width: 767px) {

	/* SPではPCの改行を消す */
	.pc-only {
		display: none;
	}
}