@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);
@import url(https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;700&display=swap);
/* CSS Document */
body {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
	font-family: 'Noto Sans JP', sans-serif;
}
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	}
a{
	transition: all 0.3s ease;
}
img{
	max-width: 100%;
}
.mincho{
	font-family: "Zen Old Mincho", serif;
}
.marker{
	background: linear-gradient(transparent 50%, #cbe2b5 50%);
}
.fb{
	font-weight: 700;
}
.fc-red{
	color: #c1272d;
}
.title01{
	position: relative;
	text-align: center;
	font-size: 2rem;
	color: #2e3192;
	margin-bottom: 4rem;
}
.title01::before{
content: "";
    position: absolute;
    bottom: -20px;
    display: inline-block;
    width: 60px;
    height: 2px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1b1464;
    border-radius: 2px;
}
.arrow {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 2px;
  margin: 5.7px 0;
  border-radius: 9999px;
  background-color: #c1272d;
}

.arrow::before,
.arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 2px;
  border-radius: 9999px;
  background-color: #c1272d;
  transform-origin: calc(100% - 1px) 50%;
}

.arrow::before {
  transform: rotate(45deg);
}

.arrow::after {
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
	.title01{
		font-size: 1.5rem;
		margin-bottom: 3rem;
	}
}
/* =======================================
    common
======================================= */
.pc,
.br-pc{
	display:block;
}
.sp,
.br-sp{
	display:none;
}
@media (max-width: 767px) {
	.pc,
	.br-pc{
		display:none;
	}
	.sp{
		display:block;
	}
	.br-sp {
		display: inline-block;
	}
}
/* =======================================
    display
======================================= */
.sp-br{
	display: none;
}
@media (max-width: 767px) {
	.pc-br{
		display: none;
	}
	.sp-br{
		display: block;
	}
}
/* =======================================
    layout
======================================= */
.container{
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
/* =======================================
    drawer
======================================= */
.contents {
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* :::::: toggle button :::::: */
#drawer {
	display: none;
}
label {
	cursor: pointer;
	position: fixed;
}
.open {
	z-index: 1000;
	top: 8px;
	right: 8px;
	width: 48px;
	height: 48px;
	border: solid 1px #000;
	border-radius: 50%;
	transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #000;
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	z-index: 1;
	inset: 0;
	pointer-events: none;
	transition: background .6s;
}
#drawer:checked + .open {
	background: #dc6688;
	transform: translateX(-280px);
}
#drawer:checked + .open span {
	transform: scaleX(0);
}
#drawer:checked + .open::before {
	transform: rotate(135deg) scaleX(1.2);
}
#drawer:checked + .open::after {
	transform: rotate(-135deg) scaleX(1.2);
}
#drawer:checked ~ .close {
	pointer-events: auto;
	background: rgba(0,0,0,.3);
}

/* :::::: drawer menu :::::: */
.menu {
	z-index: 1010;
	position: fixed;
	overflow: auto;
	top: 0;
	right: 0;
	width: 280px;
	height: 100%;
	margin: 0;
	padding: 10px;
	box-sizing: border-box;
	background: rgba(0,0,0,.6);
	transform: translateX(100%);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2 {
	color: white;
	font-family: "Ubuntu Condensed", sans-serif;
	font-weight: 400;
	letter-spacing: .1em;
	text-align: center;
}
.menu ul {
	margin: 0;
	padding: 0;
}
.menu li {
	line-height: 1.4;
}
.menu li:not(:first-child) {
	border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
	display: block;
	padding: 1em 2em;
	color: white;
	text-decoration: inherit;
	transition: background .6s;
}
.menu a:hover {
	background: black;
}
#drawer:checked ~ .menu {
	transform: none;
}

/* =======================================
    header
======================================= */
header h1 img{
	max-width:200px;
}
header {
	position: relative;
	display: flex;
	justify-content: space-between;
	padding: .5rem 1rem;
	z-index: 100;
}
/*  ヘッダー固定↓  */
header{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
}
/*  ヘッダー固定↑  */
#siteHeader.is-scrolled{
  background: rgba(255,255,255,0.95); /* 好きな色に */
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}
/* :::::: nav :::::: */
header nav {
}
header nav ul {
	display: flex;
	list-style: none;
	margin: 0;
	padding: 0;
	text-align: center;
}
header nav li:not(:first-child) {
	border-left: 1px solid rgba(0,0,0,.1);
}
header nav li a {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 48px;
	text-decoration: none;
	color: #000;
	transition: background .3s;
	padding: 0 1em;
}
header nav li a:hover {
	background: #efefef;
}

@media (min-width: 960px) {
	.open {
		display: none;
	}
}
@media (max-width: 959px) {
	header nav {
		display: none;
	}
}
/* =======================================
    main
======================================= */
.wrap-mainview{
	position: relative;
	background: url(../img/bg-mainview.jpg) center center / cover no-repeat;
	padding: 7rem 1rem 4rem;
}
.mainview{
	max-width: 960px;
	margin: 0 auto;
	font-weight: 700;
	text-align: center;
	padding-left: 29rem;
}
.mainview p{
	display: inline-block;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0, 0, 0, .4);
}
.catch{
	font-size: 1.75rem;
	margin-bottom: 2rem;
}
.copy{
	margin-bottom: 2rem;
}
.btn-mainview{
	display: block;
	max-width: 22rem;
	font-size: 1.5rem;
	text-align: center;
	text-decoration: none;
	color: #1b1464;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(216, 240, 250, 1) 80%);
	border-radius: 100px;
	margin: 0 auto 2rem;
	padding: 1rem;
}
.btn-mainview:hover{
	background-image: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(157, 225, 253, 1) 80%);
}
.btn-mainview .arrow{
	margin-left: 1rem;
}
.wrap-btn-tel p{
	text-align:center;
	display: block;
}
.btn-mainview02{
	display: block;
    	max-width: 22rem;
    	font-size: 1.5rem;
    	text-align: center;
    	text-decoration: none;
    	color: #1b1464;
    	background-image: radial-gradient(circle, #e0f3ff, rgb(142 209 237) 80%);
    	border-radius: 100px;
    	margin: 0 auto;
    	padding: 1rem;
}
.btn-mainview02:hover{
	background-image: radial-gradient(circle, #e0f3ff, rgb(84 198 223) 80%);
}
@media screen and (min-width: 768px) {
	.btn-mainview02{
		pointer-events: none;
	}
}
@media (max-width: 960px) {
	.mainview{
		padding-left: 20rem;
	}
}
@media (max-width: 840px) {
	.mainview{
		padding-left: 16rem;
	}
}
@media (max-width: 767px) {
	.wrap-mainview{
		padding: 8rem 1rem 4rem;
	}
	.mainview{
		padding-left: 9rem;
	}
	.catch{
		font-size: 1.5rem;
	}
	.btn-mainview{
		font-size: 1.25rem;
		padding: 1rem;
	}
}
@media (max-width: 640px) {
	.mainview{
		text-align: right;
		padding-left: 7rem;
	}
	.mainview p{
		text-align: center;
	}
	.catch{
		margin-bottom: 2rem;
	}
	.copy{
		margin-bottom: 2rem;
	}
}
@media (max-width: 560px) {
	.mainview{
		padding-left: 5rem;
	}
}
@media (max-width: 480px) {
	.wrap-mainview{
		background-position: left -160px top;
	}
	.catch{
		font-size: 1rem;
	}
}
/* =======================================
    資産運用のアドバイザーにこんな悩みありませんか？
======================================= */
.wrap-nayami{
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
}
.nayami01{
	display: flex;
	align-items: center;
	margin-bottom: 3rem;
}
.nayami01 img{
	width: 50%;
}
.nayami-text{
	flex: 1;
	background-color: rgba(255, 255, 255, .5);
	margin-left: -8rem;
	padding: 3rem 1rem 3rem 3rem;
}
.nayami-text p{
	position: relative;
	font-weight: 700;
	margin-bottom: 1rem;
	padding-left: 2rem;
}
.nayami-text p::before{
	content: "";
	position: absolute;
	top: .25rem;
	left: 0;
	display: block;
	width: 1.25rem;
	height: 1.25rem;
	background: url(../img/icon-check.svg) center center / contain no-repeat;
}
.nayami-box{
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row-reverse;
	max-width: 960px;
	border: solid 8px #ccc;
	border-radius: 20px;
	margin: 0 auto;
	padding: 1rem;
}
.nayami-box p{
	flex: 1;
	line-height: 2;
	padding-right: 1rem;
}
.nayami-box img{
	width: 160px;
}
@media (max-width: 960px) {
	.nayami01{
		align-items: flex-start;
	}
	.nayami-text{
		margin-top: 2rem;
	}
}
@media (max-width: 767px) {
	.nayami01{
		flex-direction: column;
		align-items: center;
		margin-bottom: 0;
	}
	.nayami01 img{
		width: 100%;
	}
	.nayami-text{
		margin: 0;
		padding: 1rem;
	}
	.nayami-box img{
		width: 100px;
	}
}
@media (max-width: 640px) {
	.nayami-box{
		display: block;
		border-width: 6px;
	}
	.nayami-box img{
		float: right;
		margin: 0 0 0 1rem;
	}
	.nayami-box p{
		padding-right: 0;
	}
}
/* =======================================
    3つの「誠実な基準」で顧客の資産運用を支えます。
======================================= */
.wrap-three{
	background-color: #f2f2f2;
	padding: 5rem 1rem 7rem;
}
.three{
	display: flex;
	max-width: 960px;
	margin: 0 auto 2rem;
}
.three-img{
	display: flex;
	justify-content: center;
	align-items: center;
	width: 33%;
	background-color: #ddeff0;
	padding: 3rem;
}
.three-text{
	width: 66%;
    	background-color: white;
    	padding: 2rem;
    	display: flex;
    	flex: 1;
    	flex-direction: column;
    	justify-content: center;
}
.three-text h3{
	margin-bottom:1rem;
}
.three-last{
	font-size: 1.5rem;
	text-align: center;
	padding-top: 2rem;
}
@media (max-width: 767px) {
	.wrap-three{
		padding: 3rem 1rem 5rem;
	}
	.three-img{
		padding: 2rem;
	}
}
@media (max-width: 640px) {
	.three{
		flex-direction: column;
	}
	.three-img{
		width: 100%;
		padding: 1rem;
	}
	.three-img img{
		max-width: 250px;
	}
	.three-text{
		width:100%;
		padding: 1.5rem;
	}
}
/* =======================================
    アドバイザー紹介
======================================= */
.wrap-advisor{
	max-width: 1200px;
	margin: 0 auto;
	padding: 3rem 1rem;
}
.wrap-advisor h2 + p{
	text-align: center;
	margin-bottom: 2rem;
}
.advisor{
	display: flex;
	justify-content: space-between;
}
.advisor section{
	width: 32%;
	background-color: #fff;
	box-shadow: 7px 7px 7px #ccc;
	padding: 1.25rem;
}
.advisor img{
	display: block;
	margin-bottom: 1rem;
}
.advisor h3{
	font-size: 1.25rem;
	text-align: center;
	color: #2e3192;
	margin-bottom: .5rem;
}
.adv01{
	font-weight: 700;
	text-align: center;
	color: #505fcc;
	margin-bottom: .5rem;
}
@media (max-width: 1200px) {
	.advisor h3{
		letter-spacing: -1px;
	}
}
@media (max-width: 1024px) {
	.advisor h3{
		font-size: 1.125rem;
	}
}
@media (max-width: 960px) {
	.advisor{
		flex-direction: column;
	}
	.advisor section{
		width: 100%;
		margin-bottom: 2rem;
	}
	.advisor img{
		width: 100%;
	}
	.adv-text{
		flex: 1;
	}
	.advisor h3{
		font-size: 1.25rem;
	}
}
/* =======================================
    お客様の声
======================================= */
.wrap-voice{
	background-color: #2e3192;
	padding: 3rem 1rem;
}
.wrap-voice h2{
	font-size: 2.5rem;
	text-align: center;
	color: #fff;
	margin-bottom: 3rem;
}
.voice{
	display: flex;
	align-items: flex-start;
	gap: 4rem;
	max-width: 960px;
	background-color: #fff;
	border-radius: 10px;
	box-shadow: 5px 5px 12px #000;
	margin: 0 auto 3rem;
	padding: 2rem;
}
.voice figure{
	width: 180px;
}
.voice figcaption{
	font-size: .875rem;
	text-align: center;
	padding-top: .5rem;
}
.voice img{
	display: block;
	width: 180px;
	height: 180px;
	background-color: #e6e6e6;
	border-radius: 50%;
}
.voice p{
	flex: 1;
	line-height: 2;
}
.white{
	color:white;
	max-width: 960px;
	margin: auto;
}
@media (max-width: 960px) {
	.voice{
		gap: 3rem;
	}
}
@media (max-width: 767px) {
	.wrap-voice h2{
		font-size: 2rem;
		margin-bottom: 2rem;
	}
	.voice{
		gap: 2rem;
		padding: 1.5rem 1rem;
	}
	.voice figure{
		width: 120px;
	}
	.voice img{
		width: 120px;
		height: 120px;
	}
}
@media (max-width: 640px) {
	.voice{
		display: block;
	}
	.voice figure{
		float: left;
		width: 100px;
		margin: 0 1rem 1rem 0;
	}
	.voice img{
		width: 100px;
		height: 100px;
	}
}
/* =======================================
    CTA
======================================= */
.wrap-cta{
	max-width: 960px;
	font-weight: 700;
	text-align: center;
	margin: 0 auto;
	padding: 3rem 1rem;
}
.wrap-cta > p{
	font-size: 1.75rem;
	line-height: 2;
	color: #2e3192;
	margin-bottom: 3rem;
}
.cta{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-image: radial-gradient(circle, rgba(255, 255, 255, 1), rgba(216, 240, 250, 1) 80%);
	border-radius: 30px;
	padding: 5rem 3rem;
}
.cta a{
	position: relative;
	transition: .5s;
	overflow: hidden;
}
.cta a::before{
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(130deg, rgba(255, 255, 255, 0) 20%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 80%);
  transition: .5s;
}
.cta a:hover::before{
  top: 0;
  left: 100%;
}
.btn-cta{
	display: block;
	width: 48%;
	max-width: 30rem;
	font-size: 1.75rem;
	text-decoration: none;
	color: #fff;
	background-color: #2e3192;
	border-radius: 20px;
	padding: 1.5rem;
}
.cta-phone{
	flex: 1;
	font
}
.cta-phone p{
	line-height: 1;
}
.cta-phone a{
	font-size: 2.5rem;
	color: #2e3192;
	pointer-events: none;
	text-decoration: none;
}
.cta-phone a::before{
	content: none;
}
@media (max-width: 960px) {
	.cta{
		padding: 4rem 2rem;
	}
}
@media (max-width: 767px) {
	.wrap-cta > p{
		font-size: 1.25rem;
		margin-bottom: 1rem;
	}
	.cta{
		align-items: center;
		flex-direction: column;
		gap: 2rem;
		border-radius: 15px;
		padding: 2rem 1rem
	}
	.btn-cta{
		width: 100%;
		font-size: 1.5rem;
		padding: 1rem;
	}
	.cta-phone{
		width: 100%;
	}
	.cta-phone a{
		display: block;
		max-width: 30rem;
		font-size: 1.5rem;
		pointer-events: auto;
		border: solid 2px #2e3192;
		border-radius: 20px;
		margin: .5rem auto 0;
		padding: .75rem;
	}
	.cta-phone a::before{
		content: "";
	}
}
@media (max-width: 480px) {
	.wrap-cta > p{
		font-size: 1rem;
	}
}
/* =======================================
    相談の流れ
======================================= */
.wrap-flow{
	background-color: #f2f2f2;
	padding: 5rem 1rem;
}
.flow{
	position: relative;
	display: flex;
	align-items: center;
	gap: 2rem;
	max-width: 960px;
	background-color: #fff;
	margin: 0 auto 3rem;
	padding: 1.5rem;
}
.flow::after{
	content: "";
	position: absolute;
	top: 100%;
	left: 50%;
	display: block;
	width: 28px;
	height: 24px;
	background-color: #808080;
	clip-path: polygon(0 0, 100% 0, 50% 100%);
	margin: 14px 0 0 -14px;
}
.flow:last-child::after{
	content: none;
}
.flow img{
	width: 200px;
}
.flow-text{
	flex: 1;
}
.flow h3{
	font-size: 1.25rem;
	color: #2e3192;
	margin-bottom: .75rem;
}
@media (max-width: 767px) {
	.wrap-flow{
		padding: 3rem 1rem;
	}
	.flow{
		flex-direction: column;
		gap: 1rem;
		margin-bottom: 2.5rem;
		padding: 1rem 1.25rem;
	}
	.flow::after{
		width: 20px;
		height: 16px;
	}
	.flow img{
		width: 100%;
	}
	.flow h3{
		font-size: 1.125rem;
		margin-bottom: .5rem;
	}
}
/* =======================================
    よくある質問
======================================= */
.qa{
	background-color: #2e3192;
	padding: 3rem 1rem;
}
.qa .title01{
	color: #fff;
}
.qa .title01::before{
	background-color: #fff;
}
.qa dl{
	max-width: 960px;
	font-weight: 700;
	background-color: #fff;
	border-radius: 20px;
	margin: 0 auto 2rem;
	padding: 2rem 4rem;
}
.qa dt{
	position: relative;
	font-size: 1.25rem;
	color: #2e3192;
	border-bottom: dashed 2px #ccc;
	margin-bottom: .5rem;
	padding-left: 2rem;
	padding-bottom: .5rem;
}
.qa dt::before,
.qa dd::before{
	position: absolute;
	top: 0;
}
.qa dt::before{
	content: "Q.";
	left: 0;
}
.qa dd::before{
	content: "A.";
	left: .5rem;
	color: #2e3192;
}
.qa dd{
	position: relative;
	padding-left: 2rem;
}
@media (max-width: 767px) {
	.qa dl{
		border-radius: 10px;
		padding: 1rem;
	}
	.qa dt{
		font-size: 1.125rem;
	}
}
/* =======================================
    お問合せ
======================================= */
.btn-seminar{
	display: block;
	width: 100%;
	max-width: 54rem;
	font-size: 1.625rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #fff;
	background-color: #D53939;
	border-radius: .625rem;
	padding: 1rem 0;
	margin: 0 auto 2.75rem;
	}
.btn-seminar:hover{
	background-color: #F95B5B;
}
.free-dial{
	position: relative;
	width: 100%;
	max-width: 54rem;
	background-color: #fff;
	border: solid 1px #303092;
	margin: 4rem auto;
	z-index: 1;
}
.free-dial01{
	display: block;
	font-size: 1.125rem;
	font-weight: 700;
	text-align: center;
	color: #fff;
	background-color: #303092;
	padding: 8px 0 4px;
}
.dial-inner{
	text-align: right;
	padding: 16px 200px 16px 0;
}
.dial-inner img,
.dial-inner > span{
	display: inline-block;
	vertical-align: middle;
}
.dial-inner img{
	width: 52px;
	margin-right: .5rem;
}
.free-dial-number{
	font-size: 2.5rem;
	font-weight: 700;
	color: #303092;
	margin-right: 1rem;
}
.dial-inner > span:last-child{
	font-size: .875rem;
	font-weight: 700;
	color: #333;
}
.free-dial-sp{
	display: none;
}
.free-dial-girl{
	position: absolute;
	right: 1.75rem;
	bottom: -2px;
}


@media (max-width: 960px) {
	.dial-inner{
		padding-right: 160px;
	}
	.free-dial-girl{
		width: 140px;
		right: .75rem;
	}
}
@media (max-width: 767px) {
	.btn-seminar{
		font-size: 1.25rem;
		margin-bottom: 1.5rem;
		}
	.btn-seminar span{
		display: block;
		}
	.free-dial{
		border: none;
		background-color: transparent;
	}
	.free-dial01{
		font-size: 1rem;
		color: #303092;
		background-color: transparent;
	}
	.dial-inner{
		text-align: center;
		padding: 0 10px;
	}
	.dial-inner > img,
	.dial-inner > span.free-dial-number,
	.free-dial-girl{
		display: none;
	}
	.free-dial-sp{
		position: relative;
		display: inline-block;
		width: 100%;
		padding: 0.25em 0.5em;
		text-decoration: none;
		background: #fff;/*背景色*/
		border: solid 1px #6f6d6d;
		border-bottom: solid 2px #6f6d6d;/*少し濃い目の色に*/
		border-radius: 4px;/*角の丸み*/
		box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), 0 2px 2px rgba(0, 0, 0, 0.19);
		margin-bottom: .5rem;
	}
	.free-dial-sp:active {
		border-bottom: solid 2px #999;
		box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
	}
	.free-dial-sp img,
	.free-dial-sp span{
		display: inline-block;
		vertical-align: middle;
	}
	.free-dial-sp img{
		width: 40px;
	}
	.free-dial-sp .free-dial-number{
		font-size: 1.75rem;
		margin-right: 0;
	}
	.dial-inner > span:last-child{
		display: block;
	}
	.schedule .free-dial{
		margin:0;
	}
}
/* =======================================
    ディスクロージャー
======================================= */
.note{
	font-size: .875rem;
	background-color: #f2f2f2;
	padding: 1.5rem;
	margin-bottom: 2rem;
}
.note ul{
	padding-left: 1.5rem;
}
@media (max-width: 767px) {
	.note{
		padding: 1rem;
	}
}
/* =======================================
    banner ブルクアセットのホームページでは以下の内容もご紹介しています。
======================================= */
.banner{
	margin-bottom: 4rem;
	}
.banner h4{
	font-size: .875rem;
	font-weight: normal;
	border-left: solid 10px #111138;
	padding-left: 1rem;
	margin-bottom: 1rem;
	}
.banner dl{
	display: table;
	width: 100%;
	margin-bottom: 1rem;
	}
.banner dt,
.banner dd{
	display: table-cell;
	vertical-align: top;
	}
.banner dt{
	width: 320px;
	}
.banner dd{
	font-size: .875rem;
	padding: .875rem 0 0 1.5rem;
	}
@media (max-width: 767px) {
	.banner h4{
		border-left: solid 5px #111138;
		padding-left: .5rem;
		}
	.banner dl,
	.banner dt,
	.banner dd{
		display: block;
		}
	.banner dl{
		margin-bottom: 2rem;
		}
	.banner dt{
		width: 100%;
		}
	.banner dd{
		padding: .3125rem 0 0;
		}
	}
/* =======================================
    footer
======================================= */
.fixed-btn{
	position: fixed;
    	top: 40%;
    	right: 0;
    	writing-mode: vertical-rl;
	z-index: 1000;
}
.fixed-btn a{
    	background-color: rgb(4 88 162);
    	display: flex;
    	padding:30px 10px 20px;
    	color: white;
    	text-decoration-line: none;
    	justify-content: center;
	gap:0.5rem;
	align-items: center;
	font-size: 1.25rem;
}
.fixed-btn a:hover{
	background-color: rgb(0 104 195);
}
.fixed-btn img{
    width: 40px;
}
.fixed-btn .btn_sp{
	display:none;
}
footer{
	background-color: #efefef;
	}
footer small{
	display: block;
	text-align: center;
	color: #fff;
	background-color: #111138;
	padding: .25rem 0;
	}
.footer-inner{
	display: -webkit-flex;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: center;
	align-items: center;
	font-size: .875rem;
	padding-top: 2.625rem;
	padding-bottom: 2.625rem;
	}
.footer-left img{
	width: 290px;
	padding-bottom: 1rem;
	}
footer address{
	font-style: normal;
	}
footer address dl{
	margin-bottom: .5rem;
}
footer address dt{
	font-weight: 700;
}
footer ul{
	list-style-type: none;
	}
footer li{
	margin-bottom: 1rem;
	}
footer li:last-child{
	margin-bottom: 0;
	}
footer li a{
	color: #333;
	}
@media (max-width: 767px) {
	.fixed-btn{
		top: auto;
    		bottom: 0;
    		text-align: center;
    		width: 100%;
    		writing-mode: lr;
        	display: flex;
	}
	.fixed-btn a{
		padding: 10px;
        	display: flex;
        	flex-direction: row;
        	width: 50%;
        	font-size: 1rem;
        	line-height: 1.2;
	}
	.fixed-btn .btn_sp{
        	display: flex;
        	flex-direction: column;
		border-left: solid 1px;
		background-color: #1a4265;
	}
	.fixed-btn .btn_sp span{
    		font-size: 1.4rem;
	}
	.footer-inner{
		-webkit-flex-wrap: wrap;
		flex-wrap: wrap;
		}
	.footer-left{
		width: 100%;
		text-align: center;
		margin-bottom: 1rem;
		}
	footer address span{
		display: block;
		}
	footer ul{
		display: block;
		width: 100%;
		}
	footer li{
		border-top: solid 1px #fff;
		margin: 0;
		}
	footer li:last-child{
		border-bottom: solid 1px #fff;
		}
	footer li a{
		position: relative;
		display: block;
		text-decoration: none;
		padding: .5rem 0 .5rem 1.5rem;
		}
	footer li a::before{
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		display: block;
		width: 6px;
		height: 6px;
		border: 1px solid;
		border-color: #565656 #565656 transparent transparent;
		transform: rotate(45deg);
		margin-top: -4px;
		}
	}
}
