@charset "UTF-8";
:root {
  --font-gothic: "Noto Sans JP", sans-serif;
  --font-inter: "Inter", sans-serif;
  --font-mplus: "M PLUS 1p", sans-serif;
  --font-weight-basic: 400;
  --line-height-basic: 1.6;
}

:root {
  --color-basic: #333;
  --color-basic-rgb: 51, 51, 51;
  /* #333のRGB値 */
  --color-white: #fff;
  --color-main: #0242B0;
  --color-text-blue: #0242B0;
  --color-blue1: #AFF0FF;
  --color-blue2: #5CB8FF;
  --color-blue3: #35CBED;
  --color-bg_blue: #0050E5;
  --color-bg_blue1: #D0F1FF;
  --color-bg_blue2: #CBF5F7;
  --color-bg_blue3: #ECF9FF;
  --color-grade01: linear-gradient(180deg, #d9f6ff 0%, #99e7ff 95.9%);
  --color-orange: #FF8400;
  --color-yellow: #FFE941;
  --color-pink: #EC0046;
  --color-pink2: #FF5F8E;
}

:root {
  --fs-52: 2rem;
  --fs-38: 1.5714rem;
  --fs-37: 1.5714rem;
  --fs-32: 1.4286rem;
  --fs-30: 1.3571rem;
  --fs-28: 1.2857rem;
  --fs-25: 1.2857rem;
  --fs-24: 1.2857rem;
  --fs-22: 1.1429rem;
  --fs-20: 1.1429rem;
  --fs-18: 1rem;
  --fs-17: 1rem;
  --fs-15: 0.9286rem;
  --fs-14: 0.8571rem;
  --fs-footer-nav-heading: 1rem;
}

@media screen and (min-width: 576px) {
  :root {
    --fs-52: 2.4286rem;
    --fs-38: 1.8571rem;
    --fs-37: 1.8571rem;
    --fs-32: 1.7143rem;
    --fs-30: 1.5714rem;
    --fs-28: 1.5rem;
    --fs-25: 1.5rem;
    --fs-24: 1.4286rem;
    --fs-22: 1.2857rem;
    --fs-20: 1.1429rem;
    --fs-18: 1.0714rem;
    --fs-17: 1rem;
    --fs-15: 0.9286rem;
    --fs-14: 0.8571rem;
    --fs-footer-nav-heading: 1rem;
  }
}
@media screen and (min-width: 992px) {
  :root {
    --fs-52: 3rem;
    --fs-38: 2.4286rem;
    --fs-37: 2.2857rem;
    --fs-32: 2rem;
    --fs-30: 1.8571rem;
    --fs-28: 1.7143rem;
    --fs-25: 1.6429rem;
    --fs-24: 1.5714rem;
    --fs-22: 1.4286rem;
    --fs-20: 1.2857rem;
    --fs-18: 1.1429rem;
    --fs-17: 1.0714rem;
    --fs-15: 1rem;
    --fs-14: 0.9286rem;
    --fs-footer-nav-heading: 1.0714rem;
  }
}
@media screen and (min-width: 1200px) {
  :root {
    --fs-52: 3.25rem;
    --fs-38: 2.375rem;
    --fs-37: 2.3125rem;
    --fs-32: 2rem;
    --fs-30: 1.875rem;
    --fs-28: 1.75rem;
    --fs-25: 1.5625rem;
    --fs-24: 1.5rem;
    --fs-22: 1.375rem;
    --fs-20: 1.25rem;
    --fs-18: 1.125rem;
    --fs-17: 1.0625rem;
    --fs-15: 0.9375rem;
    --fs-14: 0.875rem;
    --fs-footer-nav-heading: 1.0625rem;
  }
}
@media screen and (min-width: 1400px) {
  :root {
    --fs-footer-nav-heading: 1.125rem;
  }
}
/* border-radius */
:root {
  --br-10: 5px;
  --br-16: 8px;
  --br-20: 10px;
  --br-30: 15px;
  --br-40: 20px;
}

@media screen and (min-width: 992px) {
  :root {
    --br-10: 10px;
    --br-16: 16px;
    --br-20: 20px;
    --br-30: 30px;
    --br-40: 40px;
  }
}
/* //border-radius */
.sailor-link {
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (hover: hover) {
  .sailor-link:hover {
    text-decoration: underline;
  }
}
.sailor-hero {
  position: relative;
}

.sailor-hero__image-wrap {
  overflow: hidden;
}

.sailor-hero__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 466/269;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: var(--br-40);
}
@media screen and (min-width: 576px) {
  .sailor-hero__image {
    aspect-ratio: 1296/500;
  }
}

.sailor-hero__copy {
  position: relative;
  z-index: 1;
  margin: -2rem 1rem 0;
  padding: 1.5rem 1.75rem;
  background: var(--color-white);
}
@media screen and (min-width: 768px) {
  .sailor-hero__copy {
    margin: -3rem 2rem 0;
    padding: 2rem;
    max-width: 38.75rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__copy {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -2.5rem;
    margin: 0;
    padding: 2.5rem;
    max-width: 42.5625rem;
    width: min(52.5vw, 42rem);
  }
}

.sailor-hero__catch {
  margin-bottom: 1.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: var(--color-basic);
}
@media screen and (min-width: 768px) {
  .sailor-hero__catch {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__catch {
    font-size: 1.75rem;
  }
}

.sailor-hero__catch--pink {
  color: var(--color-pink);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .sailor-hero__catch--pink {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__catch--pink {
    font-size: 2.375rem;
  }
}

.sailor-hero__catch--blue {
  color: var(--color-text-blue);
  font-size: 1.75rem;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .sailor-hero__catch--blue {
    font-size: 2rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__catch--blue {
    font-size: 2.375rem;
  }
}

.sailor-hero__lead {
  font-size: var(--fs-18);
  line-height: 1.8;
}

.sailor-hero__icon-wrap {
  position: absolute;
  top: -2.25rem;
  right: 1rem;
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .sailor-hero__icon-wrap {
    top: -2.5rem;
    right: -1.5rem;
    width: auto;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__icon-wrap {
    top: -1.5rem;
    right: -3.25rem;
  }
}

.sailor-hero__icon {
  width: 4.5rem;
}
@media screen and (min-width: 768px) {
  .sailor-hero__icon {
    width: 5.5rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-hero__icon {
    width: 8.125rem;
  }
}

.sailor-sec01 {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 992px) {
  .sailor-sec01 {
    padding-bottom: 9rem !important;
  }
}

.sailor-sec02 {
  position: relative;
  z-index: 20;
}

.sailor-sec02__inner {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-top: 4.5714285714rem;
  padding-bottom: 5.7142857143rem;
}
@media screen and (min-width: 768px) {
  .sailor-sec02__inner {
    padding-bottom: 9.1428571429rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-sec02__inner {
    padding-top: 6.25rem;
    padding-bottom: 12.5rem;
  }
}

.sailor-sec02__inner::before,
.sailor-sec02__inner::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.sailor-sec02__inner::before {
  bottom: -4.1428571429rem;
  left: -11.4285714286rem;
  z-index: 0;
  width: 21.4285714286rem;
  height: 21.5714285714rem;
  background-color: #fff;
  -webkit-mask-image: url("../images/sailor/circle-turn-left.svg");
          mask-image: url("../images/sailor/circle-turn-left.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
}
@media screen and (min-width: 576px) {
  .sailor-sec02__inner::before {
    bottom: -5.2857142857rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-sec02__inner::before {
    bottom: -10.3125rem;
    left: -7.5rem;
    width: 33.75rem;
    height: 33.875rem;
  }
}

.sailor-sec02__inner::after {
  top: 5.625rem;
  right: -2rem;
  width: 7rem;
  height: 2.5rem;
  background-image: url("../images/common/wave-three-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (min-width: 992px) {
  .sailor-sec02__inner::after {
    top: 13.75rem;
    right: -0.5rem;
    width: 12rem;
    height: 4.375rem;
  }
}

.sailor-sec02__container {
  position: relative;
  z-index: 20;
}

.sailor-role {
  display: flex;
  flex-direction: column;
  row-gap: 1.4285714286rem;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sailor-role {
    flex-direction: row;
  }
}

.sailor-role-card {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.7142857143rem;
       column-gap: 1.7142857143rem;
  width: 100%;
  text-align: center;
  padding: 1.7142857143rem 1.2857142857rem;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: var(--br-30);
  background-image: url(../images/common/bg-net-blue.svg);
}
@media screen and (min-width: 768px) {
  .sailor-role-card {
    -moz-column-gap: 2.8571428571rem;
         column-gap: 2.8571428571rem;
    padding: 1.7142857143rem 1.7142857143rem 1.8571428571rem 1.7142857143rem;
  }
}
@media screen and (min-width: 1200px), print {
  .sailor-role-card {
    -moz-column-gap: 3.75rem;
         column-gap: 3.75rem;
    padding: 2rem 2.5rem 2.625rem 3.4375rem;
  }
}

.sailor-role-card__ttl-wrap {
  display: flex;
  flex-direction: column;
  row-gap: 0.375rem;
  flex-shrink: 0;
}

.sailor-role-card__image {
  width: 4.8125rem;
  height: 4.8125rem;
}

.sailor-role-card__image--compass {
  transform: rotate(22deg);
}

.sailor-role-card__ttl {
  font-size: var(--fs-22);
  font-weight: 700;
  color: var(--color-text-blue);
}

.sailor-role-card__text {
  font-size: var(--fs-16);
  line-height: 1.6;
  text-align: left;
}

.sailor-sec03 {
  position: relative;
  z-index: 30;
  padding-top: 4.5714285714rem;
  padding-bottom: 7.1428571429rem;
}
@media screen and (min-width: 768px) {
  .sailor-sec03 {
    padding-bottom: 10.5714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-sec03 {
    padding-top: 7.5rem;
    padding-bottom: 12rem;
  }
}

.sailor-box {
  margin-top: 1.875rem;
}

.sailor-support__ttl {
  position: relative;
  color: var(--color-main);
  font-size: var(--fs-28);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

.sailor-support__ttl::before {
  position: absolute;
  top: 1.7857142857rem;
  left: 15.5714285714rem;
  transform: translateY(-50%) rotate(-12deg);
  width: 4.875rem;
  height: 4.875rem;
  background: url(../images/common/tilted-icon--anchor.png) no-repeat center/contain;
  content: "";
}
@media screen and (min-width: 400px) {
  .sailor-support__ttl::before {
    top: 54%;
    width: 5.4375rem;
    height: 5.4375rem;
  }
}
@media screen and (min-width: 576px) {
  .sailor-support__ttl::before {
    left: 18.5714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-support__ttl::before {
    left: auto;
    right: -2rem;
  }
}
@media screen and (min-width: 1400px) {
  .sailor-support__ttl::before {
    right: 0.375rem;
  }
}

.sailor-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  row-gap: 2.5rem;
  -moz-column-gap: 3.75rem;
       column-gap: 3.75rem;
}
@media screen and (min-width: 992px) {
  .sailor-box {
    flex-direction: row;
  }
}

.sailor-support__text {
  font-size: var(--fs-16);
  line-height: 1.6;
}

@media screen and (min-width: 992px) {
  .sailor-support {
    margin-top: 1rem;
    width: 28.3125rem;
  }
}

.sailor-cargo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 56.0714285714rem);
  height: auto;
  aspect-ratio: 785/370;
  background: url(../images/sailor/bg-sailor-cargo.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: contain;
}
@media screen and (min-width: 992px) {
  .sailor-cargo {
    display: block;
    padding-top: 3.875rem;
    padding-bottom: 2.625rem;
    width: 49.0625rem;
  }
}

.sailor-cargo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.6875rem;
  width: min(100%, 27.8571428571rem);
  margin: 0;
  list-style: none;
  margin-inline: auto;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .sailor-cargo-list {
    width: 27.875rem;
    transform: translate(-5px, 0px);
  }
}

.sailor-cargo-list__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 6.8571428571rem;
  height: 6.8571428571rem;
  background: var(--color-white);
  border: 2px solid var(--color-text-blue);
  border-radius: 50%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .sailor-cargo-list__item {
    width: 7.5rem;
    height: 7.5rem;
  }
}

.sailor-cargo-list__item::after {
  display: block;
  position: absolute;
  z-index: -1;
  bottom: -4px;
  right: -4px;
  width: 100%;
  height: 100%;
  border-radius: 7.5rem;
  background: var(--color-yellow);
  border: 2px solid var(--color-text-blue);
  content: "";
}

.sailor-cargo-list-wrap {
  margin-inline: auto;
}

.sailor-cargo-list__icon {
  width: 54px;
  height: 54px;
}
@media screen and (min-width: 768px) {
  .sailor-cargo-list__icon {
    width: 68px;
    height: 68px;
  }
}

.sailor-cargo-list__label {
  display: block;
  transform: translateY(-8px);
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-blue);
}
@media screen and (min-width: 768px) {
  .sailor-cargo-list__label {
    font-size: 1rem;
  }
}

.sailor-sec04 {
  position: relative;
  z-index: 40;
  padding-top: 4.2857142857rem;
  padding-bottom: 5.1428571429rem;
}
@media screen and (min-width: 768px) {
  .sailor-sec04 {
    padding-top: 5.7142857143rem;
    padding-bottom: 6.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .sailor-sec04 {
    padding-top: 6.5rem;
    padding-bottom: 7.1875rem;
  }
}

.sailor-sec04__inner {
  width: min(100%, 1100px);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .sailor-sec04__inner {
    padding-right: 0.75rem;
    padding-left: 0.75rem;
  }
}

.sailor-route-list {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 1.4285714286rem;
       column-gap: 1.4285714286rem;
  row-gap: 1.4285714286rem;
}
@media screen and (min-width: 992px) {
  .sailor-route-list {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.sailor-route-list__item {
  height: 100%;
  overflow: hidden;
  padding: 1.2857142857rem;
  background: var(--color-white);
  border: 2px solid var(--color-text-blue);
  border-radius: var(--br-16);
}
@media screen and (min-width: 992px) {
  .sailor-route-list__item {
    padding: 1.25rem;
  }
}

.sailor-route-card__image-wrap {
  overflow: hidden;
  margin-bottom: 1rem;
}

.sailor-route-card__image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 266/148;
  -o-object-fit: cover;
     object-fit: cover;
}

.sailor-route-card__ttl {
  margin-bottom: 0.5rem;
  font-size: var(--fs-20);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-blue);
}

.sailor-route-card__text {
  margin-bottom: 1.25rem;
  font-size: 1rem;
  line-height: 1.4;
}

.sailor-route-card__btn {
  left: 50%;
  transform: translateX(-50%);
  padding-left: 1.625rem;
  font-size: 1rem;
  line-height: 1.4;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 992px) {
  .sailor-route-card__btn {
    min-width: 0;
    width: 100%;
  }
}

.sailor-route-list__item:not(:last-of-type) .sailor-route-card__btn {
  justify-content: flex-start;
}

.sailor-route-list__item:last-of-type .sailor-route-card__btn {
  justify-content: center;
}
/*# sourceMappingURL=style-sailor.css.map */