@charset "UTF-8";
.visible,
.invisible {
  opacity: 0;
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.visible {
  opacity: 1;
}

.visible.sc_fadeIn {
  opacity: 1;
  transform: translateY(0);
}

.visible.translateToLeft {
  transform: translateX(0);
}

.visible.translateY {
  transform: translateY(0);
}

.visible.translateToRight {
  transform: translateX(0);
}

.visible.translateScaleUp {
  transform: scale(1);
}

.visible.translateScaleDown {
  transform: scale(1);
}

.visible.translateRotate {
  transform: rotate(0deg);
}

.invisible.sc_fadeIn {
  opacity: 0;
  transform: translateY(30px);
}

.invisible.translateY {
  transform: translateY(100px);
}

.invisible.translateToLeft {
  transform: translateX(100px);
}

.invisible.translateToRight {
  transform: translateX(-100px);
}

.invisible.translateScaleUp {
  transform: scale(0.5);
}

.invisible.translateScaleDown {
  transform: scale(1.4);
}

.invisible.translateRotate {
  transform: rotate(360deg);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    visibility: hidden;
    display: none;
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

@keyframes scrollToLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scrollToLeft02 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-67%);
  }
}

.topMv {
  background: url(../img/top/mv.png) center bottom no-repeat;
  background-size: cover;
  height: 90rem;
  opacity: 0;
  transition: 1.5s ease-out;
}

.topMv.-active {
  opacity: 1;
}

@media only screen and (max-width: 769px) {
  .topMv {
    height: auto;
    width: 100%;
    background: url(../img/top/mv_sp.png) center top no-repeat;
    background-size: 100%;
  }
}

.topMv_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  width: 98%;
  padding-top: 18.7rem;
}

@media only screen and (max-width: 769px) {
  .topMv_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topMv_wrap {
    padding-top: 15.7rem;
  }
}

.topMv_txt00 {
  font-weight: bold;
  font-size: 5.2rem;
  line-height: 1;
  color: #fff;
  background: #ef885f;
  display: inline-block;
  padding: 1.5rem 2rem;
  margin: 0 0 5rem;
}

@media only screen and (max-width: 769px) {
  .topMv_txt00 {
    font-size: 3rem;
    padding: 0.7rem 1rem;
    margin: 0 0 3rem;
  }
}

.topMv_txt01 {
  font-weight: bold;
  font-size: 7.2rem;
  line-height: 10rem;
}

@media only screen and (max-width: 769px) {
  .topMv_txt01 {
    font-size: 4.2rem;
    line-height: 6rem;
  }
}

.topMv_txt01 span {
  color: #ef885f;
  position: relative;
}

.topMv_txt01 span:before {
  content: "・・・・";
  position: absolute;
  top: -6rem;
  left: 0;
  color: #ef885f;
  font-weight: bold;
}

@media only screen and (max-width: 769px) {
  .topMv_txt01 span:before {
    top: -4rem;
  }
}

.topMv_txt02 {
  font-weight: bold;
  font-size: 2.6rem;
  color: #0e7092;
  margin-top: 2rem;
}

.topMv_btn {
  margin-top: 6.7rem;
}

@media only screen and (max-width: 769px) {
  .topMv_btn {
    margin-top: 3rem;
  }
}

.topDescription {
  background: url(../img/top/topDescription_bg.png) top 3rem center no-repeat;
  background-size: 70rem;
}

@media only screen and (max-width: 769px) {
  .topDescription {
    background-size: 28rem;
    margin-top: 5rem;
  }
}

.topDescription_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
}

@media only screen and (max-width: 769px) {
  .topDescription_wrap {
    width: 92%;
    max-width: 92%;
  }
}

.topDescription_title01 {
  font-weight: bold;
  font-size: 5.6rem;
  line-height: 8rem;
  text-align: center;
}

@media only screen and (max-width: 769px) {
  .topDescription_title01 {
    font-size: 2.8rem;
    line-height: 5rem;
  }
}

.topDescription_title01 span {
  color: #ef885f;
  position: relative;
}

.topDescription_title02 {
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 6.6rem;
  text-align: center;
}

@media only screen and (max-width: 769px) {
  .topDescription_title02 {
    font-size: 2rem;
    line-height: 4.6rem;
  }
}

.topDescription_title02 span {
  font-size: 4.8rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_title02 span {
    font-size: 2.8rem;
  }
}

.topDescription_arrow {
  margin-top: 3.6rem;
  text-align: center;
}

@media only screen and (max-width: 769px) {
  .topDescription_arrow {
    margin-top: 1.6rem;
  }
}

.topDescription_arrow img {
  max-width: 1.4rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_arrow img {
    max-width: 1rem;
  }
}

.topDescription_list {
  padding: 9rem 0;
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  width: 98%;
  background-color: #ecf8fa;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  margin-top: -4rem;
  z-index: -1;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topDescription_list {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topDescription_list {
    display: block;
    margin-top: 0rem;
    padding: 4rem 2rem;
  }
}

.topDescription_list li {
  width: 29.4rem;
  background-color: #fff;
  padding: 0rem 3rem 4rem 3rem;
  border-radius: 4px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 769px) {
  .topDescription_list li {
    width: 100%;
    margin-top: 2rem;
    padding: 0rem 2rem 3rem 2rem;
  }
}

.topDescription_list li + li {
  margin-left: 2.5rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_list li + li {
    margin-left: 0rem;
    margin-top: 6rem;
  }
}

.topDescription_list_num {
  font-size: 4.8rem;
  line-height: 1;
  text-align: center;
  color: #0e7092;
  text-align: center;
  font-weight: bold;
  margin-top: -2.5rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_list_num {
    margin-top: 0rem;
    transform: translateY(-2.5rem);
  }
}

.topDescription_list_txt01 {
  text-align: center;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 1;
  text-align: center;
  color: #0e7092;
  margin-top: 2rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_list_txt01 {
    margin-top: 1rem;
    font-size: 2rem;
  }
}

.topDescription_list_img {
  margin-top: 3rem;
  margin-left: auto;
  margin-right: auto;
  height: 8rem;
}

@media only screen and (max-width: 769px) {
  .topDescription_list_img {
    height: 6rem;
  }
}

.topDescription_list_img img {
  vertical-align: middle;
}

.topDescription_list_img.-track {
  padding-top: 1rem;
  width: 11rem;
}

.topDescription_list_img.-drug {
  width: 8.2rem;
}

.topDescription_list_img.-phone {
  width: 4.1rem;
}

.topDescription_list_txt02 {
  margin-top: 3rem;
  font-weight: normal;
  line-height: 3.2rem;
  color: #212121;
}

@media only screen and (max-width: 769px) {
  .topDescription_list_txt02 {
    margin-top: 5rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}

.topDescription_list_txt02 span{
  background: #f6ff10;
  padding: 0 0 0 10px;
}

.topType {
  padding-bottom: 20rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topType {
    padding-bottom: 5rem;
  }
}

.topType:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86rem;
  height: 100%;
  background: url(../img/top/bg_right.png) top 20rem right no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media only screen and (max-width: 769px) {
  .topType:after {
    width: 80%;
  }
}

.topType_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  padding-top: 27rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topType_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topType_wrap {
    padding-top: 12rem;
  }
}

.topType_wrap:before {
  content: "TYPE";
  position: absolute;
  top: 0;
  left: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topType_wrap:before {
    font-size: 10rem;
    left: 0rem;
  }
}

@media only screen and (max-width: 769px) {
  .topType_tblWrap {
    overflow: scroll;
    padding-bottom: 3rem;
  }
}

.topType_tbl {
  width: 100%;
  margin-top: 4.5rem;
  box-shadow: 15px 17px 20px rgba(0, 0, 0, 0.05);
}
.topType_tbl th{
  font-size: 2rem;
}
.topType_tbl th span{
  font-size: 1.8rem;
  line-height: 1.5;
}
.topType_tbl th span:first-line{
  font-size: 2.2rem;
}
.topType_tbl td{
  font-size: 1.8rem;
}

.topType_tbl th.-none {
  background-color: transparent;
}

.topType_tbl th.-header span {
  padding: 2rem;
  width: 41.3rem;
  display: block;
  color: #fff;
  background-color: #0e7092;
  border-bottom: 1px solid #cccccc;
}

@media only screen and (max-width: 769px) {
  .topType_tbl th{
    font-size: 1.4rem
  }
  .topType_tbl th.-header span {
    width: 25rem;
    padding: 1rem;
    font-size: 1.4rem;
  }
}

.topType_tbl th.-header span.-first {
  border-right: 1px solid #cccccc;
  margin-left: auto;
}

.topType_tbl th.-side {
  width: 17.4rem;
  background-color: #efefef;
  border-bottom: 1px solid #cccccc;
  padding: 1rem;
}

.topType_tbl td {
  padding: 2rem;
  width: 41.3rem;
  background-color: #fff;
  border-bottom: 1px solid #cccccc;
}

@media only screen and (max-width: 769px) {
  .topType_tbl td {
    width: 25rem;
    padding: 1.4rem;
    font-size: 1.4rem;
  }
}

.topType_tbl td + td {
  border-left: 1px solid #cccccc;
}

.topType_tbl tr:last-child th.-side {
  border-bottom: none;
}

.topType_tbl tr:last-child td {
  border-bottom: none;
}

.topType_sideEffects {
  margin-top: 8rem;
}

@media only screen and (max-width: 769px) {
  .topType_sideEffects {
    margin-top: 5rem;
  }
}

.topType_sideEffects_title {
  padding: 0.5rem 2rem;
  display: inline-block;
  border-radius: 3rem;
  background-color: #ef885f;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-left: 4rem;
}

@media only screen and (max-width: 769px) {
  .topType_sideEffects_title {
    font-size: 1.6rem;
    margin-left: 2rem;
  }
}

.topType_sideEffects_listWrap {
  background-color: #fff;
  margin-top: -2rem;
  padding: 4rem 4rem 4rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 769px) {
  .topType_sideEffects_listWrap {
    padding: 4rem 2rem 2rem;
  }
}

.topType_sideEffects_list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 3.2rem;
}

@media only screen and (max-width: 769px) {
  .topType_sideEffects_list li {
    font-size: 1.4rem;
  }
}

.topPrice {
  padding-bottom: 20rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topPrice {
    padding-bottom: 5rem;
  }
}

.topPrice:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86rem;
  height: 100%;
  background: url(../img/top/bg_left.png) top 20.5rem left no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media only screen and (max-width: 769px) {
  .topPrice:after {
    width: 80%;
  }
}

.topPrice_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  position: relative;
  padding-top: 12.5rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topPrice_wrap {
    padding-top: 12rem;
  }
}

.topPrice_wrap:before {
  content: "PRICE";
  position: absolute;
  top: 0;
  right: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topPrice_wrap:before {
    font-size: 10rem;
    left: 0rem;
  }
}

.topPrice_list {
  margin-top: 7rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_list {
    margin-top: 4rem;
  }
}

.topPrice_list li {
  display: flex;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

.topPrice_list li + li {
  margin-top: 2rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_list li + li {
    margin-top: 1rem;
  }
}

.topPrice_list_title {
  width: 50%;
  padding: 1.4rem;
  text-align: center;
  color: #fff;
  font-size: 2rem;
  background-color: #0e7092;
}

@media only screen and (max-width: 769px) {
  .topPrice_list_title {
    font-size: 1.4rem;
    padding: 1rem;
  }
}

.topPrice_list_title.-gray {
  background-color: #999999;
}

.topPrice_list_txt {
  padding: 1.4rem;
  padding-left: 4.5rem;
  background-color: #fff;
  display: flex;
  align-items: center;
  flex: 1;
}

.topPrice_list_txt.-red {
  color: #e34646;
  font-weight: bold;
}

@media only screen and (max-width: 769px) {
  .topPrice_list_txt {
    padding: 1rem;
    font-size: 1.6rem;
  }
}

.topPrice_send {
  margin-top: 8rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_send {
    margin-top: 5rem;
  }
}

.topPrice_send_title01 {
  padding: 0.5rem 2rem;
  display: inline-block;
  border-radius: 3rem;
  background-color: #ef885f;
  color: #fff;
  text-align: center;
  font-size: 2rem;
  margin-left: 4rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_send_title01 {
    font-size: 1.6rem;
    margin-left: 2rem;
  }
}

.topPrice_send_title02 {
  font-weight: bold;
  font-size: 2rem;
  line-height: 4.1rem;
  color: #0e7092;
  margin-top: 2.4rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_send_title02 {
    margin-top: 3rem;
    font-size: 1.8rem;
    line-height: 3rem;
  }
}

.topPrice_send_txt01 {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #212121;
  margin-top: 1.2rem;
}

@media only screen and (max-width: 769px) {
  .topPrice_send_txt01 {
    margin-top: 1rem;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}

.topPrice_send_wrap {
  background-color: #fff;
  margin-top: -2rem;
  padding: 2rem 4rem 4rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
}

@media only screen and (max-width: 769px) {
  .topPrice_send_wrap {
    padding: 1rem 2rem 2rem;
  }
}

.topPrice_send_list {
  margin-top: 2.4rem;
}

.topPrice_send_list li {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 2.4rem;
  font-size: 1.2rem;
}

.topDelivery {
  padding-bottom: 10rem;
  position: relative;
}

.topDelivery_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  position: relative;
  padding-top: 27rem;
}

@media only screen and (max-width: 769px) {
  .topDelivery_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topDelivery_wrap {
    padding-top: 12rem;
  }
}

.topDelivery_wrap:before {
  content: "DELIVERY";
  position: absolute;
  top: 0;
  left: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topDelivery_wrap:before {
    font-size: 8rem;
    left: 0rem;
  }
}

.topDelivery_sendHow {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 120rem;
  width: 98%;
  margin-top: 4rem;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow {
    width: 92%;
    max-width: 92%;
  }
}

.topDelivery_sendHow_title01 {
  text-align: center;
  font-size: 4.8rem;
  font-weight: bold;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_title01 {
    font-size: 2.4rem;
  }
}

.topDelivery_sendHow_title01 span {
  font-size: 2.4rem;
  display: block;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_title01 span {
    font-size: 1.8rem;
  }
}

.topDelivery_sendHow_list {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 93rem;
  width: 98%;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_list {
    width: 92%;
    max-width: 92%;
  }
}

.topDelivery_sendHow_list li {
  padding: 3rem;
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  display: flex;
  align-items: center;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_list li {
    flex-wrap: wrap;
    padding: 2rem;
  }
}

.topDelivery_sendHow_list li .-num {
  font-weight: bold;
  font-size: 4.8rem;
  color: #0e7092;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_list li .-num {
    font-size: 3rem;
  }
}

.topDelivery_sendHow_list li .-txt01 {
  font-weight: bold;
  font-size: 2.8rem;
  color: #0e7092;
  margin-left: 1rem;
  padding-left: 1rem;
  border-left: 1px solid #0e7092;
  line-height: 1.4;
  width: 30%;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_list li .-txt01 {
    flex: 1;
    font-size: 2rem;
  }
}

.topDelivery_sendHow_list li .-txt02 {
  font-size: 1.6rem;
  color: #0e7092;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHow_list li .-txt02 {
    width: 100%;
  }
}

.topDelivery_sendHow_list li + li {
  margin-top: 2rem;
}

.topDelivery_sendHowWrap {
  background-color: #ecf8fa;
  border-radius: 4px;
  padding: 8rem 2rem;
  margin-top: -4rem;
  z-index: -1;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topDelivery_sendHowWrap {
    padding: 8rem 2rem 4rem;
    margin-top: -6rem;
  }
}

.topDelivery_imgWrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
}

@media only screen and (max-width: 769px) {
  .topDelivery_imgWrap {
    width: 92%;
    max-width: 92%;
  }
}

.topDelivery_img01 {
  margin-top: 10rem;
}

@media only screen and (max-width: 769px) {
  .topDelivery_img01 {
    margin-top: 3rem;
  }
}

.topDelivery_img01 img {
  width: 100%;
}

.topDelivery_img02 {
  margin-top: 2.7rem;
}

.topDelivery_img02 img {
  width: 100%;
}

.topDelivery_img03 {
  margin-top: 2.7rem;
}

.topDelivery_img03 img {
  width: 100%;
}

.topTiming {
  padding: 10rem 0;
  margin: 10rem 0 0;
  background-color: #ecf8fa;
}

.topTiming_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
}

@media only screen and (max-width: 769px) {
  .topTiming_wrap {
    width: 92%;
    max-width: 92%;
  }
}

.topTiming_txt01 {
  font-weight: bold;
  font-size: 2.4rem;
  text-align: center;
  color: #212121;
}

@media only screen and (max-width: 769px) {
  .topTiming_txt01 {
    font-size: 1.8rem;
  }
}

.topTiming_txt02 {
  font-weight: bold;
  font-size: 4.8rem;
  text-align: center;
  color: #212121;
}

@media only screen and (max-width: 769px) {
  .topTiming_txt02 {
    font-size: 2.4rem;
  }
}

.topTiming_dtl {
  background-color: #fff;
  padding: 5.6rem 6.6rem;
  margin-top: -4rem;
}

@media only screen and (max-width: 769px) {
  .topTiming_dtl {
    margin-top: 2rem;
    padding: 2.6rem 2.6rem;
  }
}

.topTiming_dtl_txt {
  text-align: center;
  font-size: 2rem;
}

@media only screen and (max-width: 769px) {
  .topTiming_dtl_txt {
    font-size: 1.6rem;
    text-align: left;
  }
}

.topTiming_dtl_list {
  display: flex;
  justify-content: space-between;
  margin-top: 5rem;
}

@media only screen and (max-width: 769px) {
  .topTiming_dtl_list {
    margin-top: 3rem;
    flex-wrap: wrap;
  }
}

.topTiming_dtl_list li {
  width: 22%;
}

@media only screen and (max-width: 769px) {
  .topTiming_dtl_list li {
    width: 46%;
  }
  .topTiming_dtl_list li:nth-child(2n) {
    margin-left: 8%;
  }
  .topTiming_dtl_list li:nth-child(n + 3) {
    margin-top: 2rem;
  }
}

.topFlow {
  padding-bottom: 20rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topFlow {
    padding-bottom: 5rem;
  }
}

.topFlow:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 86rem;
  height: 100%;
  background: url(../img/top/bg_right02.png) top 22rem right no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media only screen and (max-width: 769px) {
  .topFlow:after {
    width: 80%;
  }
}

.topFlow_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  padding-top: 27rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topFlow_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topFlow_wrap {
    padding-top: 12rem;
  }
}

.topFlow_wrap:before {
  content: "FLOW";
  position: absolute;
  top: 0;
  left: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topFlow_wrap:before {
    font-size: 10rem;
    left: 0rem;
  }
}

.topFlow_dtl {
  margin-top: 7.6rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl {
    margin-top: 4.6rem;
  }
}

.topFlow_dtl + .topFlow_dtl {
  margin-top: 5.2rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl + .topFlow_dtl {
    margin-top: 3.2rem;
  }
}

.topFlow_dtl_wrap {
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  padding: 5rem 4rem;
  display: flex;
  align-items: center;
  margin-top: -2rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl_wrap {
    padding: 3rem 2rem;
    flex-wrap: wrap;
  }
}

.topFlow_dtl.-type02 .topFlow_dtl_title {
  background: linear-gradient(#ef885f 0%, #f5ba35 100%);
}

.topFlow_dtl.-type02 .topFlow_dtl_wrap {
  background: linear-gradient(#6fc3d3 0%, #0e7092 100%);
  color: #fff;
}

.topFlow_dtl.-type02 .topFlow_dtl_num .-flow {
  color: #fff;
}

.topFlow_dtl_title {
  padding: 0.8rem 2rem;
  display: inline-block;
  color: #fff;
  text-align: center;
  background: linear-gradient(#8fe644 0%, #27af22 100%);
  margin-left: 4rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl_title {
    margin-left: 2rem;
  }
}

.topFlow_dtl_num {
  display: flex;
  align-items: center;
  width: 9rem;
}

.topFlow_dtl_num .-flow {
  font-weight: bold;
  font-size: 1.6rem;
  color: #999;
  line-height: 1;
}

.topFlow_dtl_num .-num {
  font-weight: bold;
  font-size: 3.6rem;
  margin-left: 1rem;
  line-height: 1;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl_num .-num {
    font-size: 2.5rem;
  }
}

.topFlow_dtl_txt01 {
  width: 24.6rem;
  font-weight: bold;
  font-size: 2.8rem;
  line-height: 41px;
  text-align: left;
  padding-left: 4rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl_txt01 {
    flex: 1;
    font-size: 2rem;
    padding-left: 1rem;
  }
}

.topFlow_dtl_txt02 {
  flex: 1;
  font-size: 1.4rem;
  line-height: 2.8rem;
  padding-left: 5.5rem;
}

@media only screen and (max-width: 769px) {
  .topFlow_dtl_txt02 {
    flex: none;
    width: 100%;
    padding-left: 0rem;
    margin-top: 1rem;
  }
}

.topFaq {
  padding-bottom: 20rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topFaq {
    padding-bottom: 5rem;
  }
}

.topFaq:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 86rem;
  height: 100%;
  background: url(../img/top/bg_left.png) top 20.5rem left no-repeat;
  background-size: 100%;
  z-index: -1;
}

@media only screen and (max-width: 769px) {
  .topFaq:after {
    width: 80%;
  }
}

.topFaq_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  position: relative;
  padding-top: 12.5rem;
}

@media only screen and (max-width: 769px) {
  .topFaq_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topFaq_wrap {
    padding-top: 12rem;
  }
}

.topFaq_wrap:before {
  content: "Q&A";
  position: absolute;
  top: 0;
  right: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topFaq_wrap:before {
    font-size: 10rem;
    left: 0rem;
  }
}

.topFaq_list {
  margin-top: 6.6rem;
}

@media only screen and (max-width: 769px) {
  .topFaq_list {
    margin-top: 3.6rem;
  }
}

.topFaq_list li {
  background-color: #fff;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
}

.topFaq_list li + li {
  margin-top: 2rem;
}

.topFaq_list_title {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title {
    align-items: flex-start;
    padding-right: 1rem;
  }
}

.topFaq_list_title .-q {
  display: block;
  font-size: 3.6rem;
  text-align: center;
  background: linear-gradient(#6fc3d3 0%, #0e7092 100%);
  color: #fff;
  padding: 0.8rem 2.3rem 1.2rem;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title .-q {
    padding: 0.8rem 1.6rem 1.2rem;
    font-size: 3.6rem;
  }
}

.topFaq_list_title .-txt {
  font-size: 1.6rem;
  padding: 2.7rem 2.9rem;
  font-weight: normal;
  flex: 1;
  transition: 0.3s;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title .-txt {
    padding: 1.4rem 2.2rem 1.4rem 1.6rem;
  }
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title.-active {
    background-color: #ecf8fa;
  }
}

.topFaq_list_title.-active .-txt {
  background-color: #ecf8fa;
}

.topFaq_list_title.-active:after {
  background-color: #ecf8fa;
}

.topFaq_list_title:before, .topFaq_list_title:after {
  content: "";
  position: absolute;
  transition: 0.3s;
  transform: rotate(45deg);
}

.topFaq_list_title:before {
  width: 15px;
  height: 15px;
  top: 35%;
  right: 40px;
  background-color: #000000;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title:before {
    top: 40%;
    width: 10px;
    height: 10px;
    right: 20px;
  }
}

.topFaq_list_title:after {
  width: 15px;
  height: 15px;
  top: calc(35% - 5px);
  right: 40px;
  background-color: #fff;
  z-index: 1;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_title:after {
    top: calc(40% - 4px);
    right: 20px;
    width: 10px;
    height: 10px;
  }
}

.topFaq_list_dtlWrap {
  display: none;
}

.topFaq_list_dtlWrap.-active {
  display: block;
}

.topFaq_list_dtl {
  display: flex;
  align-items: flex-start;
  padding-top: 3rem;
  padding-bottom: 3rem;
  padding-right: 2rem;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_dtl {
    padding-top: 1.4rem;
    padding-bottom: 1.4rem;
    padding-right: 2rem;
  }
}

.topFaq_list_dtl .-a {
  font-family: freight-neo-pro, "freight-neo-pro", sans-serif;
  font-size: 3.6rem;
  color: #ef885f;
  line-height: 1;
  padding: 0.8rem 2.8rem 1.2rem;
  font-weight: bold;
  text-align: center;
  background: linear-gradient(90deg, #6fc3d3 0%, #0e7092 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Sans";
}

@media only screen and (max-width: 769px) {
  .topFaq_list_dtl .-a {
    padding: 1.4rem 2.2rem 1.4rem 1.6rem;
  }
}

.topFaq_list_dtl .-txt {
  font-weight: normal;
  font-size: 1.6rem;
  line-height: 3.2rem;
  color: #212121;
  width: 850px;
}

@media only screen and (max-width: 769px) {
  .topFaq_list_dtl .-txt {
    padding-left: 1rem;
    font-size: 1.4rem;
    line-height: 2.8rem;
  }
}

.topAccess {
  padding-bottom: 10rem;
  position: relative;
}

@media only screen and (max-width: 769px) {
  .topAccess {
    padding: 0rem 0 6rem;
  }
}

.topAccess_wrap {
  margin-top: 0;
  margin-bottom: 0px;
  margin-left: auto;
  margin-right: auto;
  max-width: 100rem;
  width: 98%;
  position: relative;
  padding-top: 27rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_wrap {
    width: 92%;
    max-width: 92%;
  }
}

@media only screen and (max-width: 769px) {
  .topAccess_wrap {
    padding-top: 12rem;
  }
}

.topAccess_wrap:before {
  content: "ACCESS";
  position: absolute;
  top: 0;
  left: -10.5rem;
  font-weight: bold;
  font-size: 20rem;
  color: #0e7092;
  opacity: 0.1;
  font-family: din-2014, "din-2014", sans-serif;
}

@media only screen and (max-width: 769px) {
  .topAccess_wrap:before {
    font-size: 10rem;
    left: 0rem;
  }
}

.topAccess_txt {
  margin-top: 4rem;
  font-weight: bold;
  font-size: 2.4rem;
  line-height: 6.6rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_txt {
    line-height: 4rem;
    margin-top: 2rem;
    font-size: 1.8rem;
  }
}

.topAccess_txt span {
  font-size: 4.8rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_txt span {
    font-size: 3rem;
  }
}

.topAccess_dtl {
  margin-top: 8.6rem;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl {
    display: block;
    margin-top: 3.6rem;
  }
}

.topAccess_dtl_txt {
  width: 43rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl_txt {
    width: 100%;
  }
}

.topAccess_dtl_txt .-logo {
  width: 22.2rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl_txt .-logo {
    width: 20rem;
  }
}

.topAccess_dtl_txt .-logo img {
  width: 100%;
}

.topAccess_dtl_txt .-txt01 {
  font-weight: bold;
  font-size: 2rem;
  color: #707070;
  margin-top: 2.4rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl_txt .-txt01 {
    margin-top: 1.6rem;
    text-align: center;
    font-size: 1.6rem;
  }
}

.topAccess_dtl_txt .-txt02 {
  color: #707070;
  margin-top: 1.4rem;
  font-size: 2rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl_txt .-txt02 {
    font-size: 1.5rem;
  }
}

.topAccess_dtl_map {
  width: 50rem;
  height: 25rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_dtl_map {
    width: 100%;
    margin-top: 2rem;
  }
}

.topAccess_dtl_map iframe {
  width: 100%;
  height: 100%;
}

.topAccess_imgList {
  display: flex;
  justify-content: space-between;
  margin-top: 6rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_imgList {
    display: block;
    margin-top: 3rem;
  }
}

.topAccess_imgList li {
  width: 33rem;
}

@media only screen and (max-width: 769px) {
  .topAccess_imgList li {
    width: 100%;
  }
  .topAccess_imgList li img {
    width: 100%;
  }
  .topAccess_imgList li + li {
    margin-top: 1rem;
  }
}
