@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Kosugi&family=Noto+Sans+JP:wght@100..900&display=swap');

html {
	font-size: 62.5%;
}
body {
	color: #1C1B1A;
	font-size: 1.8rem;
	line-height: 1.8;
	font-weight: normal;
	font-family: "Noto Sans JP", sans-serif;
	/*background: url(../images/common/bg.png) repeat;
    background-size: 200px;*/
}
p {
	margin: 0;
	padding: 0;
}
p:not(:last-child) {
	margin-bottom: 12px;
}
p.img img {
	border-radius: 12px;
}

@media screen and (max-width: 559px) {
	body {
		font-size: 1.7rem;
	}
}
@media screen and (max-width: 320px) {
	body {
		font-size: 1.6rem;
	}
}


/* ***************************************
 * リンク
 * **************************************/

a {
	display: inline-block;
	color: #231814;
	text-decoration: none;
	transition: all .3s ease;
	word-break: break-all;
	cursor: pointer;
}
a:hover {
	opacity: .7;
}
a.noopacity,
a.noopacity img {
	opacity: 1 !important;
}
a img {
	transition: all .3s;
	-webkit-transition: all .3s;
}
a img:hover {
	opacity: .7;
}



/* 別ウィンドウリンク
 * ************************************/

a.tab,
span.tab {
	display: inline-block !important;
	position: relative;
	padding-right: 18px;
	margin-right: 6px;
	line-height: 1;
}
a.tab:after,
span.tab:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
	background: url(../images/common/icon-tab.svg) no-repeat;
	background-size: 100%;
	width: 12px;
	height: 12px;
}
a.tab.white:after,
span.tab.white:after {
	background: url(../images/common/icon-tab-FFF.svg) no-repeat;
	background-size: 100%;
}


/* メインボタン */
.btnPage {
	display: inline-block;
    font-size: 1em;
    width: 260px;
    height: 50px;
    line-height: 50px;
    margin: 0 10px 0;
    position: relative;
    text-align: center;
    text-decoration: none;
    outline: 0;
    overflow: hidden;
    color: #fff;
    background: #f29603;
    border-radius: 4px;
    box-shadow: 0 0 0 5px #f29603;
    border: 1px dashed #fff;
    font-family: "Kosugi", sans-serif;
	font-weight: normal;
}
.btnPage:hover {
	color: #FFF;
}

@media screen and (max-width: 768px) {
	.btnPage {
		width: 80%;
	}
}
@media screen and (max-width: 380px) {
	.btnPage {
		width: 100%;
	}
}


/* ******************************************************
 * レスポンシブ
 * *************************************************** */

@media screen and (min-width: 769px) {
	.pc {
		display: block !important;
	}
	.sp {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
	.sp {
		display: block !important;
	}
}


/* ***************************************
 * レイアウト
 * **************************************/

main {
	background: #FFF;
    margin-top: -175px;
    padding: 175px 0 0;
}
main#front-page {
	background: none;
}
.inner {
	max-width: 1240px;
	padding: 0 30px;
	margin: 0 auto;
}
.inside {
	width: 834px;
	margin: 0 auto;
}
.inner_wide {
	max-width: 1920px;
    width: calc(100% - 120px);
	margin: 0 auto;
}


article {
	width: 100%;
}
section {
	padding: 90px 0;
}
.contents {
	margin: 0 auto 0;
	padding: 60px 0 75px;
}
.content {
	margin: 0 auto 0;
	padding: 60px 0 90px;
}

@media screen and (max-width: 1194px) {
	.inner {
		width: 100%;
		padding: 0 60px;
	}
}
@media screen and (max-width: 768px) {
	.inner {
		width: 100%;
		padding: 0 45px;
	}
	section {
		padding: 75px 0;
	}
	.contents {
		padding: 45px 0 75px;
	}
	main {
		margin-top: -160px;
		padding: 160px 0 0;
	}
}
@media screen and (max-width: 559px) {
	section {
		padding: 60px 0;
	}
	.contents {
		padding: 30px 0 60px;
	}
	main {
		margin-top: -120px;
		padding: 120px 0 0;
	}
}
@media screen and (max-width: 430px) {
	.inner {
		padding: 0 30px;
	}
}
@media screen and (max-width: 380px) {
	.inner {
		padding: 0 20px;
	}
}
@media screen and (max-width: 320px) {
	section {
		padding: 45px 0;
	}
}



/* common
 * ***************************************/

#common .header_flex .header_flex___logo {
	width: calc(100% / 2);
	text-align: center;
}
#common .header_flex .header_flex___logo a {
	display: inline-block !important;
}


@media screen and (max-width: 834px) {
	#common .header_flex {
		flex-direction: row;
	}
	#common .header_flex .header_flex___logo {
		
	}
}



/****************************************
 * 上部固定ヘッダー
*****************************************/

#fixed-header {
	background: #FFF;
	color: #333;
	position: fixed;
	top: -100px;/* 上に隠す高さ */
	left: 0;
	text-align: center;
	width: 100%;
	margin: 0 auto;
	padding: 12px 0;
	opacity:0;
	z-index: 1000;
	box-shadow: 0 0 6px rgb(0 0 0 / 20%);
}
#fixed-header .fixed-header-flex {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 30px;
}
#fixed-header .fixed-header-flex .fixed-header-flex___logo {
	width: 10%;
}
#fixed-header .fixed-header-flex .fixed-header-flex___nav {
	max-width: 740px;
    width: 90%;
}
#fixed-header .fixed-header-flex ul.global-nav-items {
	font-size: .9em;
	justify-content: flex-end;
}
#fixed-header nav.global-nav ul.global-nav-items li {
	width: auto;
}
#fixed-header nav.global-nav ul.global-nav-items li::before,
#fixed-header nav.global-nav ul.global-nav-items li::after {
	content: none;
}
#fixed-header .fixed-header-flex ul.global-nav-items li a:hover {
	background: none;
}
#fixed-header nav.global-nav ul.global-nav-items li a {
	padding: 15px 12px;
}

@media screen and (max-width: 768px) {
	#fixed-header {
		display: none;
	}
}


/****************************************
ヘッダー
*****************************************/

#logo {
	line-height: 1;
	margin: 0;
	font-size: 1em;
}
#header {
	padding: 30px 0 0;
	background: url(../images/common/bg.png) repeat;
    background-size: 200px;
}
#header .header-flex {
	display: flex;
}
#header .header-flex .header-flex___logo {
	    max-width: 380px;
    width: 50%;
}
#header .header-flex .header-flex___logo #logo {
	width: 52%;
	max-width: 180px;
}
#header .header-flex .header-flex___logo #description {
	margin: 3px 0 0 0;
	font-size: .7em;
	line-height: 1.2;
}
#header .header-flex .header-flex___information {
	max-width: 780px;
    width: 75%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
#header .header-flex .header-flex___information p.hours {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin: 5px 0 0;
	padding: 0;
	border-radius: 3px;
}
#header .header-flex .header-flex___information p.close {
	display: inline-block;
	font-size: 14px;
	font-weight: 600;
	margin: 6px 0 0 6px;
	padding: 0;
	border-radius: 3px;
}
#header .header-flex .header-flex___information p.close span {
	display: inline;
	font-size: 1em;
	padding: 0 2px;
	border: 1px solid;
	border-radius: 4px;
}
#header .header-flex .header-flex___information p.close span:not(:first-child) {
	margin-left: 6px;
}
#header .header-flex .header-flex___information p.address {
	display: flex;
	align-items: center;
	font-size: .8em;
	margin: 3px 0 0;
	text-align: center;
}
#header .header-flex .header-flex___information p.address a {
	margin-left: 2px;
}

@media screen and (max-width: 768px) {
	#header {
		padding: 30px 0 12px;
	}
	#header .header-flex .header-flex___logo {
		width: 30%;
		max-width: 150px;
	}
	#header .header-flex .header-flex___logo #logo {
		width: 100%;
		max-width: 100%;
	}
	#header .header-flex .header-flex___logo #description {
		display: none;
	}
	#header .header-flex .header-flex___information {
		width: 100%;
		padding-right: 36px;
	}
	#header .header-flex .header-flex___information p.close span {
		font-size: 12px;
	}
	#header .header-flex .header-flex___information p.address {
		display: none;
	}
}
@media screen and (max-width: 559px) {
	#header {
		padding: 22px 0 12px;
	}
	#header .header-flex .header-flex___information img.phone {
		width: 65%;
	}
	#header .header-flex .header-flex___information p.hours {
		display: block;
		text-align: right;
		line-height: 1;
		margin-top: 6px;
	}
	#header .header-flex .header-flex___information p.close {
		display: block;
		text-align: right;
		line-height: 1;
		margin-top: 6px;
	}
}
@media screen and (max-width: 430px) {
	#header .header-flex .header-flex___logo {
		width: 40%;
	}
	#header .header-flex .header-flex___information {
		padding-right: 48px;
	}
}
@media screen and (max-width: 380px) {
	
}
@media screen and (max-width: 320px) {
	
}


/****************************************
 * グローバルナビ
 * **************************************/

nav.global-nav-items {
    max-width: 700px;
    width: 45%;
    margin-left: auto;
	z-index: 2;
}
nav.global-nav ul.global-nav-items {
	width: 100%;
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: space-around;
}
nav.global-nav ul.global-nav-items li {
	width: 100%;
	line-height: 1;
	position: relative;
}
nav.global-nav ul.global-nav-items li::before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
    background: #5B4E3B;
}
nav.global-nav ul.global-nav-items li:last-child::after {
	content: "";
	display: inline-block;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 1px;
	height: 60%;
    background: #5B4E3B;
}
nav.global-nav ul.global-nav-items li a {
	display: block;
	text-align: center;
	color: #5B4E3B;
	padding: 18px 9px;
}
nav.global-nav ul.gnav_front_list li span {
	
}
nav.global-nav ul.global-nav-items li a:hover {
	opacity: 1;
	color: #251E1F;
	background: rgba(228, 223, 214, .2);
}

@media screen and (max-width: 1194px) {
	nav.global-nav ul.global-nav-items li {
		font-size: 1.5vw;
	}
}
@media screen and (max-width: 768px) {
	#header nav.global-nav {
		display: none;
	}
	nav.global-nav ul.global-nav-items {
		flex-direction: column;
		margin-top: 60px;
		border-top: 1px solid #E8E6E2;
	}
	nav.global-nav ul.global-nav-items li {
		font-size: 100%;
		border-bottom: 1px solid #E8E6E2;
	}
	nav.global-nav ul.global-nav-items li::before,
	nav.global-nav ul.global-nav-items li:last-child::after {
		content: none;
	}
	nav.global-nav ul.global-nav-items li a {
		color: #231814;
	}
	nav.global-nav ul.global-nav-subitems {
	    margin: 0;
		padding: 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
		border-top: 1px solid #E8E6E2;
	}
	nav.global-nav ul.global-nav-subitems li:nth-child(3),
	nav.global-nav ul.global-nav-subitems li:nth-child(4) {
		border-bottom: none;
	}
	nav.global-nav ul.global-nav-subitems li:nth-child(1),
	nav.global-nav ul.global-nav-subitems li:nth-child(3) {
		border-right: 1px solid #E8E6E2;
	}
	nav.global-nav ul.global-nav-subitems li a {
		
	}
}
@media screen and (max-width: 559px) {

}
@media screen and (max-width: 380px) {
	nav.general .gnav_back .gnav_back_box {
		width: 260px;
		padding: 30px;
	}
	nav.general ul.gnav_back_list li a {
		font-size: 1.4rem;
	}
}



/* ***************************************
 * スマホナビゲーション
 * **************************************/

#cat-nav {
	display: none;
}

@media screen and (max-width: 768px) {
	/* ハンバーガーメニューの場所 */
	#cat-nav {
		display: block;
		position: fixed;
		right: 20px;
		top: 20px;
		z-index: 999;
	}
	/* ハンバーガーの場所の中 */
	#cat-nav nav#cat-nav-body {
		position: relative;
		padding: 15px;
		border-radius: 50px;
	}
	#cat-nav nav#cat-nav-body input.cat-nav-unshown {
		display: none;
	}
	#cat-nav nav#cat-nav-body label#cat-nav-open {
		display: inline-block;
		width: 25px;
		height: 20px;
		vertical-align: middle;
	}
	/*ハンバーガー ここから*/
	#cat-nav nav#cat-nav-body label#cat-nav-open span,
	#cat-nav nav#cat-nav-body label#cat-nav-open span:before,
	#cat-nav nav#cat-nav-body label#cat-nav-open span:after {
		position: absolute;
		height: 3px;
		width: 25px;
		border-radius: 3px;
		background: #f29603;
		display: block;
		content: '';
		cursor: pointer;
	}
	#cat-nav nav#cat-nav-body label#cat-nav-open span:before {
		bottom: -8px;
	}
	#cat-nav nav#cat-nav-body label#cat-nav-open span:after {
		bottom: -16px;
	}
	/*ハンバーガー ここまで */
	/*閉じる用の薄黒カバー*/
	#cat-nav nav#cat-nav-body label#cat-nav-close {
		display: none;/*はじめは隠しておく*/
		position: fixed;
		z-index: 99;
		top: 0;/*全体に広がるように*/
		left: 0;
		width: 100%;
		height: 100%;
		background: black;
		opacity: 0;
		transition: .3s ease-in-out;
	}
	/*開いた時のメニュー*/
	#cat-nav nav#cat-nav-body .cat-nav-content {
		overflow: auto;
		position: fixed;
		top: 0;
		left: 0;
		z-index: 999;
		width: 80%;
		padding: 0;
		max-width: 330px; /*最大幅調整 */
		height: 100%;
		background: #fefae8;
		transition: .3s ease-in-out;
		-webkit-transform: translateX(-105%);
		transform: translateX(-105%);
	}
	/*チェックが入ったら表示*/
	#cat-nav #cat-nav-input:checked ~ #cat-nav-close {
		display: block;/*カバーを表示*/
		opacity: .6;
	}
	#cat-nav #cat-nav-input:checked ~ .cat-nav-content {
		-webkit-transform: translateX(0%);
		transform: translateX(0%);/*中身を表示（右へスライド）*/
		box-shadow: 6px 0 25px rgba(0,0,0,.15);
	}
	#cat-nav .cat-nav-content .cat-nav-contact {
		color: #231814;
		text-align: center;
		margin-top: 30px;
	}
	#cat-nav .cat-nav-content p.hours,
	#cat-nav .cat-nav-content p.closed {
        margin: 0;
        font-size: .9em;
	}
}

/* ***************************************
 * H要素
 * **************************************/

h1, h2, h3, h4, h5, h6 {
	font-family: "Kosugi", sans-serif;
  font-weight: 600;
	line-height: 1.4;
	margin: 0;
	text-align: center;
	color: #5B4E3B;
}

h1 {
	font-size: 100%;
}
h2 {
	font-size: 3.6rem;
	margin-bottom: 48px;
}
h3 {
	font-size: 2.4rem;
	margin-bottom: 30px;
}
h4 {
	font-size: 3rem;
	margin-bottom: 30px;
}


.page-title {
	text-align: center;
	margin-top: 30px;
	padding: 0 60px 28px;
	font-weight: 600;
	font-size: 3.8rem;
	position: relative;
}
.page-title:after {
	content:  "";
	position: absolute;
	left: 50%;
	bottom: 0;
	transform: translateX(-50%);
	background: #231814;
	width: 90px;
	height: 1px;
}
.page-title span {
	display: block;
	font-weight: normal;
	font-size: .4em;
}

@media screen and (max-width: 1194px) {
	h2 {
		font-size: 3.2rem;
	}
	h3 {
		font-size: 2.2rem;
	}
	h4 {
		font-size: 2rem;
	}
	
	.page-title {
		font-size: 3.2rem;
	}
}
@media screen and (max-width: 768px) {
	h2 {
		font-size: 3rem;
	}
	h3 {
		font-size: 2.2rem;
	}
	h4 {
		font-size: 1.8rem;
	}

	.page-title {
		font-size: 2.8rem;
		padding: 0 0 28px;
	}
	.page-title span {
		font-size: .5em;
		margin-bottom: 3px;
	}
}
@media screen and (max-width: 559px) {
	h2 {
		font-size: 2.6rem;
		margin-bottom: 38px;
	}
	h3 {
		font-size: 2.2rem;
	}
	h4 {
		font-size: 1.2em;
	}

	.page-title {
		font-size: 2.4rem;
		padding: 0 45px 28px;
	}
}
@media screen and (max-width: 430px) {
	h2 {
		font-size: 2.4rem;
	}
	h3 {
		font-size: 2rem;
	}

	.page-title {
		font-size: 2.2rem;
		padding: 0 30px 28px;
	}
}
@media screen and (max-width: 320px) {
	h2 {
		font-size: 2rem;
	}
	h3 {
		font-size: 1.1em;
	}
	h4 {
		font-size: 1.1em;
	}
}


/* ***************************************
 * メインビジュアル
 * **************************************/

#topimage,
#title_topimage {
	text-align: center;
	padding: 0;
	position: relative;
}
#topimage:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../images/common/bg.png) repeat;
    background-size: 200px;
	width: 100%;
	height: 70%;
	z-index: -1;
}
#title_topimage:before {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	background: url(../images/common/bg.png) repeat;
    background-size: 200px;
	width: 100%;
	height: 50%;
	z-index: -1;
}

#topimage img.topimage,
#title_topimage img.topimage {
	border-radius: 0 0 12px 12px;
}

@media screen and (max-width: 768px) {
	
}
@media screen and (max-width: 559px) {
	#topimage .inner,
	#title_topimage .inner {
		padding: 0;
	}
	#topimage img.topimage,
	#title_topimage img.topimage {
		border-radius: 0;
	}
}


/****************************************
 * パンくず
 * **************************************/

#breadcrumbs-area {
	padding: 12px 0;
}
#breadcrumbs-area .breadcrumbs {
	font-size: .7em;
}
.breadcrumbs a {
	color: #1C1B1A;
}

@media screen and (max-width: 560px) {
	.breadcrumbs {
		overflow-x: auto;
		white-space: nowrap;
	}
}
@media screen and (max-width: 560px) {
	
}



/****************************************
 * 共通
 * ****************************************/

.dot {
	margin: 0 -3px;
}

/* ボタンボックス
 * ***************************************/

.btnBox {
	text-align: center;
	margin-top: 30px;
	position: relative;
	z-index: 0;
}

@media screen and (max-width: 430px) {
	.button_box {
		margin-top: 30px;
	}
}

/* 小さい字
 * ***************************************/

.small {
	font-size: .8em;
}


/***************************************
 * ページナビゲーション
 * *************************************/

nav.navigation {
	overflow: hidden;
	float: none;
	max-width: 100%;
	text-align: center;
	padding: 0;
	margin: 60px 0 0;
}
nav.navigation h2.screen-reader-text {
	display: none;
}
nav.navigation .nav-links {
	width: 100%;
	display: flex;
    justify-content: center;
}
nav.navigation .page-numbers {
	display: inline-block;
	margin: 0 18px;
	padding: 0 1em;
	border-radius: 4px;
	width: auto;
	height: 48px;
	line-height: 48px;
}
nav.navigation .nav-links span.current {
	background: #f29604;
	color: #FFF;
}
nav.navigation a {
	display: inline-block !important;
	color: #FFF;
}
nav.navigation .nav-links a.page-numbers {
	background: #ededed;
	color: #625645;
}
nav.navigation .nav-links a.prev,
nav.navigation .nav-links a.next {
	width: auto;
}

@media screen and (max-width: 768px) {
	nav.navigation {
		display: block;
	}
}
@media screen and (max-width: 560px) {
	nav.navigation .page-numbers {
		margin: 0 6px;
		padding: 0 12px;
	}
}




/****************************************
 * フォーム
*****************************************/

/* iOSリセット */
input[type="submit"],
input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
  outline-offset: -2px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    outline: none;
    background: transparent;
}
button,
input[type="submit"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 0;
    border: none;
    outline: none;
    background: transparent;
}

/*フォーム*/
textarea {
	overflow: auto;
	resize: vertical;
}
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="search"],
textarea {
	font-size: 1em;
	margin: 0;
	padding: 18px;
	width: 100%;
	max-width: 100%;
	outline: none;
	color: #000;
	vertical-align: bottom;
	transition: .3s;
	letter-spacing: 1px;
	border-radius: 6px;
	border: 1px solid #ededed;
	background: #FFF;
}
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
textarea:focus {
	background: #FFF;
	border: 1px solid #f29603;
	outline: none;
}
select {
	position: relative;
	width: 100%;
	min-width: 75px;
	padding: 18px 22px 18px 12px;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	border: 1px solid #ededed;
	background: #fff url(../images/common/select.webp) no-repeat;
	background-position: right 1em center;
    background-size: 12px, 100%;
	font-size: 1em;
	color: #000;
	border-radius: 6px;
}

/*ボタン*/
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"],
.button:before,
button:before,
input[type="submit"]:before,
input[type="reset"]:before,
input[type="button"]:before,
.button:after,
button:after,
input[type="submit"]:after,
input[type="reset"]:after,
input[type="button"]:after {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all .3s;
	transition: all .3s;
}
.button,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	padding: 10px 20px;
	font-size: 1.6rem;
	font-weight: bold;
	color: #fff;
	background-color: #E4007F;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	text-align: center;
	transition: background-color 0.3s ease;
}
.button:hover,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
	background-color: #023521;
}
.button:before,
button:before,
input[type="submit"]:before,
input[type="reset"]:before,
input[type="button"]:before,
.button:after,
button:after,
input[type="submit"]:after,
input[type="reset"]:after,
input[type="button"]:after {
	position: absolute;
	z-index: -1;
	display: block;
	content: '';
}

@media screen and (max-width: 559px) {
	.button,
	button,
	input[type="submit"],
	input[type="reset"],
	input[type="button"] {
		display: block;
		margin: 0 auto;
		padding: 0 3.5em;
		line-height: 60px;
		border-radius: 60px;
	}
}
@media screen and (max-width: 380px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="search"],
	textarea {
		padding: 15px;
	}
	select {
		padding: 15px 22px 15px 12px;
	}
}
@media screen and (max-width: 320px) {
	input[type="text"],
	input[type="tel"],
	input[type="email"],
	input[type="search"],
	textarea {
		padding: 12px;
	}
	select {
		padding: 12px 22px 12px 9px;
	}
}


input[type="radio"],
input[type="checkbox"] {
	width: 18px;
	height: 18px;
	padding: 0 !important;
	margin: 0 6px 0 0;
}

@media screen and (max-width: 1194px) {
	input[type="radio"],
	input[type="checkbox"] {
		
	}
}
@media screen and (max-width: 960px) {
}
@media screen and (max-width: 834px) {
}
@media screen and (max-width: 560px) {
}
@media screen and (max-width: 430px) {
}
@media screen and (max-width: 320px) {
}



/****************************************
 * フォーム送信後の完了ページ
 * **************************************/

#completed .completedMessage {
	    text-align: center;
}







/****************************************
 * WPネイティブCSS
 * **************************************/

.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.wp-block-image {
	margin: 30px 0;
}
.wp-block-image figcaption {}
img[class*="wp-image-"],
img[class*="attachment-"] {
	max-width: 100%;
	height: auto;
}
img.alignright {
	display: block;
	margin: 0 0 0 auto;
}
img.alignleft {
	display: block;
	margin: 0 auto 0 0;
}
img.aligncenter {
	display: block;
	margin: 0 auto;
}
blockquote {
	display: block;
	-webkit-margin-before: 1em;
	-webkit-margin-after: 1em;
	-webkit-margin-start: 40px;
	-webkit-margin-end: 40px;
	margin: 50px;
	border-left: 1px solid #ededed;
	padding-left: 30px;
}
cite {
	font-size: .8em;
}
cite a {
	display: inline-block;
	color: #005CB5;
	border-bottom: 1px solid #005CB5;
}

/* clearfix */
.clearfix {
	overflow: hidden;
	zoom: 1;
}
.clearfix:after {
	content: "";
	display: block;
	clear: both;
}

@media screen and (max-width: 560px) {
	blockquote {
		margin: 30px;
	}
	.wp-block-image {
		margin: 0;
	}
}

/****************************************
 * 画像キャプション
 * **************************************/

.wp-caption {
	text-align: right;
}
.wp-caption-text,
.gallery-caption　{
	font-size: 12px;
	margin: 0;
	color: #333;
}
.wp-caption img {
	margin: 0;
	padding: 0;
	border: 0 none;
	vertical-align: bottom;
}
.wp-caption-dd {
	margin: 0;
	padding: 0 4px 5px;
	font-size: 11px;
	line-height: 17px;
}



/*****************************************
 * フッター
 * ***************************************/

footer {
	overflow: hidden;
	text-align: center;
	    border-top: 1px solid #D0C6B8;
	padding: 60px 0 0;
	background: #E4DFD6;
}
footer a {
	color: #231814;
}
footer .totop {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 999;
	transition: all 0.5s;
	-webkit-transition: all 0.5s;
}


footer .footer-information {
	
}
footer .footer-information span.footer-phone {
	margin-right: 18px;
}
footer .footer-information p.invoice {
	font-size: .9em;
}
footer .footer-nav {
	margin-top: 30px;
}
footer .footer-nav ul.global-nav-items {
	display: flex;
	justify-content: center;
}
footer .footer-nav ul.global-nav-items li:not(:first-child) {
	margin-left: 28px;
}
footer .footer-nav-legal {
	margin-top: 18px;
}
footer .footer-nav-legal ul.legal-nav-items {
	display: flex;
	justify-content: center;
	font-size: .8em;
}
footer .footer-nav-legal ul.legal-nav-items li:not(:first-child) {
	margin-left: 28px;
}

footer #copyright {
	background: #FFF;
	padding: 30px 0;
	margin-top: 60px;
	text-align: left;
	font-size: .8em;
}
footer #copyright a {
	display: inline;
	color: #1a1a1a;
}

@media screen and (max-width: 768px) {
	footer .footer-nav {
		display: none;
	}
	footer .footer-information p.hours span {
		display: block;
	}
}
@media screen and (max-width: 559px) {
	footer {
		padding: 45px 0 0;
	}
	footer .totop img.icon {
		width: 48px;
		height: 48px;
	}
}
@media screen and (max-width: 430px) {
	footer .footer-information span.footer-phone,
	footer .footer-information span.footer-fax {
		display: block;
		margin: 0;
	}
	footer .footer-nav-legal ul.legal-nav-items {
		flex-direction: column;
	}
	footer .footer-nav-legal ul.legal-nav-items li:not(:first-child) {
		margin-left: 0;
		margin-top: 18px;
	}
}
@media screen and (max-width: 380px) {
	footer .footer_information p.hours {
		font-size: .7em;
	}
}
@media screen and (max-width: 320px) {
	footer .totop img.icon {
		bottom: 15px;
		right: 15px;
		width: 50px;
		height: 50px;
	}
	footer .footer_information p.hours {
		font-size: .63em;
	}
}



/* ***************************************
 * developer
 * **************************************/

p.dev {
	text-align: center;
	color: red;
	font-weight: bold;
	font-family: sans-serif;
}


/****************************************
 * ログインユーザー 編集
 * **************************************/

.edit {
	margin-top: 30px;
	text-align: right;
}
.edit .edit_user {
	font-size: 1rem;
	margin: 0;
}
.edit a.editURL {
	font-size: 1.2rem;
	border-bottom: 1px solid;
}



