html,
button,
input,
select,
textarea {
	color: #444;
}

li {
	list-style: none;
}

a {
	transition: all 0.2s ease;
	cursor: pointer;
	text-decoration: none;
	color: #1e6ac6
}

a:visited {
	color: #1e6ac6;
}

a:hover {
	color: #aceffc;
}

div {
	box-sizing: border-box;
}

.pc-only {
	display: inherit;
}

.sp-only {
	display: none;
}

.tab-only {
	display: none;
}

.index-pc-only {
	display: inherit;
}

.index-sp-only {
	display: none;
}

ul,
li {
	margin: 0;
	padding: 0;
}

hr {
	border: none;
	border-top: #ddd thin solid;
}

/*コンテンツ*/

h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span {
	display: inline-block;
}

.flex-area {
	display: flex;
}

.grid-area {
	display: grid;
	gap: 10px;
	grid-template-columns: repeat(2, 1fr);
}

.flex-center {
	justify-content: center;
}

.flex-left {
	justify-content: flex-start;
}

.flex-right {
	justify-content: flex-end;
}

.flex-between {
	justify-content: space-between;
}

@media (max-width: 820px) {
	.tab-only {
		display: inherit;
	}

	.index-pc-only {
		display: none;
	}

	.index-sp-only {
		display: inherit;
	}

}

@media (max-width: 540px) {
	.pc-only {
		display: none;
	}

	.sp-only {
		display: inherit;
	}

	.flex-area {
		display: inherit;
	}


}

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;800&family=Noto+Serif+JP:wght@400;500;600&display=swap');


/* ==========================================================================
   General styles
   ========================================================================== */

html,
body {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {

	font-family: 'Noto Sans JP', sans-serif;
	font-size: 15px;
	color: #444;
	line-height: 180%;
	letter-spacing: 1px;
	background: ;

	-webkit-font-smoothing: antialiased;
	-webkit-overflow-scrolling: touch;
}

p {
	margin: 20px;
	text-align: justify;
}

p span {
	display: inline-block;
}

section {
	margin: 80px auto;
	position: relative;
	padding: 0;
}

.section_inner {
	width: 90%;
	max-width: 1100px;
	margin: 0 auto;
}

.clear {
	clear: both;
}

@media (max-width: 540px) {
	p {
		margin: 10px;
	}
}


span.stronger {
	font-weight: bold;
	text-decoration: underline;
}

.bg_logoblue {
	background-color: #1e6ac6;
}

.border_logoblue {
	border: thin #1e6ac6 solid;
	color: #1e6ac6;
}

.bg_btnblue {
	background-color: #4893ff;
}

.border_btnblue {
	border: thin #4893ff solid;
	color: #4893ff;
}

/*ボタンのスタイル　width以外の設定*/
.btn_base a {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem;
	text-align: center;
	border: #4893ff 1px solid;
	background: #fff;
	color: #4893ff;
	border-radius: 25px;
}

.btn_base a:hover {
	cursor: pointer;
	background: #4893ff;
	color: #fff;
	border: #4893ff 1px solid;

}

/*form用*/
button {
	display: block;
	margin: 0 auto;
	padding: 0.5rem;
	text-align: center;
	border: #4893ff 1px solid;
	background: #fff;
	color: #4893ff;
	border-radius: 25px;
	width: 80%;
	max-width: 280px;
}

button:hover {
	cursor: pointer;
	background: #4893ff;
	color: #fff;
	border: #4893ff 1px solid;
}

input.btn_base {
	display: block;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem;
	text-align: center;
	border: #4893ff 1px solid;
	background: #fff;
	color: #4893ff;
	border-radius: 25px;
	width: 80%;
	max-width: 280px;
}

input.btn_base:hover {
	cursor: pointer;
	background: #4893ff;
	color: #fff;
	border: #4893ff 1px solid;

}

/* ==========================================================================
   バーガーメニュー
   ========================================================================== */
.drawer {
	display: block;
	position: fixed;
	top: 8px;
	right: 5px;
	z-index: 1010;
}

.drawer-hidden {
	display: none;
}

.drawer-open {
	display: flex;
	height: 60px;
	width: 60px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 1012;
}

.drawer-open:hover {
	background: #aceffc;
	transition: 0.5s;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span {
	display: block;
	height: 2px;
	width: 35px;
	border-radius: 3px;
	background: #252525;
	transition: 0.5s;
	position: absolute;
	z-index: 1013;
}

.drawer-open span:before,
.drawer-open span:after {
	content: '';
	display: block;
	height: 2px;
	width: 35px;
	border-radius: 3px;
	background: #252525;
	transition: 0.5s;
	position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
	bottom: 10px;
	opacity: 1;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
	top: 10px;
	opacity: 1;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked~.drawer-open span {
	background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked~.drawer-open span::before {
	bottom: 0px;
	transform: rotate(45deg);
	opacity: 1;
}

#drawer-check:checked~.drawer-open span::after {
	top: 0px;
	transform: rotate(-45deg);
	opacity: 1;
}

/* メニューのデザイン*/
.drawer-content h1 {
	width: 100%;
	background-color: #fff;
	text-align: center;
	padding: 40px 0 10px;
}

.nav-title {
	width: 100%;
	margin: 0 auto;
}

.nav-title img {
	width: 100%;
	max-width: 240px;
}

.drawer-content {
	width: 100%;
	max-width: 540px;
	height: 100%;
	position: fixed;
	top: 0;
	right: -540px;
	/* メニューを画面の外に飛ばす */
	z-index: 1001;
	background-color: #f0fafc;
	background: linear-gradient(#fff, #aceffc);
	transition: 0.5s;
	filter: drop-shadow(1px 1px 2px #333);
}

ul.drawer-list {
	list-style: none;
	padding-left: 0px;
	margin: 0;
}

.drawer-list li {
	margin: 0;
	border-top: thin dotted #1e64c6;
}

.drawer-list li:last-child {
	border-bottom: thin dotted #1e64c6;
}

.drawer-list li a {
	padding: 10px 0px;
	display: block;
	margin: 1px 0;
	color: #1e64c6;
	text-align: center;
	border-bottom: none;
}

.drawer-list li a:hover {
	background: rgba(255, 255, 255, 1);
	padding: 10px 0px;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked~.drawer-content {
	right: 0;
	/* メニューを画面に入れる */
}

@media (max-width: 1024px) {}



/* ==========================================================================
   index styles
   ========================================================================== */

/*header部*/
header {
	z-index: 1;
}

.slider {
	width: 100%;
	position: absolute;
	right: 0;
	top: 0;
	padding-bottom: 0%;
}

.slick__bg {
	background-size: cover;
	background-repeat: no-repeat;
	width: 100%;
	height: 85vh;
	background-position: center top;
}

.slick__bg01 {
	background-image: url(../img/slide/slide-1.jpg);
	background-position: center center;
}

.slick__bg02 {
	background-image: url(../img/slide/slide-2.jpg);
}

.slick__bg03 {
	background-image: url(../img/slide/slide-3.jpg);
}

.slick__bg04 {
	background-image: url(../img/slide/slide-4.jpg);
}

@media (max-width: 540px) {
	.slick__bg02 {
		background-position: 60% top
	}

	.slick__bg03 {
		background-position: 90% top
	}
}

.oshirase-bar {
	z-index: 100;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
}

.fix-menu {
	width: 100%;
	padding: 5px 1em;
	padding-right: 70px;
	height: 80px;
	background-color: rgba(255, 255, 255, 0.9);
	display: flex;
	justify-content: space-between;
	align-items: center;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1000;
}

.top-logo {
	display: flex;
	align-items: center;
}

.top-logo img {
	width: 18em;
}

.h_menu {
	margin: 0 auto;
	flex-grow: 2;
}

.h_menu ul {
	display: flex;
	justify-content: center;
	z-index: 1000;
}

.h_menu ul li {
	border-right: 1px solid #aaa;
	text-align: center;
}

.h_menu ul li:last-child {
	border-right: none;
}

.h_menu ul li a {
	border: none;
	padding: 0.5em 1em;
	color: #121212;
}

.h_menu ul li a:hover {
	border-bottom: solid 2px #4893ff;
}


.h_btn_area {
	display: flex;
	align-content: center;
	z-index: 1000;
}

.h_btn a {
	padding: 0.5em 1em;
	margin: 5px;
	background-color: #4893ff;
	border-radius: 25px;
	color: #fff;
	border: none;
	white-space: nowrap;
}

.h_btn a:hover {
	padding: 0.5em 1em;
	margin: 5px;
	background-color: #aceffc;
	border-radius: 25px;
	color: #1e6ac6;
	border: none;
}

@media (max-width: 1300px) {
	.h_menu {
		display: none;
	}
}

@media (max-width: 820px) {
	.h_btn_area {
		display: none;
	}
}


/*ヘッダーイメージ*/
.index-header {
	position: relative;
	width: 100%;
	height: 85vh;
	margin: 0;
	padding: 0;
}

.scroll_btn {
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}

.scroll_btn a {
	display: block;
	filter: drop-shadow(1px 1px 1px #ddd);
	border: none;
	opacity: 0.7;
}

.scroll_btn a:hover {
	opacity: 0.5;
}

@media (max-width: 820px) {}

@media (max-width: 540px) {
	.scroll_btn {
		width: 25%;
		position: absolute;
		bottom: 0;
		left: 50%;
		transform: translateX(-50%);
	}

	.scroll_btn img {
		width: 100%;
	}
}




/*index_contents*/

.index_contents {
	width: 100%;
	background: #fff;
	margin: 0 auto;
	position: relative;
}

.index_contents h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: 800;
	text-align: left;
	padding-bottom: 1em;
	line-height: 1.6;
	color: #1e6ac6;
}

.index_contents h2 span {
	display: inline-block;
}



@media (max-width: 820px) {
	.index_contents {
		width: 100%;
		max-width: inherit;
		min-width: inherit;
	}

}


/*TOPICS*/
/*------表示コンテンツ３件以下の時、スライドなし横並び------*/
.topics-kotei {}

.topics-kotei li {
	width: 30%;
	margin: 3px;
}

.topics-kotei li img {
	width: 100%;
}

.caption {
	margin-top: 0;
	padding-top: 0;
	margin-bottom: 10px;
}

@media (max-width: 540px) {
	.topics-kotei li {
		width: 100%;
		margin: 2px;
		padding-bottom: 15px;
	}
}

/*==================================================
スライダーのためのcss
===================================*/
.topics-slider {
	/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 94%;
	margin: 0 auto;
}

.topics-slider img {
	/* height: auto; */
	/*スライダー内の画像を60vwにしてレスポンシブ化*/
	object-fit: cover;
}

.topics-slider .slick-slide {
	transform: scale(0.8);
	/*左右の画像のサイズを80%に*/
	transition: all .5s;
	/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;
	/*透過50%*/
}

.topics-slider .slick-slide.slick-center {
	transform: scale(1);
	/*中央の画像のサイズだけ等倍に*/
	opacity: 1;
	/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
	position: absolute;
	/*絶対配置にする*/
	top: 42%;
	cursor: pointer;
	/*マウスカーソルを指マークに*/
	outline: none;
	/*クリックをしたら出てくる枠線を消す*/
	border-top: 2px solid #666;
	/*矢印の色*/
	border-right: 2px solid #666;
	/*矢印の色*/
	height: 15px;
	width: 15px;
}

.slick-prev {
	/*戻る矢印の位置と形状*/
	left: -1.5%;
	transform: rotate(-135deg);
}

.slick-next {
	/*次へ矢印の位置と形状*/
	right: -1.5%;
	transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	text-align: center;
	margin: 20px 0 0 0;
}

.slick-dots li {
	display: inline-block;
	margin: 0 5px;
}

.slick-dots button {
	color: transparent;
	outline: none;
	width: 5px;
	/*ドットボタンのサイズ*/
	height: 5px;
	/*ドットボタンのサイズ*/
	display: block;
	border-radius: 50%;
	background: #ccc;
	/*ドットボタンの色*/
	border: none;
}

.slick-dots .slick-active button {
	background: #4893ff;
	/*ドットボタンの現在地表示の色*/
}

@media (max-width: 540px) {
	.topics-slider img {
		/* width: 80vw; */
		/*スライダー内の画像を60vwにしてレスポンシブ化*/
		/* height: 50vw; */
		height: 35vw;
		object-fit: cover;
	}

	.slick-prev,
	.slick-next {
		position: absolute;
		/*絶対配置にする*/
		top: 30%;
		cursor: pointer;
		/*マウスカーソルを指マークに*/
		outline: none;
		/*クリックをしたら出てくる枠線を消す*/
		border-top: 2px solid #666;
		/*矢印の色*/
		border-right: 2px solid #666;
		/*矢印の色*/
		height: 15px;
		width: 15px;
	}

}

/*=============
アニメーションcss
===============*/
.animation {
	opacity: 0;
	visibility: hidden;
	transition: 3s;
	transform: translateY(80px);
	animation-delay: 5s;
	animation-duration: 8s;
}

/*アニメーション要素までスクロールした時のスタイル*/
.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}


/*コンセプトセクション*/

.concept {}

.concept p {
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	line-height: 2;
}

.concept p span {
	display: inline-block;
}

.concept_bg {
	position: absolute;
	width: 100%;
	top: clamp(-50px, 2.5vw, -100px; );
	object-fit: cover;
	object-position: right top;
}

.concept_bg img {
	width: 100%;
}

.catch {
	margin-right: 3rem;
}


.concept .btn_base {
	width: 280px;
	margin: 0 auto;
}

.concept_text {
	color: #fff;
	padding: 15px;
	flex: 1;
	margin: 30px 10px;
}

.torikumi p {
	margin: 50px 0;
	text-shadow: 2px 2px 2px #fff, -2px -2px 2px #fff,
		-2px 2px 2px #fff, 2px -2px 2px #fff,
		2px 0 2px #fff, -2px 0 2px #fff,
		0 2px 2px #fff, 0 -2px 2px #fff;
}

.torikumi02 {
	margin-top: 80px;
	display: block;
}

@media (max-width: 540px) {
	.catch {
		margin-right: 0rem;
	}

	.catch img {
		width: 120px;
	}

	.concept_bg {
		position: absolute;
		width: 100%;
		top: clamp(-50px, 2.5vw, -100px; );
		object-fit: contain;
		object-position: right top;
	}

}



/*ポイント*/

h3.icon_point {
	font-size: clamp(2rem, 2.5vw, 4rem);
	color: #1e6ac6;
	font-weight: bolder;
	line-height: 1.6;
	position: relative;
	padding: 2rem 0 1rem 3rem;
	width: 100%;
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

h3.sub_lead {
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	color: #666;
	text-align: center;
	line-height: 1.6;
}

.point_text {
	font-size: clamp(1rem, 2.5vw, 1.5rem);
	color: #666;
	text-align: center;
	margin: 7rem 0 3rem;
	font-weight: bold;
}

.icon_use {
	display: flex;
	justify-content: center;
}

.icon_use>div {
	width: 28%;
	max-width: 240px;
	margin: 2rem 2%;
}

.icon_use>div img {
	width: 100%;
}

.point .btn_base a {
	width: 50%;
	max-width: 360px;
}

.links {

	margin: 3rem auto;
}

.links a {
	/* width: 33vw; */
	flex: 1;
	height: 15vw;
	border: none;
}

.links .panel_btn {
	width: 100%;
	height: 100%;
	background-size: cover;
	display: flex;
	justify-content: center;
	align-items: center;
}

.links .panel_btn:hover {
	opacity: 0.7;
}

.link-text {
	font-size: clamp(1.3rem, 2.5vw, 1.5rem);
	color: #333;
	font-weight: bold;
	text-shadow: 4px 4px 4px #fff, -4px -4px 4px #fff,
		-4px 4px 4px #fff, 4px -4px 4px #fff,
		4px 0 4px #fff, -4px 0 4px #fff,
		0 4px 4px #fff, 0 -4px 4px #fff;

}

.bg-contact {
	background-image: url(../img/bg_contact.jpg);
}

.bg-glasses {
	background-image: url(../img/bg_glasses.jpg);
}

.bg-hearing {
	background-image: url(../img/bg_hearing.jpg);
}

.bg-ec {
	background-image: url(../img/bg_ec.jpg);
}

@media (max-width: 540px) {

	h3.icon_point {
		padding: 1rem 0;
	}

	.point_text {
		margin: 3rem 0 1.5rem;
	}

	.point .btn_base a {
		width: 100%;
		max-width: 360px;
	}

	.links a {
		display: block;
		width: 100%;
		height: 200px;
		border: none;
	}

}


/*お知らせ*/



.info ul {
	margin: 0 auto;
	border-top: solid thin #aaa;
	border-bottom: solid thin #aaa;
	padding: 1em 0;

}

.info ul li {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 0;
	font-size: clamp(1rem, 2.5vw, 1.1rem);
}

.info ul li a {
	border: none;
}

.info time {
	white-space: nowrap;
	padding: 0.5em;
	width: 20%;
}

.info .info-text {
	padding: 0.5em;
	width: 70%;
}

a .more_btn {
	padding: 0em 1em 0.2em;
	background-color: #4893ff;
	border: #4893ff thin solid;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
}

a .more_btn:hover {
	background-color: #fff;
	border: #4893ff thin solid;
	color: #4893ff;
}

.info .btn_base {
	width: 80%;
	max-width: 360px;
	margin: 2rem 0;
}

@media (max-width: 820px) {
	.info ul {
		width: 90vw;
	}
}

@media (max-width: 540px) {
	.info ul li {
		display: inherit;
	}

	.info time {
		padding: 1em 0.5em;
		width: 100%;
	}

	.info .info-text {
		padding: 0em 0.5em;
		width: 100%;
	}

	a .more_btn {
		width: 80px;
		float: right;
	}

}

/*footer_global パネル状のリンクボタン*/
.footer_global {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.panel_cover {
	width: 100%;
	height: 100%;
	padding: 4px;
}

.panel {
	width: 100%;
	height: 100%;
	border: 1px solid #1e6ac6;
	display: flex;
	align-items: center;
	padding: 10px;
	font-size: clamp(0.9rem, 2.5vw, 1.2rem);
}

.panel-text {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.panel-text img {
	width: 100%;
	max-width: 50px;
	display: block;
	margin-right: 2rem;
}

.panel-text span {
	display: block;
	padding: 5px 0;
}

.footer_global a {
	display: block;
	width: 48%;
	height: auto;
	margin: 0.5%;
	border: none;
}

.footer_global a:hover {
	opacity: 0.8;
	background-color: #f2fdff;
	color: #1e6ac6;
}

@media (max-width: 540px) {
	.footer_global a {
		width: 48%;
		margin: 0.5%;
		border: none;
	}

	.panel {
		display: block;
		padding: 10px 5px;
	}

	.panel-text {
		display: block;
		text-align: center;
	}

	.panel-text img {
		width: 100%;
		max-width: 50px;
		display: block;
		margin: 0 auto;
	}

}


/* ==========================================================================
   footer
   ========================================================================== */

footer {
	width: 100%;
	box-sizing: border-box;
	position: relative;
	z-index: 101;
	padding: 40px 0;
	background-color: #1e6ac6;
}

footer .contents {
	width: 1100px;
	padding: 10px;
	margin: 0 auto;
}

footer .add {
	width: 33vw;
	margin-right: 30px;
}

footer h1 {
	text-align: center;
}

footer h1 img {
	width: 100%;
}

footer .sitemap {
	margin: 15px;
	width: 100vw;
	display: flex;
	justify-content: flex-start;
}

footer .sitemap ul {
	flex: 1;
}

footer .sitemap ul li {
	list-style: square;
	color: #fff
}

footer .sitemap ul li a {
	color: #fff;
}

.sub-ul {
	display: flex;
}

.sub-ul span {
	color: #fff;
	margin-right: 2rem;
}

.sns {
	display: flex;
	justify-content: center;
	padding: 10px;
}

.sns a {
	font-size: 24px;
	color: #fff;
	margin: 5px 10px;
	border: none;
}

.sns a:hover {
	color: #fff;
}

.footer-info {
	width: 320px;
}

.copy {
	font-size: 0.7rem;
	color: #fff;
	text-align: center;
	width: 320px;
}

@media (max-width: 820px) {
	footer {}

	footer .contents {
		width: 100%;
		padding: 0px 10px;
		margin: 0 auto;
	}

	footer .sitemap {
		margin: 15px 15px;
	}
}

@media (max-width: 540px) {
	footer {}

	footer .add {
		width: 100vw;
		margin-right: 0px;
	}

	footer .add img {
		width: 80%;
	}

	footer .sitemap {
		display: inherit;
		width: 60%;
		margin: 15px auto;
	}



}

/* ==========================================================================
   second styles
   ========================================================================== */

.second_contents {
	max-width: 1100px;
	width: 100vw;
	background: #fff;
	margin: 0 auto;
	position: relative;

}

.second_contents h2 {
	font-size: clamp(1.5rem, 2.5vw, 2rem);
	font-weight: inherit;
	text-align: center;
	padding-bottom: 1rem;
	line-height: 1.6;
	color: #666;
	margin-bottom: 3rem;
}

.second_contents h2::after {
	content: "";
	display: block;
	width: 50%;
	max-width: 500px;
	border-bottom: thin #666 solid;
	padding-bottom: 1rem;
	margin: 0 auto;
}

.second_contents h3 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: inherit;
	text-align: center;
	padding-bottom: 1rem;
	line-height: 1.6;
	color: #666;
	margin: 3rem 0;
}

.pan {
	background-color: #dfe7ea;
	padding: 5px 15px;
	margin-top: 80px;
	font-size: 0.8rem;
	z-index: 100;
}

.second-header {
	width: 100%;
}

.second-header img {
	width: 100%;
	height: 300px;
	object-fit: cover;
}

@media (max-width: 540px) {
	.second_contents h2 {

		margin-bottom: 1.5rem;
	}

	.second_contents h2::after {
		content: "";
		width: 80%;
	}

	.second_contents h3 {

		margin: 1rem 0;
	}

	.second-header img {
		width: 100%;
		height: 150px;
		object-fit: cover;
	}
}

/* ==========================================================================
   店舗一覧リスト
   ========================================================================== */

.chikubetsu {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
}

.chikubetsu ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
}

.chikubetsu ul li::after {
	content: "/";
	margin: 0 1em;
}

.chikubetsu ul li:last-child::after {
	content: " ";
	margin: 0;
}

.card {
	width: 100%;
	margin: 2rem 0;
	padding: 1.5rem;
	background: #fff;
	display: flex;
	justify-content: space-between;
	border-bottom: 2px dotted #1e6ac6;
}

.card-img {
	width: 30%;
	height: 260px;
}

.card-img a {
	border: none;
}

.card-img img {
	width: 100%;
	height: 260px;
	object-fit: cover;
	overflow: hidden;
}

.card-text {
	width: 70%;
	padding: 0 0.5rem;
}

.card-text h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.5rem);
	font-weight: inherit;
	border-bottom: dashed thin #666;
	padding-bottom: 0.5rem;
	margin-bottom: 1rem;
	padding-left: 1rem;
	color: #666;
}

.card-text-contents {
	font-size: clamp(0.9rem, 2.5vw, 1rem);
	padding: 0 1rem;
}

.card-text-contents address {
	display: block;
	font-style: normal;
	margin-left: 1.8rem;
	text-indent: -1.8rem;
}

.card-text-contents address::before {
	content: '\f3c5';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #1e6ac6;
	font-size: 1.3rem;
	margin-right: 0.5rem;
	display: inline;
}

.shop_tel {
	display: block;
	font-style: normal;
}

.shop_tel::before {
	content: '\f095';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #1e6ac6;
	font-size: 1.3rem;
	margin-right: 0.5rem;
}

.shop_map {
	width: 40%;
	height: 200px;
}


@media (max-width: 1100px) {
	.card {}
}

@media (max-width: 540px) {
	.card {
		padding: 1.5rem 0;
		display: inherit;

	}

	.card-img {
		width: 100%;
		height: 220px;
	}

	.card-img img {
		width: 100%;
		height: 220px;
		object-fit: cover;
		overflow: hidden;
	}

	.card-text {
		width: 100%;
		padding: 0.5rem 0;
	}

	.card-text-contents {
		padding: 0 1rem 1rem;
	}

	.shop_map {
		width: 100%;
		height: 200px;
	}


}



/* ==========================================================================
   問い合わせ
   ========================================================================== */
.toiawase {
	margin-left: 5px;
	font-size: 1rem;
	max-width: 800px;
	margin: 0 auto 40px;
}

.toiawase-row {
	margin: 10px;
	width: 95%;
}

.toiawase-row p {
	margin: 0;
}

.toiawase-koumoku {
	padding: 5px 0;
}

.toiawase-input {
	padding: 5px;
	background-color: #f6f6f6;
	width: 100%;
}

input.toiawase-input {
	height: 2rem;
	font-size: 1rem;
	width: 100%;
}

input.toiawase-input:focus {
	outline: none;
	border-bottom: 1px solid #4893ff;
	transition: .3s
}

.w_long {
	width: 90%;
}

.w_short {
	width: 50%;
}

textarea.toiawase-input {
	width: 100%;
	font-size: 1rem;
	height: 8rem;
	padding: 5px;
}

textarea.toiawase-input:focus {
	outline: none;
	border-bottom: 1px solid #4893ff;
	transition: .3s
}



@media (max-width: 540px) {
	.toiawase-row {
		display: inherit;
	}

	.toiawase-koumoku {
		width: 100%;
	}

	.toiawase-input {
		width: 100%;
	}

	.w_long,
	.w_short {
		width: 98%;
	}

	.toiawase_btn_w a {
		width: 98%;
	}
}

/* ==========================================================================
会社概要・サービス概要

========================================================================== */

.about {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
}

.about table {
	width: 98%;
	margin: 0 auto;
	border-collapse: collapse
}

.about table th,
.about table td {
	border: thin #666 solid;
	padding: 1rem;
}

.about .map {
	width: 98%;
	margin: 0 auto;
	border: #efefef thin solid;
}

/* ==========================================================================
   取り組み（concept）
   ========================================================================== */

.concept-page div {
	flex: 1 color:#666;
	width: 50%;
}

.concept-page div h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	text-align: left;
	margin-left: 2rem;
	font-weight: inherit;
	border-bottom: 1px #1e6ac6 solid;
}



.concept-page-img {
	width: 100%;
	height: 500px;
}

.concept-page-img img {
	width: 100%;
	height: 500px;
	object-fit: cover;
}

.concept-page-text {
	font-size: clamp(0.9rem, 2.5vw, 1rem);
	padding-top: 30px;
	line-height: 2;
}

.concept-page-text p {
	margin-left: 2rem;
}

.concept-page-text ul {
	margin-left: 2rem;
}

.concept-page-text li {
	padding: 0.5rem 0;
	margin-left: 2rem;
	text-indent: -2rem;
}

.concept-page-text li:before {
	content: '\f219';
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #1e6ac6;
	margin-right: 1rem;
}


.order1 {
	order: 1;
}

.order2 {
	order: 2;
}

.concept-page-text .btn_base a {
	width: 80%;
	max-width: 280px;
}

/*イラスト付きポイント*/
.concept-point {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.concept-point>div {
	flex: 1;
	margin: 1px;
	width: 24%;
	padding: 0.5rem;
	border-right: thin #ccc solid;
}

.concept-point>div:last-child {
	border-right: none;
}

.concept-point-title img {
	width: 100%;
}

.concept-point-illust {
	width: 80%;
	margin: 0 auto;
}

.concept-point-illust img {
	width: 100%;
	height: 200px;
	object-fit: contain;
}

@media (max-width: 540px) {
	.concept-page div {
		flex: initial;
		width: 100%;
	}

	.concept-page div h4 {
		margin-left: 0rem;
	}

	.concept-page-text p {
		margin-left: 0rem;
	}

	.concept-page-text ul {
		margin-left: 0rem;
	}

	.concept-page-text li {
		padding: 0.5rem 0;
		margin-left: 1.5rem;
		text-indent: -1.5rem;
	}

	.concept-page-text li:before {
		margin-right: 0.5rem;
	}

	.concept-page-img {
		height: 250px;
	}

	.concept-page-img img {
		height: 250px;
	}

	.concept-point>div {
		flex: initial;
		margin: 1px;
		width: 48%;
		padding: 0.5rem;
		border-right: thin #ccc solid;
		border-bottom: thin #ccc solid;
	}

	.concept-point>div:last-child {
		border-right: thin #ccc solid;
	}

	.concept-point-illust img {
		width: 100%;
		height: 150px;
		object-fit: contain;
	}

}


/*=============================================
医療連携と技術（medical)
===============================================*/

.medical-page {
	width: 100%;
	margin: 0 auto;
	max-width: 630px;
	height: auto;
	margin-bottom: 2rem;
	display: block;
}

.medical-page div {
	float: left;
}


.medical-page-text-name h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	text-align: left;
	margin-left: 2rem;
	font-weight: inherit;
	border-bottom: 1px #1e6ac6 solid;
	line-height: 2;

}

.medical-page-text-name h4 span {
	display: inline-block;
}

.medical-page-img {
	width: 300px;
	height: 300px;
}

.medical-page-img img {
	width: 100%;
	height: 300px;
	object-fit: cover;
	object-position: center top;
}


.medical-page-text {
	font-size: clamp(0.9rem, 2.5vw, 1rem);
	line-height: 2;
}

.medical-page::after {
	clear: both;
}

.medical-page-text p {
	margin-left: 2rem;
	box-sizing: border-box;
	text-align: justify;

}

.medical-panel {
	display: flex;
	justify-content: center;
	align-items: center;
}

.medical-panel .medical-contents {
	display: block;
	justify-content: center;
	align-items: center;
}

.medical-panel>div img {
	width: 100%;
}

@media (max-width: 540px) {
	.medical-page {}

	.medical-page-text-name {
		width: 48%;
		height: 180px;
		line-height: 180px;

	}

	.medical-page-text-name h4 {
		margin-left: 0.5rem;
	}

	.medical-page-img {
		width: 50%;
		height: 180px;
	}

	.medical-page-img img {
		height: 180px;
	}

	.medical-page-text p {
		width: 95%;
		margin-left: 0.5rem;
	}

}

/* ==========================================================================
   記事一覧
   ========================================================================== */

.list-post {
	width: 100%;
	max-width: 800px;
	margin: 0 auto 40px;
}

.list-post a {
	display: flex;
	justify-content: flex-start;
	padding: 5px 0;
	color: #333;
	border: none;
}

.list-post a:hover {
	color: #fa6d2f;
}

.list-post li:first-child {
	border-top: solid thin #015401;
	border-bottom: solid thin #015401;
}

.list-post li {
	border-bottom: solid thin #015401;
}

.thumb {
	width: 20%;
	max-width: 200px;
}

.thumb img {
	width: 100%;
}

.post-text-cover {
	padding: 15px;
}

@media (max-width: 540px) {
	.thumb {
		width: 75px;
		!important max-width: inherit;
	}

	.post-text-cover {
		padding: 5px 10px;
		width: calc(100% - 75px);
	}
}

/* ==========================================================================
   メガネ・コンタクト
   ========================================================================== */

.megane-img {
	width: 100%;
	max-width: 850px;
	margin: 0 auto;
}

.megane-img img {
	width: 100%;
}

.fitting {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.fitting .fitting-point {
	border: #f9ede4 1px solid;
	padding: 15px;
	background-position: 1rem 1rem;
	background-repeat: no-repeat;
	margin: 2px;
	width: 49.5%;
}

.fitting .fitting-point.w100 {
	width: 100%;
}

.fitting .fitting-point.bg1 {
	background-image: url(../img/1.png);
}

.fitting .fitting-point.bg2 {
	background-image: url(../img/2.png);
}

.fitting .fitting-point.bg3 {
	background-image: url(../img/3.png);
}

.fitting .fitting-point.bg4 {
	background-image: url(../img/4.png);
}

.fitting .fitting-point.bg5 {
	background-image: url(../img/5.png);
}

.fitting .fitting-point.bg6 {
	background-image: url(../img/6.png);
}

.fitting .fitting-point h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	text-align: left;
	font-weight: inherit;
	margin: 20px 0 20px 20px;
}

.hosyo_kakomi {
	padding: 2rem;
	border: #666 thin dashed;
}

.hosyo_kakomi h4 {
	font-size: clamp(1.2rem, 2.5vw, 1.6rem);
	font-weight: inherit;
	text-align: center;
	color: #666;
	margin-bottom: clamp(1.2rem, 2.5vw, 1.6rem);
}

.hosyo_cover {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.hosyo_cover .hosyo_content {
	margin: 2px;
	width: 49.5%;
	padding: 1rem;
}

.hosyo_cover .hosyo_content h5 {
	font-size: clamp(1.1rem, 2.5vw, 1.4rem);
	text-align: center;
	background-color: #1e6ac6;
	color: #fff;
	padding: 0.5rem 0;
	font-weight: inherit;
}

.hosyo_joken {
	font-size: clamp(0.8rem, 2.5vw, 0.9rem);
}

.hosyo_joken span {
	display: inline-block;
}

.hosyo_hosoku {
	font-size: clamp(0.7rem, 2.5vw, 0.8rem);
	line-height: 1.4;
}



@media (max-width: 540px) {
	.fitting .fitting-point {
		width: 98%;
	}

	.hosyo_kakomi {
		padding: 0.5rem;
	}

	.hosyo_cover .hosyo_content {
		margin: 2px;
		width: 98%;
		padding: 0.5rem;
	}

}




/* ==========================================================================
   コンタクト　単体ページ
   ========================================================================== */
.contact-intro {
	max-width: 800px;
	margin: 0 auto;
}

.contact-merit {
	position: relative;
	width: 100%;
	height: auto;
	/* aspect-ratio: 1/1; */
	background-color: #4a89c2;
	overflow: hidden;
	color: #fff;
}

.contact-merit::before {
	content: "";
	position: absolute;
	width: 200%;
	aspect-ratio: 1/1;
	background-color: white;
	top: 0%;
	left: -50%;
	border-radius: 50% / 0 0 50% 50%;
	transform: translateY(-90%);
	/* 親要素の上から55%だけ重ねる */
}

.contact-merit h3 {
	font-weight: bold;
	margin-top: 25%;
}

.contact-merit-grid {
	max-width: 800px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	/* アイテムが200px以上の幅で並び、空きスペースがあれば自動で次の行に折り返す */
	gap: 20px;
	padding: 10px;
}

.grid-item {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.grid-item h4 {
	text-align: center;
}

.grid-item img {
	width: 100%;
	max-width: 250px;
}

/* ==========================================================================
   補聴器
   ========================================================================== */
.nagare-list {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nagare-num {
	position: relative;
	margin-left: 30px;
	border-left: dotted thin #4893ff;
	width: 80px;
}

.num {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.num img {
	width: 100px;
	object-fit: contain;
}

.dot-line {
	position: absolute;
	top: 75%;
	left: 0%;
	width: 1px;
	height: 120px;
	border-left: dotted #4893ff 2px;
	border-radius: 2px;
}

.nagare-content {
	border-bottom: thin #666 solid;
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 80px);
	padding: 1rem 0;
}

.nagare-content.first {
	border-top: thin #666 solid;
	border-bottom: thin #666 solid;
}

.nagare-content h4 {
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	margin-left: 20px;
}

.nagare-content img {
	height: 120px;
	object-fit: contain;
}

.kashidashi {
	border: 2px #1e6ac6 solid;
	border-radius: 0 25px 0 25px;
	box-shadow: 10px 10px 0px 0px #1e6ac6;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	margin: 2rem auto;
}

.kashidashi>div {
	width: 50%;
}

.kashidashi-lead {
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: bold;
	color: #1e6ac6;
	text-align: center;
}

.kashidashi>div img {
	width: 100%;
}

.kashidashi-text {
	padding: 30px;
	line-height: 1.8;
}

.kashidashi-text span {
	font-size: clamp(1.1rem, 2.5vw, 1.1rem);
	font-weight: bold;
}

@media (max-width: 540px) {
	.nagare-content {
		display: block;
		width: calc(100% - 40px);
	}

	.num {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(-50%, -50%);
	}

	.nagare-num {
		width: 40px;
	}

	.num img {
		width: 80px;
		object-fit: contain;
	}

	.dot-line {
		position: absolute;
		top: 75%;
		left: 0%;
		width: 1px;
		height: 240px;
		border-left: dotted #4893ff 2px;
		border-radius: 2px;
	}

	.kashidashi {
		display: block;
	}

	.kashidashi>div {
		width: 100%;
	}

	.kashidashi-text {
		padding: 5px;
		line-height: 1.8;
	}

}

/* ==========================================================================
   補聴器-test用
   ========================================================================== */

.hochouki h4 {
	color: navy;
	font-size: 1.3rem;
	margin: 2rem 0 1rem 0;
}

.hochoki-nagare {
	margin: 2em 0;
}

.nagare-list2024 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nagare-num2024 {
	position: relative;
	margin-left: 30px;
	border-left: dotted thin #4893ff;
	width: 80px;
}

.num {
	position: absolute;
	top: 50%;
	left: 0;
	transform: translate(-50%, -50%);
}

.num img {
	width: 100px;
	object-fit: contain;
	background-color: #fff;
	border-radius: 50% 50%;
}

.dot-line {
	position: absolute;
	top: 75%;
	left: 0%;
	width: 1px;
	height: 120px;
	border-left: dotted #4893ff 2px;
	border-radius: 2px;
}

.nagare-content2024 {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: calc(100% - 80px);
	padding: 1rem 0;
}

.nagare-list2024:nth-child(odd) {
	background-color: #d7f2f5;
}

.nagare-content2024 h4 {
	font-size: clamp(1.1rem, 2.5vw, 1.3rem);
	margin-left: 0px;
	margin-top: 20px;
	color: #327aab;
	font-weight: bold;
}

.nagare-content2024 img {
	height: 200px;
	object-fit: contain;
}

.kashidashi {
	border: 2px #1e6ac6 solid;
	border-radius: 0 25px 0 25px;
	box-shadow: 10px 10px 0px 0px #1e6ac6;
	display: flex;
	justify-content: space-between;
	padding: 15px;
	margin: 2rem auto;
}

.kashidashi>div {
	width: 50%;
}

.kashidashi-lead {
	font-size: clamp(1.2rem, 2.5vw, 1.4rem);
	font-weight: bold;
	color: #1e6ac6;
	text-align: center;
}

.kashidashi>div img {
	width: 100%;
}

.kashidashi-text {
	padding: 30px;
	line-height: 1.8;
}

.kashidashi-text span {
	font-size: clamp(1.1rem, 2.5vw, 1.1rem);
	font-weight: bold;
}

.kikoe-huan-kakomi {
	position: relative;
	margin: 6em 0 4em;
	padding: 1em 1em;
	border: solid 2px navy;
	border-radius: 8px;
}

.kikoe-huan-kakomi .huan-title {
	position: absolute;
	display: inline-block;
	top: -13px;
	left: 10px;
	padding: 0 9px;
	line-height: 1;
	font-size: 19px;
	background: #FFF;
	color: navy;
	font-weight: bold;
}

.kikoe-huan {
	display: flex;
	flex-wrap: wrap;
}

.kikoe-huan div span {
	display: inline-block;
}

.kikoe-huan-box {
	display: flex;
	align-items: center;
	grid-gap: 0 .7em;
	margin: 0 auto;
	padding: 1em;
	border-radius: 5px;
	background-color: #f0ebff;
	color: #6673d6;
}

.kikoe-huan-box::before {
	width: 16px;
	height: 8px;
	border-bottom: 3px solid #6673d6;
	border-left: 3px solid #6673d6;
	transform: rotate(-45deg) translate(2.5px, -2.5px);
	content: '';
}

.kikoe-huan-box p {
	margin: 0;
	padding: 0 0 0 .7em;
	border-left: 1px dotted #6673d6;
}

.hochouki h5 {
	position: relative;
	text-align: left;
}

.hochouki h5 span {
	position: relative;
	font-family: serif;
	font-size: 1.5rem;
	padding: 0 0.5rem;
	background: #fff;
}


.kakomi {
	float: left;
	width: 100%;
	height: auto;
	padding: 2em;
	margin: 2em 0;
	/*background: #d6ebff;
    box-shadow: 0px 0px 0px 10px #d6ebff;*/
	border: thin solid white;
	font-size: 16px;
	line-height: 2;
	background-image: url("https://meganecenter.co.jp/corporate/wp-content/uploads/2024/12/img_concept-2.jpg");
	background-repeat: no-repeat;
	background-size: contain;
}

.kakomi-contents {
	float: right;
	width: 60%;
	max-width: 550px;
	padding: 1rem;
	background-color: rgba(255, 255, 255, 0.7);
	border-radius: 20px;
}

span.marker {
	display: inline;
	background: linear-gradient(transparent 70%, #80f0ff 70%);
}

@media (max-width: 840px) {
	.kakomi {
		float: inherit;
		clear: both;
		background-image: url("https://meganecenter.co.jp/corporate/wp-content/uploads/2024/12/img_concept_sp.jpg");
		background-repeat: no-repeat;
		background-size: contain;
	}

	.kakomi-contents {
		float: inherit;
		clear: both;
		width: 100%;
		max-width: inherit;
		margin-top: 250px;
	}
}

@media (max-width: 540px) {
	.kikoe-huan div {
		text-align: center;
	}

	.nagare-content2024 {
		display: block;
		width: calc(100% - 40px);
		padding-left: 1rem;
	}

	.nagare-content2024 img {
		height: auto;
		width: 100%;
	}

	.num {
		position: absolute;
		top: 0;
		left: 0;
		transform: translate(-50%, -50%);
	}

	.nagare-num2024 {
		width: 40px;
	}

	.num img {
		width: 80px;
		object-fit: contain;
	}

	.dot-line {
		position: absolute;
		top: 75%;
		left: 0%;
		width: 1px;
		height: 240px;
		border-left: dotted #4893ff 2px;
		border-radius: 2px;
	}

	.kashidashi {
		display: block;
	}

	.kashidashi>div {
		width: 100%;
	}

	.kashidashi-text {
		padding: 5px;
		line-height: 1.8;
	}

	.kikoe-huan div {
		flex: inherit;
		width: 48%;
		border: #a0b0db thin dashed;
		margin: 3px;
	}

	.kakomi {
		float: inherit;
		clear: both;
		padding: 0.5rem;
		background-image: url("https://meganecenter.co.jp/corporate/wp-content/uploads/2024/12/img_concept_sp.jpg");
		background-repeat: no-repeat;
		background-size: contain;
		background-position: 0 40px;
	}

	.kakomi-contents {
		float: inherit;
		clear: both;
		width: 100%;
		max-width: inherit;
		margin-top: 150px;
		padding: 0.5rem;
	}
}

/* ==========================================================================
   topmessage
   ========================================================================== */


.topmessage h2 {
	font-size: clamp(2rem, 2.5vw, 3rem);
	font-weight: 800;
	text-align: center;
	padding: 2em 0;
	line-height: 3.5rem;
	letter-spacing: -0.5px;
}

@media (max-width: 820px) {

	.topmessage h2 {
		text-align: center;
		line-height: 2.5rem;
	}

}

.post-image {
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}

.post-image img {
	width: 100%;
}

/*メーカー製品ピックアップのエリア（index）*/

.maker {
	width: 100%;
}

.seiko {
	background-color: #efeff4;
	width: 100%;
	padding: 2rem;
}

.charmant {
	background-color: #e2eff4;
	width: 100%;
	padding: 2rem;
}

.maruman {
	background-color: #efefef;
	width: 100%;
	padding: 2rem;
}

.maker h3 img {
	width: 250px;
}

.maker p {
	line-height: 1.8;
	font-size: clamp(1rem, 2.5vw, 1.1rem);
	padding-left: 2rem;
}

.seiko>div img {
	max-height: 400px;
}

/*==================================================
スライダーのためのcss
===================================*/
.maker-slider {
	/*横幅94%で左右に余白を持たせて中央寄せ*/
	width: 80%;
	margin: 0.5rem auto;
}

.maker-slider img {
	width: 100%;
	/*スライダー内の画像を60vwにしてレスポンシブ化*/
	object-fit: contain;
}

.maker-slider caption {
	text-align: center;
}

@media (max-width: 540px) {
	.maker h3 img {
		width: 150px;
	}

	.seiko {
		padding: 2rem 1rem;
	}

	.charmant {
		padding: 2rem 1rem;
	}

	.maruman {
		padding: 2rem 1rem;
	}

	.maker p {
		line-height: 1.8;
		font-size: clamp(0.9rem, 2.5vw, 1.1rem);
		padding-left: 0rem;
	}

	.maker-slider {
		/*横幅94%で左右に余白を持たせて中央寄せ*/
		width: 100%;
		margin: 0.5rem auto;
	}

	.maker-slider img {
		width: 80vw;
		/*スライダー内の画像を60vwにしてレスポンシブ化*/
		height: auto;
		object-fit: contain;
	}

}


/*====================================
instagram/lineアイコンの設定
===================================*/
.insta_btn {
	display: inline-block;
	text-align: center;
	/*中央揃え*/
	color: #2e6ca5;
	/*文字色*/
	font-size: 20px;
	/*文字サイズ*/
	text-decoration: none;
	/*下線消す*/
}

.insta_btn .insta {
	/*アイコンの背景*/
	position: relative;
	/*相対配置*/
	display: inline-block;
	width: 50px;
	/*幅*/
	height: 50px;
	/*高さ*/
	background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	/*グラデーション①*/
	overflow: hidden;
	/*はみ出た部分を隠す*/
	border-radius: 13px;
	/*角丸に*/

}

.insta_btn .insta:before {
	/*グラデーションを重ねるため*/
	content: '';
	position: absolute;
	/*絶対配置*/
	top: 23px;
	/*ずらす*/
	left: -18px;
	/*ずらす*/
	width: 60px;
	/*グラデーションカバーの幅*/
	height: 60px;
	/*グラデーションカバーの高さ*/
	background: -webkit-radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
	background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
	/*グラデーション②*/
}

.insta_btn .fa-instagram {
	/*アイコン*/
	color: #FFF;
	/*白に*/
	position: relative;
	/*z-indexを使うため*/
	z-index: 2;
	/*グラデーションより前に*/
	font-size: 35px;
	/*アイコンサイズ*/
	line-height: 50px;
	/*高さと合わせる*/
}


.line_btn {
	display: inline-block;
	text-align: center;
	/*中央揃え*/
	font-size: 20px;
	/*文字サイズ*/
	text-decoration: none;
	/*下線消す*/
}

.line_btn .line {
	/*アイコンの背景*/
	position: relative;
	/*相対配置*/
	display: inline-block;
	width: 50px;
	/*幅*/
	height: 50px;
	/*高さ*/
	background: #fff no-repeat;
	overflow: hidden;
	/*はみ出た部分を隠す*/
	border-radius: 13px;
	/*角丸に*/
}

.line_btn .fa-line {
	/*アイコン*/
	color: #00B900;
	/*白に*/
	position: relative;
	/*z-indexを使うため*/
	z-index: 2;
	/*グラデーションより前に*/
	font-size: 50px;
	/*アイコンサイズ*/
	line-height: 50px;
	/*高さと合わせる*/
}

/* ==========================================================================
   ページトップへ戻る
   ========================================================================== */

#page-top a {
	position: fixed;
	right: 20px;
	bottom: 20px;
	width: 60px;
	height: 60px;
	color: #aceffc;
	padding: 0px;
	z-index: 20000;
	font-size: 4rem;
	font-weight: lighter;
	text-decoration: none;
	display: flex;
	align-items: center;
	justify-content: center;
	border: none;
	filter: drop-shadow(1px 1px 1px #333; )
}

#page-top a:hover {
	color: #4893ff;
}



/* ==========================================================================
   投稿ページ
   ========================================================================== */

@media (max-width: 820px) {
	.p-pc-only {
		display: none !important;
	}
}

@media (min-width: 821px) {
	.p-sp-only {
		display: none !important;
	}
}


.campaign {
	width: 100%;
	max-width: 1000px;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.campaign img {
	width: 100%;
}

.img-container {
	width: 100%;
	position: relative;
	display: block;
}

.img-container img {
	position: absolute;
	top: 0;
	left: 0;
	transition: opacity 0.3s ease;
}

.img-hover {
	opacity: 0;
}

.img-container:hover .img-hover {
	opacity: 1;
}

.img-container:hover .img-default {
	opacity: 0;
}