@CHARSET "utf-8";
/*------------------------------------------------------------------------------
	共通
------------------------------------------------------------------------------*/
html {
	font-size: 62.5%;
}

body, input, textarea {
	font-family: "Roboto", "メイリオ", "Meiryo",Verdana, "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", sans-serif;
	font-size: 1.6rem;
}

body * {
	box-sizing: border-box;
}

a {
	color: #3f2112;
}

a:hover {
	color: #FDB32B;
}

input[type=text],
input[type=password] {
	height: 3.2rem;
	padding: 0 5px;
	border: 1px solid #ccc;
	font-size: 100%;
}

textarea {
	padding: 5px;
	border: 1px solid #ccc;
	font-size: 100%;
}

select, option {
	height: 3.2rem;
	border: 1px solid #ccc;
	font-size: 100%;
}

@media screen and (max-width: 767px) {
	/*Safari（iOS）で縦画面から横画面で文字サイズが大きくなるのを防ぐ*/
	body {
		-webkit-text-size-adjust: 100%;
	}
}
/*------------------------------------------------------------------------------
	全体
------------------------------------------------------------------------------*/
.sh-wrapper {
	min-height: 100vh;
	color: #3f2112;
	flex-direction: column;
	display: flex;
}
/*------------------------------------------------------------------------------
	ヘッダー
------------------------------------------------------------------------------*/
.sh-wrapper header {
	top: 0;
	width: 100%;
	padding: 0;
	background: white;
	position: sticky;
	z-index: 1;
}

.sh-header-outer {
	position: static;
}

.sh-header-inner-u {
	width: 100%;
	max-width: 1100px;
	margin: 10px auto 0 auto;
/*	align-items: center;*/
	justify-content: space-between;
	display: flex;
}

.sh-header-inner-u div {
	font-size: 1.1rem;
}

.sh-header-inner-u div:nth-child(2) {
	text-align: right;
}

.sh-header-inner-u p {
	font-size: 3rem;
	font-weight: bold;
}

.sh-header-inner-u a {
	width: 200px;
	padding: 20px 0;
	background: #FDB32B;
	border-radius: 3px;
	color: white;
	font-size: 1.6rem;
	text-align: center;
	display: block;
}

.sh-header-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	align-items: center;
	justify-content: space-between;
	display: flex;
}

.sh-header-inner img {
/*	height: 40px;*/
	vertical-align: middle;
}

.sh-drawer > label {
	width: 40px;
	height: 40px;
	position: relative;
}

.sh-drawer > label > span {
	width: 30px;
	height: 3px;
	background: #777;
	border-radius: 2px;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
}

.sh-drawer > label > span:before,
.sh-drawer > label > span:after {
    content: '';
	width: 30px;
	height: 3px;
	background: #777;
	border-radius: 3px;
	display: block;
	position: absolute;
	top: 0;
}

.sh-drawer > label > span:before {
	margin: -10px 0 0 0;
}

.sh-drawer > label > span:after {
	margin: 10px 0 0 0;
}

.sh-drawer nav > label {
	width: 40px;
	height: 40px;
	margin: 15px 10px 15px auto;
	position: relative;
}

.sh-drawer nav > label > span {
	top: 50%;
	width: 30px;
	height: 5px;
	background: #777;
	border-radius: 3px;
	display: block;
	position: absolute;
	-webkit-transform: translateY(-50%) rotate(45deg);
	transform: translateY(-50%) rotate(45deg);
}

.sh-drawer nav > label > span:last-child {
	content: '';
	-webkit-transform: translateY(-50%) rotate(135deg);
	transform: translateY(-50%) rotate(135deg);
}

.sh-drawer input[type=checkbox],
.sh-drawer label {
	display: none;
}

.sh-drawer nav > ul {
	align-items: center;
	display: flex;
	position: static;
}

.sh-drawer nav > ul > li {
	padding: 0;
}

.sh-drawer nav > ul > li > a {
	padding: 20px;
	display: inline-block;
	position: relative;
}

.sh-drawer nav > ul > li:last-child {
	background: #FDB32B;
	display: none;
}

.sh-drawer nav > ul > li:last-child > a {
	color: white;
}

.sh-drawer nav > ul > li > ul {
	left: 0;
	top: 100%;
	width: 100%;
	padding: 20px 40px 40px 40px;
	background: white;
	box-shadow: 5px 5px 3px 3px rgba(0, 0, 0, 0.2);
	display: none;
}

.sh-drawer nav > ul > li:not(:last-child):hover {
	padding-bottom: 0;
	border-bottom: none;
}

.sh-drawer nav > ul > li:hover > ul {
	z-index: 1;
	display: block;
}

.sh-drawer nav > ul > li > ul > li {
	margin: 20px 40px 0 0;
	display: inline-block;
}

.sh-drawer nav a:hover {
	color: #3f2112;
}

@media screen and (min-width: 768px) {
	.sh-drawer nav > ul > li:not(:last-child) > a:hover {
		color: #FDB32B;
	}

	.sh-header-nav-child-container {
		visibility: hidden;
		opacity: 0;
		position: absolute;
		left: 0;
		right: 0;
		transition: all 0.2s ease 0s;
	}

	.sh-header-nav-child-container:before {
		content: "";
		z-index: -1;
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		height: 100%;
		background: #FDB32B;
		opacity: .95;
		mix-blend-mode: multiply;
	}

	.sh-drawer nav > ul > li.sh-drawer-has-children:hover .sh-header-nav-child-container {
		visibility: visible;
		opacity: 1;
	}

	.sh-header-nav-child-block {
		margin: 0 auto;
		padding: 40px 0;
		max-width: 900px;
		display: flex;
		justify-content: space-between;
		color: #FFF;
	}

	.sh-header-nav-child-block a, spam, .sh-drawer nav .sh-header-nav-child-block a:hover {
		color: #FFF;
	}

	.sh-header-nav-child-block > p {
		width: 30%;
		border-right: 1px solid #FFF;
		font-size: 36px;
	}

	.sh-header-nav-child-block > ul {
		padding: 0 0 0 70px;
		width: 70%;
	}

	.sh-header-nav-child-block > ul > li {
		display: inline-block;
		margin: 0 40px 20px 0;
	}

	.sh-header-nav-child-block > ul > li a:hover {
		text-decoration: underline;
		text-underline-offset: 0.2em;
	}
}

@media screen and (max-width: 767px) {
	.sh-header-inner-u {
		display: none;
	}

	.sh-header-inner {
		padding: 10px;
	}

	.sh-drawer > label {
		display: block;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span,
	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span::before,
	.sh-drawer input[type=checkbox][id=drawer-nav] + label > span::after {
		transition: .5s ease-in-out;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span {
		height: 3;
		background: transparent;
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span::before {
		margin: 0;
		transform: rotate(45deg);
	}

	.sh-drawer input[type=checkbox][id=drawer-nav]:checked + label > span::after {
		margin: 0;
		transform: rotate(-45deg);
	}

	.sh-drawer nav {
		left: 100%;
		top: auto;
		width: 0;
		height: 100%;
		min-height: calc(100vh - 61px);
		background: rgba(255, 255, 255, 0.95);
		position: absolute;
    	transition: .5s ease-in-out;
		font-size: 1.6rem;
		overflow-x: hidden;
		overflow-y: auto;
		margin: 10px 0 0 0;
		padding: 0 0 80px 0;
    }

	.sh-drawer nav > label {
		display: block;
	}

	.sh-drawer nav > ul {
		align-items: start;
		flex-direction: column;
		width: 100vw;
	}

	.sh-drawer nav > ul > li,
	.sh-drawer nav > ul > li li {
		width: 100%;
		margin: 0;
		padding: 0;
		border: 0;
		border-top: 1px solid #ccc;
		position: relative;
	}

	.sh-drawer nav > ul > li li {
		border-top: 1px solid #EEE;
	}

	.sh-drawer nav > ul > li:last-child {
		display: block;
	}

	.sh-drawer nav > ul > li:not(:last-child):hover {
		padding-bottom: 0;
		border-bottom: none;
	}

	.sh-drawer nav > ul > li > ul > li:last-child {
		padding-bottom: 0;
	}

	.sh-drawer nav ul li > a {
		width: 100%;
		height: 100%;
		padding: 15px;
		display: inline-block;
		margin: 0;
		position: relative;
		line-height: 22px;
	}

	.sh-drawer nav ul li.sh-drawer-has-children > a {
		width: calc(100% - 34px);
	}

	.sh-drawer nav ul li.sh-drawer-has-children li a {
		width: calc(100% - 34px);
		padding-left: 30px;
		line-height: 22px;
	}

	.sh-header-nav-child-container {
		display: none;
	}

	.sh-drawer-has-children label {
		display: inline-block;
		position: absolute;
		top: 0;
		right: 10px;
		width: 24px;
		height: 52px;
	}

	.sh-drawer-has-children label span {
		display: inline-block;
		position: absolute;
		width: 24px;
		height: 24px;
		margin: auto 0 auto auto;
		background-color: transaprent;
		top: 0;
		bottom: 0;
		border: solid 2px #777;
		border-radius: 50%;
		cursor: pointer;
	}

	.sh-drawer-has-children label span::before {
		content: '';
		width: 12px;
		height: 2px;
		background: #777;
		border-radius: 2px;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	.sh-drawer-has-children label span::after {
		content: '';
		width: 2px;
		height: 12px;
		background: #777;
		border-radius: 2px;
		display: block;
		position: absolute;
		top: 0;
		bottom: 0;
		left: 0;
		right: 0;
		margin: auto;
	}

	.sh-drawer-has-children input[type=checkbox]:checked  + label > span::after {
		display: none;
	}


	.sh-header-nav-child-block > p {
		display: none;

	}

	.sh-drawer-has-children input[type=checkbox]:checked  ~ .sh-header-nav-child-container {
		display: block;
	}

	.sh-drawer nav ul > li > ul > li > a {
		padding-left: 30px;
	}

	.sh-drawer nav > ul > li > ul {
		padding: 0;
		border: none;
		box-shadow: none;
		position: static;
		display: block;
	}

	.sh-drawer input[type=checkbox]:checked ~ nav {
		width: 100%;
		left: 0;
	}
}
/*------------------------------------------------------------------------------
	メイン
------------------------------------------------------------------------------*/
.sh-wrapper main {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 0;
	flex: 1;
}

.sh-wrapper main.wide {
	max-width: initial;
	margin: 0;
	padding: 0;
}

@media screen and (max-width: 767px) {
	.sh-wrapper main {
		padding: 25px 10px 50px 10px;
	}
}
/*------------------------------------------------------------------------------
	画面分割
------------------------------------------------------------------------------*/
.sh-wrapper main .sh-split {
	justify-content: space-between;
	display: flex;
}

.sh-wrapper main .sh-split > li:first-child {
	width: 28%;
}

.sh-wrapper main .sh-split > li:last-child {
	width: 70%;
}

@media screen and (max-width: 767px) {
	.sh-wrapper main .sh-split {
		flex-wrap: wrap;
	}

	.sh-wrapper main .sh-split > li:first-child,
	.sh-wrapper main .sh-split > li:last-child {
		width: 100%;
	}
}
/*------------------------------------------------------------------------------
	フッター
------------------------------------------------------------------------------*/
.sh-wrapper footer {
	margin-top: auto;
	background: #f5f5fb;
}

.sh-contact-inner {
	width: 100%;
	height: 600px;
	background-image: url('https://www.3wa-home.jp/image/contact_bg.png');
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

.sh-contact-inner > div {
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	width: 100%;
	text-align: center;
	position: absolute;
}

.sh-contact-inner > div > p:first-of-type {
	font-size: 4rem;
	font-weight: bold;
}

.sh-contact-inner > div > a:first-of-type {
	margin-top: 50px;
	color: #FFA200;
	font-size: 7rem;
	font-weight: bold;
}

.sh-contact-inner > div > p:nth-of-type(2) {
	font-size: 2rem;
}

.sh-contact-inner > div > a:nth-of-type(2) {
	margin-top: 50px;
	padding: 30px;
	background: white;
	color: #FFA200;
	border-radius: 75px;
	font-size: 3rem;
	font-weight: bold;
	display: inline-block;
}

.sh-footer-inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px 0;
}

.sh-footer-inner > ul {
	flex-wrap: wrap;
	justify-content: space-between;
	display: flex;
}

.sh-footer-inner > ul > li {
	width: 25%;
}

.sh-footer-inner > ul > li:first-child {
	width: 100%;
	padding-bottom: 50px;
	text-align: center;
}

.sh-footer-inner > ul > li > a {
	margin-left: 10px;
	font-size: 1.4rem;
	display: block;
}

.sh-footer-inner > ul > li > a.sh-footer-root {
	margin-left: 0;
	font-size: 1.6rem;
	font-weight: bold;
}

.sh-footer-inner > ul > li > a:not(:first-child) {
	margin-top: 10px;
}

.sh-footer-credit {
	padding: 10px 0;
	background: #FDB32B;
	color: white;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.sh-contact-inner {
		height: 300px;
	}

	.sh-contact-inner > div > p:first-of-type {
		font-size: 2.4rem;
	}

	.sh-contact-inner > div > a:first-of-type {
		margin-top: 20px;
		font-size: 3.6rem;
	}

	.sh-contact-inner > div > p:nth-of-type(2) {
		font-size: 1.2rem;
	}

	.sh-contact-inner > div > a:nth-of-type(2) {
		margin-top: 20px;
		padding: 20px;
		font-size: 1.8rem;
	}

	.sh-footer-inner {
		padding: 50px 20px;
	}

	.sh-footer-inner > ul > li:not(:first-child) {
		width: 50%;
		margin-top: 20px;
	}
}
/*------------------------------------------------------------------------------
	パンくずリスト
------------------------------------------------------------------------------*/
.sh-breadcrumb {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 0;
}

.sh-breadcrumb li	{
	margin: 0 0.45em 0 0;
	padding: 0 0.9em 0 0;
	font-size: 0.9em;
	line-height: 0.9em;
	position: relative;
	display: inline-block;
}

.sh-breadcrumb li::after	{
	content: '\f105';
	font-family: FontAwesome;
	left: auto;
	right: 0;
	top: 0;
	bottom: 0;
	width: 0.9em;
	height: 0.9em;
	margin: auto 0;
	text-align: right;
	position: absolute;
	display: inline-block;
}

.sh-breadcrumb li:last-child {
	margin: 0;
	padding: 0;
}

.sh-breadcrumb li:last-child::after {
	display: none;
}

@media screen and (max-width: 767px) {
	.sh-breadcrumb {
		padding: 10px;
		overflow-x: scroll;
		overflow-scrolling: touch;
		-webkit-overflow-scrolling: touch;
		word-break: keep-all;
		white-space: nowrap;
		-ms-overflow-style: none;
		scrollbar-width: none;
	}

	.sh-breadcrumb::-webkit-scrollbar {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	関連コンテンツ
------------------------------------------------------------------------------*/
.sh-recommend {
	margin-top: 30px;
}

.sh-recommend  > ul {
	flex-wrap: wrap;
	justify-content: space-between;
	display: flex;
}

.sh-recommend li {
	width: 19%;
	margin-top: 20px;
	padding: 10px;
	border: 1px solid #ccc;
	text-align: center;
}

.sh-recommend li:not(.empty):hover {
	background: #f0f0f0;
}

.sh-recommend li.empty {
	border: none;
}

.sh-recommend li a:hover {
	color: #3f2112;
}

.sh-recommend li p {
	margin-top: 10px;
	font-weight: bold;
}

.sh-recommend li p:last-child {
	font-size: 1.4rem;
	font-weight: normal;
	text-align: left;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

@media screen and (max-width: 767px) {
	.sh-recommend li {
		width: 49%;
	}

	.sh-recommend li.empty {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	スライダー
------------------------------------------------------------------------------*/
.sh-slider,
.sh-slider-nav {
	margin: 30px 0 0 0;
}

.sh-slider li {
	height: 30vw;
	background: #f5f5f5;
}

.sh-slider img,
.sh-slider-nav img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.sh-slider-nav li {
	height: 5vw;
}

.sh-slider-nav.hide-nav {
	display: none;
}

@media screen and (max-width: 767px) {
	.sh-slider {
		width: 80%;
		margin: 30px auto 0 auto;
	}

	.sh-slider li {
		height: 80vw;
	}

	.sh-slider-nav {
		display: none;
	}
}
/*------------------------------------------------------------------------------
	アイコン
------------------------------------------------------------------------------*/
.sh-icon {
	margin: 10px 10px 0 0;
	padding: 5px 10px;
	background: white;
	color: #FDB32B;
	border: 1px solid #FDB32B;
	border-radius: 3px;
	font-size: 1.2rem;
	display: inline-block;
}
/*------------------------------------------------------------------------------
	画像
------------------------------------------------------------------------------*/
.sh-img43 {
	width: 100%;
	height: 0;
	padding-top: calc(100% * 0.75);
	overflow: hidden;
	position: relative;
}

.sh-img43 img {
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	object-fit: cover;
	position: absolute;
}
/*------------------------------------------------------------------------------
	ページャー
------------------------------------------------------------------------------*/
.sh-pager {
	color: #0b1e47;
	align-items: center;
	flex-wrap: wrap;
	display: flex;
}

.sh-pager .page-info {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sh-pager .page-link {
	display: flex;
	justify-content: flex-end;
	flex-grow: 1;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.sh-pager .page-link span {
	color: #fff;
	min-width: 25px;
	text-align: center;
	padding: 1px 5px;
	background: #56A764;
	border: 1px solid #56A764;
	border-radius: 3px;
	margin: 0 3px;
}

.sh-pager .page-link a {
	color: #56A764;
	min-width: 25px;
	text-align: center;
	padding: 1px 5px;
	background: #fff;
	border: 1px solid #56A764;
	border-radius: 3px;
	margin: 0 3px;
}

.sh-pager .page-link .prev, .sh-pager .page-link .next {
	color: #fff;
	padding: 1px 5px;
	background: #56A764;
	border: 1px solid #56A764;
	border-radius: 3px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}

.sh-pager .page-link .prev {
	margin: 0 3px 0 0;
}

.sh-pager .page-link .prev i {
	margin: 0 3px 0 0;
}

.sh-pager .page-link .next {
	margin: 0 0 0 3px;
}

.sh-pager .page-link .next i {
	margin: 0 0 0 3px;
}

@media screen and (max-width: 767px) {
	.sh-pager .page-info {
		width: 100%;
	}

	.sh-pager .page-link {
		justify-content: center;
		margin: 10px 0 0;
	}
}
/*------------------------------------------------------------------------------
	ボタン
------------------------------------------------------------------------------*/
.sh-button {
	padding: 5px 20px;
	background: #FDB32B;
	border: 1px solid #FDB32B;
	color: white;
	font-weight: bold;
	cursor: pointer;
}
/*------------------------------------------------------------------------------
	SNS
------------------------------------------------------------------------------*/
.sh-share li {
	width: 80px;
	display: inline-block;
	margin: 20px 10px 0 0;
}

.sh-share li a {
	padding: 5px;
	color: white;
	border-radius: 3px;
	font-size: 0.8em;
	text-align: center;
	display: block;
}

.sh-share li a:hover {
	opacity: .8;
}

.sh-share li a:visited {
	color: white;
}

.sh-share .twitter a {
	background-color: #55ACEE;
}

.sh-share .facebook a {
	background-color: #35629A;
}
/*------------------------------------------------------------------------------
	行数制限
------------------------------------------------------------------------------*/
.sh-line-clamp-2 {
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	MCEコンテンツ
------------------------------------------------------------------------------*/
.sh-mce {
	width: 100%;
}

.sh-mce img {
	max-width: 100%;
	height: auto;
}
/*------------------------------------------------------------------------------
	ウインドウスクロール停止
------------------------------------------------------------------------------*/
.sh-body-fixed {
	width: 100%;
	height: 100%;
	overflow: hidden;
}
/*------------------------------------------------------------------------------
	その他
------------------------------------------------------------------------------*/
.sh-page-title {
	background: #FDB32B;
}

.sh-page-title > p {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 30px 0;
	color: white;
	line-height: 2.4rem;
	font-size: 2.4rem;
	font-weight: bold;
}

.sh-section-title {
	color: #3f2112;
	line-height: 3rem;
	font-size: 3rem;
	font-weight: bold;
	text-align: center;
}

.sh-contents-subject {
	line-height: 2.4rem;
	font-size: 2.4rem;
	font-weight: bold;
}

.sh-new:after {
	content: 'NEW';
	margin-left: 5px;
	padding: 5px 10px;
	background: white;
	color: #FDB32B;
	border: 1px solid #FDB32B;
	border-radius: 3px;
	font-size: 1.2rem;
	vertical-align: 2px;
	display: inline-block;
}

.sh-required:after {
	content: '必須';
	margin-left: 5px;
	padding: 3px;
	background: red;
	color: white;
	font-size: 0.8em;
	vertical-align: top;
}

.sh-error {
	margin-bottom: 5px;
	color: red;
	font-size: 0.8em;
}

.sh-error:before {
	content: '\f071';
	font-family: FontAwesome;
	padding-right: 5px;
}

.sh-page-top {
	position: fixed;
	right: 10%;
	bottom: 10%;
	color: #FDB32B;
	border-bottom: 5px solid #FDB32B;
	cursor: pointer;
	z-index: 1;
}

.sh-page-top:hover {
	color: #FDB32B;
}

@media screen and (max-width: 767px) {
	.sh-page-title > p {
		padding: 20px 10px;
		font-size: 2rem;
	}

	.sh-section-title {
		line-height: 2.4rem;
		font-size: 2.4rem;
	}

	.sh-contents-subject {
		line-height: 2rem;
		font-size: 2rem;
	}
}