@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/

/*テーブル開閉のボタン*/
.wp-block-lazyblock-tableac2 .table-open {
	margin-top: 10px;
	position: relative;
	display: inline-block;
	padding: 8px 25px 8px 13px;
	border: 1px solid #ccc;
	background: #f1e767;
	background: -webkit-gradient(linear, left top, left bottom, from(#fdfbfb), to(#ebedee));
	background: -webkit-linear-gradient(top, #fdfbfb 0%, #ebedee 100%);
	background: linear-gradient(to bottom, #fdfbfb 0%, #ebedee 100%);
	-webkit-box-shadow: inset 1px 1px 1px #fff;
	box-shadow: inset 1px 1px 1px #fff;
	border-radius: 8px;
	text-decoration: none !important;
	cursor: pointer;
	font-size: 0.8em;
}

.wp-block-lazyblock-tableac2 .table-open::after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	width: 9px;
	height: 9px;
	margin: auto;
	border-top: 2px solid #000;
	border-right: 2px solid #000;
	transform: translateY(-2px) rotate(135deg);
	box-sizing: border-box;
	transition: all 0.5s;
}


.wp-block-lazyblock-tableac2 .table-open.on:after {
	transform: translateY(1px) rotate(315deg);
}

/* リッチリスト */
dl.rich_list {
	margin: 20px 0;
	padding: 0;
}

dl.rich_list dt {
	position: relative;
	background: var(--color_main);
	padding: 12px 15px 10px;
	margin: 0 0 10px;
	border: 0 !important;
	line-height: 1.2em;
	font-weight: bold;
	color: #fff;
	border-radius: 7px;
}

dl.rich_list dt:before {
	content: "";
	display: block;
	position: absolute;
	border-style: solid;
	border-width: 12px 7px 0;
	border-color: var(--color_main) transparent transparent;
	left: 50px;
	bottom: -12px;
}

dl.rich_list dt[style]:before {
	background: inherit;
	border-color: transparent #fff #fff;
}

dl.rich_list dd {
	padding: 0;
	margin: 0 0 15px !important;
	border: 0 !important;
	line-height: 1.5em;
}

.post_content dl.rich_list dd .h5,
dl.rich_list dd .h5 {
	margin: 0 0 5px !important;
	padding: 3px 0 2px 30px;
	position: relative;
	border: 0 !important;
	background-size: 28px 28px !important;
	font-weight: bold;
	line-height: 1.2em;
	color: #030 !important;
}

dl.rich_list dd .h5:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	width: 20px;
	height: 20px;
	border: 2px solid #000;
	box-sizing: border-box;
	background:
		linear-gradient(-55deg, transparent 44%, #d22 46%, #d22 58%, transparent 60%),
		linear-gradient(45deg, transparent 33%, #d22 35%, #d22 47%, transparent 49%);
	background-repeat: no-repeat;
	background-position: 4px 2px, 1px 8px;
	background-size: 100% 100%;
	border-radius: 2px;
}

dl.rich_list dd p br:first-child,
dl.rich_list dd .h5+br {
	display: none;
}

dl.rich_list dd .h5 b {
	color: #e22;
}

dl.rich_list dd p {
	margin: 0 0 0 20px !important;
	padding: 0;
	line-height: inherit;
}

.article-body dl.rich_list dd ul li {
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	line-height: 1.3em !important;
}

.article-body dl.rich_list dd ul li:before {
	background: #a8a8f4;
	top: 5px;
}

@media (max-width: 600px) {
	dl.rich_list dt {
		padding: 10px 12px 8px;
	}
}

/* リッチリスト拡張（開閉付き：2024/10/18）＋ 開閉ブロックinブロック（2024/11/12） */
.openclose-inblock>.lazyblock-inner-blocks,
.rich_list_close dl.rich_list {
	margin-bottom: 0;
	padding-bottom: 0;
}

.openclose-inblock,
.rich_list_close {
	margin-bottom: 20px;
	position: relative;
}

.openclose-inblock>.lazyblock-inner-blocks>*:nth-child(n+2),
.rich_list_close dl.rich_list dt:nth-of-type(n+2),
.rich_list_close dl.rich_list dd:nth-of-type(n+2) {
	max-height: 1500px;
	transition: all 0.7s ease-in-out;
}

.openclose-inblock:has(input:checked)>.lazyblock-inner-blocks>*:not(:last-child) {
	margin-bottom: 30px;
}

.openclose-inblock:has(input:not(:checked))>.lazyblock-inner-blocks>*:nth-child(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dt:nth-of-type(n+2),
.rich_list_close:has(input:not(:checked)) dl.rich_list dd:nth-of-type(n+2) {
	overflow: hidden;
	margin-top: 0;
	margin-bottom: 0 !important;
	padding-top: 0;
	padding-bottom: 0 !important;
	max-height: 0;
	transition: all 0.2s ease-in-out;
}

.openclose-inblock input,
.rich_list_close input {
	display: none;
}

.openclose-inblock:has(input:not(:checked)) label:before,
.rich_list_close:has(input:not(:checked)) label:before {
	content: attr(data-text-open);
}

.openclose-inblock:has(input:checked) label:before,
.rich_list_close:has(input:checked) label:before {
	content: attr(data-text-close);
}

.openclose-inblock label,
.rich_list_close label {
	position: relative;
	display: block;
	margin: auto;
	width: fit-content;
	background: var(--color_main);
	color: var(--color_bg);
	padding: 5px 20px;
	border-radius: 40px;
	box-shadow: rgba(0, 0, 0, 0.5) 2px 2px 5px;
	border: 1px solid #fff;
	cursor: pointer;
	transition: all 0.5s linear;
	font-size: 90%;
	line-height: 1.2em;
	z-index: 2;
}

.openclose-inblock label:hover,
.rich_list_close label:hover {
	filter: brightness(1.1);
	left: -1px;
	top: -1px;
	box-shadow: rgba(0, 0, 0, 0.5) 3px 3px 5px;
	transition: all 0.2s linear;
}

.openclose-inblock:after,
.rich_list_close:after {
	content: "";
	position: absolute;
	display: block;
	left: 0;
	bottom: 20px;
	width: 100%;
	height: 100px;
	background: linear-gradient(to top, #fff 0%, transparent 100%);
}

.openclose-inblock:has(input:checked):after,
.rich_list_close:has(input:checked):after {
	display: none;
}

.rich_list ul:not([class]) li,
ul[class="wp-block-list"] li,
.cap_box_content ul:not([class]) li {
	list-style: disc;
}

.rich_list dd ul {
	margin-left: 15px;
}

/* 投稿記事でのパンくず内の記事タイトル表示 */
.p-breadcrumb__list {
	max-width: 1190px;
	padding: 0 10px;
}
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item,
.single .p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text,
.p-breadcrumb .p-breadcrumb__list li.p-breadcrumb__item:last-child > span.p-breadcrumb__text {
    display: inline !important;
    white-space: wrap;
}
.single .p-breadcrumb__item:after,
.p-breadcrumb__item:after {
    display: inline-block;
    margin: 0 8px;
}
.single .p-breadcrumb .p-breadcrumb__list,
.p-breadcrumb .p-breadcrumb__list {
    display: block !important;
    width: auto !important;
    font-size: 13px;
	color: #000;
    white-space: wrap;
}
@media (min-width: 768px) {
    .single .p-breadcrumb .p-breadcrumb__list,
    .p-breadcrumb .p-breadcrumb__list {
        font-size: 14px;
    }
}


/* header */
header nav#gnav,
header .l-header__logo,
.l-header__customBtn.sp_,
.l-header__menuBtn.sp_ {
	display: none !important;
}

header .l-header__inner {
	max-width: 100%;
	padding: 0;
	display: block !important;
}

header .l-header__inner .w-header.pc_ {
	width: 100% !important;
	max-width: 100% !important;
	margin: auto;
	display: block !important;
}


/* format */
/* CSS Document */
/* ----- margin ----- */
.mt0 {
	margin-top: 0 !important;
}

.mt5 {
	margin-top: 5px !important;
}

.mt10 {
	margin-top: 10px !important;
}

.mt20 {
	margin-top: 20px !important;
}

.mt30 {
	margin-top: 30px !important;
}

.mt40 {
	margin-top: 40px !important;
}

.mt60 {
	margin-top: 60px !important;
}

.mt80 {
	margin-top: 80px !important;
}

.mt100 {
	margin-top: 100px !important;
}

.mt120 {
	margin-top: 120px !important;
}

.mr05em {
	margin-right: 0.5em !important;
}

.mr1em {
	margin-right: 1em !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb10 {
	margin-bottom: 10px !important;
}

.mb20 {
	margin-bottom: 20px !important;
}

.mb30 {
	margin-bottom: 30px !important;
}

.mb40 {
	margin-bottom: 40px !important;
}

.mb60 {
	margin-bottom: 60px !important;
}

.mb80 {
	margin-bottom: 80px !important;
}

.mb100 {
	margin-bottom: 100px !important;
}

.mb120 {
	margin-bottom: 120px !important;
}

.mb1em {
	margin-bottom: 1em !important;
}

.ml1em {
	margin-left: 1em !important;
}

.ma0auto {
	margin: 0 auto !important;
}

.ma0 {
	margin: 0 !important;
}

.pr30 {
	padding-right: 30px !important;
}

.pd0 {
	padding: 0 !important;
}

/* ----- line-height ----- */
.lh100 {
	line-height: 1 !important;
}

.lh120 {
	line-height: 1.2 !important;
}

.lh150 {
	line-height: 1.5 !important;
}

.lh180 {
	line-height: 1.8 !important;
}

.lh200 {
	line-height: 2 !important;
}

.wauto {
	width: auto !important
}

.fal,
.far {
	font-family: "Font Awesome 5 Pro";
}

/* buttons */
.btn {
	width: auto;
	display: inline-block;
	margin-bottom: 0;
	padding: 0.2em 1.5em 0.4em;
	font-size: 14px;
	font-weight: 400;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: none;
	border-radius: 1em;
	background: #216281;
	border-color: #216281;
	color: #fff;
	box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 2px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 2px;
	-moz-box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 2px;
}
.col-contact .btn {
	border-radius: 1em !important;
}

@media(max-width: 767px) {
	.btn {
		width: 100%;
		font-size: 14px;
	}
}

.btn:hover {
	background: #003E6E;
	/*    color: #ffffff; */
}

.btn.btn-lg {
	font-size: 26px;
	padding: 0.46em 3em 0.4em;
}

@media(max-width: 767px) {
	.btn {
		padding: 0.6em 1em 0.7em;
		border-radius: 2em;
	}

	.btn.btn-lg {
		font-size: 18px;
		padding: 0.46em 0em 0.2em;
	}
}

@media(max-width: 320px) {
	.btn.btn-lg {
		font-size: 14px;
	}
}

.btn.focus,
.btn:focus,
.btn:hover,
.btn:visited {
	color: #ffffff;
	text-decoration: none !important;
}

.btn-primary {
	color: #fff;
}

.btn-primary:hover {}

.btn-primary.active,
.btn-primary:active,
.open>.dropdown-toggle.btn-primary,
.btn-primary.focus,
.btn-primary:focus {}

.btn.btn-default-outline {
	background: #FFF;
	color: #333;
	border: solid 1px #333;
}

.w100 {
	width: 100%;
}


/* bootstrap style override */


.required {
	display: inline-block;
	color: #C72B2D;
	line-height: 1.1;
}

.img-thumbnail {
	display: inline-block;
	max-width: 100%;
	height: auto;
	padding: 0;
	line-height: 1.42857143;
	background-color: #fff;
	border: none;
	border-radius: 4px;
	-webkit-transition: all .2s ease-in-out;
	-o-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}

.wbr,
.nowrap {
	white-space: nowrap;
}

_::-webkit-full-page-media,
_:future,
:root .nowrap {
	/*20210917追加*/
	white-space: inherit;
	word-break: keep-all;
}

/*EdgeとFirefoxではwhitespaceの挙動がおかしいので、無効に 20171127*/
@supports (-ms-ime-align:auto) {

	.wbr,
	.nowrap {
		white-space: normal;
	}
}

@-moz-document url-prefix() {

	.wbr,
	.nowrap {
		white-space: normal;
	}
}

/*IEでmowhitespaceの挙動がおかしいので、無効に 20180111*/
@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

	.wbr,
	.nowrap {
		white-space: normal;
	}
}

.img-responsive {
	width: 100%;
	max-width: 100%;
}

.inline {
	display: inline;
}

.inline-block {
	display: inline-block;
}

.block {
	display: block;
}

.clear {
	clear: both;
}

.small {
	font-size: 0.85em;
}

/* wordpress float style */
.alignright,
.right {
	float: right;
	margin: 0 0 1em 1em;
}

.alignleft,
.left {
	float: left;
	margin: 0 1em 1em 0;
}

.centered,
.aligncenter {
	margin: 0 auto 1em;
	display: block;
}

.fr {
	float: right;
}

.fl {
	float: left;
}

.flex {
	display: flex;
	display: -webkit-flex;
	flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
}

.no-border {
	border: none !important;
}


.basecolor {
	color: #333333;
}

.color-red {
	color: #FF0041 !important;
}

.color-cobac {
	color: #1B5069 !important;
}

.color-orange {
	color: #ff6c00 !important;
}

.color-white {
	color: white !important;
}

.color-navy {
	color: #1B5069 !important;
}

.bg-red {
	background: #D11224;
}
.btn.bg-red:hover {
	color: #fff !important;
}

.bg-gray {
	background: #f5f4f2;
}

.bg-navy {
	background: rgba(33, 98, 129, 0.2);
}

.bg-navy-primary {
	background: #1B5069 !important;
}


.font-serif {
	font-family: "adobe-garamond-pro", "source-han-sans-japanese", Meiryo, sans-serif;
}



.max-width100 {
	max-width: 100%;
}

.w50 {
	width: 50%;
}

.w-auto {
	width: auto;
}

.fw400 {
	font-weight: 400 !important;
}

.bold,
.fw700 {
	font-weight: 700 !important;
}

.fw900 {
	font-weight: 900 !important;
}

.text-shadow,
.color-white.text-shadow,
.text-shadow-black {
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.text-shadow-white {
	text-shadow: 0px 3px 6px rgba(255, 255, 255, 1);
}

.big {
	font-size: 125%;
}

.lh150 {
	line-height: 150% !important;
}

.lh16,
.lh160 {
	line-height: 160%;
}

.py-05em {
	padding: 0.5em 0;
}

.pd0 {
	padding-left: 0;
	padding-right: 0;
}

.pd10 {
	padding: 10px;
}

.pd15 {
	padding: 15px;
}

.pd30 {
	padding: 30px;
}

.pd40 {
	padding: 40px;
}

.pt5 {
	padding-top: 5px;
}

.pt60 {
	padding-top: 60px;
}

.pb60 {
	padding-bottom: 60px;
}

.pd2em {
	padding: 2em;
}

@media(max-width: 767px) {
	.pd2em {
		padding: 1em;
	}
}

.fs10px {
	font-size: 10px;
}

.fs14px {
	font-size: 14px;
}

@media(min-width: 768px) {
	.pc_block {
		display: block;
	}

	.pc_text-right {
		text-align: right;
	}
}

@media(max-width: 767px) {
	.sp_block {
		display: block;
	}

	.sp_text-left {
		text-align: left;
	}

	.sp_text-center {
		text-align: center;
	}

	.sppd0 {
		padding-left: 0;
		padding-right: 0;
	}

	.sppd15 {
		padding-left: 15px;
		padding-right: 15px;
	}

	.sp_pl0 {
		padding-left: 0
	}

	.sp_pl20 {
		padding-left: 20px
	}

	.sp_pr0 {
		padding-right: 0;
	}

	.sp_pr15 {
		padding-right: 15px;
	}

	.sp_pr30 {
		padding-right: 30px;
	}

	.sp_mt0 {
		margin-top: 0px !important;
	}

	.sp_mt10 {
		margin-top: 10px !important;
	}

	.sp_mt20 {
		margin-top: 20px !important;
	}

	.sp_mt30 {
		margin-top: 30px !important;
	}

	.sp_mb0 {
		margin-bottom: 0 !important;
	}

	.sp_mb10 {
		margin-bottom: 10px !important;
	}

	.sp_mb15 {
		margin-bottom: 15px !important;
	}

	.sp_mb20 {
		margin-bottom: 20px !important;
	}

	.sp_mb30 {
		margin-bottom: 30px !important;
	}

	.sp_mb40 {
		margin-bottom: 40px !important;
	}

	.sp_fs22px {
		font-size: 22px;
	}
}

@media(min-width: 768px) {
	.col-contact {
		width: 32%;
		float: left;
		position: relative;
		min-height: 1px;
		padding-left: 0;
		padding-right: 5px;
	}

	.col-telnum {
		width: 22%;
		float: left;
		position: relative;
		min-height: 1px;
		padding-top: 10px;
		padding-left: 5px;
		padding-right: 0;
	}

	.col-estimate {
		width: 21%;
		float: left;
		position: relative;
		min-height: 1px;
		margin-top: -1.5rem;
		padding-left: 5px;
		padding-right: 25px;
	}
}

@media(min-width: 990px) {
	.col-contact {
		width: 33%;
		padding-left: 0;
		padding-right: 5px;
	}

	.col-telnum {
		width: 20%;
		padding-top: 0px;
		padding-left: 15px;
		padding-right: 15px;
	}

	.col-estimate {
		width: 17%;
		margin-top: -1.5rem;
		padding-left: 5px;
		padding-right: 15px;
	}
}

@media(min-width: 1200px) {
	.col-contact {
		width: 32%;
		padding-left: 0;
		padding-right: 5px;
	}

	.col-telnum {
		width: 13%;
		padding-top: 5px;
		padding-left: 5px;
		padding-right: 0;
	}

	.col-estimate {
		width: 20%;
		margin-left: 10px;
		margin-top: -1.5rem;
		padding-left: 5px;
		padding-right: 15px;
	}
}


div.titlewrap {
	width: 100%;
	display: block;
	background: #E6E7E8;
	min-height: 42px;
	margin-bottom: 40px;
	overflow: hidden;
}

@media(max-width: 767px) {
	div.titlewrap {
		width: 100%;
		margin-bottom: 20px;
	}
}

div.titlewrap .title {
	display: inline-block;
	border-left: solid 10px #0D435E;
	border-right: solid 1px #C4C4C4;
	line-height: 1.1;
	color: #0D435E;
	font-size: 17px !important;
	line-height: 20px;
	padding: 11px 1em;
	margin: 0
}



.title span {
	padding-right: 0.2em;
}

.titlewrap.no-bg {
	background: none;
}

.titlewrap.no-bg .title {
	border-right: none;
}

.titlewrap.voice-title .title,
.titlewrap.sales-title .title {
	display: block;
	margin-top: 0;
	padding: 0 0.5em;
}

h2.wp-block-heading {
	display: block;
	background: #E6E7E8;
	border-left-width: 10px;
}

.gsection_title {
	color: #0D435E;
	font-size: 17px !important;
	font-weight: 700;
	line-height: 20px;
	margin: 1em 0 0;
	padding-bottom: 6px;
}



.subtitle {
	font-weight: 400;
}

.subtitle>span {
	font-size: 66.6%;
	color: #FF0041;
}

.title_foot {
	font-weight: 400;
	font-size: 28px;
}

.row>div>h1:first-child,
.row>div>h2:first-child,
.row>div>h3:first-child,
.row>div>h4:first-child,
.row>div>h5:first-child,
.row>div>h6:first-child {
	margin-top: 0;
}

.title_text {
	font-size: 36px;
}

.coba_icon {
	display: inline-block;
}

.coba_icon img {
	height: 3rem;
	width: auto;
}

@media(max-width:1100px) {
	.title_text {
		font-size: 30px;
	}

	.coba_icon img {
		height: 2.5rem;
	}
}

@media(max-width:870px) {
	.title_text {
		font-size: 25px;
	}

	.coba_icon img {
		height: 2rem;
	}

}


/* body */
body {
	font-family: "source-han-sans-japanese", Meiryo, sans-serif;
	font-size: 15px;
	line-height: 1.875;
	letter-spacing: 0.06em;
}


/* header */

header#blog {
	height: 50px;
	border-bottom: solid 1px #CCC;
}

.titlearea {
	position: relative;
}

@media(max-width: 1200px) {
	.sm_container {
		width: 100%;
	}
}


@media(max-width: 767px) {
	header#blog {
		height: 40px;
		border-bottom: solid 1px #CCC;
	}

	.titlearea {
		padding: 0px 10px;
		background-color: #E6E7E8;
	}

	.title_text {
		font-size: 24px;
	}

	.titlebox {
		width: 60%;
		display: inline-block;
		position: relative;
		z-index: 3000;
		padding-left: 0px;
	}

	.titlebox p {
		font-size: 10px;
		letter-spacing: 0;
		color: #000;
	}

	.titlebox h1 {
		font-size: 24px;
	}

	header#blog h1 {
		font-size: 16px;
	}

	.titlebox h1 span.small {
		font-size: 66.6667%;
	}
}

@media(min-width: 768px) {
	.titlearea {
		padding: 15px 0 0;
	}

	header#blog .titlearea {
		padding: 0;
	}

	.titlebox {
		position: relative;
	}

	header#blog .titlebox {
		width: auto;
		padding-top: 10px;
	}

	.titlebox p {
		font-size: 14px;
		font-size: 1.1966vw;
		color: #000;
	}

	.titlebox h1 span.small {
		font-size: 66.6667%;
	}

	header#blog .titlebox h1 {
		font-size: 16px;
	}

}

@media(min-width: 1200px) {
	.titlebox p {
		font-size: 14px;
		color: #000;
	}
}

ul.fr {
	width: 40%;
	margin-top: 2.5vw;
	overflow: hidden;
}

header#blog ul.fr {
	width: auto;
	float: right;
	margin: 0 !important;
	font-size: 13px;
}

header#blog ul.fr li {
	background: #ccc;
	height: 50px;
	padding: 18px;
	line-height: 1;
}

@media(max-width:767px) {
	header#blog ul.fr {
		width: auto;
		float: right;
		margin: 0 !important;
		font-size: 10px;
		position: absolute;
		right: 0px;
		top: 0px;
	}

	header#blog ul.fr li {
		background: #ccc;
		height: 40px;
		padding: 14px;
		line-height: 1;
	}

}

header#blog ul.fr li.staffblog {
	background: #FF900F;
}

header#blog ul.fr li.presidentblog {
	background: #3867AD;
}

header#blog ul.fr li.website {
	background: #0D435E;
}

header#blog ul.fr li a {
	color: #FFF;
}

@media(min-width: 1200px) {
	ul.fr {
		margin-top: 10px;
	}
}

ul.fr li {
	float: left;
	width: 48%;
	display: block;
	overflow: hidden;
}

header#blog ul.fr li {
	float: left;
	width: auto;
	display: block;
	overflow: hidden;
}

ul.fr li:last-child {
	float: right;
}

.container.nav {
	padding-right: 0;
}

@media(max-width: 767px) {

	.container.nav {
		background: #FFF;
	}

	.container.nav a {
		color: #333;
	}

	.navbar-default .navbar-toggle {
		border: none;
		/*position: relative;*/
		float: right;
		margin-top: 26px;
		margin-right: 0px;
		margin-bottom: 8px;
		background-color: transparent;
		background-image: none;
		transform: rotate(-90deg);
		transform: rotate(0deg);
		-moz-transition: transform 0.2s linear 0;
		-webkit-transition: transform 0.2s linear 0;
		transition: transform 0.2s linear 0;
	}

	.navbar-default .navbar-toggle .icon-bar {
		background-color: #D11224 !important;
		width: 28px;
		height: 4px;
		border-radius: 0px;
	}

	.navbar-default .navbar-toggle .icon-bar:last-child {
		width: 18px;
	}

	.navbar-toggle .icon-bar+.icon-bar {
		margin-top: 7px !important;
	}

	.navbar-toggle:before {
		/*content: "MENU";*/
		position: absolute;
		top: 38px;
		right: 4px;
		font-size: 10px;
		font-weight: 700;
		color: #1B5069;
		-moz-transition: content 0.2s linear 0;
		-webkit-transition: content 0.2s linear 0;
		transition: content 0.2s linear 0;
	}

	.navbar-default .navbar-toggle:hover,
	.navbar-default .navbar-toggle:focus {
		background: none;
	}

	.nav {
		background: #CCC;
		top: 75px;
		position: relative;
		z-index: 1000;
		padding: 0;
	}

	.nav li {
		text-align: center;
		padding: 0px;
		border-bottom: solid 1px #347C9F;
	}

	@media (max-width: 767px) {
		#sales_tab.nav {
			background: transparent;
			top: 0px;
			position: relative;
		}

		#sales_tab.nav li {
			text-align: center;
			padding: 0px;
			border-bottom: none;
			margin-bottom: 15px;
		}
	}

	.spmenu-border-left {
		border-left: 1px solid #347C9F;
	}

	.spmenu-border-top {
		border-top: 1px solid #347C9F;
	}


	.navbar-default .navbar-nav>li>a,
	.navbar-default .navbar-nav li a {
		color: #333;
		/*  font-size:18px; */
		font-weight: 700;
		letter-spacing: 0;
		padding: 10px 5px;
		display: inline-block;
		-moz-transition: width 0.3s linear 0;
		-webkit-transition: width 0.3s linear 0;
		transition: width 0.3s linear 0;
	}

	.navbar-default .navbar-nav>li>a:hover,
	.navbar-default .navbar-nav>li>a:focus,
	.navbar-default .navbar-nav>li.open>a:hover,
	.navbar-default .navbar-nav>li.open>a:focus,
	.navbar-default .navbar-nav>.open>a,
	.navbar-default .navbar-nav>.open>a:focus,
	.navbar-default .navbar-nav>.open>a:hover {
		color: #1B5069;
		background: #FFF;
		text-decoration: none !important;
		width: 100%;
		display: inline-block;
		margin: 0;
		padding: 10px 5px;
		-moz-transition: height 0.3s linear 0;
		-webkit-transition: height 0.3s linear 0;
		transition: height 0.3s linear 0;
	}

	.dropdown-menu li {
		border-bottom: none;
	}

	.navbar-default .navbar-nav .open .dropdown-menu>li>a {
		color: #FFF;
		padding-right: 5px;
	}

	.navbar-nav .open .dropdown-menu .dropdown-header,
	.navbar-nav .open .dropdown-menu>li>a {
		padding: 5px 5px 5px 25px
	}

	.navbar-header {
		position: absolute;
		top: -5px;
		right: 0px;
	}

	nav.navbar.navbar-default {
		background: none;
		border: none;
		position: absolute;
		top: 9px;
		left: 0;
		width: 100%;
		z-index: 30;
	}
}

@media(min-width: 768px) {
	nav.navbar.navbar-default {
		/*Other Browser*/
		background: navy;
		/*For Old WebKit*/
		background: -webkit-gradient(linear, left top, left bottom,
				color-stop(0.00, #216281),
				color-stop(0.60, #113141),
				color-stop(0.60, #FFFFFF),
				color-stop(1.00, #D8D8D8));
		/*For Modern Browser*/
		background: linear-gradient(to bottom,
				#216281 0%,
				#113141 60%,
				#FFFFFF 60%,
				#D8D8D8 100%);
		border-radius: 0px;
		margin: 0;
		min-height: 45px;
		height: auto;
		z-index: 10;
	}
}

/* navbar */

ul.navbar-nav {
	list-style: none;
}

@media (max-width: 767px) {
	ul.navbar-nav {
		list-style: none;
		/* margin: 15px; */
		margin: 0px;
		padding: 0;
	}

	ul.navbar-nav .container {
		padding: 0;
	}

	.navbar-collapse.collapse,
	.navbar-collapse.collapsing {
		position: relative;
		margin: 0 15px;
		border-top: none;
	}

	.navbar-collapse.collapse.in ul.nav.navbar-nav {
		z-index: 1000;
	}

	.navbar-collapse {
		padding: 0;
	}

	.navbar-nav>li {
		margin-bottom: 0px;
	}

	.navbar-nav>li>a {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

/*PCドロップダウンメニュー 768px~992pxにおいてフォントサイズ小さめに変更*/
@media (min-width: 768px) and (max-width: 992px) {
	.menu-item-14332 a {
		font-size: 90% !important;
	}

	.menu-item-14327 a {
		font-size: 90% !important;
	}

	.menu-item-14328 a {
		font-size: 90% !important;
	}

	.menu-item-14329 a {
		font-size: 90% !important;
	}

	.menu-item-14330 {
		font-size: smaller !important;
	}
}

/*font-size指定ここまで*/

@media (min-width: 768px) {
	.nav {
		padding-left: 15px;
	}

	.nav>li {
		position: static !important;
	}

	.collapse.navbar-collapse {
		position: relative;
		padding: 0;
	}

	.navbar-default .navbar-nav {
		width: 100%;
		margin: 0 auto;
		padding: 0;
		justify-content: center;
	}

	.navbar-default .navbar-nav>li {
		position: relative;
		float: left;
		text-align: center;
	}

	/* liの1番目は visible-xs があるので、2個めから*/
	.navbar-default .navbar-nav>li:nth-child(1) {
		border-left: solid 2px #1B5069;
	}

	.navbar-default .navbar-nav>li:nth-child(-n+6) {
		width: 16.6666%;
		height: 60px;
		box-sizing: border-box;
		border-right: solid 2px #1B5069;
	}

	.navbar-default .navbar-nav>li:nth-child(-n+6)>a {
		color: #FFF;
		letter-spacing: 0em;
		margin: 0;
		font-weight: 700;
		padding: 21px 0px 23px;
		height: 60px;
		line-height: 1;
		display: block;
	}

	.navbar-default .navbar-nav>li:nth-child(7) {
		border-left: solid 1px #D8D8D8;
	}

	.navbar-default .navbar-nav>li:nth-child(n+7) {
		width: 20%;
		height: 40px;
		box-sizing: border-box;
		border-right: solid 1px #D8D8D8;
	}

	.navbar-default .navbar-nav>li:nth-child(n+7)>a {
		color: #0D435E;
		letter-spacing: 0em;
		margin: 0;
		font-weight: 700;
		font-size: 14px;
		padding: 12px 0px 14px;
		height: 40px;
		line-height: 1;
		display: block;
	}

	.navbar-default .navbar-nav>li:nth-child(-n+7)>a:hover,
	.navbar-default .navbar-nav>li:nth-child(-n+7)>a.active,
	.navbar-default .navbar-nav>li:nth-child(-n+7).current-menu-parent>a,
	.navbar-default .navbar-nav>li:nth-child(-n+7).current-menu-ancestor>a,
	.navbar-default .navbar-nav>li:nth-child(-n+7).current-menu-item>a,
	.navbar-default .navbar-nav>li:nth-child(-n+7).open>a,
	.navbar-default .navbar-nav>li:nth-child(-n+7).open>a:focus,
	.navbar-default .navbar-nav>li:nth-child(-n+7).open>a:hover {
		color: #FFFFFF;
		background: -webkit-gradient(linear, left top, left bottom,
				color-stop(0.00, #475963),
				color-stop(1.00, #226284));
		/*For Modern Browser*/
		background: linear-gradient(to bottom,
				#475963 0%,
				#226284 100%);
		border-color: #FFF;
	}

	.navbar-nav>li>a {
		padding-top: 0px;
		padding-bottom: 0px;
	}
}

li>ul.dropdown-menu {
	background: #ffffff;
	color: #1B5069;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 1000;
	display: none;
	float: left;
	min-width: 140px;
	padding: 0;
	margin: 0;
	text-align: center;
	list-style: none;
	-webkit-background-clip: padding-box;
	background-clip: padding-box;
	border: none;
	border-radius: 0px;
	opacity: 0;
	width: 100%;
	-webkit-box-shadow: none;
	box-shadow: 2px 2px 3px 4px rgba(197, 197, 197, 0.14);
}

li.open>ul.dropdown-menu {
	opacity: 1;
	display: block;
	animation: show 1s linear 0s;
}

ul.dropdown-menu li {
	padding: 5px 0;
	display: block;
}

ul.dropdown-menu li a {
	color: #0D435E !important;
	padding: 10px 10px;
	border-bottom: none;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}

ul.dropdown-menu li.current-menu-item a {
	color: #0D435E;
	border-radius: 5px;
}

@media (max-width: 767px) {
	.navbar-collapse.in {
		overflow-y: auto;
		height: 100vh;
	}

	.navbar-nav li.menu-item-has-children>a {
		pointer-events: none;
	}

	.navbar-nav li.open .dropdown-menu {
		display: block;
	}

	li>ul.dropdown-menu {
		background: #ffffff;
		color: #1B5069;
		position: relative;
		top: 0;
		left: 0;
		z-index: 1000;
		display: none;
		float: none;
		min-width: 140px;
		padding: 0;
		margin: 0;
		text-align: center;
		list-style: none;
		-webkit-background-clip: padding-box;
		background-clip: padding-box;
		border: none;
		border-radius: 0px;
		opacity: 0;
		width: 100%;
		-webkit-box-shadow: none;
		box-shadow: none;
		animation: show 1s linear 0s;
	}

	.navbar-nav li.menu-item-has-children:hover>ul.dropdown-menu {
		display: block;
		opacity: 1;
		animation: show 1s linear 0s;
	}

	li>ul.dropdown-menu li {
		border-bottom: dotted 1px #CCC;
	}

	li>ul.dropdown-menu li:last-child {
		border-bottom: none;
	}

	li>ul.dropdown-menu li a {
		color: #333;
	}

}


/* headerimage */

#slideshow-1 {
	position: relative;
}

.headerimage {
	width: 100%;
	height: 35vw;
	display: block;
	margin: 0 auto;
	padding: 0;
	z-index: 1;
	overflow: hidden;
	position: relative;
}

/*@media(max-width: 767px) {
  .headerimage {
    width: 100%;
    height: 48.6vw;
  }
}*/

.headerimage div.slider {
	width: 100%;
	height: 100%;
	background-color: transparent;
	background-repeat: no-repeat;
	background-position: 50%;
	background-size: cover;
	display: block;
}

.headerimage .container {
	position: absolute;
	right: 0.5em;
	bottom: 0.5em;
}

@media(max-width: 767px) {
	.headerimage .container {
		right: 0em;
		bottom: 0em;
	}
}

.headerimage .container .lead-txt h1 {
	text-shadow: 2px 2px 20px #000000;
}

#slideshow-1 a.cycle-prev,
#slideshow-1 a.cycle-next {
	width: 58px;
	height: 58px;
	display: block;
	background: #FFF;
	position: absolute;
	top: 50%;
	z-index: 10;
	color: #F7931E;
	margin-top: -30px;
	box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-webkit-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-moz-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
}

#slideshow-1 a.cycle-prev {
	left: 0;
}

#slideshow-1 a.cycle-prev .genericon {
	transform: rotate(90deg);
	font-size: 46px;
	text-align: center;
	margin: 6px;
	line-height: 1;
}

#slideshow-1 a.cycle-next {
	right: 0;
}

#slideshow-1 a.cycle-next .genericon {
	transform: rotate(270deg);
	font-size: 46px;
	text-align: center;
	margin: 6px;
	line-height: 1;
}

.cycle-carousel-wrap {
	margin: 20px 0;
	padding: 0px;
	top: 0px;
	left: 0px;
	position: absolute;
	white-space: nowrap;
}

.cycle-slideshow.carousel {
	width: 100% !important;
	height: auto;
	margin: 30px 0;
}

.cycle-slideshow .carousel-box img {
	width: 360px;
	height: 138px;
}

.cycle-slideshow .carousel-box a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
	color: #FFF;
}

.cycle-slideshow .carousel-box a .carousel-box-inner {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	padding: 20px;
}

.cycle-slideshow .carousel-box a .carousel-box-inner.shadow {
	background: rgba(0, 0, 0, 0.65);
	background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(0, 0, 0, 0.65)), color-stop(70%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
	background: -ms-linear-gradient(top, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(to bottom, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0) 70%, rgba(0, 0, 0, 0) 100%);
}

.cycle-slideshow .carousel-box a .carousel-box-inner .title {
	font-size: 28px;
	margin: 0;
}

.cycle-slideshow .carousel-box a .carousel-box-inner .title-caption-en {
	font-size: 16px;
	font-family: 'proxima-soft-condensed', sans-serif;
	margin-bottom: 10px;
	color: #FFF;
}

@media (max-width: 677px) {

	#slideshow-1 a.cycle-prev,
	#slideshow-1 a.cycle-next {
		width: 34px;
		height: 34px;
		margin-top: -16px;
	}

	#slideshow-1 a.cycle-prev .genericon {
		font-size: 22px;
		margin: 6px;
	}

	#slideshow-1 a.cycle-next .genericon {
		font-size: 22px;
		margin: 6px;
	}

	.cycle-slideshow .carousel-box img {
		width: 160px;
		height: 60px;
	}

	.cycle-slideshow .carousel-box a .carousel-box-inner {
		padding: 10px;
	}

	.cycle-slideshow .carousel-box a .carousel-box-inner .title {
		font-size: 14px;
	}

	.cycle-slideshow .carousel-box a .carousel-box-inner .title-caption-en {
		font-size: 9px;
		margin: 0;
	}
}

#cycle-2 .cycle-slide {
	margin: 0 10px;
}

#cycle-2 .cycle-slide-active {
	margin: 0 5px;
	box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-webkit-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-moz-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
}

.homepage-header {}


.homepage-header .title>span {
	font-size: 120%;
}

.homepage-header p {
	line-height: 1.6em;
}

.homepage-header div.hh_btn {}

@media (max-width: 767px) {
	.homepage-header div.hh_btn a {
		font-size: 90%;
	}
}


/*page-headerimage */

#featured-page {
	width: 100%;
	background: #EEE;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	position: relative;
	margin-bottom: 10px;
	padding: 0;
	height: 50px;
	min-height: 50px;
}

#featured-page.bg {
	height: 400px;
}

@media (max-width: 677px) {
	#featured-page {
		display: block;
		height: 50vw;
		margin-top: 36px;
		background-size: cover;
		background-position: center center;
	}
}

.breadcrumbs {
	font-size: 14px;
}


/* sidebar */

.sidebar {
	padding-left: 30px;
}

@media (max-width: 767px) {
	.sidebar {
		padding-left: 15px;
	}
}

ul.link-list {
	font-weight: bold;
	list-style: none;
	font-size: 16px;
	line-height: 1.3;
	/* font-weight: 400; */
	color: #216281;
}

ul.link-list li::before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 35px;
	height: 35px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 7px;
}

ul.link-list li.cat-item-353::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_01.png);
}

ul.link-list li.cat-item-44::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_02.png);
}

ul.link-list li.cat-item-105::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_03.png);
}

ul.link-list li.cat-item-42::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_04.png);
}

ul.link-list li.cat-item-336::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_05.png);
}

ul.link-list li.cat-item-77::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_06.png);
}

ul.link-list li.cat-item-354::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_07.png);
}

ul.link-list li.all::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_01.png);
}

ul.link-list li.cat-item-370::before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_list/icon_faq_08.png);
}

ul.link-list li {
	margin-bottom: 1em;
	border-bottom: solid 1px #CCC;
	padding-bottom: 1em;
}

ul.link-list li.children {
	font-size: 17px;
	line-height: 2;
	padding-left: 1em;
	list-style: none;
}

ul.link-list li a {}

ul.children {
	font-weight: 400;
	list-style: none;
	padding-left: 1em;
	font-size: 0.9em;
}

ul.children li {
	border: none;
	margin: 0;
	padding: 0;
}

ul.children li::before {
	width: 28px;
	height: 30px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 0px;
}

.sidebar .menu-item>a {
	font-weight: 500;
	font-size: 20px;
	margin-bottom: 10px;
	display: inline-block;
}

.sidebar .menu-item>.sub-menu a {
	font-weight: 400;
	font-size: 17px;
	margin-bottom: 0.25em;
}

.sidebar .menu {
	font-size: 18px;
	color: #FFF;
	font-weight: 500;
	list-style: none;
	margin: 0px 0px 10px 10px;
	padding-left: 0px;
}

.sub-menu {
	margin-bottom: 2px;
	font-size: 14px;
	color: #FFF;
	font-weight: 300;
	margin-bottom: 0px;
	list-style: none;
	margin: 0px 0px 10px 0px;
	padding-left: 1em;
}

.sidebar ul.menu li.menu-item ul.sub-menu {
	display: none;
}

.sidebar ul.menu li.menu-item.current_page_item ul.sub-menu,
.sidebar ul.menu li.menu-item.current_page_ancestor ul.sub-menu {
	display: block;
}


/* title */
.date {
	font-weight: 400;
	margin-bottom: 0;
	color: #777;
}

.separater {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: dotted 1px #CCC;
}

.yarpp-related {
	padding-bottom: 20px;
	margin: 60px 0 20px;
}

.bk_green {
	background: #6EAE5F;
}

.book {
	margin: -20px 0px 10px;
}

.booktext {
	margin-top: 20px;
}

.center {
	text-align: center;
	padding-top: 30px;
}

.center_read {
	text-align: center;
	padding-top: 0px;
	font-size: 15px;
}

a.button-link,
input.button-link {
	background: #090170 none repeat scroll 0% 0%;
	padding: 10px 40px 10px 40px;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	border-radius: 0px;
}

a.head_button-link,
input.head_button-link {
	background: #090170 none repeat scroll 0% 0%;
	padding: 5px 40px 5px 40px;
	color: #FFF;
	font-size: 12px;
	font-weight: 700;
	position: relative;
	border-radius: 0px;
}

.border_top {
	padding-top: 50px;
	border-top: #CCC dashed 1px;
}

.border_bottom {
	padding-bottom: 50px;
	border-bottom: #CCC dashed 1px;
}

.box-shadow {
	box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-webkit-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
	-moz-box-shadow: rgba(102, 102, 102, 0.298039) 0px 0px 12px -3px;
}

ul.list-unstyled.text-indent li {
	margin-left: 1.5em;
	text-indent: -1.5em;
}


/* button */

a.button-link_contact {
	background: #fbb03b none repeat scroll 0% 0%;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	border-radius: 7px;
	padding: 17px 0;
	width: 100%;
}

a.button-link_contact:after,
input.button-link:after {
	content: '\f0a9';
	font-family: "FontAwesome";
	display: inline-block;
	margin-left: 5px;
	line-height: 0.1;
	padding: 0;
	position: relative;
}

a.button-link_faq {
	background: #324681 none repeat scroll 0% 0%;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	border-radius: 7px;
	padding: 17px 0;
	width: 100%;
}

a.button-link_faq:after,
input.button-link:after {
	content: '\f429';
	font-family: "genericons";
	display: inline-block;
	margin-left: 5px;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0;
	position: relative;
	top: 5px;
}

a.button-link {
	background: #613B2F none repeat scroll 0% 0%;
	color: #FFF;
	font-size: 14px;
	font-weight: 700;
	position: relative;
	border-radius: 7px;
	padding: 10px 34px;
	width: auto;
}

a.button-link:after {
	content: '\f0a9';
	font-family: "FontAwesome";
	display: inline-block;
	margin-left: 5px;
	line-height: 0.1;
	padding: 0;
	position: relative;
}

.wp-pagenavi {
	margin: 20px auto;
	width: 100%;
	text-align: center;
}

a.link,
ul.link li a {
	color: #333;
}

a.link:before,
ul.link li a:before {
	content: '\f08e';
	font-family: "FontAwesome";
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 7px;
}

a.link[href$=".doc"]:before,
a.link[href$=".docx"]:before {
	content: "\f1c2";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #1266B5;
}

a.link[href$=".pdf"]:before {
	content: "\f1c1";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #D42B2E;
}

a.link.map:before {
	content: "\f124";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #D42B2E;
}

.calendar:before {
	content: "\f073";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #0071BC;
}

.address:before {
	content: "\f041";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	left: 3px;
	color: #1fa67a;
}

.user:before {
	content: "\f007";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	left: 2px;
	color: #1fa67a;
}

.users:before {
	content: "\f0C0";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #1fa67a;
}

.dateicon:before {
	content: "\f017";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #1fa67a;
}

.tag:before {
	content: "\f02C";
	font-family: 'FontAwesome';
	display: inline-block;
	font-size: 1.5em;
	line-height: 0.1;
	padding: 0 0.5em 0 0;
	position: relative;
	top: 2px;
	color: #666;
}

.information {
	padding: 10px 15px;
	/* border-top: solid 1px #CCC; */
	/* border-bottom: solid 1px #CCC; */
	background: #EEE;
	border-radius: 5px;
}

.wp-pagenavi a,
.wp-pagenavi span {
	border: 1px solid #CCC !important;
	padding: 5px 10px !important;
	margin: 5px !important;
}

.lead-area {
	position: relative;
	padding: 10px 0 0;
	margin: 0 auto 40px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	max-width: 1170px;
	/*  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;*/
}

.lead-area.blog {
	display: block;
}

.lead-area .lead-area-title {
	width: 40%;
	-webkit-box-align: left;
	-ms-flex-align: left;
	-webkit-align-items: left;
	align-items: left;
	justify-content: left;
	color: #ffffff !important;
	background: #1B5069;
	font-size: 64x;
	font-family: serif;
	padding: 0.5em 1em;
}
.lead-area .lead-area-title > span {
	font-family: sans-serif;
}

.lead-area .lead-area-img {
	width: 60%;
	background-size: cover;
	background-position: 50% 30%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	/*
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  */
}

.lead-area .h3 {
	font-family: "Adobe Garamond Pro", "source-han-sans-japanese", Meiryo, sans-serif;
	font-size: 64px;
	margin-top: 0;
	color: #ffffff !important;
}

.lead-area .h3 span {
	display: block;
	font-size: 28px;
}

@media(max-width: 767px) {
	.lead-area {
		width: 100%;
		padding: 10px 0;
		text-align: left;
	}

	.lead-area.blog {
		width: 100%;
		padding: 0 0 20px;
		text-align: left;
	}


	.lead-area .lead-area-title {
		width: 100%;
		color: #ffffff !important;
		background: #1B5069;
		font-size: inherit;
		padding: 0.5em 1em;
	}

	.lead-area .lead-area-img {
		display: none;
	}

	.lead-area .title {
		margin-bottom: 30px;
	}

	.lead-area .h3 {
		font-family: "Adobe Garamond Pro", "source-han-sans-japanese", Meiryo, sans-serif;
		font-size: 14px;
		line-height: 1.1;
		margin-top: 0;
		color: #ffffff !important;
	}

	.lead-area .h3 span {
		display: block;
		font-size: 24px;
	}
}

.post a {
	color: #333;
}

.cat-banner {
	padding: 5px;
	width: 10em;
	margin-right: 5px;
	text-align: center;
	background: #666;
	color: #FFF;
	line-height: 1;
	font-size: 11px;
	font-weight: 400;
	margin-bottom: 6px;
	display: inline-block;
}

.cat-banner.news {
	background: #E3D566;
	color: #000;
}

.cat-banner.presidentblog {
	background: #3867AD;
	color: #FFF;
}

.cat-banner.maintenance-diary {
	background: #666;
	color: #FFF !important;
}

.cat-banner.staffblog {
	background: #FF900F;
}

.cat-banner.car-delivery {
	background: #359823;
	color: #FFF;
}

.cat-banner.topics {
	background: #FFF;
	border: solid 1px #555;
	color: #555;
}

/*20220222追加*/
.cat-banner.greeting {
	background: #FA9;
}

/*20220222追加ここまで*/

.delivery>.container>.row {
	display: flex;
	flex-wrap: wrap;
}

.price {
	/*    font-family: 'proxima-soft-condensed', sans-serif; */
	color: #910E0E;
}

.price span {
	font-size: 0.8em;
}

.thumb-image {
	width: 200px;
	float: left;
	display: block;
	margin: 0px 40px 20px;
}

section#content>.container .row {}

@media (max-width: 767px) {
	section#content>.container .row {
		margin-bottom: 0px;
	}
}

section#content.home>.container .row {
	margin-top: 30px;
	margin-bottom: 60px;
}

table tr.noborder,
table tr.noborder td {
	border: none !important;
}

table.table {
	border-bottom: solid 1px #CCC;
}

table.table th {
	white-space: nowrap;
}

table.table tr>th,
table.table tr>td {
	border-right: dotted 1px #CCC;
}

table.table.noborderright tr>th,
table.table.noborderright tr>td {
	border-right: none !important;
}

table.table tr>th:last-child,
table.table tr>td:last-child {
	border-right: none;
}

table.table.col1 tr>th,
table.table.col1 tr>td {
	width: 100%;
}

table.table.col2 tr>th,
table.table.col2 tr>td {
	width: 50%;
}

table.table.col3 tr>th,
table.table.col3 tr>td {
	width: 33.3%;
}

table.table.col4 tr>th,
table.table.col4 tr>td {
	width: 25%;
}

table.table.col5 tr>th,
table.table.col5 tr>td {
	width: 20%;
}

.list-item {
	/*210819追加*/
	position: sticky;
	left: 0;
}

@media (max-width: 767px) {
	table.table.sptable tr {
		border-top: dotted 1px #ccc;
	}

	table.table.sptable tr>th,
	table.table.sptable tr>td {
		display: block;
		width: 100%;
		border-top: none;
	}
}

section.policy {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/bg_policy.jpg) no-repeat left top;
	background-size: cover;
}

section.works {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/bg_works.jpg) no-repeat center top;
	background-size: cover;
}

div#breadlist_area_top {
	position: relative;
	/*    border-bottom: dotted 1px #CCC; */
	/*    margin-bottom: 20px; */
}

div#breadlist_area_top a {
	color: #333;
}

@media (max-width: 767px) {
	div#breadlist_area_top {
		margin-bottom: 30px;
	}
}

#map {
	width: 100%;
	height: 550px;
}

#content {
	min-height: 50px;
}


/* slider */

img.sp-thumbnail {
	width: 100% !important;
}

.sp-image-container {
	overflow: hidden;
	/*	border-top-right-radius: 6px; */
	/*	border-bottom-right-radius: 6px; */
}

@media (max-width: 767px) {
	.sp-image-container {
		border-top-right-radius: 0px;
		border-bottom-right-radius: 0px;
	}
}

.list-box {
	background: #EEE;
	padding: 10px 20px;
	border-radius: 4px;
}

.list-box dt {
	color: #333;
	font-weight: 500;
}


.contact-button-box {
	text-align: center;
}

.contact-button-box .contact-button {
	display: inline-block;
	float: none;
}

.tel {
	font-family: 'proxima-soft-condensed', sans-serif;
	line-height: 1.2em;
	font-weight: 700;
}


/* footer */


footer {
	position: relative;
}

#copyright {
	background: navy;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0.00, #216281), color-stop(1, #113141));
	background: linear-gradient(to bottom, #216281 0%, #113141 100%);
}


@media (max-width: 767px) {
	.footer-title a img {
		width: 100%;
	}
}

.footer_logo {
	height: 100%;
	/*	background: #FFFFFF; */
}

.footer_logo img {
	width: 60px;
	margin: 40px auto;
}

.footer-inner {
	/*	background: #e0edde;
width: 100%; */
	height: auto;
	position: static;
	top: 0;
	color: #333;
}

footer .footer-title h1,
footer .footer-title .h1 {
	font-size: 20px;
	line-height: 1.2em;
	color: #ffffff;
}

footer h1 .small {
	color: #ffffff;
	line-height: 1em;
	margin-bottom: 0.4em;
}

@media (min-width: 768px) {
	footer h1 .small {
		font-size: 70%;
	}
}

ul.footer-list li {
	text-indent: -1em;
	margin-left: 1em;
}

@media (max-width: 767px) {
	ul.footer-list li {
		width: 45%;
		float: left;
	}
}

@media (min-width: 768px) {
	ul.footer-list li {
		width: 45%;
		float: left;
	}
}

@media (min-width: 1200px) {
	ul.footer-list li {
		width: 30%;
		float: left;
	}
}

ul.footer-list li:before {
	content: '';
	display: inline-block;
	width: 0;
	height: 0;
	margin-right: 4px;
	margin-left: 4px;
	border: transparent solid 5px;
	border-left-color: #32CD32;
	/* vertical-align: 4px; */
}






.sub-footer {
	color: #333;
}

.sub-footer .clearfix {
	border-top: double 3px black;
	border-bottom: double 3px black;
	margin-bottom: 10px;
}

.sub-footer .footer-menu {
	width: 100%;
	margin: 0 auto;
	padding: 0;
	justify-content: center;
}

.sub-footer .footer-menu>li {
	position: relative;
	float: left;
	text-align: center;
	padding: 0.3em 1em;
}

.sub-footer .copyright {
	display: block;
	width: 100%;
	font-size: 11px;
}

@media (max-width: 767px) {
	.sub-footer {
		margin: 20px 0 0;
	}
}

.footer-inner p,
.footer-inner a,
.footer-inner a:link,
.footer-inner a:hover {
	/*	color: #FFFFFF; */
}

footer .tel {
	display: block;
	font-family: 'proxima-soft-condensed', sans-serif;
	font-size: 30px;
	line-height: 1.2em;
	font-weight: 700;
}

#scrollUp {
	width: 80px;
	height: 52px;
	position: fixed;
	bottom: 40px;
	right: 0px;
	display: block;
	background-color: #FF0041;
	color: #FFF;
	font-size: 12px;
	text-align: center;
	padding: 4px 15px 16px;
	line-height: 1;
	border-top-left-radius: 8px;
	border-bottom-left-radius: 8px;
	box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 3px 2px;
	-webkit-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 3px 2px;
	-moz-box-shadow: rgba(0, 0, 0, 0.0980392) 0px 2px 3px 2px;
}

#scrollUp span {
	font-size: 24px;
}

footer .menu {
	font-family: "adobe-garamond-pro", "source-han-sans-japanese", Meiryo, sans-serif;
	color: #FFF;
	font-weight: 500;
	list-style: none;
	margin: 0px 0px 10px;
	padding-left: 0;
}

footer .sub-menu {
	font-size: 14px;
	font-weight: 400;
	padding-left: 1em;
}



div.panel h2 {
	position: relative;
	cursor: pointer;
	text-align: left;
}

div.panel h2 span.btn {
	position: absolute;
	width: auto;
	padding: 0.2em 0.75em;
	right: 0;
}

div.panel h2 a,
div.panel h2 a:hover {
	text-decoration: none !important;
}

div.panel h2 a span.btn-close {
	display: inline-block;
}

div.panel h2 a span.btn-open {
	display: none;
}

div.panel h2 a.collapsed span.btn-close {
	display: none;
}

div.panel h2 a.collapsed span.btn-open {
	display: inline-block;
}


/*
div.panel .collapsing {
	-webkit-transition: height 0.5s ease;
	transition: height 0.5s ease;
}
*/

blockquote,
.box_normal,
dl.quote,
table.intro {
	line-height: 1.9;
	padding: 22px 20px 29px;
	border: 1px solid #e1e1e1;
	box-shadow: 0 3px 0 rgba(8, 1, 2, 0.03);
	font-size: 16px;
	margin: 30px 0
}

dl.quote {
	padding: 26px 20px 1px;
	padding-bottom: 0;
	background: #fff;
	border-color: #CCC;
}

dl.quote dt {
	background: #fff;
	padding: 0 10px;
	font-weight: 400;
	position: relative;
	top: -45px;
	display: inline-block;
}

dl.quote dd {
	position: relative;
	top: -25px;
	padding-left: 10px;
	margin-bottom: 25px;
	text-align: left;
}

dl.quote dd:last-of-type {
	margin-bottom: 0;
}

div.subjects_menu {
	overflow: hidden;
	margin-bottom: 40px;
}

div.subjects_menu h3 {
	margin-top: 0;
}

a.block {
	display: block;
	width: 100%;
	color: #ffffff;
	padding: 1em;
}

@media (min-width: 768px) {
	ul.menu.subnav {
		justify-content: space-around;
	}
}

ul.menu.subnav li {
	float: left;
	width: 20%;
}

ul.menu.subnav li div {
	width: 90%;
	margin: 0 auto;
	padding-top: 90%;
	position: relative;
}

ul.menu.subnav li div p {
	position: absolute;
	top: 40%;
	width: 100%;
}

@media (max-width: 768px) {
	ul.menu.subnav li div p {
		top: 35%;
	}
}

@media (max-width: 375px) {
	ul.menu.subnav li div p {
		top: 30%;
	}
}

ul.menu li img {
	width: 90%;
	margin: 20px 5%;
}

@media (max-width: 767px) {
	ul.menu.subnav li {
		width: 50%;
		margin-bottom: 20px;
	}
}

.table>thead>tr>th,
.table>tbody>tr>th,
.table>tfoot>tr>th,
.table>thead>tr>td,
.table>tbody>tr>td {
	vertical-align: middle;
}

@media (max-width: 767px) {

	.table>thead>tr>th,
	.table>tbody>tr>th,
	.table>tfoot>tr>th,
	.table>thead>tr>td,
	.table>tbody>tr>td {
		font-size: 80%;
	}
}

.underlined {
	border-bottom: solid 1px #333333;
}

ul.archivestax {}

ul.archivestax li {
	width: 48%;
}

ul.archivestax li p {
	padding: 2px 10px;
	text-align: center;
	border: solid 1px #95989A;
	border-radius: 20px;
	display: inline-block;
	margin: 2px 0px;
	font-size: 20px;
	width: 100%;
	color: #95989A;
}

.works-sheet dl dt {
	font-weight: normal;
}

dl.inline_dl {}

dl.inline_dl dt {
	float: left;
	width: 8em;
}

dl.inline_dl dd {
	float: left;
	width: calc(100% - 9em);
}

dl.inline_dl.separater {
	display: block;
	overflow: hidden;
}

dl.inline_dl.separater dt {
	float: left;
	width: 14em;
}

dl.inline_dl.separater dd {
	float: left;
	width: calc(100% - 14em);
}

@media (max-width: 767px) {

	dl.inline_dl.separater dt,
	dl.inline_dl.separater dd {
		font-size: 85%;
	}
}

dl.inline_dl.separater.list-company {}

dl.inline_dl.separater.list-company dt {
	width: 8em;
}

dl.inline_dl.separater.list-company dd {
	width: calc(100% - 9em);
}

ol.content-flow {
	counter-reset: my-counter;
}

ol.content-flow li {
	width: 100%;
	padding-left: 60px;
	position: relative;
}

ol.content-flow li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #259025;
	color: #fff;
	display: block;
	float: left;
	line-height: 50px;
	margin-left: -60px;
	text-align: center;
	height: 50px;
	width: 50px;
	font-size: 30px;
	border-radius: 50%;
}

ol.content-flow li h4 {
	line-height: 2em;
}

@media (max-width: 767px) {
	ol.content-flow li {
		width: 100%;
		padding-left: 40px;
		position: relative;
	}

	ol.content-flow li:before {
		line-height: 30px;
		margin-left: -40px;
		margin-top: 0.3em;
		text-align: center;
		height: 30px;
		width: 30px;
		font-size: 18px;
		border-radius: 50%;
	}
}

.form-group {
	overflow: hidden;
	/*  border-bottom: solid 1px #cccccc;*/
}

.form-group label {
	width: 100%;
	float: none;
	font-size: 18px;
	font-weight: normal;
}

.form-group .form-control {
	width: 75%;
	float: right;
	border-radius: 0px;
	margin: 0 0 1em;
}

@media (max-width: 767px) {

	.form-group label,
	.form-group .form-control {
		width: 100%;
	}
}

.logo_thumb a {
	width: 200px;
	height: 133px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	layout-grid-line: 133px;
}

@media (min-width: 992px) {
	.logo_thumb a {
		width: 200px;
		height: 80px;
		layout-grid-line: 80px;
	}
}

@media (min-width: 1200px) {
	.logo_thumb a {
		width: 200px;
		height: 70px;
		layout-grid-line: 70px;
	}
}

@media (max-width: 767px) {
	.logo_thumb a {
		width: 95px;
		height: 95px;
		layout-grid-line: 95px;
	}
}

.logo_thumb a img {
	vertical-align: middle;
}

.dl-horizontal dt {
	float: left;
	text-align: left;
	width: 5em;
}

.dl-horizontal dd {
	margin: 1em 1em 1em 6em;
}

.logo_thumb_single p {
	width: 200px;
	height: 120px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	layout-grid-line: 120px;
}

.logo_thumb_single p img,
.logo_thumb_single p h1 {
	vertical-align: middle;
}

@media (max-width: 767px) {
	.logo_thumb_single {
		text-align: center;
	}

	.logo_thumb_single p {
		width: 50%;
		height: auto;
		display: inline-block;
	}
}

.archive_logo_thumb a {
	width: 165px;
	height: 191px;
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	layout-grid-line: 179px;
}

@media (min-width: 992px) {
	.archive_logo_thumb a {
		width: 131px;
		height: 151px;
		layout-grid-line: 151px;
	}
}

@media (min-width: 1200px) {
	.archive_logo_thumb a {
		width: 165px;
		height: 190px;
		layout-grid-line: 190px;
	}
}

@media (max-width: 767px) {
	.archive_logo_thumb a {
		width: 157px;
		height: 157px;
		layout-grid-line: 157px;
	}
}

.archive_logo_thumb a img {
	vertical-align: middle;
}

.service-menu {}

.service-menu .borderbox a {
	display: block;
	border: solid 1px gray;
	border-radius: 1em;
	padding: 10px 10px 0;
}

.content-faq {
	/*background: #216281;*/
	border-radius: 10px;
	/*padding: 15px;*/
}

.content-faq a.btn {
	background: #ffffff;
	color: #216281;
}

.content-faq .panel-group .panel {
	padding: 0 0 0 1em;
	overflow: hidden;
}

.faq-q {
	min-height: 28px;
	display: block;
	overflow: hidden;
}

.faq-q.separate {
	padding-bottom: 20px;
	margin-bottom: 20px;
	border-bottom: solid 1px #95989A;
}

.faq-q span.faq-pre {
	display: inline-block;
	font-size: 20px;
	line-height: 20px;
	padding: 3px;
	width: 1.5em;
	text-align: center;
	margin-right: 0.3em;
	font-weight: 700;
	float: left;
	color: #ffffff;
	background: #216281;
	border-radius: 5px;
	width: 30px;
	height: 30px;
}

.faq-q .faq-q-txt {
	display: inline-block;
	padding-top: 0.15em;
	/*font-size: 20px;*/
	width: calc(100% - 40px);
	float: left;
}

.faq-a {
	min-height: 28px;
	display: block;
	overflow: hidden;
}

.faq-a span.faq-pre {
	display: block;
	font-size: 24px;
	line-height: 32px;
	padding: 3px;
	width: 1.5em;
	text-align: center;
	margin-right: 0.3em;
	font-weight: 800;
	float: left;
	color: #ffffff;
	background: #D06367;
	border-radius: 5px;
}

.faq-a .faq-a-txt {
	display: block;
	padding-top: 6px;
	width: calc(100% - 60px);
	float: left;
}

@media (max-width: 767px) {
	.faq-a {
		margin: 0 0em 1em 0.5em;
	}

	.faq-a p {
		width: calc(100% - 2.2em);
	}
}

ul.faq-list .faq-a span.faq-pre {
	font-size: 30px;
	color: #ff6c00;
}

ul.faq-list .faq-a {
	min-height: 34px;
	margin: 0 0em 1.5em 0.2em;
	overflow: hidden;
}

ul.faq-list .faq-a p {
	margin-top: 10px;
}

@media (max-width: 767px) {
	ul.faq-list .faq-a p {
		width: calc(100% - 3em);
	}
}

.faq-q.ranking {
	position: relative;
	padding-left: 42px;
	padding-top: 4px;
}

.ranking-list .faq-q.ranking::before {
	display: inline-block;
	vertical-align: middle;
	content: '';
	width: 35px;
	height: 35px;
	background-size: contain;
	background-repeat: no-repeat;
	margin-right: 7px;
	position: absolute;
	left: 0;
	top: 0px;
}

.ranking-list .faq-q.ranking:nth-child(1):before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_rank_01.png);
}

.ranking-list .faq-q.ranking:nth-child(2):before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_rank_02.png);
}

.ranking-list .faq-q.ranking:nth-child(3):before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_rank_03.png);
}

.ranking-list .faq-q.ranking:nth-child(4):before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_rank_04.png);
}

.ranking-list .faq-q.ranking:nth-child(5):before {
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/icon_rank_05.png);
}

ul.faq>li {
	position: relative;
}

ul.faq>li>i {
	font-size: 1.5em;
	position: absolute;
	top: 4px;
	right: 20px;
	transform: rotate(180deg);
}

ul.faq>li.list-close>i {
	transform: rotate(0deg);
}

ul.faq>li>ul.children.d-none {
	display: none;
}

.border01 {
	margin: 1em 0px;
	padding: 10px;
	border: solid 2px #E28807;
	text-align: center;
	color: #E28807;
}

.business-calender table caption th td {
	margin: 0;
	padding: 0;
	border: 0;
	font-style: normal;
	font-weight: normal;
	font-size: 100%;
}

.business-calender table th {
	color: #000000;
}

.business-calender table td {
	padding: 0;
	border-bottom: none;
}

a.link-contact {
	width: 100%;
	text-align: center;
	-moz-border-radius: 8px;
	-webkit-border-radius: 8px;
	border-radius: 8px;
	padding: 0.5em;
	text-decoration: none !important;
	background-color: #DE2F2F;
	color: #ffffff;
	display: inline-block;
	-webkit-box-shadow: inset 1px 1px 0px 0px #ffffff;
	-moz-box-shadow: inset 1px 1px 0px 0px #ffffff;
	box-shadow: inset 1px 1px 0px 0px #ffffff;
}

a.link-contact:hover {
	color: #DE2F2F;
	background: -moz-linear-gradient(center top, #dfdfdf 5%, #ededed 100%);
	background: -ms-linear-gradient(top, #dfdfdf 5%, #ededed 100%);
	filter: progid: DXImageTransform.Microsoft.gradient(startColorstr='#dfdfdf', endColorstr='#ededed');
	background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, #dfdfdf), color-stop(100%, #ededed));
	background-color: #dfdfdf;
}

a.link-contact:active {
	position: relative;
	top: 1px;
}

dl.opentimes {
	display: block;
	overflow: hidden;
}

dl.opentimes dt {
	width: 6em;
	float: left;
}

dl.opentimes dd {
	width: calc(100% - 6em);
	float: left;
}

@media (max-width: 767px) {

	dl.opentimes dt,
	dl.opentimes dd {
		width: 100%;
	}
}

/*.home dl.opentimes dt,
.home dl.opentimes dd {
  width: 100%;
  float: left;
}*/

a.contact-btn {
	display: block;
	padding: 0.5em 3em;
	margin: 0 auto;
	background: gray;
	color: #ffffff;
}

#archive-voice .separater {
	padding-bottom: 0px;
}

#archive-voice article {
	overflow: hidden;
}

#archive-voice article:after {
	width: calc(100% - 30px);
	padding-bottom: 40px;
	margin: 0 auto 60px;
	border-bottom: solid 1px #95989A;
}

@media (min-width: 768px) {
	#archive-voice span.sp_block {
		margin-left: 2em;
	}
}

span.wpcf7-list-item.first {
	/*  margin: 0; */
}

form table tbody tr {
	margin-bottom: 20px;
}

form table tbody th {
	vertical-align: top;
}

form table tbody td button,
form table tbody td input,
form table tbody td select,
form table tbody td textarea {
	margin-bottom: 10px;
}

@media (max-width: 767px) {

	form table tbody th,
	form table tbody td {
		display: block;
		width: 100%;
		max-width: 100%;
		font-size: 80%;
	}
}


.gray {
	color: #777;
}

.bggray-grad {
	background: -moz-linear-gradient(top, #fff, #eee);
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#eee));
}

.borderbtmred {
	border-bottom: solid 4px #FF0041;
}

ul.cat_label {
	display: inline;
}

ul.cat_label li {
	display: inline-block;
}

ul.cat_label li span a {
	color: #ffffff;
}

ul.cat_label li span.service_cat {
	background: #910E0E;
	margin-right: 10px;
	padding: 4px 6px 3px;
	border-radius: 10px;
}

ul.cat_label li span.voice_cat {
	color: #ffffff;
	background: #FA9000;
	padding: 4px 6px 3px;
	border-radius: 10px;
}

div.staffcomment {
	background: rgba(33, 98, 129, 0.13);
	padding: 15px;
}

div.staffcomment h2 {
	color: #0D435E;
}



dl.carspec {
	padding-bottom: 10px;
}

dl.carspec dt {
	float: left;
	width: 8em;
}

dl.carspec dd {
	float: left;
	width: calc(100% - 8em);
}

div.caroption {
	display: -webkit-box;
	display: -moz-box;
	display: -webkit-flexbox;
	display: -moz-flexbox;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: -moz-flex;
	display: flex;
	-webkit-box-pack: start;
	-moz-box-pack: start;
	-webkit-flex-pack: start;
	-moz-flex-pack: start;
	-ms-flex-pack: start;
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	justify-content: flex-start;
}

div.caroption p {
	display: block;
	width: 24%;
	margin-right: 1%;
	text-align: center;
	color: #ffffff;
	background: #DDDBDB;
	border: solid 1px #95989A;
	margin-bottom: 12px;
	font-size: 15px;
	line-height: 30px;
}

@media(max-width:767px) {
	div.caroption p {
		display: block;
		width: 49%;
		margin-right: 1%;
		text-align: center;
		color: #ffffff;
		background: #DDDBDB;
		border: none;
		margin-bottom: 12px;
		font-size: 15px;
		line-height: 30px;
	}
}

div.caroption p.option_on {
	color: #ffffff;
	background: #216281;
	border: solid 1px #95989A;
}


@media(min-width:768px) {
	.sales-point {
		text-align: center;
		margin-bottom: 100px;
	}
}

@media(max-width:767px) {
	.sales-point {
		text-align: left;
		margin-bottom: 60px;
	}
}

@media(min-width:768px) {
	.repair-points {
		text-align: center;
		margin-bottom: 60px;
	}
}

@media(max-width:767px) {
	.repair-points {
		text-align: left;
		margin-bottom: 40px;
	}
}

@media(min-width:600px) {
	.repair-point {
		display: flex;
		align-items: center;
	}
}





div#sales-stuff-point {}

div#sales-stuff-point img {
	width: 216px;
	float: left;
}

div#sales-stuff-point div.baloon {
	padding: 20px;
	position: relative;
	width: calc(100% - 240px);
	float: right;
	border-radius: 7px;
	-webkit-border-radius: 7px;
	-moz-border-radius: 7px;
	-o-border-radius: 7px;
	-ms-border-radius: 7px;
	border: 1px solid #95989A;
	background: #fff;
}

div#sales-stuff-point div.baloon:before {
	border-right: 24px solid #95989A;
	/*  border-top: 12px solid transparent; */
	border-bottom: 24px solid transparent;
	content: '';
	margin-top: -10px;
	position: absolute;
	left: -24px;
	top: 33%;
	z-index: 102;
}

div#sales-stuff-point div.baloon:after {
	border-right: 24px solid #fff;
	/*  border-top: 12px solid transparent; */
	border-bottom: 24px solid transparent;
	content: '';
	margin-top: -9px;
	position: absolute;
	left: -21px;
	top: 33%;
	z-index: 103;
}

div.staff-comment {
	width: calc(100% - 240px);
	float: right;

}

@media(max-width:767px) {
	div#sales-stuff-point div.baloon {
		padding: 20px;
		position: relative;
		width: 100%;
		float: none;
		border-radius: 7px;
		-webkit-border-radius: 7px;
		-moz-border-radius: 7px;
		-o-border-radius: 7px;
		-ms-border-radius: 7px;
		border: 1px solid #95989A;
		background: #fff;
	}

	div#sales-stuff-point div.baloon:before {
		border-right: 24px solid #95989A;
		/*  border-top: 12px solid transparent; */
		border-bottom: 24px solid transparent;
		content: '';
		margin-top: -10px;
		position: absolute;
		left: -24px;
		top: 33%;
		z-index: 102;
	}

	div#sales-stuff-point div.baloon:after {
		border-right: 24px solid #fff;
		/*  border-top: 12px solid transparent; */
		border-bottom: 24px solid transparent;
		content: '';
		margin-top: -9px;
		position: absolute;
		left: -21px;
		top: 33%;
		z-index: 103;
	}

	div.staff-comment {
		width: 100%;
		float: right;
	}

}


div.selectfilter .collapse {
	display: block !important;
	padding: 0;
}

@media(max-width:767px) {
	div.selectfilter .collapse {
		margin: 0;
	}
}

div.selectfilter ul {
	width: 100%;
	padding: 0;
	/* display:inline-block; */
}

div.selectfilter ul li {
	position: relative;
	float: left;
	width: 16%;
	margin-right: 0.8%;
	text-align: center;
	background: #95989A;
	color: #000000;
}

@media(max-width:767px) {
	div.selectfilter ul li {
		position: relative;
		float: left;
		width: 32.5%;
		margin-right: 0.8%;
		text-align: center;
		background: #95989A;
		color: #000000;
		line-height: 1.2;
		padding: 5px 0
	}
}

div.selectfilter ul li:last-child {
	margin-right: 0;
}

div.selectfilter ul li:hover,
div.selectfilter ul li.current-menu-item {
	background: #216281;
}

div.selectfilter ul li:hover a,
div.selectfilter ul li.current-menu-item a {
	color: #ffffff !important;
}

/*
div.selectfilter ul li ul.dropdown-menu{
  display:block;
}*/
div.selectfilter ul li ul.dropdown-menu li {
	width: 100%;
}

div.selectfilter ul li ul.dropdown-menu li a:hover {
	background: none;
}

.contact_area {
	background: rgba(33, 98, 129, 0.16);
	padding: 40px 0;
}


div.old-page p {
	margin: 0;
}

div.old-page .main table,
div.old-page .syaken_main table {
	border-spacing: 1px;
	border-color: grey;
	padding: 5px;
}

div.old-page .syaken_main table {
	border-collapse: separate;
	padding: 0px;
}


div.old-page div.syaken_main table.pricetable {
	border-collapse: collapse;
}

div.old-page div.main th,
div.old-page div.main td,
div.old-page div.syaken_main table.pricetable th,
div.old-page div.syaken_main table.pricetable td {
	padding: 5px;
	border: 1px gray solid;
}

div.old-page div.main.company th,
div.old-page div.main.company td {
	padding: 3px;
	border: 1px #ffffff solid;
}

div.old-page table.tableform tr td {
	padding: 3px;
	border-top: solid 2px #ffffff;
	border-bottom: solid 2px #ffffff;
}

div.old-page table.tableform tr td input {
	margin: 0;
}

div.old-page .no-border,
div.old-page table.no-border td,
div.old-page table.no-border th {
	border: none;
}


table.tetudukitable td {
	padding: 5px;
	border: 1px gray solid;

}

table.tetudukitable a {
	color: blue;
	text-decoration: underline;
}

div.old-page .main table.stafftable table {
	padding: 0;
	border: solid 1px #999999;
	border-spacing: 0;
	border-collapse: collapse;

}


div.old-page .main table.stafftable table tr {
	border: solid 1px #999999;
	border-spacing: 0;
}

.syaken_bana {
	padding-top: 80px;
}

div.voice_post {}

div.voice_post div.bg_gray {
	border: solid 1px gray;
	border-bottom: none;
	padding: 5px;
	background: #F2F2F2;
}

div.voice_post div.bg_gray ul,
div.voice_post div.bg_gray ul li {
	list-style-position: inside;
	list-style-type: disc;
	padding-left: 1em;
}

div.voice_post div.bg_green {
	border: solid 1px gray;
	padding: 5px;
	background: #e8efb4;
}

div.voice_post div.bg_green table {
	margin: 10px auto;
}

div.voice_post div.bg_green table input[type="text"],
div.voice_post div.bg_green table input[type="email"] {
	height: 24px;
}

div.voice_post div.bg_green table input[type="radio"] {
	margin-left: 0.5em;
}

div.voice_post div.bg_green table span.first input[type="radio"] {
	margin-left: 0;
}

div.voice_post div.bg_green table textarea {
	width: 100%;
	margin: 20px 0;
}

div.staff-wrap {
	width: 590px;
	overflow: hidden;
	padding: 5px;
}

div.staff-wrap article {
	width: 49.5%;
	margin-right: 1%;
	border: solid 1px #999999;
	float: left;
}

div.staff-wrap article:nth-child(even) {
	margin-right: 0;
}

.staffname {
	padding: 5px;
	background: #e8efb4;
	border-bottom: solid 1px #999999;
}

.staffname span {
	color: #70bb0b;
}

.staffimg {
	padding: 15px 27px;
}

.staffmessage {
	border-top: solid 1px #999999;
	padding: 5px;
}



/* add 201802 */
.service-links {
	background: linear-gradient(rgba(255, 255, 255, 0) 0%,
			rgba(255, 255, 255, 1) 80%,
			rgba(255, 255, 255, 1)),
		url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/service-links-bg.png) center bottom / cover no-repeat;
}

.service-links h1 {
	text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.service-links-item {
	display: block;
	position: relative;
	height: 0;
	padding-top: 51.745%;
}

.service-links-item>div {
	position: absolute;
	width: 100%;
	top: 33%;
	text-align: center;
}

@media(min-width:992px) and (max-width:1200px) {
	.service-links-item>div {
		width: 90%;
		left: 5%;
		top: 10%;
	}
}

@media(max-width:767px) {
	.service-links-item {
		padding-top: 35.029%;
	}

	.service-links-item>div {
		top: 24%;
	}

	.service-links-item>div>h1 {
		font-size: 27px;
	}
}

.service-links-1 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/service-links-1.png) center center / cover no-repeat;
}

.service-links-2 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/service-links-2.png) center center / cover no-repeat;
}

.service-links-3 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/service-links-4.png) center center / cover no-repeat;
}


.home-menu-item {
	display: block;
	position: relative;
	height: 0;
	padding-top: 66%;
}

.home-menu-item>div {
	position: absolute;
	width: 100%;
	top: 40%;
	text-align: center;
}

.home-menu-1 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/home-menu-1.png) center top / cover no-repeat;
}

.home-menu-2 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/home-menu-2.png) center top / cover no-repeat;
}

.home-menu-3 {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/home-menu-3.png) center top / cover no-repeat;
}

@media(max-width:767px) {
	.home-menu-item {
		padding-top: 31.579%;
		margin-bottom: 20px;
		background-position: center 30%;
	}

	.home-menu-item>div {
		width: calc(100% - 30px);
		top: 24%;
		right: 15px;
		text-align: right;
	}

	.home-menu-item>div>h1 {
		font-size: 27px;
	}
}

.youtubeiframe {
	max-width: 640px;
	height: 360px;
}

@media(max-width:767px) {
	.youtubeiframe {
		max-width: 100%;
		height: 56.25vw;
	}
}

.bg-blue {
	padding: 15px;
	background: #F1F9FF;
}

.bg-blue .color-blue {
	color: #0D435E;
}



.goto-history .dl-horizontal dt {
	width: 108px;
}

.goto-history .dl-horizontal dd {
	margin: 0em 0em 0em 120px;
	padding-top: 1em;
}

@media(max-width:767px) {
	.goto-history .dl-horizontal dt {
		width: 100%;
	}

	.goto-history .dl-horizontal dd {
		margin: 0.5em 0 0 0;
		width: 100%;
		padding: 0;
	}
}


/* 201802リニューアル車検ページ */
/* 202011　カラーをnavyに戻しました カラーのみ変更 */
.inspection-page .lead-area .lead-area-title {
	background: #1B5069;
}

.inspection-page div.titlewrap .title {
	border-left: solid 10px #1B5069;
	color: #1B5069;
}

.inspection-page .btn {
	background: #1B5069;
}

.inspection-page .btn:hover,
.inspection-page .btn:active,
.inspection-page .btn:focus,
.inspection-page .btn:focus-within {
	background: #003E6E;
}

.border-red {
	border: solid 6px #1B5069;
	padding: 9px 9px 0;
	background: rgba(255, 255, 255, .6);
}

.border-red dl {
	padding: 0 15px;
	font-size: 14px;
}

.border-red dl.border-bottom {
	border-bottom: solid 1px rgba(0, 0, 0, 0.3);
}

.border-red dl dt {
	width: 50%;
	font-weight: 400;
}

.border-red dl dd {
	width: 50%;
	margin: 0 0 0 50%;
	text-align: right;
	color: #1B5069;
}

div.border-red-footer {
	margin-right: -9px;
	margin-left: -9px;
}

.border-red .border-red-footer>a {
	width: 100%;
	display: block;
	text-align: center;
	padding: 9px 0;
	font-size: 16px;
	color: #1B5069;
}

.border-red .border-red-footer>a.bg-red {
	background: #1B5069;
	color: #ffffff;
	font-size: 24px;
}

@media(min-width:768px) and (max-width:1200px) {
	.border-red dl dt {
		width: 100%;
		font-weight: 400;
	}

	.border-red dl dd {
		width: 100%;
		margin: 0;
		text-align: right;
		color: #1B5069;
	}
}

dl.dl-merit {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-ms-flex-wrap: wrap;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
}

dl.dl-merit dt {
	display: -webkit-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	justify-content: center;
	color: #ffffff;
	font-size: 60px;
	width: 90px;
	float: left;
	background: #1B5069;
}

.inspection-page dl.dl-merit dt {
	background: #1B5069;
}

dl.dl-merit dt div {
	text-align: center;
}

dl.dl-merit dt span {
	font-size: 18px;
	display: block;
}

dl.dl-merit dd {
	width: calc(100% - 90px);
	float: right;
	padding-left: 10px;
	background: #ffffff;
}

@media(max-width:767px) {
	dl.dl-merit dt {
		font-size: 36px;
		width: 64px;
	}

	dl.dl-merit dt span {
		font-size: 14px;
	}

	dl.dl-merit dd {
		width: calc(100% - 64px);
		float: right;
		padding-left: 8px;
		background: #ffffff;
	}
}

.inspection-page ol {
	counter-reset: my-counter;
	list-style: none;
	padding: 0;
}

.inspection-page ol li {
	margin-bottom: 10px;
	padding-left: 30px;
	position: relative;
}

.inspection-page ol li:before {
	content: counter(my-counter);
	counter-increment: my-counter;
	background-color: #1B5069;
	color: #ffffff;
	display: block;
	float: left;
	line-height: 22px;
	margin-left: -30px;
	text-align: center;
	height: 22px;
	width: 22px;
	border-radius: 50%;
}


.table-responsive .well {
	/*20210823追加*/
	background-color: rgba(255, 255, 255, 0);
}

.inspection-table td {
	/*20210818追加*/
	font-weight: 300;
}

.inspection-table tr:first-child {
	background: #fef8f8;
	text-align: center;
}

.inspection-table tr:first-child td:first-child {
	background: #f2f2f2;
}

.inspection-table tr th {
	text-align: center;
	background: #fac5c5;
}

.inspection-table tr:not(:first-child) td {
	text-align: right;
}

.inspection-table tr:not(:first-child) td[colspan] {
	text-align: center;
}

.inspection-table tr.price-total td {
	color: #D11224;
	font-weight: 700;
}

.discount-table tr td:first-child {
	width: 70%;
}

.vehicle-price {
	vertical-align: top !important;
	position: relative;
	/*20210817追加*/
	padding-left: 2rem !important;
	/*20210817追加*/
	z-index: -1;
	/*210819追加*/
}

.vehicle-price p {
	/*20210817追加*/
	position: absolute;
	bottom: 0;
	right: 1rem;
	margin-bottom: .5rem;
}

.vehicle-type {
	text-align: left;
}

.car-name {
	list-style: none;
	padding-inline-start: 1.5rem;
	/*20210823 0.5から1.5に修正*/
	font-weight: normal;
}

.price-notice {
	position: relative;
	padding-left: 10px;
}

.price-notice:before {
	content: "";
	position: absolute;
	top: .55em;
	left: 0;
	width: 0;
	height: 0;
	border-width: 7px;
	border-style: solid;
	border-color: transparent transparent transparent #333;
}

.price-notice>a {
	color: #D11224;
}

.price-notice>a:hover {
	/*20210818追加*/
	text-decoration: underline;
}

.notice-strong {
	text-decoration: underline;
}

@media(max-width:767px) {
	.discount-table tr td:first-child {
		width: 60%;
	}
}

/* 自動車整備 */
.bg-maintenancepagetop {
	background: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/bg-maintenancepagetop.png) center top / cover no-repeat;
}

@media(max-width:767px) {
	.bg-maintenancepagetop {
		background-size: contain;
	}
}

table.tableform {}

table.tableform tr td {
	border: solid 4px #ffffff;
	padding: 0 5px;
	vertical-align: middle;
}

table.tableform input,
table.tableform textarea {
	width: 100% !important;
	margin-bottom: 0 !important;
}

table.seibi_contact tr th {
	background: #eeeeee;
}

table.seibi_contact label {
	display: block;
	font-weight: 400;
}


.facebookphoto {}

/*
.facebookphoto a {
	width: 100%;
	height: 100%;
	display: block;
	overflow: hidden;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #000000;
}

.facebookphoto a {
	overflow: hidden; 
	box-shadow:rgba(102, 102, 102, 0.5) 0px 0px 12px -3px;
	-webkit-box-shadow:rgba(102, 102, 102, 0.5) 0px 0px 12px -3px;
	-moz-box-shadow:rgba(102, 102, 102, 0.5) 0px 0px 12px -3px;
	position: relative;
	border-radius: 7px;
}
.facebookphoto a:before {
  content: '\f082';
  font-size:40px;
  line-height:1;
  font-family: "FontAwesome";
  display: inline-block;
  position: absolute;
  top:0.3em;
  left:0.3em;
  color:#ffffff;
  text-shadow: 0px 3px 6px rgba(0,0,0,0.16);
}
*/

.facebookphoto iframe {
	width: 100% !important;
	height: auto !important;
}



ul.ul-boolian {
	display: flex;
	justify-content: center;
}

ul.ul-boolian li a span {
	font-size: 48px;
	font-weight: 700;
	padding: 0 1em;
}

@media(max-width:767px) {
	ul.ul-boolian li a span {
		padding: 0 0.5em;
	}
}

ul.ul-boolian li a span.boolian-yes {
	color: #fff;
	text-shadow: 0px 3px 6px rgba(221, 0, 51, 0.5);
}

ul.ul-boolian li a span.boolian-no {
	color: #fff;
	text-shadow: 0px 3px 6px rgba(0, 0, 255, 0.5);
}

ul.ul-boolian li a span:hover {
	color: #666666;
	text-shadow: 0px 3px 6px rgba(51, 51, 51, 0.5);
}

aside.author {
	padding: 0;
	border-radius: 3px;
	background: #EEE;
}

img.avatar {
	width: 100%;
	height: auto;
	margin-bottom: 0;
}

h1.title img.avatar {
	width: 50px;
	height: auto;
	margin-bottom: 0;
	float: left;
	margin-right: 10px;
}

.paging {
	padding: 20px 0;
	margin: 20px 0;
	border-top: dotted 1px #CCC;
	border-bottom: dotted 1px #CCC;
}

.addtoany_share_save_container {
	padding: 20px 0;
	margin: 30px 0 0 !important;
	border-top: dotted 1px #CCC;
	border-bottom: dotted 1px #CCC;

}

.addtoany_header {
	margin: 0 1em 0 0.5em;
	padding-top: 0.1em;
	float: left;
}

@media(max-width:767px) {
	.addtoany_header {
		margin: 0 0 0.5em;
		padding-top: 0.1em;
		float: none;
	}


}

.form-group input:not([type="radio"]),
.form-group textarea,
.form-group select {
	width: 100%;
	border: solid 1px #CCC;
	padding: 15px;
	/*    float:none;*/
}

/* add 20180717 ymd */
li.list50per div.ginput_container_radio ul.gfield_radio {
	display: flex;
	flex-wrap: wrap;
}

li.list50per div.ginput_container_radio ul.gfield_radio>li {
	width: 25%;
	margin-bottom: 40px;
}


@media(max-width:767px) {
	li.list50per div.ginput_container_radio ul.gfield_radio>li {
		width: 50%;
	}
}

.bup-front-cont .bup-field-type {
	width: 100% !important;
}

.bup-front-cont .bup-button-submit-changes {
	width: 100% !important;
}


/* add YMD 20181109 */
h1.staffs-name {
	font-size: 28px;
	line-height: 1;
	font-weight: 700;
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: solid 1px #707070;
}

h1.staffs-name span {
	display: inline-block;
	font-size: 71.4286%;
	font-weight: inherit;
	color: inherit;
}

div.staff-recommend {
	background: rgba(33, 98, 129, 0.13);
	padding: 15px;
}

ul.staff-faq li {
	padding-bottom: 1em;
	margin-bottom: 1em;
	border-bottom: solid 1px #707070;
}

ul.staff-faq li:last-child {
	padding-bottom: 0;
	margin-bottom: 0;
	border-bottom: 0;
}


div.carsales-spec {
	border-top: solid 1px #707070;
	border-bottom: solid 1px #707070;
	padding: 15px 0 10px;
}

div.carsales-spec iframe {
	width: 100%;
}

div.carsales-spec ul li {
	display: inline-block;
	padding: 0 15px;
}

div.carsales-spec ul li>p>span {
	font-weight: 700;
	padding-right: 1em;
}

a.contact-tel-btn {
	display: block;
	font-size: 40px;
	line-height: 1.25;
	font-weight: bold;
	color: #1B5069;
	border: solid 4px #1B5069;
	border-radius: 6px;
	background-color: #FFFFFF;
	padding: 0.3em;
}

@media (max-width: 767px) {
	a.contact-tel-btn {
		font-size: 30px;
		line-height: 2;
	}
}

.pb0 {
	padding-bottom: 0;
}

/* add 20190121 YMD(succeed) */
article[id^="post-"] a {
	color: #668BA8;
	text-decoration: none !important;
}

header a:hover {
	text-decoration: none !important;
}

.sp-conversion {
	position: absolute;
	top: 37px;
	right: 40px;
	z-index: 5000;
}

.sp-conversion li {
	height: 46px;
	float: left;
	text-align: center;
}

.sp-conversion li.item {
	color: #3E3E3E;
	font-size: 22px;
	margin-top: -5px;
	padding-left: 6px;
	padding-right: 6px;
}

.sp-conversion li.reserve {
	width: 50px;
	font-size: 30px;
}

.sp-conversion li a {
	color: #0D435E;
}

.sp-conversion li.item a span {
	font-size: 7px;
	text-align: center;
	position: relative;
	display: inline-block;
	/* bottom: -10px; */
	font-weight: 700;
	top: -17px;
}

.sp-conversion li.reserve a span {
	font-size: 9px;
	text-align: center;
	position: relative;
	display: inline-block;
	/* bottom: -10px; */
	font-weight: 700;
	top: -42px;
}

textarea.mauticform-textarea {
	height: 300px;
}

.fc-time-grid-event {
	overflow: visible !important;
	height: 100px !important;
}

.rc-anchor-invisible-text {
	display: none;
}

@media(max-width: 991.99px) {
	.smp-fixed-menu {
		position: fixed;
		bottom: 0;
		padding: 0;
		z-index: 1000;
		background: #FFFFFF;
		width: 100%;
	}

	.smp-fixed-menu ul.navbar-nav {
		width: 100%;
		margin: 0;
		padding-left: 0;
	}

	.smp-fixed-menu ul.navbar-nav li {
		display: flex;
		width: calc(100% / 6);
		float: left;
		border-right: solid 1px #D1D1D1;
		text-align: center;
		line-height: 1;
	}

	.smp-fixed-menu ul.navbar-nav li:last-child {
		border-right: none;
	}

	.smp-fixed-menu ul.navbar-nav li a {
		width: 100%;
		text-align: center;
		display: block;
		font-size: 8px;
		vertical-align: top;
		padding-top: 8px;
		padding-bottom: 8px;
		line-height: 10px;
		color: #414141;
	}

	.smp-fixed-menu ul.navbar-nav li a:hover {
		text-decoration: none;
	}

	.smp-fixed-menu ul.navbar-nav li a img {
		display: block;
		margin: 3px auto 0;
	}

	.smp-fixed-menu ul.navbar-nav li a i.fa,
	.smp-fixed-menu ul.navbar-nav li a i.fas {
		font-size: 20px;
		margin-top: 3px;
	}

	.navbar-toggler {
		border: none;
		position: relative;
		width: 60%;
		padding: 0;
		margin: 10px auto;
		background-color: transparent;
		background-image: none;
		transform: rotate(0deg);
		-moz-transition: transform 0.2s linear 0;
		-webkit-transition: transform 0.2s linear 0;
		transition: transform 0.2s linear 0;
	}

	.navbar-toggler .icon-bar {
		background-color: #CCCCCC;
		display: block;
		width: 100%;
		height: 3px;
		border-radius: 1px;
	}

	.navbar-toggler .icon-menu {
		display: inline-block;
		font-size: 7px;
		line-height: 3;
		vertical-align: top;
		font-weight: 700;
		color: #CCCCCC;
		letter-spacing: 0.8em;
	}

	div.nav.smp-openmenu {}

	div.nav.smp-openmenu .navbar-collapse.collapse.in {
		overflow: hidden;
		position: fixed;
		bottom: 55px;
		width: 100%;
		background: rgba(255, 255, 255, 0.96);
		margin: 0;

	}

	div.nav.smp-openmenu ul li {
		/*	padding:14px 3px; */
		padding: 7px 10px;
		line-height: 1;
		text-align: left;
	}

	div.nav.smp-openmenu ul>li>a {
		font-size: 14px;
		line-height: 1.5;
		font-weight: 500;
		padding: 0;
		color: #393939;

	}

	div.nav.smp-openmenu ul>li>a span {
		display: block;
		font-size: 10px;

	}

	div.nav.smp-openmenu ul li img {
		width: 40px;
		margin-right: 14px;
		float: left;
	}
}

.syaken-action {
	border: solid 5px #1B5069;
	padding: 15px;
}

.syaken-action .course .overlay {
	position: absolute;
	bottom: -10px;
	right: 16px;
	width: 40%;
	z-index: 10;
}

.syaken-action-title {
	background: #1B5069;
	display: inline-block;
	border-radius: 25px;
	margin: 20px auto 0px;
	padding: 6px 18px;
	font-weight: 700;
	color: #FFF;
	bottom: -24px;
	position: relative;
	left: 39%;
}

@media(max-width:767px) {
	.syaken-action {
		padding: 30px 0 0;
	}

	.syaken-action-title {
		left: 17%;
	}

	#footer {
		margin-bottom: 80px;
	}

}

.tab-content {
	padding: 30px 30px;
	background: #fff;
	border: 1px solid #ddd;
	border-top: none;
	margin-top: 40px;
}

ul.nav {
	padding-left: 0;
}

.bup-front-cont {
	z-index: 10 !important;
	/* SP booking メニューかぶり回避　*/
}





/* 新aboutusページ */
.d-flex {
	display: flex;
}

.circles-image {
	margin: 12px auto;
	object-fit: contain;
	width: 50%;
}

.about-us-content {
	background-color: #F5F4F2;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	padding-left: 20px;
	padding-bottom: 24px;
	padding-top: 12px;
	margin: 0 1em;
}

.about-us-content article {
	width: 40%;
	/* padding-right: 1em; */
}


.about-us-title {
	color: #1a5069;
	font-weight: bold;
	font-size: 35px;
	/* text-align: center; */

}

.about-us-subtitle {
	color: #000000;
	font-weight: bold;
	font-size: 20px;
}

.about-us-images {
	width: 60%;
	display: flex;
	justify-content: space-around;
	align-items: flex-start;
}

.about-us-images div {
	padding-top: 5%;
	display: flex;
	flex-wrap: wrap;
	width: 30%;
	font-size: 12px;
}

.about-us-images div img {
	height: 180px;
	width: auto;
	object-fit: cover;
	border-radius: 3%;
}

@media screen and (max-width:768px) {
	.circles-image {
		width: 100%;
	}

	.about-us-title {
		margin-top: 12px;
		font-size: 24px;

	}

	.about-us-content {
		padding: 1em 1em;

	}

	.about-us-content article {
		width: 100%;
		/* padding-right: 1em; */
	}

	.about-us-images {
		width: 100%;
		flex-direction: column;
		justify-content: space-around;

	}

	.about-us-images div {
		flex-wrap: nowrap;
		align-items: center;
		padding: 1em 0;

		width: 100%;

	}

	.about-us-images div p {
		padding: 0 1em;

	}

	.about-us-images div img {
		height: 90px;
		width: auto;

	}
}

/*固定ページトップ画像 768pxより狭い時には非表示*/
@media(max-width:768px) {
	.page-top-img {
		display: none !important;
	}
}

@media(max-width:768px) {
	.inspection_backSP {
		background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/inspection_backSP.png);
		background-size: cover;
		background-position: right;
	}
}

.border-inspection {
	border: 1px solid #1b5069;
	background-image: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/inspection_back.png);
	background-size: cover;
}

@media(max-width:768px) {
	.border-inspection {
		border: none;
		background-image: none;
	}
}

.question:before {
	content: url(https://gotopia.co.jp/wp-content/themes/goto201708%202/img/Q.png);
	display: inline-block;
	height: 10px;
	padding-right: 1rem;
}

.answer-yes div {
	border: solid 1px #d11224;
	font-size: 5rem;
	background-color: #d11224;
	color: #fff;
	border-radius: .25em;
	box-shadow: 0px 0px 5px 3px #aaa;
}

.answer-yes div:hover {
	border: solid 1px #d11224;
	font-size: 5rem;
	background-color: #fff;
	color: #d11224;
	border-radius: .25em;
	box-shadow: 0px 0px 0px 0px #fff;
}

.answer-no div {
	border: solid 1px #1b5069;
	font-size: 5rem;
	background-color: #1b5069;
	color: #fff;
	border-radius: .25em;
	box-shadow: 0px 0px 5px 3px #aaa;
}

.answer-no div:hover {
	border: solid 1px #1b5069;
	font-size: 5rem;
	background-color: #fff;
	color: #1b5069;
	border-radius: .25em;
	box-shadow: 0px 0px 0px 0px #fff;
}

.course-result-wrapper {
	background: #FFFCF0;
	width: 100%;
	height: 100%;
	display: block;
	padding: 30px;
	margin-bottom: 30px;
}

.course-result-title-wrapper {
	border-top: solid 2px #1B5069;
	border-bottom: solid 2px #1B5069;
	padding: 2rem 0;
	margin: 2rem 0;
}

.course-result-title {
	font-size: 24px;
	font-weight: 700;
	color: #1b5069;
}

.course-name {
	font-size: 4.5rem;
	color: #910E0E;
	font-weight: 700;
	margin: 1rem 0 1rem;
}

.fw-700 {
	font-weight: 700 !important;
}

.underline {
	text-decoration: underline;
}

.nav>li>a {
	position: relative;
	display: block;
	padding: 10px 15px;
	margin-right: 15px;
}

.nav-pills>li>a {
	border-radius: 4px;
	border: solid 1px #1B5069;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:hover,
.nav-pills>li.active>a:focus {
	color: #fff;
	background-color: #1B5069;
	border: solid 1px #1B5069;
}

.tab-content {
	padding: 0px;
	background: none;
	border: none;
	border-top: none;
	margin-top: 40px;
}

/*車検コース比較表*/
@media(max-width:767px) {
	.ment-cat {
		width: 30px;
		-ms-writing-mode: tb-rl;
		writing-mode: vertical-rl;
		-webkit-writing-mode: lr-tb;
		text-orientation: mixed;
		-webkit-text-orientation: mixed;
	}

	.ment-item {
		width: 7em;
	}
}

.discount-wrap {}

.discount {
	text-align: center;
	position: relative;
	font-weight: 700;
	margin-bottom: 30px;
}

.discount strong {
	color: #d11224;
}

.discount .discount-price span {
	font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
	font-size: 3em;
}

.discount-title {
	padding: 1em 0;
	line-height: 1.2;
	font-size: 1.2em;
}

.discount-1 {
	background: #FDD9A1;
}

.discount-1 .discount-title {
	background: #FCBC59;
}

.discount-1 .discount-price {
	color: #d11224;
}

.discount-2 {
	background: #FEF8A7;
}

.discount-2 .discount-title {
	background: #FDF35D;
}

.discount-2 .discount-price {
	color: #F15A24;
}

.discount-3 {
	background: #F1F1F1;
}

.discount-3 .discount-title {
	background: #CCCCCC;
}

.discount-3 .discount-price {
	color: #333;
}

.discount-recommend {
	background: #d11224;
	padding: 0.2em 1em;
	line-height: 1;
	color: #FFF;
	position: absolute;
	top: -0.5em;
	left: 0;
}

.w-700 {
	max-width: 700px;
	margin: 0 auto;
}

.w-700>.container {
	max-width: 700px;
}

/**20220617 車検フロー**/
.flow-num {
	font-size: 2rem;
	font-weight: 700;
	color: #fff;
	background-color: #0D435E;
	width: 2em;
	height: 2em;
	text-align: center;
	margin-right: .5em;
}

.flow-num.small {
	font-size: 1em;
	padding-left: 0.3em;
	padding-right: 0.3em;
	margin-right: 0.1em;
}

select#bup-category .d-none optgroup,
select#bup-category .d-none option {
	display: none;
}

select#bup-category optgroup[label="uncategorized"] {
	display: none;
}

#bup-staff-booking-list {
	display: none;
}

.bup-front-cont .bup-book-info-cont .bup-book-info-block1 {
	width: 49% !important;
}

.bup-time-slots-available-list li {
	padding: 0px 0px 9px 0px !important;
}

ul.bup-time-slots-available-list .bup-button {
	width: calc(100% - 20px);
}

.bup-front-cont .bup-book-steps-cont .bup-steps {
	/*width: calc(98% / 4)!important;*/
}

.bup-front-cont .bup-book-steps-cont {
	margin: 15px 0 0 0px !important;
	border: none !important;
}

.bup-front-cont .bup-book-steps-cont .bup-cart-step-inactive {
	margin-left: 80px;
	left: 0px !important;
	border: none !important;
}

.bup-front-cont .bup-book-steps-cont .bup-cart-step-active {
	left: 0px !important;
	margin-left: 80px !important;
}

.bup-cart-step-line-inactive,
.bup-cart-step-line-active {
	left: 0px !important;
	width: 100% !important;
}

.bup-cart-step-text-active,
.bup-cart-step-text-inactive {
	left: 0px !important;
	width: 100% !important;
}

.am-fs__payments-services-info,
.am-fs__payments-services-sub p span,
.am-fs__congrats-info-app-employee {
	display: none;
}

.am-fs__info-form {
	display: flex;
	flex-wrap: wrap;
}

/* 既存の幅指定を活かす */
.am-fs__info-form__item {
	box-sizing: border-box;
}


.m-phone-number-input__country-flag,
.m-select.m-phone-number-input__select,



/* カスタム確認画面 */

#custom-reservation-confirm-overlay {
	position: fixed;
	inset: 0;
	z-index: 999999;
	background: rgba(0, 0, 0, 0.45);
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 20px;
}

.custom-reservation-confirm-modal {
	width: 100%;
	max-width: 560px;
	max-height: 90vh;
	overflow: auto;
	background: #fff;
	border-radius: 12px;
	padding: 24px;
	box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
	color: #1a2c37;
}

.custom-reservation-confirm-modal h2 {
	margin: 0 0 12px;
	font-size: 22px;
	font-weight: 700;
}

.confirm-lead {
	margin: 0 0 18px;
	font-size: 14px;
	line-height: 1.7;
}

.confirm-table-wrap {
	border: 1px solid #e5e7eb;
	border-radius: 8px;
	overflow: hidden;
}

.custom-reservation-confirm-modal table {
	width: 100%;
	border-collapse: collapse;
}

.custom-reservation-confirm-modal th,
.custom-reservation-confirm-modal td {
	padding: 12px;
	border-bottom: 1px solid #e5e7eb;
	font-size: 14px;
	line-height: 1.5;
	vertical-align: top;
}

.custom-reservation-confirm-modal tr:last-child th,
.custom-reservation-confirm-modal tr:last-child td {
	border-bottom: none;
}

.custom-reservation-confirm-modal th {
	width: 38%;
	background: #f9fafb;
	text-align: left;
	font-weight: 600;
}

.confirm-actions {
	display: flex;
	gap: 12px;
	justify-content: flex-end;
	margin-top: 20px;
}

.confirm-actions button {
	border: none;
	border-radius: 8px;
	padding: 12px 18px;
	cursor: pointer;
	font-weight: 700;
}

.confirm-back-button {
	background: #e5e7eb;
	color: #1f2937;
}

.confirm-submit-button {
	background: #1a73e8;
	color: #fff;
}

@media (max-width: 600px) {

	.amelia-v2-booking #amelia-container.am-fs__wrapper {
		margin: 0 auto 135px !important;
		box-shadow: none !important;
	}

	.custom-reservation-confirm-modal {
		padding: 18px;
	}

	.custom-reservation-confirm-modal th,
	.custom-reservation-confirm-modal td {
		display: block;
		width: 100%;
	}

	.custom-reservation-confirm-modal th {
		border-bottom: none;
		padding-bottom: 4px;
	}

	.custom-reservation-confirm-modal td {
		padding-top: 4px;
	}

	.confirm-actions {
		flex-direction: column;
	}

	.confirm-actions button {
		width: 100%;
	}

	.amelia-v2-booking #amelia-container .am-fs__main-footer {
		position: fixed !important;
		bottom: 57px !important;
		background-color: #FFF !important;
		z-index: 1000 !important;
		border-bottom: 1px solid #CCC !important;
	}

}

/* footer */
.l-footer__widgetArea .l-container.w-footer.-col1 {
	margin: 0;
	padding: 0;
	max-width: 100%;
	width: auto;
}

.l-footer__widgetArea .l-container.w-footer.-col1 .w-footer__box {
	padding: 0;
	font-size: 1.1em;
}

.l-footer__widgetArea .l-container.w-footer.-col1 .w-footer__box .footer-list li a {
	line-height: 1.7em;
	color: #000;
}

#main_content .p-toc.-simple {
	max-width: 1080px;
	background: var(--color_main_thin);
}
.p-postList a {
	text-decoration: none !important;
}
.p-postList li {
	transition: all 0.4s ease-in-out;
	padding: 1.2% !important;
}
.p-postList li:hover {
	background: var(--color_main_thin);
	transition: all 0.2s ease-in-out;
}

/* 記事先頭のアイキャッチ拡大阻止 */
body .l-content .l-mainContent figure.p-articleThumb img.p-articleThumb__img {
    width: auto !important;
    min-width: 0 !important;
    margin: auto;
}