@charset "utf-8";
/* CSS Document */
/* ------------------------------------------------------------------------ */

/*  Reset

/* ------------------------------------------------------------------------ */

html {
	overflow-y	: scroll;
	height		: 100%;
	font-size	: 62.5%;
	-webkit-text-size-adjust: 100%;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
pre,form,fieldset,p,blockquote {
	margin 	: 0;
	padding : 0;
}

fieldset {
	display	: inline;
}

address,caption,cite,code,dfn,em,strong,th,var {
	font-style : normal;
}

body/**/table {
	line-height	: 1.5;
}

q:before,
q:after {
	content : '';
}

object,embed {
	vertical-align : top;
}

hr,legend	{
	display : none;
}

h1,h2,h3,h4,h5,h6 {
	font-size : 100%;
}

img,abbr,acronym,fieldset {
	border : 0;
}

li {
	list-style-type : none;
}

img[usemap] {
	border		: none;
	height		: auto;
	max-width	: 100%;
	width		: auto;
}

img {
	border		: 0;
	max-width	: 100%;
}

i {
	padding	: 5px 5px 2px 0;
}

p {
	word-break	: break-all;
}

/* Flexible Images */
img{
    max-width	: 100%;
    height		: auto;
    width /***/	: auto;
}

submit	{ -webkit-appearance : none;}

/* ------------------------------------------------------------------------ */

/*  Basic Style

/* ------------------------------------------------------------------------ */

body {
	margin		: 0;
	padding		: 0;
	height		: 100%;
	font-family	: "Noto Sans JP", Meiryo, MS PGothic, arial, sans-serif;
	font-size	: 1.6rem;
	font-size	: 16px;
	line-height	: 1.875;
	color		: #272d30;
	-webkit-text-size-adjust	: 100%;
	font-smoothing	: auto;
}
@media screen and (max-width: 767px){
	body {
		font-size	: 1.4rem;
		font-size	: 14px;
	}
}

body *,
body *:before,
body *:after {
    box-sizing: border-box;
}

#wrap{
	margin		: 0 auto;
	overflow: hidden;
}

body > #wrap { height : auto;}


/* Link
--------------------------------------------------------------------------- */

.opacity a:hover img{
	opacity: 0.85;
}

a:link	{
	text-decoration	: none;
	color			: #2d3133;
}

a:visited	{
	text-decoration	: none;
	color			: #2d3133;
}

a:hover	{
	text-decoration	: underline;
}

.arrow_blue,
.arrow_white{
	position: relative;
}
.arrow_blue::before,
.arrow_white::before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 21px;
	margin: auto 0;
	border-radius: 50%;
	width: 28px;
	height: 28px;
}
.arrow_blue::before {
	background-color: #fff;
}
.arrow_white::before {
	background-color: #00a5c1;
}
.arrow_blue::after,
.arrow_white::after {
	content: "";
	display: inline-block;
	font-size: 14px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	content: "\f054";
	position: absolute;
	top: 0;
	bottom: 0;
	right: 30px;
	margin: auto 0;
	display: flex;
	align-items: center;
}
.arrow_blue::after {
	color: #00a5c1;
}
.arrow_white::after {
	color: #fff;
}


/* ------------------------------------------------------------------------ */

/* Hedaer

/* ------------------------------------------------------------------------ */

header {}

header .header_wrap{
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 17px 0;
}
header .header_wrap .header_logo{
	max-width: 301px;
	width: 100%;
}
header .btn_nav{
	display: none;
}
header .header_wrap .header_wrap_right{
	display: flex;
	justify-content: flex-end;
	align-items: center;
	width: calc((100% - 301px));
}
.tel{
	display: flex;
	align-items: center;
	font-size: 30px;
	font-weight: 500;
	color: #5aa3bf;
	margin-right: 15px;
}
.tel:before{
	content: "";
	display: inline-block;
	font-size: 26px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	content: "\f095";
	color: #5aa3bf;
	margin-right: 5px;
}
header .header_wrap .header_wrap_right .btn{
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 18px;
	line-height: 50px;
	padding: 0;
	max-width: 220px;
	width: 100%;
	text-align: center;
}
header .header_wrap .header_wrap_right .btn:before{
	content: "";
	display: inline-block;
	font-size: 22px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	content: "\f0e0";
	color: #fff;
	margin-right: 8px;
}

header nav{
	padding: 6px 0 0;
}
header nav ul{
	display: flex;
	justify-content: space-between;
}
header nav > ul > li{
	padding: 0 6px 15px;
}
header nav > ul > li > a{
	transition: 0.3s;
}
header nav > ul > li > a:hover{
	text-decoration: none;
	color: #5aa3bf;
}

header nav .btnSP{
	display: none;
}
@media screen and (min-width: 1101px){
	.drop_menu > ul {
		display: block; /* 最初に block にしておく */
		opacity: 0;
		visibility: hidden;
		position: absolute;
		top: 90%;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: max-content;
		transition: opacity 0.3s ease, visibility 0.3s ease;
		z-index: 9999999999;
	}
	.drop_menu {
	position: relative;
	}
	.drop_menu > a:hover + ul,
	.drop_menu:hover > ul {
	opacity: 1;
	visibility: visible;
	}
	.drop_menu > ul li.link_sp {
		display: none;
	}
	.drop_menu > ul li + li {
		border-top: 1px solid #fff;
	}
	.drop_menu > ul li a {
		display: block;
		padding: 8px 12px;
		color: #fff;
		text-align: center;
		background-color: #5aa3bf;
		transition: 0.3s;
	}
	.drop_menu > ul li a:hover{
		text-decoration: none;
		background-color: #7fbcd4;
	}
}

@media screen and (max-width: 1100px){
	header.active .header_wrap{
		position: fixed;
		top: 0;
		background: #fff;
		z-index: 1000;
		width: 100%;
		left: 0;
		right: 0;
		margin: 0 auto;
		padding: 0 20px;
		height: 78px;
	}
	header .header_wrap .header_wrap_right{
		display: none;
	}
	header .btn_nav{
		display: block;
		position: absolute;
		right: 20px;
		width: 60px;
		height: 60px;
		z-index: 3;
		background-color: #00a5c1;
		border-radius: 10px;
		cursor: pointer;
		transition: all 400ms;
		-webkit-transition:all 400ms;
	}

	header .btn_nav span {
		display: inline-block;
		transition: all 0.4s;
		position: absolute;
		left: 0;
		right: 0;
		margin: 0 auto;
		width: 50%;
		height: 2px;
		border-radius: 2px;
		background-color: #fff;
	}
	header .btn_nav p{
		color: #fff;
		font-size: 11px;
		position: absolute;
		bottom: 5px;
		left: 0;
		right: 0;
		margin: 0 auto;
		text-align: center;
	}

	header .btn_nav span:nth-child(1){
		top: 15px;
	}

	header .btn_nav span:nth-child(2){
		top: 23px;
	}

	header .btn_nav span:nth-child(3){
		top: 31px;
	}

	header .btn_nav.active{
	}

	header .btn_nav.active span:nth-child(1){
		top: 18px;
		transform: translateY(6px) rotate(-45deg);
		width: 40%;
	}
	header .btn_nav.active span:nth-child(2){
		opacity: 0;
	}

	header .btn_nav.active span:nth-child(3){
		top: 30px;
		transform: translateY(-6px) rotate(45deg);
		width: 40%;
	}
	header nav{
		position: fixed;
		width: 100%;
		top: 0;
		right: -100%;
		background-color: #EBF6FA;
		height: calc(100% - 78px);
		margin-top: 78px;
		padding: 5px 30px 20px;
		transition: 0.7s;
		z-index: 9999999999;
		opacity: 0;
		overflow-y: scroll;
	}
	header nav.active{
		right: 0;
		opacity: 1;
	}
	header nav ul{
		display: block;
	}
	header nav > ul > li{
		padding: 0;
	}
	header nav ul li a{
		position: relative;
		font-size: 16px;
		height: calc(16px + 36px);
		display: flex;
		align-items: center;
		width: 100%;
		border-bottom: 1px solid #00a5c1;
	}
	header nav ul li a:before{
		content: "";
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto 0;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		background-color: #00a5c1;
	}
	header nav ul li a:after{
		content: "";
		display: inline-block;
		font-size: 14px;
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		color: #fff !important;
		content: "\f054";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 10px;
		margin: auto 0;
		display: flex;
		align-items: center;
	}
	header nav .btnSP{
		display: flex;
		justify-content: center;
		gap: 20px;
		margin-top: 20px;
	}
	header nav .btnSP .tel span:before{
		content: "";
		display: inline-block;
		font-size: 18px;
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		content: "\f095";
		color: #fff;
		margin-right: 5px;
	}
	header nav .btnSP .btn{
		position: relative;
		padding: 12px 60px 12px 30px;
	}
	header nav .btnSP .btn:before{
		content: "";
		display: inline-block;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 21px;
		margin: auto 0;
		border-radius: 50%;
		width: 28px;
		height: 28px;
		background-color: #fff;
	}
	header nav .btnSP .btn:after{
		content: "";
		display: inline-block;
		font-size: 16px;
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		color: #00a5c1 !important;
		content: "\f054";
		position: absolute;
		top: 0;
		bottom: 0;
		right: 30px;
		margin: auto 0;
		display: flex;
		align-items: center;
	}

	header nav ul li.drop_menu > a::after{
		content: "\2b";
		right: 8px;
	}
	header nav ul li.drop_menu > a.active::after{
		content: "\f068";
		right: 8px;
	}
	.drop_menu > ul {
		display: none;
		margin-top: 10px;
	}
	header nav ul li.drop_menu ul{
		padding: 0 15px;
	}
	header nav ul li.drop_menu ul li a{
		font-size: 14px;
		height: auto;
		border: none;
		padding: 5px 0;
	}
	header nav ul li.drop_menu ul li a:before{
		content: none;
	}
	header nav ul li.drop_menu ul li a:after{
		color: #00a5c1 !important;
	}
}
@media screen and (max-width: 767px){
	header .header_wrap,
	header.active .header_wrap{
		height: 70px;
	}
	header .header_wrap .header_logo{
		max-width: 150px;
	}
	header nav{
		height: calc(100% - 70px);
		margin-top: 70px;
	}
}
@media screen and (max-width: 480px){
	header nav .btnSP{
		display: block;
	}
	header nav .btnSP .btn{
		display: block;
		max-width: 300px;
		width: 100%;
		margin: 0 auto;
	}
	header nav .btnSP p + a.btn,
	header nav .btnSP a + a.btn{
		margin-top: 15px;
	}
}

/* ------------------------------------------------------------------------ */

/* Contents

/* ------------------------------------------------------------------------ */

#mainBlock {
	overflow: hidden;
}
#contentsBlock{
	position: relative;
	z-index: 999;
}
@media screen and (max-width: 1100px){
	#mainBlock.active {
		padding-top: 78px;
	}
}
@media screen and (max-width: 767px){
	#mainBlock.active {
		padding-top: 70px;
	}
}

.inner{
	max-width: 1200px;
	margin: 0 auto;
}

.container_wide{
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}
.container_narrow{
	max-width: 1040px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
}

body.underpage section{
	padding: 60px 0;
}
body.underpage #mainVisual{
	position: relative;
	height: 220px;
	background-color: #eaf7fa;
	display: flex;
	justify-content: center;
	align-items: center;
}
body.underpage #mainVisual:after{
	content: '';
	width: 1920px;
	height: 220px;
	background-image: url('../img/back/img_underpage_mv_back.png');
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	position: absolute;
	margin: 0 auto;
}
body.underpage #mainVisual h1,
body.underpage #mainVisual p{
	max-width: 1240px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px;
	font-size: 38px;
	font-weight: 700;
	line-height: 1.4;
	z-index: 999;
}
body.underpage #mainVisual h1 span,
body.underpage #mainVisual p span{
	display: block;
	font-size: 20px;
}
body.underpage #sec_lead{
	padding: 60px 0;
}
body.underpage #contentsBlock > #sec_lead:first-child{
	padding-top: 120px;
}
body.underpage #sec_lead .lead_kv{
	margin-bottom: 115px;
}
body.underpage #sec_lead p:first-of-type{
	margin: 8px 0 21px;
}
body.underpage #sec_lead p{
	font-size: 18px;
	line-height: 2.0;
}
body.underpage #sec_lead p + p{
	margin-top: 1em;
}
@media screen and (max-width: 767px){
	body.underpage section{
		padding: 40px 0;
	}
	body.underpage #contentsBlock > #sec_lead:first-child{
		padding-top: 60px;
	}
	body.underpage #mainVisual{
		height: 140px;
	}
	body.underpage #mainVisual:after{
		width: 1920px;
		height: 140px;
		background-size: contain;
	}
	body.underpage #mainVisual h1,
	body.underpage #mainVisual p{
		font-size: 26px;
	}

	body.underpage #sec_lead{
		padding: 30px 0 40px;
	}
	body.underpage #sec_lead .lead_kv{
		margin-bottom: 50px;
	}
	body.underpage #sec_lead p:first-of-type{
		margin: 8px 0 21px;
	}
	body.underpage #sec_lead p{
		font-size: 15px;
		line-height: 1.7;
	}
	body.underpage #sec_lead p + p{
		margin-top: 1em;
	}
}



/* back
-----------------------------------*/
.back01{
	background-image: url('../img/back/img_back_001.png');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.back02{
	background-image: url('../img/back/img_back_002.png');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}
.back03{
	background-image: url('../img/back/img_back_003.png');
	background-size: cover;
	background-position: top center;
	background-repeat: no-repeat;
}


/* ------------------------------------------------------------------------ */

/* Footer

/* ------------------------------------------------------------------------ */

footer {
	position: relative;
	background-color: #eaf6fa;
	border-top: 2px solid #fff;
	padding: 60px 0;
}
footer .flex{
	gap: 70px;
}
footer .footer_banner{
	position: relative;
	max-width: 301px;
	width: 100%;
}
footer .footer_banner:before{
	content: '';
	width: 208px;
	height: 190px;
	background-image: url('../img/footer/img_footer_back_001.png');
	position: absolute;
	top: 64px;
	left: -140px;
}
footer .footer_banner:after{
	content: '';
	width: 147px;
	height: 134px;
	background-image: url('../img/footer/img_footer_back_002.png');
	position: absolute;
	top: 210px;
	right: -15px;
}
footer .footer_banner li{
	position: relative;
	z-index: 1;
}
footer .footer_banner li a{
	display: inline-block;
}
footer .footer_banner li.logo{
	margin-bottom: 55px;
}
footer .footer_banner li + li{
	margin-top: 10px;
}

footer .footer_link{
	position: relative;
	width: 100%;
}
footer .footer_link:after{
	content: '';
	width: 230px;
	height: 234px;
	background-image: url('../img/footer/img_footer_back_003.png');
	position: absolute;
	top: 130px;
	left: calc(100% + 10px);
}

footer .footer_link .footer_link_top > ul{
	display: flex;
	justify-content: space-between;
}
footer .footer_link .footer_link_top > ul > li:first-child{
	width: calc(100% - 100px);
}
footer .footer_link .footer_link_top ul li ul{
	display: flex;
	flex-wrap: wrap;
	margin-top: 17px;
}
footer .footer_link .footer_link_top ul li ul li{
	width: calc((100% / 3));
	display: flex;
	align-items: center;
}
footer .footer_link .footer_link_top ul li ul li:before,
#sitemap .list_wrap ul li ul li:before{
	content: "";
	display: inline-block;
	width: 10px;
	height: 1px;
	background-color: #00a5c1;
	margin-right: 6px;
}
footer .footer_link .footer_link_top ul li ul li a{
	font-size: 14px;
}

footer .footer_link .footer_link_bottom{
	display: flex;
	justify-content: space-between;
	width: calc(100% - 100px);
	margin-top: 70px;
}

footer .footer_link .footer_link_top ul li a,
footer .footer_link .footer_link_bottom ul li a{
	position: relative;
}
footer .footer_link .footer_link_top > ul > li,
footer .footer_link .footer_link_bottom > ul > li,
#sitemap .list_wrap ul > li{
	font-size: 18px;
}
footer .footer_link .footer_link_top > ul > li:before,
footer .footer_link .footer_link_bottom > ul > li:before,
#sitemap .list_wrap > ul > li:before{
	content: "";
	display: inline-block;
	font-size: 16px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	color: #5aa3bf;
	content: "\f054";
	padding-right: 10px;
}

footer .copy{
	font-size: 12px;
	text-align: center;
	margin-top: 90px;
}

.foot_above{
	padding-bottom: 100px !important;
}

@media screen and (max-width: 1400px){
	footer .flex{
		gap: 40px;
	}
	footer .footer_link .footer_link_top > ul > li:first-child{
		width: calc(100% - 80px);
	}
	footer .footer_link{
		padding-right: 70px;
	}
}
@media screen and (max-width: 1140px){
	footer .footer_link .footer_link_top > ul > li:first-child{
		width: calc(100% - 150px);
	}
	footer .footer_link .footer_link_top ul li ul li{
		width: calc((100% / 2));
	}
	footer .footer_link .footer_link_top > ul > li,
	footer .footer_link .footer_link_bottom > ul > li,
	#sitemap .list_wrap ul > li{
		font-size: 16px;
	}
	footer .footer_link .footer_link_bottom{
		width: 100%;
	}
}
@media screen and (max-width: 1000px){
	footer .flex{
		display: block;
	}
	footer .footer_banner{
		max-width: 100%;
		text-align: center;
	}
	footer .footer_banner li.logo{
		margin-bottom: 30px;
	}
	footer .footer_link{
		margin-top: 60px;
	}
	footer .footer_link .footer_link_top ul li ul li{
		width: calc((100% / 3));
	}
	footer .footer_link .footer_link_top > ul > li:first-child{
		width: calc(100% - 80px);
	}
	footer .footer_link .footer_link_bottom{
		margin-top: 40px;
	}
}
@media screen and (max-width: 800px){
	footer{
		padding: 100px 0 80px;
	}
	footer .copy{
		margin-top: 40px;
	}
}
@media screen and (max-width: 767px){
	footer .footer_link{
		padding: 0;
	}
	footer .footer_link .footer_link_top > ul{
		display: block;
	}
	footer .footer_link .footer_link_top > ul > li:first-child{
		width: 100%;
		margin-bottom: 30px;
	}
	footer .footer_link .footer_link_top > ul > li > a,
	footer .footer_link .footer_link_bottom > ul > li a {
		border-bottom: 1px solid #b3b3b3;
		padding-bottom: 10px;
		margin-bottom: 10px;
	}
	footer .footer_link .footer_link_top > ul > li:before,
	footer .footer_link .footer_link_bottom > ul > li:before {
		content: none;
	}
	footer .footer_link .footer_link_top > ul > li > a{
		display: flex;
		width: 100%;
	}
	footer .footer_link .footer_link_top > ul > li > a:before,
	footer .footer_link .footer_link_bottom > ul > li > a:before{
		content: "";
		display: inline-block;
		font-size: 14px;
		font-family: "Font Awesome 6 Free";
		font-weight: 900;
		color: #5aa3bf;
		content: "\f054";
		padding-right: 10px;
	}
	footer .footer_link .footer_link_top ul li ul{
		gap: 13px 0;
	}
	footer .footer_link .footer_link_bottom{
		display: block;
		margin-top: 15px;
	}
	footer .footer_link .footer_link_bottom > ul{
		display: flex;
		gap: 0 20px;
		flex-wrap: wrap;
	}
	footer .footer_link .footer_link_bottom > ul li{
		width: calc((100% - 20px) / 2);
	}
	footer .footer_link .footer_link_bottom > ul li a{
		display: block;
	}
}
@media screen and (max-width: 640px){
	footer .footer_link .footer_link_top ul li ul li{
		width: calc(100% / 2);
	}
	footer .footer_link .footer_link_top ul li ul li{
		font-size: 13px;
	}
	footer .footer_link .footer_link_bottom > ul li a{
		font-size: 15px;
	}
}
@media screen and (max-width: 430px){
	.foot_above{
		position: relative;
		z-index: 999;
		background-color: #fff;
		padding-bottom: 80px !important;
	}
	footer .footer_link .footer_link_top ul li ul li a{
		font-size: 3.26vw;
	}
	footer .footer_banner::before{
		width: 45vw;
		height: 44vw;
		background-size: cover;
		background-repeat: no-repeat;
		top: -48vw;
		left: -21vw;
	}
	footer .footer_banner::after {
		width: 26vw;
		height: 24vw;
		background-size: cover;
		background-repeat: no-repeat;
		top: 46vw;
		right: 3vw;
	}
}
@media screen and (max-width: 410px){
	footer .footer_link .footer_link_bottom > ul{
		gap: 0 10px;
	}
	footer .footer_link .footer_link_top > ul > li > a,
	footer .footer_link .footer_link_bottom > ul li a{
		font-size: 3.58vw;
	}
}



#pageTop{
	position: fixed;
	right: 40px;
	background-image: url('../img/footer/img_pagetop.png');
	width: 100px;
	height: 100px;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	border-radius: 50%;
	z-index: 999;
}
#pageTop a{
	position: relative;
	color: #fff;
	font-weight: 700;
	text-align: center;
	line-height: 1.25;
	transition: 0.5s;
}
#pageTop a:before{
	content: "";
	display: inline-block;
	font-size: 16px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900; 
	content: "\f077";
	display: flex;
	justify-content: center;
	align-items: center;
}
#pageTop a:hover{
	text-decoration: none;
}
@media screen and (max-width: 800px){
	#pageTop{
		position: absolute;
		left: 0;
		right: 0;
		top: -50px;
		margin: 0 auto;
		width: 100px;
		height: 100px;
		opacity: 1 !important;
	}
}

#fixedLink{
	position: fixed;
	opacity: 0;
	right: 0;
	top: 45%;
	-ms-transform: translate(0, -50%);
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	-webkit-transition: 0.5s all;
	-o-transition: 0.5s all;
	transition: 0.5s all;
	-ms-writing-mode: tb-rl;
	-webkit-writing-mode: vertical-rl;
	writing-mode: vertical-rl;
	-webkit-font-feature-settings: initial;
	font-feature-settings: initial;
	z-index: 999;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	pointer-events: none;
}
#fixedLink.scroll{
	opacity: 1;
	pointer-events: auto;
}
#fixedLink a{
	position: relative;
	width: 80px;
	height: 220px;
	color: #fff;
	line-height: 1.375;
	border-radius: 10px 0 0 10px;
	border: 2px solid #fff;
	box-sizing: border-box;
	display: flex;
	align-items: center;
	padding: 15px;
	transition: 0.5s;
}
#fixedLink a:hover{
	text-decoration: none;
	opacity: 0.7;
}
#fixedLink a + a{
	margin-top: 10px;
}
#fixedLink .link_shop{
	background-color: #db88ba;
}
#fixedLink .link_shop:before{
	content: "";
	display: inline-block;
	background-color: #fff;
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
#fixedLink .link_shop:after{
	content: "";
	display: inline-block;
	font-size: 12px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	color: #db88ba;
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
#fixedLink .link_midori{
	background-color: #309a83;
}
#fixedLink .link_midori:before{
	content: "";
	display: inline-block;
	background-color: #fff;
	position: absolute;
	bottom: 8px;
	left: 0;
	right: 0;
	margin: 0 auto;
	border-radius: 50%;
	width: 20px;
	height: 20px;
}
#fixedLink .link_midori:after{
	content: "";
	display: inline-block;
	font-size: 12px;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	content: "\f054";
	color: #309a83;
	position: absolute;
	bottom: 12px;
	left: 0;
	right: 0;
	margin: 0 auto;
	display: flex;
	align-items: center;
}
#fixedLink a span{
	display: block;
	font-size: 14px;
}
@media screen and (max-width: 800px){
	#fixedLink{
		position: fixed;
		opacity: 0;
		left: 0;
		top: auto;
		bottom: 0;
		margin: 0 auto;
		-ms-transform: translate(0);
		transform: translate(0);
		-webkit-transform: translate(0);
		-webkit-writing-mode: horizontal-tb;
		writing-mode: horizontal-tb;
		align-items: initial;
	}
	#fixedLink a{
		position: relative;
		max-width: 220px;
		width: 100%;
		height: auto;
		border: 1px solid #fff;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		padding: 15px;
	}
	#fixedLink a + a{
		margin-top: 0;
	}
	#fixedLink .link_shop{
		border-radius: 10px 0 0 0;
		border-right: none;
	}
	#fixedLink .link_shop:before{
		top: 0;
		bottom: 0;
		left: auto;
		right: 10px;
		margin: auto 0;
	}
	#fixedLink .link_shop:after{
		font-size: 12px;
		top: 0;
		bottom: 0;
		left: auto;
		right: 16px;
		margin: auto 0;
		display: flex;
		align-items: center;
	}
	#fixedLink .link_midori{
		border-radius: 0 10px 0 0;
	}
	#fixedLink .link_midori:before{
		top: 0;
		bottom: 0;
		left: auto;
		right: 10px;
		margin: auto 0;
	}
	#fixedLink .link_midori:after{
		font-size: 12px;
		top: 0;
		bottom: 0;
		left: auto;
		right: 16px;
		margin: auto 0;
		display: flex;
		align-items: center;
	}
	#fixedLink a span{
		display: block;
		font-size: 14px;
	}
}
@media screen and (max-width: 410px){
	#fixedLink p{
		font-size: 4vw;
	}
}
