@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	変数

------------------------------------------------------------------------------*/

:root {
	/* ★common.css ＝ editor.css★ */
	--main-red: 206,18,37;
	--main-blue: 11,47,139;
	--sub-blue: 35,84,155;
	--gradient: linear-gradient(90deg,rgba(var(--main-red),.75) 0%,rgba(var(--main-blue),.75) 100%);
}


/*------------------------------------------------------------------------------

	image replacement

------------------------------------------------------------------------------*/

#content > header h1.logo,
#content > header p.logo a {
	display: block;
	overflow: hidden;
	outline: none;
	clear: both;
	text-indent: -9999px;
	white-space: nowrap;
	background-repeat: no-repeat;
	background-size: contain;
}


/*------------------------------------------------------------------------------

	全体

------------------------------------------------------------------------------*/

/*	site_column
------------------------------------------------------------------------------*/

.site_column {
	position: relative;
	margin: 0 auto;
	width: 86%;
	max-width: 1200px;
}

#content > header .site_column {
	width: 100%;
	max-width: none;
}

.site_column.slim {
	max-width: 900px;
}

body.home main #promotion .site_column {
	max-width: 1600px;
}

body.home main #recruit .site_column {
	max-width: 1400px;
}

#content > footer #contact .site_column {
	max-width: 1000px;
}


/*	body・textarea・input
------------------------------------------------------------------------------*/

body,
textarea,
input,
select {
	/* ★common.css ＝ editor.css★ */
	line-height: 1.8;
	font-family: YuGothic,"游ゴシック","メイリオ",Meiryo,sans-serif,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro",Osaka,verdana,"ＭＳ Ｐゴシック","MS PGothic",Sans-Serif;
	font-size: 16px;
	font-weight: 500;
	color: rgba(51,51,51,1);
  	-webkit-text-size-adjust: 100%;
	font-feature-settings: "palt";
}

textarea,
input,
select {
	-webkit-appearance: none;
}

@media screen and (max-width: 1024px) {

body,
textarea,
input  {
	/* ★common.css ＝ editor.css★ */
	font-size: 14px;
}

}

@media screen and (max-width: 767px) {

body,
textarea,
input {
	/* ★common.css ＝ editor.css★ */
	font-size: 3.2vw;
}

}


/*	見出し
------------------------------------------------------------------------------*/

h1,h2,h3,h4,h5,h6 {
	line-height: 1.4;
}

/*	アンカー
------------------------------------------------------------------------------*/

a,
a:hover,
a:visited {
	outline: none;
	text-decoration: none;
	color: rgba(var(--main-red),1);
}

a {
	transition: opacity .4s;
}

a:hover {
	text-decoration: none;
	opacity: .4;
}

main a,
main a:visited {
	text-decoration: underline;
}

@media screen and (max-width: 900px) {

a:hover {
	opacity: 1;
}

}

@media screen and (max-width: 767px) {

a[href^="tel:"] {
	text-decoration: underline;
}

}

@media screen and (min-width: 768px){
	
a[href^="tel:"] {
	pointer-events: none;
	text-decoration: none;
	color: #333;
}

a[href^="tel:"]:hover {
	cursor: default;
	opacity: 1;
}

}


/*	リスト
------------------------------------------------------------------------------*/

main ol,
main ul {
	margin: 1em 0 1em 1.5em;
}

main ul {
	list-style: disc;
}

main ol {
	list-style: decimal;
}

main li {
	margin-bottom: .5em;
	line-height: 1.4;
}

#content main table ol,
#content main table ul {
	margin: 0 0 0 1.5em;
	background-color: inherit;
}

#content main table ol li,
#content main table ul li {
	background-color: inherit;
	font-weight: normal;
}


/*	テーブル
------------------------------------------------------------------------------*/

table {
	width: 100%;
}

th,
td {
	line-height: 1.6;
}

th {
	font-weight: bold;
}


/*	その他
------------------------------------------------------------------------------*/

em {
	font-style: normal;
}

figcaption {
	margin-top: .5em;
	text-align: center;
	font-size: .875em;
}

img {
	vertical-align: bottom;
}

address {
	font-style: normal;
}


/*	共通設定
------------------------------------------------------------------------------*/

main p,
main dd {
	margin-bottom: .5em;
	text-align: justify;
}

main li:last-child,
main p:last-of-type,
main dd:last-of-type {
	margin-bottom: 0;
}


/*	独自class
------------------------------------------------------------------------------*/

.note {
	margin-left: 0;
}

.note li {
	display: block;
	position: relative;
	padding-left: 1em;
	font-size: .875em;
}

.note li::before {
	content: "※";
	position: absolute;
	top: 0;
	left: 0;
}

.l {
	display: block;
}

#content .button,
#content .button a {
	line-height: 1;
}

#content .button {
	width: fit-content;
	width: 100%;
	max-width: 320px;
	margin: 2em auto 0;
}

#content .button a {
	display: block;
	padding: 1.25em;
	background-color: rgba(255,255,255,1);
	border: 1px solid rgba(var(--main-blue),1);
	border-radius: 10em;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	color: rgba(var(--main-blue),1);
}

#content .button a::after {
	content: '';
	display: inline-block;
	width: .85em;
	aspect-ratio: 1/1;
	margin-left: .85em;
	background-image: url(../img/icon_arrow_bl.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
}

#content .button.gradient a {
	background: var(--gradient);
	border: none;
	color: #FFF;
}

#content .button.gradient a::after {
	background-image: url(../img/icon_arrow_wh.svg);
}

@media screen and (max-width: 1024px) {

#content .button {
	max-width: 260px;
}

}

@media screen and (max-width: 767px) {

.l {
	display: inline;
}

#content .button {
	max-width: 60vw;
}

}


/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

#content > header {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	padding: 30px 0 30px 55px;
	z-index: 2000;
}

#content > header .logo,
#content > footer #access h2::before {
	aspect-ratio: 1/1;
	width: 100%;
}

#content > header .logo {
	max-width: 140px;
}

#content > header h1.logo,
#content > header p.logo a,
#content > footer #access h2::before {
	background-image: url(../img/logo.png);
	background-size: cover;
	background-repeat: no-repeat;
}

#content > header p.logo a {
	display: block;
	height: 100%;
}

#content > header .site_column {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#content > header .gnav ul {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	padding-left: 50px;
	z-index: 1;
}

#content > header .gnav ul li a {
	display: block;
	background-color: rgba(var(--main-red),1);
	padding: 1.78em;
	line-height: 1;
	font-weight: bold;
	font-size: 1.125em;
	color: #FFF;
}

#content > header .gnav .about a::before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 50px;
	height: 100%;
	clip-path: polygon(100% 0,0 100%,100% 100%);
	background-color: rgba(var(--main-red),1);
	border-right: 1px solid rgba(var(--main-red),1);
}

#content > header .gnav .contact a {
	background-color: rgba(var(--main-blue),1);
}

#content > header .gnav ul li a:hover {
	opacity: 1;
}

@media screen and (max-width: 1400px) {

#content > header {
	padding-left: 15px;
}

#content > header .logo {
	max-width: 120px;
}

}

@media screen and (max-width: 900px) {

#content > header {
	padding-top: 15px;
	padding-bottom: 15px;
}

#content > header .logo {
	max-width: 100px;
}

#content > header .gnav ul li a {
	padding: 1.35em 1em;
	font-size: 1em;
}

}

@media screen and (max-width: 767px) {

#content > header {
	height: 22vw;
	padding: 0;
}

#content > header .logo {
	position: absolute;
	top: 3.5vw;
	left: 3vw;
	max-width: 15vw;
}

body.menu_open #content > header .logo {
	position: fixed;
	z-index: 10000;
}

#content > header .gnav ul {
	flex-direction: column;
	width: 86%;
	margin: 60vw auto 0;
	padding-left: 0;
}

#content > header .gnav ul li {
	width: 100%;
}

#content > header .gnav .about a::before {
	display: none;
}

#content > header .gnav ul li a {
	padding: 6vw 4vw;
	background: none;
	background-image: url(../img/icon_arrow_wh.svg);
	background-repeat: no-repeat;
	background-size: 1em;
	background-position: right .5em center;
	border-top: 1px solid #FFF;
	font-size: 3.5vw;
}

#content > header .gnav .environment a {
	border-bottom: 1px solid #FFF;
}

#content > header .gnav .contact {
	width: 80%;
	margin: 10vw auto 0;
}

#content > header .gnav .contact a {
	background-image: none;
	border-top: none;
	text-align: center;
}

}

@media (orientation: landscape) and (max-width: 767px) {

#content > header .gnav ul {
	width: 60%;
	margin: 20vw auto 20vw;
}

}


/*------------------------------------------------------------------------------

	menu

------------------------------------------------------------------------------*/

/*	メニュー本体開閉CSS
　　スマホサイズでcloseした時のdisplay:none を、再びPCサイズにした時、
　　非表示になるのを回避
------------------------------------------------------------------------------*/

@media screen and (min-width: 768px) {

#content > header .menu {
	display: block !important;
}

}

@media screen and (max-width: 767px) {

#content > header .menu {
	display: none;
}

}


/*	メニュー本体
------------------------------------------------------------------------------*/

@media screen and (max-width: 767px) {
	
#content > header .menu {
	overflow-y: scroll;
	position: fixed;
	flex-direction: column;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url(../img/main_image.jpg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	z-index: 9999;
}
	
#content > header .menu::before,
#content > header .menu::after {
	content: '';
	display: block;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
	
#content > header .menu::before {
	background-color: rgba(255,255,255,.6);
}

#content > header .menu::after {
	background-color: rgba(var(--main-red),.6);
}

}


/*	開閉ボタン
------------------------------------------------------------------------------*/

.menu_button {
	display: none;
}

@media screen and (max-width: 767px) {
	
.menu_button,
.menu_button span {
	display: inline-block;
	transition: translate .4s, rotate .4s, display .4s, background .4s, top .4s, bottom .4s, opacity .4s;
	box-sizing: border-box;
}
	
.menu_button {
	position: fixed;
	display: block;
	z-index: 9999;
	right: 3vw;
	top: 5vw;
	width: 12vw;
	height: 12vw;
	background-color: rgba(var(--main-red),1);
}
	
.menu_button:hover {
	cursor: pointer;
}

.menu_button em {
	position: absolute;
	left: 0;
	top: 1.25vw;
	width: 100%;	
	font-style: normal;
	font-weight: bold;
	font-size: 2vw;	
	color: #FFF;
	text-align: center;
}

.menu_button em::before {
	content: 'MENU';
}

.menu_button span {
	position: absolute;
	left: 50%;
	translate: -50% 0;
	width: 50%;
	height: .6vw;
	background-color: #FFF;
	border-radius: 100em;
}
	
.menu_button.active {
	background-color: rgba(255,255,255,1);
}

.menu_button.active em::before {
	content: 'CLOSE';
	color: rgba(var(--main-red),1);
}

.menu_button.active span {
	background-color: rgba(var(--main-red),1);
}

.menu_button span:nth-of-type(1) { top: 5.5vw;}
.menu_button span:nth-of-type(2) { top: 7vw; left: 55%; width: 40%;}
.menu_button span:nth-of-type(3) {	top: 8.5vw; left: 60%; width: 30%;}

.menu_button.active span:nth-of-type(1) { top: 7vw; rotate: -315deg;}
.menu_button.active span:nth-of-type(2) { opacity: 0;}
.menu_button.active span:nth-of-type(3) { top: 7vw; rotate: 315deg; left: 50%; width: 50%}

}


/*------------------------------------------------------------------------------

	main

------------------------------------------------------------------------------*/

#content main .none {
	width: 100%;
	margin-top:2em;
}


/*	 post_list
------------------------------------------------------------------------------*/

#content main .post_list {
	display: flex;
	justify-content: flex-start;
	align-items: stretch;
	flex-wrap: wrap;
	margin-bottom: 80px;
}

#content main .post_list a {
	display: block;
	width: 23.5%;
	margin-top: 2%;
	margin-right: 2%;
	padding: 8px 8px 22px;
	border: 1px solid rgba(var(--main-blue),1);
	box-sizing: border-box;
	text-decoration: none;
	color: inherit;
}

#content main .post_list a:nth-child(-n+4) {
	margin-top: 0;
}

#content main .post_list a:nth-child(4n) {
	margin-right: 0;
}

#content main .post_list dl {
	position: relative;
	display: flex;
	flex-direction: column-reverse;
	justify-content: flex-end;
	height: 100%;
	margin: 0;
}

#content main .post_list dt {
	position: absolute;
	right: 0;
	bottom: 0;
	line-height: 1;
	font-size: .875em;
}

#content main .post_list .title {
	padding: .5em .5em 1.5em;
	line-height: 1.45;
	font-weight: bold;
	color: rgba(var(--main-blue),1);
}

#content main .post_list .thumb img {
	width: 100%;
	aspect-ratio: 400/290;
	object-fit: cover;
}

@media screen and (max-width: 900px) {

#content main .post_list a,
#content main .post_list a:nth-child(-n+4),
#content main .post_list a:nth-child(4n) {
	width: 31%;
	margin-top: 3.5%;
	margin-right: 3.5%;
}

#content main .post_list a:nth-child(-n+3) {
	margin-top: 0;
}

#content main .post_list a:nth-child(3n) {
	margin-right: 0;
}

}

@media screen and (max-width: 767px) {

#content main .post_list {
	margin-bottom: 10vw;
}

#content main .post_list a,
#content main .post_list a:nth-child(-n+4),
#content main .post_list a:nth-child(4n) {
	width: 100%;
	margin-top: 3vw;
	margin-right: 0;
	padding: 2.5vw;
}

#content main .post_list a:nth-child(1) {
	margin-top: 0;
}

#content main .post_list dl {
	flex-direction: row-reverse;
	justify-content: space-between;
	align-items: center;
}

#content main .post_list dt {
	font-size: 2.25vw;
}

#content main .post_list .title {
	display: -webkit-box;
	flex: 1;
	margin: 0;
	padding: 0;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-align: left;
}

#content main .post_list .thumb {
	width: 34.5%;
	margin-right: 3vw;
}

}


/*	 understand_num
------------------------------------------------------------------------------*/

#content main .understand_num {
	margin: 0;
	text-align: center;
}

#content main .understand_num dt {
	position: relative;
	display: inline-block;
	margin-bottom: 1.5em;
	padding: 1em 3em;
	background-color: rgba(var(--main-blue),1);
	border-radius: 5px;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	font-size: 1.5em;
	color: #FFF;
}

#content main .understand_num dt::after {
	content: '';
	position: absolute;
	top: 100%;
	left: 50%;
	translate: -50% 0;
	display: block;
	width:0;
	height:0;
	border-style: solid;
	border-width: 18px 12px 0 12px;
	border-color: rgba(var(--main-blue),1) transparent transparent transparent;
}

#content main .understand_num dd {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	padding: 1.875em;
	background-color: rgba(235,236,246,1);
}

#content main .understand_num dd .group {
	width: 31.6%;
	padding: 2em 1em .5em;
	background-color: #FFF;
}

#content main .understand_num dd .group div {
	text-align: center;
}

#content main .understand_num .title,
#content main .understand_num .scope {
	line-height: 1;
}

#content main .understand_num .scope {
	margin-bottom: 1em;
}

#content main .understand_num .title {
	margin-bottom: 1em;
	padding-left: .125em;
	letter-spacing: .125em;
	font-weight: bold;
	font-size: 1.25em;
}

#content main .understand_num .scope .num {
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-size: 4.875em;
}

#content main .understand_num .scope .unit {
	padding-left: .125em;
	font-weight: bold;
	font-size: 1.875em;
}

#content main .understand_num .item {
	display: flex;
	justify-content: center;
}

#content main .understand_num figure {
	margin: 0 1.5em 0 0;
	width: 80px;
}

#content main .understand_num figure:last-child {
	margin-right: 0;
}

#content main .understand_num figure figcaption {
	font-weight: bold;
}

#content main .understand_num .sub > img {
	max-width: 115px;
}

@media screen and (max-width: 900px) {

#content main .understand_num dd {
	padding: 1.5em;
}

#content main .understand_num .scope .num {
	font-size: 3.5em;
}

#content main .understand_num figure {
	margin-right: 1em;
}

}

@media screen and (max-width: 767px) {

#content main .understand_num dt {
	padding: 5vw 7vw;
	font-size: 4vw;
}

#content main .understand_num dt::after {
	border-width: 4vw 3vw 0 3vw;
}

#content main .understand_num dd {
	padding: 6vw;
}

#content main .understand_num dd .group {
	width: 100%;
	margin-bottom: 6vw;
}

#content main .understand_num .scope .num {
	font-size: 17vw;
}

#content main .understand_num figure {
	width: 25vw;
}

#content main .understand_num dd .group:last-child {
	margin-bottom: 0;
}

#content main .understand_num .sub > img {
	max-width: 40vw;
}

}



/*------------------------------------------------------------------------------

	footer

------------------------------------------------------------------------------*/

#content > footer {
	margin-top: 140px;
}

@media screen and (max-width: 1024px) {

#content > footer {
	margin-top: 110px;
}

}

@media screen and (max-width: 767px) {

#content > footer {
	margin-top: 12vw;
}

}


/*	 contact
------------------------------------------------------------------------------*/

#content > footer #contact {
	padding: 90px 0 95px;
	background-color: rgba(51,51,51,1);
}

#content > footer #contact h2 {
	margin-bottom: 3.25em;
	padding-left: .125em;
	letter-spacing: .125em;
	text-align: center;
	font-size: .875em;
	color: #FFF;
}

#content > footer #contact h2::before {
	content: 'CONTACT';
	display: block;
	margin-bottom: .125em;
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	line-height: 1;
	font-weight: 600;
	font-style: normal;
	font-size: 3.125rem;
}

#content > footer #contact .group {
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	flex-wrap: wrap;
}

#content > footer #contact .group .box {
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
	width: 48%;
	padding: 35px 15px;
	background-color: #FFF;
}

#content > footer #contact p,
#content > footer #contact a {
	line-height: 1;
}

#content > footer #contact h3 {
	margin-bottom: 1em;
	text-align: center;
	line-height: 1;
	font-weight: bold;
	font-size: 1.25em;
	color: rgba(var(--main-blue),1);
}

#content > footer #contact .tel a {
	display: inline-block;
	line-height: 1;
	color: rgba(var(--main-blue),1);
}

#content > footer #contact .tel .num {
	letter-spacing: .03125em;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 400;
	font-style: normal;
	font-size: 2.75em;
}

#content > footer #contact .tel .num::before {
	content: '';
	display: inline-block;
	width: .85em;
	aspect-ratio: 1/1;
	margin-right: .25em;
	background-image: url(../img/icon_tel_bl.svg);
	background-repeat: no-repeat;
	background-position: left center;
}

#content > footer #contact .tel .main_num {
	vertical-align: .0625em;
	font-weight: bold;
	font-size: 1.25em;
}

#content > footer #contact .reception {
	margin-top: 2em;
	font-size: .875em;
	color: rgba(var(--main-blue),1);
}

#content > footer #contact .button {
	margin-top: 1em;
}

@media screen and (max-width: 1024px) {

#content > footer #contact {
	padding: 60px 0 65px;
}

}

@media screen and (max-width: 900px) {

#content > footer #contact .group .box {
	padding: 30px 10px;
}

#content > footer #contact .tel .num {
	font-size: 2.25em;
}

}

@media screen and (max-width: 767px) {

#content > footer #contact {
	padding: 12vw 0 10vw;
}

#content > footer #contact h2::before {
	font-size: 10vw;
}

#content > footer #contact .group .box {
	width: 100%;
	margin-top: 5vw;
	padding: 7vw 5vw;
}

#content > footer #contact .group .box:first-child {
	margin-top: 0;
}

#content > footer #contact .tel .num {
	font-size: 9vw;
}

#content > footer #contact .button {
	max-width: 70vw;
}

}


/*	 access
------------------------------------------------------------------------------*/

#content > footer #access {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	padding: 50px 0;
}

#content > footer #access .info h2 {
	display: flex;
	align-items: center;
	margin-bottom: 1em;
	font-weight: bold;
}

#content > footer #access .info h2::before {
	content: '';
	display: block;
	max-width: 100px;
	margin-left: -1em;
}

#content > footer #access .info {
	flex: 1;
}

#content > footer #access .info address {
	line-height: 2;
	font-size: .875em;
}

#content > footer #access .sitemap {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 51.8%;
	margin-top: 2.5em;
}

#content > footer #access .sitemap .group:nth-child(1) {
	width: 20%;
}

#content > footer #access .sitemap .group:nth-child(2) {
	width: 35%;
}

#content > footer #access .sitemap a {
	display: block;
	position: relative;
	padding: .5em 0 .5em 1em;
	line-height: 1;
	text-decoration: none;
	color: inherit;
}

#content > footer #access .sitemap a::before {
	content: "";
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	left: 0;
	width: .625em;
	aspect-ratio: 5/1;
	background-color: rgba(var(--main-blue),1);
}

#content > footer #access .sitemap ul ul a::before {
	display: none;
}

@media screen and (max-width: 1200px) {

#content > footer #access .sitemap {
	width: 60%;
}

}

@media screen and (max-width: 1024px) {

#content > footer #access {
	padding: 40px 0;
}

}

@media screen and (max-width: 900px) {

#content > footer #access .sitemap {
	width: 52%;
}

#content > footer #access .sitemap .group:nth-child(1) {
	width: 100%;
	margin-bottom: .5em;
}

#content > footer #access .sitemap .group:nth-child(2) {
	width: 50%;
}

}

@media screen and (max-width: 767px) {

#content > footer #access {
	padding: 10vw 0;
}

#content > footer #access .info,
#content > footer #access .sitemap {
	width: 100%;
}

#content > footer #access .info h2::before {
	max-width: 20vw;
}

#content > footer #access .sitemap .group:nth-child(3) {
	width: 50%;
}

#content > footer #access .sitemap a {
	padding-top: 2.5vw;
	padding-bottom: 2.5vw;
}

}


/*	 copy
------------------------------------------------------------------------------*/

#content > footer #copy {
	text-align: right;
	margin-bottom: 4em;
}

@media screen and (max-width: 900px) {

#content > footer #copy {
	margin-bottom: 2.5em;
}

}

@media screen and (max-width: 767px) {

#content > footer #copy {
	margin-bottom: 10vw;
	text-align: center;
}

}


/*	 パンくず
------------------------------------------------------------------------------*/

#content > footer .breadcrumb {
	background-color: rgba(51,51,51,.1);
}

#content > footer .breadcrumb ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 1.45em 0;
}

#content > footer .breadcrumb ul li {
	position: relative;
	padding-left: .5em;
	padding-right: 1em;
	line-height: 1;
}

#content > footer .breadcrumb ul li:first-child {
	padding-left: 0;
}

#content > footer .breadcrumb ul li:last-child {
	padding-right: 0;
	flex: 1;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#content > footer .breadcrumb ul li:first-child a::before,
#content > footer .breadcrumb ul li::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	background-repeat: no-repeat;
	background-size: cover;
	line-height: 1;
}

#content > footer .breadcrumb ul li:first-child a {
	padding-left: 1.125em;
}

#content > footer .breadcrumb ul li:first-child a::before {
	width: .75em;
	aspect-ratio: 1/1;
	background-image: url(../img/icon_home_bl.svg);
	background-repeat: no-repeat;
	background-size: cover;
	left: 0;
}

#content > footer .breadcrumb ul li::after {
	right: 0;
	width: .5em;
	height: 1px;
	background-color: rgba(51,51,51,1);
}

#content > footer .breadcrumb ul li:last-child::after {
	display: none;
}

#content > footer .breadcrumb ul li:last-child {
	font-weight: bold;
}

#content > footer .breadcrumb ul li a {
	color: inherit;
}


/*	 page_top
------------------------------------------------------------------------------*/

#page_top {
    position: fixed;
	right: 3vw;
    bottom: 8vw;
	z-index: 1000;
	width: 10vw;
	height: 10vw;	
	max-width: 60px;
	max-height: 60px;
    transition: opacity .6s;
	background-color: #FFF;
	opacity: 0;
}

.moved #page_top {
	opacity: .7;
}

#page_top a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background: var(--gradient);
	text-decoration: none;
	cursor: default;
}

.moved #page_top a {
	cursor: pointer;
	opacity: 1;
}

#page_top a::after {
	position: absolute;
	top: 60%;
	left: 50%;
	transform: translate(-50%,-50%)  rotate(45deg);
	content: "";
	display: block;
	width: 30%;
	height: 30%;
	border-top: 1px solid #FFF;
	border-left: 1px solid #FFF;
}
