@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #1d1d1f;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .main {
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .main {
    overflow: hidden;
  }
}

/* コンテンツ幅
------------------------------*/
.inner {
  width: 1100px;
  max-width: 90%;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding: 0 4.1666666667%;
  }
}

/*------------------------------
header
------------------------------*/
.header {
  padding: min(2.5%, 32px) 0;
  position: absolute;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
}
.header .text {
  margin-top: 3.2894736842%;
  font-size: min(1.5rem, 1.9636363636vw);
  font-weight: 700;
  line-height: 1.2;
  color: #004098;
  font-family: "Roboto", sans-serif;
  padding-left: 11px;
}
@media (max-width: 767px) {
  .header {
    padding: 4.1666666667% 0;
  }
  .header .text {
    font-size: min(1.75rem, 3.6458333333vw);
    padding-left: 0.5em;
    margin-top: 5%;
  }
}

@media (min-width: 768px) {
  .headerInner {
    width: 1280px;
    max-width: 100%;
    padding: 0 min(2.5%, 32px);
  }
}

.headerLogo {
  width: 30.7565789474%;
}
@media (max-width: 767px) {
  .headerLogo {
    width: 34.6805736636%;
  }
}

@media (max-width: 767px) {
  .headerLogoImg {
    margin-left: -1.5645371578vw;
  }
}

/*------------------------------

------------------------------*/
.bgBlue {
  background: #d4eeff;
}

.width-1280 {
  max-width: 1280px;
  margin: 0 auto;
}

/*------------------------------
kv
------------------------------*/
.kv {
  aspect-ratio: 2560/1840;
  width: 100%;
  max-height: 920px;
  position: relative;
  z-index: 300;
  margin: 0 auto;
  overflow: hidden;
}
.kv::before {
  content: "";
  position: absolute;
  background: url(../images/kv_bg.png) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1327/865;
  width: min(1327px, 103.671875vw);
  left: 7%;
  left: calc(min(7%, 80px) + max(0px, (100vw - 1280px) / 2));
  top: min(512px, 40vw);
  -webkit-animation: blurBrightness 4s ease-in-out infinite;
          animation: blurBrightness 4s ease-in-out infinite;
}
@media (min-width: 768px) {
  .kv .inner {
    width: 100%;
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .kv {
    aspect-ratio: 2560/3140;
  }
  .kv::before {
    left: 19%;
    top: 74vw;
    opacity: 0;
  }
}

@-webkit-keyframes blurBrightness {
  0%, 100% {
    filter: blur(0.3px) brightness(1.02);
    opacity: 0.88;
  }
  25% {
    filter: blur(0.8px) brightness(1.12);
    opacity: 0.96;
  }
  50% {
    filter: blur(0.1px) brightness(0.93);
    opacity: 1;
  }
  75% {
    filter: blur(0.7px) brightness(1.08);
    opacity: 0.84;
  }
}

@keyframes blurBrightness {
  0%, 100% {
    filter: blur(0.3px) brightness(1.02);
    opacity: 0.88;
  }
  25% {
    filter: blur(0.8px) brightness(1.12);
    opacity: 0.96;
  }
  50% {
    filter: blur(0.1px) brightness(0.93);
    opacity: 1;
  }
  75% {
    filter: blur(0.7px) brightness(1.08);
    opacity: 0.84;
  }
}
.kvSlide, .kvBody, .kvArrow {
  position: absolute;
  top: 28.7%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95.5%;
}
@media (min-width: 768px) {
  .kvSlide, .kvBody, .kvArrow {
    aspect-ratio: 2445/1591;
    width: min(1220px, 95.3125vw);
    transform: translate(-50.5%, -50%);
  }
}
@media (max-width: 767px) {
  .kvSlide, .kvBody, .kvArrow {
    aspect-ratio: 2445/1591;
    max-width: unset;
    width: min(1222px, 159.1145833333vw);
    top: 42.4vw;
    width: 157%;
    left: 59%;
  }
}

.kvBody {
  z-index: 1000;
}
.kvBody span {
  transition: opacity 2s;
  opacity: 0;
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
  width: 100%;
}
.kvBody span:nth-child(1), .kvBody span:nth-child(3) {
  background: url(../images/kv1_body.png) no-repeat center center/100%;
  aspect-ratio: 1223/796;
}
.kvBody span:nth-child(2), .kvBody span:nth-child(4) {
  background: url(../images/kv2_body.png) no-repeat center center/100%;
  aspect-ratio: 1223/796;
}
@media (max-width: 767px) {
  .kvBody {
    display: none;
  }
}

.kv:has(.kvSlide[data-current="1"]) .kvBody span:nth-child(1) {
  opacity: 1;
}

.kv:has(.kvSlide[data-current="2"]) .kvBody span:nth-child(2) {
  opacity: 1;
}

.kv:has(.kvSlide[data-current="3"]) .kvBody span:nth-child(3) {
  opacity: 1;
}

.kv:has(.kvSlide[data-current="4"]) .kvBody span:nth-child(4) {
  opacity: 1;
}

.kvCatch {
  position: absolute;
  z-index: 2000;
  transition: all 1.2s;
  top: 62%;
  left: calc(min(74.6%, 954.9px) + max(0px, (100vw - 1280px) / 2));
  transform: translate(-50%, -50%);
  width: min(467.1px, 36.4921875vw);
}
@media (max-width: 767px) {
  .kvCatch {
    left: 60%;
    width: 70%;
    top: 82%;
    max-width: unset;
  }
}

.canvas {
  position: absolute;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}

.canvas1 {
  top: 26.5%;
  left: 78.2%;
  width: 28.7%;
}
@media (max-width: 767px) {
  .canvas1 {
    top: 22.2%;
    left: 72.2%;
    width: 28.7%;
  }
}

.canvas2 {
  top: 78.7%;
  left: 29.7%;
  width: 49%;
}
@media (max-width: 767px) {
  .canvas2 {
    top: 74.4%;
    left: 24.3%;
    width: 49%;
  }
}

.kv:has(.kvSlide[data-current="2"]) .kvArrow2,
.kv:has(.kvSlide[data-current="4"]) .kvArrow2 {
  z-index: 1500;
}

/*------------------------------
message
------------------------------*/
.message {
  padding: min(40%, 512px) 0 min(250px, 19.53125vw);
  padding-bottom: 0;
  width: 100%;
  margin-top: max(-36.4%, -466px);
  position: relative;
  overflow: hidden;
}
.message > * {
  position: relative;
  z-index: 100;
}
.message::before {
  content: "";
  position: absolute;
  background: url(../images/message_bg1.webp) no-repeat center center/100%;
  transform: translate(-69%, -50%);
  aspect-ratio: 2202/1397;
  left: 50%;
  top: 920px;
  width: 2202px;
  z-index: 100;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .message::before {
    top: 71.875vw;
    width: 172.03125vw;
  }
}
.message::after {
  content: "";
  position: absolute;
  background: url(../images/message_bg2.webp) no-repeat center center/100%;
  transform: translate(-52%, -50%);
  aspect-ratio: 2095/1364;
  left: 50%;
  top: 1180px;
  width: 2088px;
  z-index: 50;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .message::after {
    top: 92.1875vw;
    width: 163.125vw;
  }
}
@media (max-width: 767px) {
  .message {
    padding-top: 43.5%;
    margin-top: 0;
  }
  .message::before {
    content: "";
    position: absolute;
    background: url(../images/message_bg1_sp.webp) no-repeat center center/100%;
    aspect-ratio: 4628/4397;
    transform: translate(-50%, -50%);
    left: 60%;
    top: 123vw;
    width: 301.171875vw;
    max-width: unset;
  }
  .message::after {
    content: "";
    position: absolute;
    background: url(../images/message_bg2_sp.webp) no-repeat center center/100%;
    transform: translate(-54%, -50%);
    aspect-ratio: 1795/1691;
    left: 50%;
    top: 278vw;
    width: 233.7239583333vw;
    z-index: 50;
  }
}

.messageBg {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 55%;
  z-index: 10;
}

.messageWrapper {
  display: flex;
  justify-content: space-between;
}
.messageWrapper .head {
  width: 32%;
}
.messageWrapper .text {
  color: #fff;
  width: 57.4%;
  font-size: min(1.125rem, 1.4727272727vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .messageWrapper {
    display: block;
  }
  .messageWrapper .head {
    width: 67.3295454545%;
    margin: 0 auto;
  }
  .messageWrapper .text {
    width: 100%;
    margin-top: 13.5%;
    font-size: min(2rem, 4.1666666667vw);
  }
}

/*------------------------------
philosophy
------------------------------*/
.philosophyHead {
  position: relative;
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: min(253px, 19.765625vw);
}
.philosophyHead .head {
  width: 38%;
  font-size: min(2.5rem, 3.2727272727vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: relative;
  padding-top: 0.65em;
  padding-left: 1.5em;
}
.philosophyHead .head .span {
  content: "";
  position: absolute;
  top: 0;
  left: 5%;
  transform: translateY(-14%);
  background: url(../images/index_ex_01.png) no-repeat center center/contain;
  width: 4em;
  aspect-ratio: 304/118;
}
.philosophyHead .text {
  width: 60.4%;
  font-size: min(1.125rem, 1.4727272727vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-right: 9em;
}
@media (max-width: 767px) {
  .philosophyHead {
    display: block;
    margin-top: 96%;
  }
  .philosophyHead .head {
    width: 100%;
    font-size: min(3.625rem, 7.5520833333vw);
    padding-left: 0;
  }
  .philosophyHead .head .span {
    left: -3%;
    width: 2.7em;
    transform: translateY(-4%);
  }
  .philosophyHead .text {
    width: 100%;
    margin-top: 10.4166666667%;
    font-size: min(1.75rem, 3.6458333333vw);
    padding-right: 0;
  }
}

.philosophyDiagram {
  position: relative;
  aspect-ratio: 1100/840;
  width: min(1100px, 85.9375vw);
  min-height: 840px;
  margin: min(49.5px, 3.8671875vw) auto 0;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .philosophyDiagram {
    min-height: 65.625vw;
  }
}
@media (max-width: 767px) {
  .philosophyDiagram {
    min-height: 86.5885416667vw;
  }
}
.philosophyDiagram::before {
  content: "";
  position: absolute;
  background: url(../images/philosophy1.png) no-repeat center center/100%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
  width: 60%;
  left: 50%;
  top: 60.3%;
}
.philosophyDiagram img {
  position: absolute;
  opacity: 0;
}
.philosophyDiagram img:nth-child(1) {
  top: calc(50% - 153px);
  left: 50%;
  width: 47%;
  transform: translate(-50%, -50%);
  aspect-ratio: 1/1;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .philosophyDiagram img:nth-child(1) {
    top: calc(50% - 11.953125vw);
  }
}
@media (max-width: 767px) {
  .philosophyDiagram img:nth-child(1) {
    top: calc(50% - 10.8072916667vw);
  }
}
.philosophyDiagram img:nth-child(2) {
  top: 66%;
  left: 20%;
  width: 47%;
  transform: translate(-70%, -50%);
  aspect-ratio: 1/1;
}
.philosophyDiagram img:nth-child(3) {
  top: 66%;
  left: 80%;
  width: 47%;
  transform: translate(-30%, -50%);
  transition-delay: 200ms;
  aspect-ratio: 1/1;
}
.philosophyDiagram img:nth-child(4) {
  top: 60%;
  left: 50%;
  width: 41%;
  transform: translate(-50%, -40%);
  transition-delay: 300ms;
  aspect-ratio: 451/355.94;
}
.philosophyDiagram .text {
  font-size: min(32px, 2.5vw);
  font-weight: bold;
  position: absolute;
  top: calc(50% + 305px);
  left: 50%;
  transform: translate(-50%, -50%);
  letter-spacing: 0.1em;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .philosophyDiagram .text {
    top: calc(50% + 23.828125vw);
  }
}
@media (max-width: 767px) {
  .philosophyDiagram .text {
    top: calc(50% + 27.8645833333vw);
  }
}
.philosophyDiagram .text span {
  opacity: 0;
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.philosophyDiagram:has(.text.act) img {
  opacity: 1;
  transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}
.philosophyDiagram:has(.text.act) img:nth-child(n) {
  transform: translate(-50%, -50%);
}
.philosophyDiagram:has(.text.act) img:nth-child(2) {
  transition-delay: 100ms;
}
.philosophyDiagram:has(.text.act) img:nth-child(3) {
  transition-delay: 200ms;
}
.philosophyDiagram:has(.text.act) img:nth-child(3) {
  transition-delay: 300ms;
}
.philosophyDiagram:has(.text.act) .text span {
  opacity: 1;
}
@media (max-width: 767px) {
  .philosophyDiagram {
    margin-top: 9.5%;
    width: 100%;
  }
}

/*------------------------------
brandMessage
------------------------------*/
.brandMessage {
  position: relative;
  z-index: 100;
  max-width: 1280px;
  margin: 0 auto;
}
.brandMessage .head {
  text-align: center;
  position: relative;
  padding-top: min(176px, 13.75vw);
}
.brandMessage .head .image {
  width: 49.0909090909%;
  position: relative;
  z-index: 2;
}
.brandMessage .head .span {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -3%);
  font-size: min(10rem, 13.0909090909vw);
  font-weight: 700;
  font-family: "Roboto", sans-serif;
  color: rgba(255, 255, 255, 0.4);
  width: 100%;
}
@media (max-width: 767px) {
  .brandMessage .head {
    padding-top: 47%;
  }
  .brandMessage .head .image {
    width: 76.7045454545%;
  }
  .brandMessage .head .span {
    font-size: min(10rem, 20.8333333333vw);
    width: calc(100% + 1em);
    transform: translate(-50%, 42%);
  }
}

.brandMessageContent {
  max-width: 916px;
  margin: 0 auto;
  margin-top: 3.6363636364%;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 20px;
  padding: 6% 8.6% 4%;
  box-shadow: 0 0 50px rgba(0, 159, 222, 0.6);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.brandMessageContent .text {
  width: 74.1758241758%;
  font-size: min(1.125rem, 1.4727272727vw);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
.brandMessageContent .link {
  cursor: pointer;
  width: 19.7802197802%;
  background: url(../images/index_ex_02.png) no-repeat center center/contain;
  aspect-ratio: 288/288;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.brandMessageContent .link .span {
  font-family: "Roboto", sans-serif;
  font-size: min(1rem, 1.3090909091vw);
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: 0.15em;
  position: relative;
  padding-top: 1em;
  padding-bottom: 1.25em;
}
.brandMessageContent .link .span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: url(../images/index_arrow_01.png) no-repeat center center/contain;
  width: 1.875em;
  aspect-ratio: 60/21;
}
@media (max-width: 767px) {
  .brandMessageContent {
    margin-top: 11.3636363636%;
    padding: 13.2102272727% 9.0909090909% 4.5454545455%;
    display: block;
    border-radius: min(10px, 2.5641025641vw);
  }
  .brandMessageContent .text {
    width: 100%;
    font-size: min(1.75rem, 3.6458333333vw);
    line-height: 2;
  }
  .brandMessageContent .link {
    width: 41.5%;
    margin: 0 auto;
    margin-top: 5%;
  }
  .brandMessageContent .link .span {
    font-size: min(1.625rem, 3.3854166667vw);
  }
}

/*------------------------------
activities
------------------------------*/
.activities {
  padding: min(22%, 282px) 0 min(280px, 21.875vw);
  color: #fff;
  position: relative;
  overflow: hidden;
  background: #fff;
  margin: 0 auto;
  margin-top: max(-7%, -90px);
}
.activities > * {
  position: relative;
  z-index: 10;
}
.activities::before {
  content: "";
  position: absolute;
  background-size: 2120px;
  background-image: url(../images/activities_bg.png);
  background-position: center;
  background-repeat: no-repeat;
  transform: translate(-50%, -50%);
  aspect-ratio: 2085/1928;
  width: 2120px;
  left: 50%;
  top: 50%;
}
@media (min-width: 768px) and (max-width: 1280px) {
  .activities::before {
    background-size: 165.625vw;
  }
}
@media (max-width: 767px) {
  .activities {
    padding: 37% 0 46%;
  }
  .activities::before {
    content: "";
    position: absolute;
    background-image: url(../images/activities_bg_sp.png);
    background-size: 237.2881355932vw;
    background-position: center;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    aspect-ratio: 2085/2280;
    left: 50%;
    top: 84vw;
  }
}

.activitiesHead {
  display: flex;
  justify-content: space-between;
}
.activitiesHead .head {
  width: 34.6363636364%;
  font-size: min(2.5rem, 3.2727272727vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: relative;
  padding-top: 0.85em;
  padding-left: 2.3em;
}
.activitiesHead .head .span {
  content: "";
  position: absolute;
  top: 0;
  left: 14%;
  background: url(../images/index_ex_01.png) no-repeat center center/contain;
  width: 4em;
  aspect-ratio: 304/118;
}
.activitiesHead .text {
  width: 57.6363636364%;
  font-size: min(1.125rem, 1.4727272727vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-right: 6em;
}
@media (max-width: 767px) {
  .activitiesHead {
    display: block;
  }
  .activitiesHead .head {
    width: 100%;
    font-size: min(3.625rem, 7.5520833333vw);
    padding: 0;
  }
  .activitiesHead .head .span {
    left: 2%;
    transform: translateY(-70%);
    width: 2em;
  }
  .activitiesHead .text {
    margin-top: 11.3636363636%;
    width: 100%;
    font-size: min(1.75rem, 3.6458333333vw);
    line-height: 2;
    padding-right: 0;
  }
}

.activitiesCards {
  position: relative;
  margin-top: 6.5%;
  max-width: min(90%, 1100px);
  width: 100%;
  margin-inline: auto;
}
.activitiesCards .activitiesSwiper {
  overflow: unset;
  -webkit-clip-path: inset(0 -50vw 0 0);
          clip-path: inset(0 -50vw 0 0);
}
.activitiesCards .swiper-button-next, .activitiesCards .swiper-button-prev {
  top: unset;
  bottom: unset;
  left: unset;
  right: unset;
  margin: 0;
  height: auto;
  width: auto;
  content: "";
  position: absolute;
  background: #fff;
  aspect-ratio: 112/38;
  width: 3%;
  bottom: -17%;
  -webkit-mask-image: url(../images/index_ex_03.png);
          mask-image: url(../images/index_ex_03.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.activitiesCards .swiper-button-next::after, .activitiesCards .swiper-button-prev::after {
  display: none;
}
.activitiesCards .swiper-button-next.swiper-button-disabled, .activitiesCards .swiper-button-prev.swiper-button-disabled {
  opacity: 0.4;
}
.activitiesCards .swiper-button-next {
  left: 6.5%;
  transform: translate(-50%, 50%);
}
.activitiesCards .swiper-button-prev {
  left: 1.6%;
  transform: translate(-50%, 50%) scale(-1, 1);
}
@media (max-width: 767px) {
  .activitiesCards {
    margin-top: 20.5%;
    width: 96%;
  }
  .activitiesCards .swiper-button-next, .activitiesCards .swiper-button-prev {
    width: 9%;
    bottom: -13%;
  }
  .activitiesCards .swiper-button-next {
    left: 18%;
  }
  .activitiesCards .swiper-button-prev {
    left: 4.6%;
  }
}

.activitiesSwiper {
  overflow: hidden;
}
@media (hover: hover) {
  .activitiesSwiper .swiper-slide:hover {
    opacity: 0.7;
  }
}
@media (min-width: 768px) {
  .activitiesSwiper .swiper-slide {
    padding-right: 24px;
  }
}
@media (max-width: 767px) {
  .activitiesSwiper .swiper-slide {
    padding-right: 20px;
  }
}

.activitiesCard .text {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-top: 1.3em;
}
@media (max-width: 767px) {
  .activitiesCard .text {
    font-size: 3.5897435897vw;
  }
}

.activitiesCardHead {
  position: relative;
  aspect-ratio: 446/280;
}
.activitiesCardHead .span {
  position: absolute;
  top: 8px;
  left: 8px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
  color: #fff;
  background: #009fde;
  border-radius: 400px;
  border: 1px solid #fff;
  padding: 8px;
}
@media (max-width: 767px) {
  .activitiesCardHead .span {
    top: 2%;
    left: 2%;
    padding: 0.4em 0.5em;
  }
}

.activitiesCardLink {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 64px;
}
@media (max-width: 767px) {
  .activitiesCardLink {
    bottom: 6%;
    right: 3%;
    width: 14%;
  }
}

/*------------------------------
footer
------------------------------*/
.footerContent {
  padding: min(10px, 0.78125vw) 0 min(3%, 40px);
}
@media (max-width: 767px) {
  .footerContent {
    padding: 1.5% 0 4.5454545455%;
  }
}

.footerLogo {
  width: 50.7272727273%;
}
@media (min-width: 768px) {
  .footerLogo {
    transform: translateX(-3%);
  }
}
@media (max-width: 767px) {
  .footerLogo {
    width: 79.2613636364%;
  }
}

.footerMenu {
  display: flex;
  margin-top: 9.0909090909%;
}
.footerMenu .list:nth-child(n+2) {
  margin-left: 5.0909090909%;
}
.footerMenu .list .link {
  display: inline-block;
  font-size: min(0.875rem, 1.1454545455vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .footerMenu {
    display: block;
    margin-top: 10%;
  }
  .footerMenu .list:nth-child(n+2) {
    margin-left: 0;
    margin-top: 7.9545454545%;
  }
  .footerMenu .list .link {
    font-size: min(1.75rem, 3.6458333333vw);
  }
}

.footerSubmenu {
  margin-top: 7.2727272727%;
  display: flex;
}
.footerSubmenu .list:first-child .link {
  padding-left: 0;
}
.footerSubmenu .list:last-child .link {
  padding-right: 0;
}
.footerSubmenu .list:not(:last-child) {
  position: relative;
}
.footerSubmenu .list:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  background: #443F3F;
  width: 1px;
  height: 50%;
}
.footerSubmenu .list .link {
  display: inline-block;
  font-size: min(0.75rem, 0.9818181818vw);
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.1em;
  padding: 0 1.7em;
}
@media (max-width: 767px) {
  .footerSubmenu {
    margin-top: 10%;
    flex-wrap: wrap;
    justify-content: center;
    line-height: 2.1;
  }
  .footerSubmenu .list:nth-child(2n)::after {
    display: none;
  }
  .footerSubmenu .list .link {
    font-size: min(1.5rem, 3.125vw);
    padding: 0 2em;
  }
}

.footerBottom {
  background: #1d1d1f;
  padding: 22px 0;
  font-family: "Roboto", sans-serif;
}
@media (max-width: 767px) {
  .footerBottom {
    padding: 6.3920454545%;
    background: #443f3f;
    padding: 3%;
  }
}

.footerWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footerCopyright {
  font-size: min(0.75rem, 0.9818181818vw);
  font-weight: 400;
  line-height: 1;
  color: #fff;
}
@media (max-width: 767px) {
  .footerCopyright {
    font-size: min(1.25rem, 2.6041666667vw);
  }
}

.pageTop {
  font-size: min(0.75rem, 0.9818181818vw);
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  position: relative;
  width: 6.8em;
}
.pageTop::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0em;
  transform: translateY(-50%) rotate(-90deg);
  -webkit-mask-image: url(../images/index_arrow_01.png);
          mask-image: url(../images/index_arrow_01.png);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: #fff;
  width: 2em;
  aspect-ratio: 60/21;
}
@media (min-width: 768px) {
  .pageTop {
    transform: translateX(13%);
  }
}
@media (max-width: 767px) {
  .pageTop {
    font-size: min(1.5rem, 3.125vw);
    transform: translateX(20%);
    width: 4.9em;
    white-space: nowrap;
  }
  .pageTop::after {
    width: 1.667em;
  }
}

.corporateLink {
  position: fixed;
  top: min(200px, 15.625vw);
  right: 0;
  width: min(56px, 4.375vw);
  z-index: 2000;
  transform: translate(100%, 0);
}
@media (max-width: 767px) {
  .corporateLink {
    top: unset;
    width: min(440px, 57.2916666667vw);
    bottom: 10px;
  }
  .corporateLink.act {
    opacity: 0;
    pointer-events: none;
  }
}

#fadeWrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fadeWrap img:not(.act-transition) {
  opacity: 0;
}

.fade:not(.nofade) {
  opacity: 0;
}

.commentOut {
  display: none;
}

.brandMessage:has(+ .commentOut) {
  padding-bottom: min(150px, 11.7vw);
}

.main:has(.activities.commentOut) + .footer {
  padding-top: min(55px, 4.3vw);
}

/*------------------------------
modal
------------------------------*/
.modal .text1 {
  font-size: min(0.875rem, 1.09375vw);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.01em;
}
@media (min-width: 768px) {
  .modal .inner {
    width: 89%;
    max-width: 100%;
  }
}

.modalIntro {
  background: url(../img/dec.png) no-repeat center center/100%;
  color: #fff;
  text-align: center;
  margin-bottom: 14%;
}
.modalIntro .heading {
  font-size: min(2.5rem, 3.125vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  margin-left: -1em;
}
.modalIntro .text {
  text-align: left;
  font-size: min(0.875rem, 1.09375vw);
  margin-top: 5.7em;
  line-height: 1.8;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .modalIntro {
    margin-bottom: 31%;
  }
  .modalIntro .heading {
    font-size: 7.5520833333vw;
    margin-left: 0;
  }
  .modalIntro .text {
    font-size: 3.6458333333vw;
    line-height: 2;
    margin-top: 2.9em;
  }
}

.modalSection:nth-child(2) {
  margin-top: 5.0739957717%;
}
.modalSection .heading {
  font-size: min(2.5rem, 3.125vw);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.1em;
  position: relative;
  padding-top: 0.65em;
}
.modalSection .heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: -0.9em;
  transform: translateY(-16%);
  background: url(../images/index_ex_01.png) no-repeat center center/contain;
  width: 4em;
  aspect-ratio: 304/118;
}
.modalSection .text1 {
  margin-top: 3.2em;
  font-size: min(0.875rem, 1.09375vw);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.1em;
}
.modalSection .figure {
  max-width: 687px;
  aspect-ratio: 687/403;
  margin-top: 2em;
  margin-inline: auto;
}
.modalSection .text2 {
  margin-top: 3em;
  font-size: min(1rem, 1.25vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  text-align: center;
}
@media (max-width: 767px) {
  .modalSection .heading {
    font-size: 7.5520833333vw;
  }
  .modalSection .heading::before {
    transform: translateY(34%);
    width: 2.6em;
  }
  .modalSection .text1 {
    font-size: 3.6458333333vw;
  }
  .modalSection .text1-2 {
    margin-top: 2em;
  }
  .modalSection .text2 {
    font-size: 3.6458333333vw;
    margin-top: 2em;
    text-align: left;
  }
}

.modalBlock {
  margin-top: 4.2283298097%;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 0 50px -12px #009fde;
  padding: 3.1712473573% 7.399577167% 5%;
}
.modalBlock .label {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: min(0.75rem, 0.9375vw);
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #fff;
  text-align: center;
  background: #009fde;
  border-radius: 400px;
  padding: 0.65em 6em;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .modalBlock {
    border-radius: 2.6041666667vw;
    margin-top: 11%;
    padding: 5% 7.399577167% 8%;
  }
  .modalBlock .label {
    font-size: 3.125vw;
    padding: 0.4em 0.6em;
    width: 100%;
  }
}

.modalWrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 3%;
}
.modalWrapper .logo {
  width: 45%;
}
.modalWrapper .text4 {
  width: 46%;
  font-size: min(0.875rem, 1.09375vw);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  color: #009fde;
}
@media (max-width: 767px) {
  .modalWrapper {
    display: block;
  }
  .modalWrapper .logo {
    width: 99%;
    margin-top: 17%;
  }
  .modalWrapper .text4 {
    font-size: 3.6458333333vw;
    width: 100%;
    margin-top: 2.9em;
    letter-spacing: 0.08em;
  }
}

.modalContent {
  scrollbar-width: none;
  padding: min(6.3%, 80px) min(3%, 38.5px);
  border-radius: 20px;
  background: #fff;
  -webkit-backdrop-filter: blur(4.65px);
          backdrop-filter: blur(4.65px);
  position: relative;
  overscroll-behavior-y: none;
  box-shadow: 0px 0px 50px -12px #009fde;
  overflow: clip;
}
.modalContent::-webkit-scrollbar {
  display: none;
}
.modalContent::before {
  content: "";
  position: absolute;
  background: url(../images/modal-intro.png) no-repeat;
  aspect-ratio: 1104/1136;
  transform: translate(-50%, 0%);
  width: 100%;
  left: 50%;
  top: 0%;
}
.modalContent > * {
  position: relative;
}
@media (max-width: 767px) {
  .modalContent {
    border-radius: 2.6041666667vw;
    padding: 16% 5% 11%;
  }
  .modalContent::before {
    background: url(../images/modal-intro_sp.png) no-repeat center center/100%;
    aspect-ratio: 704/1591;
  }
}

.modalContentWrap {
  scrollbar-width: none;
  overflow: scroll;
  overflow-x: hidden;
  position: relative;
  top: 0;
  width: 94%;
  max-width: 1203.2px;
  max-height: 100%;
  padding: min(38px, 2.96875vw) min(52px, 4.0625vw);
}
.modalContentWrap::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .modalContentWrap {
    padding: 8%;
  }
}

#popup-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: #d4eeff;
  display: none;
  justify-content: center;
  z-index: 9999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 767px) {
  #popup-overlay {
    width: 118%;
  }
}

#popup-overlay.active {
  display: flex;
  align-items: flex-start;
}

#popup-image {
  width: 90%;
  max-width: 90%;
  max-height: 90%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (min-width: 768px) {
  .popup-close-btn {
    position: absolute;
    background: transparent;
    border: none;
    font-size: 30px;
    color: white;
    cursor: pointer;
    z-index: 10000;
    right: calc(min(1%, 12.8px) + max((100vw - 1280px) / 2, 0px));
    width: 5%;
    max-width: 64px;
    top: 40px;
  }
}
@media (max-width: 767px) {
  .popup-close-btn {
    width: 12%;
    max-width: 47px;
    display: block;
    margin-left: auto;
    margin-bottom: 20px;
  }
}

@media (max-width: 767px) {
  .popup-close-btn2 {
    position: relative;
    width: 15%;
    display: block;
    margin-top: 9%;
    margin-left: auto;
    margin-right: 3.8%;
  }
  .popup-close-btn2 .close-text {
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(-125%, -50%);
    font-size: 3.3854166667vw;
  }
}

body:has(.modal.active) {
  overflow: hidden;
}

/*------------------------------
ストライプ
------------------------------*/
.stripe {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: min(24px, 1.875vw);
       column-gap: min(24px, 1.875vw);
  margin-inline: auto;
  padding-inline: 88px;
  pointer-events: none;
}

@media (max-width: 767px) {
  .stripe {
    max-width: min(704px, 100%);
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: min(16px, 2.0833333333vw);
         column-gap: min(16px, 2.0833333333vw);
    padding-inline: 4.1666666667vw;
  }
  .stripeItem:nth-child(n+5) {
    display: none;
  }
}
.stripeItem {
  background-color: rgba(178, 178, 178, 0.1);
}
/*# sourceMappingURL=style.css.map */