﻿/*
Theme Name: bakuhan
Author: kiyoshi kobayashi
Description: 2525do.net website
*/
@charset 'utf-8';

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples
* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing
Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}


/* =Reset
-------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
}
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
q::before,
q::after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,th,td {
	font-weight: normal;
	text-align: left;
}
h1,h2 {
	clear: both;
}
html {
	overflow-y: scroll;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: thin dotted;
}
article,aside,details,figcaption,figure,footer,header,nav,section,main {
	display: block;
}
audio,canvas,video {
	display: inline-block;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
fieldset,legend {
	min-width: 0;
}
hr {
	clear: both;
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
}
sub,sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small,
.small {
	font-size: smaller;
}
small {
	line-height: 1.4;
}
img {
	max-width: 100%;
	height: auto;
	border: 0;
	vertical-align: bottom;
}
.parent-pagename-voice img[src*="csname"] {
	vertical-align: baseline;
}
em {
	font-style: normal;
	color: #ff0000;
}
.product-explanation em {
	font-weight: bold;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear::before,
.clear::after,
.wrapper::before,
.wrapper::after {
	display: table;
	content: "";
}
.clearfix::after {
	content: "";
	display: block;
	clear: both;
	height: 0;
	font-size: 0;
	visibility: hidden;
}


/* =Repeatable patterns
-------------------------------------------------------------- */
/* Small headers */
.widget-title,
.comment-content th {
	line-height: 1.4;
	font-weight: bold;
	text-transform: uppercase;
	color: #636363;
}

/* Form fields, general styles first */
button,
input,
textarea {
	font-family: inherit;
}
textarea {
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
button,
.btn {
	padding: 10px;
	line-height: 1.4;
	font-size: 1.6rem;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
	display: inline-block;
	box-sizing: border-box;
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
button:hover,
.btn:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
	text-decoration: none;
}
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active,
.btn:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.btn--wide {
	width: 100%;
}
.btn--order {
	background: #ffa500;
	font-size: 1.9rem;
	color: #fff;
	font-weight: bold;
	padding: 14px 12px;
	border-color: #d58512;
}
.btn--order::after {
	font-family: 'FontAwesome';
	content: "\00a0\00a0\f054"; /*右向き棒線なし矢印*/
	font-size: 1.1em;
	vertical-align: middle;
}
.btn--order:hover {
	background: #ffe3c6;
	color: #ff6531;
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}

/* Images */
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption-text {
	font-size: 1.4rem;
	line-height: 1.4;
	color: #757575;
}
.product-image__img {
	margin-bottom: 1.8rem;
}
a:hover img,
button:hover,
input[type=button]:hover,
input[type=submit]:hover,
.btn:hover {
	opacity: 0.7;
}

/* Navigation */
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.arrow-nav {
	margin-top: 24px;
	margin-bottom: 20px;
}
.arrow-nav__triangle {
	width: 0;
	height: 0;
	margin-left: auto;
	margin-right: auto;
	border-style: solid;
	border-width: 35px 90px 0 90px;
	border-color: #A6C6E8 transparent transparent transparent;
}
.arrow-nav__square {
	width: 100px;
	height: 30px;
	margin-left: auto;
	margin-right: auto;
	background-color: #A6C6E8;
}

.equal {
	display: inline-block;
	position: relative;
	width: 1.5em;
	height: 1.5em;
	color: #333;
	font-size: 1.8rem;
}
.equal:before,
.equal:after {
	position: absolute;
	left: 2px;
	right: 2px;
	width: 80%;
	height: 0.22em;
	background-color: currentColor;
	content: "";
}
.equal:before {
	top: calc(70% - 0.2em);
}
.equal:after {
	top: calc(70% + 0.2em);
}
.rotate90deg {
	transform: rotate(90deg);
}

/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 62.5%;
}
body {
	font-size: 1.6rem; /*16px*/
	font-family: 'Hiragino Kaku Gothic Pro', 'ヒラギノ角ゴ Pro W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
	text-rendering: optimizeLegibility;
	color: #444;
	background-color: none;
}
a {
	outline: none;
	color: #21759b;
	text-decoration: none;
}
a:hover {
	color: #0f3647;
	text-decoration: underline;
}

/* Page structure */
.site {
	padding-left: 8px;
	padding-right: 8px;
	background-color: #fff;
}
.site-content {
	padding-bottom: 3.6rem;
	word-wrap: break-word;
}

/* Header */
.site-header {
	padding-top: 1.2rem;
	padding-bottom: 2.4rem;
	font-size: 1.4rem;
	line-height: 1.4;
	position: relative;
	box-sizing: border-box;
}
.hgroup, .sublogo, .site-title,.site-description, .sublogo__list, .sublogo__list__item, .sublogo__list__item .a-block {
	box-sizing: inherit;
}
.site-title a {
	color: #515151;
}
.site-title a:hover {
	color: #21759b;
}
.site-description {
	padding: 0px 4px;
	font-size: 1.4rem;
	font-weight: normal;
	color: #333;
}
.hgroup, .sublogo {
	margin-bottom: 1.4rem;
	text-align: center;
}
.sublogo > .a-block {
	margin-bottom: 0.6rem;
}
.sublogo__list {
	background-color: #fff;
}
.breadcrumb {
	font-family: verdana, sans-serif;
	text-align: left;
	padding-bottom: 2.4rem;
	padding-left: 0.5rem;
	padding-right: 0.5rem;
}
.breadcrumb__item {
	display: inline-block;
	font-size: 1.5rem;
}
.breadcrumb__item:nth-of-type(n+2)::before {
	content: ">";
	margin-left: 0.3rem;
	margin-right: 0.3rem;
}

/* Sidebar */
.widget-area {
	font-size: 1.4rem;
	line-height: 1.7;
}
.widget {
	word-wrap: break-word;
	margin-bottom: 2.4rem;
	border: 1px solid #5592d3;
}
.widget a {
	color: #757575;
	display: block;
}
.widget a:hover {
	color: #21759b;
}
.widget a:visited {
	color: #9f9f9f;
}
.widget-title {
	background-color: #E0F1F6;
	text-align: center;
	color: #5592d3;
	padding: 10px 0;
}
.widget_nav_menu {
	padding: 5px 10px;
}
.widget_nav_menu dt {
	font-weight: bold;
	padding-top: 12px;
}
.widget_nav_menu li,
.widget_nav_menu dd {
	border-bottom: 1px dotted gray;
	padding: 12px 0;
}

/* Yahoo custom search */
#srchForm { /*p*/
	white-space: nowrap;
	height: 34px;
	box-sizing: border-box;
}
#srchInput {
	width: 69.2%;
	height: 100%;
	margin-right: 3%;
	vertical-align: bottom;
	border: 1px solid #a5acb2;
	background: #fff url(https://2525do.speed.jetboy.jp/wp-content/themes/bakuhan/images/yjlogo_type4.gif) center center no-repeat;
	box-sizing: inherit;
}
#srchBtn {
	width: 27.8%;
	height: 100%;
	padding: 6px 10px;
	box-sizing: inherit;
}

/* Footer */
.site-footer {
	clear: both;
	font-size: 1.4rem;
	max-width: 96rem;
	margin-left: auto;
	margin-right: auto;
	padding-top: 3rem;
	padding-bottom: 2.4rem;
	position: relative;
	line-height: 2;
}
.site-footer::before {
	content: '';
	position: absolute;
	left: 50%;
	display: block;
	width: 92.5%;/*線の長さ*/
	height: 1px;/*線の太さ*/
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);/*位置調整*/
	background-color: #ccddff;/*線の色*/
}
.site-footer a {
	color: #686868;
}
.site-footer a:hover {
	color: #21759b;
}
.site-footer__inner {
	padding-top: 2.4rem;
}
.site-footer__nav.list--icon {
	margin-bottom: 2.4rem;
	padding-left: 3rem;
}
.site-footer__nav.list--icon dd {
	padding-left: 1.4rem;
}
.site-footer__nav.list--icon dt::before,
.site-footer__nav.list--icon li::before {
	color: #A6C6E8;
}
.site-footer__info {
	background-color:#e0f1f6;
	padding: 2rem 1.4rem 1.4rem;
}
.site-footer__info small {
	display: block;
}
address {
	margin-bottom: 1.6rem;
	margin-left: 1.8rem;
	font-style: normal;
}
.page_top {
	position: fixed;
	display: block;
	bottom: 2.4rem;
	right: 10px;
	width: 50px;
	height: 50px;
	border-radius: 3px;
	color: #fff;
	font-size: 3.2rem;
	background-color: #ffa500;
	text-align: center;
	line-height: 50px;
	z-index: 30;
	opacity: 0.8;
}
.page_top:hover {
	color: #fff;
	opacity: 1.0;
}

/* =Main content and comment content
-------------------------------------------------------------- */
.entry-header {
	margin-bottom: 2.4rem;
}
.entry-title {
	font-size: 2.2rem;
	line-height: 1.4;
	font-weight: bold;
}
.comments-link a {
	color: #757575;
}
.comments-link a:hover {
	color: #21759b;
}
.flex_box {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-between;
	align-content: space-between;
}
.entry-content {
	line-height: 1.7;
}
.entry-content.order_sec {
	padding-top: 2.4rem;
}
.entry-content h1,
.entry-content__h2,
.entry-content__h3,
.entry-content__h4,
.entry-content h5 {
	margin-bottom: 2.4rem;
	line-height: 1.4;
}
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.4;
}
.entry-content__h2,
.comment-content h2 {
	font-size: 2.2rem;
	background-color: #ffe3c6; /*#fff3a6#fffce8#F5EFDF#ffffe0#fff29c#f9d3c8*/
	margin-top: 6.4rem;
	padding: 14px 4px 9px 8px;
}
.entry-content__h3 {
	width: 100%;
	border-top: 2px solid #ffe3c6;
	border-bottom: 2px solid #ffe3c6;
	margin-top: 4rem;
	padding: 12px 4px 7px 8px;
	font-size: 2rem;
	font-weight: bold;
	background-color: #eee;
}
.entry-content__h4 {
	border-left: 7px solid #ffe3c6;
	margin-top: 4rem;
	padding: 10px 4px 7px 8px;
	font-size: 1.8rem;
}
.widget p,
.entry-content figure:not(.margin-bottom40),
.entry-content p:not(.margin-bottom0):not(.margin-bottom40),
.comment-content p {
	margin-bottom: 2.4rem;
}
.entry-content a:visited:not(.btn),/*ボタンは訪問済み表示しない*/
.comment-content a:visited {
	color: #9f9f9f;
}
.list--disc {
	list-style: disc outside;
	padding-left: 3rem;
}
.table .list--disc {
	padding-left: 2rem;
}
.list--decimal {
	list-style: decimal outside;
	padding-left: 3rem;
}
.panel.list--icon,
.panel .list--icon {
	padding-left: 4rem;
}
.list--icon li,
.list--icon dt {
	position: relative;
}
.list--icon li::before,
.list--icon dt::before {
	position: absolute;
	font-family: 'FontAwesome';
	font-size: 1.2em;
	top: -0.15em;
	left: -1.25em;
	color: #555;
}
.list--icon--play li::before {
	content: "\f04b"; /*\25B6ユニコード文字だとエッジでバグ*/
	font-size: 1.05em;
}
.list--icon--play dt::before {
	content: "\f144";
}
.list--icon--user li::before {
	content: '\f2bd';
}
.list--icon--question li::before {
	content: '\f059';
}
.list--icon--check li::before {
	content: '\f046';
}
blockquote {
	margin: 2.4rem 0.5rem;
	padding: 3em;
	position: relative;
}
blockquote::before,
blockquote::after {
	font-size: 600%;
	font-family: "Georgia"; /*ＭＳ Ｐゴシック"*/
	color: #a6a6a6;
	font-weight: bold;
	line-height: 1em;
	position: absolute;
}
blockquote::before {
	content: "“";
	left: -0.6rem;
	top: -0.1em;
}
blockquote::after {
	content: "”";
	right: -0.6rem;
	bottom: -0.52em;
}
blockquote cite {
	font-style: normal;
	display: block;
	margin-top: 2.4rem;
}
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, blockquote:before { font-size: 16%; left: -0.6rem; top: -0.1em; }
	*::-ms-backdrop, blockquote:after  { font-size: 16%; right: -0.6rem; bottom: -0.6em; }
}
.entry-content pre,
.comment-content pre,
.infobox {
	border: 1px solid #ccc;
	margin: 24px 0;
	padding: 20px;
	box-sizing: border-box;
}
.infobox__heading {
	margin: -20px -20px 16px;
	padding: 6px;
	background-color: #eee;
	box-sizing: inherit;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.alignleft,
.alignright {
	margin-bottom: 1.2rem;
}
.alignleft--xs {
	float: left;
	margin-right: 1.2rem;
}
.alignright--xs {
	float: right;
	margin-left: 1.2rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 1.2rem;
}
.entry-content dd,
.comment-content dd {
	/*margin-bottom: 2.4rem;*/
}
.table {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	color: #757575;
	line-height: 1.4;
	width: 100%;
	box-sizing: border-box;
}
.table__caption {
	font-weight: bold;
}
.table td,
.table th {
	border-top: 1px solid #ccc;
	padding: 8px;
	box-sizing: border-box;
}
.table th {
	background-color: #eee;
}
.border-left {
	border-left: 1px solid #ccc;
}
table.smallfont th,
table.smallfont td {
	font-size: 90%;
	line-height: 1.2;
}
colgroup.itemcol {
	width: 17.2%;
}
colgroup.contentscol {
	width: 41.4%;
}

.flex-table {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	box-sizing: border-box;
	line-height: 1.4;
}
.flex-table div {
	box-sizing: border-box;
}
.flex-table div:not(.flex-table__item--kg):not(.flex-table__item--souryou):not(.flex-table__item--souryou-inner):not(.blank) {
	border-top: 1px solid #ccc;
	padding: 8px;
}
.flex-table__item--kg,
.flex-table__item--souryou-inner {
	display: table;
	table-layout: fixed;
	width: 100%;
	flex-basis: 100%;
	max-width: 100%; /*IEでflex-basisにbox-sizingが効かないバグ対策*/
}
.flex-table__item--kg {
	background-color: #eee;
	text-align: center;
}
.flex-table__item--souryou {
	display: flex;
	align-items: stretch;
	flex-basis: 100%;
	max-width: 100%;
}
.flex-table__item--souryou-inner {
	height: 100%;
}
.flex-table__item--prefLabel,
.flex-table__item--pref {
	flex-basis: 100%;
	max-width: 100%;
}
.flex-table__item--prefLabel {
	background-color: #eee;
}
.flex-table__item--prefLabel:not(:first-of-type) {
	margin-top: 2.4rem;
}
.flex-table__item--letter {
	flex-basis: 25%;
	max-width: 25%;
	background-color: #eee;
	text-align: center;
}
.pow_souryou .flex-table__item--letter {
	flex-basis: 33.33%;
	max-width: 33.33%;
}
.flex-table__item--child:not(:first-child) {
	border-left: 1px solid #ccc;
}
.flex-table__item--you {
	flex-basis: 75%;
	max-width: 75%;
	background-color: #eee;
	border-left: 1px solid #ccc;
	text-align: center;
}
.pow_souryou .flex-table__item--you {
	flex-basis: 66.66%;
	max-width: 66.66%;
}
.flex-table__item--child {
	display: table-cell;
}
.blank {
	display: none;
}
@media (max-width: 599px) {
	.flex-table__item--souryou {
		border-bottom: 1px solid #ccc;
	}
}
@media (min-width: 600px) {
	.flex-table {
		border-bottom: 1px solid #ccc;
	}
	.flex-table__item--prefLabel,
	.flex-table__item--pref,
	.blank {
		flex-basis: 60%;
		max-width: 60%;
	}
	.flex-table__item--prefLabel {
		margin-top: 0;
	}
	.blank {
		display: block;
		background-color: #eee;
	}
	.flex-table__item--kg,
	.flex-table__item--souryou {
		flex-basis: 40%;
		max-width: 40%;
	}
	.flex-table__item--letter,
	.flex-table__item--child:first-child {
		border-left: 1px solid #ccc;
	}
	.flex-table__item--letter,
	.flex-table__item--kg .flex-table__item--child {
		flex-basis: 10%;
		max-width: 10%;
	}
	.pow_souryou .flex-table__item--letter {
		flex-basis: 13.33%;
		max-width: 13.33%;
	}
	.flex-table__item--you {
		flex-basis: 30%;
		max-width: 30%;
	}
	.pow_souryou .flex-table__item--you {
		flex-basis: 26.66%;
		max-width: 26.66%;
	}
	.flex-table .flex-table__item--prefLabel:not(:first-of-type) {
		display: none;
	}
	.flex-table__item--pref1 {
		order: 1;
	}
	.flex-table__item--souryou1 {
		order: 2;
	}
	.flex-table__item--pref2 {
		order: 3;
	}
	.flex-table__item--souryou2 {
		order: 4;
	}
	.flex-table__item--pref3 {
		order: 5;
	}
	.flex-table__item--souryou3 {
		order: 6;
	}
	.flex-table__item--pref4 {
		order: 7;
	}
	.flex-table__item--souryou4 {
		order: 8;
	}
	.flex-table__item--pref5 {
		order: 9;
	}
	.flex-table__item--souryou5 {
		order: 10;
	}
	.pc-none {
		display: none;
	}
}

/* =Archives
-------------------------------------------------------------- */

/* =Comments
-------------------------------------------------------------- */
/* Comment form */
#respond {
	margin-top: 48px;
	margin-bottom: 24px;
}

/* =Widgets
-------------------------------------------------------------- */
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	text-align: right;
}

/* ここから子テーマのcss
-------------------------------------------------------------- */
/* Navigation Menu */
.main-navigation {
	clear: both;
	box-sizing: border-box;
	background-color:#e0f1f6;
}
.nav-menu,
.sub-menu,
.menu-item,
.sub-menu-item,
.main-navigation a {
	box-sizing: inherit;
}
.menu-toggle {
	position: absolute;
	top: 3%;
	right: 0;
	z-index: 3;
}
.menu-toggle::before {
	font-family: 'FontAwesome';
	font-size: 11.2vw;
	content: '\f0c9'; /*ハンバーガー*/
	line-height: 1.35;
}
.menu-toggle.toggled-on::before {
	font-size: 13vw;
	content: '\f00d'; /* ×印 */
	line-height: 1.1;
}
.nav-menu {
	text-align: center;
}
.menu-item {
	width: 33.33%;
	float: left;
	position: relative;
}
.menu-item a {
	display: block;
	padding-top: 1.6rem;
	padding-bottom: 1.6rem;
	color: #6a6a6a;
	text-transform: uppercase;
	white-space: nowrap;
}
.sub-menu {
	position: absolute; /* 親要素は.menu-item */
	top: 100%;
	left: 0;
	width: 100%;
	z-index: 1;
}
.sub-menu-item {
	overflow: hidden;
	height: 0; /* 表示しない */
}
.menu-item:hover .sub-menu-item {
	height: 100%;
}
.sub-menu a {
	background-color: #fff;
	border-bottom: 1px solid #ccddff;
	border-left: 1px solid #ccddff;
	border-right: 1px solid #ccddff;
	white-space: normal;
}
.menu-item a:hover {
	color: #000;
	text-decoration: none;
	background-color: #ccddff;
}
.a-block {
	display: block;
	width: 100%;
}

/*サブナビゲーション*/
.subnav { /*ul*/
	border-top: 1px solid #ffbb9e;
	border-bottom: 1px solid #ffbb9e;
	box-sizing: border-box;
	display: flex;
}
.entry-header .subnav {
	margin-bottom: 4rem;
}
.site-content > .subnav {
	margin-top: 4rem;
}
.subnav-item {
	flex-basis: 20%;
	text-align: center;
	font-size: 1.4rem;
	line-height: 1.4;
	box-sizing: inherit;
}
.subnav .a-block {
	padding: 8px 5px;
	box-sizing: inherit;
	color: inherit;
}
.subnav-item.current {
	color: #ff6531;
	background: #ffe3c6;
	font-weight: bold;
}
.subnav-item .a-block:hover {
	background-color: #ffe3c6;
	text-decoration: none;
}
.subnav-item .a-block:active {
	background-color: #ffe3c6;
}

/* パネル,ボックス */
.dotted-border-box {
	border: 2px dotted #ccc;
	padding: 10px 7px;
}
.panel li,
.panel p.indent-1:not(:last-child) { /*.panel__itemを直指定しない場合に*/
	margin-bottom: 1.4rem;
}
.panel__item { /*li,p*/
	padding-left: 3rem;
	margin-bottom: 1.4rem;
}
.panel {
	margin-bottom: 2.4rem;
	padding-top: 2.4rem;
	padding-right: 1.8rem;
	box-sizing: border-box;
}
div.panel,
dl.panel {
	padding-left: 1.8rem;
	padding-bottom: 0.1rem;/*最後にmargin-bottom24pxのpを想定*/
}
ul.panel,
ol.panel {
	padding-bottom: 1.2rem;
}
.panel--contents {
	border: 1px solid #ffbb9e;
	background-color: #fffaf5; /*#fff8f0#fff4e8*/
	position: relative;
	padding-top: 6rem;
}
.panel--contents::before {
	font-family: FontAwesome;
	content: "\f0f6\00a0目\A0\A0次";
	position: absolute;
	display: block;
	width: 100%;
	top: 0;
	left: 0;
	padding-top: 6px;
	padding-bottom: 6px;
	text-align: center;
	background-color: #ffe3c6;
	color: #555;
	font-size: 1.7rem;
	font-weight: bold;
}
.panel--gray {
	background-color: #f2f2f2; /*#eee*/
}
.panel--orange {
	background-color: #fff7e7;
}
.panel--yellow {
	background-color: #fffce8; /*#ffffe0*/
}
.panel--link {
	position: relative;
	margin-top: 7.2rem;
	border: 1px solid #444;
}
div.aligncenter + .panel--link {
	margin-top: 8rem;
}
.panel--link::before {
	content: "\f00c\0020あわせて読みたい";
	font-family: 'FontAwesome';
	position: absolute;
	top: -2.2em;
	left: -1px;
	color: #fff;
	padding: 0.4rem 1.2rem;
	background-color: #444;
}
.display-table {
	display: table;
	width: 100%;
	box-sizing: border-box;
}
.panel.display-table {
	padding-bottom: 2.4rem;
}
.display-table__row {
	display: table-row;
}
.display-table__cell {
	display: table-cell;
}

/* ユーティリティ */
.indent-1 {
	padding-left: 1em;
	text-indent: -1em;
	display: block;
}
.indent-2 {
	padding-left: 2em;
	text-indent: -0.9em;
	display: block;
}
.annotation {
	display: block;
	margin-top: 4px;
	line-height: 1.4;
}
.exclamation::before {
	content: "\f06a\00a0";
	font-family: 'FontAwesome';
	font-size: 2em;
	color: red;
	line-height: 0.2;
	vertical-align: middle;
}
.label-radio-box__label .exclamation {
	display: block;
	margin-top: 0.3rem;
	margin-bottom: 0.3rem;
}
.bgcolor-y {
	background: linear-gradient(transparent 50%, #ffec73 50%);
}
.b_big {
	font-size: 1.25em; /* body（1em）→の1.25 */
	font-weight: bold;
}
.margin-top0 {
	margin-top: 0;
}
.margin-top24 {
	margin-top: 2.4rem;
}
.margin-top40 {
	margin-top: 4rem;
}
.margin-bottom0 {
	margin-bottom: 0;
}
.margin-bottom24 {
	margin-bottom: 2.4rem;
}
.margin-bottom40 {
	margin-bottom: 4rem;
}
.margin-bottom72 {
	margin-bottom: 7.2rem;
}
.fa-hand-o-right::before,
.fa-arrow-down::before {
	font-size: 1.6em;
}

/* Order form progress */
.progress {
	width: 96%;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}
.progress .phase,
.progress .arrow {
	float: left;
	text-align: center;
	box-sizing: inherit;
}
.progress .phase {
	width: 25%;
	padding: 4px;
	border-radius: 3px;
	box-shadow: 0px 0px 5px #CCC;
	font-size: 1.4rem;
	color: #666;
	background-color: #CCC;
}
.progress .arrow {
	width: 12%;
	padding: 4px 0px;
	background-color: transparent;
}
.progress .active_phase {
	background-color: #E8EEF9;
	box-shadow: 0px 0px 5px #000;
}

/* Order form */
.form-control {
	font-size: 1.6rem;
	box-sizing: border-box;
	line-height: 1.7;
	padding: 11px 9px;
	width: 100%;
	border: 1px solid #b0b0b0;
}
.form-control:focus {
	background-color: #ffffe0;
	border: 2px solid #f0e68c;
}
.label-input-box {
	display: block;
}
.order-form__subheading {
	background-color: #fff8ca;
	font-weight: bold;
	padding: 4px 4px 4px 8px;
}
.subform {
	padding: 5px;
	border: 1px solid #ccc;
}
#measure_form {
	display: none;
}
.label-radio-box {
	padding-top: 8px;
	padding-bottom: 8px;
	display: table;
	width: 100%;
}
.label-radio-box--borderBottom {
	border-bottom: 1px solid #ccc;
}
.order-form,
.order-form__radio-group,
.entry-content__h2,
.entry-content__h3,
.subform,
.label-radio-box,
.label-radio-box__radio,
.label-radio-box__label,
.label-input-box,
.label-input-box__label,
.label-input-box__input {
	box-sizing: border-box;
}
.order-form__radio-group .label-radio-box {
	border-top: 1px solid #ccc;
}
.table .label-radio-box__radio,
.table .label-radio-box__label {
	padding-top: 8px;
	padding-bottom: 8px;
}
.label-input-box__label {
	display: block;
	width: 100%;
	padding-left: 8px;
	padding-right: 8px;
	background-color: #eee;
}
.label-input-box__input {
	display: block;
}
input[name="contact_data[kg][]"].form-control {
	width: 85%;
}
input[readonly].form-control,
textarea[readonly].form-control {
	border: none;
}
.required {
	margin-left: 1rem;
	padding: 3px;
	font-size: 1.2rem;
	color: white;
	background-color: red;
	word-break: keep-all;
}
.label-radio-box__radio,
.label-radio-box__label {
	display: table-cell;
}
.label-radio-box__radio {
	width: 40px;
	vertical-align: middle;
}
input[type=radio],
input[type=checkbox] {
	/*-ms-transform: scale(2);
	transform: scale(2);*/ /*firefoxだと超荒くなる*/
	width: 1.5em;
	height: 1.5em;
	vertical-align: middle;
	margin-right: 5px;
}
.subform__heading {
	background-color: #e3e3db;
	margin-bottom: 14px;
	padding: 6px 4px 6px 8px;
	font-weight: bold;
}


/* =Media queries
-------------------------------------------------------------- */
@media (max-width: 599px) {
	.site-content {
		border-bottom: 2px solid #ededed;
		margin-bottom: 3.6rem;
	}
	.site-title {
		width: 80%;
		margin-bottom: 0.8rem;
	}
	.site-description {
		background-color: #e0f1f6;
		margin-left: -0.8rem;
		margin-right: -0.8rem;
	}
	.main-navigation {
		margin-left: -0.8rem;
		margin-right: -0.8rem;
	}
	.sublogo__list {
		display: none;
	}
	.sublogo__list.toggled-on {
		display: block;
		position: absolute;
		top: 0;
		left: -8px;
		width: 100%;
		z-index: 2;
	}
	.sublogo__list.toggled-on .sublogo__list__item {
		padding: 1.2rem 0.6rem;
		border-bottom: 1px solid #333;
	}
	.entry-header figure.margin-bottom24 {
		margin-left: -8px;
		margin-right: -8px;
	}
}

/* Minimum width of 600 pixels. */
@media (min-width: 600px) {
	.site {
		margin-left: auto;
		margin-right: auto;
		padding-left: 24px;
		padding-right: 24px;
		max-width: 96rem;
	}
	.site.site-footer {
		overflow: hidden; /*1番目の.siteはposition: absoluteでボックスからはみ出すので内包ボックスにはpadding-bottomを、2番目の.siteはマルチclassの.wrapperがfloat解除している*/
	}

	/* Header */
	.site-title {
		margin-bottom: 0.6rem;
	}
	.hgroup, .sublogo {
		margin-left: auto;
		margin-right: auto;
	}
	.hgroup {
		max-width: 55.2rem;
	}
	.sublogo {
		max-width: 58.3rem;
	}

	/* Navigation Menu */
	.sublogo .sublogo__list__item {
		display: inline-block;
		width: 33.33%;
		border-left: 1px solid #333;
	}
	.sublogo .sublogo__list__item:last-child {
		border-right: 1px solid #333;
	}
	.menu-toggle,
	.main-navigation .sublogo__list {
		display: none;
	}
	.subnav .a-block {
		min-height: 5.4rem;
	}

	.entry-title {
		font-size: 2.8rem;
	}
	.entry-content {
		padding-left: 5px;
		padding-right: 5px;
	}
	.flex_box {
		flex-direction: row;
	}
	blockquote {
		padding: 4em 4.5em;
	}
	blockquote::before,
	blockquote::after {
		font-size: 900%;
	}
	.alignleft {
		float: left;
		margin-right: 2.4rem;
	}
	.alignright {
		float: right;
		margin-left: 2.4rem;
	}
	.alignright--insert_image {
		width: 42%;
	}

/* Page structure */
	.entry-content__h2 {
		font-size: 2.4rem;
	}
	.entry-content__h2,
	.entry-content__h3 {
		margin-left: -5px;
		margin-right: -5px;
	}
	.list--disc.panel,
	.list--disc.infobox,
	.list--decimal.panel,
	.list--decimal.infobox {
		padding-left: 4rem;
	}

/*幅固定左商品画像の右に配置、商品仕様書き*/
	.product-explanation {
		width: 100%;
		margin-left: -27.4rem;
		padding-left: 27.4rem;
		float: right;
		box-sizing: border-box;
	}
	.product-image {
		width: 26rem;
		margin-right: 1.4rem;
		float: right;
	}
	.subform {
		padding: 14px;
	}
	.label-input-box__label {
		float: left;
		width: 30%;
		padding-top: 12px;
		padding-bottom: 12px;
	}
	.label-input-box__label + .form-control,
	.label-input-box__input {
		width: 70%;
		float: left;
	}
	.subform .label-input-box__label {
		width: 43%;
	}
	.subform .label-input-box__input {
		width: 57%;
	}
}

/*メインロゴとサブロゴを670px以上で左右にフロート*/
/* Minimum width of 699pixels. */
@media (min-width: 699px) {
	.site-content {
		float: left;
		width: 65.104166667%;
	}
	.widget-area {
		float: right;
		width: 26.667%;
	}
	.hgroup, .sublogo {
		margin-bottom: 2rem;
		width: 49%;
	}
	.hgroup {
		float: left;
	}
	.sublogo {
		float: right;
		max-width: 30rem;
	}
	.site-title {
		max-width: 32.2rem; /*logoのimgのwidthを規定*/
	}
	.site-title,
	.site-description {
		text-align: left;
	}
	.menu-item {
		width: 16.666%;
	}
}

/* Minimum width of 960 pixels. */
@media (min-width: 960px) {
	body {
		background-color: #e6e6e6;
	}
	.site {
		padding-left: 4rem;
		padding-right: 4rem;
	}
	.site-footer__inner.flex_box {
		flex-wrap: nowrap;
	}
}

@media (min-width: 1200px) {
	.page_top {
		right: 7.5%;
	}
}
