@charset "UTF-8";

@import url("https://fonts.googleapis.com/earlyaccess/notosansjp.css");

@media (min-width: 769px) {
  body {
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "Lucida Grande", "游ゴシック", "Noto Sans JP", Meiryo, "メイリオ", Roboto, "Droid Sans", sans-serif;
    color: #555;
  }
}

@media (max-width: 768px) {
  body {
    font-family: "Noto Sans JP", Meiryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #555;
  }
}

.drawer {
  font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", Meiryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  line-height: 1;
  font-size: 16px;
  position: fixed;
  z-index: 2000;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  transition: .2s ease-out;
}

.drawer.on {
  left: 0;
}

.drawer__head {
  display: grid;
  grid: "headBody headClose" auto / 1fr 100px;
  padding: 16px 15px 16px 25px;
  border-bottom: 1px solid #E0DFDE;
  line-height: 1;
}

.drawer__headBody {
  grid-area: headBody;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.drawer__headClose {
  grid-area: headClose;
}

.drawer__headCloseButton {
  outline: none;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  flex-flow: row;
  background-color: transparent;
  line-height: 1;
  border: 0;
  font-size: 16px;
}

.drawer__headCloseButton::before {
  content: "";
  display: block;
  background: url("../img/icon/cross-black.svg") 0 0 no-repeat;
  background-size: contain;
  width: 11px;
  height: 10px;
  margin-right: 0.5em;
}

.drawer__body {
  overflow: auto;
  max-height: calc(100% - 50px);
}

.drawer__buttons {
  background-color: #E4F3FB;
  padding: 13px 15px;
  overflow: hidden;
}

.drawer__subTItle {
  background-color: #EBEBEB;
  color: #626262;
  font-size: 13px;
  padding: 8px 20px;
  font-weight: bold;
}

.drawer__menuList {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  overflow: hidden;
  flex-wrap: wrap;
}

.drawer_menuListItem {
  border-bottom: 1px solid #EBEBEB;
  border-right: 1px solid #EBEBEB;
  width: 50%;
  float: left;
}

.drawer_menuListItem.one_line {
  width: 100%;
}

.drawer_menuListItem.on {
  background-color: #EFFDFC;
}

.drawer_menuListItem.on .drawer_menuItem::after {
  transform: rotate3d(0, 0, 1, 90deg);
}

.bg_blue .drawer_menuListItem {
  background-color: #EFF7FA;
}

.drawer_areaTime {
  border-bottom: 1px solid #EBEBEB;
}

.drawer_areaTime.on {
  background-color: #ffffff;
  border-bottom-color: #E0DFDE00;
}

.drawer_areaTime.on .drawer_areaTime__trg::after {
  transform: rotate3d(0, 0, 1, 90deg);
}

.drawer_areaTime__trg,
.drawer__button,
.drawer_menuItem {
  display: flex;
  width: 100%;
  justify-content: flex-start;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  color: #007DBE;
  padding: 16px 10px 16px 20px;
  text-decoration: none;
  transition: .2s ease;
}

.drawer_areaTime__trg::after,
  .drawer__button::after,
  .drawer_menuItem::after {
  display: block;
  content: ">";
  margin-left: auto;
  transition: .2s ease;
}

.drawer_areaTime__trg.bg-blue,
  .drawer__button.bg-blue,
  .drawer_menuItem.bg-blue {
  background-color: #037CBE;
  color: #FFF;
  width: calc(50% - 5px);
  float: left;
  line-height: 1.4;
  padding-top: 8px;
  padding-bottom: 8px;
}

.drawer_areaTime__trg.bg-orange,
  .drawer__button.bg-orange,
  .drawer_menuItem.bg-orange {
  background-color: #F59B59;
  color: #FFF;
  width: calc(50% - 5px);
  float: right;
  line-height: 1.4;
  padding-top: 8px;
  padding-bottom: 8px;
}

a.drawer_menuItem:hover {
  background-color: #007dbe17;
}

.drawer_areaTime__trg {
  outline: 0;
  border: 0;
}

.drawer_areaTime__trg:focus {
  outline: 0;
}

.drawer_areaTime__trg__time {
  font-size: 12px;
  display: inline-block;
  margin-left: 0.5em;
}

.drawer__button {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  border-radius: 3px;
  margin-top: 0.5em;
}

.drawer_areaTime__child,
.drawer_menuListItem__child {
  display: none;
  padding: 0 25px 16px;
}

.drawer_areaTime.on .drawer_areaTime__child, .drawer_areaTime.on
  .drawer_menuListItem__child {
  display: block;
  border-bottom: 1px solid #EBEBEB;
}

.drawer_areaTime__child.on,
.drawer_menuListItem__child {
  display: block;
}

.drawerAreaTimeList {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px 11px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawerAreaTimeLink {
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 2px #666666BF;
  border-radius: 3px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #666;
  text-decoration: none;
  padding: 14px;
  transition: .2s all;
}

.drawerAreaTimeLink:hover {
  background-color: #E4F3FB;
}

[v-cloak] {
  display: none;
}

.globalFooterSP__cv {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  box-sizing: border-box;
  padding: 5px 0;
}

.globalFooterSP__cv.stick {
  margin-left: -12px;
  margin-right: -12px;
  padding: 0;
}

.globalFooterSP__cvTell {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  align-items: center;
  background: transparent linear-gradient(160deg, #2db12d 0%, #2db12d 60%, #019e01 99%, #019e01 100%) 0% 0% no-repeat padding-box;
  padding-left: 15px;
  padding-right: 15px;
}

.globalFooterSP__cvTell.bg-blue-800 {
  background: transparent linear-gradient(160deg, #007DBE 0%, #007DBE 60%, #087DBE 99%, #087DBE 100%) 0% 0% no-repeat padding-box;
}

.globalFooterSP__cvTell.disabled {
  background: transparent;
  --bg-opacity: 1;
  background-color: #C1C1C1;
  background-color: rgba(193, 193, 193, var(--bg-opacity));
}

.globalFooterSP__cvTell.disabled .globalFooterSP__cvTell__white {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  --text-opacity: 1;
  color: #C1C1C1;
  color: rgba(193, 193, 193, var(--text-opacity));
}

.globalFooterSP__cvTell.new_pattern {
  padding-top: 4px;
  padding-bottom: 4px;
  background: #1EA91D;
}

.globalFooterSP__cvTell__white {
  background-color: #fff;
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #2db12d;
  font-size: 12px;
  width: 78px;
  flex-shrink: 0;
  padding: 6px 0;
  text-align: center;
  line-height: 16px;
  margin-right: 10px;
}

.globalFooterSP__cvTell.bg-blue-800 .globalFooterSP__cvTell__white {
  --text-opacity: 1;
  color: #007DBE;
  color: rgba(0, 125, 190, var(--text-opacity));
}

.globalFooterSP__cvTell__body {
  font-size: 25px;
  text-align: center;
  margin-top: 2px;
  line-height: 1;
}

.globalFooterSP__cvTell__body > small {
  margin-top: 6px;
}

@media (max-width: 320px) {
  .globalFooterSP__cvTell__body {
    font-size: 20px;
  }
}

.globalFooterSP__cvTell__body small {
  text-decoration: none;
  font-size: 11px;
  display: block;
  margin-bottom: 2px;
}

@media (max-width: 320px) {
  .globalFooterSP__cvTell__body small {
    font-size: 10px;
    letter-spacing: -0.125em;
  }
}

.globalFooterSP__cvTell__body--typeNum {
  font-size: 30px;
  text-align: left;
  margin-top: 0;
  line-height: 1;
}

.globalFooterSP__cvTell__body--typeNum > small {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: normal;
}

.new_pattern .globalFooterSP__cvTell__body {
  font-size: 23px;
}

.new_pattern .globalFooterSP__cvTell__body > small {
  margin-top: 4px;
}

@media (max-width: 320px) {
  .new_pattern .globalFooterSP__cvTell__body {
    font-size: 23px;
  }
}

.new_pattern .globalFooterSP__cvTell__body small {
  font-size: 13px;
}

.globalFooterSP__cvTell__body--newPattern {
  font-size: 23px;
  text-align: left;
}

.globalFooterSP__cvTell__body--newPattern > small {
  margin-top: 4px;
}

@media (max-width: 320px) {
  .globalFooterSP__cvTell__body--newPattern {
    font-size: 23px;
  }
}

.globalFooterSP__cvTell__body--newPattern small {
  font-size: 13px;
}

.globalFooterSP__cvTell__img {
  width: 48px;
  margin-right: 20px;
}

.globalFooterSP__cvTell__img--typeNum {
  margin-right: 12px;
}

.new_pattern .globalFooterSP__cvTell__img {
  width: 130px;
  margin-right: 5px;
}

.globalFooterSP__cvTell__img--1 {
  width: 48px;
  margin-right: 0;
}

.globalFooterSP__cvTell__img--2 {
  width: 70px;
  margin: 0 1.5% 0 4%;
}

.globalFooterSP__cvLineIcon,
.globalFooterSP__cvWebIcon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}

.globalFooterSP__cvLine {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  padding-top: 7px;
  padding-bottom: 7px;
  background: transparent linear-gradient(160deg, #2db12d 0%, #2db12d 60%, #019e01 99%, #019e01 100%) 0% 0% no-repeat padding-box;
}

.globalFooterSP__cvLine.is-multiple {
  margin-right: 7px;
  flex: 205px 0 0;
  font-size: 16px;
}

.globalFooterSP__cvLineIcon img {
  width: 32px;
  height: 32px;
}

.globalFooterSP__cvLineText {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globalFooterSP__cvWeb {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: transparent linear-gradient(160deg, #0cccb8 0%, #00beaa 60%, #00beaa 100%) 0% 0% no-repeat padding-box;
}

.globalFooterSP__cvWeb.is-multiple {
  font-size: 14px;
  line-height: 18px;
}

.globalFooterSP__cvWebIcon img {
  width: 30px;
  height: 21px;
}

.globalFooterSP__cvWebIconText {
  display: flex;
  justify-content: center;
  align-items: center;
}

.globalFooterSP__disableButton {
  position: relative;
  top: -10px;
}

.globalFooterSP__cvTellKonzatsu {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  background: transparent linear-gradient(160deg, #2db12d 0%, #2db12d 60%, #019e01 99%, #019e01 100%) 0% 0% no-repeat padding-box;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 1;
}

.globalFooterSP__cvTellKonzatsu.bg-blue-800 {
  background: transparent linear-gradient(160deg, #007DBE 0%, #007DBE 60%, #087DBE 99%, #087DBE 100%) 0% 0% no-repeat padding-box;
}

.globalFooterSP__cvTellKonzatsu.disabled {
  background: transparent;
  --bg-opacity: 1;
  background-color: #C1C1C1;
  background-color: rgba(193, 193, 193, var(--bg-opacity));
}

.globalFooterSP__cvTellKonzatsu.disabled .globalFooterSP__cvTell__white {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
  --text-opacity: 1;
  color: #C1C1C1;
  color: rgba(193, 193, 193, var(--text-opacity));
}

.globalFooterSP__cvTellKonzatsu__text {
  font-size: 11px;
  margin-bottom: 3px;
  text-align: center;
  line-height: 1.3;
}

.globalFooterSP__cvTellKonzatsu__main {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  letter-spacing: 2px;
}

.globalFooterSP__cvTellKonzatsu__icon {
  background-color: #fff;
  width: 33px;
  height: 21px;
  padding: 3px 0;
  margin-right: 8px;
}

.globalFooterSP__cvApp {
  border-radius: 3px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 5px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  align-items: center;
  background: #1FB5C9;
  padding: 8px 15px;
}

.globalFooterSP__cvApp__text {
  width: 52%;
  font-size: 16px;
  line-height: 1.3;
}

.globalFooterSP__cvApp__text > span {
  font-size: 12px;
}

.globalFooterSP__cvApp__img1 {
  margin-right: 5px;
}

.globalFooterSP__cvApp__img2 {
  margin-left: 5px;
}

.globalHeaderPC h1,
.globalHeaderPC a,
.globalHeaderPC ul,
.globalHeaderPC li {
  line-height: 1;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px) {
  .globalHeaderPC {
    display: none;
  }
}

.globalHeaderPC__container {
  max-width: 1080px;
  margin: 0 auto;
  overflow: hidden;
  clear: both;
  height: 80px;
  position: relative;
}

.globalHeaderPC__logo {
  grid-area: logo;
  padding-top: 25px;
  font-size: 12px;
  font-weight: bold;
  color: #0063B2;
  line-height: 1;
  float: left;
}

.globalHeaderPC__logo a {
  display: inline-block;
}

.globalHeaderPC__logo h1,
  .globalHeaderPC__logo div {
  box-sizing: border-box;
  border-width: 0;
  letter-spacing: 1px;
}

.globalHeaderPC__logoWrap {
  font-size: 0;
  line-height: 1;
}

.globalHeaderPC__logoImage {
  width: 230px;
  display: block;
}

.globalHeaderPC__logoSub {
  display: block;
}

.globalHeaderPC__guidance {
  grid-area: guidance;
  padding-top: 8px;
  padding-right: 35px;
  color: #345678;
  font-weight: bold;
  text-align: center;
  font-size: 11px;
  line-height: 1.5;
}

.globalHeaderPC__guidanceHeader {
  margin-bottom: 0.2em;
}

.globalHeaderPC__guidanceText {
  text-align: left;
}

.globalHeaderPC__cv {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 498px;
  height: 26px;
  background-color: #ECF5FC;
  border: 1px solid #C6DDED;
  font-size: 12px;
  color: #0063B2;
  font-weight: bold;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 100;
  overflow: initial;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global,
  .globalHeaderPC__cv .globalHeaderPC__cv__tel,
  .globalHeaderPC__cv .globalHeaderPC__cv__web {
  display: block;
  width: 33%;
  float: left;
  text-align: center;
}

.globalHeaderPC__cv .globalHeaderPC__cv__tel,
  .globalHeaderPC__cv .globalHeaderPC__cv__web {
  padding-top: 3px;
  height: 26px;
}

.globalHeaderPC__cv .globalHeaderPC__cv__tel:hover,
    .globalHeaderPC__cv .globalHeaderPC__cv__web:hover {
  background-color: #DDEDF8;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global {
  background-color: #F5F5F7;
  color: #515658;
  height: 24px;
  border-right: 1px solid #E0DFDE;
  width: 166px;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global .dropdown__lists {
  display: none;
  width: 167px;
  height: 141px;
  position: absolute;
  top: 24px;
  left: -1px;
  box-sizing: border-box;
  border: 1px solid #E0DFDE;
  background-color: #FFFFFF;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global .dropdown__lists .dropdown__list {
  box-sizing: border-box;
  display: block;
  width: 165px;
  height: 28px;
  line-height: 28px;
  text-align: center;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E0DFDE;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global .dropdown__lists .dropdown__list:hover {
  color: #007DBE;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global:hover {
  background-color: #FFFFFF;
  height: 164px;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global:hover .dropdown__lists {
  display: block;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global:hover .allow-icon {
  transform: rotate(180deg);
}

.globalHeaderPC__cv .globalHeaderPC__cv__global .globe-icon {
  top: 4px;
  position: relative;
}

.globalHeaderPC__cv .globalHeaderPC__cv__global span {
  display: inline-block;
  padding-top: 0px;
  margin: 0 6px;
}

.globalHeaderPC__cv .globalHeaderPC__cv__web a {
  border-left: 1px solid #FFF;
}

.globalHeaderPC__cv .icon__tel {
  display: inline;
  margin-top: -2px;
  margin-right: 2px;
  width: 8px;
}

.globalHeaderPC__cv .icon__web {
  display: inline;
  margin-top: -1px;
  margin-right: 2px;
  width: 11px;
}

.globalHeaderPC .globalHeaderPC__contact {
  grid-area: contact;
  background: #007dbe;
  border-radius: 0px 0px 5px 5px;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  padding: 0 10px;
  transition: 0.2s all;
}

.globalHeaderPC .globalHeaderPC__contact:hover {
  background-color: #008ed8;
}

.globalHeaderPC__contactTel, .globalFooterPC__contactTel,
.globalHeaderPC__contactMail,
.globalFooterPC__contactMail {
  width: 100%;
  text-align: center;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
}

.globalHeaderPC__contactTel::before, .globalFooterPC__contactTel::before,
  .globalHeaderPC__contactMail::before,
  .globalFooterPC__contactMail::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  margin-right: 0.5em;
}

.globalHeaderPC__contactTel, .globalFooterPC__contactTel {
  border-bottom: 1px solid #fff;
}

.globalHeaderPC__contactTel::before, .globalFooterPC__contactTel::before {
  width: 11px;
  height: 14px;
}

@media (min-width: 769px) {
  .globalHeaderPC__contactTel::before, .globalFooterPC__contactTel::before {
    background-image: url("../img/icon/phone-white-right.svg");
  }
}

.globalHeaderPC__contactMail::before,
.globalFooterPC__contactMail::before {
  width: 17px;
  height: 12px;
}

@media (min-width: 769px) {
  .globalHeaderPC__contactMail::before,
    .globalFooterPC__contactMail::before {
    background-image: url("../img/icon/mail-white.svg");
  }
}

.globalHeaderPC__navi {
  grid-area: navi;
  padding-top: 48px;
  padding-right: 12px;
  float: right;
}

@media (max-width: 1040px) {
  .globalHeaderPC__navi {
    width: 100%;
    padding-top: 24px;
  }
}

.globalHeaderPC__naviList {
  display: flex;
  flex-flow: row;
  justify-content: space-around;
  align-items: center;
  list-style: none;
  line-height: 1;
}

.globalHeaderPC__naviListItem {
  padding-left: 24px !important;
  font-size: 10px;
}

@media (max-width: 972px) {
  .globalHeaderPC__naviListItem {
    padding-left: 0px !important;
    padding-right: 24px !important;
  }
}

.globalHeaderPC__naviListItemLink {
  font-size: 12px;
  font-weight: bold;
  color: #403F3F;
  transition: 0.2s all;
}

.globalHeaderPC__naviListItemLink:hover {
  color: #007fe5;
}

.globalHeaderSP__space {
  height: 44px;
}

@media (min-width: 769px) {
  .globalHeaderSP__space {
    display: none;
  }
}

.globalHeaderSP {
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 44px;
  border-bottom: 1px solid #E0DFDE;
  background-color: #fff;
  top: 0;
  left: 0;
  display: grid;
  grid: "logo lang navi" auto / 1fr auto auto;
  padding: 6px 8px;
}

@media (min-width: 769px) {
  .globalHeaderSP {
    display: none;
  }
}

.globalHeaderSP__logo {
  grid-area: logo;
}

.globalHeaderSP__logoImage {
  width: 158px;
  display: block;
  margin-top: -1px;
}

.globalHeaderSP__logoSub {
  font-size: 10px;
  line-height: 1;
  color: #0063B2;
  margin-left: -4px;
  margin-top: 2px;
  font-weight: 500;
  letter-spacing: 0.2px;
}

.globalHeaderSP__lang {
  grid-area: lang;
  margin-right: 10px;
}

.globalHeaderSP__langButton,
.globalHeaderSP__naviButton {
  background-color: transparent;
  border: 1px solid #e0dfde;
  border-radius: 3px;
  display: flex;
  height: 100%;
  justify-content: center;
  align-items: center;
  flex-flow: row;
  padding: 6px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
}

.globalHeaderSP__langButton:hover, .globalHeaderSP__langButton:focus,
  .globalHeaderSP__naviButton:hover,
  .globalHeaderSP__naviButton:focus {
  outline: 1px auto #c7c6c4;
}

.globalHeaderSP__naviButtonText {
  color: #666;
}

.globalHeaderSP__langButton::before {
  content: "";
  display: block;
  background-size: contain;
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .globalHeaderSP__langButton::before {
    background: url("../img/icon/globe-black-900.svg") 0 0 no-repeat;
    background-size: contain;
  }
}

.globalHeaderSP__naviButton::after {
  content: "";
  display: block;
  background-size: cover;
  width: 18px;
  height: 16px;
  margin-left: 4px;
}

@media (max-width: 768px) {
  .globalHeaderSP__naviButton::after {
    background: url("../img/icon/humberger-black-900.svg") 0 0 no-repeat;
  }
}

.globalHeaderSP__navi {
  grid-area: navi;
}

/**
 * footer
 */

@media (max-width: 768px) {
  .footer {
    margin-top: 40px;
    padding-bottom: 80px;
    line-height: 1;
  }

  .footer__sitemap {
    padding: 18px 26px;
    background-color: #345678;
  }

  .footer__link {
    padding: 18px 26px;
    background-color: #e0dfde;
  }

  .footer__copy {
    margin: 0;
    padding: 12px;
    text-align: center;
    font-size: 10px;
  }

  .footer-pb-0 .footer {
    padding-bottom: 0;
  }

  .footerSitemap {
    margin: 0;
    padding: 0;
  }

  .footerSitemap__item {
    display: inline-block;
    padding-right: 0.2em;
  }

  .footerSitemap__item:after {
    padding-left: 0.4em;
    color: #fff;
    content: "|";
  }

  .footerSitemap__item:last-child:after {
    content: none;
  }

  .footerSitemap__link {
    color: #fff;
    font-size: 12px;
    text-decoration: underline;
    line-height: 1.5;
  }

  .footerSitemap__link:focus, .footerSitemap__link:hover {
    text-decoration: none;
  }

  .footerLink {
    margin: 0;
    padding: 0;
  }

  .footerLink__item {
    display: inline-block;
    margin-bottom: 5px;
    padding-right: 0.8em;
    background: url("../img/icon/icon-arrow-footer.png") right center no-repeat;
    background-size: 0.6em auto;
  }

  .footerLink__link {
    font-size: 12px;
    text-decoration: underline;
    line-height: 1.3;
    color: #666;
  }

  .footerLink__link:focus, .footerLink__link:hover {
    text-decoration: none;
  }
}

.footer__top a {
  display: inline-block;
  color: #403F3F;
  text-decoration: none;
  font-size: 10px;
}

.footer__top .flex {
  flex-wrap: wrap;
  padding: 0 16px;
}

@media (min-width: 768px) {
  .footer__top .flex {
    padding: 0;
  }
}

@media (min-width: 768px) {
  .footer__top .flex div {
    flex-basis: 33.33333%;
  }
}

@media (min-width: 972px) {
  .footer__top .flex div {
    flex-basis: 25%;
  }
}

@media (min-width: 1120px) {
  .footer__top .flex div {
    flex-basis: 20%;
  }
}

.footer__top .flex div:last-child dl {
  margin-right: 0;
}

.footer__top dl {
  padding: 0%;
  margin-bottom: 24px;
  margin-right: 44px;
}

.footer__top dt {
  font-size: 12px;
  font-weight: bold;
}

.footer__top dd {
  margin: 0;
}

.footer__bottom__inner {
  padding: 12px 0;
  max-width: 940px;
  width: 940px;
  margin-left: auto;
  margin-right: auto;
  line-height: 28px;
  color: #CCCCCC;
  text-align: center;
  font-size: 10px;
}

@media (min-width: 769px) {
  .footer {
    display: block;
    background-color: #F4F4F4;
  }

  .footer .py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .footer .mx-auto {
    margin-left: auto;
    margin-right: auto;
  }

  .footer .flex {
    display: flex;
  }

  .footer ul {
    padding: 0;
    margin: 0;
  }

  .footer li {
    list-style: none;
  }

  .footer .w-full {
    width: 100%;
  }

  .footer img {
    max-width: 100%;
    height: auto;
  }

  .footer .max-w-5xl {
    max-width: 64rem;
  }
}

@media (min-width: 769px) and (min-width: 768px) {
  .footer .container {
    box-sizing: content-box;
    max-width: 768px;
  }
}

@media (min-width: 769px) and (min-width: 972px) {
  .footer .container {
    box-sizing: content-box;
    max-width: 972px;
  }
}

@media (min-width: 769px) and (min-width: 1120px) {
  .footer .container {
    box-sizing: content-box;
    max-width: 1088px;
  }
}

@media (min-width: 769px) {
  .footer__top {
    color: #403F3F;
    font-size: 10px;
    border-bottom: 1px solid #D9D9D9;
  }

  .footer__top__inner {
    border-top: 1px solid #D9D9D9;
    max-width: 1088px;
    padding-top: 16px;
    padding-bottom: 16px;
    line-height: 28px;
    font-weight: bold;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 769px) and (min-width: 768px) {
  .footer__top__inner {
    max-width: 768px;
    padding-left: 8px;
    padding-right: 8px;
    box-sizing: border-box;
  }
}

@media (min-width: 769px) and (min-width: 972px) {
  .footer__top__inner {
    max-width: 972px;
  }
}

@media (min-width: 769px) and (min-width: 1120px) {
  .footer__top__inner {
    max-width: 1088px;
  }
}

@media (min-width: 769px) {
  .footer__middle {
    background-color: #e0dfde;
  }

  .footer__middle__inner {
    padding-top: 24px;
    padding-bottom: 24px;
    max-width: 940px;
    width: 940px;
    line-height: 28px;
    text-align: center;
  }

  .footer__middle a {
    display: inline-block;
    color: #666666;
    text-decoration: underline;
    font-size: 14px;
  }

  .footer__middle a:after {
    content: url("../img/footer/icn-arrow-right.png");
    margin-left: 5px;
  }
}

.globalFooterReadyfor {
  width: 36rem;
  margin-left: auto;
  margin-right: auto;
  margin: 2em auto;
  text-align: center;
}

.globalFooterReadyfor img {
  display: block;
  max-width: 100%;
}

.globalFooterPC__contact {
  width: 940px;
  left: calc(50% - 470px);
  bottom: 0;
  position: fixed;
  display: flex;
  z-index: 1000;
}

body.page.contact .globalFooterPC__contact, body.page.online-consultation .globalFooterPC__contact {
  display: none;
}

.globalFooterPC__contactLink {
  background: #007dbe;
  border-radius: 0px 0px 5px 5px;
  color: #fff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  padding: 0 10px;
  transition: 0.2s all;
  width: 222px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 5px 5px 0 0;
}

.globalFooterPC__contactLink:hover {
  background-color: #008ed8;
}

.globalFooterPC__contactTel,
.globalFooterPC__contactMail {
  text-align: center;
  padding: 0.5em 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: row;
}

.globalFooterPC__contactTel::before,
  .globalFooterPC__contactMail::before {
  content: "";
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 0;
  background-size: cover;
  margin-right: 0.5em;
}

.globalFooterFloater__position {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  z-index: 1100;
  pointer-events: none;
}

.globalFooterFloater__position > * {
  pointer-events: auto;
}

.globalFooterFloater {
  padding: 0 12px;
  background-color: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-out;
}

.globalFooterFloater.is-active {
  z-index: 97;
}

.globalFooterFloater.is-scrollShow {
  opacity: 0;
  display: none;
}

.globalFooterFloater.is-visible {
  opacity: 1;
  display: block;
}

.globalFooterFloater__button {
  position: relative;
  bottom: 12px;
}

.globalFooterFloater__col {
  display: grid;
  grid-template-columns: 55.4vw 1fr;
  grid-gap: 10px;
  align-items: center;
}

#pagetop {
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 37px;
  height: 37px;
  margin: 0 12px 8px auto;
  visibility: hidden;
  pointer-events: none;
  transition: .2s ease;
  transition-delay: .5s;
  opacity: 0;
  z-index: 80;
  position: static !important;
}

#pagetop:before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url("../img/pagetop.svg") center center no-repeat;
  background-size: contain;
  margin-bottom: 5px;
}

#pagetop.show {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}

.drawer__banners {
  padding: 16px 25px;
}

.drawer__banners li {
  margin: 0.5em 0;
}

.drawer__banner__oncall {
  background-color: #24B9AD;
  padding: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  box-shadow: 0px 0px 1px 1px rgba(102, 102, 102, 0.06);
  border-radius: 2px;
  color: #fff;
  font-weight: bold;
  text-align: center;
}

.drawer__banner__oncall__text-1 {
  font-size: 20px;
  margin-bottom: 0.2em;
  line-height: 1.2;
}

.drawer__banner__oncall__text-2 {
  font-size: 14px;
}

@media (min-width: 1121px) {
  #globalFooterPC__tob #globalFooterPC__close {
    bottom: 186px;
    right: calc(50% - 620px + 12px);
  }

  #globalFooterPC__tob a {
    right: calc(50% - 620px);
  }
}

@media (max-width: 1120px) {
  #globalFooterPC__tob #globalFooterPC__close {
    bottom: 186px;
    right: 12px;
  }

  #globalFooterPC__tob a {
    right: 0px;
  }
}

/**
 * 20240313
 * フッターフローターCTA AB検証を経てBパターンで確定
 */

.globalFooterFloater.is-tell {
  padding: 0;
}

.globalFooterFloater.is-tell .globalFooterSP__cv {
  padding: 0;
}

.globalFooterSP__cvTellAbFixed {
  display: flex;
  height: 58px;
  width: 100%;
  border-top: 1.5px solid #F28947;
  font-family: "Noto Sans JP", Meiryo, "メイリオ", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.globalFooterSP__cvTellAbFixed .text-orange {
  color: #F28947;
}

.globalFooterSP__cvTellAbFixed .flex-1 {
  flex: 1 1 0%;
}

.globalFooterSP__cvTellAbFixed .justify-center {
  justify-content: center;
}

.globalFooterSP__cvTellAbFixed .items-center {
  align-items: center;
}

.globalFooterSP__cvTellAbFixed .flex {
  display: flex;
}

.globalFooterSP__cvTellAbFixed .bg-orange {
  --bg-opacity: 1;
  background-color: #F28947;
}

.globalFooterSP__cvTellAbFixed .ml-3 {
  margin-left: 12px;
}

.globalFooterSP__cvTellAbFixed .mr-2 {
  margin-right: 8px;
}

.globalFooterSP__cvTellAbFixed .px-2 {
  padding-left: 8px;
  padding-right: 8px;
}

.globalFooterSP__cvTellAbFixed .text-base {
  font-size: 14px;
}

.globalFooterSP__cvTellAbFixed .font-bold {
  font-weight: 700;
}

.globalFooterSP__cvTellAbFixed .inline-block {
  display: inline-block;
}

.globalFooterSP__cvTellAbFixed .rounded-full {
  border-radius: 9999px;
}

.globalFooterSP__cvTellAbFixed .bg-white {
  --bg-opacity: 1;
  background-color: #FFFFFF;
  background-color: rgba(255, 255, 255, var(--bg-opacity));
}

.globalFooterSP__cvTellAbFixed .text-white {
  --text-opacity: 1;
  color: #FFFFFF;
  color: rgba(255, 255, 255, var(--text-opacity));
}

.globalFooterSP__cvTellAbFixed .mb-1 {
  margin-bottom: 0.25rem;
}

.globalFooterSP__cvTellAbFixed .font-medium {
  font-weight: 500;
}
