@charset "UTF-8";

/* common
-------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Damion&display=swap');
/* @import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.8.3/font/bootstrap-icons.css"); */
/* @import url("https://use.fontawesome.com/releases/v5.1.0/css/all.css"); */

html {
	scroll-behavior: smooth;
}

body {
	font-family: Verdana, Meiryo, "Hiragino Kaku Gothic ProN", sans-serif;
	color: #555;
}
img {
	max-width: 100%;
	height: auto;
}
.d-sp {
	display: none;
}
.dn-sp {
	display: block;
}
@media only screen and (max-width: 480px) {
	.d-sp {
		display: block;
	}
	.dn-sp {
		display: none;
	}
}

iframe {
	border: none;
}

/* 装飾 */
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
	font-weight: 500;
}
a {
	color: #b13f38;
}
a:hover {
	color: #b13f38;
}


strong {
	font-weight: 700;
}
.text-body {
	color: #555 !important;
}
.text-fashy {
	color: #b13f38 !important;
}


.badge-white {
	color: #403b37;
	background-color: rgba(255, 255, 255, 0.8);
}
.badge-dark {
	background-color: #555;
}
.badge-fashy {
	background-color: #ec7830;
}
.badge-blue {
	background-color: #2f3448;
	padding: 0.4em 0.5em 0.3em;
	color: #fff;
	border-radius: 2px;
}

/* 背景 */
.bg-gray {
	background-color: rgba(147, 149, 151, 1) !important;
}
.bg-dark {
	background-color: rgba(85, 85, 85, 1) !important;
}
.bg-red {
	background-color: rgba(177, 63, 56, 1)  !important;
}
.bg-blue {
	background-color: rgba(47, 52, 72, 1) !important;
}
.bg-yellow {
	background-color: rgba(233, 171, 59, 1) !important;
}



/* ボタン */
.btn-fashy {
	color: #fff;
	background-color: #ec7830;
	border-color: #ec7830;
}
.btn-fashy:hover {
	color: #fff;
	background-color: #ec7830;
	border-color: #ec7830;
}
.btn-gray {
	color: #fff;
	background-color: #555;
	border-color: #555;
}
.btn-gray:hover {
	color: #fff;
	background-color: #888;
	border-color: #888;
}
.btn > .fa-arrow-left,
.btn > .fa-arrow-right {
	transition: all .2s ease-in-out;
	transition-property: transform;
}
.btn:hover > .fa-arrow-right {
	transform: translateX(.25rem);
}

.link-arrow {
	position: relative;
	display: inline-block;
	padding: 0 20px 0 4px;
	color: #b13f38;
	text-decoration: none;
	outline: none;
	font-size: .875rem;
}
.link-arrow::before{
	content: '';
	position: absolute;
	bottom:0;
	left:15%;
	width: 85%;
	height: 1px;
	background:#b13f38;
	transition: all .3s;
}

.link-arrow::after{
	content: '';
	position: absolute;
	bottom:4px;
	right:0;
	width: 15px;
	height:1px;
	background:#b13f38;
	transform: rotate(35deg);
	transition: all .3s;
}
.link-arrow:hover::before{
	left:20%;
}
.link-arrow:hover::after{
	right:-5%;
}




.text-shadow {
	text-shadow: 1px 1px 2px rgb(0 0 0 / 70%), 0 0 1em rgb(0 0 0 / 70%), 0 0 0.2em rgb(0 0 0 / 100%);
}
.text-shadow-w {
	text-shadow: 1px 1px 2px rgb(255 255 255 / 70%), 0 0 1em rgb(255 255 255 / 70%), 0 0 0.2em rgb(255 255 255 / 100%);
}


/* ヘッダー
---------------------------------- */
header {
	border-bottom: 1px solid #dfab3b;
}
header .container {
	min-height: 80px;
	display: grid;
	justify-items: flex-start;
}
@media only screen and (max-width: 1000px) {
	header .container {
		max-width: 100%;
		margin: 0;
	}
}
header .site-title-wrap {
	min-height: 80px;
	margin: 0 auto;
	display: flex;
	justify-content: center;
	grid-area: 1/-1;
}
header .site-title {
	margin: 0;
	font-size: clamp(1.2rem, 1.045rem + 0.77vw, 1.625rem);
	font-weight: 400;
	display: flex;
	align-items: center;
}
header .site-title a {
	text-decoration: none;
	color: #555;
}


.sub-nav {
	grid-area: 1/-1;
	list-style: none;
	margin: 0 50px 0 auto;
	padding: 0;
	display: flex;
	align-items: center;
}
@media only screen and (max-width: 1000px) {
	.sub-nav {
		display: none;
	}
}
.sub-nav a {
	padding: 0.5rem;
	text-decoration: none;
	color: inherit;
}
.sub-nav svg {
	width: 1.5rem;
	height: 1.5rem;
}
@media only screen and (min-width: 1001px) {
	.sub-nav a:hover svg {
		stroke: #b13f38;
	}
}



@media only screen and (min-width: 1001px) {
	.main-menu {
		position: relative;
		width: 100%;
		max-width: 800px;
		list-style: none;
		margin: 0 auto 1rem;
		padding: 0;
		display: flex;
	}
	.main-menu > * {
		width: 33.333%;
		display: flex;
		justify-content: center;
	}
	.main-menu a {
		position: relative;
		color: inherit;
	}
	.main-menu a:hover {
		color:#b13f38;
	}
	.main-menu a::after {
		content: '';
		position: absolute;
		bottom: -4px;
		left: 10%;
		width: 80%;
		height: 2px;
		background:#b13f38;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: center top;
	}
	.main-menu a:hover::after {
		transform: scale(1, 1);
	}
}
@media only screen and (max-width: 1000px) {
	.main-menu {
		display: none;
	}
}


/* ナビゲーション
---------------------------------- */
/* ハンバーガー */
.openbtn {
	position: absolute;
	top: 16px;
	right: 1rem;
	border-left: 1px solid #b13f38;
	cursor: pointer;
	width: 50px;
	height:50px;
	z-index: 9999;
}
.openbtn span {
	display: inline-block;
	transition: all .4s;
	position: absolute;
}
.openbtn span:nth-of-type(1),
.openbtn span:nth-of-type(3) {
	height: 2px;
	width: 62%;
	left: 10px;
	background: #555;
	opacity: 0;
}
.openbtn span:nth-of-type(1) {
	top:13px;
}
.openbtn span:nth-of-type(2) {
	top:19px;
	left:4px;
	font-size:1rem;
	text-transform: uppercase;
	color: #555;
}
.openbtn span:nth-of-type(2) {
	top: 13px;
}
.openbtn span:nth-of-type(3) {
	top: 36px;
}
.openbtn.active span:nth-of-type(1) {
	top: 18px;
	left: 18px;
	transform: translateY(6px) rotate(-45deg);
	width: 30%;
	opacity: 1;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
	top: 30px;
	left: 18px;
	transform: translateY(-6px) rotate(45deg);
	width: 30%;
	opacity: 1;
}

/* グローバルナビゲーション */
#g-nav {
	position: fixed;
	top: 0;
	left: 0;
	display: flex;
	width: 100%;
	height: 100vh;
	background: rgba(255, 255, 255, 1);
	opacity: 0;
	z-index: -1;
	transition: all 0.3s;
}
#g-nav.panelactive {
	opacity: 1;
	z-index: 999;
}
#g-nav .inner {
	position: relative;
	margin: auto;
	display: flex;
	flex-direction: column;
}
@media only screen and (max-width: 480px) {
	#g-nav .inner {
		margin: 60px auto 0;
	}
}
#g-nav a {
	color: inherit;
}
#g-nav a:hover {
	text-decoration: none;
	color: inherit;
}
#g-nav .global-nav {
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
}
#g-nav .global-nav > li {
	list-style: none;
	padding: 0;
	display: flex;
	justify-content: center;
}
#g-nav .global-nav > li a {
	position: relative;
	padding: 8px;
	font-size: 1rem;
}
@media only screen and (max-width: 374px) {
	#g-nav .global-nav > li a {
		padding: 4px;
		font-size: 0.9375rem;
	}
}
#g-nav .global-nav > .separator {
	position: relative;
	margin-top: 0.5rem;
	flex-direction: column;
	align-items: center;
}
#g-nav .global-nav > .separator::before {
	display: block;
	content: "";
	width: 40px;
	height: 1px;
	margin-bottom: 0.5rem;
	background: #ec7830;
}
#g-nav .global-nav > .guide a {
	display: flex;
	align-items: center;
}
#g-nav .global-nav > .guide a svg {
	flex-shrink: 0;
	width: 1.5em;
	height: 1.5em;
}
#g-nav .global-nav > .guide a span {
	padding-left: 4px;
	flex-grow: 1;
}
@media only screen and (min-width: 1001px) {
	#g-nav .global-nav > li a:hover {
		color:#b13f38;
	}
	#g-nav .global-nav > li a::after {
		content: '';
		position: absolute;
		bottom: 4px;
		left: 10%;
		width: 80%;
		height: 2px;
		background:#b13f38;
		transition: all .3s;
		transform: scale(0, 1);
		transform-origin: center top;
	}
	#g-nav .global-nav > li a:hover::after {
		transform: scale(1, 1);
	}
}

/* アピールセクション
-------------------------- */
.promote {
	background: #b13f38;
	color: #fff;
}
.promote ul {
	padding: 0;
	margin: 0;
	display: flex;
	justify-content: center;
}
.promote li {
	display: flex;
	align-items: center;
	list-style: none;
	font-size: 0.8125rem;
}
.promote li svg {
	flex-shrink: 0;
}
.promote li + li {
	margin-left: 1.5rem;
}
.promote li span {
	padding-left: 4px;
	line-height: 1.2;
}
@media only screen and (max-width: 767px) {
	.promote ul {
		flex-direction: column;
		justify-content: flex-start;
		max-inline-size: max-content;
		margin-inline: auto;
	}
	.promote li svg {
		width: 18px;
		height: 18px;
	}
	.promote li + li {
		margin-left: 0;
	}
	.promote li br {
		display: none;
	}
}


/* トップページ
----------------------------------- */
/* ヒーローエリア */
.hero-area {
	position: relative;
	height: calc(100vh - 164px);
	width: 100%;
	overflow: hidden;
	display: grid;
}
@media only screen and (max-width: 1000px) {
	.hero-area {
		height: calc(100vh - 124px);
	}
}
@media only screen and (max-width: 767px) {
	.hero-area {
		height: calc(100vh - 169px);
	}
}
.kv__overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg,
	rgba(0,0,0,.32) 0%,
	rgba(0,0,0,.18) 36%,
	rgba(0,0,0,0) 65%);
  pointer-events:none;
}

.hero-area .hero-content {
	padding: 8rem 2rem;
	margin: auto;
	max-width: calc(1280px + 4rem);
	width: 100%;
	display: flex;
	justify-content: flex-start;
	/* justify-content: center; */
	align-items: center;
	color: #fff;
	grid-area: 1/-1;

	@media only screen and (max-width: 1000px) {
		align-items: flex-start;
		margin: 0;
	}
	@media only screen and (max-width: 480px) {
		padding: 3rem 2rem;
	}

}


.hero-area .hero-content h2 {
	/* font-family: 'Damion', cursive; */
	font-size: clamp(2rem, 1.091rem + 3.88vw, 4rem);
	line-height: 1.1;
	color: #ffcd21;
	text-align: left;
	text-shadow:
	0 0 0.25px rgba(255,255,255,.55),
	0 0 1.1px  rgba(255,255,255,.40),
	0 0 3.5px  rgba(255,200,140,.22),
	0 0 8px    rgba(255,200,140,.14),
	0 1px 0    rgba(0,0,0,.10);

	span {
		margin-top: 1rem;
		display: block;
		font-size: clamp(1rem, 0.613rem + 1.65vw, 2rem);
	}
}
/* @media only screen and (max-width: 480px) {
	.hero-area .hero-content h2 {
		color: #fff;
	}
} */
.hero-area .hero-content .lead {
	margin-bottom: 0;
}
.hero-area picture {
	width: 100%;
	min-height: 0;
	grid-area: 1/-1;
	z-index: -1;
}
.hero-area img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* object-position: 60% 50%; 20250627*/
	/* object-position: 50% 50%; */
	object-position: center top;
	animation: zoomIn 10s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media only screen and (max-width: 1000px) {
	.hero-area img {
		object-position: 70% 50%;
	}
}
@media only screen and (max-width: 480px) {
	.hero-area img {
		object-position: 70% 50%;
	}
}
@keyframes zoomIn {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}


/* お知らせ */
.news li {
	display: flex;
	align-items: flex-start;
	font-size: 0.875rem;
}
.news li + li {
	margin-top: 0.5rem;
}
@media only screen and (max-width: 767px) {
	.news li + li {
		margin-top: 1rem;
	}
}
.news li time {
	width: 10em;
	text-align: center;
	flex-shrink: 0;
	border-bottom: 1px solid #b13f38;
}
.news li span {
	padding-left: 2rem;
	width: calc(100% - 10em);
	flex-grow: 1;
}
@media only screen and (max-width: 767px) {
	.news li {
		flex-direction: column;
	}
	.news li time {
		width: 100%;
		text-align: left;
	}
	.news li span {
		padding: 0.5rem 0 0 0;
		width: 100%;
	}

}

/* サービス */
.services .panel-group {
	list-style: none;
	margin-top: 4rem;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
	gap: 2rem;
}
.services .panel-group > * svg {
	margin-right: 4px;
	width: 1.5em;
	height: 1.5em;
}
.services .panel-group > * svg path {
	fill: #b13f38 !important;
}
.services .panel-group > * .title {
	font-size: 1.125rem;
	color: #b13f38;
	display: flex;
	align-items: center;
}
.services .panel-group > * .desc {
	margin-bottom: 0;
	font-size: 0.875rem;
}

/* 3つのラインアップ */
section.lineup {
	/* background: rgba(233, 171, 59, 1); */
	/* background: rgba(147, 149, 151, 1); */
	background: rgba(47, 52, 72, 1);
}
.lineup h2, .lineup h2 + p {
	color: #fff;
}
.lineup .panel-group {
	list-style: none;
	margin-top: 4rem;
	padding: 0;
	display: grid;
	gap: 4rem 0;
}
.lineup .panel-group > * {
	width: 100%;
}
.lineup .panel-group > * a {
	display: flex;
	flex-direction: column-reverse;
}


@media screen and (min-width: 768px) {
	.lineup .panel-group > * a {
		display: grid;
		grid-template-columns: repeat(12, 1fr);
		grid-template-rows: 1fr;
		grid-gap: 2rem 0;
	}
	.lineup .panel-group > * .text-wrap {
		grid-column: 7 / 13;
		grid-row: 1;
		align-self: end;
		padding: 1rem 1rem 0.5rem 1rem;
		margin-bottom: 1rem;
		background: rgba(255, 255, 255, 0.8);
		z-index: 2;
	}
	.lineup .panel-group > * .img-wrap {
		grid-column: 1 / -3;
		grid-row: 1;
		z-index: 1;
		overflow: hidden;
	}
	.lineup .panel-group > *.reverse .text-wrap {
		grid-column: 7 / 1;
	}
	.lineup .panel-group > *.reverse .img-wrap {
		grid-column: 3 / -1;
	}
	.lineup .panel-group > * a .img-wrap img {
		transition: transform 1s ease;
	}
	.lineup .panel-group > * a:hover .img-wrap img {
		transform: scale(1.1);
	}
}
.lineup .panel-group > * .title {
	font-size: 1.25rem;
}
.lineup .panel-group > * .desc {
	margin-bottom: 0;
	color: #000;
	font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
	.lineup .panel-group > * .title {
		margin-top: 1rem;
		color: #fff;
	}
	.lineup .panel-group > * .desc {
		color: #fff;
	}
	.lineup .panel-group > * .text-wrap .link-arrow {
		margin-top: 0.5rem;
		color: #fff;
	}
	.lineup .panel-group > * .text-wrap .link-arrow::before,
	.lineup .panel-group > * .text-wrap .link-arrow::after {
		background: #fff;
	}
}




/* 新商品 */
section.collection {
	background: rgba(233, 171, 59, 1);
}
.collection h2, .collection h2 + p {
	color: #000;
}


/* 社会貢献しよう */
section.social-contributions {
	/* background: rgba(147, 149, 151, 0.2); */
}
section.social-contributions .panel-group {
	list-style: none;
	padding: 0;
	margin: 4rem 0 0;
	display: flex;
	justify-content: space-between;
}
section.social-contributions .panel-group > * {
	width: 48%;
}
@media only screen and (max-width: 767px) {
	section.social-contributions .panel-group {
		margin: 2rem 0 0;
		flex-direction: column;
	}
	section.social-contributions .panel-group > * {
		width: 100%;
	}
	section.social-contributions .panel-group > * + * {
		margin-top: 2rem;
	}
}
section.social-contributions .panel-group > * a {
	position: relative;
	display: grid;
}
@media only screen and (max-width: 767px) {
	section.social-contributions .panel-group > * .img-wrap {
		width: 80%;
		margin: auto;
	}
}

section.social-contributions .panel-group > * .img-wrap img {
	transition: transform 1s ease;
}
section.social-contributions .panel-group > * a:hover .img-wrap img {
	transform: scale(1.1);
}
section.social-contributions .panel-group > * .text-wrap {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	z-index: 1;
}
section.social-contributions .panel-group > * .title {
	font-size: 1.125rem;
	color: #b13f38;
}
section.social-contributions .panel-group > * .desc {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #555;
}


/* 特長 */
section.features {
	background: rgba(147, 149, 151, 0.2);
}
section.features h2, section.features h2 + p {
	color: #000;
}
section.features .panel-group {
	list-style: none;
	padding: 0;
	margin: 4rem 0 0;
	display: flex;
	justify-content: space-between;
}
section.features .panel-group > * {
	width: 48%;
}
@media only screen and (max-width: 767px) {
	section.features .panel-group {
		margin: 2rem 0 3rem;
		flex-direction: column;
	}
	section.features .panel-group > * {
		width: 100%;
	}
	section.features .panel-group > * + * {
		margin-top: 2rem;
	}
}


section.features .panel-group > * a {
	position: relative;
	display: grid;
}
section.features .panel-group > * .img-wrap {
	grid-area: 1/-1;
	overflow: hidden;
}
section.features .panel-group > * .img-wrap img {
	transition: transform 1s ease;
}
section.features .panel-group > * a:hover .img-wrap img {
	transform: scale(1.1);
}
section.features .panel-group > * .text-wrap {
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	margin-top: auto;
	background: rgba(255, 255, 255, 0.7);
	padding: 1rem;
	grid-area: 1/-1;
	z-index: 1;
}
section.features .panel-group > * .title {
	font-size: 1.125rem;
	color: #b13f38;
}
section.features .panel-group > * .desc {
	margin-bottom: 0;
	font-size: 0.875rem;
	color: #333;
}



/* インデックスページ
----------------------------------- */
.side-img {
	object-fit: cover;
	object-position: center bottom;
	width: 100%;
	height: 100%;
}


/* ファシー湯たんぽの特長ページ
----------------------------------- */
#hero {
	position: relative;
	height: calc(100vh - 121px);
	text-align: center;
	background: url("/features/img/movie.jpg") no-repeat center center /cover;
}

@media only screen and (max-width: 1000px) {
	#hero {
		height: calc(100vh - 81px);
	}
}
#loading {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-weight: 700;
	color: #fff;
}
#loading.disappear {
	display: none;
}
#youtube-area {
	position: absolute;
	z-index: 1;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	overflow: hidden;
	opacity: 0;
}
#youtube-area.appear {
	animation-name: PageAnimeAppear;
	animation-duration: .5s;
	animation-fill-mode: forwards;
}
@keyframes PageAnimeAppear {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
#youtube {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 177.77777778vh;
	height: 56.25vw;
	min-height: 100%;
	min-width: 100%;
}
#youtube-mask {
	position: absolute;
	z-index: 2;
	top: 0;
	width: 100%;
	height: 100%;
}
#youtube-area h1 {
	font-family: 'Damion', cursive;
	font-size: clamp(2.8rem, 1.765rem + 5.18vw, 5rem);
	position:absolute;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
	color:#fff;
	text-shadow: 0 0 15px #666;
}


/* 会社案内
------------------------- */
.hero-area.about {
	position: relative;
	height: 500px;
	width: 100%;
	overflow: hidden;
	display: grid;
}
@media only screen and (max-width: 1000px) {
	.hero-area.about {
		height: 360px;
	}
}

.hero-area.about .hero-content {
	padding: 2rem;
	margin: auto;
	max-width: calc(1280px + 4rem);
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	color: #fff;
	grid-area: 1/-1;
}
.hero-area.about .hero-content h1 {
	font-size: clamp(1.25rem, 0.841rem + 2.05vw, 2.375rem);
	line-height: 1.2;
}
.hero-area.about img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: 0 50%;
}
.hero-area.about img {
	object-position: 60% 50%;
	animation: zoomInAbout 10s cubic-bezier(0.25, 1, 0.5, 1) 1 forwards;
}
@media only screen and (max-width: 1000px) {
	.hero-area.about img {
		object-position: calc(10vw + 60%) 50%;
	}
}
@media only screen and (max-width: 480px) {
	.hero-area.about img {
		object-position: 30% 0;
	}
}
@keyframes zoomInAbout {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(1.1);
	}
}




/* 商品ページ
-------------------------------- */
.badge.badge-fashy.card-badge.card-badge-left.text-uppercase.text-white {
	font-size: 1rem;
}

.flickity-nav .is-nav-selected::after {
	background-color: #555;
}
.form-check-img>.form-check-input {
	height: 50px;
	width: 50px;
}
.nav-link:hover {
	color: #fd7023;
}
.nav-tabs .nav-item.show .nav-link,
.nav-tabs .nav-link.active {
	color: #fd7023 !important;
}
.nav-link.active:focus,
.nav-link.active:hover {
	color: #fd7023 !important;
}
.nav-link.active::before {
	border-top: 1px solid #fd7023;
}
.btn.disabled, .btn:disabled {
	background-color: #555;
	border-color: #555;
	pointer-events: none;
}
.custom-control-input:disabled + .custom-control-label {
	pointer-events: none;
}
.custom-control-size .custom-control-input[disabled]~.custom-control-label {
	background-color: #ddd;
	cursor: default;
}
.custom-control-size .custom-control-input:checked~.custom-control-label {
	border-color: #fd7065;
	outline: 1px solid #fd7065;
}
.embed-responsive-1by1 {
	border: 1px solid #ccc;
}


.icon-s {
	display: flex;
}
.icon-s svg {
	width: 1.5em;
	height: 1.5em;
	flex-shrink: 0;
	margin-right: 0.2rem;
}
.form-group .icon-s svg {
	width: 1.25em;
	height: 1.25em;
}
.icon-s svg path {
	fill: currentColor;
}
.icon-s.icon-red svg path {
	fill: #b13f38;
}
.icon-s span {
	flex-grow: 1;
}


.form-group button[type="submit"] {
	display: flex;
	justify-content: center;
	align-items: center;
}
.form-group button[type="submit"] svg {
	width: 28px;
	height: 28px;
	margin-left: 0.2rem;
}
.form-group button[type="submit"] svg path {
	fill: #fff;
}
.form-check-img > .form-check-input {
	border: 1px solid #e3e3e3;
	opacity: 1;
}
.form-check-img > .form-check-input:checked {
	border-bottom: 2px solid #b13f38;
	opacity: 1;
}
.table {
	color: #555;
}
.table-bordered > :not(caption) > * > * {
	border-width: 0 0;
}
.table tbody th, .table thead th {
	font-weight: 700;
	width: 25%;
}
.table thead th {
	border-left: 0;
	border-right: 0;
}
@media screen and (max-width: 575px) {
	h1.display-6 {
		font-size: calc(30vw*100/480);
	}
}
.dropdown-toggle::after,
.dropright-toggle::after {
	display: inline-block;
	content: "";
	width: 1.2rem;
	height: 1.2rem;
	margin-left: 0.255em;
	background-image: url("data:image/svg+xml,<svg viewBox='0 0 16 16' fill='%23333' xmlns='http://www.w3.org/2000/svg'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z' clip-rule='evenodd'/></svg>");
	background-repeat: no-repeat;
	background-size: cover;
}


/* テーブル */
@media screen and (max-width: 480px) {
	.table-column .table {
		display: flex;
	}
	.table-column tbody {
		display: flex;
		flex-direction: column;
	}
	.table-column tbody tr {
		display: flex;
		flex-direction: column;
		width: 100%;
	}
	.table-column tbody tr th,
	.table-column tbody tr td {
		width: 100% !important;
	}
	.table-column tbody tr th {
		border: none;
		padding-bottom: 0;
	}
	.table-column tbody td .link-underline {
		padding: 0;
	}
	.table-column tbody td .link-underline::before {
		display: none;
	}
}

/* お問い合わせフォーム
------------------------------ */
.form-group label small {
	margin-left: 0.5rem;
	cpolor: #b13f38;
}
.form-control {
	font-size: 1rem;
	color: #212529;
	border: 1px solid #b4bcc4;
	border-radius: 0rem;
	transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.form-control:focus {
	color: #212529;
	border-color: #3e558a;
	box-shadow: 0 0 0 0.4rem rgba(62, 85, 138, .25);
}
form .error-message {
	margin-top: 5px;
	margin-bottom: 10px;
	color: #b13f38;
	font-size: 0.8125rem;
}


/* ギロファ・バナー
----------------------------- */
section.gilofa-banner {
	background: url(/common/img/gilofa-bg.jpg) no-repeat 60% center /cover;
	min-height: 160px;
	display: flex;
}

@media only screen and (max-width: 480px) {
	section.gilofa-banner {
		background: url(/common/img/gilofa-bg-sp.jpg) no-repeat center bottom /cover;
		min-height: auto;
	}
}
section.gilofa-banner a {
	width: 100%;
	display: flex;
}
section.gilofa-banner .container {
	display: flex;
}
section.gilofa-banner .content {
	display: flex;
	flex-direction: column;
	margin: auto auto auto 0;
	color: #fff;
}
@media only screen and (max-width: 480px) {
	section.gilofa-banner .content {
		padding: 2rem 1rem calc(520vw*100 / 480) 1rem;
		margin: auto;
		text-align: center;
	}
}

section.gilofa-banner .content h3 {
	font-size: clamp(1.125rem, 0.989rem + 0.68vw, 1.5rem);
}
section.gilofa-banner .content p {
	margin: 0;
}
@media only screen and (max-width: 480px) {
	section.gilofa-banner .content h3 {
		font-size: 1.125rem;
		margin-bottom: 0.5rem;
	}
	section.gilofa-banner .content p {
		font-size: 0.875rem;
	}
}
@media only screen and (max-width: 374px) {
	section.gilofa-banner .content h3 {
		font-size: 1rem;
	}
	section.gilofa-banner .content p {
		font-size: 0.8125rem;
	}
}


/* フッター
----------------------------- */
footer {
	background: #555;
	color: #fff;
	line-height: 1.2;
}
footer a {
	color: #fff;
}
footer a:hover {
	color: inherit;
	text-decoration: underline;
}
footer .container {
	display: flex;
	flex-wrap: wrap;
}
footer .footer-title {
	width: 25%;
}
@media screen and (max-width: 1000px) {
	footer .footer-title {
		width: 40%;
	}
}
@media screen and (max-width: 767px) {
	footer .footer-title {
		width: 100%;
	}
}
footer .footer-title > h3 {
	font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
	footer .footer-title > h3 {
		font-size: 1rem;
	}
}

footer .footer-menu {
	width: 75%;
	margin: 0 -0.5rem;
	display: flex;
	flex-wrap: wrap;
}
@media screen and (max-width: 1000px) {
	footer .footer-menu {
		width: 60%;
	}
}
@media screen and (max-width: 767px) {
	footer .footer-menu {
		width: 100%;
	}
}
footer .footer-menu > * {
	width: 25%;
	padding: 0 0.5rem;
}
@media screen and (max-width: 1000px) {
	footer .footer-menu > * {
		width: 50%;
	}
}
footer .footer-menu > * h4 {
	position: relative;
	font-size: 1rem;
	padding-bottom: 0.5rem;
	margin-bottom: 0.7rem;
}
footer .footer-menu > * h4::before {
	content: "";
	position: absolute;
	left: 0;
	bottom: 0;
	width: 30px;
	height: 1px;
	background: #fff;
}
@media screen and (max-width: 767px) {
	footer .footer-menu > * h4 {
		font-size: 0.875rem;
	}
}
footer .footer-menu > * li {
	font-size: 0.8125rem;
}
footer .footer-menu > * li + li {
	margin-top: 0.5rem;
}





/* アニメーション
------------------------------------------ */
.fadeInTrigger {
	opacity: 0;
}
.fadeIn {
	animation-name: fadeInAnime;
	animation-duration: 5s;
	animation-timing-function: ease;
	animation-direction: normal;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeInAnime {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
.fadeUpTrigger {
	opacity: 0;
}
.fadeUp {
	animation-name: fadeUpAnime;
	animation-duration: 2s;
	animation-fill-mode: forwards;
	opacity: 0;
}
@keyframes fadeUpAnime {
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
.zoomIn {
	animation-name: zoomInAnime;
	animation-duration: 1s;
	animation-fill-mode: forwards;
}
@keyframes zoomInAnime {
	from {
		transform: scale(0.6);
	}
	to {
		transform: scale(1);
	}
}
.slide-in {
	overflow: hidden;
	display: inline-block;
}
.slide-in_inner {
	display: inline-block;
}
.leftAnime{
	opacity: 0;
}
.slideAnimeLeftRight {
	animation-name:slideTextX100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes slideTextX100 {
	from {
		transform: translateX(-100%);
		opacity: 0;
	}
	to {
	transform: translateX(0);
	opacity: 1;
	}
}
.slideAnimeRightLeft {
	animation-name:slideTextX-100;
	animation-duration:0.8s;
	animation-fill-mode:forwards;
	opacity: 0;
}
@keyframes slideTextX-100 {
	from {
		transform: translateX(100%);
		opacity: 0;
	}
	to {
		transform: translateX(0);
		opacity: 1;
	}
}

/* 順番に現れる */
.delayScroll > * {
	opacity: 0;
}
.fadeUpDelay {
animation-name:fadeUpAnimeDelay;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeUpAnimeDelay{
	from {
		opacity: 0;
		transform: translateY(100px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
