@charset "UTF-8";


/*記事に関するスタイルシート（PC／印刷共通）*/


/*importはファイルの一番上に書かなければならない*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@400&family=Montserrat:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Hina+Mincho&family=Josefin+Sans:wght@400;500;600&family=Kaisei+Decol:wght@400;500;700&family=Kaisei+HarunoUmi:wght@400;500;700&family=Kaisei+Opti:wght@400;500;700&family=Kaisei+Tokumin:wght@400;500;700;800&family=Klee+One:wght@400;600&family=Raleway:wght@400;500;600&display=swap');

@import url(title.css);
@import url(navi.css);
@import url(lead20260128.css);
@import url(unique.css);


/*
12pt=16px=1.4em;
10pt=14px=1.2em;
9pt=12px=1em;
8pt=11px=0.9em;
7pt=10px=0.8em;
*/


/*CONTENTS-LAYOUT
-------------------------------*/

div.flexbox1 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
}

div.flexbox2 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
}

div.flexbox2a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
	/*アイテムを上下中央揃え配置*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

div.flexbox2b {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
	/*アイテムを下揃え配置*/
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

div.flexbox2c {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
	/*アイテムを下揃え配置*/
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
	
	background-image: url(../img_scheme/bg_sky2.jpg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 100% 100%;
}

div.flexbox2d {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
	/*アイテムを折り返して複数行に上から下に並べる*/
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

div.flexbox2e {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムを余白を空けず配置、他の要素は均等に間隔を空けて配置*/
	-ms-flex-line-pack: justify;
	justify-content: space-between;
	/*アイテムを上揃えで配置*/
	-ms-flex-line-pack: start;
	align-content: flex-start;
	/*アイテムを折り返して複数行に上から下に並べる*/
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

div.flexbox3 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*アイテムを左右中央揃え配置*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

div.flexbox3a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*アイテムを左右中央揃え配置*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/*アイテムを上下中央揃え配置*/
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

div.flexbox3b {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*アイテムを左右中央揃え配置*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/*アイテムを下揃え配置*/
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

div.flexbox3c {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*アイテムを左右中央揃え配置*/
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	/*アイテムを折り返して複数行に上から下に並べる*/
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

div.flexbox4 {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムも含めて、均等な間隔を空けて配置*/
	-ms-flex-pack: distribute;
	justify-content: space-around;
}

div.flexbox4a {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムも含めて、均等な間隔を空けて配置*/
	-ms-flex-pack: distribute;
	justify-content: space-around;
	/*アイテムの上下の余白を埋めるように配置*/
	-webkit-box-align: stretch;
	-ms-flex-align: stretch;
	align-items: stretch;
}

div.flexbox4b {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムも含めて、均等な間隔を空けて配置*/
	-ms-flex-pack: distribute;
	justify-content: space-around;
	/*アイテムを折り返して複数行に上から下に並べる*/
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

div.flexbox4c {
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	/*両端のアイテムも含めて、均等な間隔を空けて配置*/
	-ms-flex-pack: distribute;
	justify-content: space-around;
	/*アイテムを下揃え配置*/
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

div.list_center {
	text-align: center;
	margin: 0px auto;
}

div.list_center ol,
div.list_center ul,
div.list_center dl {
	text-align: left;
	display: inline-block;
}

div.col_variation {
	width: 30%;
}

div.col_variation img {
	width: 100%;
	max-width: 320px;
	height: auto;
}

div.col_variation p {
	width: 100%;
	max-width: 320px;
	height: auto;
	margin: 3px 0px;
}

div.col_variation h4 {
	margin: 0px 0px 3px;
}

div.col_txt {
	width: 50%;
}

div.col_img {
	width: 39%;
}

div.col_img img {
	width: 100%;
	/*max-width: 320px;*/
	height: auto;
	border-radius: 50%;
}

div.col_txt1 {
	width: 50%;
	order: 1;
}

/*BASIC
-------------------------------*/

table {
	border-collapse: collapse;
	border-spacing: 0px;
	margin-bottom: 20px;
}

td,th {
	font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 14px;
	line-height: 1.5;
}

textarea {
	line-height: 1.5;
}

p {
	margin-top: 20px;
	margin-bottom: 20px;
}

ol,ul {
	margin-top: 20px;
	margin-bottom: 20px;
	padding-left: 20px;
}

li {
	margin-top: 10px;
}

li ol {
	margin-top: 0px;
}

b {
	font-style: normal;
	font-weight: bold;
}

em {
	font-style: normal;
	font-weight: bold;
}

dt {
	font-style: normal;
	font-weight: bold;
	color: #339;
	margin: 20px 0px 5px;
}

dt:first-of-type {
	margin-top: 0px;
}

dd {
	font-style: normal;
	font-weight: normal;
	margin: 5px 0px 5px 20px;
}

.hide {
	display:none;
}


/*LINK
-------------------------------*/

a {
	text-decoration: none;
	/* FireFox用CSSハック（選択時の点線を消す）*/
	outline:none;
}

a:link {
	color: #339;
	text-decoration: none;
}

a:visited {
	color: #339;
	text-decoration: none;
}

a:hover {
	color: #36c;
	text-decoration: underline
}

a:active {
	color: #36c;
	text-decoration: underline;
}

a.popup {
	background-image: url(../img_scheme/icon_popup2.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}

a.movie {
	background-image: url(../img_scheme/icon_movie.gif);
	background-repeat: no-repeat;
	background-position: right center;
	padding-right: 18px;
}

p.order {
	display: block;
	width: 320px;
	height: 113px;
	background-image: url(../img_scheme/order2021.png);
	background-repeat: no-repeat;
	background-position: 0px 0px;
	font-size: 0px;
	text-indent: -9999px;
	margin: 80px auto 0px;
}

p.order a {
	display: block;
	height: 113px;
	text-decoration: none;
}

p.order a:hover {
	background-image: url(../img_scheme/order2021.png);
	background-repeat: no-repeat;
	background-attachment: scroll;
	background-position: 0px -113px;
	text-decoration: none;
}

/*Hamburger Menu
チェックボックス等は非表示に*/
.nav-unshown {
	display: none;
}


/*CONTENTS-TEXT
------------------------------*/

h3 {
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
	color: #999;
	font-family: 'Hina Mincho', "ＭＳ Ｐ明朝", "MS PMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
	border-bottom: 1px solid #CCC;
	margin-top: 40px;
}

.head {
	text-align: center;
}

.head h3 {
	color: #000;
	line-height: 1.3;
	display: inline-block;
	border-bottom: 1px solid #000;
	margin: 60px auto 40px;
	padding: 30px 0px 10px;	/*text-shadow: 1px 3px 1px rgba(0,0,0,0.2);*/
}

h3.attention {
	font-size: 24px;
	text-align: center;
	color: #C00;
	border-bottom: none;
	margin: 70px 0px 50px;
}

p + h3,
ul + h3 {
	margin-top: 40px;
}

.content_box h3:first-child {
	margin-top: 0px;
}

h4{
	font-size: 16px;
	line-height: 1.5;
	font-weight: bold;
	color: #36C;
	margin-top: 40px;
}

.note {
	font-size: 12px;
	color: #C00;
	font-weight: normal
}

.sup {
	font-size: 12px;
	color: #666;
	font-weight: normal;
}

dl.sup dt {
	margin: 0px;
}

dl.sup dd {
	margin: 0px 0px 0px 20px;
}

.attention {
	font-size: 14px;
	color: #C00;
	font-weight: bold
}

.price {
	font-weight: bold;
	color: #36C;
}

/*PCのみ表示するコメント*/
.sup_pc {
	display: block;
	color: #999;
	font-size: 12px;
	font-weight: normal;
}

/*スマホのみ表示するコメント*/
.sup_sp {
	display: none;
}

/*スマホでは改行しない*/
span.br_pc {
	display: block;
}

/*スマホでは改行*/
span.br_sp {
	
}

/*TABLE
------------------------------------*/

table thead th {
	background-color: #C5CFE0;
	text-align: center;
}

table tbody td {
}

table th {
	border: 1px solid #999;
	text-align: left;
	padding: 2px 5px;
	background-color: #f5f5f5;
}

table td {
	border: 1px solid #999;
	padding: 2px 5px;
}

table caption {
	text-align: left;
	color: #00468c;
	font-weight: bold;
	margin: 5px 0px;
}
