@charset "utf-8";

/*//////////////////////////////////////////////////////////////////////////////

	共通

//////////////////////////////////////////////////////////////////////////////*/


/*------------------------------------------------------------------------------

	変数

------------------------------------------------------------------------------*/

:root {
	/* ★common.css ＝ editor.css★ */
	--main-color: 31,39,116;
	--sub-color: 70,161,133;
	--accent-color: 245,203,50;
}


/*------------------------------------------------------------------------------

	image replacement

------------------------------------------------------------------------------*/

#content > header h1.logo,
#content > header p.logo a,
#content > header .menu p.logo a,
#content > footer .logo,
#content > #promotion .group ul li a,
body.business main > .banner a,
main #company .name_change 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;
}

body.contents .site_column {
	max-width: 900px;
}


/*	body・textarea・input
------------------------------------------------------------------------------*/

body {
	margin: 0;
	background-image: url("../img/bg_image.png");
	background-attachment: fixed;
}

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(35,35,0,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-color),1);
}

a {
	transition: opacity .4s, filter .4s;
}

a:hover {
	text-decoration: none;
	opacity: .4;
}

main a,
main a:visited {
	text-decoration: underline;
}

@media screen and (max-width: 767px) {

a:hover {
	opacity: 1;
}

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;
}


/*	テーブル
------------------------------------------------------------------------------*/

table {
	width: 100%;
}

th,
td {
	line-height: 1.8;
}

th {
	font-weight: bold;
}


/*	dl
------------------------------------------------------------------------------*/

main dl.highlight {
	margin: 2em 0 0;
	background-color: rgba(216,221,234,1);
	border-bottom: 1px solid rgba(var(--main-color),1);
}

main dl.highlight > dt {
	display: inline-block;
	padding: .4em 1.5em .3em;
    background-color: rgba(var(--main-color),1);
	font-weight: bold;
	color: #FFF;
}

main dl.highlight > dd {
	padding: 20px 40px;
}

main dl.highlight > dd dt {
    background-color: transparent;
}

@media screen and (max-width: 1200px){

main dl.highlight > dd {
	padding: 10px 30px;
}

}

@media screen and (max-width: 767px){

main dl.highlight > dt {
	padding: 3vw 5vw;
	line-height: 1.4;
}

main dl.highlight > dd {
	padding: 5vw;
}

main dl.highlight > dd ul {
	margin: 3vw 0 3vw 5vw;
}

}



/*	その他
------------------------------------------------------------------------------*/

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 .link_button a {
	position: relative;
	display: inline-block;
	padding: 1em 3em 1em 1.5em;
	background-color: rgba(var(--main-color),1);
	text-decoration: none;
	border-radius: 10em;
	font-weight: bold;
	line-height: 1;
	color: #FFF;
	transition: filter .4s;
}

#content .link_button a:hover {
	opacity: 1;
	filter: saturate(200%);
}

#content .link_button a::after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 1.25em;
	width: 1em;
	height: 1em;
	background-image: url("../img/icon_arrow_white_blue.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	animation: move 2s infinite;
}

@keyframes move {
0%,100% {translate: 0 -50%;}
50% {translate: 30% -50%;}
}

.emphasis {
	font-weight: bold;
	background: linear-gradient(transparent 60%, #F5CB32 60%);
}

@media screen and (max-width: 767px) {

.l {
	display: inline;
}

#content .link_button a {
	font-size: 2.5vw;
}	

#content .link_button a:hover {
	filter: unset;
}
	
}


/*------------------------------------------------------------------------------

	header

------------------------------------------------------------------------------*/

#content > header {
	position: relative;
	z-index: 2000;
}

#content > header .site_column {
	display: flex;
	justify-content: space-between;
	align-items: center;
	max-width: 1600px;
	padding: 50px 0;
}

#content > header .group {
	display: flex;
	align-items: center;
}

#content > header h1.logo,
#content > header p.logo a,
#content > footer .logo {
	background-repeat: no-repeat;
}

#content > header h1.logo,
#content > header p.logo a {
	background-image: url(../img/logo.svg);
}

#content > header .menu h1.logo,
#content > header .menu p.logo a,
#content > footer .logo {
	background-image: url("../img/logo_white.svg");
}

#content > header .logo,
#content > footer .logo {
	aspect-ratio: 388/36;
}

#content > header .logo {
	width: 490px;
}

#content > footer .logo {
	width: 400px;
}

#content > header p.logo a {
	display: block;
	height: 100%;
}

#content > header .text {
	margin-left: 1.5em;
	font-size: .875em;
	line-height: 1.4;
}

#content > header .text span {
	display: block;
}

@media screen and (max-width: 1440px) {
	
#content > header .group {
	flex-direction:column-reverse;
	align-items: flex-start;
}		

#content > header .text {
	margin: 0 0 .5em 0;
}	

#content > header .text span {
	display: inline-block;
}	
	
}

@media screen and (max-width: 1180px) {
	
#content > header .text {
	font-size: .75em;
}	

#content > header .logo {
    width: 340px;
}	
	
}

@media screen and (max-width: 900px) {
	
#content > header .site_column {
	flex-direction: column;
	align-items: flex-start;
	padding: 30px 0 40px;
}	
	
#content > header .group {
	flex-direction:column-reverse;
	align-items: flex-start;
}	
	
#content > header .text {
	margin-left: 0;
	line-height: 1.5;
}
	
}

@media screen and (max-width: 767px) {

#content > header .site_column {
	padding: 6vw 0;
}

#content > header .logo {
	width: 65vw;
}
	
#content > header .text {
	margin-left: 0;
	line-height: 1.5;
}	

#content > header .text {
	font-size: 2.5vw;
}	
	
}


/*------------------------------------------------------------------------------

	gnav

------------------------------------------------------------------------------*/

#content > header .gnav ul {
	display: flex;
	margin: 0;
	padding: 0;
	list-style: none;
}

#content > header .gnav ul li {
	margin-left: 2.4em;
}

#content > header .gnav ul li:first-child,
#content > header .gnav ul li:last-child {
	margin-left: 0;
}

#content > header .gnav a {
	display: block;
	font-size: 1.125em;
	font-weight: bold;
	line-height: 1;
	color: #333;
}

#content > header .gnav .selected a {
	color: rgba(var(--main-color),1);	
}

#content > header .gnav .selected a:hover {
	cursor: default;
	opacity: 1;
}

#content > header .gnav .inquiry {
	position: absolute;
	top: 0;
	right: 0;
	margin: 0;
}

#content > header .gnav .inquiry a {
	display: block;
	padding: .6em 1em;
	color: #FFF;
	background-color: rgba(var(--sub-color),1);	
}

@media screen and (max-width: 1100px) {

#content > header .gnav ul li {
	margin-left: 2em;
}	

#content > header .gnav a {
	font-size: 1.125em;
}
	
}

@media screen and (max-width: 900px) {
	
#content > header .gnav .inquiry {
	top: 40px;
}
	
}

@media screen and (max-width: 767px) {

#content > header .gnav {
	position: relative;
	padding-top: 12vw;
}	

#content > header .gnav::after {
	position: absolute;
	left: 50%;
	bottom: -40vw;
	translate: -50% 0;
	content: '';
	width: 19.3vw;
	aspect-ratio: 94 / 15;
	background-image: url("../img/icon_cmyk_circle.svg");
	background-repeat: no-repeat;
	background-size: contain;
}		
	
#content > header .gnav ul {
	display: block;
	position: relative;
	padding-left: 15vw;
}

#content > header .gnav ul li:not(.inquiry) {
	margin-left: 0;
	border-bottom: 1px solid rgba(var(--main-color),1);	
}	

#content > header .gnav ul li:not(.inquiry) a {
	position: relative;
	padding: 1.5em 0;
}

#content > header .gnav ul li:not(.inquiry) a::before {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	right: 10vw;
	width: .8em;
	aspect-ratio: 1/1;
	background-image: url("../img/icon_arrow_blue.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	animation: sp_arrow 2s infinite;
}

@keyframes sp_arrow {
0%,100% {translate: 0 -50%;}
50% {translate: 40% -50%;}
}

#content > header .gnav .inquiry {
	position: static;
	width: 80%;
	margin-top: 12vw;
}	
	
#content > header .gnav .inquiry a {
	padding: 1.5em 1em;
	text-align: center;
}	
	
}


/*------------------------------------------------------------------------------

	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;
}

}


/*	メニュー本体
------------------------------------------------------------------------------*/

#content > header .menu .wrap {
	display: none;
}


@media screen and (max-width: 900px) {
	
#content > header .menu {
	margin: 3em auto 0;
}
	
}

@media screen and (max-width: 767px) {

#content > header .menu {
	overflow-y: scroll;
	position: fixed;
	flex-direction: column;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	margin-top: 0;
	padding-bottom: 20vw;
	background-color: #FFF;
	background-image: url("../img/header_radiation_bg.svg");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center bottom;
	z-index: 9999;	
	
	
}
	
#content > header .menu .wrap {
	display:block;
}	
	
#content > header .menu .wrap {
	display: inline-block;
	padding: 20vw 17vw 7vw 8vw;
	background-color: rgba(var(--main-color),1);
	border-radius: 0 0 10px 0;
}
	
#content > header .menu .wrap .logo {
	width: 50vw;
	aspect-ratio: 270/28;
	margin: 0;
}
	
}


/*	開閉ボタン
------------------------------------------------------------------------------*/

.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: 6vw;
	top: 5.3vw;
	width: 12vw;
	height: 12vw;
	background-color: rgba(var(--accent-color),1);
	border-radius: 50%;
}
	
.menu_button:hover {
	cursor: pointer;
}

.menu_button em {
	position: absolute;
	left: 0;
	top: 1.7vw;
	width: 100%;	
	font-size: 2vw;	
	font-weight: bold;
	text-align: center;
	color: rgba(var(--main-color),1);
	font-style: normal;
}

.menu_button em::before {
	content: 'MENU';
}

.menu_button span {
	position: absolute;
	left: 63%;
	translate: -50% 0;
	width: 50%;
	height: .6vw;
	background-color: rgba(var(--main-color),1);
	border-radius: 100em;
}
	
.menu_button.active {
	background-color: rgba(var(--main-color),1);
}

.menu_button.active em::before {
	content: 'CLOSE';
	color: #FFF;
}

.menu_button.active span {
	background-color: #FFF;
}

.menu_button span:nth-of-type(1) {
	top: 5.5vw;
	transform: translateX(-25%);
}
.menu_button span:nth-of-type(2) {
	top: 7vw;
	width: 40%;
	transform: translateX(-20%);
}
.menu_button span:nth-of-type(3) {
	top: 8.5vw;
	width: 30%;
	transform: translateX(-15%);
}

.menu_button.active span {
	left: 50%;
	width: 50%;
	transform: none;
}	
	
.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;}

}


/*------------------------------------------------------------------------------

	main

------------------------------------------------------------------------------*/

/*	アーカイブリスト共通
------------------------------------------------------------------------------*/

#content main .post_list {
	display: flex;
	flex-wrap: wrap;
}

#content main .post_list a {
	display: block;
	position: relative;
	width: 23.2%;
	margin: 0 2.4% 3% 0;
	padding: 1.8%;
	text-decoration: none;
	color: rgba(51,51,51,1);
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 .5em 0 rgba(0,0,0,.25);
}

#content main .post_list a:hover {
	opacity: 1;
	filter: brightness(120%);
}

#content main .post_list a:nth-child(4n) {
	margin-right: 0;
}

#content main .post_list a dl {
	display: flex;
	flex-direction: column;
	margin: 0;
}

#content main .post_list a dl dt:not(.title) {
	position: absolute;
	top: -4%;
	left: -4%;
	border-radius: 50%;
}

#content main .post_list a dl .title {
	order: 2;
	margin-top: 1.2em;
	margin-bottom: 0;
	line-height: 1.4;
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	text-align: left;
}

#content main .post_list a dl .thumbnail {
	order: 1;
}

#content main .post_list a dl dd img {
	width: 100%;
	aspect-ratio: 260/190;
	border-radius: 10px;
	object-fit: cover;
}

@media screen and (max-width: 900px) {

#content main .post_list a {
	width: 22.7%;
	margin: 0 3% 3% 0;
	padding: 1.5%;
}

#content main .post_list a dl .title {
	margin-top: .8em;
	font-size: .857em;
}

}

@media screen and (max-width: 767px) {

#content main .post_list a {
	width: 47%;
	margin: 0 6% 6% 0;
	padding: 3% 3% 4% 3%;
	border-radius: 1.5vw;
}

#content main .post_list a:hover {
	filter: unset;
}
	
#content main .post_list a:nth-child(2n) {
	margin-right: 0;
}	

#content main .post_list a dl .title {
	margin-top: 1em;
	font-size: 2.8vw;
}	
	
#content main .post_list a dl dd img {
	border-radius: 1.5vw;
}	

}


/*	日付スタイル共通
------------------------------------------------------------------------------*/

body.home main #blog a time,
body.topics main .post_list a time,
body.blog main .post_list a time,
body.contents main .post header time,
body.interview .post header h1::before {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 63px;
	height: 63px;
	border-radius: 50%;
	box-shadow: 0 0 .2em 0 rgba(0,0,0,.25);
	font-weight: 500;
	line-height: 1.2;
	color: #FFF;
	font-family: 'Oswald', sans-serif;
}

body.home main #blog a time .year,
body.topics main .post_list a time .year,
body.blog main .post_list a time .year,
body.contents main .post header time .year {
	font-size: .875em;
}

body.home main #blog a time .date,
body.topics main .post_list a time .date,
body.blog main .post_list a time .date,
body.contents main .post header time .date {
	font-size: 1.125em;
}

body.interview .post header h1::before {
	content: '';
	position: absolute;
	top: -.1em;
	left: 0;
	background-image: url("../img/icon_interview.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: .8em;
}

@media screen and (max-width: 900px) {

body.home main #blog a time,
body.topics main .post_list a time,
body.blog main .post_list a time,
body.contents main .post header time,
body.interview .post header h1::before {
	width: 45px;
	height: 45px;
}

body.home main #blog a time .year,
body.topics main .post_list a time .year,
body.blog main .post_list a time .year,
body.contents main .post header time .year {
	font-size: .8em;
}

body.home main #blog a time .date,
body.topics main .post_list a time .date,
body.blog main .post_list a time .date,
body.contents main .post header time .date {
	font-size: 1em;
}	

}

@media screen and (max-width: 767px) {

body.home main #blog a time,
body.topics main .post_list a time,
body.blog main .post_list a time,
body.contents main .post header time,
body.interview .post header h1::before {
	width: 10vw;
	height: 10vw;
}

body.interview .post header h1::before {
	background-size: 5vw;
}	
	
body.home main #blog a time .year,
body.topics main .post_list a time .year,
body.blog main .post_list a time .year,
body.contents main .post header time .year {
	font-size: 2.5vw;
}
	
body.home main #blog a time .date,
body.topics main .post_list a time .date,
body.blog main .post_list a time .date,
body.contents main .post header time .date {
	font-size: 3vw;
}	
	
}

/* 色 */
main .purple time,
body.interview .purple header h1::before {
	background-color: rgba(161,0,117,1);
}

main .lightgreen time,
body.interview .lightgreen header h1::before {
	background-color: rgba(101,161,0,1);
}

main .lightblue time,
body.interview .lightblue header h1::before {
	background-color: rgba(0,154,161,1);
}

main .brown time,
body.interview .brown header h1::before {
	background-color: rgba(161,65,0,1);
}

main .green time,
body.interview .green header h1::before {
	background-color: rgba(0,161,73,1);
}

main .yellow time,
body.interview .yellow header h1::before {
	background-color: rgba(161,151,0,1);
}

main .blue time,
body.interview .blue header h1::before {
	background-color: rgba(0,107,160,1);
}

main .pink time,
body.interview .pink header h1::before {
	background-color: rgba(163,59,179,1);
}


/*	お知らせ一覧共通
------------------------------------------------------------------------------*/

main #news .group a,
body.news #content main .post_list a,
#content main .none {
	display: block;
	width: 100%;
	margin: 0;
	padding: 1em;
	background-color: #FFF;
	border-radius: 10px;
	box-shadow: 0 0 .5em 0 rgba(0,0,0,.25);
	text-decoration: none;
	color: rgba(51,51,51,1);
	line-height: 1.4;
}

#content main .none {
	width: 100%;
	margin: 40px auto 60px;
	text-align: center;
	background-color:  rgba(var(--main-color),.1);
	box-shadow: none;
}

main #news .group a:not(:first-of-type),
body.news #content main .post_list a:not(:first-of-type) {
	margin-top: 1em;
}

main #news .group a dl,
body.news #content main .post_list a dl{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: row;
	margin: 0;
}

main #news .group a dl dt,
body.news #content main .post_list a dl dt {
	position: static;
	margin-right: 1.5em;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
}

main #news .group a dl dd,
body.news #content main .post_list a dl dd {
	margin-top: 0;
	flex: 1;
} 

@media screen and (max-width: 767px) {

main #news .group a,
body.news #content main .post_list a {
	font-size: 2.8vw;
	border-radius: 1vw;
}	

#content main .none {
	margin: 5vw auto 8vw;
}	
	
}


/*------------------------------------------------------------------------------

	footer

------------------------------------------------------------------------------*/

#content > footer {
	margin-top: 200px;
	background-color: rgba(var(--main-color),1);
	color: #FFF;
}

#content > footer .bg {
	background-image: url("../img/radiation_bg.svg");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: cover;
}

#content > footer .site_column {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	max-width: 1300px;
	padding: 100px 0;
}

#content > footer a {
	color: #FFF;
}

#content > footer #access {
	position: relative;
	padding: 0 65px 0;
}

#content > footer #access::before {
	content: '';
	position: absolute;
	top: -120%;
	left: auto;
	width: 300px;
	aspect-ratio: 300/199;
	background-image: url("../img/package_set.png?20250708");
	background-repeat: no-repeat;
	background-size: cover;
}

#content > footer #access::after {
	content: '';
	position: absolute;
	top: 0;
	left: 100%;
	width: 1px;
	height: 100%;
	background-color: rgba(255,255,255,.5);
}

#content > footer #access h2 {
	margin: 0 0 1.5em;
}

#content > footer address a {
	text-decoration: underline;
}

#content > footer address dl{
	margin: 1em 0 0;
}

#content > footer address dl dt {
	font-weight: bold;
}

#content > footer address dl dd {
	margin: 0;
}

#content > footer .site_map {
	display: flex;
	flex-wrap: wrap;
	padding-left: 84px;
}

#content > footer .site_map .group1 {
	margin-right: 90px;
}

#content > footer .site_map .group2 {
	margin-right: 65px;
}

#content > footer .site_map div > ul {
	margin: 0 0 .5em;
	list-style: disc;
}

#content > footer .site_map div > ul > li {
	line-height: 2.2;
}

#content > footer .site_map div > ul > li > ul {
	margin-top: .3em;
}

#content > footer .site_map div > ul > li > ul li {
	line-height: 1.8;
}

@media screen and (max-width: 1250px) {

#content > footer {
	margin-top: 180px;
}	
	
#content > footer .site_column {
    padding: 70px 0;
}	
	
#content > footer #access {
	padding: 0 50px 0 0;
}

#content > footer #access::before {
	top: -105%;
	width: 90%;
}
	
#content > footer .logo {
	width: 280px;
}
	
#content > footer address dl dd span {
	display: block;
}

#content > footer .site_map {
    padding-left: 60px;
}		

#content > footer .site_map .group1,
#content > footer .site_map .group2 {
    margin-right: 60px;
}	
	
}

@media screen and (max-width: 1024px) {

#content > footer #access::before {
	width: 80%;
}

}

@media screen and (max-width: 900px) {

#content > footer #access h2 {
	margin: .3em 0 1.3em;
}
	
#content > footer #access {
	padding: 0 25px 0 0;
}

#content > footer #access::before {
	top: -86%;
}	
	
#content > footer .logo {
	width: 250px;
}

#content > footer .site_map {
    padding-left: 45px;
}		
	
#content > footer .site_map .group1,
#content > footer .site_map .group2 {
    margin-right: 35px;
}	
	
}

@media screen and (max-width: 767px) {

#content > footer .logo {
	width: 60vw;
}

#content > footer {
	margin-top: 33vw;
}

#content > footer .bg {
	background-position: 97% center;
}	
	
#content > footer .site_column {
	flex-direction: column;
	padding: 18vw 0;
}

#content > footer #access {
	width: 100%;
	padding: 0 0 8vw;
}

#content > footer #access::before {
	top: -80%;
	left: 50%;
	translate: -50% 0;
	width: 60%;
}	
	
#content > footer #access::after {
	top: 100%;
	left: auto;
	right: auto;
	width: 100%;
	height: 1px;
}

#content > footer #access h2,
#content > footer #access address	{
	margin: 0 auto;
	text-align: center;
}	
	
#content > footer #access address {
	margin-top: 2em;
	text-align: center;
}
	
#content > footer address dl dd {
	font-size: 3vw;
}	
	
#content > footer address dl dd span {
	display: inline;
}	
	
#content > footer .site_map {
	justify-content: space-between;
	margin-top: 10vw;
	padding: 0 10vw 0 20vw;
}

#content > footer .site_map .group1,
#content > footer .site_map .group2 {
	width: 48%;
	margin-right: 0;
}
	
#content > footer .site_map .group3 {
	width: 100%;
	margin-top: 1em;
}	

}


/*	 パンくず
------------------------------------------------------------------------------*/

#content > footer .breadcrumb {
	background-color: rgba(var(--main-color),.1);
}

#content > footer .breadcrumb ul {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}

#content > footer .breadcrumb ul li {
	position: relative;
	padding-left: 1em;
	padding-right: 2em;
	font-size: .875em;
	font-weight: bold;
	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;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

#content > footer .breadcrumb ul li:first-child a::before,
#content > footer .breadcrumb ul li::after {
	display: block;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 1em;
	aspect-ratio: 1/1;
	line-height: 1;
	background-repeat: no-repeat;
	background-size: cover;
}

#content > footer .breadcrumb ul li:first-child a {
	padding-left: 1em;
}

#content > footer .breadcrumb ul li:first-child a::before {
	content: '★';
	left: 0;
}

#content > footer .breadcrumb ul li::after {
	content: '◆';
	right: 0;
}

#content > footer .breadcrumb ul li:last-child::after {
	display: none;
}


/*	 copy
------------------------------------------------------------------------------*/

#copy {
	margin: 0;
	padding: 46px 0;
	background-color: #FFF;
	font-size: .93em;
	text-align: center;
	color: rgba(var(--main-color),1);
}

#copy::before {
	display: block;
	content: '';
	width: 94px;
	aspect-ratio: 94 / 15;
	margin: 0 auto .8em;
	background-image: url("../../common/img/icon_cmyk_circle.svg");
	background-size: contain;
	background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {

#copy {
	padding: 10vw 0;
}

#copy::before {
	width: 18vw;
}	
	
}


/*	 page_top
------------------------------------------------------------------------------*/

#page_top {
    position: fixed;
	right: 3vw;
    bottom: 3vw;
	z-index: 1000;
	width: 10vw;
	height: 10vw;	
	max-width: 60px;
	max-height: 60px;
    transition: opacity .6s;
	background-color: #FFF;
	border-radius: 4px;
	opacity: 0;
}

.moved #page_top {
	opacity: .7;
}

#page_top a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	background-color: #333;
	border-radius: 4px;
	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;
}

