@charset "UTF-8";

:root {
  --color-white: #ffffff;
  --color-black: #000000;

  --color-xst: #00ac4d;
  --color-dev: #d91c4d;
  --color-fds: #f1ad41;
  --color-ret: #8fb73e;
  --color-wtb: #00abc5;
  --color-rct: #0040b3;
}




/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default margin, padding */
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li,
button {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements */
ul,
ol,
li {
  list-style: none;
}

/* Set core root defaults */
html {
  font-size: 100%;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  font-size: 100%;
  font-family: helvetica, arial, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
svg,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Button */
button {
  appearance: none;
  outline: none;
  border: none;
  background: none;
}




/**********************************************************************************************
Vueのv-cloak
**********************************************************************************************/
[v-cloak] {
  display: none !important;
}

/**********************************************************************************************
ページ内スクロール時、固定ヘッダーの高さ分だけ調整する
**********************************************************************************************/
.bl_commonPageScroll {
  outline: none;
}
/**********************************************************************************************
スクリーンリーダーに読ませる場合適用する
**********************************************************************************************/
.el_commonScreenReaderText {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/**********************************************************************************************
レイアウト
**********************************************************************************************/
.bl_commonBaseWrapper {
  overflow: hidden;
}

.ly_wrapper {
  padding-left: 15px;
  padding-right: 15px;
}

.ly_innerL {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

.ly_innerM {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

/**********************************************************************************************
コーポレートロゴのsvg定義を非表示にする
**********************************************************************************************/
.un_bl_svgSynbol {
  display: none;
}
.un_bl_svgSynbol svg {
  display: none;
}

/**********************************************************************************************
メインコンテンツ枠
**********************************************************************************************/
.bl_main {
  padding-top: 100px;
}
@media only screen and (max-width: 819px) {
  .bl_main {
    padding-top: 60px;
  }
}
@media print {
  .bl_main {
    padding-top: 0;
  }
}

/**********************************************************************************************
外側の枠（クロスする線の背景画像を設置）
**********************************************************************************************/
.bl_commonBaseBgCrossWrapper {
  position: fixed;
  z-index: -2;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.bl_commonBaseBgCross_2, .bl_commonBaseBgCross_1 {
  position: absolute;
  width: 2px;
  height: 5000px;
  top: 0;
  bottom: 50%;
  left: 50%;
  right: 0;
  margin: auto;
  transition: 1s ease-out;
}
@media only screen and (max-width: 567px) {
  .bl_commonBaseBgCross_2, .bl_commonBaseBgCross_1 {
    bottom: 60%;
    left: 60%;
  }
}

.bl_commonBaseBgCross_1 {
  /*
  position: absolute;
  margin-top: -50%;
  left: 90%;
  width: 2px;
  height: 300%;
  background-color: #c2dacb;
  transform: rotate(-30deg);
  transform-origin: 50% 50%;
  transition-duration: 1s;
  */
  background: rgba(52, 131, 84, 0.3);
  transform: rotate(-30deg);
}

.bl_commonBaseBgCross_2 {
  /*
  position: absolute;
  margin-left: -50%;
  top: 12%;
  width: 300%;
  height: 2px;
  background-color: #ecf4e7;
  transform: rotate(-15deg);
  transform-origin: 50% 50%;
  transition-duration: 1s;
  */
  background: rgba(191, 220, 174, 0.3);
  transform: rotate(75deg);
}

/**********************************************************************************************
汎用見出し
**********************************************************************************************/
.bl_commonHeaderOuter {
  margin-top: 240px;
}
@media only screen and (max-width: 567px) {
  .bl_commonHeaderOuter {
    margin-top: 60px;
  }
}
.ly_wrapper .ly_innerL:first-of-type .bl_commonHeaderOuter {
  margin-top: 120px;
}
@media only screen and (max-width: 567px) {
  .ly_wrapper .ly_innerL:first-of-type .bl_commonHeaderOuter {
    margin-top: 60px;
  }
}

.bl_commonHeaderWrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
}
.bl_commonHeaderWrapper.newsDetail {
  max-width: 1200px;
}
@media only screen and (max-width: 567px) {
  .bl_commonHeaderWrapper.newsDetail {
    display: block;
  }
}

.el_commonHeaderImage {
  display: block;
}
@media only screen and (max-width: 567px) {
  .el_commonHeaderImage {
    width: max-content;
    max-width: 80%;
    height: auto;
  }
}

.el_commonHeaderText {
  display: block;
  margin-top: 20px;
  font-size: 1.125rem;
  font-weight: bold;
}
@media only screen and (max-width: 567px) {
  .el_commonHeaderText {
    margin-top: .8em;
    font-size: 1rem;
  }
}
.el_commonHeaderText.mT0 {
  margin-top: 0;
}

.el_commonHeaderText-sub {
  display: block;
  font-size: 2.5rem;
  color: #333;
}
.el_commonHeaderText-sub::first-letter {
  color: #00ac4d;
}

.bl_commonHeaderDetailWrapper {
  width: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: flex-start;
}

.el_commonHeaderDetailDate {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 0.875rem;
}

.bl_commonHeaderDetailList {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  margin-top: 12px;
}

.bl_commonHeaderDetailListItem-company {
  width: auto;
  display: inline-block;
  color: #fff;
  background-color: #333;
  border: 1px solid #333;
  font-size: 0.75rem;
  margin-right: 10px;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 3px;
  padding-bottom: 3px;
}
@media only screen and (max-width: 567px) {
  .bl_commonHeaderDetailListItem-company {
    margin-bottom: 5px;
  }
}
.bl_commonHeaderDetailListItem-company.xst {
  background-color: var(--color-xst);
  border-color: var(--color-xst);
}
.bl_commonHeaderDetailListItem-company.wtb {
  background-color: var(--color-wtb);
  border-color: var(--color-wtb);
}
.bl_commonHeaderDetailListItem-company.ret {
  background-color: var(--color-ret);
  border-color: var(--color-ret);
}
.bl_commonHeaderDetailListItem-company.fds {
  background-color: var(--color-fds);
  border-color: var(--color-fds);
}
.bl_commonHeaderDetailListItem-company.dev {
  background-color: var(--color-dev);
  border-color: var(--color-dev);
}
.bl_commonHeaderDetailListItem-company.rct {
  background-color: var(--color-rct);
  border-color: var(--color-rct);
}

.bl_commonHeaderDetailListItem-category {
  width: auto;
  display: inline-block;
  color: #333;
  border: 1px solid #666;
  font-size: 0.75rem;
  padding-left: 19px;
  padding-right: 19px;
  padding-top: 3px;
  padding-bottom: 3px;
  background-color: #fff;
}
@media only screen and (max-width: 567px) {
  .bl_commonHeaderDetailListItem-category {
    margin-bottom: 5px;
  }
}

/**********************************************************************************************
ヘッダー
**********************************************************************************************/
.bl_glHeaderOuter {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderOuter {
    background: none;
  }
}
@media print {
  .bl_glHeaderOuter {
    position: static;
  }
}

.bl_glHeaderWrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 100%;
  height: 100px;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderWrapper {
    flex-wrap: wrap;
    height: auto;
    align-content: flex-start;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderWrapper {
    flex-wrap: nowrap;
    height: 60px;
  }
}

.el_glHeaderCloseBtn {
  display: none;
}
.el_glHeaderCloseBtn:focus-visible {
  border: 2px solid #000;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderCloseBtn {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 60px;
    height: 60px;
    background-color: #00ac4d;
    color: #fff;
    font-size: 0.75rem;
    position: relative;
    padding-top: 38px;
  }
  .el_glHeaderCloseBtn::before {
    position: absolute;
    content: "";
    display: block;
    width: 27px;
    height: 20px;
    top: 13px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    border-top: 2px solid #fff;
    border-bottom: 2px solid #fff;
  }
  .el_glHeaderCloseBtn::after {
    position: absolute;
    content: "";
    display: block;
    width: 27px;
    height: 2px;
    top: 22px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
  }
  .el_glHeaderCloseBtn.active::before {
    position: absolute;
    content: "";
    display: block;
    top: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 27px;
    height: 2px;
    border: none;
    background-color: #fff;
    transform: rotate(45deg);
  }
  .el_glHeaderCloseBtn.active::after {
    position: absolute;
    content: "";
    display: block;
    top: 20px;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 27px;
    height: 2px;
    border: none;
    background-color: #fff;
    transform: rotate(-45deg);
  }
}

.el_glHeaderCloseBtnText-close {
  display: block;
}
.el_glHeaderCloseBtn.active .el_glHeaderCloseBtnText-close {
  display: none;
}

.el_glHeaderCloseBtnText-open {
  display: none;
}
.el_glHeaderCloseBtn.active .el_glHeaderCloseBtnText-open {
  display: block;
}

.bl_glHeaderLogoOuter {
  width: 100%;
  position: relative;
}
@media (min-width: 568px) and (max-width: 1200px) {
  .bl_glHeaderLogoOuter {
    width: 240px;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderLogoOuter {
    width: 100%;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    height: 60px;
    background-color: #fff;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderLogoOuter {
    width: 35%;
  }
}

.bl_glHeaderLogoBgWrapper {
  display: none;
}
.un_glHeaderTop .bl_glHeaderLogoBgWrapper {
  width: 330px;
  height: 330px;
  background-color: #00ac4d;
  transform: rotate(-15deg);
  position: relative;
  bottom: 155px;
  left: -17px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .un_glHeaderTop .bl_glHeaderLogoBgWrapper {
    width: 230px;
    height: 230px;
    bottom: 104px;
  }
}
@media only screen and (max-width: 819px) {
  .un_glHeaderTop .bl_glHeaderLogoBgWrapper {
    width: 200px;
    height: 200px;
    bottom: 75px;
  }
}
@media only screen and (max-width: 567px) {
  .un_glHeaderTop .bl_glHeaderLogoBgWrapper {
    display: none;
  }
}
.un_glHeaderTop .bl_glHeaderLogoBgWrapper::before {
  position: absolute;
  content: "";
  display: block;
  width: 50px;
  height: 50px;
  bottom: -25px;
  left: -25px;
  background-color: rgba(52, 131, 84, 0.8);
}
.un_glHeaderTop .bl_glHeaderLogoBgWrapper::after {
  position: absolute;
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  bottom: 77px;
  right: -43px;
  background-color: rgba(52, 131, 84, 0.5);
}

.bl_glHeaderLogoImageWrapper-h1 {
  position: absolute;
  top: 29px;
  margin-left: 35px;
}
@media (max-width: 1200px) {
  .bl_glHeaderLogoImageWrapper-h1 {
    width: 170px;
    height: 48px;
    margin-left: 27px;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderLogoImageWrapper-h1 {
    margin-left: 15px;
    width: 190px;
    height: auto;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderLogoImageWrapper-h1 {
    width: 130px;
    height: 36px;
    margin-left: 15px;
    position: static;
  }
}

.bl_glHeaderLogoImageWrapper-div {
  position: absolute;
  top: 21px;
  margin-left: 35px;
}
@media (max-width: 1200px) {
  .bl_glHeaderLogoImageWrapper-div {
    width: 170px;
    height: 48px;
    margin-left: 27px;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderLogoImageWrapper-div {
    width: 130px;
    height: 36px;
    margin-left: 15px;
    position: static;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderLogoImageWrapper-div {
    padding-right: 15px;
  }
}

.bl_glHeaderLogoImageLink {
  text-decoration: none;
  display: block;
}
.bl_glHeaderLogoImageLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.el_glHeaderLogoImage {
  width: 200px;
  height: 56px;
  fill: #00ac4d;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLogoImage {
    width: 150px;
    height: 42px;
  }
}
@media only screen and (max-width: 567px) {
  .el_glHeaderLogoImage {
    width: 130px;
    height: 36px;
  }
}
.un_glHeaderTop .el_glHeaderLogoImage {
  fill: #fff;
  width: 246px;
  height: 69px;
}
@media (max-width: 1200px) {
  .un_glHeaderTop .el_glHeaderLogoImage {
    width: 170px;
    height: 48px;
  }
}
@media only screen and (max-width: 819px) {
  .un_glHeaderTop .el_glHeaderLogoImage {
    width: 145px;
    height: 41px;
  }
}
@media only screen and (max-width: 567px) {
  .un_glHeaderTop .el_glHeaderLogoImage {
    fill: #00ac4d;
    width: 130px;
    height: 36px;
  }
}

/*
.el_glHeaderLogoText {//会社名テキスト
	display: none;//トップページ以外は非表示

	.un_glHeaderTop & {//トップページのみ表示
		display: block;
		font-weight: normal;
		font-size: rem(12px);
		line-height: 1;
		margin-top: 19px;
		color: $c_black;

		@include sp_pc {
			//margin-top: 8px;
			display: none;
		}

		@include sp {
			display: none;
		}
	}
}
*/
.bl_glHeaderNavWrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 0 20px;
  /* width: calc(100% - 350px); */
}
@media (max-width: 1200px) {
  .bl_glHeaderNavWrapper {
    width: calc(100% - 250px);
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavWrapper {
    width: 100%;
    max-height: calc(100svh - 60px);
    flex-wrap: wrap;
    align-content: flex-start;
    overflow-y: scroll;
  }
}
@media (max-width: 1200px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderNavWrapper {
    width: calc(100% - 230px);
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderNavWrapper {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderNavWrapper {
    width: 65%;
    flex-wrap: nowrap;
    max-height: none;
    overflow: auto;
  }
}

.bl_glHeaderNavList {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  width: 610px;
  /* margin-right: 20px; */
}
@media (max-width: 1200px) {
  .bl_glHeaderNavList {
    width: calc(100% - 220px);
    max-width: 610px;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavList {
    width: 100%;
    max-width: none;
    display: block;
    /* margin-right: 0;
    padding-bottom: 15px; */
    background-color: rgba(49, 133, 92, 0.95);
  }
}
@media (max-width: 1200px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderNavList {
    width: calc(100% - 200px);
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderNavList {
    justify-content: flex-end;
    width: auto;
    background: none;
    padding-bottom: 0;
    display: flex;
    flex-wrap: nowrap;
  }
}

.bl_glHeaderNavListItem {
  position: relative;
  width: 20%;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavListItem {
    width: 100%;
    border-top: 1px solid #fff;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderNavListItem:last-of-type {
    border-bottom: 1px solid #fff;
  }
}
.bl_glHeaderOuter.iframe .bl_glHeaderNavListItem {
  width: 100%;
}

.el_glHeaderNavListItembtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  position: relative;
  transition-duration: 0.3s;
  transition-property: height, padding-bottom;
  color: #333;
  text-decoration: none;
}
.el_glHeaderNavListItembtn:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavListItembtn {
    font-size: 0.9375rem;
    background-color: #1b1c25;
    color: #fff;
    font-size: 1.125rem;
    padding-top: 20px;
    padding-bottom: 20px;
    justify-content: flex-start;
    padding-left: 31px;
    padding-right: 44px;
  }
  .el_glHeaderNavListItembtn:focus-visible {
    outline: none;
    border: 2px solid #ff0;
  }
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavListItembtn::before {
    position: absolute;
    content: "";
    display: block;
    width: 15px;
    height: 3px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    right: 20px;
    margin-top: auto;
    margin-bottom: auto;
  }
}
.el_glHeaderNavListItembtn::after {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  left: 0;
  right: 0;
  bottom: 24px;
  margin-left: auto;
  margin-right: auto;
  border-left: 2px solid #dadada;
  border-bottom: 2px solid #dadada;
  transform: rotate(-45deg);
  transition-duration: 0.3s;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavListItembtn::after {
    position: absolute;
    content: "";
    display: block;
    width: 3px;
    height: 15px;
    background-color: #fff;
    top: 0;
    bottom: 0;
    right: 26px;
    left: auto;
    margin-top: auto;
    margin-bottom: auto;
    transform: none;
    transition: none;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .el_glHeaderNavListItembtn {
    padding: 0;
    background: none;
    color: #333;
    font-size: 0.75rem;
    padding-right: 20px;
  }
  .bl_glHeaderOuter.iframe .el_glHeaderNavListItembtn::before {
    display: none;
  }
}
.bl_glHeaderNavListItem:hover .el_glHeaderNavListItembtn {
  padding-bottom: 8px;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavListItem:hover .el_glHeaderNavListItembtn {
    padding-bottom: 20px;
  }
}
.bl_glHeaderNavListItem:hover .el_glHeaderNavListItembtn::after {
  bottom: 19px;
  border-color: #00ac4d;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavListItem:hover .el_glHeaderNavListItembtn::after {
    bottom: 0;
    border: none;
    background-color: #fff;
  }
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavListItembtn.active::after {
    display: none;
  }
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavListItembtn.noIcon::before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: 26px;
    bottom: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
    background: none;
  }
}
.el_glHeaderNavListItembtn.noIcon::after {
  display: none;
}

.bl_glHeaderNavListSubItem {
  position: fixed;
  top: 100px;
  left: 0;
  width: calc(100vw - (100vw - 100%));
  height: auto;
  background-color: rgba(49, 133, 92, 0.95);
  z-index: -1;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavListSubItem {
    position: static;
    width: 100%;
    background: none;
  }
}

.bl_glHeaderNavSubWrapper {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  min-height: 186px;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubWrapper {
    display: block;
    min-height: auto;
  }
}

.bl_glHeaderNavSubTitleOuter {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: 310px;
  padding-top: 40px;
  padding-bottom: 40px;
  background-color: #1b1c25;
  transform: skewX(15deg);
  position: relative;
  padding-right: 43px;
  align-items: center;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubTitleOuter {
    display: block;
    width: calc(100% + 30px);
    padding: 0;
    transform: none;
    margin-left: -15px;
    background: none;
    padding-left: 7px;
    padding-right: 7px;
  }
}
.bl_glHeaderNavSubTitleOuter::before {
  position: absolute;
  content: "";
  width: 50vw;
  height: 100%;
  background-color: #1b1c25;
  right: 9%;
  top: 0;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubTitleOuter::before {
    display: none;
  }
}

.bl_glHeaderNavSubTitleWrapper {
  transform: skewX(-15deg);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubTitleWrapper {
    display: block;
    transform: none;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubTitleImage {
    display: none;
  }
}

.el_glHeaderNavSubTitleLink {
  color: #fff;
  font-size: 1.125rem;
  text-decoration: none;
  position: relative;
  padding-right: 25px;
  margin-top: 14px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavSubTitleLink {
    display: block;
    width: 100%;
    font-size: 1rem;
    margin-top: 0;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-right: 20px;
    padding-left: 9px;
  }
  .el_glHeaderNavSubTitleLink:focus-visible {
    outline-style: solid;
    outline-width: 2px;
    outline-color: #fff;
    outline-offset: -2px;
    background-color: #1b1c25;
    color: #fff;
  }
}
.el_glHeaderNavSubTitleLink::before {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: #fff;
  transition-duration: 0.3s;
}
@media only screen and (max-width: 567px) {
  .el_glHeaderNavSubTitleLink::before {
    transition: none;
  }
}
.el_glHeaderNavSubTitleLink::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  right: 4px;
  bottom: 10px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition-duration: 0.3s;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavSubTitleLink::after {
    top: 0;
    bottom: 0;
    right: 9px;
    margin-top: auto;
    margin-bottom: auto;
    transition: none;
  }
}
.el_glHeaderNavSubTitleLink:hover::before {
  width: calc(100% + 10px);
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavSubTitleLink:hover::before {
    width: 100%;
  }
}
.el_glHeaderNavSubTitleLink:hover::after {
  right: -6px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavSubTitleLink:hover::after {
    right: 9px;
  }
}
.el_glHeaderNavSubTitleLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #fff;
  outline-offset: -2px;
}

.el_glHeaderNavSubTitleLink-sp {
  display: none;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderNavSubTitleLink-sp {
    display: inline;
  }
}

.bl_glHeaderNavSubListWrapper {
  display: flex;
  align-items: flex-start;
  width: calc(100% - 340px);
  padding-top: 40px;
  padding-bottom: 40px;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubListWrapper {
    display: block;
    width: 100%;
    padding-left: 7px;
    padding-right: 7px;
    padding-top: 0;
    padding-bottom: 0;
  }
}

.bl_glHeaderNavSubList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: 100%;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubList {
    display: block;
  }
}

.bl_glHeaderNavSubListItem {
  display: flex;
  width: 32%;
  margin-right: 2%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubListItem {
    width: 100%;
    margin-right: 0;
    border-bottom: solid 1px #fff;
    margin-bottom: 0;
  }
}
.bl_glHeaderNavSubListItem:nth-of-type(3n) {
  margin-right: 0;
}
.bl_glHeaderNavSubListItem:nth-child(3n+1):nth-last-child(-n+3), .bl_glHeaderNavSubListItem:nth-child(3n+1):nth-last-child(-n+3) ~ li {
  margin-bottom: 0;
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderNavSubListItem:last-of-type {
    border: none;
  }
}
.bl_glHeaderNavSubListItem.business:nth-of-type(3n) {
  margin-right: 2%;
}
.bl_glHeaderNavSubListItem.business:nth-of-type(2n) {
  margin-right: 34%;
}
.bl_glHeaderNavSubListItem.business:last-child, .bl_glHeaderNavSubListItem.business:nth-last-child(2):nth-child(odd) {
  margin-bottom: 0;
}

.bl_glHeaderNavSubListItemLink {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 1px #fff;
  color: #fff;
  text-decoration: none;
  padding-top: 11px;
  padding-bottom: 11px;
  padding-left: 10px;
  padding-right: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavSubListItemLink {
    border: none;
    padding-top: 18px;
    padding-bottom: 18px;
    padding-left: 9px;
    font-size: 1rem;
  }
}
.bl_glHeaderNavSubListItemLink::before {
  position: absolute;
  content: "";
  z-index: -1;
  width: 140%;
  height: 100%;
  background: #1b1c25;
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition-duration: 0.3s;
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderNavSubListItemLink::before {
    display: none;
  }
}
.bl_glHeaderNavSubListItemLink::after {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  right: 9px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
  transition-duration: 0.3s;
}
.bl_glHeaderNavSubListItemLink:hover::before {
  right: -20%;
}
.bl_glHeaderNavSubListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #fff;
  outline-offset: -2px;
  background-color: #1b1c25;
  color: #fff;
}

.bl_glHeaderLinksOuter {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  width: 200px;
  height: 100%;
}
/* @media only screen and (max-width: 819px) {
  .bl_glHeaderLinksOuter {
    width: 180px;
  }
} */
@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksOuter {
    display: block;
    width: 100%;
    height: auto;
    /*
    align-content: flex-start;
    position: fixed;
    left: 0;
    bottom: 0; */
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .bl_glHeaderLinksOuter {
    width: 120px;
  }
}

.bl_glHeaderLinksFaqWrapper {
  width: 50%;
}

.bl_glHeaderLinksFaqLink, .bl_glHeaderLinksEcLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  background-color: #f1f1e8;
  transition-duration: 0.3s;
  transition-property: background-color;
  word-break: break-all;
  color: #333;
  text-decoration: none;
}
/* @media only screen and (max-width: 819px) {
  .bl_glHeaderLinksFaqLink, .bl_glHeaderLinksEcLink {
    width: 90px;
  }
} */
@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksFaqLink, .bl_glHeaderLinksEcLink {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto auto;
    padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 11px;
    padding-right: 30px;
    position: relative;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderLinksFaqLink::before, .bl_glHeaderLinksEcLink::before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: 6px;
    bottom: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-right: 3px solid #333;
    border-bottom: 3px solid #333;
    transform: rotate(-45deg);
  }
}
.bl_glHeaderOuter.iframe .bl_glHeaderLinksFaqLink::before, .bl_glHeaderOuter.iframe .bl_glHeaderLinksEcLink::before {
  display: none;
}
.bl_glHeaderLinksFaqLink:hover, .bl_glHeaderLinksEcLink:hover, .bl_glHeaderLinksFaqLink:focus, .bl_glHeaderLinksEcLink:focus {
  background-color: #e7e7d8;
}
.bl_glHeaderLinksFaqLink:focus-visible, .bl_glHeaderLinksEcLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}
.bl_glHeaderOuter.iframe .bl_glHeaderLinksFaqLink, .bl_glHeaderOuter.iframe .bl_glHeaderLinksEcLink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0;
}

.el_glHeaderLinksFaqLinkIcon, .el_glHeaderLinksEcLinkIcon-open {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLinksFaqLinkIcon, .el_glHeaderLinksEcLinkIcon-open {
    grid-column: 1/2;
    grid-row: 1/3;
    width: 26px;
    height: 26px;
  }
}
.bl_glHeaderOuter.iframe .el_glHeaderLinksFaqLinkIcon, .bl_glHeaderOuter.iframe .el_glHeaderLinksEcLinkIcon-open {
  width: 26px;
  height: 26px;
}
.el_glHeaderLinksFaqLinkIcon svg, .el_glHeaderLinksEcLinkIcon-open svg {
  width: 100%;
  height: 100%;
  fill: #333;
}

.el_glHeaderLinksFaqLinkText, .el_glHeaderLinksEcLinkText {
  font-size: 0.9375rem;
  font-weight: bold;
  margin-top: 3px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLinksFaqLinkText, .el_glHeaderLinksEcLinkText {
    grid-column: 2/3;
    grid-row: 1/2;
    margin-top: 0;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .el_glHeaderLinksFaqLinkText, .bl_glHeaderOuter.iframe .el_glHeaderLinksEcLinkText {
    display: block;
    width: 100%;
    padding: 0;
    text-align: center;
    font-size: 0.75rem;
    font-weight: normal;
  }
}

.el_glHeaderLinksFaqLinkText2, .el_glHeaderLinksEcLinkText2 {
  font-size: 0.6875rem;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLinksFaqLinkText2, .el_glHeaderLinksEcLinkText2 {
    grid-column: 2/3;
    grid-row: 2/3;
    /* padding-left: 10px; */
  }
}
@media only screen and (max-width: 567px) {
  .bl_glHeaderOuter.iframe .el_glHeaderLinksFaqLinkText2, .bl_glHeaderOuter.iframe .el_glHeaderLinksEcLinkText2 {
    display: none;
  }
}

.bl_glHeaderLinksInquiryWrapper {
  width: 50%;
}

.bl_glHeaderLinksInquiryLink {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100%;
  background-color: #1b1c25;
  transition-duration: 0.3s;
  transition-property: background-color;
  word-break: break-all;
  color: #fff;
  text-decoration: none;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksInquiryWrapper {
    width: 100%;
  }
  .bl_glHeaderLinksInquiryLink {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 30px 1fr;
    grid-template-rows: auto auto;
    gap: 0 10px;
    padding: 20px 44px 20px 31px;
    position: relative;
    background-color: #03A03F;
  }
  .bl_glHeaderLinksInquiryLink::before {
    position: absolute;
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    right: 26px;
    bottom: 0;
    top: 0;
    margin-top: auto;
    margin-bottom: auto;
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
    transform: rotate(-45deg);
  }
}
.bl_glHeaderOuter.iframe .bl_glHeaderLinksInquiryLink::before {
  display: none;
}
.bl_glHeaderLinksInquiryLink:hover, .bl_glHeaderLinksInquiryLink:focus {
  background-color: #2c2e3d;
}
.bl_glHeaderLinksInquiryLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #ff0;
  outline-offset: -2px;
}
.bl_glHeaderOuter.iframe .bl_glHeaderLinksInquiryLink {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  padding: 0;
}

.el_glHeaderLinksInquiryLinkIcon {
  width: 30px;
  height: 30px;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLinksInquiryLinkIcon {
    grid-column: 1/2;
    grid-row: 1/3;
  }
}
.bl_glHeaderOuter.iframe .el_glHeaderLinksInquiryLinkIcon {
  width: 26px;
  height: 26px;
}
.el_glHeaderLinksInquiryLinkIcon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.bl_glHeaderLinksEcWrapper {
  width: 100px;
  height: 100px;
  position: fixed;
  top: 0;
  right: 100px;
}

.bl_glHeaderLinksEcItem {
  width: 100%;
  height: 100%;
}

.bl_glHeaderLinksEcLink {
  color: #fff;
  background-color: #00ac4d;
  cursor: pointer;
  position: relative;
}
.bl_glHeaderLinksEcLink::before {
  border-color: #fff;
}
.bl_glHeaderLinksEcLink:hover, .bl_glHeaderLinksEcLink:focus {
  background-color: #007936;
}
.bl_glHeaderLinksEcLink.active {
  gap: 4px;
}
.bl_glHeaderLinksEcLink.active::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 8.5px 12px;
  border-color: transparent transparent rgba(245, 245, 245, 0.95) transparent;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.bl_glHeaderLinksEcLink.active .el_glHeaderLinksEcLinkIcon-open {
  display: none;
}
.bl_glHeaderLinksEcLink.active .el_glHeaderLinksEcLinkIcon-close {
  display: block;
}
.bl_glHeaderLinksEcLink.active .el_glHeaderLinksEcLinkTextWrapper-open {
  display: none;
}
.bl_glHeaderLinksEcLink.active .el_glHeaderLinksEcLinkTextWrapper-close {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.bl_glHeaderLinksEcLink.active .el_glHeaderLinksEcLinkText {
  font-size: 0.6875rem;
  font-weight: normal;
}

.el_glHeaderLinksEcLinkIcon-open svg {
  fill: #fff;
}

.el_glHeaderLinksEcLinkIcon-close {
  position: relative;
  display: none;
  width: 30px;
  height: 30px;
}
.el_glHeaderLinksEcLinkIcon-close::before, .el_glHeaderLinksEcLinkIcon-close::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.el_glHeaderLinksEcLinkIcon-close::before {
  transform: rotate(45deg);
}
.el_glHeaderLinksEcLinkIcon-close::after {
  transform: rotate(-45deg);
}

.el_glHeaderLinksEcLinkText2 {
  letter-spacing: -0.1em;
}

.el_glHeaderLinksEcLinkTextWrapper-open {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media only screen and (max-width: 819px) {
  .el_glHeaderLinksEcLinkTextWrapper-open {
    align-items: flex-start;
  }
}

.el_glHeaderLinksEcLinkTextWrapper-close {
  display: none;
}

#glHeaderLinksEc {
  position: fixed;
  left: 0;
  top: 100px;
  width: 100svw;
  background-color: rgba(245, 245, 245, 0.95);
}

.bl_glHeaderLinksEcListOuter {
  max-width: 1350px;
  margin: auto;
  padding: 27px 30px 41px;
}

.bl_glHeaderLinksEcList {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 10px;
}
@media only screen and (max-width: 1350px) {
  .bl_glHeaderLinksEcListOuter {
    max-height: calc(100svh - 100px);
    overflow-y: scroll;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksEcListOuter {
    padding: 20px 15px;
    max-height: calc(100svh - 60px);
  }
  .bl_glHeaderLinksEcList {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }
}

.bl_glHeaderLinksEcListItemLink {
  display: grid;
  place-items: center;
  padding: 10px 5px;
  border: 1px solid rgba(51, 51, 51, 0.21);
  background-color: #fff;
  box-shadow: 0px 0px 9px 0px rgba(51, 51, 51, 0.1);
  transition-duration: 0.3s;
  transition-property: transform, box-shadow;
}
.bl_glHeaderLinksEcListItemLink:hover, .bl_glHeaderLinksEcListItemLink:focus {
  transform: translateY(-5px);
  box-shadow: 0px 0px 9px 0px rgba(51, 51, 51, 0.15);
}
.bl_glHeaderLinksEcListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.el_glHeaderLinksEcListItemLinkImage {
  width: 100%;
  max-width: 240px;
  height: auto;
}


@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksEcWrapper {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 60px;
    top: 0;
  }
  .bl_glHeaderLinksEcLink {
    width: 60px;
    padding: 0;
    grid-template-columns: 1fr;
    place-items: center;
    background-color: #2B5837;
  }
  .bl_glHeaderLinksEcLink.active {
    padding-top: 6px;
    grid-template-rows: repeat(2, max-content);
  }
  .bl_glHeaderLinksEcLink.active::after {
    border-width: 0 6px 6px;
  }
  .el_glHeaderLinksEcLinkText {
    font-size: .75rem;
  }
  .bl_glHeaderLinksEcLink::before,
  .el_glHeaderLinksEcLinkText2 { display: none; }

  .el_glHeaderLinksEcLinkIcon-close {
    width: 28px;
    height: 28px;
  }
  .el_glHeaderLinksEcLinkIcon-close::before,
  .el_glHeaderLinksEcLinkIcon-close::after {
    width: 100%;
    height: 2px;
  }
  #glHeaderLinksEc { top: 60px; }
}






.bl_glHeaderLinksShopWrapper {
  position: fixed;
  right: 60px;
  bottom: 60px;
}
@media (min-width: 820px) {
  /* PCは特定ページ以外表示しない */
  .bl_glHeaderLinksShopWrapper { display: none; }
}

.bl_glHeaderLinksShopLink {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 275px;
  height: 100px;
  padding: 20px 60px 20px 20px;
  color: #fff;
  text-decoration: none;
  background-color: #03A03F;
  border-radius: 5px;
  box-shadow: 0px 3px 6px 0px rgba(51, 51, 51, 0.16);
  position: relative;
  overflow: clip;
}
.bl_glHeaderLinksShopLink::before {
  position: absolute;
  content: "";
  z-index: 0;
  width: 140%;
  height: 100%;
  background-color: var(--color-black);
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition-duration: 0.3s;
}
.bl_glHeaderLinksShopLink::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 25px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: 1;
}
.bl_glHeaderLinksShopLink:hover::before {
  right: -20%;
}

.el_glHeaderLinksShopLinkIcon {
  width: 22px;
  height: 22px;
  z-index: 1;
}
.el_glHeaderLinksShopLinkIcon svg {
  width: 100%;
  height: 100%;
  fill: #fff;
}

.el_glHeaderLinksShopLinkText {
  font-size: 1.25em;
  font-weight: bold;
  z-index: 1;
}

@media only screen and (max-width: 819px) {
  .bl_glHeaderLinksShopWrapper {
    top: 0;
    bottom: auto;
    right: 120px;
  }
  .bl_glHeaderLinksShopLink {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, auto);
    place-items: center;
    gap: 4px;
    width: 60px;
    min-width: auto;
    height: 60px;
    padding: 0;
    background-color: #3C744F;
    border-radius: 0;
    box-shadow: none;
  }
  .bl_glHeaderLinksShopLink::before,
  .bl_glHeaderLinksShopLink::after { display: none; }

  .el_glHeaderLinksShopLinkIcon {
    align-self: end;
  }
  .el_glHeaderLinksShopLinkText {
    font-size: .75rem;
  }
}



.bl_glHeaderNavCloseBg {
  display: none;
}
@media only screen and (max-width: 819px) {
  .bl_glHeaderNavCloseBg {
    display: block;
    width: 100%;
    background-color: rgba(27, 28, 37, 0.5);
    height: 100vh;
  }
}

.js-accordion--trigger {
  position: relative;
  display: block;
  width: 100%;
  transition: all 0.2s ease-in;
  color: #4d68b7;
  display: block;
  font-size: 20px;
  font-weight: bold;
  text-align: left;
  padding: 20px;
  outline: none;
  border: none;
  cursor: pointer;
}
.js-accordion--trigger:after {
  display: inline-block;
  width: 0;
  height: 0;
  border: solid transparent;
  content: "";
  border-top-color: #5f6569;
  border-width: 7px;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -5px;
  transition: all 0.2s ease-in;
}
.js-accordion--trigger._state-open {
  background-color: #f1f1f1;
  text-decoration: none;
}
.js-accordion--trigger:hover {
  background-color: #f1f1f1;
  text-decoration: none;
}

.js-accordion--target {
  overflow: hidden;
  transition: height 0.2s ease-in-out;
}
@media only screen and (max-width: 819px) {
  .js-accordion--target {
    transition: height 0.4s ease-in-out;
  }
}

.js-accordion--body {
  padding: 30px;
}

.js-accordion-enter-active {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media only screen and (max-width: 819px) {
  .js-accordion-enter-active {
    animation-name: js-accordion--anime__opend;
  }
}

.js-accordion-leave-active {
  animation-duration: 1s;
  animation-fill-mode: both;
}
@media only screen and (max-width: 819px) {
  .js-accordion-leave-active {
    animation-name: js-accordion--anime__closed;
  }
}

@keyframes js-accordion--anime__opend {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes js-accordion--anime__closed {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/**********************************************************************************************
フッター
**********************************************************************************************/
.bl_glFooterOuter {
  background-color: #348354;
  border-top: 20px solid #f1f1e8;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterOuter {
    background-color: #fff;
  }
}

/* CTA */
.bl_glFooterCtaOuter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #267245;
}
.bl_glFooterCta:nth-of-type(even) {
  background-color: #20653c;
}
.bl_glFooterCtaLink {
  display: grid;
  place-items: center;
  min-height: 150px;
  color: #fff;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}
.bl_glFooterCtaLink::before {
  content: "";
  width: 140%;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition: .3s all;
}
.bl_glFooterCtaLink:hover::before {
  right: -20%;
}
.bl_glFooterCtaLinkTextWrapper {
  width: 100%;
  padding: 20px 60px 20px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  position: relative;
}
.bl_glFooterCtaLinkTextWrapper::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  transform: rotate(45deg);
}
.bl_glFooterCtaLinkIcon {
  width: min(48px, 4.138dvw);
  height: min(48px, 4.138dvw);
  fill: #fff;
}
.bl_glFooterCtaLinkText {
  font-size: 1.625rem;
  font-weight: bold;
}

@media screen and (max-width: 819px) {
  .bl_glFooterCtaLink  {
    min-height: 120px;
  }
  .bl_glFooterCtaLinkTextWrapper {
    padding: 10px 40px 10px 20px;
    gap: 14px;
  }
  .bl_glFooterCtaLinkTextWrapper::after {
    width: 12px;
    height: 12px;
    border-width: 3px;
    right: 20px;
  }
  .bl_glFooterCtaLinkIcon {
    width: min(36px, 4.396dvw);
    height: min(36px, 4.396dvw);
  }
  .bl_glFooterCtaLinkText {
    font-size: min(1.625rem, 3.175dvw);
  }
  .bl_glFooterCtaLinkSubText {
    font-size: min(1rem, 1.954dvw);
  }
}

@media screen and (max-width: 567px) {
  .bl_glFooterCtaOuter {
    display: block;
  }
  .bl_glFooterCtaLink  {
    min-height: 80px;
  }
  .bl_glFooterCtaLinkTextWrapper {
    justify-content: flex-start;
    gap: 18px;
  }
  .bl_glFooterCtaLinkIcon {
    width: clamp(1.875rem, 0.898rem + 4.17vw, 2.375rem);  /* 30px ～ 38px */
    height: clamp(1.875rem, 0.898rem + 4.17vw, 2.375rem);
  }
  .bl_glFooterCtaLinkText {
    font-size: clamp(1.25rem, 1.006rem + 1.04vw, 1.375rem);  /* 20px ～ 22px */
  }
  .bl_glFooterCtaLinkSubText {
    font-size: clamp(0.75rem, 0.384rem + 1.56vw, 0.938rem);  /* 12px ～ 15px */
  }
}




.bl_glFooterContactWrapper {
  width: 50%;
  height: 220px;
  background-color: #20653c;
}

.bl_glFooterWrapper {
  width: 100%;
  padding-top: 78px;
  padding-bottom: 80px;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterWrapper {
    display: none;
  }
}
@media print {
  .bl_glFooterWrapper {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

.bl_glFooterListWrapper {
  width: 100%;
}

.el_glFooterLogoImage {
  fill: #fff;
  width: 180px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
}

.bl_glFooterList {
  display: grid;
  grid-template-columns: repeat(4, auto);
  grid-template-rows: repeat(4, auto);
}
@media print {
  .bl_glFooterList {
    display: none;
  }
}

.bl_glFooterListItem:nth-of-type(1) {
  grid-column: 1/2;
  grid-row: 1/5;
}
.bl_glFooterListItem:nth-of-type(2) {
  grid-column: 2/3;
  grid-row: 1/5;
}
.bl_glFooterListItem:nth-of-type(3) {
  grid-column: 3/4;
  grid-row: 1/5;
}
.bl_glFooterListItem:nth-of-type(4) {
  grid-column: 4/5;
  grid-row: 1/2;
}
.bl_glFooterListItem:nth-of-type(5) {
  grid-column: 4/5;
  grid-row: 2/3;
}
.bl_glFooterListItem:nth-of-type(6) {
  grid-column: 4/5;
  grid-row: 3/4;
}
.bl_glFooterListItem:nth-of-type(7) {
  grid-column: 4/5;
  grid-row: 4/5;
}
.bl_glFooterListItem:nth-of-type(7) .el_glFooterListItemLink { margin-bottom: 0; }
/* .bl_glFooterListItem:nth-of-type(8) {
  grid-column: 6/7;
  grid-row: 1/2;
}
.bl_glFooterListItem:nth-of-type(9) {
  grid-column: 6/7;
  grid-row: 2/3;
}
.bl_glFooterListItem:nth-of-type(10) {
  grid-column: 6/7;
  grid-row: 3/4;
} */

.el_glFooterListItemLink {
  display: inline-block;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  font-size: 1.125rem;
  margin-bottom: 21px;
}
.el_glFooterListItemLink:hover, .el_glFooterListItemLink:focus {
  text-decoration: underline;
}
@media only screen and (max-width: 819px) {
  .el_glFooterListItemLink {
    font-size: 0.9375rem;
  }
}
.el_glFooterListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.el_glFooterSubListItemLink {
  display: inline-block;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  margin-bottom: 5px;
}
.el_glFooterSubListItemLink:hover, .el_glFooterSubListItemLink:focus {
  text-decoration: underline;
}
@media only screen and (max-width: 819px) {
  .el_glFooterSubListItemLink {
    font-size: 0.8125rem;
  }
}
.el_glFooterSubListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

.bl_glFooterBottomWrapper {
  background-color: #1b1c25;
  padding-top: 38px;
  padding-bottom: 34px;
  position: relative;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomWrapper {
    padding-top: 60px;
  }
}
@media print {
  .bl_glFooterBottomWrapper {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

.bl_glFooterBottomInner {
  width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomInner {
    display: block;
  }
}

.bl_glFooterListLogoWrapper {
  width: 180px;
  height: auto;
}

.bl_glFooterBottomListWrapper {
  width: auto;
  height: auto;
  margin-left: 40px;
}
@media (max-width: 1200px) {
  .bl_glFooterBottomListWrapper {
    margin-left: 3%;
  }
}
@media only screen and (max-width: 819px) {
  .bl_glFooterBottomListWrapper {
    margin-left: 20px;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomListWrapper {
    width: 100%;
    margin-top: 25px;
    margin-left: 0;
  }
}

.bl_glFooterBottomList {
  display: flex;
  justify-content: flex-start;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomList {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
@media print {
  .bl_glFooterBottomList {
    display: none;
  }
}

.bl_glFooterBottomListItem {
  width: auto;
  line-height: 1;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomListItem {
    margin-right: 2em;
    margin-bottom: 0.5em;
  }
}
.bl_glFooterBottomListItem:last-of-type {
  border: none;
}
.bl_glFooterBottomListItem:first-of-type > .bl_glFooterBottomListItemLink {
  padding-left: 0;
}

.bl_glFooterBottomListItemLink {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  padding-left: 1em;
  padding-right: 1em;
}
@media only screen and (max-width: 819px) {
  .bl_glFooterBottomListItemLink {
    font-size: 0.8125rem;
    padding-left: 0.6em;
    padding-right: 0.6em;
  }
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomListItemLink {
    font-size: 0.75rem;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    display: block;
    line-height: 1.8;
  }
}
.bl_glFooterBottomListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #fff;
  outline-offset: -2px;
}

.bl_glFooterBottomText {
  color: #fff;
  font-size: 0.75rem;
  text-align: left;
  margin-top: 10px;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterBottomText {
    background-color: #1b1c25;
    margin-top: 0;
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
@media print {
  .bl_glFooterBottomText {
    margin-top: 0;
  }
}

.bl_glFooterGoTopWrapper {
  position: absolute;
  bottom: 100%;
  right: 0;
  width: 130px;
  height: 130px;
  transition-duration: 0.5s;
  transition-property: margin-bottom;
  overflow: hidden;
  z-index: 9000;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterGoTopWrapper {
    transform: scale(0.7, 0.7);
    transform-origin: right bottom;
  }
}
@media print {
  .bl_glFooterGoTopWrapper {
    display: none !important;
  }
}
.bl_glFooterGoTopWrapper.fixed {
  position: fixed;
  bottom: 0;
  margin-bottom: -130px;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterGoTopWrapper.fixed {
    bottom: 0;
  }
}
.bl_glFooterGoTopWrapper.moved {
  margin-bottom: 0;
}
@media only screen and (max-width: 567px) {
  .bl_glFooterGoTopWrapper.moved {
    margin-bottom: 0;
    bottom: calc(100% - 60px);
  }
}
@media only screen and (max-width: 567px) {
  .bl_glFooterGoTopWrapper.moved.fixed {
    margin-bottom: 0;
    bottom: 36px;
  }
}

.bl_glFooterGoTopBtn {
  width: 200%;
  height: 200%;
  background-color: #1b1c25;
  transform: rotate(45deg);
  margin-left: 54px;
  position: relative;
  cursor: pointer;
  transition-duration: 0.3s;
  transition-property: background-color;
}
.bl_glFooterGoTopBtn::before {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  bottom: 76px;
  left: 35px;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transform: rotate(180deg);
  transition-duration: 0.3s;
  transition-property: bottom, left;
}
.bl_glFooterGoTopBtn::after {
  position: absolute;
  content: "";
  display: block;
  width: 15px;
  height: 4px;
  bottom: 100px;
  left: 21px;
  background-color: #fff;
  transform: rotate(135deg);
  transition-duration: 0.3s;
  transition-property: bottom, left;
}
.bl_glFooterGoTopBtn:hover, .bl_glFooterGoTopBtn:focus {
  background-color: #101116;
}
.bl_glFooterGoTopBtn:hover::before, .bl_glFooterGoTopBtn:focus::before {
  bottom: 81px;
  left: 30px;
}
.bl_glFooterGoTopBtn:hover::after, .bl_glFooterGoTopBtn:focus::after {
  bottom: 105px;
  left: 16px;
}
.bl_glFooterGoTopBtn:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #ff0;
  outline-offset: -2px;
}

/**********************************************************************************************
パンくずリスト
**********************************************************************************************/
.bl_breadcrumbsWrapper {
  width: 100%;
  padding-left: 32px;
  padding-right: 35px;
}
@media only screen and (max-width: 819px) {
  .bl_breadcrumbsWrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.bl_breadcrumbsList {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding-top: 10px;
  padding-bottom: 10px;
}

.bl_breadcrumbsListItem {
  font-size: 0.8125rem;
  color: #333;
}

.bl_breadcrumbsListItemLink {
  color: #666;
  text-decoration: none;
  padding-right: 40px;
  position: relative;
}
.bl_breadcrumbsListItemLink:hover {
  color: #333;
  text-decoration: underline;
}
.bl_breadcrumbsListItemLink::after {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  right: 17px;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
  border-left: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  transform: rotate(-135deg);
  transition-duration: 0.3s;
}
.bl_breadcrumbsListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: -2px;
}

/* リスト ****************************************/
.bl_commonUnorderedList {
  font-size: 1rem;
}
.bl_commonUnorderedList.fontSize_s {
  font-size: 0.875rem;
}
.bl_commonUnorderedList .normal {
  position: relative;
}
.bl_commonUnorderedList .normal.inline {
  display: inline-block;
  margin-right: 1em;
}
.bl_commonUnorderedList .circle {
  width: 100%;
  padding-left: 1.625em;
  position: relative;
}
.bl_commonUnorderedList .circle::before {
  position: absolute;
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  left: 0.5em;
  top: 0.6em;
  background-color: #00ac4d;
}
.bl_commonUnorderedList .circle-s {
  width: 100%;
  padding-left: 1.625em;
  position: relative;
}
.bl_commonUnorderedList .circle-s::before {
  position: absolute;
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  left: 0.5em;
  top: 0.65em;
  background-color: #00ac4d;
}

/* 順序リスト ****************************************/
.bl_commonOrderList {
  font-size: 1rem;
}
.bl_commonOrderList.fontSize_s {
  font-size: 0.875rem;
}
.bl_commonOrderList .brackets {
  list-style-type: none;
  counter-increment: counter;
  width: 100%;
  padding-left: 3em;
  position: relative;
}
.bl_commonOrderList .brackets::before {
  position: absolute;
  display: block;
  content: "（" counter(counter) "）";
  width: 3em;
  height: 1em;
  left: 0;
}
.bl_commonOrderList .dot {
  list-style-type: none;
  counter-increment: counter;
  width: 100%;
  padding-left: 2.5em;
  position: relative;
}
.bl_commonOrderList .dot::before {
  position: absolute;
  display: block;
  content: counter(counter) ".";
  width: 3em;
  height: 1em;
  left: 0.5em;
}

/* 注意書きのリスト ****************************************/
.bl_commonAttentionList {
  font-size: 1rem;
}
.bl_commonAttentionList.fontSize_s {
  font-size: 0.875rem;
}
.bl_commonAttentionList.alignRight {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  text-align: right;
}
.bl_commonAttentionList.alignRight > li {
  display: block;
  width: 100%;
}
.bl_commonAttentionList.alignRight > li.notice {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
  text-indent: -1.2em;
}
.bl_commonAttentionList.alignRight > li.notice::before {
  position: static;
  display: inline;
  margin-right: 3px;
}
.bl_commonAttentionList .notice {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 0.3em;
}
.bl_commonAttentionList .notice::before {
  position: absolute;
  content: "※";
  width: 1.2em;
  height: 1em;
  display: block;
  top: 0;
  left: 0;
}
.bl_commonAttentionList .notice.inline::before {
  top: -0.15em;
}

/* PC／SPで表示非表示切替え ****************************************/
.hp_pcOnly {
  display: block !important;
}
@media only screen and (max-width: 567px) {
  .hp_pcOnly {
    display: none !important;
  }
}

.hp_spOnly {
  display: none !important;
}
@media only screen and (max-width: 567px) {
  .hp_spOnly {
    display: block !important;
  }
}


.hp_pcOnly819 {
  display: block !important;
}
@media only screen and (max-width: 819px) {
  .hp_pcOnly819 {
    display: none !important;
  }
}

.hp_spOnly819 {
  display: none !important;
}
@media only screen and (max-width: 819px) {
  .hp_spOnly819 {
    display: block !important;
  }
}


/* ie11時のお知らせ枠 ****************************************/
.bl_ie11Wrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
}

.bl_ie11TextWrapper {
  margin-top: 40px;
}

.el_ie11Text {
  text-align: center;
  margin-top: 2em;
}





/**********************************************************************************************
2025.01 add
News 新着情報一覧
**********************************************************************************************/
.bl_newsWrapper {
  margin: 0 auto;
}
.bl_newsList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(224px, 1fr));
  gap: clamp(0.938rem, 0.396rem + 2.31vw, 2.188rem);
}
.bl_newsListItem {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.bl_newsListItemLink {
  display: inherit;
  grid-template-rows: inherit;
  grid-row: inherit;
  gap: 15px;
  grid-template-areas: "image" "sup" "text";

  padding-bottom: 50px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0px 0px 9px 0px rgba(0, 0, 0, 0.15);
  overflow: clip;
  color: #333;
  text-decoration: none;
}
a.bl_newsListItemLink {
  transition: .3s ease opacity;
  position: relative;
}
a.bl_newsListItemLink:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: #000;
  outline-offset: 0;
}
a.bl_newsListItemLink[target=_blank]::after {
  content: "";
  width: 17px;
  height: 17px;
  background: url(/common/image/base/icon_arrow_right_up.svg) no-repeat center / contain;
  position: absolute;
  right: 18px;
  bottom: 14px;
}
a.bl_newsListItemLink[href$=".pdf"]::after {
  content: "";
  width: 17px;
  height: 20px;
  background: url(/common/image/base/icon_pdf.svg) no-repeat center / contain;
  position: absolute;
  right: 20px;
  bottom: 13px;
}
a.bl_newsListItemLink:hover {
  opacity: .5;
}
body#top a.bl_newsListItemLink:hover {
  opacity: .7;
}

.bl_newsListItemSup {
  grid-area: sup;
  padding: 0 20px;
  margin-bottom: -10px;
}

.bl_newsListItemDate {
  color: #707070;
  font-size: 0.938em;
  white-space: nowrap;
}
.bl_newsListItemCompany {
  padding: .2em 1em;
  font-size: 0.75em;
  font-weight: bold;
  color: #fff;
  background-color: #333;

  min-width: 71.43%;
  display: inline-grid;
  place-items: center;

  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.bl_newsListItemCompany.xst { background-color: var(--color-xst); }
.bl_newsListItemCompany.wtb { background-color: var(--color-wtb); }
.bl_newsListItemCompany.ret { background-color: var(--color-ret); }
.bl_newsListItemCompany.fds { background-color: var(--color-fds); }
.bl_newsListItemCompany.dev { background-color: var(--color-dev); }
.bl_newsListItemCompany.rct { background-color: var(--color-rct); }

.bl_newsListItemText {
  grid-area: text;
  margin-top: -5px;
  padding: 0 20px;
}
.bl_newsListItemTextTitle {
  overflow: hidden;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.bl_newsListItemTextPdf {
  /* margin-top: 1rem; */
  color: #707070;
  font-size: 0.8125em;

  position: absolute;
  bottom: 13px;
}
.bl_newsListItemImage {
  grid-area: image;
  width: 100%;
  padding-top: 59.8%;
  background-color: var(--color-white);
  position: relative;
}
.bl_newsListItemImage > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

.el_newsListError {
  padding: 1em;
  color: #666;
  font-weight: bold;
  text-align: center;
  background-color: #FBFAF2;
  border-radius: 12px;
}

@media only screen and (max-width: 567px) {
  .bl_newsList {
    grid-template-columns: 1fr;
  }
  .bl_newsListItem {
    display: block;
  }
  .bl_newsListItemLink {
    display: grid;
    grid-template-columns: 46% 1fr;
    grid-template-rows: repeat(2, max-content);
    grid-template-areas:
      "image sup"
      "text text";
    padding-bottom: 40px;
  }
  .bl_newsListItemSup {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(2, max-content);
    place-self: center flex-start;
    gap: 6px;
    width: calc(100% - 15px);
    margin: 0;
    padding: 0;
  }
  .bl_newsListItemDate {
    font-size: clamp(0.75rem, 0.384rem + 1.56vw, 0.938rem);
  }
  .bl_newsListItemCompany {
    width: 100%;
    font-size: min(2.4vw, 0.875em);
    position: relative;
  }
  .bl_newsListItemText { margin-top: 0; }
  .bl_newsListItemTextTitle {
    font-size: clamp(0.875rem, 0.387rem + 2.08vw, 1.125rem);
    -webkit-line-clamp: 2;
  }
  a.bl_newsListItemLink[target=_blank]::after {
    width: 14px;
    height: 14px;
    right: 14px;
    bottom: 14px;
  }
  a.bl_newsListItemLink[href$=".pdf"]::after {
    width: 16px;
    height: 18px;
    right: 14px;
    bottom: 14px;
  }
}


/**********************************************************************************************
2025.01 add
共通ボタン
**********************************************************************************************/
.bl_commonBtnWrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 70px;
}
.bl_commonBtn {
  display: grid;
  place-items: center flex-start;
  width: 400px;
  min-height: 70px;
  padding: 20px 70px 20px 45px;
  font-size: 1.125em;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  background-color: #399E4E;
  border-radius: 5px;
  box-shadow: 0px 3px 6px 0px rgba(51, 51, 51, 0.16);
  position: relative;
  overflow: clip;
}
.bl_commonBtn::before {
  position: absolute;
  content: "";
  z-index: 0;
  width: 140%;
  height: 100%;
  background: var(--color-black);
  top: 0;
  right: 120%;
  transform: skewX(-20deg);
  transition-duration: 0.3s;
}
.bl_commonBtn::after {
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  right: 45px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(45deg);
  z-index: 1;
}
.bl_commonBtn:hover::before {
  right: -20%;
}
.bl_commonBtnText {
  z-index: 1;
}
.bl_commonBtn:focus-visible {
  outline-style: solid;
  outline-width: 2px;
  outline-color: var(--color-black);
  outline-offset: 0;
}

@media only screen and (max-width: 567px) {
  .bl_commonBtnWrapper {
    margin-top: 60px;
  }
  .bl_commonBtn {
    width: 80%;
    min-height: auto;
    padding: 17px 50px 17px 30px;
  }
  .bl_commonBtn::after {
    right: 30px;
  }
}