@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@300&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho:wght@400;600&display=swap');

/* Reset */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  word-wrap: break-word;
}

img, b, u, i, article, aside, canvas, details, figure, figcaption, footer, header, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  box-sizing: border-box;
  overflow-y: scroll;
  text-size-adjust: 100%;
  height: 100%;
  font-size: 10px;
}

* {
  line-height: inherit;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  letter-spacing: 0.02em;
  position: relative;
  overflow: visible !important;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.8;
  min-width: 320px;
  color: #000;
  background: #fff;

  @media (width <= 767px) {
    font-size: 3.2vw;
  }

  &.fr {
    font-family: "Noto Sans", sans-serif;
  }
}

article, main, aside, details, figcaption, figure, footer, header, hgroup, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

table {
  border-spacing: 0;
  border-collapse: collapse;
}

img, svg, iframe, video, picture {
  max-width: 100%;
}

img {
  display: inline-block;
  height: auto;
  vertical-align: middle;
  letter-spacing: 0;
  font-size: 12px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.5;
  font-weight: 600;
  font-feature-settings: "palt";
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
  cursor: pointer;

  &:hover,
  &:active,
  &:focus,
  &:visited {
    outline: none;
  }

  &:hover {
    @media (any-hover: hover) {
      opacity: 0.8;
    }
  }

  img {
    border: 0;
  }
}

a[href^="tel:"] {
  @media (width >= 768px) {
    display: inline-block;
    pointer-events: none;
  }
}

small {
  font-size: 80%;
}

button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
  color: inherit;
}

#wrapper {
  margin-top: 0;
  height: 100%;
  overflow: inherit;
  position: relative;
}

#wrapper #contents {
  min-height: 600px;
  min-height: calc(100vh - 420px);
}

/* footer */
.v-l-footer {
  text-align: center;
  background-color: #222;
  padding-top: 10px;

  &.is-vr-u {
    margin-top: 10rem;
  }
}

.v-l-footer__logo--bottom {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 50px;

  @media (width <= 767px) {
    padding-bottom: 5vw;
  }
}

.v-l-footer__logo {
  padding-top: 50px;

  @media (width >= 768px) {
    padding-top: 80px;
  }
}

.v-l-footer__logo img{
  max-width: 260px;

  @media (width <= 767px) {
    width: 40vw;
  }
}

.v-l-footer__info {
  color: #fff;
  padding: 0 10px 30px;

  @media (width >= 768px) {
    width: 100%;
    max-width: 965px;
    margin-inline: auto;
  }

  @media (width <= 767px) {
    padding-inline: 25px;
    font-size: 90%;
  }
}

/* header */
.v-l-header {
  position: relative;
  background: 50% 50%/cover no-repeat;
}

.v-l-header__row {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

.v-l-header__ttl {
  opacity: 1;
  transition: .4s opacity;
}

/* bnr */
.v-bnr {
  text-align: center;
  margin-top: 50px;

  @media (width <= 767px) {
    margin-top: 8vw;
    margin-bottom: 10vw;
  }

  a {
    transition: opacity .25s;

    &:hover {
      @media (any-hover: hover) {
        opacity: .7;
      }
    }
  }
}

.v-bnr--col {
  @media (width >= 768px) {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }
}

.v-bnr__item {
  @media (width >= 768px) {
    max-width: 30%;
    margin: 0 .5em;
  }

  @media (width <= 767px) {
    margin-bottom: 10vw;
  }

  &:last-child {
    margin-bottom: 0;
  }
}

/* desc */
.v-desc {
  padding: 170px 10px 0;
  position: relative;

  @media (width <= 767px) {
    padding-top: 130px;
  }
}

.v-desc__logo {
  position: absolute;
  background: #fff;
  padding: 5px 8px;

  @media (width >= 768px) {
    left: -90px;
    top: -80px;
  }

  @media (width <= 767px) {
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
    top: -13.3vw;
    text-align: center;
    padding: 1vw 3vw;
  }
}

.v-desc__inner {
  position: relative;
  margin: 0 auto;
  padding: 75px 80px 80px 80px;
  max-width: 800px;
  background: #222;
  color: #fff;

  @media (width <= 767px) {
    padding: 12vw 7.3vw 9.3vw 7.3vw;
  }

  &.is-vr-u {
    @media (width >= 768px) {
      max-width: 965px;
      padding: 90px 60px 60px 60px;
    }
  }

  .p-speech:nth-of-type(2) {
    margin-top: 0;
  }
}

/* form */
.v-form {
  padding: 170px 0 100px 0;
  text-align: center;

  @media (width <= 767px) {
    padding: 16vw 0 13.3vw 0;
  }

  &.is-vr-u {
    padding: 13rem 0 10rem;

    @media (width <= 767px) {
      padding: 6em 0 3em 0;
    }
  }
}

.v-form--a {
  padding-bottom: 0;
}

#questionary iframe {
  @media (width <= 767px) {
    height: 133em;
  }
}

/* ft */
.v-ft {
  position: relative;
}

.v-ft__hdr {
  @media (width >= 768px) {
    position: relative;
    padding-top: 95px;
  }
}

.v-ft__figinner {
  height: 680px;

  @media (width <= 767px) {
    height: 93.3vw
  }

  img {
    width: 100%;
    height: 100%;
    object-fit: cover
  }
}

.v-ft__txt {
  @media (width >= 768px) {
    position: absolute;
    z-index: 10;
    bottom: -35px;
    width: 490px;
  }

  &.is-vr-u-long {
    @media (width >= 768px) {
      width: 546px;
    }
  }
}

.v-ft__txt--spnomt {
  @media (width <= 767px) {
    margin-top: 0;
  }
}

.v-ft__body {
  background: #fff;

  @media (width >= 768px) {
    padding: 35px;
    font-size: 14px;
  }

  @media (width <= 767px) {
    padding: 6vw 5vw;
  }

  &.is-u {
    @media (width >= 768px) {
      margin-top: 70px;
    }
  }
}

.v-ft--l {
  @media (width >= 768px) {
    .v-ft__txt {
      left: 45px;
    }

    .v-ft__fig {
      padding-left: 370px;
    }
  }
}

.v-ft--r {
  @media (width >= 768px) {
    .v-ft__txt {
      right: 45px;
    }

    .v-ft__fig {
      padding-right: 370px;
    }

    .v-ft__ttl-u {
      text-align: right;
    }
  }
}

.v-ft__ttl-u {
  font-family: "Shippori Mincho", serif;
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: .6em;

  @media (width <= 767px) {
    background: #fff;
    margin-bottom: .3em;
    font-size: 4.8vw;
  }
}

.v-ft__hdr-u {
  @media (width >= 768px) {
    position:relative;
  }
}

/* hdr */
.v-hdr-a {
  margin: 150px 0 65px;
  text-align: center;

  @media (width <= 767px) {
    margin: 26.7vw 0 13.3vw;
  }
}

.v-hdr-a__ttl {
  display: inline-block;
  padding-bottom: 20px;
  font-size: 22px;
  border-bottom: 3px solid #222;

  @media (width <= 767px) {
    padding-bottom: 2vw;
    font-size: 4.8vw
  }
}

/* pnav */
.v-pnav {
  overflow: hidden;
}

.v-pnav__btn {
  position: fixed;
  right: 30px;
  top: 30px;
  z-index: 30;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 100px;
  border: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;

  @media (width <= 767px) {
    right: 5.3vw;
    top: 4vw;
    width: 10.7vw;
    height: 10.7vw;
  }

  svg {
    width: 18px;

    @media (width <= 767px) {
      width: 40%;
    }
  }

  #line-1,
  #line-4 {
    transform-origin: center;
    transition-property: opacity;
    transition-duration: .2s;
  }

  #line-2,
  #line-3 {
    transform-origin: center;
    transition-property: transform;
    transition-duration: .2s;
  }

  &.is {
    transform: translateX(0);

    #line-1,
    #line-4 {
      opacity: 0;
    }

    #line-2 {
      transform: rotate(45deg);
    }

    #line-3 {
      transform: rotate(-45deg);
    }
  }
}

.v-pnav__line {
	fill: none;
	stroke: #000;
	stroke-miterlimit: 10;
	stroke-width: 2px;
}

.v-pnav__list {
  background: #fff;
  position: fixed;
  z-index: 20;
  right: 0;
  transform: translateX(100%);
  top: 0;
  width: 246px;
  padding: 115px 10px 30px 35px;
  font-size: 14px;
  transition-property: transform;
  transition-duration: .25s;

  @media (width <= 767px) {
    overflow: auto;
    width: 80%;
    font-size: 4vw;
    padding: 18.7vw 1.3vw 12vw 6.7vw;
  }

  &.is {
    transform: translateX(0);
  }

  a:hover {
    text-decoration: underline;
  }

  li {
    margin-bottom: 10px;

    ul {
      margin-top: 10px;
      line-height: 1.5;

       > li {
        position: relative;
        padding-left: 14px;

        &::before {
          content: "";
          display: block;
          position: absolute;
          left: 0;
          top: 11px;
          width: 7px;
          height: 1px;
          background: #000;
        }
      }
    }
  }
}

/* sbtn */
.v-sbtn {
  @media (width <= 767px) {
    padding-top: 5vw;
  }
}

.v-sbtn__icon {
  @media (width <= 767px) {
    width: 5.6vw;
  }
}

.v-sbtn__label {
  display: block;
  line-height: 1.4;

  @media (width >= 768px) {
    margin-top: 10px;
    font-size: 14px;
  }

  @media (width <= 767px) {
    font-size: 3.5vw;
    margin-left: 3.3vw;
  }
}

.v-sbtn__wbtn {
  display: block;
  position: sticky;
  z-index: 19;
  text-align: right;

  @media (width >= 768px) {
    top: 100px;
    height: 0;
  }

  @media (width <= 767px) {
    top: 10px;
  }
}

.v-sbtn__btn {
  display: inline-block;
  background: #8b8b8b;
  color: #fff;
  font-size: 14px;
  text-align: center;
  padding: 20px 5px;
  border-radius: 10px 0 0 10px;

  @media (width >= 768px) {
    width: 132px;
  }

  @media (width <= 767px) {
    margin: 0 auto;
    padding: 3.3vw 1.3vw;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 70%;
    border-radius: 10px;
  }

  &:hover {
    @media (any-hover: hover) {
      text-decoration: underline;
    }
  }
}

/* hidden */
.v-hidden-ltSP {
  @media (width <= 767px) {
    display: none;
  }
}

.v-hidden-gtTAB {
  @media (width >= 768px) {
    display: none;
  }
}

.v-SP-pad {
  @media (width <= 767px) {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.linkmm-u {
  width:80%;
  text-align:center;
  margin:4em auto 0;
  font-size:105%;
  border:1px solid #a9a9a9;

  @media (width >= 768px) {
    margin-top: 80px;
    width:40%;
    max-width: 500px;
  }

  a {
    display: block;
    padding:20px;
  }
}

.v-cj-bnr {
  margin-top: 74px;
  text-align: center;

  p {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 10px;

    @media (width <= 767px) {
      font-size: 14px;

      span {
        display: block;
      }
    }
  }
}

/* common */
.vr-container-965 {
  width: 100%;
  max-width: 985px;
  margin: 2em auto;
  padding-left: 10px;
  padding-right: 10px;

  &:first-of-type {
    margin-top: 0;
  }

  &:last-of-type {
    margin-bottom: 0;
  }

  @media (width <= 767px) {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

.vr-container-full {
  width: 100%;
  max-width: 1970px;
  margin: 2em auto;
  padding-left: 10px;
  padding-right: 10px;

  &:first-of-type {
    margin-top: 0;
  }

  &:last-of-type {
    margin-bottom: 0;
  }

  @media (width <= 767px) {
    padding-left: 5vw;
    padding-right: 5vw;
  }
}

/* mv */
.vr-ttl-img {
  img {
    @media (width <= 767px) {
      width: 66vw;
    }
  }
}

.vr-mv-sp__header.v-l-header {
  @media (width <= 767px) {
    background: none;
    min-height: 0;
    height: calc(1200 / 750 * 100vw);
    overflow: hidden;
  }

  .v-l-header__row {
    @media (width <= 767px) {
      width: 100%;
      position: absolute;
      top: 0;
      left: 0;
    }
  }

  &.v-l-pc__h-auto {
    @media (width >= 768px) {
      background-size: 100% auto;
      background-position: 50% 0;
      height: auto;
      min-height: 0;
      aspect-ratio: 1920 / 1200;
    }
  }
}

.vr-mv-sp {
  display: none;

  @media (width <= 767px) {
    width: 100%;
    height: calc(1200 / 750 * 100vw);
    display: block;
  }

  img {
    @media (width <= 767px) {
      aspect-ratio: 750 / 1200;
      width: 100%;
      max-width: none;
      height: auto;
      object-fit: cover;
    }
  }
}

.vr-sp-logo__large.v-desc__logo {
  @media (width <= 767px) {
    width: 100%;
    top: -14vw;
    left: 0;
    transform: translateX(0);
  }

  .v-desc__logoja img {
    @media (width <= 767px) {
      width: 80%;
    }
  }
}

.v-desc__logo {
  @media (width <= 767px) {
    width: 100%;
  }

  @media (width >= 768px) {
    left: -60px;
    top: -40px;
  }
}

.v-desc__logoja.is-vr-u {
  font-size: 5vw;
  color: #222;

  @media (width >= 768px) {
    padding-bottom: 0;
    padding-left: 20px;
    font-size: 4rem;
  }

  &.ttl-ja {
    padding-right: 0;
    letter-spacing: .6em;
    text-indent: .6em;
  }

  &.ttl-lang {
    padding-right: .6em;
    text-indent: .6em;
  }
}

/* lang-nav */
.lang-select {
  width: 250px;
  padding: 40px 120px 0 0;

  &.select-s {
    @media (768px <= width <= 940px) {
      width: 130px;
      padding: 0;
      position: absolute;
      top: 135px;
      right: 30px;
    }
  }

  &.select-l {
    @media (768px <= width <= 1070px) {
      width: 130px;
      padding: 0;
      position: absolute;
      top: 135px;
      right: 30px;
    }
  }

  @media (width <= 767px) {
    width: calc(106px + 5.3vw);
    padding: 18.7vw 5.3vw 0 0;
  }

  &[open] .lang-list__btn {
    span::after {
      margin-bottom: -3px;
      transform: rotate(-180deg);
    }
  }
}


.lang-list__btn {
  border: 1px solid #dcdddd;
  cursor: pointer;
  list-style: none;

  span {
    background: #fff;
    width: 100%;
    padding: 4px 5px;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 6px;
    transition: .3s;

    @media (width <= 767px) {
      font-size: 1.2rem;
      gap: 0 10px;
    }

    &::before,
    &::after {
      content: "";
      display: block;
    }

    &::before {
      background: url(../img/icon/icon-world.svg) no-repeat 0 0;
      background-size: contain;
      width: 16px;
      height: 16px;
    }

    &::after {
      border-bottom: 2px solid #333;
      border-right: 2px solid #333;
      width: 8px;
      height: 8px;
      margin-bottom: 3px;
      rotate: 45deg;
      transition: .3s;
    }
  }
}

@media (width <= 767px) {
  .lang-list__btn span::before {
    display: none;
  }
}

summary.lang-list__btn::marker,
summary.lang-list__btn::-webkit-details-marker {
  display: none;
}

.lang-list {
  background: #fff;
}

.lang-item {
  border-bottom: 1px solid #dcdddd;
}

.lang-link {
  width: 100%;
  padding: 8px 10px 8px 30px;
  font-size: 1.4rem;
  line-height: 1;
  display: block;

  @media (width <=767px) {
    padding: 8px 10px 8px 15px;
    font-size: 1.2rem;
  }

  &:hover {
    @media (hover: hover) {
      background: #d3d3d4;
    }
  }
}

/* iframe */
.vr-iframe {
  line-height: 1;
  aspect-ratio: 1200 / 709;

  iframe {
    width: 100%;
    max-width: none;
    height: 100%;
    scale: 1 !important;
    -webkit-transform: scale(1) !important;

    @media (width <=767px) {
      height: 200%;
    }
  }
}

.vr-ar-iframe {
  iframe {
    width: 100%;
    height: 52vh;
  }
}

/* 音声読み上げ用 */
.p-speech {
	display: flex;
	gap: 1em;
	position: relative;

	&:not(:first-of-type) {
		margin-top: 3em;
	}
}

.p-speech__right {
	@media (width >= 768px) {
		flex-direction: row-reverse;
	}
}

.p-speech__control {
	width: 42px;
}

.p-speech__text {
	width: calc(100% - 42px - 1em);
}

.p-speech__btn {
	background: #000;
  border: 1px solid #fff;
	border-radius: 6px;
	padding: 6px 3px;
	display: flex;
	flex-direction: column;
  align-items: center;
	gap: .5em;
	position: sticky;
	top: 0;
	left: 0;
}

.p-speech__voluem {
	margin-top: .5em;
}

/* button */
.c-btn {
	width: 100%;
	min-width: 80px;
	padding: 5px;
	line-height: 1.6;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	position: relative;
	transition: .3s;

	@media (width <= 767px) {
		min-width: 60px;
	}
}

.c-btn__play {
	background: #fff;
	border: none;
	border-radius: 50%;
	width: 30px;
	min-width: 0;
	height: 30px;
	padding: 0;
	font-size: 13px;
  color: #000;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;

  &.btn-pause {
    .material-symbols-outlined {
      font-size: 12px;

      &.change {
        font-size: 20px;
      }
    }
  }
}

.material-symbols-outlined {
  &.icon-volume {
    font-size: 30px;
    color: #fff;
    text-align: center;
  }

  &:not(.icon-volume) {
    padding-top: 2px;
    font-size: 22px;
    color: #000;
  }
}

/* Utility */
.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

@media (width <= 767px) {
  .mtS10 {
    margin-top: calc(20 / 750 * 100vw) !important;
  }

  .mtS20 {
    margin-top: calc(40 / 750 * 100vw) !important;
  }

  .mtS30 {
    margin-top: calc(60 / 750 * 100vw) !important;
  }

  .mtS40 {
    margin-top: calc(80 / 750 * 100vw) !important;
  }

  .mtS50 {
    margin-top: calc(100 / 750 * 100vw) !important;
  }
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

.t-right {
  text-align: right;
}

@media (width <= 767px) {
	.t-S-center {
	  text-align: center;
	}

	.t-S-left {
	  text-align: left;
	}

	.t-S-right {
	  text-align: right;
	}
}

.u-text-upper {
  text-transform: uppercase;
}

.u-ta-justify {
  text-align: justify;
}

.u-wordkeep {
  word-break: keep-all;
}

.u-screen-reader {
	clip: rect(1px, 1px, 1px, 1px);
	height: 1px;
	overflow: hidden;
	position: absolute;
	width: 1px;
	word-wrap: normal;
}

.u-fs-italic {
	font-style: italic;
}

.u-fs-serif {
	font-family: serif;
}

/* br */
.u-br {
	display: block;
}

.u-br-pc {
	@media (width >= 768px) {
		display: block;
	}
}

.u-br-sp {
	@media (width <= 767px)  {
		display: block;
	}
}