@charset "UTF-8";
@media screen and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

@media print, screen and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

/*-------------------------
  ヘッダー
-------------------------*/
/* header
-------------------------*/
#header-new[data-type="simple"] .header__inner {
  background-color: #10069F;
}
#header-new[data-type="simple"] .header__logo {
  display: block;
  margin: auto;
}
#header-new[data-type="simple"] .header__logo img{
  width: auto;
}
@media print, screen and (min-width: 768px) {
  #header-new[data-type="simple"] .header__inner {
    height: 70px;
    padding-top: 4px;
  }
  #header-new[data-type="simple"] .header__logo {
    width: 118px;
    height: 62px;
  }
}
@media screen and (max-width: 767px) {
  #header-new[data-type="simple"] .header__inner {
    height: 60px;
    padding-top: 10px;
  }
  #header-new[data-type="simple"] .header__logo {
    width: 80px;
    height: 41px;
  }
}



/*-------------------------
  フッター
-------------------------*/
/* footer
-------------------------*/
.footer {
  width: 100%;
  border-top: 1px solid #C0C5CC;
  margin-top: 90px;
}

@media print, screen and (min-width: 768px) {
  .footer__head {
    padding: 16px 20px 60px;
  }
}

.footer__body {
  background-color: #F5F7FA;
}

@media print, screen and (min-width: 768px) {
  .footer__body {
    padding: 0 20px;
  }
}


/* footer-foot
-------------------------*/
.footer-foot {
  padding: 24px 20px!important;
  border-top: 1px solid #C0C5CC;
}

.footer-foot__inner {
  position: relative;
  display: flex;
  width: 100%;
}

.footer-foot__button {
  position: absolute;
  font-size: 12px;
  color: #606B78;
}

.footer-foot__copyright {
  font-size: 10px;
  color: #697180;
}

@media print, screen and (min-width: 768px) {
  .footer-foot__inner {
    justify-content: space-between;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
  }

  .footer-foot__button{
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }

  .footer-foot__logos {
    margin-right: 140px;
  }
}

@media screen and (max-width: 767px) {
  .footer-foot__inner {
    flex-direction: column;
  }

  .footer-foot__button{
    top: -20px;
    right: 0;
  }

  .footer-foot__copyright {
    text-align: center;
    margin-top: 16px;
  }
}

/* footer-foot-logos
-------------------------*/
.footer-foot-logos {
  display: flex;
}

.footer-foot-logos__item {
  display: block;
  width: 60px;
  height: 60px;
}

@media (hover: hover) {
  .footer-foot-logos__item:hover {
    opacity: .8;
  }
}

.footer-foot-logos__item + .footer-foot-logos__item {
  margin-left: 16px;
}

@media screen and (max-width: 767px) {
  .footer-foot-logos {
    justify-content: center;
  }
}

@media print {
  .footer-foot-logos {
    margin-right: 0;
  }
}

/* footer-foot-logos
-------------------------*/
.footer-pill-button {
  width: 100%;
  display: inline-flex;
  align-items: flex-end;
  justify-content: center;
  text-decoration: none;
  background-color: #10069F;
  padding: 10px 16px;
  border-radius: 100px;
  transition: background-color 0.3s;
}

.footer-pill-button__text {
  font-size: 16px;
  font-weight: bold;
  color: #FFFFFF;
}

.footer-pill-button__text span {
  font-size: 12px;
}

@media (hover: hover) {
  .footer-pill-button:hover {
    background-color: #140D77;
  }
}

/* footer-top-button
-------------------------*/
.simple-footer-top-button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0px 2px 6px #00000026;
  background-color: #FFFFFF;
  position: absolute;
  transition: background-color 0.3s;
}

@media screen and (max-width: 767px) {
  .simple-footer-top-button {
    width: 44px;
    height: 44px;
    background-size: 18px 10px;
  }
  .simple-footer-top-button__icon svg {
    width: 24px;
    height: 24px;
  }
}

@media screen and (min-width: 768px) {
  .simple-footer-top-button {
    width: 24px;
    height: 24px;
    background-size: 10px 6px;
  }

  .simple-footer-top-button::before {
    content: "ページトップ";
    height: 17px;
    font-size: 14px;
    color: #606B78;
    text-decoration: none;
    padding-right: 8px;
    position: absolute;
    left: -92px;
    top: 4px;
    transition: text-decoration 0.3s;
  }
}

@media (hover: hover) {
  .simple-footer-top-button:hover {
    background-color: #EFF7FF;
  }
  .simple-footer-top-button:hover::before {
    text-decoration: underline;
  }
  .simple-footer-top-button:hover .simple-footer-top-button__icon path {
    fill: #140D77;
  }
}

@media print {
  .simple-footer-top-button{
    display: none;
  }
}