@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 */
@media screen and (min-width: 351px) {
  .d-xxs-none {
    display: none;
  }
}
.btn-pop {
  display: inline-block;
  min-width: 11.1428571429rem;
  padding: 0.9285714286rem 2.2857142857rem 0.9285714286rem 1.1428571429rem;
  background: var(--color-pink2);
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.4;
  text-align: center;
  border-radius: 100vmax;
  box-shadow: 0.2857142857rem 0.4285714286rem 0 var(--color-yellow);
  position: relative;
  transition: 0.3s;
  border: 2px solid var(--color-pink2);
  width: 100%;
}
@media screen and (min-width: 992px) {
  .btn-pop {
    min-width: 11.125rem;
    padding: 0.6875rem 2.8125rem 0.6875rem 1.25rem;
    box-shadow: 0.3125rem 0.3125rem 0 var(--color-yellow);
  }
}

.btn-pop::before,
.btn-pop::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%) rotate(90deg);
  width: 1.625rem;
  height: auto;
  aspect-ratio: 1/1;
  transition: 0.3s;
}

.btn-pop::before {
  background: url(../images/common/icon-arrow-bg-white.svg) no-repeat center/contain;
  opacity: 1;
}

.btn-pop::after {
  background: url(../images/common/icon-arrow-bg-blue.svg) no-repeat center/contain;
  opacity: 0;
}

.virtual-anchor {
  overflow-x: auto;
  overflow-y: hidden;
}
@media screen and (min-width: 768px) {
  .virtual-anchor {
    overflow-x: visible;
    overflow-y: visible;
  }
}

.virtual-anchor__inner {
  position: relative;
  width: 696px;
}
@media screen and (min-width: 768px) {
  .virtual-anchor__inner {
    position: static;
    width: auto;
  }
}

.scroll-hint-icon-wrap {
  z-index: 30;
}

.virtual-anchor__btn {
  position: absolute;
}

.btn-circle-nav__link {
  display: inline-block;
  position: relative;
  z-index: 20;
}

.virtual-anchor__btn::after {
  position: absolute;
  z-index: 10;
  display: block;
  height: auto;
  background-image: var(--btn-pop-line);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: "";
}

.virtual-anchor__btn--dining {
  top: 0;
  right: 18.2%;
  width: min(100%, 15.0625rem);
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--dining {
    top: -0.375rem;
    right: 21.2%;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-anchor__btn--dining {
    right: 22.5%;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-anchor__btn--dining {
    top: 0;
    right: 25.5%;
  }
}

.virtual-anchor__btn--dining::after {
  width: 26.557%;
  aspect-ratio: 91/82;
  --btn-pop-line: url("../images/sailor/virtual/line-dining.svg");
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--dining::after {
    width: 37.75933%;
  }
}

.virtual-anchor__btn--simulator {
  bottom: 32%;
  left: 0;
  width: min(100%, 15.9375rem);
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--simulator {
    bottom: 32%;
    left: -3.5%;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-anchor__btn--simulator {
    bottom: 33.8%;
    left: -2%;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-anchor__btn--simulator {
    bottom: 37.8%;
    left: 1%;
  }
}

.virtual-anchor__btn--simulator::after {
  width: 25.1%;
  bottom: 88.7%;
  right: 27%;
  aspect-ratio: 88/112;
  --btn-pop-line: url("../images/sailor/virtual/line-simulator.svg");
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--simulator::after {
    width: 34.108527%;
    bottom: 82.7%;
    right: 5%;
  }
}

.virtual-anchor__btn--boathouse {
  top: 26%;
  right: 5%;
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--boathouse {
    top: 25%;
    right: 7%;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-anchor__btn--boathouse {
    right: 8%;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-anchor__btn--boathouse {
    top: 27%;
    right: 10%;
  }
}

.virtual-anchor__btn--boathouse::after {
  left: 4.494382%;
  width: 21.155%;
  aspect-ratio: 52/82;
  --btn-pop-line: url("../images/sailor/virtual/line-boathouse.svg");
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--boathouse::after {
    left: 4.494382%;
    width: 29.213483146%;
  }
}

.virtual-anchor__btn--factory {
  bottom: 5%;
  left: 10.5%;
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--factory {
    bottom: 5%;
    left: 10.5%;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-anchor__btn--factory {
    bottom: 6%;
    left: 12%;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-anchor__btn--factory {
    bottom: 9%;
    left: 15%;
  }
}

.virtual-anchor__btn--factory::after {
  width: 51.288%;
  bottom: 88%;
  right: -18%;
  aspect-ratio: 130/99;
  --btn-pop-line: url("../images/sailor/virtual/line-factory.svg");
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--factory::after {
    width: 73.0337%;
    bottom: 83%;
    right: -34%;
  }
}

.virtual-anchor__btn--training {
  bottom: 5%;
  right: 10.3%;
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--training {
    bottom: 4%;
    right: 10.3%;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-anchor__btn--training {
    bottom: 5.5%;
    right: 11%;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-anchor__btn--training {
    bottom: 9%;
    right: 14%;
  }
}

.virtual-anchor__btn--training::after {
  width: 32.055%;
  bottom: 90%;
  left: -3%;
  aspect-ratio: 79/112;
  --btn-pop-line: url("../images/sailor/virtual/line-training.svg");
}
@media screen and (min-width: 992px) {
  .virtual-anchor__btn--training::after {
    width: 44.382022%;
    bottom: 95%;
    left: -16%;
  }
}

@media (any-hover: hover) {
  .btn-circle-nav__link:hover {
    opacity: 1;
  }
  .btn-pop:hover {
    background-color: #FFF;
    color: var(--color-main);
    border: 2px solid var(--color-main);
    opacity: 1;
  }
  .btn-pop:hover::before {
    opacity: 0;
  }
  .btn-pop:hover::after {
    opacity: 1;
  }
}
.virtual-hero {
  position: relative;
}

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

.virtual-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) {
  .virtual-hero__image {
    aspect-ratio: 1296/500;
  }
}

.virtual-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) {
  .virtual-hero__copy {
    margin: -3rem 2rem 0;
    padding: 2rem;
    max-width: 38.75rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-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);
  }
}

.virtual-hero__catch {
  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) {
  .virtual-hero__catch {
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-hero__catch {
    margin-bottom: 1.125rem;
    font-size: 1.75rem;
  }
}

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

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

.virtual-hero__lead {
  margin-top: 2rem;
  font-size: var(--fs-18);
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .virtual-hero__lead {
    margin-top: 0;
  }
}

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

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

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

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

.virtual-sec02__wave::before,
.virtual-sec02__wave::after {
  position: absolute;
  content: "";
}

.virtual-sec02__wave::before {
  top: 12%;
  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) {
  .virtual-sec02__wave::before {
    top: 12%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__wave::before {
    top: 22%;
    left: -7.5rem;
    width: 33.75rem;
    height: 33.875rem;
  }
}

.virtual-sec02__wave::after {
  top: 17%;
  transform: rotate(180deg);
  left: -3rem;
  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: 576px) {
  .virtual-sec02__wave::after {
    top: 17%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__wave::after {
    top: 34.1%;
    left: -1rem;
    width: 12rem;
    height: 4.375rem;
  }
}

.virtual-sec02__inner {
  position: relative;
  z-index: 20;
  overflow: hidden;
  isolation: isolate;
  padding-top: 4.5714285714rem;
  padding-bottom: 7.1428571429rem;
}
@media screen and (min-width: 768px) {
  .virtual-sec02__inner {
    padding-bottom: 8.5714285714rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__inner {
    padding-top: 7.5rem;
    padding-bottom: 12.875rem;
  }
}

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

.virtual-sec02__inner::before {
  top: 55.5%;
  right: -6.8%;
  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) {
  .virtual-sec02__inner::before {
    top: 55.5%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__inner::before {
    top: 55.5%;
    width: 33.75rem;
    height: 33.875rem;
  }
}

.virtual-sec02__inner::after {
  top: 59.6%;
  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: 576px) {
  .virtual-sec02__inner::after {
    top: 59.6%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__inner::after {
    top: 59.6%;
    right: -1%;
    width: 12rem;
    height: 4.375rem;
  }
}

@media screen and (min-width: 992px) {
  .virtual-sec02__ttl::after {
    width: 20.9375rem;
    height: 1.5rem;
    bottom: -0.3125rem;
  }
}

.virtual-sec02__holder {
  position: relative;
  z-index: 20;
}

.virtual-sec02__holder::before,
.virtual-sec02__holder::after {
  position: absolute;
  width: 7rem;
  height: 2.5rem;
  background-image: url("../images/common/wave-three-line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}
@media screen and (min-width: 992px) {
  .virtual-sec02__holder::before,
.virtual-sec02__holder::after {
    width: 12rem;
    height: 4.375rem;
  }
}

.virtual-sec02__holder::before {
  display: none;
  right: -6.4285714286rem;
}
@media screen and (min-width: 400px) {
  .virtual-sec02__holder::before {
    top: -1.8571428571rem;
  }
}
@media screen and (min-width: 576px) {
  .virtual-sec02__holder::before {
    display: block;
    right: -3.4285714286rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__holder::before {
    top: 4%;
    right: -2%;
  }
}

.virtual-sec02__holder::after {
  bottom: 6.7%;
  left: -8.3%;
  transform: rotate(180deg);
  z-index: -1;
}
@media screen and (min-width: 576px) {
  .virtual-sec02__holder::after {
    bottom: 6.2%;
    left: -3.3%;
  }
}
@media screen and (min-width: 768px) {
  .virtual-sec02__holder::after {
    bottom: 4.6%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec02__holder::after {
    bottom: 8.2%;
  }
}

.virtual-sec02__container {
  position: relative;
  z-index: 30;
}

@media screen and (min-width: 768px) {
  .scroll-hint-icon-wrap,
.scroll-hint-text {
    display: none !important;
  }
}

.virtual-anchor {
  position: relative;
}

.virtual-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) {
  .virtual-role {
    flex-direction: row;
  }
}

.virtual-tour {
  counter-reset: num;
}

.virtual-tour__list {
  display: flex;
  flex-direction: column;
  -moz-column-gap: 1.1428571429rem;
       column-gap: 1.1428571429rem;
  row-gap: 1.7142857143rem;
  position: relative;
  width: 100%;
  padding: 1.4285714286rem 1.2857142857rem;
  background: var(--color-white);
  border: 2px solid var(--color-main);
  border-radius: var(--br-16);
  counter-increment: num;
}
@media screen and (min-width: 576px) {
  .virtual-tour__list {
    -moz-column-gap: 1.4285714286rem;
         column-gap: 1.4285714286rem;
    padding: 1.7142857143rem 2rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-tour__list {
    flex-direction: row;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-tour__list {
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    padding: 1.5rem 1.75rem 1.75rem 1.5rem;
  }
}

.virtual-tour__list + .virtual-tour__list {
  margin-top: 2rem;
}

.virtual-tour__body {
  display: flex;
  flex-direction: column;
}

.virtual-tour__image {
  width: 100%;
}

.virtual-tour__figure {
  flex-shrink: 0;
  height: auto;
  aspect-ratio: 368/228;
}
@media screen and (min-width: 992px) {
  .virtual-tour__figure {
    width: 23rem;
  }
}

.virtual-tour__ttl {
  display: flex;
  align-items: center;
  position: relative;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

.virtual-tour__ttl::before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  aspect-ratio: 1/1;
  background-color: var(--color-white);
  border: 1px solid var(--color-main);
  border-radius: 3.125rem;
  content: "";
}

.virtual-tour__ttl::after {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  font-size: 1rem;
  content: counter(num);
}
@media screen and (min-width: 992px) {
  .virtual-tour__ttl::after {
    left: 9px;
    top: 46%;
  }
}

.virtual-tour__text {
  font-size: var(--fs-16);
  line-height: 1.4;
  text-align: left;
}

.virtual-tour__link {
  display: inline-flex;
  align-items: center;
  -moz-column-gap: 0.375rem;
       column-gap: 0.375rem;
  margin-top: 1.4285714286rem;
  margin-left: auto;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-basic);
}
@media screen and (min-width: 1200px), print {
  .virtual-tour__link {
    margin-top: auto;
  }
}

.virtual-tour__link::after {
  display: block;
  width: 1.75rem;
  height: 1.75rem;
  background-image: url("../images/common/icon-arrow-bg-orange.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  content: "";
}

.virtual-tour__note {
  margin-top: 1rem;
  color: #6F6F6F;
  font-size: 0.875rem;
  line-height: 1.6;
}

.virtual-note {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 1.4285714286rem 1.7142857143rem;
}
@media screen and (min-width: 768px) {
  .virtual-note {
    flex-direction: row;
    align-items: center;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-note {
    padding: 1.5rem 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-note {
    padding: 1.5rem 3.75rem;
  }
}

.virtual-note::before,
.virtual-note::after {
  display: block;
  position: absolute;
  left: 50%;
  width: 100%;
  height: 8px;
  background-image: url(../images/sailor/virtual/line-wave-flame.svg);
  background-repeat: repeat-x;
  background-position: center center;
  content: "";
}

.virtual-note::before {
  top: -7px;
  transform: translateX(-50%);
}

.virtual-note::after {
  bottom: -7px;
  transform: translateX(-50%) scale(-1, 1) rotate(180deg);
}

@media screen and (min-width: 992px) {
  .virtual-note--second {
    -moz-column-gap: 2.25rem;
         column-gap: 2.25rem;
  }
}

.virtual-note__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  row-gap: 0.5714285714rem;
}
@media screen and (min-width: 576px) {
  .virtual-note__list {
    -moz-column-gap: 4%;
         column-gap: 4%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-note__list {
    row-gap: 1rem;
  }
}

.virtual-note__head {
  display: flex;
  align-items: center;
  flex-direction: column;
  flex-shrink: 0;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 0.4285714286rem;
  padding-bottom: 1.7142857143rem;
  border-bottom: 1px solid #DADADA;
}
@media screen and (min-width: 576px) {
  .virtual-note__head {
    width: 11.4285714286rem;
    padding-right: 1.7142857143rem;
    padding-bottom: 0;
    border-bottom: none;
    border-right: 1px solid #DADADA;
  }
}
@media screen and (min-width: 992px) {
  .virtual-note__head {
    flex-direction: row;
    width: auto;
    padding-right: 3.75rem;
  }
}

.virtual-note__figure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5.125rem;
  height: 5.125rem;
  border-radius: 2rem;
  background-color: var(--color-white);
}
@media screen and (min-width: 768px) {
  .virtual-note__figure {
    border-radius: 5.125rem;
  }
}

.virtual-note__ttl {
  padding-bottom: 1.2857142857rem;
  flex-shrink: 0;
  font-size: 1.2857142857rem;
  font-weight: 700;
  color: var(--color-text-blue);
  text-align: center;
}
@media screen and (min-width: 768px) {
  .virtual-note__ttl {
    padding-right: 2.2857142857rem;
    padding-bottom: 0;
  }
}
@media screen and (min-width: 992px) {
  .virtual-note__ttl {
    font-size: 1.375rem;
    text-align: start;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-note__ttl {
    padding-right: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-note__ttl {
    padding-right: 5rem;
  }
}

.virtual-note__body {
  padding-top: 1.2857142857rem;
  border-top: 1px solid var(--color-main);
}
@media screen and (min-width: 768px) {
  .virtual-note__body {
    padding-left: 2.2857142857rem;
    border-top: none;
    border-left: 1px solid var(--color-main);
  }
}
@media screen and (min-width: 992px) {
  .virtual-note__body {
    padding-top: 1.125rem;
  }
}
@media screen and (min-width: 1200px), print {
  .virtual-note__body {
    padding-left: 3rem;
  }
}
@media screen and (min-width: 1400px) {
  .virtual-note__body {
    padding-left: 5rem;
  }
}

.virtual-note__item {
  position: relative;
  width: 100%;
  padding-left: 1.7142857143rem;
  font-size: 1.1428571429rem;
  font-weight: 700;
}
@media screen and (min-width: 576px) {
  .virtual-note__item {
    width: 48%;
  }
}
@media screen and (min-width: 992px) {
  .virtual-note__item {
    padding-left: 2.25rem;
    font-size: 1.25rem;
  }
}

.virtual-note__item::before {
  display: block;
  position: absolute;
  top: 0.389em;
  left: 0;
  width: 0.8em;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  background-color: var(--color-main);
  content: "";
}

.virtual-note__text {
  margin-top: 0.8571428571rem;
  text-align: right;
  font-weight: 500;
}
@media screen and (min-width: 992px) {
  .virtual-note__text {
    margin-top: 0.4375rem;
    margin-right: 2.625rem;
  }
}

.virtual-sec03 {
  position: relative;
  z-index: 30;
  padding-top: 4rem;
  padding-bottom: 4.5714285714rem;
}
@media screen and (min-width: 768px) {
  .virtual-sec03 {
    padding-top: 4.2857142857rem;
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 992px) {
  .virtual-sec03 {
    padding-top: 6.25rem;
    padding-bottom: 7.5rem;
  }
}

.virtual-sec03__inner {
  position: relative;
  z-index: 20;
}

.virtual-other {
  display: grid;
  grid-template-columns: 1fr;
  -moz-column-gap: 1.4285714286rem;
       column-gap: 1.4285714286rem;
  row-gap: 1.4285714286rem;
}
@media screen and (min-width: 768px) {
  .virtual-other {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 992px) {
  .virtual-other {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}

.virtual-other-card__link {
  display: flex;
  flex-direction: column;
  position: relative;
  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) {
  .virtual-other-card__link {
    padding: 1.25rem;
  }
}

.icon-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 28px;
  margin-top: 1.4285714286rem;
  margin-left: auto;
  background-color: var(--color-orange);
}
@media screen and (min-width: 768px) {
  .icon-arrow {
    margin-top: auto;
  }
}

.virtual-other-card__figure {
  margin-bottom: 1.125rem;
}

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

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

.virtual-other-card__text {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-basic);
}
/*# sourceMappingURL=style-virtual.css.map */