@charset "UTF-8";
/* リキッドレイアウト対応のための設定 */
/*  PCとSPの表示非表示の切り替え */
/*(md)px以上で表示*/
.pc-only {
  display: none;
}
@media screen and (min-width: 780px) {
  .pc-only {
    display: block;
  }
}

/*モバイルのみ表示*/
@media screen and (min-width: 780px) {
  .sp-only {
    display: none;
  }
}

/*画像の縦横比設定*/
img {
  width: 100%;
  height: auto;
  display: block;
}

/* aタグのスタイルリセット*/
a {
  text-decoration: none;
  transition: opacity 0.3s;
}

a:hover {
  opacity: 0.8;
}

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 780px) {
  html {
    font-size: 1.4814814815vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 16px;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
  padding: 0;
}

/* Set core html defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.inner {
  width: 100%;
  padding-inline: 20px;
  margin-inline: auto;
}
@media screen and (min-width: 780px) {
  .inner {
    max-width: 1130px;
    padding-inline: 25px;
  }
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1024px) {
  html {
    font-size: 52.5%;
  }
}
body {
  *font-size: small;
  *font: x-small;
  _font-size: 14px;
}

ul,
li {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

img {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

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

html {
  font-size: 10px;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83333vw; /* 10px / 1200px * 100 */
  }
}
@media screen and (max-width: 700px) {
  html {
    font-size: 2.66666667vw; /* 10px / 375px * 100 */
  }
}
.wrap {
  overflow: hidden;
  position: relative;
}

img {
  height: auto;
  max-height: 100%;
  max-width: 100%;
  vertical-align: middle;
}

sup {
  font-size: 50%;
  vertical-align: super;
}

.l-section {
  margin: 8rem 0;
}

@media screen and (max-width: 700px) {
  .l-section {
    margin: 4rem 0;
  }
}
.l-inner {
  margin: 0 auto;
  width: 700px;
  background: #fff;
}

@media screen and (max-width: 700px) {
  .l-inner {
    width: 100%;
  }
}
.l-flex {
  display: flex;
}

.l-flex--aic {
  align-items: center;
}

.l-pos-relative {
  position: relative;
}

.l-pos-center {
  transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
}

.l-clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.l-left {
  float: left;
}

.l-right {
  float: right;
}

.wrap {
  background-color: #E8E4E0;
}

.flothing-btn {
  position: fixed;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
  bottom: 0;
  text-align: center;
  z-index: 999;
  left: 50%;
  transform: translate(-50%, 0%);
}

.motion-txt {
  opacity: 0;
  transform: translateY(100%);
}

.motion-txt.motion-txt--active {
  animation: slideIn 1.5s ease-in-out forwards;
}

@keyframes slideIn {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
.motion-txt02 {
  --motion-txt02-duration: 0.5s;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.motion-txt02:after {
  content: "";
  position: absolute;
  opacity: 1;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: #ECEFF1;
  transform: translate3d(0, -101%, 0);
  z-index: 1;
}

.motion-txt02--pink:after {
  background-color: #EACACA;
}

.motion-txt02--blue:after {
  background-color: #C2D9ED;
}

.motion-txt02--yellow:after {
  background-color: #EDE2C2;
}

.motion-txt02--purple:after {
  background-color: #D9CEF5;
}

.js-scroll.show .motion-txt02:after {
  transition-property: transform;
  transition-duration: var(--motion-txt02-duration);
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}

.js-scroll.done .motion-txt02:after {
  transition-property: transform;
  transition-duration: var(--motion-txt02-duration);
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 103%, 0);
}

.motion-txt02 .motion-inner {
  display: inline-block;
  opacity: 0;
  position: relative;
  z-index: 0;
}

.js-scroll.done .motion-txt02 .motion-inner {
  opacity: 1;
  transition: opacity 0.22s ease 0.02s;
}

.mv__main {
  position: relative;
}

.mv__txt {
  position: absolute;
  top: 56.4814814815%;
  left: 50%;
  transform: translateX(-50%);
  width: 71.4285714286%;
}

.mv__ttl {
  position: absolute;
  top: 75.9259259259%;
  left: 50%;
  transform: translateX(-50%);
  width: 28.5714285714%;
}

.sec01 {
  position: relative;
  padding-bottom: 70%;
}

.sec01__img01 {
  width: 20.7142857143%;
  height: auto;
  margin-left: 7.1428571429%;
}

.sec01__img02 {
  width: 80.5714285714%;
  height: auto;
  margin-top: 7.4285714286%;
  margin-left: 10%;
}

.sec01__img03 {
  width: 69.1428571429%;
  height: auto;
  margin-top: 9.5714285714%;
  margin-left: 10%;
}

.sec01__movie {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 36.4814814815%;
}

.sec01__movie a {
  display: block;
  width: 100%;
  height: 100%;
}

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

.sec01__movie div {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sec01__movie svg {
  transition: all ease 0.3s;
  width: 20%;
  opacity: 0.7;
}

.sec01__movie svg circle {
  stroke: #fff;
}

.sec01__movie a:hover svg {
  transform: scale(1.1);
  filter: drop-shadow(0px 0px 4px #fff);
}

.sec02 {
  padding-block: 12.8571428571%;
}

.sec02__txt01 {
  width: 50.1428571429%;
  height: auto;
  margin-left: 10%;
  position: relative;
  z-index: 1;
}

.sec02__img01 {
  width: 85.7142857143%;
  height: auto;
  margin-left: auto;
  margin-top: -3.4285714286%;
  position: relative;
}

.sec02__sub01 {
  width: 16.7142857143%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: -4.5%;
}

.sec02__txt02 {
  width: 62.7142857143%;
  height: auto;
  margin-left: 7.1428571429%;
  margin-top: 15.7142857143%;
}

.sec02__img02 {
  width: 100%;
  height: auto;
  margin-top: 7.1428571429%;
  position: relative;
}

.sec02__sub02 {
  width: 16.7142857143%;
  height: auto;
  position: absolute;
  top: -47%;
  right: 7.1428571429%;
}

.sec02__txt03 {
  width: 85.7142857143%;
  height: auto;
  margin: 7.1428571429% auto 0;
}

.sec03 {
  background-image: url(../images/top/sec03-bg.png);
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  padding-block: 13% 45.8571428571%;
}

.sec03__ttl {
  width: 57%;
  height: auto;
  margin-left: 7.1428571429%;
}

.sec03__txt {
  width: 87.8571428571%;
  height: auto;
  margin-left: 7.1428571429%;
  margin-top: 2.8571428571%;
}

.sec03__list {
  width: 85.7142857143%;
  display: grid;
  gap: 4.2857142857%;
  margin-inline: auto;
  margin-top: 8.5714285714%;
}

.sec03__img {
  width: 100%;
  height: auto;
}

.sec04 {
  position: relative;
}

.sec04__ttl {
  width: 60.1428571429%;
  height: auto;
  margin-inline: auto;
  position: absolute;
  top: -16%;
  left: 50%;
  transform: translateX(-50%);
}

.sec04__sub {
  width: 38.2857142857%;
  height: auto;
  position: absolute;
  top: -3.8571428571%;
  left: 50%;
  transform: translateX(-50%);
}

.sec04__container {
  background: #fff;
  padding-block: 5.2857142857% 13.7142857143%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.sec04__item {
  min-width: 0;
}

.sec04__item + .sec04__item {
  margin-top: 9.4285714286%;
}

.sec04__img01 {
  width: 92.8571428571%;
  height: auto;
  margin-left: 7.1428571429%;
}

.sec04__txt01 {
  width: 62.8571428571%;
  height: auto;
  margin-left: 14.2857142857%;
  margin-top: -6.2857142857%;
}

.sec04__img02 {
  width: 92.8571428571%;
  height: auto;
  margin-right: 7.1428571429%;
}

.sec04__txt02 {
  width: 83.7142857143%;
  height: auto;
  margin-left: 7.1428571429%;
  margin-top: -6.2857142857%;
}

.sec05__boder {
  background: #83B0C4;
  height: 1px;
  width: 85.7142857143%;
  margin-inline: auto;
}

.sec05__ttl {
  width: 79.4285714286%;
  height: auto;
  margin-inline: auto;
  margin-top: 8.5%;
  position: relative;
}

.sec05__sub {
  width: 18.345323741%;
  height: auto;
  position: absolute;
  top: 2%;
  right: 7.8237410072%;
}

.sec05__container {
  margin-top: 16.5714285714%;
}

.sec05__item {
  margin-top: 7.1428571429%;
}

.sec05__item:first-child {
  margin-top: 0;
}

.sec05__top {
  display: flex;
  justify-content: flex-end;
  margin-right: 7.1428571429%;
}

.sec05__item:nth-child(even) .sec05__top {
  flex-direction: row-reverse;
  margin-right: 0;
  margin-left: 7.1428571429%;
}

.sec05__bottom {
  margin-inline: 7.1428571429%;
  margin-top: 4.7142857143%;
  display: grid;
  gap: 1.4285714286%;
  border-bottom: 2px solid #ECEFF1;
  padding-bottom: 6.7142857143%;
}

.sec05__en {
  width: 20.3076923077%;
  height: auto;
}

.sec05__img {
  width: 76.9230769231%;
  height: auto;
}

.sec05__cat01 {
  width: 31.1666666667%;
  height: auto;
}

.sec05__txt01 {
  width: 71.1666666667%;
  height: auto;
  margin-top: 0.5714285714%;
}

.sec05__cat02 {
  width: 24.8333333333%;
  height: auto;
}

.sec05__txt02 {
  width: 100.6666666667%;
  height: auto;
  margin-top: 0.5714285714%;
}

.sec05__cat03 {
  width: 31.1666666667%;
  height: auto;
}

.sec05__txt03 {
  width: 62.8333333333%;
  height: auto;
  margin-top: 0.5714285714%;
}

.sec05__cat04 {
  width: 62.6666666667%;
  height: auto;
}

.sec05__txt04 {
  width: 62.8333333333%;
  height: auto;
  margin-top: 0.5714285714%;
}

.sec05__txt05 {
  width: 43.8571428571%;
  height: auto;
  margin-top: 16%;
  margin-left: 10%;
}

.sec05__img05 {
  width: 100%;
  height: auto;
  margin-top: 7.7142857143%;
  position: relative;
}

.sec05__en05 {
  width: 16.7142857143%;
  height: auto;
  position: absolute;
  top: -35%;
  right: 7.1428571429%;
  left: auto;
}

.sec05__list {
  margin: 7.1428571429% 7.1428571429% 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.sec05__list-item {
  position: relative;
}

.sec05__list-item:nth-child(-n+2)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 91.6666666667%;
  height: 1px;
  background: #ECEFF1;
}

.sec05__list-item:nth-child(2)::after {
  left: auto;
  right: 0;
}

.sec05__list-item:nth-child(odd)::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 86.4864864865%;
  background: #ECEFF1;
}

.sec05__list-item:nth-child(3)::before {
  top: auto;
  bottom: 0;
}

.sec05__list-txt {
  width: 100%;
  height: auto;
}

.sec06 {
  padding-block: 17.1428571429% 12.8571428571%;
}

.sec06__ttl {
  width: 92.8571428571%;
  height: auto;
  margin-left: auto;
}

.sec06__sub {
  width: 95.5714285714%;
  height: auto;
  margin-right: auto;
  margin-top: 0.4285714286%;
}

.sec06__date {
  width: 85.8571428571%;
  height: auto;
  margin-inline: auto;
  margin-top: 6.4285714286%;
}

.sec06__container {
  margin-top: 4.2857142857%;
  padding-inline: 7.1428571429%;
}

.sec06__item {
  margin-top: 7.1428571429%;
}

.sec06__item:first-child {
  margin-top: 0;
}

.sec06__img {
  width: 100%;
  height: auto;
}

.sec06__label {
  width: 100%;
  height: auto;
  margin-top: 3.6666666667%;
}

.sec06__price {
  width: 98.5%;
  height: auto;
  margin-top: 2.5%;
}

.sec07 {
  background: #ECEFF1;
  padding-block: 16.4285714286% 16.7142857143%;
}

.sec07__sub {
  width: 54.4285714286%;
  height: auto;
  margin-inline: auto;
}

.sec07__ttl {
  width: 69%;
  height: auto;
  margin-inline: auto;
  margin-top: 4%;
}

.sec07__en {
  width: 49.7142857143%;
  height: auto;
  margin-inline: auto;
  margin-top: 2%;
}

.sec07__img {
  width: 80%;
  height: auto;
  margin-inline: auto;
  margin-top: 2.8571428571%;
}

.sec07__en + .sec07__img {
  margin-top: 8%;
}

.sec07__txt {
  width: 70.1428571429%;
  height: auto;
  margin-inline: auto;
  margin-top: 4.5714285714%;
}

.sec08 {
  background-color: #fff;
  padding-bottom: 19.2857142857%;
}

.sec08__ohlo-btn {
  width: 85.7142857143%;
  margin-inline: auto;
  padding-top: 10%;
}

.sec08__tempo {
  width: 85.7142857143%;
  margin-inline: auto;
  padding-top: 7.1428571429%;
}

.sec08__ad {
  margin-top: 11.4285714286%;
}/*# sourceMappingURL=styles.css.map */