.header {
  padding: 18px 0;
  width: 100%;
  background: #23afb7;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 104;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  max-width: 100%;
  position: relative;
}
.header .js-btn {
  display: none;
  width: 30px;
  height: 30px;
  position: fixed;
  top: 25px;
  right: 5%;
  z-index: 100;
}
@media not screen and (min-width: 576px) {
  .header .js-btn {
    display: inline-block;
  }
}
.header .js-btn span {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: #fff;
  position: absolute;
  transition: all 0.5s;
}
.header .js-btn span:nth-child(1) {
  top: 10%;
}
.header .js-btn span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .js-btn span:nth-child(3) {
  bottom: 10%;
}
.header .js-btn.is-active span {
  transition: all 0.5s;
}
.header .js-btn.is-active span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header .js-btn.is-active span:nth-child(2) {
  opacity: 0;
}
.header .js-btn.is-active span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
@media not screen and (min-width: 576px) {
  .header .g-nav {
    width: 100vw;
    height: 100%;
    position: fixed;
    top: -100vh;
    left: 0;
    transition: ease-in 0.5s;
    z-index: -1;
    touch-action: none;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav.is-active {
    top: 0;
    transition: ease-in 0.5s;
  }
}
.header .g-nav__list {
  display: flex;
  justify-content: flex-end;
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list {
    justify-content: flex-start;
    flex-direction: column;
    padding: 80px 15px 0;
    margin: 30px 0 0;
    height: 100%;
    background: #23afb7;
  }
}
.header .g-nav__list-item {
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: #fff;
}
.header .g-nav__list-item:not(:last-child) {
  margin: 0 45px 0 0;
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item:not(:last-child) {
    margin: 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item:not(:first-child) {
    margin: 20px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item {
    font-weight: 400;
    font-size: 1.8rem;
    letter-spacing: 0.1em;
    opacity: 0;
  }
}
@media not screen and (min-width: 576px) {
  .header .g-nav__list-item.is-active {
    opacity: 1;
    transition: opacity 0.5s ease 0.5s;
  }
}

.job-detail__container .job-detail__ttl {
  font-weight: 700;
  font-size: 3rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .job-detail__ttl {
    font-size: 2.4rem;
  }
}
.job-detail__container .job-detail__desc {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .job-detail__desc {
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule {
  margin: 75px 0 0;
  width: 100%;
  position: relative;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule {
    display: flex;
    flex-direction: column;
    margin: 20px 0 0;
    padding: 0;
    background: #def9f5;
  }
}
.job-detail__container .schedule__bg {
  padding: 58px 95px 60px;
  max-width: 815px;
  background: #def9f5;
}
@media not screen and (min-width: 1200px) {
  .job-detail__container .schedule__bg {
    width: 80%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__bg {
    padding: 40px 2%;
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__bg {
    padding: 0 15px 0;
  }
}
.job-detail__container .schedule__txt {
  display: block;
  width: 100%;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__txt {
    padding: 40px;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__txt {
    margin: 0;
    padding: 18px 15px;
  }
}
.job-detail__container .schedule__txt__ttl {
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.53;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__txt__ttl {
    font-size: 1.8rem;
  }
}
.job-detail__container .schedule__content {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
  margin: 46px 0 0;
  max-width: 380px;
}
@media not screen and (min-width: 992px) {
  .job-detail__container .schedule__content {
    max-width: 60%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__content {
    max-width: 100%;
  }
}
.job-detail__container .schedule__list {
  margin: -10px 0 -10px 30px;
  max-width: 330px;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__list {
    max-width: 100%;
  }
}
.job-detail__container .schedule__item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__item {
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__item:not(:first-child) {
  margin: 20px 0 0;
}
.job-detail__container .schedule__line {
  padding: 0 11px;
  width: 1px;
  height: auto;
  border-top: 5px solid #23afb7;
  border-bottom: 5px solid #23afb7;
  position: relative;
}
.job-detail__container .schedule__line::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background: #222;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.job-detail__container .schedule__line::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #23afb7;
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__line::after {
    top: 58%;
  }
}
.job-detail__container .schedule__line.job-plan::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 5px;
  background: #23afb7;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__line.job-plan::after {
    top: 58%;
  }
}
.job-detail__container .schedule__foot {
  display: block;
  margin: 50px auto 0;
  padding: 15px 25px 20px;
  width: 100%;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  background: #fff;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__foot {
    margin: 50px -15px 0;
    width: 110%;
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__thumb {
  max-width: 530px;
  height: 485px;
  border: 1px solid #23afb7;
  position: absolute;
  top: -43px;
  right: 0;
  z-index: 1;
}
@media not screen and (min-width: 1200px) {
  .job-detail__container .schedule__thumb {
    width: 450px;
    height: 400px;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb {
    margin: 42px auto 0;
    position: relative;
    border: none;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb {
    margin: 42px auto 0;
    width: 100%;
    height: 288px;
  }
}
.job-detail__container .schedule__thumb::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background: #23afb7;
  position: absolute;
  top: 12px;
  left: -11px;
  z-index: -1;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb::before {
    display: none;
  }
}
.job-detail__container .schedule__thumb img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.job-detail__container .schedule__thumb__balloon {
  width: 340px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #fff;
  position: absolute;
  right: 0;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb__balloon {
    position: static;
    margin: 0 auto;
    width: 60%;
    right: inherit;
    left: 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb__balloon {
    margin: 12px 0 0;
    width: 100%;
    font-size: 1.4rem;
  }
}
.job-detail__container .schedule__thumb__balloon-caption {
  padding: 15px 10px;
  width: 100%;
  position: absolute;
  top: 58%;
  left: 52%;
  transform: translate(-50%, -50%);
}
@media not screen and (min-width: 768px) {
  .job-detail__container .schedule__thumb__balloon-caption {
    width: 80%;
    top: -110px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .schedule__thumb__balloon-caption {
    width: 100%;
    top: -30%;
    left: 52%;
  }
}
.job-detail__container .charm {
  margin: 100px 0;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm {
    margin: 40px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__ttl {
    justify-content: flex-end;
    position: relative;
  }
}
.job-detail__container .charm__ttl::before {
  width: 75%;
}
@media not screen and (min-width: 992px) {
  .job-detail__container .charm__ttl::before {
    width: 70%;
  }
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__ttl::before {
    width: 65%;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__ttl::before {
    width: 50%;
    position: absolute;
    top: 18px;
    right: -4%;
  }
}
.job-detail__container .charm__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 60px 3%;
  margin: 36px 0 0;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__list {
    display: flex;
    flex-direction: column;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__list {
    gap: 30px 0;
    margin: 20px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item {
    width: 100%;
  }
}
.job-detail__container .charm__item__head {
  display: flex;
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.job-detail__container .charm__item__head-ttl {
  margin: 0 0 0 23px;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__item__head-ttl {
    margin: 0;
    font-size: 1.7rem;
  }
}
.job-detail__container .charm__item__head-icon {
  width: 55px;
}
@media not screen and (min-width: 768px) {
  .job-detail__container .charm__item__head-icon {
    display: none;
  }
}
.job-detail__container .charm__item__desc {
  margin: 15px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__desc {
    margin: 10px 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.job-detail__container .charm__item:last-child {
  padding: 35px 44px 49px 38px;
  background: #def9f5;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item:last-child {
    padding: 18px 15px;
  }
}
.job-detail__container .charm__item__ttl {
  font-weight: 700;
  font-size: 2.7rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__ttl {
    font-size: 1.8rem;
  }
}
.job-detail__container .charm__item__desc {
  margin: 18px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-detail__container .charm__item__desc {
    font-size: 1.4rem;
  }
}

@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon {
    margin: 0 0 0 auto;
    width: 78%;
  }
}
.flow__item01 .customer__talk01 .talk__balloon__txt {
  margin: 0 14px 0 0;
  max-width: 434px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon__txt {
    margin: 0;
    max-width: 100%;
  }
}
.flow__item01 .customer__talk01 .talk__balloon__txt-accent {
  color: #fc5555;
}
.flow__item01 .customer__talk01 .talk__balloon__contents {
  display: flex;
  justify-content: space-between;
  width: 328px;
}
@media not screen and (min-width: 768px) {
  .flow__item01 .customer__talk01 .talk__balloon__contents {
    margin: 20px 0 0;
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon__contents {
    margin: 9px 0 0;
    gap: 0 4px;
  }
}
.flow__item01 .customer__talk01 .talk__balloon__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__item01 .customer__talk01 .talk__balloon__thumb:first-child {
  width: 102px;
  height: 140px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon__thumb:first-child {
    width: 78px;
    height: 109px;
  }
}
.flow__item01 .customer__talk01 .talk__balloon__thumb:nth-child(2) {
  width: 88px;
  height: 85px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon__thumb:nth-child(2) {
    width: 67px;
    height: 67px;
  }
}
.flow__item01 .customer__talk01 .talk__balloon__thumb:last-child {
  margin: auto 0 0;
  width: 120px;
  height: 81px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk01 .talk__balloon__thumb:last-child {
    width: 94px;
    height: 63px;
  }
}
.flow__item01 .customer__talk02 {
  align-items: flex-start;
  margin: 40px 0;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk02 {
    align-items: center;
    margin: 20px 0 0;
  }
}
.flow__item01 .customer__talk02 .talk__balloon {
  padding: 15px 30px 16px;
  width: 114px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk02 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 8px 0;
    width: 60px;
    text-align: center;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk02 .talk__balloon::before {
    top: 15px;
    left: -28px;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk02 .talk__balloon::after {
    top: 14px;
    left: -32px;
  }
}
.flow__item01 .customer__talk02 .talk__balloon__txt {
  font-weight: bold;
  font-size: 2.6rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .customer__talk02 .talk__balloon__txt {
    font-size: 1.6rem;
  }
}
.flow__item01 .operator__talk01 {
  margin: 40px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .operator__talk01 {
    margin: 15px 0 0;
  }
}
.flow__item01 .operator__talk01 .talk__balloon {
  max-width: 650px;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .operator__talk01 .talk__balloon {
    margin: 0 auto 0 0;
    max-width: 78%;
  }
}
.flow__item01 .suggest__txt {
  padding: 40px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
  background: #def9f5;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .suggest__txt {
    padding: 25px 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.flow__item01 .suggest__txt-accent {
  color: #fc5555;
}
.flow__item01 .suggest__list {
  margin: 20px 0;
}
@media not screen and (min-width: 576px) {
  .flow__item01 .suggest__list {
    margin: 10px 0 15px;
  }
}
.flow__item01 .suggest__item {
  margin: 0 0 0 16px;
  text-indent: -1.6rem;
}

.flow__item02 .operator__talk01 .talk__balloon {
  max-width: 521px;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .operator__talk01 .talk__balloon {
    margin: 0 auto 0 0;
    max-width: 78%;
  }
}
.flow__item02 .customer__talk01 {
  align-items: flex-start;
  margin: -10px 0 0;
}
.flow__item02 .customer__talk01 .talk__balloon {
  max-width: 78%;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk01 .talk__balloon {
    margin: 16px 0 0 auto;
  }
}
.flow__item02 .customer__talk01 .talk__balloon__txt {
  max-width: 654px;
}
.flow__item02 .operator__talk02 {
  margin: -10px 0 0;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .operator__talk02 {
    margin: 40px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item02 .operator__talk02 {
    margin: 15px 0 0;
  }
}
.flow__item02 .operator__talk02 .talk__balloon {
  max-width: 624px;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .operator__talk02 .talk__balloon {
    margin: 0 auto 0 0;
    max-width: 78%;
  }
}
.flow__item02 .customer__talk02 {
  align-items: flex-start;
  margin: 40px 0;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk02 {
    margin: 20px 0 0;
  }
}
.flow__item02 .customer__talk02 .talk__balloon {
  padding: 15px 30px 16px;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk02 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 8px 0;
    width: 60px;
    text-align: center;
  }
}
.flow__item02 .customer__talk02 .talk__balloon__txt {
  font-weight: bold;
  font-size: 2.6rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk02 .talk__balloon__txt {
    font-size: 1.6rem;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk02 .talk__balloon::before {
    top: 15px;
    left: -28px;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item02 .customer__talk02 .talk__balloon::after {
    top: 14px;
    left: -32px;
  }
}
.flow__item02 .suggest {
  margin: 0 auto;
  max-width: 960px;
}
.flow__item02 .suggest__container {
  padding: 40px;
  background: #def9f5;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__container {
    padding: 25px 12px;
  }
}
.flow__item02 .suggest__head {
  display: flex;
  justify-content: space-between;
  margin: 10px 0 0;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__head {
    flex-direction: column;
  }
}
@media not screen and (min-width: 992px) {
  .flow__item02 .suggest__head__txt {
    width: 48%;
  }
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__head__txt {
    width: 100%;
  }
}
.flow__item02 .suggest__head__txt-desc {
  max-width: 398px;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 992px) {
  .flow__item02 .suggest__head__txt-desc {
    max-width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__head__txt-desc {
    font-size: 1.3rem;
  }
}
.flow__item02 .suggest__head__txt-desc:nth-child(3), .flow__item02 .suggest__head__txt-desc:last-child {
  margin: 0 0 0 16px;
  text-indent: -1.6rem;
}
.flow__item02 .suggest__head__txt__list {
  margin: 0 0 20px;
  max-width: 398px;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__head__txt__list {
    margin: 15px 0;
  }
}
.flow__item02 .suggest__head__txt__item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__head__txt__item {
    font-size: 1.3rem;
  }
}
.flow__item02 .suggest__head__table {
  width: 420px;
  border: 1px solid #ccc;
}
@media not screen and (min-width: 992px) {
  .flow__item02 .suggest__head__table {
    width: 48%;
  }
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__head__table {
    margin: 22px 0 0;
    width: 100%;
  }
}
.flow__item02 .suggest__head__table__row:nth-child(3) {
  border: 2px solid #fc5555;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__head__table__row:nth-child(3) .suggest__head__table-data:first-child {
    margin: 0 0 0 -1.3rem;
    text-indent: 1.3rem;
  }
}
.flow__item02 .suggest__head__table-head {
  padding: 4px 0;
  font-size: 1.4rem;
  background: #ccc;
  text-align: center;
  vertical-align: middle;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__head__table-head {
    padding: 9px 0;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__head__table-head {
    font-size: 1.3rem;
  }
}
.flow__item02 .suggest__head__table-head:nth-child(1) {
  width: 40%;
}
.flow__item02 .suggest__head__table-head:nth-child(2) {
  width: 20%;
}
.flow__item02 .suggest__head__table-head:nth-child(3) {
  width: 40%;
}
.flow__item02 .suggest__head__table-head:not(:last-child) {
  border-right: 2.4px solid #fff;
}
.flow__item02 .suggest__head__table-head-ttl {
  font-weight: 700;
}
.flow__item02 .suggest__head__table-data {
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.43;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__head__table-data {
    padding: 13px 0;
    line-height: 1.61;
  }
}
.flow__item02 .suggest__head__table-data:not(:last-child) {
  border-right: 2.4px solid #ccc;
}
.flow__item02 .suggest__middle {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column-reverse;
  padding: 20px 0 40px;
}
.flow__item02 .suggest__middle__txt {
  text-align: center;
}
.flow__item02 .suggest__middle__txt-ttl {
  margin: 15px 0 0;
  font-weight: 700;
  font-size: 2rem;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__middle__txt-ttl {
    font-size: 1.5rem;
  }
}
.flow__item02 .suggest__middle__txt-lead {
  margin: 15.3px 0 0;
  font-weight: 400;
  font-size: 1.4rem;
  line-height: 1.78;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__middle__txt-lead {
    font-size: 1.2rem;
  }
}
.flow__item02 .suggest__middle__arrow {
  width: 90px;
}
.flow__item02 .suggest__foot {
  display: flex;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__foot {
    flex-direction: column;
  }
}
.flow__item02 .suggest__foot__trip-flight__ttl {
  font-weight: 700;
  font-size: 2rem;
}
@media not screen and (min-width: 576px) {
  .flow__item02 .suggest__foot__trip-flight__ttl {
    font-size: 1.6rem;
    text-align: center;
  }
}
.flow__item02 .suggest__foot__trip-flight__map {
  margin: 25px 0 0;
  max-width: 512px;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__foot__trip-flight__map {
    max-width: 100%;
  }
}
.flow__item02 .suggest__foot__table {
  width: 328px;
  border: 1px solid #ccc;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__foot__table {
    margin: 15px 0 0;
    max-width: 100%;
  }
}
.flow__item02 .suggest__foot__table__row:not(:first-child) {
  background: #fff;
  border-top: 1px solid #ccc;
}
.flow__item02 .suggest__foot__table-head {
  font-weight: 700;
  font-size: 1.4rem;
  background: #ccc;
  text-align: center;
  vertical-align: middle;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__foot__table-head {
    padding: 8.7px 0;
  }
}
.flow__item02 .suggest__foot__table-data {
  font-weight: 400;
  font-size: 1.4rem;
  text-align: left;
  vertical-align: middle;
}
@media not screen and (min-width: 768px) {
  .flow__item02 .suggest__foot__table-data {
    padding: 13.5px 0;
  }
}
.flow__item02 .suggest__foot__table-data.date {
  padding: 0 15px 0 26px;
}
.flow__item02 .suggest-red {
  color: #fc5555;
}
.flow__item02 .suggest-blue {
  color: #23afb7;
}

.flow__item03 .customer__talk01 {
  margin: 40px 0 0;
  justify-content: center;
}
@media not screen and (min-width: 576px) {
  .flow__item03 .customer__talk01 {
    align-items: flex-start;
    margin: 20px 0 0;
  }
}
.flow__item03 .customer__talk01 .talk__balloon {
  max-width: 418px;
}
@media not screen and (min-width: 576px) {
  .flow__item03 .customer__talk01 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 12px 0;
    width: 76%;
    text-align: center;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item03 .customer__talk01 .talk__balloon:before {
    top: 28px;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item03 .customer__talk01 .talk__balloon:after {
    top: 27px;
  }
}
.flow__item03 .customer__talk01 .talk__balloon__txt {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item03 .customer__talk01 .talk__balloon__txt {
    font-size: 1.3rem;
  }
}
.flow__item03 .customer__talk01 .talk__balloon__txt-alert {
  color: #fc5555;
}
@media not screen and (min-width: 768px) {
  .flow__item03 .operator__talk01 {
    margin: 40px 0 0;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item03 .operator__talk01 {
    margin: 0;
  }
}
.flow__item03 .operator__talk01 .talk__balloon {
  max-width: 624px;
}
@media not screen and (min-width: 576px) {
  .flow__item03 .operator__talk01 .talk__balloon {
    margin: 0 auto 0 0;
    max-width: 78%;
  }
}
.flow__item03 .suggest {
  max-width: 960px;
}
.flow__item03 .suggest__container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: #def9f5;
}
@media not screen and (min-width: 768px) {
  .flow__item03 .suggest__container {
    flex-direction: column;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item03 .suggest__container {
    padding: 25px 14px;
  }
}
.flow__item03 .suggest__main {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item03 .suggest__main {
    font-size: 1.3rem;
  }
}
.flow__item03 .suggest__main__list {
  margin: 20px 0 0;
  max-width: 419px;
}
@media not screen and (min-width: 768px) {
  .flow__item03 .suggest__main__list {
    max-width: 100%;
  }
}
.flow__item03 .suggest__main__list-ttl {
  font-weight: 700;
  color: #fc5555;
}
.flow__item03 .suggest__map {
  max-width: 418px;
}
@media not screen and (min-width: 768px) {
  .flow__item03 .suggest__map {
    margin: 20px 0 0;
    max-width: 100%;
  }
}

.flow__item04 .customer__talk01 {
  align-items: flex-start;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk01 {
    align-items: center;
    margin: 0;
  }
}
.flow__item04 .customer__talk01 .talk__balloon {
  max-width: 396px;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk01 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 8px 13px;
    width: 78%;
    text-align: left;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk01 .talk__balloon::before {
    top: 8px;
    left: -28px;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk01 .talk__balloon::after {
    top: 7px;
    left: -32px;
  }
}
.flow__item04 .customer__talk01 .talk__balloon__txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk01 .talk__balloon__txt {
    font-size: 1.3rem;
  }
}
.flow__item04 .customer__talk01 .talk__balloon__txt-alert {
  color: #fc5555;
}
.flow__item04 .operator__talk01 {
  margin: -10px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .operator__talk01 {
    margin: 15px 0;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item04 .operator__talk01 .talk__balloon {
    margin: 0 auto 0 0;
    padding: 12px 13px;
    width: 78%;
    text-align: left;
  }
}
.flow__item04 .customer__talk02 {
  margin: 40px 0 0;
  align-items: flex-start;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk02 {
    margin: 20px 0 0;
  }
}
.flow__item04 .customer__talk02 .talk__balloon {
  max-width: 545px;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk02 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 12px 13px;
    width: 76%;
  }
}
.flow__item04 .customer__talk02 .talk__balloon__txt {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.6;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .customer__talk02 .talk__balloon__txt {
    font-size: 1.3rem;
  }
}
.flow__item04 .customer__talk02 .talk__balloon__txt-alert {
  color: #fc5555;
}
.flow__item04 .suggest__container {
  display: flex;
  justify-content: space-between;
  padding: 40px;
  background: #def9f5;
}
@media not screen and (min-width: 768px) {
  .flow__item04 .suggest__container {
    flex-direction: column;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item04 .suggest__container {
    padding: 25px 14px;
  }
}
.flow__item04 .suggest__main {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item04 .suggest__main {
    font-size: 1.3rem;
  }
}
.flow__item04 .suggest__main__list {
  margin: 20px 0 0;
  max-width: 419px;
}
@media not screen and (min-width: 768px) {
  .flow__item04 .suggest__main__list {
    max-width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item04 .suggest__main__list {
    margin: 15px 0 0;
  }
}
.flow__item04 .suggest__main__list-ttl {
  font-weight: 700;
  color: #fc5555;
}
.flow__item04 .suggest__map {
  max-width: 418px;
}
@media not screen and (min-width: 768px) {
  .flow__item04 .suggest__map {
    margin: 20px 0 0;
    max-width: 100%;
  }
}

@media not screen and (min-width: 576px) {
  .flow__item05 .customer__talk01 .talk__balloon {
    margin: 0 0 0 auto;
    width: 78%;
  }
}
.flow__item05 .customer__talk01 .talk__balloon__txt {
  margin: 0 14px 0 0;
  max-width: 373px;
}
.flow__item05 .customer__talk01 .talk__balloon__contents {
  display: flex;
  justify-content: space-between;
  width: 318px;
}
@media not screen and (min-width: 768px) {
  .flow__item05 .customer__talk01 .talk__balloon__contents {
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item05 .customer__talk01 .talk__balloon__contents {
    gap: 0 4px;
  }
}
@media not screen and (min-width: 768px) {
  .flow__item05 .customer__talk01 .talk__balloon__thumb {
    margin: 15px 0 0;
  }
}
.flow__item05 .customer__talk01 .talk__balloon__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.flow__item05 .customer__talk01 .talk__balloon__thumb:first-child {
  width: 94px;
  height: 142px;
}
.flow__item05 .customer__talk01 .talk__balloon__thumb:nth-child(2) {
  width: 214px;
  height: 142px;
}
.flow__item05 .customer__talk02 {
  align-items: flex-start;
  margin: 40px 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .customer__talk02 {
    margin: 20px 0 0;
  }
}
.flow__item05 .customer__talk02 .talk__balloon {
  padding: 15px 30px 16px;
  max-width: 603px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .customer__talk02 .talk__balloon {
    margin: 0 0 0 10px;
    padding: 12px 13px;
    width: 76%;
  }
}
.flow__item05 .customer__talk02 .talk__balloon__txt {
  font-weight: bold;
  font-size: 2rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .customer__talk02 .talk__balloon__txt {
    font-size: 1.3rem;
  }
}
.flow__item05 .operator__talk01 {
  margin: 40px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .operator__talk01 {
    margin: 15px 0;
  }
}
.flow__item05 .operator__talk01 .talk__balloon {
  max-width: 650px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .operator__talk01 .talk__balloon {
    margin: 0 auto 0 0;
    padding: 12px 13px;
    width: 78%;
    text-align: left;
  }
}
.flow__item05 .suggest-accent {
  color: #fc5555;
}
.flow__item05 .suggest__ttl.flow05 {
  width: 398px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__ttl.flow05 {
    max-width: 317px;
    font-size: 1.5rem;
  }
}
.flow__item05 .suggest__container {
  padding: 40px 40px 80px;
  background: #def9f5;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__container {
    margin: -15px 0 0;
    padding: 25px 14px 90px;
  }
}
.flow__item05 .suggest__arrow {
  margin: 0 auto;
  width: 89px;
}
.flow__item05 .suggest__arrow01 {
  margin: 20px auto;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__arrow01 {
    margin: 15px auto 13px;
  }
}
.flow__item05 .suggest__arrow02 {
  margin: 16.4px auto 19.7px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__arrow02 {
    margin: 18px auto 21px;
  }
}
.flow__item05 .suggest__arrow03 {
  margin: 24.4px auto 19.7px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__arrow03 {
    margin: 20px auto;
  }
}
.flow__item05 .suggest__step01-desc {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step01-desc {
    font-size: 1.3rem;
  }
}
.flow__item05 .suggest__step02 {
  margin: 30px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02 {
    margin: 16px 0 0;
  }
}
.flow__item05 .suggest__step02__flex {
  display: flex;
  justify-content: space-between;
}
@media not screen and (min-width: 768px) {
  .flow__item05 .suggest__step02__flex {
    flex-direction: column;
  }
}
.flow__item05 .suggest__step02__body {
  max-width: 600px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02__body {
    text-align: center;
  }
}
.flow__item05 .suggest__step02__body-ttl {
  display: inline-block;
  padding: 9px 0;
  width: 218px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  background: #23afb7;
  color: #fff;
  border-radius: 5px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02__body-ttl {
    font-size: 1.3rem;
  }
}
.flow__item05 .suggest__step02__list {
  margin: 13px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02__list {
    text-align: left;
  }
}
.flow__item05 .suggest__step02__item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02__item {
    margin: 0 0 0 1.3rem;
    font-size: 1.3rem;
    text-indent: -1.3rem;
    line-height: 1.5;
  }
}
.flow__item05 .suggest__step02__figure {
  max-width: 404px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02__figure {
    margin: 20px 0 0;
  }
}
.flow__item05 .suggest__step02-desc {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step02-desc {
    font-size: 1.5rem;
  }
}
.flow__item05 .suggest__step02-accent {
  color: #fc5555;
}
.flow__item05 .suggest__step03 {
  margin: 29.6px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03 {
    margin: 20px 0 0;
  }
}
.flow__item05 .suggest__step03-ttl {
  display: inline-block;
  padding: 9px 0;
  width: 604px;
  font-weight: 700;
  font-size: 1.6rem;
  text-align: center;
  background: #23afb7;
  color: #fff;
  border-radius: 5px;
}
@media not screen and (min-width: 768px) {
  .flow__item05 .suggest__step03-ttl {
    display: block;
    width: 100%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03-ttl {
    margin: 0 auto;
    width: 300px;
    font-size: 1.3rem;
  }
}
.flow__item05 .suggest__step03__list {
  margin: 13.2px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03__list {
    margin: 10px 0 0;
  }
}
.flow__item05 .suggest__step03__item {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03__item {
    font-size: 1.3rem;
  }
}
.flow__item05 .suggest__step03-desc {
  font-size: 2rem;
  line-height: 1.5;
  text-align: center;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03-desc {
    font-size: 1.5rem;
  }
}
.flow__item05 .suggest__step03-thumb {
  margin: 20.3px auto 0;
  width: 115px;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03-thumb {
    width: 173px;
  }
}
.flow__item05 .suggest__step03-thumb-caption {
  display: block;
  font-size: 1.2rem;
  color: #999;
  text-align: center;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  width: 408px;
}
@media not screen and (min-width: 576px) {
  .flow__item05 .suggest__step03-thumb-caption {
    width: 100%;
    font-size: 1.1rem;
    bottom: -58px;
    text-align: left;
  }
}

.flow {
  padding: 50px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__ttl {
    justify-content: flex-end;
    position: relative;
  }
}
.flow__ttl::before {
  width: 65%;
}
@media not screen and (min-width: 1200px) {
  .flow__ttl::before {
    width: 60%;
  }
}
@media not screen and (min-width: 992px) {
  .flow__ttl::before {
    width: 50%;
  }
}
@media not screen and (min-width: 576px) {
  .flow__ttl::before {
    width: 20%;
    position: absolute;
    top: 18px;
    right: -4%;
  }
}
.flow__desc {
  margin: 26px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .flow__desc {
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.flow__list {
  margin: 40px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow__item:not(:first-child) {
    margin: 1px 0 0;
  }
}
.flow__item-ttl {
  display: flex;
  align-items: center;
  margin: 4px 0 0;
  padding: 16px 19px;
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  background: #23afb7;
  position: relative;
  cursor: pointer;
}
@media not screen and (min-width: 576px) {
  .flow__item-ttl {
    margin: 0 -4%;
    padding: 11px 15px 14px;
    font-size: 1.7rem;
  }
}
.flow__item-ttl-num {
  margin: 0 12px 0 0;
  width: 29.2px;
}
@media not screen and (min-width: 576px) {
  .flow__item-ttl-num {
    margin: 0 8px 0 0;
  }
}
.flow__item-ttl:before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 45%;
  right: 5%;
  transform: translateY(-50%) rotate(135deg);
  transition: all 0.5s;
}
@media not screen and (min-width: 576px) {
  .flow__item-ttl:before {
    width: 12px;
    height: 12px;
  }
}
.flow__item-ttl.is-active::before {
  top: 55%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.5s;
}
.flow__item__detail {
  padding: 0 20px 0;
  line-height: 0;
  height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity ease 0.5s, height ease 0.5s, line-height ease 0.5s;
}
@media not screen and (min-width: 576px) {
  .flow__item__detail {
    padding: 0 20px 0;
  }
}
.flow__item__detail.is-show {
  padding: 30px 20px;
  line-height: normal;
  height: auto;
  opacity: 1;
  transition: opacity ease 0.5s, height ease 0.5s, line-height ease 0.5s;
}
@media not screen and (min-width: 576px) {
  .flow__item__detail.is-show {
    padding: 15px 0;
  }
}
.flow__item .talk {
  display: flex;
}
.flow__item .talk.customer__talk {
  justify-content: flex-end;
  flex-direction: row-reverse;
}
.flow__item .talk.customer__talk.center {
  justify-content: center;
}
.flow__item .talk.customer__talk.center.customer__talk__balloon:before {
  top: 19px;
  z-index: 1;
}
.flow__item .talk.customer__talk.center.customer__talk__balloon:after {
  top: 18px;
  z-index: 0;
}
.flow__item .talk.operator__talk {
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row;
}
.flow__item .talk.operator__talk .talk__avatar {
  margin: 0 0 0 33px;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk.operator__talk .talk__avatar {
    margin: 0 0 0 2.5px;
  }
}
.flow__item .talk__balloon {
  display: flex;
  position: relative;
  padding: 20px 30px;
  background: #fff;
  border: 1px solid #23afb7;
  border-radius: 10px;
}
@media not screen and (min-width: 768px) {
  .flow__item .talk__balloon {
    flex-direction: column;
  }
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon {
    padding: 10px 12px;
  }
}
.flow__item .talk__balloon:before, .flow__item .talk__balloon:after {
  content: "";
  display: inline-block;
  position: absolute;
}
.flow__item .talk__balloon:before {
  top: 19px;
  z-index: 1;
}
.flow__item .talk__balloon:after {
  top: 18px;
  z-index: 0;
}
.flow__item .talk__balloon.customer__talk__balloon::before {
  left: -25px;
  border: 11px solid transparent;
  border-right: 15px solid #fff;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon.customer__talk__balloon::before {
    left: -12px;
    border: 4px solid transparent;
    border-right: 8px solid #fff;
  }
}
.flow__item .talk__balloon.customer__talk__balloon::after {
  left: -28px;
  border: 12px solid transparent;
  border-right: 16px solid #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon.customer__talk__balloon::after {
    left: -14px;
    border: 5px solid transparent;
    border-right: 9px solid #23afb7;
  }
}
.flow__item .talk__balloon.operator__talk__balloon::before {
  right: -25px;
  border: 11px solid transparent;
  border-left: 15px solid #fff;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon.operator__talk__balloon::before {
    right: -12px;
    border: 4px solid transparent;
    border-left: 8px solid #fff;
  }
}
.flow__item .talk__balloon.operator__talk__balloon::after {
  right: -28px;
  border: 12px solid transparent;
  border-left: 16px solid #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon.operator__talk__balloon::after {
    right: -14px;
    border: 5px solid transparent;
    border-left: 9px solid #23afb7;
  }
}
.flow__item .talk__balloon__txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.56;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__balloon__txt {
    font-size: 1.3rem;
  }
}
.flow__item .talk__balloon__txt-accent {
  color: #fc5555;
}
.flow__item .talk__avatar {
  margin: 0 33px 0 0;
  width: 95px;
  text-align: center;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__avatar {
    margin: 0 2.5px 0 0;
    width: 60px;
  }
}
.flow__item .talk__avatar-caption {
  margin: 5.2px 0 0;
  font-weight: 400;
  font-size: 1.4rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .flow__item .talk__avatar-caption {
    font-size: 1.2rem;
  }
}
.flow .suggest {
  margin: 33px auto 0;
  max-width: 960px;
}
@media not screen and (min-width: 576px) {
  .flow .suggest {
    margin: 0;
  }
}
.flow .suggest__ttl {
  display: block;
  margin: 0 auto;
  width: 180px;
  padding: 10px 0;
  font-weight: 700;
  font-size: 1.8rem;
  text-align: center;
  color: #fff;
  background: #23afb7;
  border-radius: 50px;
  position: relative;
  z-index: 1;
}
@media not screen and (min-width: 576px) {
  .flow .suggest__ttl {
    padding: 5px 0 6px;
    width: 135px;
    font-size: 1.5rem;
  }
}
.flow .suggest__txt {
  margin: -20px 0 0;
}
@media not screen and (min-width: 576px) {
  .flow .suggest__txt {
    margin: -15px 0 0;
  }
}
.flow .suggest__container {
  margin: -22px auto 0;
}
@media not screen and (min-width: 576px) {
  .flow .suggest__container {
    margin: -15px 0 0;
  }
}

.link {
  padding: 130px 0 150px;
}
@media not screen and (min-width: 576px) {
  .link {
    padding: 50px 0;
  }
}
.link.company__link {
  background: url(../images/webp/company_bg.webp) no-repeat center/cover;
}
@media not screen and (min-width: 576px) {
  .link.company__link {
    padding: 50px 0 68px;
  }
}
.link.reqruit__link {
  margin: 317px 0 297px;
}
.link.job__link {
  background: #fff;
}
.link__inner {
  max-width: 100%;
}
.link__ttl {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  color: #222;
}
@media not screen and (min-width: 576px) {
  .link__ttl {
    font-size: 1.7rem;
    line-height: 1.76;
  }
}
.link__ttl.feature__link__ttl, .link__ttl.company__link__ttl, .link__ttl.reqruit__link__ttl {
  color: #fff;
  text-shadow: 0 0 4px #666;
}
.link__btn {
  display: block;
  margin: 50px auto 0;
  max-width: 320px;
  padding: 13px 0;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  color: #23afb7;
  border: 1px solid #23afb7;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .link__btn {
    margin: 23px auto 0;
    max-width: 315px;
    font-size: 1.5rem;
  }
}
.link__btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #23afb7;
  border-right: 2px solid #23afb7;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
}

.footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 94vh;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .footer {
    height: 94svh;
  }
}
.footer__inner {
  margin: -30px 0 0;
}
@media not screen and (min-width: 576px) {
  .footer__inner {
    padding: 142px 4%;
    width: 100%;
    height: 100%;
  }
}
.footer__ttl {
  font-weight: 700;
  font-size: 3.6rem;
  line-height: 1.75;
  letter-spacing: 0.1em;
  text-align: center;
  color: #fff;
  text-shadow: 0 0 4px #666;
}
@media not screen and (min-width: 576px) {
  .footer__ttl {
    font-size: 1.7rem;
  }
}
.footer__list {
  width: 100%;
}
.footer__list__btn {
  display: block;
  margin: 50px auto 0;
  max-width: 320px;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.1em;
  text-align: center;
  border-radius: 50px;
  background: #fff;
  color: #23afb7;
  border: 1px solid #23afb7;
  position: relative;
}
@media not screen and (min-width: 576px) {
  .footer__list__btn {
    margin: 23px auto 0;
    max-width: 315px;
  }
}
.footer__list__btn a {
  display: block;
  padding: 13px 0;
}
.footer__list__btn:not(:first-child) {
  margin: 20px auto 0;
}
.footer__list__btn:before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 2px solid #23afb7;
  border-right: 2px solid #23afb7;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%) rotate(45deg);
}
.footer__copy {
  padding: 8px 0;
  width: 100%;
  text-align: right;
  background: #000;
  position: absolute;
  bottom: 0;
  left: 0;
}
@media not screen and (min-width: 576px) {
  .footer__copy {
    text-align: center;
  }
}
@media not screen and (min-width: 576px) {
  .footer__copy.home {
    margin: 264px auto 0;
    text-align: center;
  }
}
.footer__copy-txt {
  display: inline-block;
  padding: 0 2.5%;
  max-width: 1160px;
  font-weight: 400;
  font-size: 1.2rem;
  color: #fff;
}
@media not screen and (min-width: 576px) {
  .footer__copy-txt {
    font-size: 1rem;
  }
}

.job-reserve-page {
  overflow-x: hidden;
}
.job-reserve-page .job-reserve__ttl {
  font-weight: 700;
  font-size: 3rem;
  color: #23afb7;
}
@media not screen and (min-width: 576px) {
  .job-reserve-page .job-reserve__ttl {
    font-size: 2.4rem;
  }
}
.job-reserve-page .job-reserve__desc {
  margin: 20px 0 0;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-reserve-page .job-reserve__desc {
    margin: 9px 0 0;
    font-size: 1.4rem;
    line-height: 1.5;
  }
}
.job-reserve-page .job-reserve .schedule__thumb__balloon {
  bottom: -180px;
}
.job-reserve-page .job-reserve .flow__foot {
  margin: 40px auto 0;
  max-width: 910px;
}
@media not screen and (min-width: 576px) {
  .job-reserve-page .job-reserve .flow__foot {
    margin: 15px auto 0;
  }
}
.job-reserve-page .job-reserve .flow__foot-txt {
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media not screen and (min-width: 576px) {
  .job-reserve-page .job-reserve .flow__foot-txt {
    font-size: 1.4rem;
  }
}