@charset "utf-8";
/* CSS Document */
/*============================================

共通・リセット

============================================*/

/*-----------------
◆カスタムプロパティ(CSS変数、カスケーディングスタイル)

:root → グローバル変数( あらゆるところで使用できる変数 )
--yellowの部分 → 変数名
呼び出し方 → var(--変数名)


▼呼び出し方(例)
.selector {
  background-color: var(--yellow);
}
フォールバック(変数が無効になった場合の代替の値指定) → var(--color,フォールバック値)
-------------------*/












/*-----------------
基本設定ここから
-------------------*/

* {box-sizing: border-box;}

html, body {
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;/*ページ内リンクをクリックしたときにページがキレイにスクロールしながら移動する*/
}

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;
    box-sizing: border-box;
}

/*-----------------
フォントまわり
-------------------*/
/* フォント(1.ヒラギノ角ゴシック 2.遊ゴシック　3.メイリオ) */
html {
	font-family:"Yu Gothic Medium", "游ゴシック Medium", "游ゴシック", "YuGothic", "Noto Sans Japanese", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo", "メイリオ", sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
	/*font-weight: 500;細すぎるので少し太くMidiumくらい*/
	font-weight: normal;
}

body {
    color: #333;/* 文字色：黒 */
	font-size: 16px;/* ルートは16pxで設定。詳細設定は各ページ側でemで上書き指定 */
    line-height: 1.6;/* ルートは1.6で設定 */
	display: block;/*中央揃え*/
	margin: 0 auto;
}

/*-----------------
hタグなど
(スマホは別指定あり)
-------------------*/
h1, h2, h3, h4, h5, h6{font-weight: normal;}

h1, h2, h3, h4, h5, h6,pre, blockquote,ul, ol,dl, address, p{ margin: 0; padding: 0;}


/*-----------------
画像
-------------------*/
img{
	max-width :100%; /* フルードイメージへの対応 */
	vertical-align: middle;/* ディセンダーの削除 */
	border : none;/* 画像に枠線が付くのを阻止 */
	padding: 0;
}


/*-----------------
リンク
-------------------*/

a {
	border: none;
	text-decoration: none;
	outline: none;
    color: #333;
}


a, a:hover, a:hover img {
   /* -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;*/
    text-decoration: none;
}




/*-----------------
テーブル
-------------------*/
table {
    border-collapse: collapse;
    border-spacing: 0;
}




/*-----------------
リスト
-------------------*/
ul,ol {
	margin: 0;
	padding: 0;
	list-style: none;
}
/*
ul ul{
	margin-left: 1em;
}


/*-----------------
引用のデザイン
-------------------*/
/*
blockquote{

}*/


/*-----------------
inputタグまわり(フォーム)
-------------------*/
/*チェックボックス、ラジオボタンの余白周り*/
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box; 
    padding: 0; 
}

/*サイトによって変更*/
input[type="text"],
input[type="password"],
input[type="email"],
input[type="search"],
textarea {
	margin: 0;
	outline: none;
	/*
	margin-bottom: 20px;
	padding: 6px 4px;
	max-width: 100%;
	width: 290px;
	border: 1px solid #ddd;
	border-radius: 2px;
	background: #eee;
	color: #777;
	vertical-align: bottom;
	font-size: 13px;
	*/
}



#comment-area input[type="text"],
#comment-area textarea{
	display: block;
}

textarea {
	overflow: auto;
}

/*フォーカスしたとき*/
/*サイトによって変更*/
input[type="text"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
	/*
	border: 1px solid #ff69b4;
	background: #fff;
	-webkit-box-shadow: 0 0 3px rgba(255,105,180,1);
 	-moz-box-shadow: 0 0 3px rgba(255,105,180,1);
	box-shadow:  0 0 3px rgba(255,105,180,1);
 	color: #444;
	*/
}

/*送信ボタンまわり*/
/*サイトによって変更*/
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	line-height: normal;
	cursor: pointer;
	/*
	display: inline-block;
	margin-bottom: 20px;
	padding: 4px 12px;
	padding: 8px 10px;
	border: 1px solid #fe56aa;
	border-radius: 3px;
	background: #ff89c4;
	color: #333;
	text-decoration: none;
	text-shadow: 0 1px rgba(255, 255, 255, .75);
	font-weight: bold;
	font-size: 12px;
	*/
}

/*送信ボタンhovere時*/
/*サイトによって変更*/
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	/*
	border: 1px solid #fe56aa;
	background: #ff89c4;
	color: #fff;
	text-shadow: 0 -1px rgba(0, 0, 0, .4);
	*/
}


/*送信ボタンactive時*/
/*サイトによって変更*/
.button:active,
button:active,
input[type="submit"]:active,
input[type="reset"]:active,
input[type="button"]:active {
	position: relative;
	top:1px;
}







