@charset "UTF-8";
:root {
  --text: #1a1a1a;
  --text2: #5a5a5a;
  --body: #f4f4f2;
  --hover: #211815;
  --selection: #cccccc;
  --gray01: #f4f4f4;
  --gray03: #737373;
  --gray04: #5a5958;
  --gray05: #838383;
  --gray06: #3c3c3c;
  --gray07: #141414;
}

:root {
  --z-index-drawer: 1002;
  --z-index-header: 1001;
  --z-index-aside: 1000;
}

:root {
  --cubic-bezier-topmvlogo: cubic-bezier(0.74, -0.01, 0.46, 0.86);
  --cubic-bezier-header: cubic-bezier(0.13, 0.18, 0.51, 1.02);
  --cubic-bezier-hover: cubic-bezier(0.61, 0.37, 0.51, 0.91);
  --cubic-bezier-logo: cubic-bezier(0.13, 0.18, 0.51, 1.02);
  --cubic-bezier-btn: cubic-bezier(0.61, 0.37, 0.51, 0.91);
}

:root {
  --basefont:
    "Noto Serif", "Yu Gothic Medium", "游ゴシック Medium", YuGothic,
    "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  --googlefont-Noto: "Noto Serif", serif;
  --googlefont-biz: "BIZ UDPMincho", serif;
}

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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

html {
  font-size: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: none;
  font-family: sans-serif;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background-color: #fff;
  color: #222;
  font-size: 1em;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

main {
  display: block;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  height: auto;
  display: block;
}

svg {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role="list"],
ol[role="list"] {
  list-style: none;
}

ul {
  padding-inline-start: 0;
}

nav ul,
nav ol {
  list-style: none;
  list-style-image: none;
}

dl,
menu,
ol,
ul {
  margin: 0 0;
}

dd {
  margin: 0 0 0 0px;
}

li {
  list-style: none;
}

address {
  font-style: normal;
}

::selection {
  background: var(--selection);
}

::-moz-selection {
  background: var(--selection);
}

body {
  color: var(--text);
  font-family: var(--googlefont-biz);
  background-color: var(--body);
}

/*******************************
main
*******************************/
#wrapper {
  scroll-behavior: smooth;
}

#main {
  width: 100%;
  margin: 0 auto 0;
}

/*******************************
container
*******************************/
.l-container {
  width: min(86%, 1108px);
  margin: 0 auto;
}

@media screen and (max-width: 768.98px) {
  .l-container {
    width: 90%;
  }
}
/*******************************
utility
*******************************/
.sp-only {
  display: none;
}

.pc-only {
  display: block;
}

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

.googlemap iframe {
  vertical-align: bottom;
}

@media screen and (max-width: 576.98px) {
  .sp-only {
    display: block;
  }
  .pc-only {
    display: none;
  }
}

/*******************************
section
*******************************/
.section-outer {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow: hidden;
  transition: 0.5s ease;
}

/* nth-of-typeを使って1から27までの順番を指定 */
.section:nth-of-type(1) {
  z-index: calc(28 - 1);
}

.section:nth-of-type(2) {
  z-index: calc(28 - 2);
}

.section:nth-of-type(3) {
  z-index: calc(28 - 3);
}

.section:nth-of-type(4) {
  z-index: calc(28 - 4);
}

.section:nth-of-type(5) {
  z-index: calc(28 - 5);
}

.section:nth-of-type(6) {
  z-index: calc(28 - 6);
}

.section:nth-of-type(7) {
  z-index: calc(28 - 7);
}

.section:nth-of-type(8) {
  z-index: calc(28 - 8);
}

.section:nth-of-type(9) {
  z-index: calc(28 - 9);
}

.section:nth-of-type(10) {
  z-index: calc(28 - 10);
}

.item {
  overflow: hidden;
  transition: 0.5s ease;
}

.item.prev {
  margin-top: -102vh;
  height: 70vh;
}

.item.prev .inner {
  margin-top: 80vh;
}

.section .inner {
  position: relative;
  width: 100%;
  height: 104vh;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 2rem;
  transform: translateY(0);
  transition: 0.5s ease;
}

.section.active .inner {
  transform: translateY(-3vh);
}

.section .inner picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section .inner picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  object-position: center;
  transition: 1s ease;
}

.section.active .inner picture img {
  transform: scale(1);
}

/*　unique-------- */
.aboutcopy {
  position: absolute;
  transform: translateY(-6px);
  object-position: center top;
  transition: 0.65s ease 0.2s;
}

.section.active .aboutcopy {
  transform: translateY(0);
}

.aboutcopy img {
  display: block;
  width: auto;
  height: 100%;
}

.aboutcopy.copy2 {
  top: 32%;
  right: auto;
  left: 19.75%;
  width: auto;
  height: 36%;
}
.aboutcopy.copy3 {
  top: 32%;
  left: auto;
  right: 19.75%;
  width: auto;
  height: 36%;
}

/*******************************
number
*******************************/
.num-wrap {
  position: fixed;
  display: flex;
  bottom: 2rem;
  left: 2rem;
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.5rem;
  z-index: 100;
}
.num-active {
  position: relative;
  width: 2.5rem;
  height: 2rem;
  text-align: center;
  overflow: hidden;
}
.num-active span {
  position: absolute;
  top: 2rem;
  left: 0;
  width: 2.5rem;
  height: 2rem;
  opacity: 0;
  transition: 0.4s ease;
}

.num-active span.active {
  top: 0;
  opacity: 1;
}

.num-active span.prev {
  top: -2rem;
  opacity: 0;
}
.num-total {
  padding-left: 0.25rem;
}
/*******************************
header
*******************************/
.header {
  position: fixed;
  top: 2rem;
  left: 2rem;
  z-index: 100;
}
.header-sitelogo a {
  display: inline-block;
  width: 164px;
}
/*******************************
footer
*******************************/
.footer {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 100;
}
.footer p {
  color: #fff;
  font-size: calc(14 / 16 * 1rem);
}
@media (max-width: 767.98px) {
  .aboutcopy img {
    margin: auto;
    display: block;
    width: auto;
    height: 100%;
  }
  .aboutcopy.copy2 {
    top: 37%;
    left: 0;
    width: 100%;
    height: 26%;
  }
  .aboutcopy.copy3 {
    top: 37%;
    right: 0;
    width: 100%;
    height: 26%;
  }

  .header-sitelogo a {
    width: 124px;
  }
  .footer {
    bottom: 2.375rem;
  }
  .footer p {
    font-size: calc(13 / 16 * 1rem);
  }
}
