@charset "UTF-8";
:root {
  --color-text: #231e46;
  --color-textBlue: #00a4b4;
  --color-bgBlue: #e5f7f9;
  --color-white: #fff;
}

*,
::before,
::after {
  --clamp-root-font-size: var(--root-em-size, 16);
  --clamp-slope: calc((var(--clamp-max) - var(--clamp-min)) / (var(--clamp-viewport-max) - var(--clamp-viewport-min)));
  --clamp-y-axis-intersection: calc(var(--clamp-min) - (var(--clamp-slope) * var(--clamp-viewport-min)));
  --clamp-preffered-value: calc(
    var(--clamp-y-axis-intersection) * (1rem / var(--clamp-root-font-size)) + (var(--clamp-slope) * 100vi)
  );
  --clamp: clamp(
    calc(var(--clamp-min) * (1rem / var(--clamp-root-font-size))),
    var(--clamp-preffered-value),
    calc(var(--clamp-max) * (1rem / var(--clamp-root-font-size)))
  );
}

/* bodyにデフォルト値を設定する */
body {
  --clamp-viewport-min: 375;
  --clamp-viewport-max: 1200;
  --clamp-min: 14;
  --clamp-max: 16;
}

html, body {
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", "Fira Sans", sans-serif;
  font-weight: 400;
  color: var(--color-text);
  box-sizing: border-box;
}

body * {
  box-sizing: border-box;
}

h1, h2 {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

a {
  text-decoration: none;
  color: var(--color-text);
}

p {
  margin: 0;
}

.heading2 {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  letter-spacing: 0.025em;
  --clamp-min: 70;
  --clamp-max: 80;
  --clamp-viewport-min: 576;
  --clamp-viewport-max: 992;
  font-size: var(--clamp);
}
.heading2::first-letter {
  color: var(--color-textBlue);
}

.subHeading {
  font-size: 1.125rem;
  font-weight: 500;
}

.siteHeader {
  grid-template-columns: auto 1fr auto;
  padding: 25px 30px;
  width: 100%;
  box-sizing: border-box;
  position: fixed;
  z-index: 1000;
}

.gNav {
  position: absolute;
  left: 50%;
  top: 33px;
  transform: translateX(-50%);
}

@media screen and (max-width: 1200px) {
  .gNav {
    display: none;
  }
}
.spNavTrigger {
  display: none;
  z-index: 100;
}

@media screen and (max-width: 1200px) {
  .spNavTrigger {
    display: block;
    width: 40px;
    height: 40px;
    position: absolute;
    top: 30px;
    right: 30px;
  }
  .spNavTrigger::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    position: absolute;
    top: 13px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s ease-out;
  }
  .spNavTrigger::after {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: var(--color-text);
    position: absolute;
    bottom: 13px;
    left: 50%;
    transform: translateX(-50%);
    transition: transform 0.4s ease-out;
  }
}
@media screen and (max-width: 1200px) {
  .spNavTrigger.active::before {
    top: 50%;
    transform: translate(-50%, -50%) rotate(525deg);
  }
  .spNavTrigger.active::after {
    top: 50%;
    transform: translate(-50%, -50%) rotate(555deg);
  }
}
.gNav__list {
  display: flex;
  gap: 50px;
  align-items: center;
  justify-content: center;
}

.gNav__link {
  font-family: "Fira Sans", sans-serif;
  font-weight: 400;
  position: relative;
}
.gNav__link::after {
  display: block;
  content: "";
  width: 7px;
  height: 7px;
  background-color: var(--color-textBlue);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  bottom: -13px;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.2s;
}

@media (any-hover: hover) {
  .gNav__link:hover::after {
    opacity: 1;
  }
}
.gNavSp {
  display: none;
}

@media screen and (max-width: 1200px) {
  .gNavSp {
    display: block;
    background-color: var(--color-white);
    opacity: 0.95;
    padding: 100px 30px 30px 30px;
    width: 200px;
    height: 100vh;
    position: absolute;
    top: 0;
    right: -220px;
    opacity: 0.3;
    transition: opacity 0.3s, right 0.3s;
  }
}
@media screen and (max-width: 1200px) {
  .gNavSp.active {
    display: block;
    background-color: var(--color-white);
    opacity: 0.95;
    top: 0;
    right: 0;
  }
}
.gNav__itemSp {
  margin-bottom: 25px;
  text-align: right;
}

.gNav__linkSp {
  transition: opacity 0.2s;
}

@media (any-hover: hover) {
  .gNav__linkSp:hover {
    opacity: 0.6;
  }
}
.anniversaryLogoWrapper {
  position: absolute;
  top: 25px;
  right: 30px;
  animation: logoSpin 4s infinite;
}

@media screen and (max-width: 1200px) {
  .anniversaryLogoWrapper {
    display: none;
  }
}
@keyframes logoSpin {
  0% {
    animation-play-stat: paused;
  }
  25% {
    transform: rotateY(0deg);
  }
  100% {
    transform: rotateY(360deg);
  }
}
.background {
  margin-top: -11px;
  margin-bottom: -3px;
  padding: 150px 0;
  background-color: var(--color-bgBlue);
  position: relative;
}

@media screen and (max-width: 992px) {
  .background {
    padding: 90px 0;
  }
}
.waveWrapper--top {
  margin-top: 170px;
}

@media screen and (max-width: 992px) {
  .waveWrapper--top {
    margin-top: 100px;
  }
}
.waveWrapper--bottom {
  margin-bottom: 150px;
}

@media screen and (max-width: 992px) {
  .waveWrapper--bottom {
    margin-bottom: 80px;
  }
}
.waveImg {
  width: 100%;
  height: auto;
}

.waveImg--bottom {
  transform: scale(-1);
}

.fvArea {
  background: linear-gradient(#c7f4ff, #fff);
  height: 100vh;
  position: relative;
}

@media screen and (max-width: 992px) {
  .fvArea {
    height: auto;
    overflow: hidden;
  }
}
.fvDecoration {
  position: absolute;
  top: -3%;
  left: 2%;
}

@media screen and (max-width: 1500px) {
  .fvDecoration {
    width: 90%;
  }
}
@media screen and (max-width: 992px) {
  .fvDecoration {
    width: auto;
  }
}
@media screen and (max-width: 992px) {
  .fvBackgroundWrapper {
    display: none;
  }
}
.fvBackground {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .fvImgContainer {
    display: grid;
    gap: 0 60px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: auto;
    padding-top: 150px;
    overflow: hidden;
  }
}
@media screen and (max-width: 576px) {
  .fvImgContainer {
    display: grid;
    gap: 0 60px;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(2, 1fr);
    height: auto;
    padding-top: 150px;
    overflow: hidden;
  }
}
.fvImgWrapper {
  position: absolute;
  z-index: 10;
}

@media screen and (max-width: 992px) {
  .fvImgWrapper {
    position: static;
  }
}
.fvImgWrapper--logo {
  top: 19%;
  left: 16%;
}

@media screen and (max-width: 1500px) {
  .fvImgWrapper--logo {
    top: 15%;
    left: 10%;
    width: 330px;
  }
}
@media screen and (max-width: 992px) {
  .fvImgWrapper--logo {
    margin-left: 60px;
  }
}
@media screen and (max-width: 576px) {
  .fvImgWrapper--logo {
    margin-left: 0;
    justify-self: center;
    width: 280px;
  }
}
.fvImgWrapper--01 {
  top: 13%;
  right: 22%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--01 {
    width: 404px;
  }
}
@media screen and (max-width: 1200px) {
  .fvImgWrapper--01 {
    right: 8%;
  }
}
@media screen and (max-width: 992px) {
  .fvImgWrapper--01 {
    display: none;
  }
}
.fvImgWrapper--02 {
  top: 25%;
  right: 5%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--02 {
    width: 152px;
  }
}
@media screen and (max-width: 1200px) {
  .fvImgWrapper--02 {
    display: none;
  }
}
.fvImgWrapper--03 {
  right: 12%;
  bottom: 2%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--03 {
    width: 353px;
    right: 3%;
  }
}
@media screen and (max-width: 992px) {
  .fvImgWrapper--03 {
    order: 2;
    width: 365px;
    margin-top: -60px;
    margin-left: -30px;
  }
}
@media screen and (max-width: 576px) {
  .fvImgWrapper--03 {
    order: 2;
    width: 295px;
    margin-top: 60px;
    margin-left: 25px;
  }
}
.fvImgWrapper--04 {
  right: 44%;
  bottom: 18%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--04 {
    width: 135px;
    right: 37%;
  }
}
@media screen and (max-width: 1200px) {
  .fvImgWrapper--04 {
    left: 40%;
  }
}
@media screen and (max-width: 992px) {
  .fvImgWrapper--04 {
    order: 3;
    width: 250px;
    margin-left: -50px;
    margin-top: 100px;
  }
}
@media screen and (max-width: 576px) {
  .fvImgWrapper--04 {
    justify-self: end;
    order: 3;
    width: 220px;
    margin-right: 30px;
    margin-top: 60px;
  }
}
.fvImgWrapper--05 {
  left: 22%;
  bottom: -3%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--05 {
    width: 271px;
  }
}
@media screen and (max-width: 1600px) {
  .fvImgWrapper--05 {
    width: 271px;
  }
}
@media screen and (max-width: 1200px) {
  .fvImgWrapper--05 {
    left: 5%;
  }
}
@media screen and (max-width: 992px) {
  .fvImgWrapper--05 {
    order: 1;
    width: 450px;
    margin-top: 200px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 576px) {
  .fvImgWrapper--05 {
    justify-self: end;
    margin-top: 45px;
    width: 350px;
  }
}
.fvImgWrapper--06 {
  left: 5%;
  bottom: 9%;
}

@media screen and (max-width: 1600px) {
  .fvImgWrapper--06 {
    width: 135px;
  }
}
@media screen and (max-width: 1200px) {
  .fvImgWrapper--06 {
    display: none;
  }
}
.fvImg {
  border-radius: 10px;
  width: 100%;
}

.scrollDown {
  position: absolute;
  bottom: 0px;
  left: 50%;
  transform: translateX(-50%);
}
.scrollDown::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -5px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-textBlue);
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.scrollDown::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1.5px;
  height: 125px;
  background: #000;
}

@media screen and (max-width: 992px) {
  .scrollDown {
    display: none;
  }
}
.scrollDown span {
  position: absolute;
  left: 7px;
  bottom: 54px;
  color: #000;
  font-size: 1.125rem;
  font-family: "Fira Sans", sans-serif;
  letter-spacing: 0.1em;
  writing-mode: vertical-lr;
  text-decoration: none;
  text-transform: uppercase;
}

@keyframes circlemove {
  0% {
    bottom: 120px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.introArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  margin: 0 auto;
  margin-top: 170px;
}
.introArea::before {
  display: block;
  content: "";
  width: 415px;
  max-width: 100%;
  height: 1170px;
  background-image: url("../img/anniversary/confetti1.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 0;
}
.introArea::after {
  display: block;
  content: "";
  width: 431px;
  height: 1190px;
  background-image: url("../img/anniversary/confetti2.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 992px) {
  .introArea {
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .introArea {
    margin-top: 100px;
  }
}
.introHeader {
  margin-bottom: 30px;
  z-index: 10;
}

@media screen and (max-width: 992px) {
  .introHeader {
    margin-bottom: 0;
  }
}
.iwaiLogoWrapper {
  text-align: center;
}

.introTitle {
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.introTitle--en {
  font-size: 1.875rem;
  font-weight: 600;
}

.introTitle--ja {
  font-size: 3.125rem;
  color: var(--color-textBlue);
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.85);
}

.introText {
  font-size: 1.125rem;
  padding: 0 15px;
  padding-top: 30px;
  text-align: center;
  line-height: 1.75;
  background-color: rgba(255, 255, 255, 0.85);
  z-index: 10;
}

.aboutLogo {
  display: flex;
  align-items: center;
  gap: 45px;
  background-color: var(--color-bgBlue);
  border-radius: 10px;
  padding: 40px 50px;
  margin-top: 100px;
  width: min(930px, 100% - 30px);
  z-index: 10;
}

@media screen and (max-width: 992px) {
  .aboutLogo {
    margin-top: 60px;
  }
}
@media screen and (max-width: 768px) {
  .aboutLogo {
    flex-direction: column;
    gap: 30px;
    padding: 35px 30px 30px 30px;
  }
}
.aboutLogo__title {
  font-size: 1.5rem;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .aboutLogo__title {
    margin-bottom: 20px;
    text-align: center;
  }
}
.aboutLogo__text {
  line-height: 1.75;
}

.separator {
  width: 100%;
  height: 100vh;
  margin-top: 200px;
  margin-bottom: 190px;
  position: relative;
}

@media screen and (max-width: 1400px) {
  .separator {
    overflow: hidden;
  }
}
@media screen and (max-width: 992px) {
  .separator {
    display: flex;
    flex-direction: column;
    height: auto;
    margin-top: 120px;
    margin-bottom: 100px;
  }
}
.separatorImgWrapper {
  position: absolute;
}

@media screen and (max-width: 992px) {
  .separatorImgWrapper {
    position: static;
  }
}
.separatorImgWrapper--01 {
  top: 0;
  left: 8%;
}

@media screen and (max-width: 1700px) {
  .separatorImgWrapper--01 {
    width: 495px;
  }
}
@media screen and (max-width: 1400px) {
  .separatorImgWrapper--01 {
    left: -30px;
  }
}
@media screen and (max-width: 1200px) {
  .separatorImgWrapper--01 {
    width: 433px;
  }
}
@media screen and (max-width: 992px) {
  .separatorImgWrapper--01 {
    margin-left: -30px;
  }
}
@media screen and (max-width: 576px) {
  .separatorImgWrapper--01 {
    width: 346px;
  }
}
.separatorImgWrapper--02 {
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1700px) {
  .separatorImgWrapper--02 {
    width: 625px;
  }
}
@media screen and (max-width: 1400px) {
  .separatorImgWrapper--02 {
    right: -30px;
  }
}
@media screen and (max-width: 1200px) {
  .separatorImgWrapper--02 {
    width: 547px;
    right: -30px;
  }
}
@media screen and (max-width: 992px) {
  .separatorImgWrapper--02 {
    transform: none;
    align-self: flex-end;
    margin: 60px 0 80px;
    margin-right: -30px;
  }
}
@media screen and (max-width: 576px) {
  .separatorImgWrapper--02 {
    width: 438px;
    max-width: 100%;
  }
}
.separatorImgWrapper--03 {
  bottom: 0;
  left: 25%;
}

@media screen and (max-width: 1700px) {
  .separatorImgWrapper--03 {
    width: 292px;
  }
}
@media screen and (max-width: 1400px) {
  .separatorImgWrapper--03 {
    left: 15%;
  }
}
@media screen and (max-width: 992px) {
  .separatorImgWrapper--03 {
    margin-left: 50px;
  }
}
@media screen and (max-width: 576px) {
  .separatorImgWrapper--03 {
    width: 205px;
  }
}
.separatorImg {
  border-radius: 10px;
}

@media screen and (max-width: 1700px) {
  .separatorImg {
    width: 100%;
  }
}
.messageArea {
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.message {
  width: min(1200px, 100% - 30px);
  margin: 0 auto;
}

.messageFlex {
  display: flex;
  gap: 40px;
  justify-content: space-between;
  margin-top: 45px;
}

@media screen and (max-width: 768px) {
  .messageFlex {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 1200px) {
  .messageTextWrapper {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .messageTextWrapper {
    width: 100%;
  }
}
.messageTitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 60px;
}

@media screen and (max-width: 1200px) {
  .messageTitle {
    margin-bottom: 40px;
  }
}
.messageText {
  margin-top: 30px;
}

@media screen and (max-width: 1200px) {
  .messageText {
    margin-top: 20px;
  }
}
.messageImgWrapper {
  margin-top: 15px;
  position: relative;
}
.messageImgWrapper::after {
  display: block;
  content: "";
  background-image: url("../img/anniversary/message_decoration.png");
  width: 279px;
  height: 344px;
  position: absolute;
  bottom: 30px;
  right: -80px;
}

@media screen and (max-width: 1200px) {
  .messageImgWrapper {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .messageImgWrapper {
    width: 100%;
  }
}
@media screen and (max-width: 1060px) {
  .messageImgWrapper::after {
    display: none;
  }
}
.messageImg {
  border-radius: 15px;
}

@media screen and (max-width: 1200px) {
  .messageImg {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .messageImg {
    display: none;
  }
}
.messageImgSp {
  display: none;
}

@media screen and (max-width: 768px) {
  .messageImgSp {
    display: block;
    max-width: 100%;
    border-radius: 15px;
  }
}
.messageDate {
  margin-top: 60px;
}

@media screen and (max-width: 1200px) {
  .messageDate {
    margin-top: 40px;
  }
}
.messageSign {
  font-weight: 500;
  margin-top: 10px;
}

.messageSign--name {
  font-size: 1.5rem;
  margin-left: 15px;
}

.historyArea {
  overflow: hidden;
  margin-top: -90px;
  padding-top: 90px;
}

.history {
  width: min(1200px, 100% - 30px);
  margin: 0 auto;
  position: relative;
}

.historyArrowBox {
  display: flex;
  gap: 20px;
  position: absolute;
  top: 60px;
  right: 0;
}

@media screen and (max-width: 576px) {
  .historyArrowBox {
    gap: 10px;
    position: static;
    margin-top: 30px;
  }
}
.historySlider__arrow {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-image: radial-gradient(circle at 50% 0, var(--color-textBlue) 0%, var(--color-textBlue) 70%, #007b90 70%, #007b90 100%);
  background-size: 100% 350%;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  font-size: 1rem;
  transition: background-position 0.6s;
  cursor: pointer;
}
.historySlider__arrow:hover {
  background-position: 50% 100%;
}

.historySlider__arrow--prev {
  position: relative;
}
.historySlider__arrow--prev::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3.5px solid var(--color-white);
  border-right: transparent;
  border-bottom: transparent;
  border-left: 3.5px solid var(--color-white);
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.historySlider__arrow--next {
  position: relative;
}
.historySlider__arrow--next::after {
  display: block;
  content: "";
  width: 11px;
  height: 11px;
  border-top: 3.5px solid var(--color-white);
  border-right: 3.5px solid var(--color-white);
  border-bottom: transparent;
  border-left: transparent;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 45%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.historySlider .slick-list {
  margin-right: calc(50% - 50vw);
  padding-right: 60px;
}

.historyContent {
  display: flex;
  border-top: 1px solid var(--color-text);
  margin-top: 60px;
  position: relative;
}
.historyContent::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-color: var(--color-textBlue);
  border-radius: 50%;
  position: absolute;
  top: -10px;
  left: 20px;
}
.historyContent::after {
  display: block;
  content: "";
  width: 2px;
  height: 30px;
  background-color: var(--color-textBlue);
  position: absolute;
  top: 0;
  left: 29px;
}

.historyCard {
  display: flex;
  flex-direction: column;
  min-height: 175px;
  background-color: var(--color-white);
  border-radius: 10px;
  margin-top: 30px;
  margin-right: 60px;
  padding: 40px;
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .historyCard {
    padding: 30px;
    margin-right: 30px;
  }
}
.historyYear {
  font-weight: 500;
  font-size: 3.4375rem;
  font-family: "Fira Sans", sans-serif;
  color: var(--color-textBlue);
  letter-spacing: 0.025em;
}

.historyText {
  margin-top: 15px;
  font-size: 1.125rem;
  padding-left: 10px;
  position: relative;
}
.historyText::before {
  display: block;
  content: "";
  width: 5px;
  height: 5px;
  background-color: var(--color-text);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.75rem;
}

.isoArea {
  display: flex;
  background-color: rgba(100, 204, 210, 0.93);
  width: min(1200px, 100% - 30px);
  background-image: url("");
  background-size: cover;
  padding: 45px 60px 50px 60px;
  box-sizing: border-box;
  border-radius: 20px;
  margin: 0 auto;
  margin-top: 180px;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .isoArea {
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  .isoArea {
    flex-direction: column-reverse;
    align-items: center;
    padding: 30px;
  }
}
.isoSpacer {
  width: 50%;
  position: relative;
}

@media screen and (max-width: 768px) {
  .isoSpacer {
    width: auto;
    margin-top: 30px;
  }
}
.isoImgWrapper {
  position: absolute;
  left: -25px;
  top: -150px;
}

@media screen and (max-width: 1200px) {
  .isoImgWrapper {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 768px) {
  .isoImgWrapper {
    position: static;
    transform: none;
  }
}
.isoImg {
  width: 100%;
}

@media screen and (max-width: 1200px) {
  .isoImg {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .isoImg {
    width: 100%;
  }
}
.isoTextArea {
  width: 50%;
}

@media screen and (max-width: 768px) {
  .isoTextArea {
    width: 100%;
    text-align: center;
  }
}
.isoTitle {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 25px;
}

.isoText {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-top: 20px;
  text-align: left;
}

.isoBg {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.sectionTextWrapper {
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 170px 0;
}

@media screen and (max-width: 992px) {
  .sectionTextWrapper {
    margin: 130px 0;
  }
}
.loopText {
  animation: loopText 60s linear infinite;
}

@keyframes loopText {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
.businessArea {
  text-align: center;
  margin-top: -90px;
  padding-top: 90px;
}

.businessIntro {
  margin-top: 60px;
  font-size: 1.25rem;
  line-height: 1.75;
  padding: 0 15px;
}

.businessGrid {
  display: grid;
  grid-template-columns: repeat(3, auto);
  width: min(1000px, 100% - 30px);
  gap: 50px 40px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (max-width: 992px) {
  .businessGrid {
    grid-template-columns: repeat(2, auto);
    gap: 30px 25px;
  }
}
@media screen and (max-width: 576px) {
  .businessGrid {
    grid-template-columns: repeat(1, auto);
    gap: 20px 15px;
  }
}
.businessCard {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: #6fccd2;
  padding: 40px 30px 30px 30px;
  border-radius: 10px;
  position: relative;
}
.businessCard::before {
  display: block;
  content: "";
  width: 37px;
  height: 50px;
  background-image: url("../img/anniversary/business_decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 35px;
  left: -12px;
}

.businessCard__iconWrapper {
  width: 162px;
  height: 162px;
  background-color: #effafb;
  border-radius: 50%;
  position: relative;
}

.businessCard__number {
  font-size: 4rem;
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  position: absolute;
  top: -25px;
  left: -20px;
}

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

.businessCard__title {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 20px;
}

.businessCard__text {
  font-weight: 500;
  text-align: left;
  margin-top: 20px;
}

.sectionSlider {
  margin: 200px 0;
}

@media screen and (max-width: 992px) {
  .sectionSlider {
    margin: 130px 0;
  }
}
@media screen and (max-width: 576px) {
  .sectionSlider {
    margin: 100px 0;
  }
}
.sectionSlider .slick-slide {
  margin-left: 40px;
  max-width: 741px;
}

@media screen and (max-width: 992px) {
  .sectionSlider .slick-slide {
    margin-left: 30px;
  }
}
.sectionSlider .slick-slide img {
  width: 100%;
}

.pickupArea {
  width: min(1200px, 100% - 30px);
  margin: 0 auto;
  margin-top: -90px;
  padding-top: 90px;
}

.pickupFlex {
  display: flex;
  gap: 40px;
  margin-top: 60px;
}

@media screen and (max-width: 992px) {
  .pickupFlex {
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .pickupFlex {
    flex-direction: column;
    gap: 30px;
  }
}
.pickupCard {
  width: 50%;
  background-color: var(--color-white);
  padding: 40px 40px 45px 40px;
  border-radius: 15px;
}

@media screen and (max-width: 992px) {
  .pickupCard {
    padding: 30px 30px 35px 30px;
  }
}
@media screen and (max-width: 768px) {
  .pickupCard {
    width: 100%;
  }
}
.pickupImg {
  border-radius: 10px;
  width: 100%;
}

.pickupTitle {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 20px;
}

.pickupText {
  margin-top: 20px;
}

.linkButton {
  display: inline-block;
  min-width: 270px;
  padding: 15px 55px;
  color: var(--color-white);
  font-size: 1.125rem;
  font-weight: 500;
  text-align: center;
  border-radius: 50px;
  box-sizing: border-box;
  position: relative;
  margin-top: 25px;
  background-image: radial-gradient(circle at 50% 0, var(--color-textBlue) 0%, var(--color-textBlue) 70%, #007b90 70%, #007b90 100%);
  background-size: 100% 530%;
  background-repeat: no-repeat;
  background-position: 50% 0%;
  font-size: 1rem;
  transition: background-position 0.6s;
}
.linkButton:hover {
  background-position: 50% 100%;
}
.linkButton::before {
  display: block;
  content: "";
  width: 14px;
  height: 2px;
  background-color: var(--color-white);
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}
.linkButton::after {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  border-bottom: transparent;
  border-left: transparent;
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

.instagramArea {
  display: flex;
  gap: 90px;
  width: min(1200px, 100% - 30px);
  margin: 0 auto;
  margin-top: -90px;
  padding-top: 90px;
  overflow: hidden;
}

@media screen and (max-width: 992px) {
  .instagramArea {
    gap: 40px;
    flex-direction: column;
    width: 100%;
  }
}
.instagramTextWrapper {
  width: 40%;
}

@media screen and (max-width: 992px) {
  .instagramTextWrapper {
    width: min(1200px, 100% - 30px);
    margin: 0 auto;
  }
}
.instagramTextBox {
  margin-top: 50px;
  margin-bottom: 10px;
}

@media screen and (max-width: 992px) {
  .instagramTextBox {
    margin-top: 30px;
  }
}
.instagramText {
  margin-top: 20px;
}

@media screen and (max-width: 992px) {
  .instagramText {
    margin-top: 0;
  }
}
.instagramSlider {
  width: 60%;
  margin-top: 30px;
}

@media screen and (max-width: 992px) {
  .instagramSlider {
    width: 100%;
  }
}
.instagramSlider .slick-slide {
  margin-left: 25px;
}

.instagramSlider .slick-slide img {
  width: 100%;
}

@media screen and (max-width: 992px) {
  .u-spBreak--992 {
    display: none;
  }
}
.shareArea {
  margin: 0 auto;
  margin-top: 120px;
  text-align: center;
}

@media screen and (max-width: 992px) {
  .shareArea {
    margin-top: 90px;
  }
}
.shareTitle {
  display: inline-block;
  font-size: 3.125rem;
  font-weight: 600;
  letter-spacing: 0.025em;
  position: relative;
}
.shareTitle::before {
  display: block;
  content: "";
  width: 28px;
  height: 32px;
  background-image: url("../img/anniversary/share_decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  left: -40px;
}
.shareTitle::after {
  display: block;
  content: "";
  width: 28px;
  height: 32px;
  background-image: url("../img/anniversary/share_decoration.png");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 15px;
  right: -40px;
  transform: scale(-1, 1);
}

.snsIconFlex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
}

.snsLink {
  transition: opacity 0.3s;
}

@media (any-hover: hover) {
  .snsLink:hover {
    opacity: 0.6;
  }
}
.footerArea {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 150px;
  padding: 150px 15px 110px 15px;
  background-image: url("../img/anniversary/footer_bg.jpg");
  background-size: cover;
  background-repeat: no-repeat;
}

@media screen and (max-width: 992px) {
  .footerArea {
    margin-top: 100px;
    padding: 100px 15px 30px 15px;
  }
}
.footerFlex {
  display: flex;
  align-items: center;
  gap: 40px;
}

@media screen and (max-width: 768px) {
  .footerFlex {
    flex-direction: column;
    gap: 30px;
  }
}
.thankYouWrapper {
  margin-top: 25px;
  margin-bottom: 45px;
}

.thankYou {
  max-width: 100%;
}

.linkButton--footer {
  min-width: 330px;
  padding: 20px 55px;
}

@media screen and (max-width: 768px) {
  .linkButton--footer {
    margin-top: 0;
  }
}
.copyright {
  font-size: 1.125rem;
  margin-top: 100px;
  --clamp-min: 16;
  --clamp-max: 18;
  --clamp-viewport-min: 768;
  --clamp-viewport-max: 992;
  font-size: var(--clamp);
}

@media screen and (max-width: 992px) {
  .copyright {
    margin-top: 60px;
  }
}/*# sourceMappingURL=anniversary.css.map */