/* ==========================================================================//
// Components（footer）
// ========================================================================== */
/* サイトフッター
---------------------------------------------------------- */
.c-footer__top {
  position: relative;
  background: linear-gradient(225deg, #005bac 0%, #82A2AC 100%);
  background: linear-gradient(225deg, var(--color-blue) 0%, #82A2AC 100%);
  padding: 36px 0 40px;
}
.c-footer__topText {
  margin-bottom: 20px;
  color: #ffffff;
  color: var(--color-white);
  font-size: 1rem;
  font-size: var(--font-size-16);
  font-weight: 700;
  font-weight: var(--font-weight-bold);
  text-align: center;
}
@media (min-width: 1024px) {
  .c-footer__topText {
    margin-bottom: 48px;
    font-size: 1.5rem;
    font-size: var(--font-size-24)
  }
}
.c-footer__middle {
  background-color: #ffffff;
  padding: 24px 16px;
}
@media (min-width: 1024px) {
  .c-footer__middle {
    padding: 48px 16px
  }
}
.c-footer__bottom {
  display: none;
}
@media (min-width: 1024px) {
  .c-footer__bottom {
    display: block;
    border-top: 1px solid #f2f4f5
  }
}
/* ページ先頭に戻るボタン */
.c-footerPageTop {
  position: absolute;
  z-index: 10;
  width: 48px;
  height: 104px;
  right: 16px;
  bottom: 129px;
  background: url("/common/image/btn/btn_footer_to_top.png") 0 0 no-repeat;
  background-size: contain;
  border: none;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-footerPageTop {
    background: transparent;
    width: 56px;
    height: 128px;
    right: 32px;
    bottom: 74px
  }
}
.c-footerPageTop:hover {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.c-footerPageTop > img {
  display: none;
}
@media (min-width: 1024px) {
  .c-footerPageTop > img {
    display: block
  }
}
/* GMOグループバナー */
.c-footerGroupBannerArea.splide {
  padding-bottom: 72px;
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide {
    padding-bottom: 120px
  }
}
.c-footerGroupBannerArea.splide .splide__arrow {
  color: #ffffff;
  color: var(--color-white);
}
.c-footerGroupBannerArea.splide .splide__arrow::before {
  color: #ffffff;
  color: var(--color-white);
}
.c-footerGroupBannerArea.splide .splide__arrows {
  position: absolute;
  bottom: 41px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
}
.c-footerGroupBannerArea.splide .splide__arrow {
  position: relative;
  background: transparent;
  width: 24px;
  height: 12px;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: all 0.3s ease;
  font-family: "Marcellus", serif;
  font-family: var(--font-family-en);
  color: #ffffff;
  color: var(--color-white);
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__arrow {
    width: auto;
    height: auto
  }
}
.c-footerGroupBannerArea.splide .splide__arrow::before {
  content: '';
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 12px;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: currentColor;
  color: #ffffff !important;
  color: var(--color-white) !important;
}
.c-footerGroupBannerArea.splide .splide__arrow--prev {
  padding-left: 20px;
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__arrow--prev {
    padding-left: 36px
  }
}
.c-footerGroupBannerArea.splide .splide__arrow--prev::before {
  left: 0;
  -webkit-mask-image: url('/common/image/ico/ico_slider_arrow_prev.svg');
  mask-image: url('/common/image/ico/ico_slider_arrow_prev.svg');
}
.c-footerGroupBannerArea.splide .splide__arrow--next {
  padding-right: 20px;
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__arrow--next {
    padding-right: 36px
  }
}
.c-footerGroupBannerArea.splide .splide__arrow--next::before {
  right: 0;
  -webkit-mask-image: url('/common/image/ico/ico_slider_arrow_next.svg');
  mask-image: url('/common/image/ico/ico_slider_arrow_next.svg');
}
@media (hover: hover) {
  .c-footerGroupBannerArea.splide .splide__arrow:hover {
    opacity: 0.75;
    opacity: var(--opacity-default);
  }
}
.c-footerGroupBannerArea.splide .splide__arrow > span {
  display: none;
  color: #ffffff;
  color: var(--color-white);
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__arrow > span {
    display: block
  }
}
.c-footerGroupBannerArea.splide .splide__pagination {
  display: flex !important;
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__pagination {
    margin: 0 48px
  }
}
.c-footerGroupBannerArea.splide .splide__pagination > li {
  display: grid;
  align-items: center;
  justify-items: center;
  place-items: center;
}
.c-footerGroupBannerArea.splide .splide__pagination__page {
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 12px;
  height: 2px;
  margin: 0 4px;
  background-color: #6196bd;
  transition: all 0.3s ease;
}
@media (min-width: 768px) {
  .c-footerGroupBannerArea.splide .splide__pagination__page {
    width: 24px
  }
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__pagination__page {
    width: 65px
  }
}
.c-footerGroupBannerArea.splide .splide__pagination__page.is-active {
  background-color: #ffffff;
  background-color: var(--color-white);
}
@media (hover: hover) {
  .c-footerGroupBannerArea.splide .splide__pagination__page:hover {
    background-color: #ffffff;
    background-color: var(--color-white);
  }
}
.c-footerGroupBannerArea.splide .splide__slide img {
  width: auto;
  height: 40px;
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__slide img {
    width: auto;
    height: 40px
  }
}
@media (min-width: 1024px) {
  .c-footerGroupBannerArea.splide .splide__toggle {
    margin-left: 48px
  }
}
.c-footerGroupBannerArea.splide .splide__toggle .splide__toggle__pause::before {
  background: url(/common/image/ico/ico_slider_pause_white.svg) no-repeat top left / contain;
}
.c-footerGroupBanner__item > a,
.c-footerGroupBanner__item > span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 8px 8px;
  border-radius: 6px;
  background-color: #ffffff;
  background-color: var(--color-white);
}
@media (min-width: 1024px) {
  .c-footerGroupBanner__item > a,
  .c-footerGroupBanner__item > span {
    padding: 12px 12px;
    border-radius: 8px
  }
}
.c-footerGroupBanner__item > a {
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .c-footerGroupBanner__item > a:hover {
    opacity: 0.75;
    opacity: var(--opacity-default);
  }
}
.c-footerGroupBanner__item img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.c-footerGroupBanner.splide__list {
  height: auto;
}
/* フッターメインエリア */
.c-footerMain {
  position: relative;
}
.c-footerMain::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image : linear-gradient(to right, #8d8d8d 4px, transparent 4px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
@media (min-width: 1024px) {
  .c-footerMain::before {
    display: none
  }
}
.c-footerMain__top {
  padding: 40px 16px;
}
.c-footerMain__bottom {
  position: relative;
  padding: 40px 16px 0;
}
@media (min-width: 1024px) {
  .c-footerMain__bottom {
    padding: 40px 16px
  }
}
.c-footerMain__bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-image : linear-gradient(to right, #8d8d8d 4px, transparent 4px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
/* フッターナビゲーションエリア */
@media (min-width: 768px) {
  .c-footerNavi {
    max-width: 1200px;
    margin: 0 auto
  }
}
@media (min-width: 1024px) {
  .c-footerNaviBlock {
    margin-bottom: 24px
  }
  .c-footerNaviBlock:last-child {
    margin-bottom: 0;
  }
}
.c-footerNaviBlock__item{
  position: relative;
  border-top: 1px solid #8d8d8d;
}
.c-footerNaviBlock__item::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 16px;
  height: 1px;
  background-color: #ffffff;
  background-color: var(--color-white);
}
@media (min-width: 1024px) {
  .c-footerNaviBlock__item::before {
    width: 48px
  }
}
.c-footerNaviBlock__title > span,
.c-footerNaviBlock__title > a {
  display: block;
  padding: 20px 0;
  color: #ffffff;
  color: var(--color-white);
  font-size: 1rem;
  font-size: var(--font-size-16);
  font-family: "Marcellus", serif;
  font-family: var(--font-family-en);
  -webkit-text-decoration: none;
  text-decoration: none;
  line-height: 1;
  cursor: pointer;
}
@media (min-width: 1024px) {
  .c-footerNaviBlock__title > span,
  .c-footerNaviBlock__title > a {
    padding: 24px 0;
    font-size: 1.5rem;
    font-size: var(--font-size-24)
  }
}
.c-footerNaviBlock__title > a:hover {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.c-footerNaviBlock__item--accordion {
  margin-bottom: 20px;
}
@media (min-width: 1024px) {
  .c-footerNaviBlock__item--accordion {
    margin-bottom: 0
  }
}
.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title > span {
  position: relative;
}
.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title > span::before,
.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title > span::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  top: 50%;
  right: 20px;
  background-color: #ffffff;
  background-color: var(--color-white);
}
.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title > span::after {
  transform: rotate(90deg);
  transform-origin: center center;
}
.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title.is-active > span::after {
  opacity: 0;
}
@media (min-width: 1024px) {
  .c-footerNaviBlock--3col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 48px;
    gap: 48px
  }
}
@media (min-width: 1024px) {
}
@media (min-width: 1024px) {
  .c-footerNaviBlock--2to1col {
    display: grid;
    grid-template-columns: 2.13fr 1fr;
    grid-gap: 48px;
    gap: 48px
  }
}
.c-footerNaviBlock__body {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-out;
}

.c-footerNaviBlock__item--accordion .c-footerNaviBlock__title.is-active + .c-footerNaviBlock__body {
  max-height: inherit;
}

@media (min-width: 1024px) {

  .c-footerColumn {
    display: flex
  }
  .c-footerColumn .c-footerUnit--w25per {
    width: 25%;
  }
  .c-footerColumn .c-footerUnit--w50per {
    width: 50%;
  }
  .c-footerColumn .c-footerUnit--w75per {
    width: 75%;
  }
}
@media (min-width: 1024px) {
  .c-footerColumn + .c-footerColumn {
    margin-top: 48px
  }
}

.c-footerUnit__title {
  margin-bottom: 20px;
  color: #ffffff;
  color: var(--color-white);
  font-size: 0.75rem;
  font-size: var(--font-size-12);
  font-weight: 700;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

@media (min-width: 1024px) {

  .c-footerUnit__title {
    margin-bottom: 24px;
    font-size: 1rem;
    font-size: var(--font-size-16)
  }
}
.c-footerUnit + .c-footerUnit {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .c-footerUnit + .c-footerUnit {
    margin-top: 0
  }
}

@media (min-width: 1024px) {

  .c-footerUnit--w75per .c-footerUnitColumn:not(.c-footerUnitColumn--noGrid) {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr
  }
}
@media (min-width: 1024px) {
  .c-footerUnit--w50per .c-footerUnitColumn:not(.c-footerUnitColumn--noGrid) {
    display: grid;
    grid-template-columns: 1fr 1fr
  }
}

.c-footerUnitNavi__title {
  display: flex;
  align-items: center;
  position: relative;
  margin-bottom: 15px;
  color: #9fbed6;
  font-size: 0.75rem;
  font-size: var(--font-size-12);
  font-weight: 700;
  font-weight: var(--font-weight-bold);
  line-height: 1.5;
}

.c-footerUnitNavi__title::after {
  content: "";
  display: block;
  margin-left: 10px;
  flex: 1;
  width: 100%;
  height: 1px;
  background-image: linear-gradient(to right, #8d8d8d 4px, transparent 4px);
  background-size: 10px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
}

@media (min-width: 1024px) {

  .c-footerUnitNavi__title::after {
    display: none
  }
}

.c-footerUnitNavi .c-footerUnitNaviList {
  margin-bottom: 20px;
}

@media (min-width: 1024px) {

  .c-footerUnitNavi .c-footerUnitNaviList {
    margin-bottom: 24px
  }
}

.c-footerUnitNavi .c-footerUnitNaviList:last-child {
  margin-bottom: 0;
}
.c-footerUnitNavi + .c-footerUnitNavi {
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .c-footerUnitNavi + .c-footerUnitNavi {
    margin-top: 0
  }
}

@media (min-width: 1024px) {

  .c-footerUnitNaviListColumn {
    display: grid;
    grid-template-columns: 1fr 1fr
  }
}

.c-footerUnitNaviList {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin-top: -12px;
}

@media (min-width: 1024px) {

  .c-footerUnitNaviList {
    display: block;
    margin-top: -8px
  }
}

.c-footerUnitNaviList__item {
  position: relative;
  width: 50%;
  padding-left: 8px;
  margin-top: 12px;
}

@media (min-width: 1024px) {

  .c-footerUnitNaviList__item {
    width: 100%;
    padding-left: 12px;
    margin-top: 8px
  }
}

.c-footerUnitNaviList__item::before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 3px;
  height: 2px;
  background-color: #455459;
  background-color: var(--color-gray);
}

@media (min-width: 1024px) {

  .c-footerUnitNaviList__item::before {
    width: 4px
  }
}

.c-footerUnitNaviList__item a {
  color: #ffffff;
  color: var(--color-white);
  font-size: 0.75rem;
  font-size: var(--font-size-12);
  -webkit-text-decoration: none;
  text-decoration: none;
}

.c-footerUnitNaviList__item a:hover {
  -webkit-text-decoration: underline;
  text-decoration: underline;
}


/* フッターリンク、コピーライト */
@media (min-width: 1024px) {
  .c-footerSubAssembly {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto
  }
}
.c-footerLinks {
  display: flex;
  flex-wrap: wrap;
  padding: 0 69px 0 0;
  gap: 13px;
  list-style-type: none;
}
@media (min-width: 1024px) {
  .c-footerLinks {
    gap: 24px
  }
}
.c-footerLinks__item {
  line-height: 1;
}
@media (min-width: 1024px) {
  .c-footerLinks__item {
    padding-right: 24px;
    border-right: 1px solid #f2f4f5;
    border-right: 1px solid var(--color-gray-light)
  }
  .c-footerLinks__item:last-child {
    border: none;
  }
}
.c-footerLinks__link {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  color: var(--color-white);
  font-size: 0.625rem;
  font-size: var(--font-size-10);
  -webkit-text-decoration: underline;
  text-decoration: underline;
}
.c-footerLinks__link:hover {
  -webkit-text-decoration: none;
  text-decoration: none;
  transition: all 0.3s ease;
}
.c-footerCopyrights {
  margin-top: 40px;
  color: #ffffff;
  color: var(--color-white);
  font-size: 0.625rem;
  font-size: var(--font-size-10);
  font-family: "Marcellus", serif;
  font-family: var(--font-family-en);
  letter-spacing: 0.05em;
}
@media (min-width: 1024px) {
  .c-footerCopyrights {
    margin-top: 0;
    font-size: 0.75rem;
    font-size: var(--font-size-12)
  }
}
/* フッターバナー */
.c-footerBannerArea {
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .c-footerBannerArea {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 48px
  }
  .c-footerBannerArea::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-image : linear-gradient(to right, #dadadb 4px, transparent 4px);
    background-size: 10px 2px;
    background-repeat: repeat-x;
    background-position: left bottom;
  }
}
.c-footerBanner {
  width: 100%;
  display:grid;
  grid-template-columns: auto auto auto;
  grid-gap: 8px;
  gap: 8px;
  list-style-type: none;
}
@media (min-width: 768px) {
  .c-footerBanner {
    display: flex;
    justify-content: flex-start;
    gap: 48px
  }
}
.c-footerBanner__item img {
  width: auto;
  height: 11.7vw;
  max-width: 100%;
}
@media (min-width: 768px) {
  .c-footerBanner__item img {
    width: auto;
    height: 88px;
    max-width: none
  }
}
.c-footerBanner__link {
  display: inline-block;
  vertical-align: middle;
}
.c-footerBanner__link:hover {
  opacity: 0.75;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
	.c-footerLogoArea {
	  max-width: 1200px;
	  margin: 0 auto;
	  padding-top: 20px;
	  padding-bottom: 48px
	}
  }

.c-footerLogo {
  list-style-type: none;
  margin-top: 40px;
}
@media (min-width: 1024px) {
  .c-footerLogo {
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-right: 60px;
  }
}
.c-footerLogo__item {
  display: flex;
  margin-bottom: 24px;
}
@media (min-width: 1024px) {
  .c-footerLogo__item {
    margin-bottom: 0
  }
}
.c-footerLogo__item:last-child {
  margin-bottom: 0;
}
.c-footerLogo__link {
  display: inline-block;
  vertical-align: middle;
}
.c-footerLogo__link:hover {
  opacity: 0.75;
  transition: all 0.3s ease;
}
.c-footerLogo__image img {
  width: auto;
  max-width: inherit;
  height: 44px;
}
@media (min-width: 768px) {
  .c-footerLogo__image img {
    height: 76px
  }
}
.c-footerLogo__content {
  flex: 1;
  margin-left: 16px;
  font-size: 0.625rem;
  font-size: var(--font-size-10);
}
@media (min-width: 768px) {
  .c-footerLogo__content {
    font-size: 0.75rem;
    font-size: var(--font-size-12)
  }
}
.c-footerLogo__name {
  margin-bottom: 5px;
  font-weight: 700;
  font-weight: var(--font-weight-bold);
}
@media (min-width: 768px) {
  .c-footerLogo__name {
    margin-bottom: 10px
  }
}
.c-footerLogo + .c-footerLogo {
  margin-top: 30px;
}



/* セキュリティフッター */
.securityfooter_box {
	width: 100%;
	margin: 0 auto;
	margin-top: 40px;
}

.securityfooter_box_logo {
	max-width: 1040px;
	margin: 0 auto;
	margin-bottom: 20px;
	margin-top: 20px;
	padding: 0 10px;
	display: flex;
	justify-content: start;
	gap: 20px;
}

.securityfooter_box_logo div {
	line-height: initial;
}

.securityfooter_box_logo div img {
	vertical-align: middle;
}

.securityfooter_box_seals {
	margin: 40px 0;
}

.securityfooter_box_seals ul {
	list-style-type: none;
	display: flex;
	gap: 20px;
	justify-content: center;
}

@media (min-width: 834px) {
		.securityfooter_box_seals ul img {
		width: 130px;
	}
}


@media (max-width: 833px) {
	.securityfooter_box {
		width: 100%;
	}

	.securityfooter_box_logo{
		flex-direction: column;
		gap: 0;
		align-items: center;
	}

	.securityfooter_box_logo div {
		margin: 10px 0;
		display: block;
	}

	.securityfooter_box_seals ul {
		margin: 0 10px;
		max-width: 100%;
	}

	.securityfooter_box_seals ul img {
		max-width: 130px;
		width: 100%;
	}

}

/* footer
--------------------------------------------------- */
 .footer_show {
	 display: block;
 }

.footer_block p, .footer_block li, .footer_block dl dt, .footer_block dl dd, .footer_block th, .footer_block td {
	font-size: 14px;
	line-height: 1.8;
}

#footerservice_on {
	display: block;
}

#footerservice_off {
	display: none;
}

.common_footer a {
	color: #ffffff;
	text-decoration: none;
	line-height: 1rem;
}

.common_footer a:hover {
	text-decoration: underline;
}

footer #footer_btn_area {
	width: 100%;
	padding: 40px 20px;
	box-sizing: border-box;
	padding-top: 60px;
	background-color: #333333;
	color: #ffffff;
}


footer #footer_btn_box {
	max-width: 1084px;
	width: auto !important;
	width: 1084px;
	margin: 0 auto;
	box-sizing: border-box;
	margin-bottom: 30px;
}

.common_footer > #footer1 {
	width:100%;
	padding:0;
	/* background-color: #f5f5f5; */
}

.footer_block {
	max-width:1084px;
	margin:0 auto;
	display:none;
	display: block;
}

.footer_block:after {
	clear: both;
	content:".";
	display: block;
	height: 0;
	visibility: hidden;
}

.footer_block ul li {
	font-size: 12px;
	padding-left:7px;
	background-position: left 7px;
}

.foot_category {
	margin: 30px 10px 0 5px;
	text-align:left;
	border-bottom:solid 1px #b6b6b6;
}

.foot_category > p {
	font-size:13px;
	font-weight:normal;
}

.footer_box {
	width: 100%;
	clear:both;
	overflow: hidden;
}

.footer_w30 {
	float: left;
	text-align: left;
	padding: 20px 10px 0 5px;
	width: 33.3%;
	box-sizing: border-box;
}

.footer_w25 {
	float: left;
	text-align: left;
	width: 25%;
	box-sizing: border-box
}

.footer_w18 {
	float: left;
	text-align: left;
	width: 18.75%;
	box-sizing: border-box
}

.footer_w25 div:nth-of-type(2) , .footer_w18 div:nth-of-type(2) {
	padding: 20px 10px 0 5px;
}

/* GMO Footer
---------------------------------------------------------- */

.gmofooter_container {
	margin: 0 auto;
}

html[lang=ja] #gmofooter {
	display: block;
}

html[lang=en] #gmofooter {
	display: none;
}

/* ------------------------ footer ----------------------*/

.footer_area a, .footer_area a:visited {
	color: #ffffff !important;
}

footer > #footer1 > .footer_block {
	display: block !important;
}

#footer2 a {
	color: #5a5858;
	line-height: 1.8;
}


#footer2 .line {
    padding: 0;
    margin: 0 auto;
    text-align: left;
}

#footer2 .line .box2 {
    text-align: left;
    vertical-align: middle;
    float: left;
}

#footer2 .copyright {
    float: right;
}

#footer2, .gmofooter {
    margin: 0 auto;
    padding: 40px 5px;
}

footer > #footer3 {
	/* background-color: #f5f5f5; */
}

footer > #footer3 p a {
	color: #C76C69 !important;
}

footer > #footer1 > .sns_btn {
	background: #333;
}

#footer2, .gmofooter {
	padding: 40px 10px;
	font-size: 0.8rem;
}


#footer1 > .sns_btn {
	max-width:1084px;
	margin:0 auto;
	padding:0 0 50px 5px;
	background: initial;
	margin-top: 50px;
}

footer #footer_btn {
	width: 210px;
	height: 20px;
	cursor:pointer;
	display:block;
	background:url(/common/img/btn_foot_close.png) left bottom no-repeat;
	text-align: left;
	padding-left: 22px;
}

#footer1 > .sns_btn > .wrap {
	width:350px;
	height:50px;
	border:solid 1px #b0afab;
	margin-left:0;
}

#footer1 > .sns_btn > .wrap .line > ul > li:nth-child(1) {
	float:left;
	line-height:48px;
	background: url(/common/img/icon_share.png) 8px center no-repeat;
}

#footer1 > .sns_btn > .wrap .line > ul > li:nth-child(1) > .txt{
	padding-left:36px;
}

#footer1 > .sns_btn > .wrap .line > ul > li:nth-child(2) {
	float:right;
	padding:8px 8px 0 0;
}


#footer2,
#gmofooter .gmofooter {
	max-width: 1084px;
	margin: 0 auto;
	padding:40px 5px;
	box-sizing: border-box;
}

#footer2 .line {
		padding:0;
		margin:0 auto;
		text-align:left;
}


#footer2 .line .box2   {
		text-align:left;
		vertical-align:middle;
		float:left;
}

#footer2 .copyright {
		float: right;
}

#footer3{
	box-sizing: border-box;
	border-style: solid;
	border-width: 1px 0;
	border-color: #E0DED7;
	line-height: 1.5rem;
}

#footer3 p{
	width: 90%;
	margin: 0 auto;
	max-width: 1084px;
	padding:30px 5px;
	text-align: left;
	font-size: 12px;
}

#footer3 p a{
	color: #C76C69;
	display: inline-block;
}

#gmofooter .gmofooter_relatedservicelist {
	width: 100%;
}

#gmofooter .gmofooter_relatedservicelist ul li {
	width: 31.9%;
	padding-bottom: 10px;
}


/* !Footer	------------------------------------------------ */

.ft_bnr {
	padding: 80px 0 60px 0;
	border-bottom: 1px solid #9EA0A2;
	width: 80%;
	margin: 0 auto;
}

.ft_bnr img {
	margin: 5px;
	border: 1px solid #DCDCDC;
	height: 102px;
	width: auto;
}

.ft_mark {
	/* padding: 50px 0; */
	width: 80%;
	margin: 0 auto;
	text-align: center;
	flex-wrap: wrap;
	align-items: start;
	/* display: inline-block; */
}

.ft_mark_box {
	/* width: 320px; */
	width: calc((100% - 30px)/5);
	min-width: 150px;
	color: #353a3c;
	text-align: left;
	padding-top: 50px;
	padding-bottom: 30px;
	/* display: inline-block; */
}

.ft_mark_box_02 {
	margin: 0 auto;
	text-align: center;
}

.ft_mark_box_02 img{
	vertical-align: middle;
	margin-right: 5px;
	margin-left: 5px;
}

.ft_mark_box_02 > div {
	display: inline-block;
	vertical-align: middle;
}

.ft_mark_box img {
	vertical-align: middle;
	margin-right: 14px;
	margin-left: 14px;
}

.ft_mark_box p {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 10px !important;
	line-height: 1rem;
}

.ft_mark_box span {
	font-weight: bold;
}

.ft_bnr, .ft_mark {
	justify-content: space-around;
	flex-wrap: wrap;
	width: 100%;
}

.ft_mark_box {
	text-align: center;
}



/* pc
--------------------------------------------------- */
@media (min-width: 1024px) {
	/* common */
	#header_area_sp,
	#footer_area_sp {
	display: none;
	}
}

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

	/* #footer_area {
		display: inline-block;
	} */

	footer #footer_btn_area {
		padding-left: 0;
		padding: 40px 20px;
	}

	.footer_w30 {
		width: 50%;
	}

	.footer_w25 {
		width: 50%;
	}

	.footer_w18 {
		width: 50%;
	}

	#footer1 > .sns_btn {
		max-width: 100%;
		margin:0 auto;
		padding:40px 15px 85px;
				box-sizing: border-box;
		/* background:#f5f5f5; */
	}

	#footer1 > .sns_btn > .wrap {
		width: initial;
	}

	.gmofooter_container {
		width: 100%;
	}

	#gmofooter .gmofooter {
		padding: 30px 0 !important;
	}
}


@media (max-width: 970px)  {
	#footer2 .line {
		display:block;
		width:100%;
		text-align:left;
	}


	#footer2 .line .box2 {
		float:none;
		display:block;
		padding-top:0;
		margin:10px auto;
	}

	#footer2 .copyright {
				width: 100%;
		margin-top:0px;
	}
}

/* tablet low-level　common
--------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1023px) {
	#header_area_sp,
	#footer_area_sp {
display: none;
}

#footer2 {
	padding: 30px 15px;
}

#footer3 {
	padding: 20px 15px;
}

footer #footer_btn_box {
	width: 100%;
	padding: 0 15px;
	box-sizing: border-box;
}


#footer2 .line {
	padding: 0;
}

#footer2 .copyright {
	float: none;
	text-align: left;
	clear: both;
	padding-top: 5px;
}


#gmofooter .gmofooter {
	padding: 15px 10px !important;
}

#footer2,
#gmofooter .gmofooter {
	max-width: 100%;
	padding-left: 10px;
	padding-right: 10px;
		box-sizing: border-box;
	margin: 0 auto;
}

#footer3{
	max-width: 100%;
	padding-left: 10px;
	padding-right: 10px;
		box-sizing: border-box;
	margin: 0 auto;
}

footer #footer_btn_area {
	/* padding-left: 0; */
}

}

/* sns buttons
---------------------------------------------------------- */

@media screen and (-webkit-min-device-pixel-ratio:0) {
	@font-face {
		font-family:si;
		src: url(PATH_TO/socicon.svg) format(svg);
	}
}

.soc {
	overflow:hidden;
	margin:0; padding:0;
	list-style:none;
}

.soc li {
	display:inline-block;
	*display:inline;
	zoom:1;
}

.soc li a {
	font-family:si!important;
	font-style:normal;
	font-weight:400;
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
	-o-box-sizing:border-box;
	box-sizing:border-box;
	text-decoration:none;
	text-align:center;
	display:block;
	position: relative;
	z-index: 1;
	line-height: 30px;
	font-size: 16px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-right: 15px;
	color: #ffffff;
	vertical-align: top;
}

.soc li a img {
	width: 30px;
	height: 30px;
}

.soc li.last a {
	margin-top: 1px;
}

.soc li.last a img {
	width: 32px;
	height: 32px;
	max-width: none;
}

.soc-icon-last{
	margin:0 !important;
}

.soc-twitter {
	background-color: #4da7de;
}
.soc-twitter:before {
	content:'a';
}
.soc-facebook {
	background-color: #3e5b98;
}
.soc-facebook:before {
	content:'b';
}
.soc-google {
	background-color: #d93e2d;
}
.soc-google:before {
	content:'c';
}

.nondisp {
	display: none;
}


section#footer1 {
    text-align: left;
    max-width: 1000px;
    margin: 0px auto;
}

section#footer1 * {
    font-size: 12px;
    line-height: 1.5rem;
}

.footer_block {
    max-width: 1084px;
    margin: 0 auto;
    display: none;
    display: block;
}

#footer_service_area ul li {
    padding-left: 1rem;
}

#footer_service_area ul li ul li {
    padding-left: 2rem;
    display: inline-block;
    margin-right: 10px;
}

#footer_service_area ul li ul li ul li {
    padding-left: 3rem;
    display: inline-block;
    width: calc((100% - 3rem - 10px)/3);
}

.footer_block p, .footer_block li, .footer_block dl dt, .footer_block dl dd, .footer_block th, .footer_block td {
    font-size: 14px;
    line-height: 1.8;
}

.footer_block ul li {
    font-size: 12px;
    padding-left: 7px;
    background-position: left 7px;
}

#footer_service_area div.footer_h3_midashi {
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ffffff;
}

.common_footer div.footer_h3_midashi a, .footer_h4 div.footer_h4_midashi a {
    /* text-decoration: underline; */
    font-weight: bold;
}

#footer_service_area div.footer_h3_midashi + div {
    margin-bottom: 3rem;
}

.footer_h4 {
    display: block;
    margin-bottom: 1rem;
}

.footer_h4 h4, .footer_h4 div.footer_h5_midashi {
    display: inline-block;
}

.footer_h4 div.footer_h5_midashi + ul {
    margin-bottom: 1rem;
}

.footer_h5_midashi {
	display: inline-block;
}

.flexbox_footer {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    -js-display: flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    flex-wrap: wrap;
}

.footer_h4 ul li::before, .footer_h4 ul li ul li::before {
    content: '';
    display: inline-block;
    width: 0.5rem;
    height: 0.5rem;
    margin-right: 4px;
    background-image: url("data:image/svg+xml;utf-8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 138.71 138.71'><g id='b'><g id='c'><path d='M0 0 L100 50 L0 100 Z' style='fill:white'></path></g></g></svg>");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.h3_block_s {
    width: calc((100% - 3rem - 10px)/3);
    box-sizing: border-box;
    margin-right: 1rem;
}

.h3_block_s .footer_h4 {
    margin-bottom: initial;
}

@media only screen and (max-width: 768px) {
	.h3_block_s, #footer_service_area ul li ul li ul li {
		width: 100%;
	}
}

#acc_service_btn {
	cursor: pointer;
}

#acc_service_btn::after {
	content: "+";
	display: inline-block;
}

.open#acc_service_btn::after {
	content: "+";
	display: inline-block;
	transform: rotate(45deg);
}


.c-SNSshare__share {
	display: flex;
	align-items: center;
}
.c-SNSshare__shareTitle {
	margin-right: 25px;
	color: #8d8d8d;
	font-family: "Marcellus", serif;
	font-size: 1rem;
	font-weight: 700;
}
@media (min-width: 768px) {
	.c-SNSshare__shareTitle {
		margin-right: 33px;
		font-size: 1.25rem;
	}
}
.c-SNSshare__shareList {
	display: flex;
	align-items: center;
	gap: 25px;
	list-style-type: none;
}
@media (min-width: 768px) {
	.c-SNSshare__shareList {
		gap: 33px;
	}
}
.c-SNSshare__shareList > li a {
	transition: opacity 0.3s ease;
}
@media (hover: hover) {
	.c-SNSshare__shareList > li a:hover {
		opacity: 0.75;
	}
}
.c-SNSshare__shareList .x {
	width: 22px;
	height: 22px;
}
.c-SNSshare__shareList .fb {
	width: 24px;
	height: 24px;
}

.c-SNSshare__shareList .copy button {
	border: none;
    padding: 0;
    background-color: initial;
    color: inherit;
}
.c-footerShareArea {
	background-color: #f2f4f5;
	padding: 40px 0;
}

.c-SNSshare__share {
	display: flex;
	align-items: center;
}

.c-footerShareArea .c-SNSshare__share {
	justify-content: center;
}

.footer-links .doublebtn {
	display: inline-block;
	text-align: justify;
	margin-bottom: 10px;
}

/* ------------------------ banner ----------------------*/

.flexbox_header {
	display: -webkit-box;
	/*Android4.3*/
	display: -moz-box;
	/*Firefox21*/
	display: -ms-flexbox;
	/*IE10*/
	display: -webkit-flex;
	/*PC-Safari,iOS8.4*/
	-js-display: flex;
	display: flex;

	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-webkit-flex-direction: row;
	-ms-flex-direction: row;
	flex-direction: row;
}

.banner_area {
	margin: 0 auto;
	background-color: #ffffff;
	/* border-top: 1px solid #9EA0A2; */
	text-align: center;
	max-width: 1000px;
}

/* !Footer	------------------------------------------------ */

.ft_bnr {
	padding: 80px 0 60px 0;
	border-bottom: 1px solid #9ea0a2;
	width: 80%;
	margin: 0 auto;
}

.ft_bnr img {
	margin: 5px;
	border: 1px solid #dcdcdc;
	height: 102px;
	width: auto;
}

.ft_mark {
	/* padding: 50px 0; */
	width: 80%;
	margin: 0 auto;
	text-align: center;
	flex-wrap: wrap;
	align-items: start;
	/* display: inline-block; */
}

.ft_mark_box {
	/* width: 320px; */
	width: calc((100% - 30px) / 5);
	min-width: 150px;
	color: #353a3c;
	text-align: left;
	padding-top: 50px;
	padding-bottom: 30px;
	/* display: inline-block; */
}

.ft_mark_box img {
	vertical-align: middle;
	margin-right: 14px;
	margin-left: 14px;
	width: auto;
	/* max-width: 160px; */
	height: 66px;
}

.ft_mark_box_02 {
	margin: 0 auto;
	text-align: center;
	width: 100%;
}

.ft_mark_box_02 img {
	vertical-align: middle;
	margin-right: 5px;
	margin-left: 5px;
}

.ft_mark_box_02 > div {
	display: inline-block;
	vertical-align: middle;
}

.ft_mark_box p {
	margin-top: 5px;
	margin-bottom: 10px;
	font-size: 10px !important;
	line-height: 1rem;
}

.ft_mark_box span {
	font-weight: bold;
}

.ft_bnr,
.ft_mark {
	justify-content: space-around;
	flex-wrap: wrap;
	width: 100%;
}

.ft_mark_box {
	text-align: center;
}