@charset "UTF-8";
/**
 * modulesで使われる想定のcssはこちらに集約
 */
/**
 * Colors
 */
/*-----------------------------------------------------------------
 * mixin …各セクションやページで共通しているscssをまとめた要素            *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 01. breakpoint / liquid
* 02. effect
* 03. button
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
01. breakpoint / liquid
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
02. effect
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
03. button
----------------------------------------------------------------- */
/**
* primaryBtn
 */
/**
* secondaryBtn
* $type:normal(アイコンなし),right(右矢印),left(左矢印)
 */
/*-----------------------------------------------------------------
 * molecules : AvexFooter                                        *
-----------------------------------------------------------------*/
.avexFooter {
  color: #fff;
  line-height: 1.1;
  margin-top: 9px;
  text-align: center;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .avexFooter {
    margin-top: 23px;
  }
}

/*-----------------------------------------------------------------
 * molecules : FooterBanner                                      *
-----------------------------------------------------------------*/
.footerBnr {
  width: 149px;
}

@media screen and (max-width: 1023px) {
  .footerBnr {
    margin-top: 32px;
  }
}

.footerBnr__link {
  display: block;
  font-size: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .footerBnr__link:active {
    opacity: 0.5;
  }
}

@media screen and (min-width: 1024px) {
  .footerBnr__link:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

.footerBnr__img {
  display: block;
  width: 100%;
}

/*-----------------------------------------------------------------
 * molecules : Loading                                           *
-----------------------------------------------------------------*/
/**
 * loading animation
 */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

.loading {
  height: calc(100vh - 280px);
  position: relative;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .loading {
    height: calc(100vh - 300px);
  }
}

/**
 * loading contents
 */
/* circle */
.loader__icon {
  -webkit-transform: translate(-50%, -50%);
  height: 40px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
}

/* animation icon */
.loader__icon__quart {
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 50px;
  display: inline-block;
  height: 40px;
  position: relative;
  vertical-align: middle;
  width: 40px;
}

.loader__icon__quart:after {
  -webkit-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  border: 2px solid transparent;
  border-radius: 50px;
  border-top-color: #004cad;
  bottom: -2px;
  content: '';
  left: -2px;
  position: absolute;
  right: -2px;
  top: -2px;
}

/*-----------------------------------------------------------------
 * molecules : HeaderSearchArea                                  *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 00. wrap
* 01. search
* 02. keywords
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
00. wrap
----------------------------------------------------------------- */
.headerSearchArea {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 0 32px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .headerSearchArea {
    min-height: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .headerSearchArea {
    height: auto;
    padding: 0;
  }
}

/* ----------------------------------------------------------------
01. search
----------------------------------------------------------------- */
.headerSearchInput {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
  width: 376px;
}

@media screen and (max-width: 1023px) {
  .headerSearchInput {
    margin-bottom: 20px;
    width: 100%;
  }
  .headerSearchInput:after {
    display: none;
    opacity: 0;
  }
}

.headerSearchInput:after {
  -webkit-transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.8);
  content: '';
  display: block;
  height: 24px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.headerSearchInput__form {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8px;
  justify-content: flex-start;
  width: 100%;
}

.headerSearchInput__btn {
  -webkit-transition: opacity 0.3s;
  background: none;
  border: none;
  font-size: 0;
  margin: 0;
  padding: 0;
  transition: opacity 0.3s;
}

@media screen and (max-width: 1023px) {
  .headerSearchInput__btn {
    -webkit-box-sizing: border-box;
    -webkit-transform: translateY(-50%);
    background-color: #000;
    border-radius: 14px;
    box-sizing: border-box;
    font-size: 0;
    height: 28px;
    position: absolute;
    right: 4px;
    text-align: center;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    z-index: 1;
  }
}

.headerSearchInput__btn:hover,
.headerSearchInput__btn:active {
  cursor: pointer;
  opacity: 0.8;
}

.headerSearchInput__input {
  -webkit-appearance: button;
  -webkit-box-sizing: border-box;
  background-color: #000;
  border: none;
  border-radius: 0;
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  height: 16px;
  line-height: 16px;
  width: calc(100% - 16px - 8px - 12px);
  /* focus */
}

@media screen and (max-width: 1023px) {
  .headerSpSearch .headerSearchInput__input {
    background-color: #eaeaea;
    border-bottom: 1px solid #000;
    color: #000;
    height: 44px;
    line-height: 44px;
    padding: 0 44px 0 12px;
    width: 100%;
  }
  .headerSpSearch .headerSearchInput__input::-webkit-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input::-moz-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:-ms-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input::-ms-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input::placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:focus {
    outline: none;
  }
  .headerSpSearch .headerSearchInput__input:focus::-webkit-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:focus::-moz-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:focus:-ms-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:focus::-ms-input-placeholder {
    color: #727272;
  }
  .headerSpSearch .headerSearchInput__input:focus::placeholder {
    color: #727272;
  }
}

.headerSearchInput__input:focus {
  outline: none;
}

.headerSearchInput__input:focus::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.headerSearchInput__input:focus::-moz-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.headerSearchInput__input:focus:-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.headerSearchInput__input:focus::-ms-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.headerSearchInput__input:focus::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.headerSearchInput__input::-webkit-input-placeholder {
  color: #fff;
}

.headerSearchInput__input::-moz-placeholder {
  color: #fff;
}

.headerSearchInput__input:-ms-input-placeholder {
  color: #fff;
}

.headerSearchInput__input::-ms-input-placeholder {
  color: #fff;
}

.headerSearchInput__input::placeholder {
  color: #fff;
}

/* ----------------------------------------------------------------
02. keywords
----------------------------------------------------------------- */
.headerSearchKeyword,
.headerSearchKeywordList {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.headerSearchKeyword {
  padding-left: 20px;
}

@media screen and (min-width: 1024px) {
  .headerSearchKeyword {
    width: calc(100% - 376px);
  }
}

@media screen and (max-width: 1023px) {
  .headerSearchKeyword {
    padding-left: 0;
  }
}

.headerSearchKeyword__title {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  margin-right: 14px;
}

@media screen and (max-width: 1023px) {
  .headerSearchKeyword__title {
    color: #000;
    font-size: 14px;
    margin-bottom: 8px;
    margin-right: 0;
    width: 100%;
  }
}

.headerSearchKeywordList {
  gap: 8px;
}

@media screen and (min-width: 1024px) {
  .headerSearchKeywordList {
    max-width: calc(100% - 102px);
    padding: 8px 0;
  }
}

@media screen and (max-width: 1023px) {
  .headerSearchKeywordList {
    width: 100%;
  }
}

.headerSearchKeywordList__list {
  min-height: 20px;
}

@media screen and (max-width: 1023px) {
  .headerSearchKeywordList__list {
    min-height: 30px;
  }
}

.headerSearchKeywordList__link {
  -ms-flex-align: center;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: center;
  -webkit-box-sizing: border-box;
  -webkit-transition:
    color 0.3s,
    background-color 0.3s;
  align-items: center;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 999px;
  box-sizing: border-box;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
  font-weight: bold;
  height: 100%;
  justify-content: center;
  min-height: 20px;
  padding: 2px 16px;
  transition:
    color 0.3s,
    background-color 0.3s;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .headerSearchKeywordList__link {
    border: 1px solid #000;
    font-size: 14px;
    min-height: 30px;
  }
}

.headerSearchKeywordList__link:hover,
.headerSearchKeywordList__link:active {
  background-color: #000;
  color: #fff;
}

/*-----------------------------------------------------------------
 * molecules : BreadCrumbsList                                   *
-----------------------------------------------------------------*/
.breadcrumbListWrap {
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: auto;
  background-color: #eaeaea;
  overflow-x: scroll;
}

.breadcrumbListWrap::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.breadcrumbList {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -ms-overflow-style: none;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  -webkit-overflow-scrolling: auto;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  height: 36px;
  justify-content: flex-start;
  overflow-x: scroll;
  padding-left: 32px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

@media screen and (min-width: 1024px) {
  .breadcrumbListWrap {
    background-color: transparent;
    margin: 16px 0 58px;
  }
  .breadcrumbList {
    padding-left: min(60px, 3.125vw);
  }
}

@media screen and (max-width: 1023px) {
  .breadcrumbList {
    padding-left: 16px;
  }
}

.breadcrumbList::-webkit-scrollbar {
  -webkit-appearance: none;
  display: none;
}

.breadcrumbList__item {
  color: #707070;
  margin-right: 14px;
  position: relative;
}

.breadcrumbList__item:not(:last-child):before {
  color: #707070;
  content: '/';
  position: absolute;
  right: -10px;
  top: 0;
}

.breadcrumbList__item svg.svgCms {
  fill: #707070;
  height: 14px;
  vertical-align: text-bottom;
}

.breadcrumbList__link {
  -webkit-transition:
    color 0.3s,
    font-weight 0.3s;
  color: #707070;
  text-decoration: underline;
  transition:
    color 0.3s,
    font-weight 0.3s;
}

@media screen and (min-width: 1024px) {
  .breadcrumbList__link:hover {
    color: #3c51b2;
    font-weight: bold;
  }
}

@media screen and (max-width: 1023px) {
  .breadcrumbList__link:active {
    color: #3c51b2;
    font-weight: bold;
  }
}

/*-----------------------------------------------------------------
 * molecules : SiteLogo                                          *
-----------------------------------------------------------------*/
.siteTtlLink {
  display: block;
  font-size: 0;
}

@media screen and (max-width: 1023px) {
  .siteTtlLink:active {
    opacity: 0.5;
  }
}

@media screen and (min-width: 1024px) {
  .siteTtlLink:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

.siteTtlLogo {
  display: block;
  width: 100%;
}

/*-----------------------------------------------------------------
 * molecules : MainNavigation                                    *
-----------------------------------------------------------------*/
@media screen and (min-width: 1024px) {
  .mainNav {
    -ms-flex-align: center;
    -ms-flex-pack: start;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1023px) {
  .mainNav {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .headerMainNav .mainNav {
    gap: 0 32px;
  }
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .headerMainNav .mainNav {
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    gap: 0 1.5vw;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1023px) {
  .headerMainNav .mainNav {
    position: relative;
  }
  .headerMainNav .mainNav:before {
    background-color: #cbcbcc;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

@media screen and (max-width: 1023px) {
  .mainNav__list {
    border-bottom: 1px solid #cbcbcc;
  }
}

.mainNav__link {
  font-size: 16px;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .mainNav__link {
    -ms-flex-align: center;
    -ms-flex-pack: start;
    -ms-flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-box-pack: start;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 13px 30px 11px 16px;
    position: relative;
    width: 100%;
  }
  .mainNav__link:before,
  .mainNav__link:after {
    -webkit-transform: translateY(-50%);
    background-color: #000;
    content: '';
    display: block;
    height: 7px;
    position: absolute;
    right: 21px;
    transform: translateY(-50%);
    width: 2px;
  }
  .mainNav__link:before {
    -webkit-transform: rotate(-45deg);
    top: calc(50% - 6px);
    transform: rotate(-45deg);
  }
  .mainNav__link:after {
    -webkit-transform: rotate(45deg);
    top: calc(50% - 2px);
    transform: rotate(45deg);
  }
}

.mainNav__link:active,
.mainNav__link:hover {
  color: #3c51b2;
  font-weight: bold;
}

.mainNav__link:hover {
  -webkit-transition:
    color 0.3s,
    font-weight 0.3s;
  transition:
    color 0.3s,
    font-weight 0.3s;
}

/*-----------------------------------------------------------------
 * molecules : SnsList                                           *
-----------------------------------------------------------------*/
.snsWrap {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media screen and (max-width: 1023px) {
  .snsWrap.sns--header {
    padding-left: 22px;
    padding-right: 16px;
  }
}

.snsWrap.sns--footer {
  margin-top: 12px;
}

@media screen and (max-width: 1023px) {
  .snsWrap.sns--footer {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 16px;
  }
}

.snsLeads {
  font-family: presicav, sans-serif;
  font-size: 12px;
  margin-right: 12px;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .sns--header .snsLeads {
    display: none;
  }
}

@media screen and (max-width: 1023px) {
  .sns--header .snsLeads {
    margin-bottom: 12px;
    margin-right: 0;
    width: 100%;
  }
}

.sns--footer .snsLeads {
  color: #fff;
}

.snsList {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.sns--header .snsList {
  gap: 0 12px;
}

.sns--footer .snsList {
  gap: 0 16px;
}

.sns--header .snsList__list {
  width: 32px;
}

@media screen and (max-width: 1023px) {
  .sns--header .snsList__list {
    width: 40px;
  }
}

.sns--footer .snsList__list {
  width: 40px;
}

.snsList__link {
  display: block;
  font-size: 0;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .snsList__link:active {
    opacity: 0.5;
  }
}

@media screen and (min-width: 1024px) {
  .snsList__link:hover {
    cursor: pointer;
    opacity: 0.5;
  }
}

.snsList__img {
  display: block;
  width: 100%;
}

/*-----------------------------------------------------------------
 * molecules : SubNavigation                                     *
-----------------------------------------------------------------*/
.subNav {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: flex-start;
}

.subNav.subNav--footer {
  -ms-flex-pack: end;
  -webkit-box-pack: end;
  justify-content: flex-end;
}

@media screen and (max-width: 1023px) {
  .subNav.subNav--header {
    border-bottom: 1px solid #cbcbcc;
    margin-bottom: 10px;
    margin-left: 22px;
    padding: 20px 0 19px 0;
    width: calc(100% - 16px - 22px);
  }
}

@media screen and (max-width: 1023px) {
  .subNav__list {
    width: 100%;
  }
}

.subNav__link {
  -webkit-transition: font-weight 0.3s;
  position: relative;
  transition: font-weight 0.3s;
}

@media screen and (max-width: 1023px) {
  .subNav__link {
    font-size: 14px;
    font-weight: 500;
  }
}

.subNav--footer .subNav__link {
  color: #fff;
  line-height: 1.7;
}

.subNav__link:active,
.subNav__link:hover {
  color: #3c51b2;
  font-weight: bold;
}

@media screen and (max-width: 1023px) {
  .subNav__link:active.subNav__link--blank:before,
  .subNav__link:hover.subNav__link--blank:before {
    background-image: url('../img/common/icon_blanklink-hover.svg');
  }
}

.subNav__link.subNav__link--blank {
  padding-right: 20px;
}

@media screen and (max-width: 1023px) {
  .subNav__link.subNav__link--blank {
    padding-right: 16px;
  }
}

.subNav__link.subNav__link--blank:before {
  background: url(../img/common/icon_blanklink.svg) 0 0 no-repeat;
  background-size: 100% 100%;
  content: '';
  display: block;
  height: 16px;
  position: absolute;
  right: 0;
  top: 0;
  width: 16px;
}

@media screen and (max-width: 1023px) {
  .subNav__link.subNav__link--blank:before {
    background-image: url(../img/common/icon_blanklink-black.svg);
    height: 12px;
    top: 2px;
    width: 12px;
  }
}

/*-----------------------------------------------------------------
 * molecules : ToTop                                             *
-----------------------------------------------------------------*/
.toTop {
  -ms-flex-align: end;
  -ms-flex-pack: center;
  -ms-flex-wrap: wrap;
  -webkit-box-align: end;
  -webkit-box-pack: center;
  align-items: flex-end;
  bottom: 2.269vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  height: 29px;
  justify-content: center;
  mix-blend-mode: difference;
  position: fixed;
  right: 32px;
  z-index: 4;
}

@media screen and (max-width: 1023px) {
  .toTop {
    bottom: 5.333vw;
    right: 16px;
  }
}

.toTop:hover .toTop__btn,
.toTop:active .toTop__btn {
  -webkit-transform: rotate(-45deg) translateX(-50%) scale(1.05);
  transform: rotate(-45deg) translateX(-50%) scale(1.05);
}

.toTop.is-absolute {
  bottom: auto;
  position: absolute;
  top: calc((29px + 2.269vw) * -1);
}

@media screen and (max-width: 1023px) {
  .toTop.is-absolute {
    bottom: auto;
    top: calc((29px + 5.333vw) * -1);
  }
}

.toTop__btn {
  -webkit-transform: rotate(-45deg) translateX(-50%);
  -webkit-transition: -webkit-transform 0.3s;
  border-right: 2px solid #fff;
  border-top: 2px solid #fff;
  display: block;
  height: 12px;
  left: 50%;
  position: absolute;
  top: 0;
  transform: rotate(-45deg) translateX(-50%);
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  width: 12px;
}

.toTop__text {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}

/*-----------------------------------------------------------------
 * molecules : GoogleTranslation                                 *
-----------------------------------------------------------------*/
.goog-te-gadget {
  bottom: 16px;
  font-size: 0 !important;
  left: 48px;
  position: fixed;
  width: 112px;
  z-index: 10;
}

@media screen and (max-width: 1023px) {
  .goog-te-gadget {
    bottom: 14px;
    left: 10px;
  }
}

.goog-te-gadget span {
  display: none;
}

.goog-te-gadget .goog-te-combo {
  margin: 4px 0;
}

.goog-te-gadget:before {
  -webkit-transform: rotate(-45deg);
  border-bottom: 1px solid #fff;
  border-left: 1px solid #fff;
  content: '';
  display: block;
  height: 6px;
  position: absolute;
  right: 5px;
  top: 14px;
  transform: rotate(-45deg);
  width: 6px;
  z-index: 1;
}

.goog-te-combo {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: #4a4a4a !important;
  border: none;
  border-radius: 8px;
  color: #fff;
  font-size: 10pt;
  height: 29px;
  line-height: 1;
  padding: 2px 4px 0 7px;
  width: 100%;
}

/*-----------------------------------------------------------------
 * organisms : FooterNavigation                                  *
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
 * organisms : HeaderNavigation                                  *
-----------------------------------------------------------------*/
/*-----------------------------------------------------------------
 * organisms : SiteFooter                                        *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 00. wrap
* 01. logo
* 02. navigation
* 03. sns & banner
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
00. wrap
----------------------------------------------------------------- */
.footer {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-box-sizing: border-box;
  align-items: center;
  background-color: #000;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .footer {
    padding: 56px 32px 12px;
  }
}

@media screen and (max-width: 1023px) {
  .footer {
    padding: 33px 10px 10px;
  }
}

/* ----------------------------------------------------------------
01. logo
----------------------------------------------------------------- */
.footerLogo {
  width: 248px;
}

@media screen and (min-width: 1024px) and (max-width: 1199px) {
  .footerLogo {
    width: 20vw;
  }
}

/* ----------------------------------------------------------------
02. navigation
----------------------------------------------------------------- */
.footerNav {
  -ms-flex-align: center;
  -ms-flex-pack: end;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  width: calc(100% - 285px - 90px);
}

@media screen and (max-width: 1023px) {
  .footerNav {
    display: none;
  }
}

.footerMainArea {
  -ms-flex-align: start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .footerMainArea {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
  }
}

/* ----------------------------------------------------------------
03. sns & banner
----------------------------------------------------------------- */
.footerSubArea {
  -ms-flex-align: start;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: start;
  -webkit-box-pack: justify;
  align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 20px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .footerSubArea {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    justify-content: center;
    margin-top: 0;
  }
}

@media screen and (max-width: 1023px) {
  .footerSns {
    width: 100%;
  }
}

/*-----------------------------------------------------------------
 * organisms : SiteHeader                                        *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 00. wrap
* 01. logo
* 02. accordion icon
* 03. navigation
* 04. search area
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
00. wrap
----------------------------------------------------------------- */
.header {
  -ms-flex-align: center;
  -ms-flex-pack: justify;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: justify;
  -webkit-box-sizing: border-box;
  align-items: center;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 14px;
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .header {
    min-height: 96px;
  }
}

@media screen and (max-width: 1023px) {
  .header {
    border-bottom: solid 1px #000;
    height: 56px;
    padding: 0 15px;
  }
}

/* ----------------------------------------------------------------
01. logo
----------------------------------------------------------------- */
.siteTtl {
  margin-left: 32px;
  width: 197px;
}

@media screen and (max-width: 1023px) {
  .siteTtl {
    margin-left: 0;
    width: 171px;
  }
}

/* ----------------------------------------------------------------
02. accordion icon
----------------------------------------------------------------- */
.acdArea {
  display: none;
}

@media screen and (max-width: 1023px) {
  .acdArea {
    display: block;
    height: 18px;
    position: fixed;
    right: 16px;
    top: 18px;
    width: 20px;
    z-index: 211;
  }
}

.acdIcon__link {
  display: block;
  height: 100%;
  position: relative;
  width: 100%;
}

.acdIcon__link::before,
.acdIcon__link::after {
  -webkit-transition: all 0.3s;
  background-color: #000;
  content: '';
  height: 2px;
  left: 0;
  position: absolute;
  transition: all 0.3s;
  width: 20px;
}

.acdIcon__link::before {
  top: 1px;
}

.acdIcon__link::after {
  bottom: 1px;
}

.acdIcon__link.is-open:before {
  -webkit-transform: rotate(-45deg);
  top: 8px;
  transform: rotate(-45deg);
}

.acdIcon__link.is-open:after {
  -webkit-transform: rotate(45deg);
  bottom: 8px;
  transform: rotate(45deg);
}

.acdIcon__linkDrawer {
  -webkit-transform: translateY(-50%);
  background-color: #000;
  height: 2px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
}

.is-open .acdIcon__linkDrawer {
  opacity: 0;
}

/* ----------------------------------------------------------------
03. navigation
----------------------------------------------------------------- */
.headerNavWrap {
  -ms-flex-align: center;
  -ms-flex-pack: end;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: end;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin-right: 32px;
  width: calc(100% - 197px - 64px);
}

@media screen and (max-width: 1023px) {
  .headerNavWrap {
    -webkit-box-sizing: border-box;
    -webkit-transition: opacity 0.3s;
    background: url('../img/common/bg.png') 0 0 repeat;
    background-size: 150% auto;
    box-sizing: border-box;
    display: block;
    margin-right: 0;
    max-height: 100vh;
    opacity: 0;
    overflow-y: scroll;
    padding: 56px 0 17px;
    position: fixed;
    right: 0;
    top: 0;
    transition: opacity 0.3s;
    width: 67vw;
    z-index: -10;
  }
  .headerNavWrap.is-show {
    opacity: 1;
  }
  .headerNavWrap.is-active {
    z-index: 206;
  }
  .headerNavWrap::-webkit-scrollbar {
    -webkit-appearance: none;
    display: none;
  }
}

.headerNav {
  -ms-flex-align: center;
  -ms-flex-pack: start;
  -ms-flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-box-pack: start;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}

@media screen and (max-width: 1023px) {
  .headerNav {
    display: block;
  }
}

.headerSubNav {
  display: none;
}

@media screen and (max-width: 1023px) {
  .headerSubNav {
    display: block;
  }
}

.headerSns {
  margin-left: 30px;
  padding-left: 30px;
  position: relative;
}

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  .headerSns {
    margin-left: 1.95vw;
    padding-left: 1.95vw;
  }
}

@media screen and (max-width: 1023px) {
  .headerSns {
    margin: 0;
    padding-left: 0;
  }
  .headerSns:before {
    display: none;
    opacity: 0;
  }
}

.headerSns:before {
  -webkit-transform: translateY(-50%);
  background-color: #000;
  content: '';
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

/**
 * backgroun (sp)
 */
.headerNavBg {
  display: none;
}

@media screen and (max-width: 1023px) {
  .headerNavBg {
    -webkit-transition: opacity 0.3s;
    background-color: rgba(0, 0, 0, 0.6);
    display: block;
    height: 100vh;
    left: 0;
    opacity: 0;
    position: fixed;
    top: 0;
    transition: opacity 0.3s;
    width: 100vw;
    z-index: -10;
  }
}

.headerNavBg.is-show {
  opacity: 1;
}

.headerNavBg.is-active {
  z-index: 205;
}

/* ----------------------------------------------------------------
04. search area
----------------------------------------------------------------- */
.headerSpSearch {
  display: none;
}

@media screen and (max-width: 1023px) {
  .headerSpSearch {
    display: block;
    padding: 19px 14px 20px 19px;
    position: relative;
  }
  .headerSpSearch:before {
    background-color: #cbcbcc;
    content: '';
    display: block;
    height: 1px;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
  }
}

.headerSearchWrap {
  background-color: #000;
  margin-top: 10px;
  width: 100%;
}

@media screen and (max-width: 1023px) {
  .headerSearchWrap {
    display: none;
  }
}
