@charset "UTF-8";

html .table_of_contents_container img {
    width: 672px;
}
@media screen and (max-width: 768px) {
  html .table_of_contents_container img {
    width: 100%;
  }
}

/* common
-------------------------------------------- */
.link-txt {
  color: #D61518;
  text-decoration: underline;
  display: inline-block;
}

.inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: content-box;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0;
  }
}

.images__inr {
  display: flex;
  justify-content: center;
}
@media (max-width: 576px) {
  .images__inr {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .images__inr picture {
    display: block;
    width: 100%;
  }
}
.images__inr picture:first-child {
  margin-right: 6%;
}
@media (max-width: 576px) {
  .images__inr picture:first-child {
    margin-bottom: 16px;
  }
}

.section__inr-bg {
  background: #FCF8F7;
  max-width: 1160px;
  margin: 0 auto 80px;
  padding: 56px 56px 80px;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .section__inr-bg {
    padding: 40px 5%;
    margin-bottom: 40px;
  }
}

.section__inr {
  max-width: 1160px;
  padding: 0 0 80px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .section__inr {
    padding: 0 5%;
    margin: 0 auto 40px;
  }
}

.section__heading {
  text-align: center;
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .section__heading {
    margin-bottom: 24px;
  }
}

.section__heading-en {
  font-family: "Noto Sans", sans-serif;
  font-size: 5.6rem;
  line-height: 130%;
  font-weight: bold;
  letter-spacing: -0.02em;
  display: inline-block;
  background: linear-gradient(0deg, #D61518, #F4944E);
  background: -webkit-linear-gradient(0deg, #D61518, #F4944E);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #D61518;
}
@media screen and (max-width: 1024px) {
  .section__heading-en {
    font-size: 4rem;
  }
}

.section__heading-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  line-height: 150%;
  font-weight: bold;
  color: #333;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .section__heading-jp {
    font-size: 1.6rem;
  }
}

.section__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.section__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .section__list-item {
    margin-bottom: 8px;
  }
}
.section__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .section__list-item::before {
    width: 8px;
    height: 8px;
  }
}

.text-red {
  color: #D61518;
  font-weight: normal;
}

.image-400 {
  width: 400px;
}

.image-half {
  width: 48%;
}

.section__inr-btn {
  width: 400px;
  font-size: 1.8rem;
  margin: 0 auto;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .section__inr-btn {
    font-size: 1.6rem;
    width: 100%;
    padding: 12px 0;
  }
}
@media (max-width: 576px) {
  .section__inr-btn {
    font-size: 1.4rem;
    width: 100%;
    padding: 10px 0;
  }
}

.section__inr-btn__row {
  display: flex;
  justify-content: center;
}
.section__inr-btn__row a:first-child {
  margin-right: 32px;
}
@media (max-width: 576px) {
  .section__inr-btn__row {
    display: block;
  }
  .section__inr-btn__row a:first-child {
    margin-right: 0;
    margin-bottom: 16px;
  }
}

.section__ol-list {
  margin-bottom: 32px;
}

.section__ol-list-box {
  margin-bottom: 24px;
}

.section__ol-list-ttl {
  color: #D61518;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.3;
  padding-left: 30px;
  margin-bottom: 8px;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .section__ol-list-ttl {
    font-size: 1.6rem;
    padding-left: 28px;
  }
}

ol.section__ol-list {
  counter-reset: li;
}
ol.section__ol-list li {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
ol.section__ol-list li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px;
  display: block;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  background-color: #D61518;
  font-family: "Noto Sans", sans-serif;
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  line-height: 22px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  ol.section__ol-list li::before {
    font-size: 1.4rem;
    width: 20px;
    height: 20px;
    line-height: 20px;
  }
}

@media (max-width: 576px) {
  .heading__long {
    line-height: 110%;
    margin-bottom: 8px;
  }
}

/* mv
-------------------------------------------- */
.mv_wrap {
  width: 100%;
  height: 400px;
  display: flex;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .mv_wrap {
    display: block;
    position: relative;
    margin-bottom: 24px;
  }
}
@media (max-width: 576px) {
  .mv_wrap {
    height: 200px;
  }
}

.mv01 {
  flex: 1;
  height: 400px;
  background: url(/images/first/first-mv01.webp) no-repeat center center;
  background-size: cover;
}
@media (max-width: 576px) {
  .mv01 {
    height: 200px;
  }
}

.mv02 {
  flex: 1;
  height: 400px;
  background: url(/images/first/first-mv02.webp) no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 1024px) {
  .mv02 {
    display: none;
  }
}

.mv__title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 400px;
  height: 400px;
  background: #D61518;
}
@media screen and (max-width: 1024px) {
  .mv__title {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: auto;
    padding: 12px;
    background: linear-gradient(to right, rgba(214, 21, 24, 0.9), rgba(255, 91, 20, 0.7));
  }
}
@media screen and (max-width: 1024px) and (max-width: 576px) {
  .mv__title {
    padding: 10px;
  }
}
.mv__title h1 {
  color: #fff;
  font-size: 3rem;
  line-height: 1.4;
  font-weight: bold;
  letter-spacing: 0.07em;
}
@media (max-width: 576px) {
  .mv__title h1 {
    font-size: 2rem;
  }
}

/* introduction
-------------------------------------------- */
.introduction {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .introduction {
    margin-bottom: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .introduction__lead {
    padding: 0 5%;
  }
}
.introduction__lead p {
  margin-bottom: 16px;
}
.introduction__lead p:last-child {
  margin-bottom: 0;
}

.introduction__lead-title {
  font-size: 1.8rem;
  color: #D61518;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .introduction__lead-title {
    font-size: 1.6rem;
  }
}

/* table_of_contents
-------------------------------------------- */
.table_of_contents_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #FCF8F7;
  padding: 48px 56px;
  max-width: 1160px;
  margin: 0 auto 80px;
}

@media screen and (max-width: 768px) {
  .table_of_contents_container {
    display: block;
    background: #FCF8F7;
    padding: 24px 5%;
    margin: 0 5% 40px;
  }
  .table_of_contents_container img {
    margin-top: 11px;
  }
}
.table_of_contents {
  margin-right: 3.8rem;
}

@media screen and (max-width: 768px) {
  .table_of_contents {
    margin-right: 0;
  }
}
.table_of_contents li {
  background: url(/images/first/arrow.svg) no-repeat;
  background-size: 22px 22px;
  margin-bottom: 13px;
  padding-left: 33px;
}

.table_of_contents li:hover {
  opacity: 0.8;
}

.table_of_contents a {
  font-weight: 500;
}

/* about-australia
-------------------------------------------- */
.about-australia__text-wrap {
  margin-bottom: 40px;
}
.about-australia__text-wrap > p {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .about-australia__text-wrap > p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .about-australia__text-wrap {
    margin-bottom: 24px;
  }
}

.about-australia__image .images__inr {
  margin: 40px auto 24px;
}
@media screen and (max-width: 1024px) {
  .about-australia__image .images__inr {
    margin: 16px auto 8px;
  }
}

.about-australia__list {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .about-australia__list {
    margin-bottom: 24px;
  }
}

.about-australia__image .images__inr .about-australia__inr > p {
  margin-bottom: 16px;
}

.about-australia__list-box {
  background: #FCF8F7;
  padding: 40px 56px;
}
.about-australia__list-box:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .about-australia__list-box:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .about-australia__list-box {
    padding: 16px 5%;
  }
}

.about-australia__list-ttl {
  font-size: 1.8rem;
  color: #D61518;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .about-australia__list-ttl {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}

/* merits
-------------------------------------------- */
.merits__container {
  background-color: #FCF8F7;
  padding: 80px 56px 80px;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .merits__container {
    padding: 40px 5%;
    margin: 0 auto;
  }
}

.merits__inr {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 0 40px;
}
@media screen and (max-width: 1024px) {
  .merits__inr {
    padding: 0 0 24px;
  }
}

.merits__box {
  max-width: 360px;
}
@media screen and (max-width: 1024px) {
  .merits__box {
    max-width: 100%;
  }
}
.merits__box a {
  transition: 0.2s;
}
.merits__box a:hover {
  opacity: 0.7;
}

.merits__box-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 360px);
  justify-content: center;
  grid-gap: 56px 40px;
}
@media screen and (max-width: 1024px) {
  .merits__box-row {
    grid-template-columns: repeat(auto-fit, 320px);
  }
}
@media screen and (max-width: 768px) {
  .merits__box-row {
    grid-template-columns: repeat(auto-fit, 100%);
    grid-gap: 32px;
  }
}

.merits__box-title {
  font-size: 2rem;
  line-height: 1.5;
  color: #D61518;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .merits__box-title {
    font-size: 1.8rem;
  }
}
@media (max-width: 576px) {
  .merits__box-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

.merits__box-01 {
  background: url(/images/first/first-merits_01.webp) no-repeat center center;
}

.merits__box-02 {
  background: url(/images/first/first-merits_02.webp) no-repeat center center;
}

.merits__box-03 {
  background: url(/images/first/first-merits_03.webp) no-repeat center center;
}

.merits__box-04 {
  background: url(/images/first/first-merits_04.webp) no-repeat center center;
}

.merits__box-05 {
  background: url(/images/first/first-merits_05.webp) no-repeat center center;
}

.merits__box-06 {
  background: url(/images/first/first-merits_06.webp) no-repeat center center;
}

.merits__gc {
  background: #fff;
}

.merits-gc__box-01 {
  background: url(/images/first/first-merits-gc_01.webp) no-repeat center center;
}

.merits-gc__box-02 {
  background: url(/images/first/first-merits-gc_02.webp) no-repeat center center;
}

.merits-gc__box-03 {
  background: url(/images/first/first-merits-gc_03.webp) no-repeat center center;
}

.merits-gc__box-04 {
  background: url(/images/first/first-merits-gc_04.webp) no-repeat center center;
}

.merits-gc__box-05 {
  background: url(/images/first/first-merits-gc_05.webp) no-repeat center center;
}

.merits-gc__box-06 {
  background: url(/images/first/first-merits-gc_06.webp) no-repeat center center;
}

.merits__box-card {
  max-width: 360px;
  height: 242px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
  margin-bottom: 16px;
  background-size: 360px 242px;
}
@media screen and (max-width: 1024px) {
  .merits__box-card {
    height: 200px;
    background-size: cover;
  }
}
@media screen and (max-width: 768px) {
  .merits__box-card {
    max-width: 100%;
    margin-bottom: 8px;
  }
}
@media (max-width: 576px) {
  .merits__box-card {
    height: 160px;
  }
}

/* cost
-------------------------------------------- */
.cost__container {
  background-color: #FCF8F7;
  padding: 80px 56px 80px;
  margin: 0 auto 80px;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .cost__container {
    padding: 40px 5%;
    margin: 0 auto 40px;
  }
}

.cost__inr {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 0 32px;
}
@media screen and (max-width: 1024px) {
  .cost__inr {
    padding: 0;
  }
}

.cost__text-wrap {
  margin-bottom: 40px;
}
.cost__text-wrap > p {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .cost__text-wrap > p {
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .cost__text-wrap {
    margin-bottom: 24px;
  }
}

.cost__box-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .cost__box-row {
    display: block;
    margin-bottom: 16px;
  }
}

.cost__box-before {
  background: #F17177;
  width: 50%;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .cost__box-before {
    width: 100%;
    padding-bottom: 24px;
  }
}

.cost__box-after {
  background: #5F9EA0;
  width: 43%;
  padding-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .cost__box-after {
    width: 100%;
    padding-bottom: 24px;
  }
}

.cost__ttl-area {
  margin: 0 40px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .cost__ttl-area {
    margin: 0 5%;
  }
}

.cost__ttl-img {
  position: absolute;
  right: 0;
  width: 144px;
  height: 96px;
  bottom: 0;
}
@media (max-width: 576px) {
  .cost__ttl-img {
    width: 112px;
    height: 75px;
  }
}

.cost__ttl-txt {
  color: #fff;
  padding: 24px 0 16px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .cost__ttl-txt {
    padding: 16px 0 14px;
  }
}
.cost__ttl-txt span {
  font-size: 2rem;
}
@media screen and (max-width: 1024px) {
  .cost__ttl-txt span {
    font-size: 1.6rem;
  }
}

.cost__item-plus {
  font-size: 4rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .cost__item-plus {
    text-align: center;
    font-size: 3.2rem;
  }
}

.cost__item-wrap {
  background: #fff;
  margin: 0 40px 0;
  border-radius: 8px;
  padding: 32px 6%;
}
@media screen and (max-width: 1024px) {
  .cost__item-wrap {
    margin: 0 5% 0;
    padding: 24px 5%;
  }
}
@media (max-width: 576px) {
  .cost__item-wrap {
    padding: 16px 5%;
  }
}

.cost__item-raw {
  display: flex;
}
@media (max-width: 576px) {
  .cost__item-raw {
    display: block;
  }
}

.cost__item:not(:last-child) {
  margin-right: 7%;
}
@media screen and (max-width: 1024px) {
  .cost__item:not(:last-child) {
    margin-right: 16%;
  }
}
@media (max-width: 576px) {
  .cost__item:not(:last-child) {
    margin-bottom: 8px;
  }
}

.cost__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
  font-weight: bold;
}
.cost__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .cost__list-item {
    margin-bottom: 8px;
  }
}
.cost__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .cost__list-item::before {
    width: 8px;
    height: 8px;
  }
}

/* support
-------------------------------------------- */
.support__container {
  background-color: #FCF8F7;
  padding: 80px 56px 80px;
  margin: 0 auto 80px;
  box-sizing: content-box;
}
@media screen and (max-width: 1024px) {
  .support__container {
    padding: 0 5%;
    margin: 0 auto 56px;
  }
}

.support__inr {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 0 56px;
}
@media screen and (max-width: 1024px) {
  .support__inr {
    padding: 0 0 24px;
  }
}

.support__box {
  max-width: 360px;
  background-color: #FCF8F7;
  padding: 32px 24px;
}
@media screen and (max-width: 1024px) {
  .support__box {
    max-width: 100%;
    padding: 24px 10% 16px;
  }
  .support__box:not(:last-child) {
    margin-bottom: 16px;
  }
}
@media (max-width: 576px) {
  .support__box {
    padding: 24px 5% 16px;
  }
}

.support__box-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 360px);
  justify-content: center;
  grid-gap: 56px 40px;
}
@media screen and (max-width: 1024px) {
  .support__box-row {
    grid-template-columns: repeat(auto-fit, 48%);
    grid-gap: 32px 24px;
  }
}
@media screen and (max-width: 768px) {
  .support__box-row {
    grid-template-columns: repeat(auto-fit, 100%);
  }
}
@media (max-width: 576px) {
  .support__box-row {
    display: block;
  }
}

.support__box-title {
  font-size: 2rem;
  line-height: 1.5;
  color: #D61518;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .support__box-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

.support__box-img {
  width: 200px;
  height: 120px;
  margin: 0 auto 24px;
}
@media (max-width: 576px) {
  .support__box-img {
    width: 160px;
    height: auto;
    margin: 0 auto 8px;
  }
}

.support__list-link {
  text-align: right;
  text-decoration: underline;
}
.support__list-link a {
  transition: 0.2s;
}
.support__list-link a:hover {
  color: #D61518;
}

.support__item {
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .support__item {
    margin-bottom: 8px;
  }
}

.support__list-item {
  position: relative;
  padding-left: 18px;
  margin-bottom: 8px;
}
.support__list-item:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 1024px) {
  .support__list-item {
    margin-bottom: 4px;
  }
}
.support__list-item::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #D61518;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .support__list-item::before {
    width: 8px;
    height: 8px;
  }
}

/* why-no-fee
-------------------------------------------- */
.why-no-fee__text-wrap {
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .why-no-fee__text-wrap {
    margin-bottom: 24px;
  }
}
.why-no-fee__text-wrap p:not(:last-child) {
  margin-bottom: 16px;
}

/* reasons
-------------------------------------------- */
.reasons__text-wrap {
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .reasons__text-wrap {
    margin-bottom: 24px;
  }
}
.reasons__text-wrap p:not(:last-child) {
  margin-bottom: 16px;
}

.reasons__box {
  max-width: 360px;
}
@media screen and (max-width: 1024px) {
  .reasons__box {
    max-width: 100%;
  }
}

.reasons__box-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, 360px);
  justify-content: center;
  grid-gap: 56px 40px;
  margin-bottom: 56px;
}
@media screen and (max-width: 1024px) {
  .reasons__box-row {
    grid-template-columns: repeat(auto-fit, 46%);
  }
}
@media (max-width: 576px) {
  .reasons__box-row {
    grid-template-columns: repeat(auto-fit, 100%);
    grid-gap: 24px;
    padding: 0;
    margin-bottom: 24px;
  }
}

.reasons__box-title {
  font-size: 2rem;
  line-height: 1.5;
  color: #D61518;
  font-weight: bold;
  margin-bottom: 8px;
}
@media screen and (max-width: 1024px) {
  .reasons__box-title {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

.reasons__box-img {
  width: 80%;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1024px) {
  .reasons__box-img {
    width: 70%;
    margin: 0 auto 8px;
  }
}

/* 目次に戻るボタン */
.return_to_top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  text-decoration: none;
  background-color: #D61518;
  display: block;
  text-align: center;
  border-radius: 24px;
}

.return_to_top::before {
  content: "↑";
  font-size: 30px;
  font-weight: 900;
  color: #fff;
  line-height: 48px;
}

@media screen and (max-width: 576px) {
  .return_to_top {
    bottom: 108px;
    right: 11px;
  }
}
