@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
}

@media screen and (max-width: 768px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

/* リキッドレイアウト対応 */
html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

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

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          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;
}

/* Set core root defaults */
/* 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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          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;
}

.bg-grade {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0.6;
  z-index: -1;
}
.bg-grade::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: -2;
  width: 100%;
  height: 400px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 167, 255, 0)), color-stop(45%, rgba(0, 118, 215, .33)), to(rgba(0, 49, 160, .8)));
  background-image: linear-gradient(to bottom, rgba(0, 167, 255, 0), rgba(0, 118, 215, .33) 45%, rgba(0, 49, 160, .8) 100%);
}
.bg-grade::after {
  content: "";
  position: absolute;
  top: 400px;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-color: rgba(0, 49, 160, .8);
}
@media screen and (max-width: 999px) {
  .bg-grade::after {
    height: calc(100% - 200px);
  }
}

.contact-btn {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background-color: #FFF500;
  position: fixed;
  top: 100px;
  right: 7%;
  z-index: 99;
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-btn {
    top: 53.333333333vw;
    right: 10%;
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 499px) {
  .contact-btn {
    top: 43.333333333vw;
  }
}
.contact-btn p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 4px;
  width: 54px;
  line-height: 1.23;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
}
@media screen and (max-width: 768px) {
  .contact-btn p {
    width: 40px;
    row-gap: 2px;
  }
}
.contact-btn::before {
  content: "";
  width: 75px;
  height: 75px;
  background-color: #FFFA88;
  border-radius: 50%;
  position: absolute;
  top: 5px;
  left: 5px;
}
@media screen and (max-width: 768px) {
  .contact-btn::before {
    width: 50px;
    height: 50px;
  }
}
.contact-btn:hover {
  opacity: 0.8;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.contact-btn__text {
  font-size: 17px;
  font-weight: 700;
  color: #001F74;
	display: flex;
	flex-direction: column;
	text-align: center;
	letter-spacing: -0.07em;
}
@media screen and (max-width: 768px) {
  .contact-btn__text {
    font-size: 12px;
  }
}

.contact-btn__text span:nth-child(1) {
	border-bottom: 1px solid #001F74;
}

.contact-btn__arrow {
  width: 11px;
  height: 9px;
}
@media screen and (max-width: 768px) {
  .contact-btn__arrow {
    width: 9px;
    height: 7.5px;
  }
}

.contact {
  margin-bottom: 95px;
}

.contact__inner {
  padding: 0 25px;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0;
  }
}

.contact__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, .6);
  margin-bottom: 52px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: min(10.6666666667vw, 80px);
    margin-bottom: min(13.8666666667vw, 104px);
  }
}

.explain {
  margin-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .explain {
    overflow: hidden;
    margin-bottom: min(12.8vw, 96px);
  }
}

.explain__inner {
  border-bottom: 1px solid #fff;
}

.explain__title {
  width: 1030px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  padding: min(6.4545454545vw, 71px) 0 min(6.9090909091vw, 76px);
  background-image: url(../images/common/bg03.png);
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .explain__title {
    background-image: url(../images/common/bg03-sp.png);
    width: 100vw;
    max-width: inherit;
    margin: 0 calc(50% - 50vw);
    padding: min(9.6vw, 72px) 0 min(14.1333333333vw, 106px);
  }
}
.explain__title span {
  font-size: min(3.0909090909vw, 34px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: calc(61 / 34);
  color: #fff;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  text-align: center;
}
@media screen and (max-width: 768px) {
  .explain__title span {
    font-size: min(5.3333333333vw, 40px);
    line-height: calc(36 / 20);
  }
}

.explain__copy {
  display: block;
  width: min(62.7272727273vw, 690px);
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(28px, 3.5454545455vw, 39px);
  font-weight: 900;
  color: #65C4F2;
  text-align: center;
  letter-spacing: 0.06em;
  position: relative;
  padding: 16px 0 20px;
  margin-top: -35px;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .explain__copy {
    width: min(88vw, 600px);
    font-size: min(5.6vw, 42px);
    padding: min(3.2vw, 24px) 0;
    margin-top: -24px;
  }
}
.explain__copy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #001952;
  -webkit-transform: skewX(-14deg);
          transform: skewX(-14deg);
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .explain__copy::before {
    -webkit-transform: skewX(-5deg);
            transform: skewX(-5deg);
    left: 12px;
  }
}

.explain__mode {
  margin-bottom: 100px;
  margin-top: -50px;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 768px) {
  .explain__mode {
    margin-bottom: min(24.5333333333vw, 184px);
    margin-top: min(9.3333333333vw, 70px);
  }
}

.explain__arrow {
  width: 877px;
  max-width: 100%;
  height: auto;
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-52%);
          transform: translateY(-50%) translateX(-52%);
}
@media screen and (max-width: 768px) {
  .explain__arrow {
    max-width: none;
    width: min(9.3333333333vw, 70px);
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}

.explain__bubbles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  /* -webkit-column-gap: min(2.1645021645vw, 30px);
     -moz-column-gap: min(2.1645021645vw, 30px);
          column-gap: min(2.1645021645vw, 30px); */
}
@media screen and (max-width: 768px) {
  .explain__bubbles {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.explain__small-bubble {
  width: 226px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .explain__small-bubble {
    width: min(38.6666666667vw, 290px);
  }
}
.explain__small-bubble p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 28px;
  font-weight: 700;
  line-height: calc(40 / 29);
  letter-spacing: -0.02em;
  color: #004B9E;
  width: 100%;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .explain__small-bubble p {
    font-size: min(5.3333333333vw, 40px);
    line-height: calc(22 / 20);
  }
}

.explain__large-bubble {
  width: 310px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .explain__large-bubble {
    width: min(51.4666666667vw, 386px);
    margin-top: -20px;
    margin-bottom: -20px;
  }
}
.explain__large-bubble p {
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
  font-size: 25px;
  letter-spacing: -0.03em;
  font-weight: 400;
  color: #004B9E;
  width: 100%;
  line-height: 1.3;
	font-weight: 900;
  text-align: center;
  padding-top: 21px;
}
@media screen and (max-width: 768px) {
  .explain__large-bubble p {
    font-size: min(4.5333333vw, 44px);
  }
}
.explain__large-bubble p span {
  font-size: 53px;
  letter-spacing: -0.03em;
  line-height: calc(59 / 53);
}
@media screen and (max-width: 768px) {
  .explain__large-bubble p span {
    font-size: min(8.533333333vw, 62px);
  }
}

.footer__copy {
  display: block;
  font-size: 14px;
  font-weight: 400;
  text-align: center;
  color: #fff;
}

header {
  height: 60px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  header {
    height: min(16vw, 120px);
  }
}

.header__inner {
  height: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  z-index: 999;
  background-color: #fff;
  padding: 0 7%;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 0 0 17px;
  }
}

.header__title {
  width: min(49.2727272727vw, 542px);
  height: min(2.7272727273vw, 30px);
  margin: 18px 0 11px;
}
@media screen and (max-width: 768px) {
  .header__title {
    width: 42.9333333333vw;
    height: 10.4vw;
    margin: min(2.6666666667vw, 20px) 0 0;
  }
}

.header__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: min(2.3636363636vw, 26px);
     -moz-column-gap: min(2.3636363636vw, 26px);
          column-gap: min(2.3636363636vw, 26px);
}
@media screen and (max-width: 768px) {
  .header__block {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    row-gap: 8px;
  }
}

.header__button-wrapper {
  width: 110px;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .header__button-wrapper {
    width: min(25.3333333333vw, 190px);
    margin-top: 0;
  }
}
.header__button-wrapper:hover .header__contents {
  overflow: visible;
  opacity: 1;
}

.header__button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  padding: 0;
  position: relative;
}

.header__global {
  width: 25px;
  height: 25px;
}
@media screen and (max-width: 768px) {
  .header__global {
    width: min(4.5333333333vw, 34px);
    height: min(4.5333333333vw, 34px);
  }
}

.header__lang {
  font-size: 14px;
  font-weight: 400;
  color: #7E7E7E;
}
@media screen and (max-width: 768px) {
  .header__lang {
    font-size: min(3.2vw, 24px);
  }
}
.header__lang span {
  font-size: 10px;
}
@media screen and (max-width: 768px) {
  .header__lang span {
    font-size: min(2.4vw, 18px);
  }
}

.header__contents {
  text-align: center;
  padding: 5px 0 0 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background: #fff;
  height: 0;
  overflow: hidden;
  opacity: 0;
}

.header__content a {
  padding: 10px 5px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  color: #7E7E7E;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .header__content a {
    font-size: min(2.6666666667vw, 20px);
  }
}
.header__content a:hover {
  background: #ececec;
}

.header__logo {
  width: min(16.8181818182vw, 185px);
  height: min(4.6363636364vw, 51px);
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: min(28vw, 210px);
    height: min(7.7333333333vw, 58px);
  }
}

.inner {
  width: 100%;
  max-width: 1150px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 25px;
  padding-left: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.js-opening01,
.js-opening02,
.js-opening05,
.js-opening06,
.js-opening07 {
  opacity: 0;
}

.js-opening03 {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.js-opening03 span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}

.js-opening04 {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
}
.js-opening04 .main-view__spec {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(150%);
          transform: translateY(150%);
}

.js-bubble01 {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
}
@media screen and (max-width: 768px) {
  .js-bubble01 {
    -webkit-clip-path: inset(0 0 100% 0);
            clip-path: inset(0 0 100% 0);
  }
}

.js-bubble02 {
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  opacity: 0;
}

.lineup {
  margin-bottom: 73px;
}
@media screen and (max-width: 768px) {
  .lineup {
    margin-bottom: 13.3333333333vw;
		overflow: hidden;
  }
}

.lineup__inner {
  border-bottom: 1px solid #fff;
}

.lineup__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, .6);
  margin-bottom: 22px;
}
@media screen and (max-width: 768px) {
  .lineup__title {
		width: 100vw;
		text-align: center;
		margin-right: calc(50% - 50vw);
		margin-left: calc(50% - 50vw);
    font-size: min(10.6666666667vw, 80px);
    /* font-size: min(10.1333333vw, 80px); */
    margin-bottom: min(4.8vw, 36px);
    text-align: center;
    line-height: calc(53 / 40);
  }
}

.lineup__caution {
  font-size: 18px;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: #fff;
  text-align: center;
  margin-bottom: 43px;
}
@media screen and (max-width: 768px) {
  .lineup__caution {
    font-size: min(4.5333333333vw, 34px);
    margin-bottom: 6.9333333333vw;
    line-height: calc(27 / 17);
  }
}

.lineup__img {
  width: 902px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .lineup__img {
    width: 85.3333333333vw;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: min(9.0666666667vw, 68px);
    margin-bottom: min(21.3333333333vw, 160px);
  }
}
.lineup__img div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 768px) {
  .lineup__img.lineup__img--pc {
    display: none;
  }
}

.lineup__img.lineup__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lineup__img.lineup__img--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.lineup__hover {
  position: relative;
}
.lineup__hover::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  right: 0;
  bottom: 0;
  width: 101%;
  height: 100%;
  border: 4px solid #000;
  opacity: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lineup__hover:hover {
  opacity: 0.8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.lineup__hover:hover::before {
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.main-view {
  padding-top: 60px;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-view {
    padding-top: 16vw;
  }
}

.main-view__bg {
  position: fixed;
  top: 60px;
  left: -20px;
  right: -20px;
  bottom: -100px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .main-view__bg {
    top: 16vw;
  }
}

.main-view__inner {
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-view__inner {
    margin-top: min(1.8667vw, 14px);
  }
  .main-view__inner.inner {
    padding-right: 12px;
    padding-left: 15px;
  }
}
@media screen and (max-width: 499px) {
  .main-view__inner {
    margin-top: -2px;
  }
}

.main-view__content {
  width: 100%;
  height: 100%;
  margin-top: min(0.6363636364vw, 7px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: min(4.0909090909vw, 45px);
}
@media screen and (max-width: 768px) {
  .main-view__content {
    margin-top: 0;
    row-gap: 0;
  }
}

.main-view__top-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  /* -webkit-column-gap: min(4.2727272727vw, 47px);
     -moz-column-gap: min(4.2727272727vw, 47px);
          column-gap: min(4.2727272727vw, 47px); */
	/* align-items: center; */
  margin-right: max(-3.27272727vw, -36px);
}
@media screen and (max-width: 768px) {
  .main-view__top-block {
    margin-right: 0;
    margin-bottom: min(4.8vw, 36px);
		justify-content: center;
  }
}

.main-view__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	/* text-align: center; */
}
@media screen and (max-width: 768px) {
  .main-view__title {
    align-items: flex-start;
  }
}

.main-view__large-text {
  font-size: min(8.63636364vw, 95px);
  font-weight: 900;
  line-height: 1.5;
  color: #fff;
  letter-spacing: -0.03em;
}
@media screen and (max-width: 768px) {
  .main-view__large-text {
    font-size: min(9.333333vw, 70px);
		margin-left: min(2.6667vw, 20px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__large-text {
    font-size: 6.9333vw;
  }
}

.main-view__large-text span {
	font-size: min(8.63636364vw, 100px);
  margin-left: min(3.5454545455vw, 39px);
  padding: min(0.7272727273vw, 8px) min(3.4545454545vw, 38px) 0px min(2.7272727273vw, 30px);
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .main-view__large-text span {
		font-size: min(9.866667vw, 74px);
    margin-left: min(4.6667vw, 35px);
    padding: min(0.7272727273vw, 8px) min(3.4545454545vw, 38px) 0px min(2.7272727273vw, 30px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__large-text span {
		font-size: 7.46667vw;
		padding-top: 0;
  }
}
.main-view__large-text span::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: -1;
  background-image: radial-gradient(#0092E5, #0057AA);
  -webkit-transform: skewX(-14deg);
          transform: skewX(-14deg);
}

.main-view__large-text small {
	font-size: min(5.45454545vw, 60px);
	color: #B7E1FF;
}
@media screen and (max-width: 768px) {
  .main-view__large-text small {
		font-size: min(6.13333vw, 46px);
	}
}
@media screen and (max-width: 499px) {
  .main-view__large-text small {
		font-size: 5.3333vw;
	}
}

.main-view__small-text {
  font-size: min(4.72727273vw, 52px);
  line-height: 1.1;
	letter-spacing: -0.03em;
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .main-view__small-text {
		letter-spacing: -0.0393em;
  }
}
@media screen and (max-width: 768px) {
  .main-view__small-text {
    font-size: min(5.333333333vw, 40px);
		letter-spacing: -0.036em;
  }
}
@media screen and (max-width: 499px) {
  .main-view__small-text {
    font-size: 4.8vw;
  }
}

.main-view__button {
  width: min(16.3636363636vw, 180px);
  height: min(9.0909090909vw, 100px);
  border-radius: 50px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .main-view__button {
    width: min(29.3333333333vw, 220px);
    height: min(16.2666666667vw, 122px);
    border-radius: 31px;
  }
}
@media screen and (max-width: 499px) {
  .main-view__button {
    width: 25.6vw;
    height: 14.13333vw;
  }
}

@media screen and (max-width: 768px) {
  .main-view__button.main-view__button--pc {
    display: none;
  }
}

.main-view__button.main-view__button--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-view__button.main-view__button--sp {
    display: block;
    /* position: absolute;
    top: min(5.6vw, 42px);
    right: min(3.7333333333vw, 28px); */
		margin-bottom: min(1.866667vw, 14px);
  }
}

.main-view__button-text {
  font-size: min(1.72727273vw, 19px);
  font-weight: 900;
  color: #001F74;
	letter-spacing: -0.03em;
	line-height: 1.3;
  text-align: center;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%) translateX(-50%);
          transform: translateY(-50%) translateX(-50%);
}
@media screen and (max-width: 768px) {
  .main-view__button-text {
    font-size: min(3.4666666667vw, 26px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__button-text {
    font-size: 2.9333vw;
  }
}

.main-view__button-text--large {
	font-size: min(2.45454545vw, 27px);
}
@media screen and (max-width: 768px) {
  .main-view__button-text--large {
    font-size: min(5.33333vw, 40px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__button-text--large {
    font-size: 4.8vw;
  }
}

.main-view__button-text--small {
	font-size: min(1.6363636364vw, 18px);
}
@media screen and (max-width: 768px) {
  .main-view__button-text--small {
    font-size: min(2.93333vw, 22px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__button-text--small {
    font-size: 2.66667vw;  }
}

.main-view__bottom-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
	justify-content: center;
  margin-left: min(11.3636363636vw, 125px);
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (max-width: 1024px) {
  .main-view__bottom-block {
    margin-left: 9.1vw;
  }
}
@media screen and (max-width: 768px) {
  .main-view__bottom-block {
    position: relative;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    margin-left: max(-1.3333333333vw, -10px);
    margin-bottom: 6px;
    margin-top: 50px;
  }
}

.main-view__picture {
  width: min(39.0909090909vw, 430px);
}
@media screen and (max-width: 768px) {
  .main-view__picture {
    width: min(46.666667vw, 350px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__picture {
    width: 41.866666666667vw;
  }
}

.main-view__text-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .main-view__text-block {
    margin-bottom: 8px;
  }
}

.main-view__small-label {
  font-size: min(2.45454545vw, 27px);
  font-weight: 700;
  line-height: 1.33;
	letter-spacing: -0.03em;
  color: #fff;
	text-align: left;
  padding: min(0.2727272727vw, 14px) min(2.90909091vw, 32px) min(1.09090909vw, 12px) min(2.90909091vw, 32px);
  background-image: url(../images/common/bg01.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 7px;
}
@media screen and (max-width: 768px) {
  .main-view__small-label {
    display: block;
		background-image: url(../images/common/bg01-sp.png);
    font-size: min(3.73333vw, 28px);
		letter-spacing: -0.058em;
    margin-left: 3px;
    padding: min(1.86667vw, 14px) min(7.6vw, 57px) min(1.6vw, 12px) min(3.333333333vw, 25px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__small-label {
    font-size: 3.46666667vw;
  }
}

@media screen and (max-width: 768px) {
  .main-view__small-label.main-view__small-label--pc {
    display: none;
  }
}

.main-view__large-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: min(0.9090909091vw, 10px);
  padding: min(1.6363636364vw, 18px) min(6vw, 66px) min(1.1818181818vw, 13px) min(4vw, 44px);
  background-image: url(../images/common/bg02.png);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: min(3.2727272727vw, 36px);
  margin-left: min(2.2727272727vw, 25px);
}
@media screen and (max-width: 768px) {
  .main-view__large-label {
    /* font-size: min(5.3333333333vw, 40px); */
    row-gap: min(2.6666666667vw, 20px);
    margin-left: min(0.8vw, 6px);
    padding: min(2.6666666667vw, 20px) min(12.8vw, 96px) min(2.1333333333vw, 16px) min(6.9333333333vw, 54px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__large-label {
    row-gap: 2.1333vw;
	}
}

@media screen and (max-width: 768px) {
  .main-view__large-label.main-view__large-label--pc {
    display: none;
  }
}

.main-view__label {
  display: none;
}
@media screen and (max-width: 768px) {
  .main-view__label {
    display: block;
    width: min(68.53333vw, 514px);
    margin-left: auto;
    margin-right: min(4.4vw, 33px);
  }
}

.main-view__spec {
  font-size: min(2.3636363636vw, 26px);
  font-weight: 700;
  line-height: 1.34;
	letter-spacing: -0.03em;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .main-view__spec {
    font-size: min(3.7333vw, 28px);
		letter-spacing: -0.052em;
  }
}
@media screen and (max-width: 499px) {
  .main-view__spec {
    font-size: 3.4667vw;
  }
}
.main-view__spec span {
  font-size: min(3vw, 33px);
  line-height: 1.33;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .main-view__spec span {
    font-size: min(4.8vw, 36px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__spec span {
    font-size: 4.26667vw;
  }
}
.main-view__spec:nth-child(1) {
  padding-left: 1em;
}

.main-view__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.main-view__product-logo {
  display: block;
  width: min(12.7272727273vw, 140px);
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .main-view__product-logo {
    width: min(25.3333333333vw, 190px);
  }
}

.main-view__message {
  font-size: min(1.8181818182vw, 20px);
  font-weight: 700;
  color: #fff;
  text-align: center;
	letter-spacing: -0.03em;
	filter: drop-shadow(1px 2px 2px #00227E);
}
@media screen and (max-width: 768px) {
  .main-view__message {
    font-size: min(3.2vw, 24px);
		width: min(32vw, 240px);
  }
}
@media screen and (max-width: 499px) {
  .main-view__message {
    font-size: 2.9333vw;
  }
}

.spec {
  margin-bottom: 103px;
}
@media screen and (max-width: 768px) {
  .spec {
    margin-bottom: 12.5333333333vw;
  }
}

.spec__inner {
  border-bottom: 1px solid #fff;
}

.spec__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #fff;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, .6);
  margin-bottom: 46px;
}
@media screen and (max-width: 768px) {
  .spec__title {
    font-size: min(10.6666666667vw, 80px);
    margin-bottom: min(5.0666666667vw, 38px);
  }
}

.spec__img {
  width: 902px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 43px;
}
@media screen and (max-width: 768px) {
  .spec__img {
    width: 85.3333333333vw;
    max-width: none;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: min(5.3333333333vw, 40px);
    margin-bottom: min(6.4vw, 48px);
  }
}

@media screen and (max-width: 768px) {
  .spec__img.spec__img--pc {
    display: none;
  }
}

.spec__img.spec__img--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .spec__img.spec__img--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.spec__caution {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 104px;
  letter-spacing: -0.02em;
  line-height: calc(40 / 24);
}
@media screen and (max-width: 768px) {
  .spec__caution {
    width: 85.3333333333vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 2;
    font-size: min(5.3333333333vw, 40px);
    text-align: center;
    margin-bottom: min(25.8666666667vw, 194px);
  }
}

.tab__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-column-gap: min(2.347826087vw, 27px);
     -moz-column-gap: min(2.347826087vw, 27px);
          column-gap: min(2.347826087vw, 27px);
  width: min(91.0434782609vw, 1047px);
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: -1px;
}
@media screen and (max-width: 768px) {
  .tab__menu {
    -webkit-column-gap: min(2.6666666667vw, 20px);
       -moz-column-gap: min(2.6666666667vw, 20px);
            column-gap: min(2.6666666667vw, 20px);
    width: min(91.2vw, 684px);
  }
}

.tab__item {
  width: min(44.347826087vw, 510px);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .tab__item {
    width: min(44.2666666667vw, 332px);
    max-width: none;
  }
}

.tab-trigger {
  text-align: center;
  cursor: pointer;
  display: block;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.02em;
  padding: 13px 0 17px;
  border-radius: 20px 20px 0px 0px;
  background-color: #E2E2E2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tab-trigger {
    padding: min(3.2vw, 24px) 0 min(2.1333333333vw, 16px);
    border-radius: 10px 10px 0px 0px;
    font-size: min(4.2666666667vw, 32px);
  }
}

.tab-trigger.tab-trigger02 {
  background-color: #E2E2E2;
}

.tab-trigger.is-active {
  padding-bottom: 34px;
	background-color: #fff;
}
@media screen and (max-width: 768px) {
  .tab-trigger.is-active {
    padding-bottom: min(2.9333333333vw, 22px);
  }
}

.tab__contents {
  width: 1087px;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .tab__contents {
    width: min(94.9333333333vw, 712px);
  }
}

.tab__content {
  padding: 20px;
  display: none;
  text-align: left;
  background-color: #fff;
  border-radius: 10px;
}
.tab__content iframe {
  height: 1070px;
}
@media screen and (max-width: 856px) {
  .tab__content iframe {
    height: 1025px;
  }
}
@media screen and (max-width: 768px) {
  .tab__content iframe {
    height: 1150px;
  }
}
@media screen and (max-width: 499px) {
  .tab__content iframe {
    height: 1295px;
  }
}

/* .tab__content.tab__content02 {
  background-color: #E2E2E2;
}
.tab__content.tab__content02 iframe body {
  background-color: #E2E2E2;
} */

.tab__content.is-active {
  display: block;
  -webkit-animation: fade 0.5s ease;
          animation: fade 0.5s ease;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 170px;
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-top: min(12vw, 90px);
  }
}


/* cookie_alert============================================ */
#cookie_alert {
  position: fixed;
  bottom: 0;
  width: 100%;
  color: #000;
  background: #ccc;
  z-index: 1000;
  display: none;
  padding: 30px 20px;
  background-color: rgba(204, 204, 204, 0.9);
}
@media screen and (max-width: 768px) {
  #cookie_alert {
    padding: 15px;
  }
}


#cookie_alert > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  #cookie_alert > div {
    display: block;
  }
}

#cookie_alert > div > .tx {
  width: calc(100% - 300px);
}
@media screen and (max-width: 768px) {
  #cookie_alert > div > .tx {
    width: auto;
  }
}

#cookie_alert > div > .tx .title {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
  /* line-height: 1.2rem; */
}
@media screen and (max-width: 768px) {
  #cookie_alert > div > .tx .title {
    font-size: 16px;
    /* font-size: 1.2rem; */
    line-height: 19.8px;
    /* line-height: 0.99rem; */
  }
}

#cookie_alert > div > .tx * + p {
  margin-top: 15px;
  line-height: 1.4;
  font-size: 16px;
  /* line-height: 24px; */
}
@media screen and (max-width: 768px) {
  #cookie_alert > div > .tx * + p {
    font-size: 12px;
    /* font-size: 0.7rem; */
    /* line-height: 25.2px; */
    line-height: 1.76;
  }
}

#cookie_alert > div > .tx a {
  text-decoration: underline;
}

#cookie_alert > div > .tx a:hover {
  text-decoration: none;
}

#cookie_alert > div > .btn {
  width: 300px;
}
@media screen and (max-width: 768px) {
  #cookie_alert > div > .btn {
    width: auto;
    margin-top: 20px;
  }
}

@media screen and (max-width: 768px) {
  #cookie_alert > div > .btn br {
    display: none;
  }
}

#cookie_alert .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: 10px;
  top: 10px;
  -webkit-transition: opacity 0.2s, background 0.2s;
  transition: opacity 0.2s, background 0.2s;
  cursor: pointer;
}

#cookie_alert .close:hover {
  opacity: 0.7;
}

#cookie_alert .close::before {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #000;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#cookie_alert .close::after {
  content: "";
  display: block;
  position: absolute;
  top: 10px;
  left: 0;
  width: 30px;
  height: 2px;
  background: #000;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#cookie_alert .button {
  margin-top: 20px;
  letter-spacing: -1rem;
}
@media screen and (max-width: 768px) {
  #cookie_alert .button {
    width: 100%;
  }
}


#cookie_alert .button.center {
  text-align: center;
}

@media screen and (max-width: 768px) {
  #cookie_alert .button.column {
    width: auto;
  }
}

#cookie_alert .button.column a {
  min-width: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
#cookie_alert .button a, #cookie_alert .button button {
  position: relative;
  display: inline-block;
  padding: 15px 35px 15px 35px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  /* font-size: 1rem; */
  line-height: 22px;
  /* line-height: 1.1rem; */
  outline: none;
  background-color: #F0F3F5;
  color: #000 !important;
  overflow: hidden;
  border: 1px solid #CDD6DD;
  border-radius: 25px;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: normal;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
#cookie_alert .button a::after, #cookie_alert .button button::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  background: url(../images/arrow_button.svg) no-repeat right 30px center;
  opacity: 0;
}
#cookie_alert .button a:hover, #cookie_alert .button button:hover {
  background: #D22730;
  color: #fff !important;
  opacity: 1 !important;
}
#cookie_alert .button a + a, #cookie_alert .button a + button, #cookie_alert .button button + a, #cookie_alert .button button + button {
  margin-left: 20px;
}
#cookie_alert .button > span {
  display: inline-block;
  min-width: 190px;
  padding: 12px 40px 12px 20px;
  text-align: left;
  text-decoration: none;
  font-size: 16px;
  /* font-size: 1rem; */
  line-height: 22px;
  line-height: 1.1rem;
  outline: none;
  position: relative;
  z-index: 2;
  background-color: #98A6B5;
  color: #fff !important;
  overflow: hidden;
  border-radius: 5px;
  font-weight: 700;
}



/*# sourceMappingURL=styles.css.map */
