@charset "UTF-8";

/* Global CSS .global-
============================================================================= */


.global-header,
.global-footer {
	color: var(--text-color-A);
	letter-spacing: 0;
}
/* 一部リニューアルだけの処理
----------------------------------------------------------------------------- */

/* Header
----------------------------------------------------------------------------- */
.global-header {
    display:flex;
    align-items: center;
    justify-content: space-between;
    width:100%;
    height:var(--header-height);
    background-color:#fff;
    z-index: 1000;
    position:fixed;
    top:0;
    transition:height var(--hover-duration-A);
}
.global-header-logo {
	height:100%;
	margin-inline: auto;
}
.global-header-logo > a {
	display:flex;
    align-items: center;
    padding-inline:.24rem;
    height:100%;
}
.global-header-logo > a > svg {
	width:1.25rem;
}
.global-header-btn {
    display:flex;
    justify-content: center;
    align-items: center;
    width:var(--header-height);
    height:var(--header-height);
    position:fixed;
	top:0;
	right:0;
	z-index: 1002;
	transition-property:background-color;
	transition-duration:var(--hover-duration-A);
	cursor: pointer;
}
.orientation-90 .global-header-btn {
	right: calc(env(safe-area-inset-left) - 0.1rem);
}
.global-header-btn > i {
	display:flex;
	justify-content: center;
	align-items: center;
	width: .50rem;
	height: .50rem;
	border-radius:50%;
	background-color:#fff;
	transition-property:background-color;
	transition-duration:var(--hover-duration-A);
}
.global-header-btn > i > i {
	width: .32rem;
	height:1px;
	background-color:var(--text-color-A);
	position:relative;
	transition:background-color var(--hover-duration-A);
	position:relative;
}
.global-header-btn > i > i::before,
.global-header-btn > i > i::after {
	content:"";
	display:block;
	/* border-radius:2px; */
	width:100%;
	height:100%;
	background-color:var(--text-color-A);
	position:absolute;
	top:0;
	left:0;
	transition:transform var(--hover-duration-A);
}
.global-header-btn > i > i::before {
	transform:translateY(-8px);
}
.global-header-btn > i > i::after {
	transform:translateY(8px);
}
.__menu-open .global-header-btn > i {
	background-color:#fff;
}
.__menu-open .global-header-btn > i > i {
	background-color:transparent;
}
.__menu-open .global-header-btn > i > i::before {
	transform:rotate(30deg);
}
.__menu-open .global-header-btn > i > i::after {
	transform:rotate(-30deg);
}
.global-header-nav {
    width:100%;
    height:100vh;
    height:100svh;
    background-color:#FFF;
    position:fixed;
	top:0;
	left:100%;
	z-index: 1000;
	overflow-y: auto;
	overscroll-behavior-y: none;
	transition-property:transform;
    transition-duration:var(--hover-duration-A);
	box-sizing: border-box;
}
.__menu-open .global-header-nav {
    transform:translateX(-100%);
}
.global-header-nav_list {
	color: var(--text-color-A);
}
.global-header-nav-item {
	display: flex;
}
.global-header-nav-item + .global-header-nav-item {
	margin-block-start: .05rem;
}
.global-header-nav-item._group-line {
	border-top: 1px solid;
	padding-block-start: .2rem;
	margin-block-start: .2rem;
}
.global-header-nav-item:last-child {
	padding-block-end: .2rem;
}
.global-header-nav-item-cat {
	display: flex;
    align-items: center;
	width: 39%;
    height: .26rem;
	font-size: .12rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.global-header-nav-item_list {
	width: calc(100% - 39%);
}
.global-header-nav-item-heading {
	font-family: var(--ff-shu);
	font-size: .14rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.75;
}
.global-header-nav-item-heading + .global-header-nav-item-heading {
    margin-block-start: .1rem;
}
.global-header-nav-item-heading  a {
	position: relative;
	display: block;
	padding-inline-start: 1.3em;
}
.no-touchevents .global-header-nav-item-heading  a { 
	transition: opacity .3s var(--easing-A);
}
.no-touchevents .global-header-nav-item-heading > a:hover {
	opacity: .7;
}
.global-header-nav-item-heading > a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0.7em;
    /* bottom: 0; */
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: transform 0.3s var(--easing-A);
    z-index: 1;
    left: 0;
}
.global-header-link {
	padding-block-end: .4rem;
}
.global-header-link-item_outer {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 3%;
}
.global-header-link-item {
}
.global-header-link-item_box {
	width: calc((100% - 3%) / 2);
	height: .45rem;
	color: var(--sub-color-gold-A);
	background-color: #fff;
	border: 1px solid var(--sub-color-gold-A);
	font-size: .14rem;
	font-weight: 600;
	line-height: 1;
}
.global-header-link-item_box >a {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	transition: opacity .3s var(--easing-A);
}
.global-header-link-item_box._sample >a  {
	padding-inline-end: .1rem;
}
.global-header-link-item_box >a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: transform 0.3s var(--easing-A);
    z-index: 1;
    right: .12rem;
}
.no-touchevents .global-header-link-item_box > a:hover {
	opacity: .7;
}
.no-touchevents .global-header-link-item_box > a:hover::before {
	transform: rotate(45deg) translate(1px, -1px);
}
.global-header-link-item {
	margin-block-start: .1rem;
}
.global-header-link-item ._link-box-B {
	width: 100%;
	height: .45rem;
}
.global-header-link-item ._link-box-B span{
	font-weight: 600;
	font-size: .14rem;
}
.global-header-link-item._contact > a{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: .45rem;
    border: 1px solid;
    font-size: .14rem;
    font-weight: 600;
	line-height: 1;
	transition: opacity .3s var(--easing-A);
	background-color: #fff;
}
.global-header-link-item._contact > a span {
	display: flex;
	align-items: center;
}
.global-header-link-item._contact > a svg {
	width: .18rem;
	height: auto;
	margin-inline-end: 8px;
}
.global-header-under {
	background-color: var(--other-color-black-A);
	color: #FFF;
}
.global-header-under_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 80%;
	margin-inline: auto;
	row-gap: 10px;
}
.global-header-under-item {
	position: relative;
    /* padding-inline: 20px; */
	font-weight: 600;
	font-size: .14rem;
	line-height: 1.75;
	width: 50%;
	text-align: center;
}
.global-header-under-item::before {
	position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: #fff;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.global-header-under-item::after {
	position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: #fff;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
.global-header-under-item:nth-child(2):before,
 .global-header-under-item:nth-child(4):before{
    display: none;
}
/* .global-header-under-item:first-child {
    padding-inline-start: 0;
} */
/* .global-header-under-item:last-child {
	padding-inline-end: 0;
    position: static;
} */
.global-header-under-detail {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 8%;
	margin-block-start: .14rem;
	margin-inline: auto;
	width: 80%;
}
.global-header-under-detail-item {
	font-weight: 600;
	font-size: .11rem;
	line-height: 2.75;
}
.global-header-under-sns {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
	margin-block-start: .2rem;
}
.global-header-under-sns-item svg path{
	fill: #FFF;
}
.no-touchevents .global-header-under-item a,
.no-touchevents .global-header-under-detail-item a,
.no-touchevents .global-header-under-sns-item a {
	transition: opacity .3s var(--easing-A);
}
.no-touchevents .global-header-under-item a:hover,
.no-touchevents .global-header-under-detail-item a:hover,
.no-touchevents .global-header-under-sns-item a:hover {
	opacity: .7;
}

.js-header-secondmenu .global-header-nav-item-heading {
}
.js-header-secondmenu .global-header-nav-item-heading > p {
	padding-inline-start: 0;
}
.js-header-secondmenu .global-header-nav-item-heading > p::before {
	content: none;
	display: none;
}
.js-header-secondmenu .global-header-nav-item-heading > p span {
	position: relative;
	display: inline-block;
	padding-right: .25rem;
	cursor: pointer;
	transition: opacity var(--hover-duration-A);
}
.no-touchevents .js-header-secondmenu .global-header-nav-item-heading > p span:hover {
	opacity: .7;
}
.js-header-secondmenu .global-header-nav-item-heading > p span::before,
.js-header-secondmenu .global-header-nav-item-heading > p span::after {
	position: absolute;
	content: "";
	display: block;
	top: 0;
    bottom: 0;
    margin: auto 0;
	background-color: var(--text-color-A);
	z-index: 1;
}
.js-header-secondmenu .global-header-nav-item-heading > p span::before {
	width: .09rem;
	height: 1px;
	right: 0.05rem;
}
.js-header-secondmenu .global-header-nav-item-heading > p span::after {
	width: 1px;
	height: .09rem;
	right: .09rem;
	transform-origin: left center;
	transition: opacity var(--hover-duration-A), transform var(--hover-duration-A);
}
.js-header-secondmenu .global-header-nav-item-heading[aria-expanded="true"] > p span::after {
	width: 1px;
	height: .09rem;
	transform: rotate(45deg);
	opacity: 0;
}
.global-header-nav-item-second-item {
	font-family: var(--ff-shu);
	font-size: .14rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.75;
	padding-block-start: .05rem;
}
.global-header-nav-item-second-item a {
	position: relative;
	display: block;
	padding-inline-start: 1.3em;
}
.global-header-nav-item-second-item > a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0.7em;
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    z-index: 1;
    left: 0;
}
.no-touchevents .global-header-nav-item-second-item > a:hover {
	opacity: .7;
}
.global-header-nav .lang-btn_wrap {
    position: relative;
    top: -0.05rem;
	margin-left: 0.48rem;
}
@media screen and (min-width: 641px) {
	.global-header-btn {
		right: .5rem;
	}
	.global-header-nav {
		padding-block-start:var(--header-height);
		width: 4.7rem;
	}
	.global-header-nav_list {
		padding-block-start: .4rem;
		padding-inline: .64rem;
	}
	.global-header-link {
		padding-inline: .64rem;
	}
	.global-header-under {
		padding-inline: .64rem;
		padding-block: .42rem;
	}
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	.global-header-nav {
		width: 50%;
	}
}
@media screen and (max-width:640px) {
	.global-header-logo > a > img {
		width:1.04rem;
	}
	.global-header-nav {
		top: var(--header-height);
	}
	.global-header-nav_list {
		padding-block-start: .4rem;
		padding-inline: .16rem;
	}
	.global-header-link {
		padding-inline: .16rem;
	}
	.global-header-under {
		padding-inline: .16rem;
		padding-block: .25rem .85rem;
	}
	.global-header-under-sns-item svg {
		transform: scale(0.9);
	}
}

/* TopicPath
----------------------------------------------------------------------------- */
.global-topicpath {
	display:flex;
	align-items: center;
	width: 100%;
	padding:.10rem .36rem;
	overflow-x:auto;
	border-top: 1px solid rgba(var(--other-color-gray-B-rgba), .8);
}
.global-topicpath-item {
	position: relative;
	flex-shrink: 0;
	display: inline-block;
	color:#555;
	font-size:.12rem;
	line-height: 1;
  }
  .global-topicpath-item + .global-topicpath-item::before {
	content:"";
	display: inline-block;
    margin-inline: 1em;
    width: .05rem;
    height: .05rem;
    margin-block-end: .01rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
  }

  .global-topicpath-item a {
	transition: opacity var(--hover-duration-A);
  }
  .no-touchevents .global-topicpath-item a:hover {
	opacity: .6;
  }
  @media (max-width:640px) {
	.global-topicpath {
	  padding-left: 0;
	  padding-right: 0;
	  margin: 0 0.23rem;
	}
  }

/* Footer
----------------------------------------------------------------------------- */

.global-footer {
}
.global-footer-upper {
	width: 100%;
	box-sizing: border-box;
}
.global-footer-upper_list {
	color: var(--text-color-A);
}
.global-footer-upper-item {
	display: flex;
}
.global-footer-upper-item + .global-footer-upper-item {
	margin-block-start: .05rem;
}
.global-footer-upper_list_inner:has(.global-footer-upper-item:nth-child(2)) .global-footer-upper-item:last-child {
	padding-block-end: .2rem;
}
.global-footer-upper-item-cat {
	display: flex;
    align-items: center;
	width: 39%;
    height: .26rem;
	font-size: .12rem;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.global-footer-upper-item_list {
	width: calc(100% - 39%);
}
.global-footer-upper-item-heading {
	font-family: var(--ff-shu);
	font-size: .14rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.75;
}
.global-footer-upper-item-heading + .global-footer-upper-item-heading {
    margin-block-start: .1rem;
}
.global-footer-upper-item-heading > a {
	position: relative;
	display: block;
	padding-inline-start: 1.3em;
	transition: opacity .3s var(--easing-A);
}
.no-touchevents .global-footer-upper-item-heading > a:hover {
	opacity: .7;
}
.global-footer-upper-item-heading > a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0.7em;
    /* bottom: 0; */
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: transform 0.3s var(--easing-A);
    z-index: 1;
    left: 0;
}
.global-footer-upper-link {
}
.global-footer-upper-link-item_outer {
	display: flex;
	align-items: center;
	width: 100%;
	gap: 3%;
}
.global-footer-upper-link-item {
}
.global-footer-upper-link-item_box {
	width: calc((100% - 3%) / 2);
	height: .45rem;
	color: var(--sub-color-gold-A);
	background-color: #fff;
	border: 1px solid var(--sub-color-gold-A);
	font-size: .14rem;
	font-weight: 600;
	line-height: 1;
}
.global-footer-upper-link-item_box >a {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: center;
	text-align: center;
	width: 100%;
	height: 100%;
	box-sizing: border-box;
	transition: opacity .3s var(--easing-A);
}
.global-footer-upper-link-item_box._sample >a  {
	padding-inline-end: .1rem;
}
.global-footer-upper-link-item_box >a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: transform 0.3s var(--easing-A);
    z-index: 1;
    right: .12rem;
}
.no-touchevents .global-footer-upper-link-item_box > a:hover {
	opacity: .7;
}
.no-touchevents .global-footer-upper-link-item_box > a:hover::before {
	transform: rotate(45deg) translate(1px, -1px);
}
.global-footer-upper-link-item {
	margin-block-start: .1rem;
}
.global-footer-upper-link-item ._link-box-B {
	width: 100%;
	height: .45rem;
}
.global-footer-upper-link-item ._link-box-B span{
	font-weight: 600;
	font-size: .14rem;
}
.global-footer-upper-link-item._contact > a{
	display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: .45rem;
    border: 1px solid;
    font-size: .14rem;
    font-weight: 600;
	line-height: 1;
	transition: opacity .3s var(--easing-A);
	background-color: #fff;
}
.global-footer-upper-link-item._contact > a span {
	display: flex;
	align-items: center;
}
.global-footer-upper-link-item._contact > a svg {
	width: .18rem;
	height: auto;
	margin-inline-end: 8px;
}
.global-footer-under {
	background-color: var(--other-color-black-A);
	color: #FFF;
}

.global-footer-under-logo {
}
.global-footer-under-logo > a {
	display: block;
	width:1.25rem;
}
.global-footer-under-logo > a > svg {
	display: block;
	width: 100%;
	height: auto;
}
.global-footer-under_list {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}
.global-footer-under-item {
	position: relative;
    padding-inline: 20px;
	font-weight: 600;
	font-size: .14rem;
	line-height: 1.75;
}
.global-footer-under-item::after {
	position: absolute;
    content: "";
    display: block;
    width: 1px;
    height: 10px;
    background: #fff;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto 0;
}
@media screen and (min-width: 641px) {
	.global-footer-under-item:first-child {
		padding-inline-start: 0;
	}
	.global-footer-under-item:last-child {
		padding-inline-end: 0;
		position: static;
	}
}

@media screen and (max-width:640px) {
	.global-footer-under_list {
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		width: 80%;
		margin-inline: auto;
		row-gap: 10px;
	}
	.global-footer-under-item {
		position: relative;
		padding-inline: 0;
		font-weight: 600;
		font-size: .14rem;
		line-height: 1.75;
		width: 50%;
		text-align: center;
	}
	.global-footer-under-item::after {
		position: absolute;
		content: "";
		display: block;
		width: 1px;
		height: 10px;
		background: #fff;
		right: 0;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	.global-footer-under-item::before {
		position: absolute;
		content: "";
		display: block;
		width: 1px;
		height: 10px;
		background: #fff;
		left: 0;
		top: 0;
		bottom: 0;
		margin: auto 0;
	}
	.global-footer-under-item:nth-child(2):before,
	.global-footer-under-item:nth-child(4):before{
		display: none;
	}
}
.global-footer-under-detail {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	gap: 8%;
	margin-block-start: .14rem;
}
@media screen and (max-width:640px) {
	.global-footer-under-detail {
		justify-content: space-between;
		width: 80%;
		margin-inline: auto;
	}
}
.global-footer-under-detail-item {
	font-weight: 600;
	font-size: .11rem;
	line-height: 2.75;
}
.global-footer-under-sns {
	display: flex;
    align-items: center;
    justify-content: center;
    gap: 23px;
}
.global-footer-under-sns-item svg {
	display: block;
}
.global-footer-under-sns-item svg path{
	fill: #FFF;
}
.global-footer-under_bottom {
	border-top: 1px solid #FFF;
}
.global-footer-copyright > *{
	font-size: .12rem;
	letter-spacing: 0.1em;
	line-height: 1;
}
.no-touchevents .global-footer-under-item a,
.no-touchevents .global-footer-under-detail-item a,
.no-touchevents .global-footer-under-sns-item a {
	transition: opacity .3s var(--easing-A);
}
.no-touchevents .global-footer-under-item a:hover,
.no-touchevents .global-footer-under-detail-item a:hover,
.no-touchevents .global-footer-under-sns-item a:hover {
	opacity: .7;
}
@media screen and (max-width:640px) {
	.js-footer-secondmenu .global-footer-upper-item-heading > p span {
		position: relative;
		display: inline-block;
		padding-right: .25rem;
		cursor: pointer;
		transition: opacity var(--hover-duration-A);
	}
	.no-touchevents .js-footer-secondmenu .global-footer-upper-item-heading > p span:hover {
		opacity: .7;
	}
	.js-footer-secondmenu .global-footer-upper-item-heading > p span::before,
	.js-footer-secondmenu .global-footer-upper-item-heading > p span::after {
		position: absolute;
		content: "";
		display: block;
		top: 0;
		bottom: 0;
		margin: auto 0;
		background-color: var(--text-color-A);
		z-index: 1;
	}
	.js-footer-secondmenu .global-footer-upper-item-heading > p span::before {
		width: .09rem;
		height: 1px;
		right: 0.05rem;
	}
	.js-footer-secondmenu .global-footer-upper-item-heading > p span::after {
		width: 1px;
		height: .09rem;
		right: .09rem;
		transform-origin: left center;
		transition: opacity var(--hover-duration-A), transform var(--hover-duration-A);
	}
	.js-footer-secondmenu .global-footer-upper-item-heading[aria-expanded="true"] > p span::after {
		width: 1px;
		height: .09rem;
		transform: rotate(45deg);
		opacity: 0;
	}
	/*.global-footer-upper-item-second {
		height:0;
		overflow:hidden;
		font-size:.14rem;
		transition:opacity var(--hover-duration-A);
		opacity:0;
	}
	.global-footer-upper-item-second.__accordion-active {
		height:auto;
		opacity:1;
	}*/
}
.global-footer-upper-item-second-item {
	font-family: var(--ff-shu);
	font-size: .14rem;
	font-weight: 600;
	letter-spacing: 0.1em;
	line-height: 1.75;
	margin-block-start: .05rem;
}
.global-footer-upper-item-second-item a {
	position: relative;
	display: block;
	padding-inline-start: 1.3em;
}
.global-footer-upper-item-second-item > a::before {
	position: absolute;
    content: "";
    display: block;
    top: 0.7em;
    /* bottom: 0; */
    margin: auto 0;
    width: .06rem;
    height: .06rem;
    border-top: 1px solid;
    border-right: 1px solid;
    transform: rotate(45deg);
    transition: transform 0.3s var(--easing-A);
    z-index: 1;
    left: 0;
}
.no-touchevents .global-footer-upper-item-second-item  a { 
	transition: opacity .3s var(--easing-A);
}
.no-touchevents .global-footer-upper-item-second-item > a:hover {
	opacity: .7;
}

@media screen and (min-width: 641px) {
	.global-footer {
		background-color: var(--bg-color-gray-A);
	}
	.global-footer-upper {
		padding-block: .7rem;
		display: flex;
		justify-content: space-between;
		max-width: 10.88rem;
		margin-inline: auto;
		width: 90%;
	}
	.global-footer-upper_list {
		display: flex;
		width: 60%;
		gap: 1%;
	}
	.global-footer-upper_list_inner {
		width: 50%;
	}
	.global-footer-upper-item-heading {
		white-space: nowrap;
	}
	.global-footer-upper-link {
		width: 32%;
		min-width: 3.0rem;
	}
	.global-footer-upper-link-item_box >a::before { 
		right: 8%;
	}
	.global-footer-under {
		padding-inline: .6rem;
	}
	.global-footer-under_top {
		display: flex;
		justify-content: space-between;
		padding-block: .64rem .54rem;
		width: 100%;
	}
	.global-footer-under-logo {
		order: 0;
	}
	.global-footer-under_main {
		order: 1;
		width: 50%;
	}
	.global-footer-under-sns {
		order: 3;
	}
	.global-footer-under-logo > a > img {
		width:1.24rem;
	}
	.global-footer-under-detail {
		margin-block-start: .25rem;
		gap: 24px;
	}
	.global-footer-under-detail-item {
		font-size: .12rem;
	}
	.global-footer-under_bottom {
		padding-block: .24rem .47rem;
	}
}
@media screen and (min-width: 641px) and (max-width: 1024px){
	.global-footer-upper {
		max-width: 14rem;
		width: 100%;
	}
}
@media screen and (max-width:640px) {
	.global-footer-upper {
		top: var(--footer-height);
		padding-block: .4rem;
		padding-inline: .16rem;
		background-color: var(--bg-color-gray-A);
	}
	
	.global-footer-upper-item._group-line {
		border-top: 1px solid;
		padding-block-start: .2rem;
		margin-block-start: .2rem;
	}
	.global-footer-under-logo {
		display:flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		padding-block: .64rem;
	}
	.global-footer-under-logo > a > img {
		width:1.04rem;
	}
	.global-footer-under {
		padding-inline: .16rem;
		padding-block-start: .5rem;
	}
	.global-footer-under-sns-item svg {
		transform: scale(0.9);
	}
	.global-footer-under_bottom {
		margin-block-start: .29rem;
		padding-block: .29rem;
	}
	.global-footer-copyright {
		font-size: .1rem;
	}
}

/* アコーディオン
----------------------------------------------------------------------------- */
.js-accordion-button {
	cursor: pointer;
	font-weight:500;
	color: var(--text-color-A);
}
@media print, screen and (min-width: 641px) {
	.js-accordion-button:not(.__sp) {
		cursor: pointer;
	}
}
@media screen and (max-width: 640px) {
	.js-accordion-button:not(.__pc) {
		cursor: pointer;
	}
}
.js-accordion-target {
	overflow: hidden;
	position: relative;
}
.js-accordion-target[aria-hidden=true] {
	height: 0;
}
.js-accordion-target[aria-hidden=false] {
	z-index: 1;
}