@charset "UTF-8";
/* ======================
カラー設定
======================== */
/* ======================
フォントサイズ設定
======================== */
/* ======================
ブレイクポイント（ベース）
======================== */
/* ======================
フォント設定
======================== */
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow-y: scroll;
}

.box-modal-outbound {
  box-sizing: border-box;
  display: none;
}
.box-modal-outbound.is-visible {
  display: block;
  z-index: 10011;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  padding: 0 20px;
  overflow-y: auto;
  opacity: 0;
  transition: opacity 0.5s;
}
.box-modal-outbound.is-animation {
  opacity: 1;
}
.box-modal-outbound .box-modal-inner {
  position: relative;
  max-width: 800px;
  margin: 50px auto;
  padding: 60px 25px;
  overflow-y: auto;
  background-color: #EA5504;
  color: #FFF;
}
.box-modal-outbound .box-modal-inner :nth-child(1) {
  margin-top: 0;
}
.box-modal-outbound .box-modal-inner .btn-modal-close {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 38px;
  height: 38px;
  overflow: hidden;
  border-radius: 50%;
  background-color: #EE7736;
}
.box-modal-outbound .box-modal-inner .btn-modal-close > span {
  display: block;
  height: 0;
  overflow: hidden;
}
.box-modal-outbound .box-modal-inner .btn-modal-close::before, .box-modal-outbound .box-modal-inner .btn-modal-close::after {
  position: absolute;
  top: calc(50% - 1px);
  left: calc(50% - 9px);
  width: 18px;
  height: 2px;
  transform-origin: center;
  background-color: #FFF;
  content: "";
}
.box-modal-outbound .box-modal-inner .btn-modal-close::before {
  transform: rotate(45deg);
}
.box-modal-outbound .box-modal-inner .btn-modal-close::after {
  transform: rotate(-45deg);
}
.box-modal-outbound .box-modal-inner .btn-03:hover, .box-modal-outbound .box-modal-inner .btn-03:focus, .box-modal-outbound .box-modal-inner .btn-03:active {
  background: #EE7736;
}
@media screen and (min-width: 768px) {
  .box-modal-outbound .box-modal-inner {
    max-height: 700px;
    padding: 70px 50px;
  }
}
.box-modal-outbound * {
  box-sizing: border-box;
}
.box-modal-outbound button {
  -webkit-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  background-color: transparent;
  text-align: left;
  cursor: pointer;
}
.box-modal-outbound p {
  margin: 0;
  padding: 0;
  font-size: 1.6rem;
}
.box-modal-outbound a {
  color: #1BA8D6;
  text-decoration: none;
}
.box-modal-outbound a img.icon-blank {
  display: inline-block;
  position: relative;
  top: 0.3125em;
  width: 22px;
  height: 22px;
  margin-left: 5px;
  vertical-align: baseline;
}
@media screen and (max-width: 769px) {
  .box-modal-outbound a img.icon-blank {
    width: 18px;
    height: 18px;
  }
}
.box-modal-outbound .align-c {
  text-align: center;
}
.box-modal-outbound .btn-03 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 415px;
  padding: 17.5px;
  border-radius: 30px;
  background-color: #FFF;
  color: #EA5504;
  font-weight: bold;
  font-size: 1.6rem;
  vertical-align: middle;
  transition: background-color 0.4s;
}
.box-modal-outbound .btn-03:hover, .box-modal-outbound .btn-03:focus, .box-modal-outbound .btn-03:active {
  background-color: #EA5504;
  color: #FFF;
}
.box-modal-outbound .btn-03:hover > span::after, .box-modal-outbound .btn-03:focus > span::after, .box-modal-outbound .btn-03:active > span::after {
  transform: translateX(5px);
  background-image: url("/share/images/icon_arrow_right_01.png");
}
@media screen and (min-width: 769px) {
  .box-modal-outbound .btn-03 {
    padding: 19.75px 10px 17.75px;
    font-size: 1.7rem;
  }
}
.box-modal-outbound .btn-03 > img[class^=icon-] {
  position: static;
}
.box-modal-outbound .btn-03 > span {
  display: inline-block;
  position: relative;
}
.box-modal-outbound .btn-03 > span::after {
  display: inline-block;
  width: 26px;
  height: 16px;
  margin-left: 5px;
  background-image: url("/share/images/icon_arrow_right_02.png");
  background-position: center center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  content: "";
  transition: transform 0.4s;
}
.box-modal-outbound .btn-03.btn-small {
  max-width: 230px;
  padding: 5px 10px;
  font-size: 1.6rem;
}
.box-modal-outbound .btn-03.btn-small > span::after {
  display: none;
}
@media screen and (min-width: 769px) {
  .box-modal-outbound .btn-03.btn-small {
    padding: 5px 10px;
    font-size: 1.6rem;
  }
}
.box-modal-outbound .box-text {
  margin-bottom: 24.375px;
}
@media screen and (min-width: 769px) {
  .box-modal-outbound .box-text {
    margin-bottom: 29px;
  }
}

.box-modal-overlay {
  z-index: 10000;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 0;
  transition: 0.5s;
}
.box-modal-overlay.is-visible {
  opacity: 1;
}
.box-modal-overlay.is-hidden {
  display: none;
}