body {
  font-family: "Kiwi Maru", serif;
}

@media screen and (max-width: 1280px) {

  body {
    font-size: max(calc(16 / 1280 * 100vw), 14px);
  }
}

.js-fadeIn {
  opacity: 0;
  transition: all 0.7s ease 0s;
  transform: translateY(20px);
}

.sp-only {
  display: none;
}

.u-tab-show {
  display: none;
}

@media screen and (max-width: 1024px) {

  .u-tab-show {
    display: block;
  }

  .u-tab-none {
    display: none;
  }
}

@media (max-width: 767px) {
  .sp-only {
    display: block;
  }

  .pc-only {
    display: none;
  }
}

/* header */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 17px 0 25px;
  background: #fff;
  z-index: 9999;
}

.header__inner {
  padding: 0 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  width: 240px;
  }
  .header__logo a {
    display: block;
    transition: opacity 0.3s ease 0s;
  }

  .header__logo a:hover {
    opacity: 0.6;
  }


.header__nav {
  width: 100%;
  padding-left: 30px;
}

.header__nav-list {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
}

.header__nav-link {
  color: #005BAC;
  transition: opacity 0.3s ease 0s;

}

.header__nav-link:hover {
  opacity: 0.6;
}

.header__nav-link--inactive {
  opacity: 0.4888;
  cursor: default;
  pointer-events: none;
}

.header__drawerIcon {
  width: 50px;
  height: 28px;
  transition: all 0.3s;
  position: relative;
  z-index: 9999;
}

.header__drawerIcon.open {
  box-shadow: none;
}

.header__drawerIconBar {
  width: 38px;
  height: 1px;
  background-color: #003A74;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}

.header__drawerIconBar:nth-child(1) {
  top: 0px;  
}

.header__drawerIconBar:nth-child(2) {
  top: 14px;
}      

.header__drawerIconBar:nth-child(3) {
  top: 28px;
}


.header__drawerIcon.open .header__drawerIconBar:nth-child(1) {
  top: 12px;
  transform: translateX(-50%) rotate(45deg);
  background-color: #fff;
}

.header__drawerIcon.open .header__drawerIconBar:nth-child(2) {
  opacity: 0;
}

.header__drawerIcon.open .header__drawerIconBar:nth-child(3) {
  top: 12px;
  transform: translateX(-50%) rotate(-45deg);
  background-color: #fff;
}

.sp-nav {
  background-color: #005BAC;
  height: 100dvh;
  overflow: scroll;
  padding-top: 80px;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 299;
}

.sp-nav.open {
  opacity: 1;
  visibility: visible;
}

.sp-nav__wrapper {
  height: 100dvh;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
  width: 100%;
  z-index: 900;
  background-color: #005BAC;
  color: #fff;
}

.sp-nav__wrapper.open {
  opacity: 1;
  visibility: visible;
}

.sp-nav__inner {
  height: 100%;
  margin: 0 auto;
  max-width: 25rem;
  padding: 0 20px;
}

.sp-nav__items {
  align-items: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin-top: 32px;
}

.sp-nav__item {
  width: 100%;
}

.sp-nav__link {
  line-height: 45px;
  letter-spacing: 0.05em;
  display: block;
  padding: 10px 0;
}

.sp-nav__link--inactive {
  opacity: 0.4888;
  cursor: default;
  pointer-events: none;
}


.sp-nav__item:not(:last-child) {
  position: relative;
}


.sp-nav__item:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 1px;
  background-color: #fff;
}



@media screen and (max-width: 1440px) {
  .header {
    padding: calc(17 / 1440 * 100vw) 0 calc(25 / 1440 * 100vw);
  }

  .header__inner {
    padding: 0 calc(30 / 1440 * 100vw);
  }

  .header__logo {
    width: calc(240 / 1440 * 100vw);
  }

  .header__nav {

  }

  .header__nav-list {
    gap: calc(30 / 1440 * 100vw);
  }

  .header__nav-item {
  }

  .header__nav-link {
    font-size: max(calc(16 / 1440 * 100vw), 13px);
  }
}

@media screen and (max-width: 767px) {
  .header {
    padding: 14px 0;
  }

  .header__inner {
    padding: 0 18px;
  }

  .header__logo {
    width: 152px;
  }
  
}

.bg {
  position: relative;
  z-index: 1;
}

.bg:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_01.png) no-repeat top center /cover;
  z-index: -1;
}

/* fv */
.fv {
}
.fv__video {
  position: relative;
  padding-bottom: 57px;
  aspect-ratio: 16 / 9;
}

.fv__video:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(calc(-50% - (88 * 100% / 1440)));
  width: calc(4508 / 1440 * 100vw);
  aspect-ratio: 1 / 1;
  opacity: 0.2547;
  background: #007AC3;
  border-radius: 50%;
  z-index: -1;
}

.fv__video:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(calc(-50% + (88 * 100% / 1440)));
  width: calc(4508 / 1440 * 100vw);
  aspect-ratio: 1 / 1;
  opacity: 0.2547;
  background: #00C681;
  border-radius: calc(4508 / 1440 * 100vw);
  z-index: -1;
}


.fv__video video {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

@media screen and (max-width: 767px) {
  .fv__video {
    padding-bottom: 22px;

  }

  .fv__video:before {
    width: calc(1268 / 375 * 100vw);
    transform: translateX(calc(-50% - 50px ));
  }

.fv__video:after {
  width: calc(1268 / 375 * 100vw);
  transform: translateX(calc(-50% + 50px ));
}
}

/* future */
.future {
  padding-top: 127px;
  position: relative;
}

.future:before {
  /* position: absolute;
  content: "";
  top: -277px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 4401px;
  background: url(../img/bg_01.png) no-repeat top center /cover;
  z-index: -2; */
}


.future__inner {
  padding: 0 30px;
}

.future__heading {
  text-align: center;
  font-size: 37px;
  font-weight: 500;
  line-height: calc(41 / 37 );
  letter-spacing: calc(7.4 / 37 * 1em);
}

.future__contents {
  margin-top: 46px;
  text-align: center;
  max-width: 668px;
  margin-inline: auto;
  position: relative;
}

.future__text {
  font-size: 20px;
  font-weight: 500;
  line-height: calc(47 / 20);
}

.future__text + .future__text {
  margin-top: 47px;
}

.future__deco01 {
  position: absolute;
  top: calc(160 / 1023 * 100%);     
  right: -90px;
  width: 90px;
}

.future__deco02 {
  position: absolute;
  left: -80px;
  top: calc(390 / 1023 * 100%);
  width: 165px;
}

@media screen and (max-width: 1280px) {
  .future {
    padding-top: calc(127 / 1280 * 100vw);
  }

  .future:before {
    top: calc(-277 / 1280 * 100vw);
    height: calc(4401 / 1280 * 100vw);
  }

  .future__heading {
    font-size: max(calc(37 / 1280 * 100vw), 24px);
  }

  .future__contents {
    margin-top: calc(45 / 1280 * 100vw);
    width: fit-content;

  }

  .future__text {
    font-size: max(calc(20 / 1280 * 100vw), 13px);
  }

  .future__text + .future__text {
    margin-top: calc(45 / 1280 * 100vw);
  }

  .future__deco01 {
    width: calc(90 / 1280 * 100vw);
    right: calc(-90 / 1280 * 100vw);
  }

  .future__deco02 {
    width: calc(165 / 1280 * 100vw);
    left: calc(-80 / 1280 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .future:before {
    height: 3030px;

  }

  .future__inner {
    padding: 0 20px;
  }

  .future__heading {
    line-height: calc(35 / 24);

  }

  .future__text + .future__text {
    margin-top: 16px;
  }
  .future__deco01 {
    width: 49px;
    top: calc(127 / 599 * 100%);
  }

  .future__deco02 {
    width: 89px;
    top: calc(346 / 599 * 100%);
  }
}

/* message */
.message {
  margin-top: 64px;
}

.message__inner {
  max-width: 1276px;
  padding: 0 30px;
  margin: 0 auto;
}

.message__column {
  display: flex;
  gap: calc(76.5 / 1216 * 100%);
}

.message__left-block {
  width: calc(510 / 1216 * 100%);
}

.message__img {
  width: 100%;
  max-width: 470px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.message__img:before {
  position: absolute;
  content: "";
  top: 0;
  left: -19px;
  width: calc(100% + 14px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.5571;
  background: rgba(0, 122, 195, 0.71);
  z-index: -1;
}

.message__img:after {
  position: absolute;
  content: "";
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - 30px));
  width: calc(869 / 470 * 100%);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.179;
  background: #007AC3;
  z-index: -1;
}

.message__text {
  margin-top: 46px;
  font-size: 17.5px;
  line-height: calc(40 / 17.5);
}

.message__right-block {
  padding-top: 223px;
}

.message__heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
}

.message__heading.sp-only {
  display: none;
}

.message__heading:before {
  position: absolute;
  content: "";
  top: 50%;
  right: -202px;
  transform: translateY(-50%);
  width: 929px;
  height: 100%;
  border-radius: 50px;
  border: 1.2px solid #005BAC;
}

.message__heading-ja {
  color: #005BAC;
  font-size: 32px;
  font-weight: 500;
  line-height: calc(58 / 32);
}

.message__heading-en {
  color: #007AC3;
  font-family: "Baloo Thambi 2";
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: calc(58 / 14);
}

.message__copy {
  margin-top: 44px;
  font-size: 34px;
  font-weight: 500;
  line-height: calc(70 / 34);
}

.message__name {
  margin-top: 52px;

}

.message__position {
  color: #035BAC;
  font-family: "Noto Sans JP";
  font-size: 12px;
  letter-spacing: 2.4px;
  display: block;
}

.message__name-text {
  display: block;
  margin-top: 8px;
}

@media screen and (max-width: 1280px) {
  .message {
    margin-top: calc(64 / 1280 * 100vw);
  }

  .message__text {
    margin-top: max(calc(46 / 1280 * 100vw), 26px);
    font-size: max(calc(17.5 / 1280 * 100vw), 12px);
  }

  .message__right-block {
    padding-top: calc(223 / 1280 * 100vw);
  }

  .message__heading:before {
    right: calc(-202 / 1280 * 100vw);
    width: calc(929 / 1280 * 100vw);
  }

  .message__heading-ja {
    font-size: max(calc(32 / 1280 * 100vw), 18px);
  }

  .message__heading-en {
    font-size: max(calc(14 / 1280 * 100vw), 8px);
  }

  .message__copy {
    margin-top: max(calc(44 / 1280 * 100vw), 27px);
    font-size: max(calc(34 / 1280 * 100vw), 16px);;
  }

  .message__name {
    margin-top: calc(52 / 1280 * 100vw);
  }

  .message__name-text {
    max-width: 100px;
  }
 }


 @media screen and (max-width: 767px) {
  .message__inner {
    padding: 0 20px;
  }

  .message__column {
    flex-direction: column;
  }

  .message__heading.pc-only {
    display: none;
  }

  .message__heading.sp-only {
    display: flex;
  }

  .message__heading {
    max-width: 270px;
    margin: 0 auto;
    border-radius: 50px;
  border: 1.2px solid #005BAC;
  flex-direction: column;
  gap: 4px;
  padding: 8px 0;

  }

  .message__heading:before {
    display: none;
  }

.message__heading-ja {
  line-height: 1;
}

.message__heading-en {
  line-height: 1;
}
 

  .message__left-block {
    width: 100%;
  }

  .message__img {
    max-width: 231px;
    margin-top: 20px;
  }

  .message__img:before {
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% + 9px);
  }

  .message__img:after {
    transform: translateX(-50%);
    width: 506px;
  }

  .message__right-block {
    padding: 27px 20px 0;
    margin: 0 auto;
  }

  .message__copy {
    line-height: calc(28 / 16);
    font-size: 16px;
    margin-top: 0;
  }

  .message__name {
    margin-top: 28px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
 }

 /* anniversary-logo */
.anniversary-logo {
  margin-top: -58px;
  padding-top: 27px;

}

.anniversary-logo__inner {
  max-width: 1234px;
  padding: 0 30px;
  margin: 0 auto;
}

.anniversary-logo__column {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  gap: 20px;
}

.anniversary-logo__block {
  padding-top: 218px;
  width: calc(500 / 1174 * 100%);
  position: relative;
  z-index: 1;

}

.anniversary-logo__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.anniversary-logo__heading.sp-only {
  display: none;
}

.anniversary-logo__heading-en {
  color: #005BAC;
  font-family: "Baloo Thambi 2";
  font-size: 35px;
  font-weight: 600;
  line-height: calc(58 / 35);
  position: relative;
  z-index: 2;
}

.anniversary-logo__heading-en--01 {
  font-weight: 600;
  color: #007AC3;
}

.anniversary-logo__heading-en:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 42%;
  transform: translate(-50%, -50%);
  width: 779px;
  height: 58px;
  border-radius: 50px;
  border: 1.2px solid #005BAC;
  border-right: none;
}

.anniversary-logo__heading-en:after {
  position: absolute;
  content: "";
  top: 50%;
  right: -256px;
  transform: translateY(-50%);
  width: 138px;
  aspect-ratio: 276 / 154;
  background: url(../img/bg_anniversary-logo.png) no-repeat center center /cover;
}

.anniversary-logo__heading-ja {
  color: #000;
  text-align: center;
  font-size: 37px;
  font-weight: 500;
  line-height: calc(57 / 37);
}

.anniversary-logo__wrap {
  margin-top: 28px;
}

.anniversary-logo__content + .anniversary-logo__content  {
  margin-top: 58px;
}

.anniversary-logo__title {
  color: #005BAC;
  font-size: 25px;
  font-weight: 500;
  line-height: calc(37 / 25);
  white-space: nowrap;
}

.anniversary-logo__text {
  font-size: 17.5px;
  font-weight: 500;
  line-height: calc(40 / 17.5);
  margin-top: 6px;
}

.anniversary-logo__img {
  width: calc(486 / 1174 * 100%);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  background: #fff;
  display: grid;
  place-items: center;
  position: relative;
}

.anniversary-logo__img:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: calc(100% + 9px);
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.3941;
  background: #00C681;
  z-index: -1;
}

.anniversary-logo__img:after {
  position: absolute;
  content: "";
  top: -27px;
  left: -97px;
  width: calc(869 / 486 * 100%);
  border-radius: 50%;
  opacity: 0.18;
  background: #00C681;
  aspect-ratio: 1 / 1;
  z-index: -1;
}

.anniversary-logo__img-deco {
  position: absolute;
  top: -133px;
  left: 50%;
  transform: translateX(-50%);
  width: 129px;
  aspect-ratio: 129 / 145;
}

.anniversary-logo__img-img {
  max-width: 267px;
  padding-left: 15px;
  padding-top: 19px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1280px) {
  .anniversary-logo__column {
    gap: calc(20 / 1280 * 100vw);
  }
  .anniversary-logo__heading.sp-only {
    display: none;
  }

  .anniversary-logo__block {
    padding-top: max(calc(218 / 1280 * 100vw), 150px);

  }

  .anniversary-logo__heading {
    gap: max(calc(40 / 1280 * 100vw), 28px);
  }

  .anniversary-logo__heading-en {
    font-size: max(calc(35 / 1280 * 100vw), 20px);
  }

  .anniversary-logo__heading-en:before {
    width: calc(779 / 1280 * 100vw);
    height: max(calc(58 / 1280 * 100vw), 38px);
  }

  .anniversary-logo__heading-en:after {
    right: calc(-256 / 1280 * 100vw);
    width: calc(138 / 1280 * 100vw);
  }

  .anniversary-logo__heading-ja {
    font-size: max(calc(37 / 1280 * 100vw), 20px);
  }

  .anniversary-logo__wrap {
    margin-top: max(calc(28 / 1280 * 100vw), 20px);
  }

  .anniversary-logo__content + .anniversary-logo__content {
    margin-top: max(calc(58 / 1280 * 100vw), 30px);
  }

  .anniversary-logo__title {
    font-size: max(calc(25 / 1280 * 100vw), 18px);
    white-space: normal;
  }

  .anniversary-logo__text {
    font-size: max(calc(17.5 / 1280 * 100vw), 12px);
  }

  .anniversary-logo__img {
    width: max(calc(486 / 1280 * 100vw), 300px);
  }

  .anniversary-logo__img-deco {
    top: max(calc(-133 / 1280 * 100vw), -80px);
    width: max(calc(129 / 1280 * 100vw), 76px);
    height: max(calc(145 / 1280 * 100vw), 86px);
  }

  .anniversary-logo__img-img {
    max-width: max(calc(267 / 1280 * 100vw), 160px);
    padding-left: max(calc(15 / 1280 * 100vw), 9px);
    padding-top: max(calc(19 / 1280 * 100vw), 11px);
  }
}

@media screen and (max-width: 767px) {
  .anniversary-logo {
    margin-top: 40px;
    padding-top: 0;

  }
  .anniversary-logo__inner {
    padding: 0 20px;
  }

  .anniversary-logo__column {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .anniversary-logo__heading.pc-only {
    display: none;
  }

  .anniversary-logo__heading.sp-only {
    display: flex;
  }

  .anniversary-logo__heading {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    border-radius: 50px;
    border: 1.2px solid #005BAC;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
    order: 1;

  }

  .anniversary-logo__heading:before {
    display: none;
  }

  .anniversary-logo__heading-ja {
    font-size: 26px;
    text-align: center;
    display: block;
    margin-bottom: 26px;
  }

  .anniversary-logo__heading-en {
    line-height: 1;
    font-size: 22px;
  }

  .anniversary-logo__heading-en:before, .anniversary-logo__heading-en:after {
    display: none;
  }



  .anniversary-logo__img {
    order: 2;
    width: 231px;
  }

  .anniversary-logo__img:before {
    left: 50%;
    transform: translateX(-50%);

  }

  .anniversary-logo__img:after {
    top:0;
    left: 50%;
    transform: translateX(-50%);
    width: 506px;

  }

  .anniversary-logo__img-deco {
    width: 64px;
    left: 102%;

  }

  .anniversary-logo__wrap {
    margin-top: 0;
    padding: 0 20px;
  }

  .anniversary-logo__content + .anniversary-logo__content {
    margin-top: 30px;
  }

  .anniversary-logo__block {
    order: 3;
    padding-top: 0;
    width: 100%;
  }


}

/* event */

.event {
  margin-top: 170px;
  position: relative;
  padding: 50px 0 273px;
  overflow: hidden;
}

.event__inner {
  padding: 0 30px;

}

.event__heading {
  color: #005BAC;
  font-size: 40px;
  font-weight: 500;
  line-height: calc(67 / 40);
  text-align: center;
  max-width: 1114px;
  margin: 0 auto;
  position: relative;
  border-radius: 57px;
  border: 1.2px solid #005BAC;
  background: rgba(255, 255, 255, 0.38);
  z-index: 1;
}

.event__heading-01 {
color: #007AC3;
font-weight: 500;
}

.event__heading-deco {
  position: absolute;
  left: -44px;
  top: -40px;
  width: 179px;
}

.event__text {
  margin-top: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.event__scroll {
  width: 100vw;
  margin: -62px calc(50% - 50vw);
}

.event__contents {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  
}

.event__list {
  
}

.event__item {
  width: 205px;
  position: absolute;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.8) translateY(10px);
  transition: opacity 1s ease, transform 1s ease;
}

.event__item.visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

.event__item:first-child {
  top: min(165px, calc(165 / 1440 * 100%));
  left: calc(419 / 1213 * 100%);
}

.event__item:nth-child(2) {
  top: min(272px, calc(272 / 1440 * 100%));
  right: calc(330 / 1213 * 100%) ;
}
.event__item:nth-child(3) {
  top: min(330px, calc(330 / 1440 * 100%));
  left: calc(252 / 1213 * 100%) ;
}
.event__item:nth-child(4) {
  top: min(439px, calc(439 / 1440 * 100%));
  right: calc(510 / 1213 * 100%) ;
}
.event__item:nth-child(5) {
  top: min(480px, calc(480 / 1440 * 100%));
  right: calc(133 / 1213 * 100%);
}
.event__item:nth-child(6) {
  top: min(598px, calc(598 / 1440 * 100%));
  left: calc(368 / 1213 * 100%) ;
}
.event__item:nth-child(7) {
  top: min(648px, calc(648 / 1440 * 100%));
  right: calc(349 / 1213 * 100%) ;
}
.event__item:nth-child(8) {
  top: min(686px, calc(686 / 1440 * 100%));
  left: calc(117 / 1213 * 100%) ;
}
.event__item:nth-child(9) {
  top: min(759px, calc(759 / 1440 * 100%));
  left: calc(520 / 1213 * 100%) ;
}
.event__item:nth-child(10) {
  top: min(824px, calc(824 / 1440 * 100%));
  right: calc(163 / 1213 * 100%) ;
}
.event__link {

}

.event__deco {
  margin-top: 110px;
  width: 180px;
  position: absolute;
  bottom: 0;
  right: -20%;
  animation: car-move 10s linear infinite;
}

@keyframes car-move {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  90% {
    transform: translateX(-120vw); /* 左端を超えて画面外へ */
    opacity: 1;
  }
  100% {
    transform: translateX(-120vw);
    opacity: 0; /* フェードアウト */
  }
}


@media screen and (max-width: 1280px) {
  .event {
    margin-top: calc(170 / 1280 * 100vw);
    padding: calc(50 / 1280 * 100vw) 0 calc(273 / 1280 * 100vw);
  }

  .event__heading {
    font-size: calc(40 / 1280 * 100vw);
  }

  .event__heading-deco {
    left: calc(-44 / 1280 * 100vw);
    top: calc(-40 / 1280 * 100vw);
    width: calc(179 / 1280 * 100vw);
  }

  .event__text {
    margin-top: calc(40 / 1280 * 100vw);
    font-size: max(calc(16 / 1280 * 100vw), 13px);
  }

  .event__contents {
  }

  .event__item {
    width: calc(205 / 1280 * 100vw);
  }

.event__deco {
  margin-top: calc(110 / 1280 * 100vw);
  width: calc(180 / 1280 * 100vw);
}
}

@media screen and (max-width: 767px) {
  .event {
    padding-bottom: 174px;
  }
  .event__inner {
    padding: 0 20px;
  }

  .event__heading {
    font-size: 22px;
    padding: 8px 0;
    line-height: 1;
    max-width: 260px;
    background: transparent;
  }

  .event__heading-01 {
    display: block;
    line-height: 1;
    margin-top: 4px;
  }

  .event__heading-deco {
    display: none;
  }

  .event__text {
    margin-top: 18px;
    text-align: left;
    padding:0 40px;
    line-height: calc(25 / 13);
  }

  .event__scroll {
    overflow-x: scroll;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  width: 100vw;
  margin-left: calc(50% - 50vw);
margin-right: calc(50% - 50vw);
  }

  .event__scroll::-webkit-scrollbar {
    display: none;
  }

  .event__contents {
    width: calc(535 / 375 * 100vw);
  }

  .event__contents:before {
    top: auto;
    bottom: calc(34 / 375 * 100vw);
    width: calc(39 / 375 * 100vw);
    transform: translate(calc(-50% - calc(29.5 / 375 * 100vw)), 0);
    aspect-ratio: 39 / 18;
    background: url(../img/icon_left_arrow.svg) no-repeat center center /contain;
    z-index: 1;
    border-radius: 0;
  }

  .event__contents:after {
    position: absolute;
    content: "";
    bottom: calc(34 / 375 * 100vw);
    left: 50%;
    width: calc(39 / 375 * 100vw);
    transform: translate(calc(-50% + calc(29.5 / 375 * 100vw)), 0);
    aspect-ratio: 39 / 18;
    background: url(../img/icon_right_arrow.svg) no-repeat center center /contain;
    z-index: 1;
  }

  .event__item {
    width: calc(180 / 375 * 100vw);
  }

  .event__item:first-child {
    top: calc(78 / 375 * 100vw);
    left: calc(96 / 375 * 100%);
  }
  
  .event__item:nth-child(2) {
    top: calc(102 / 375 * 100vw);
    right: calc(75 / 375 * 100vw) ;
  }
  .event__item:nth-child(3) {
    top: calc(152 / 375 * 100vw);
    left: calc(65 / 375 * 100%) ;
  }
  .event__item:nth-child(4) {
    top: calc(146 / 375 * 100vw);
    right: calc(139 / 375 * 100vw);
  }
  .event__item:nth-child(5) {
    top: calc(189 / 375 * 100vw);
    right: calc(5 / 375 * 100vw);
  }
  .event__item:nth-child(6) {
    top: calc(212 / 375 * 100vw);
    left: 0;
  }
  .event__item:nth-child(7) {
    top: calc(213 / 375 * 100vw);
    right: calc(171 / 375 * 100vw);
  }
  .event__item:nth-child(8) {
    top: calc(281 / 375 * 100vw);
    left: calc(121 / 375 * 100vw);
  }
  .event__item:nth-child(9) {
    top: calc(319 / 375 * 100vw);
    left: calc(51 / 375 * 100vw);
  }
  .event__item:nth-child(10) {
    top: calc(303 / 375 * 100vw);
    right: calc(74 / 375 * 100vw) ;
  }

  .event__deco {
    width: 119px;
  }
  

  
}

.activity {
  position: relative;
  padding: 66px 0 108px;

}

.activity:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: -1;
}

.activity__inner {
  padding: 0 30px;
  max-width: 1100px;
  margin: 0 auto;

}

.activity__heading {
  color: #005BAC;
  text-align: center;
  font-size: 35px;
  font-weight: 500;
  line-height: calc(57 / 35);
}

.activity__lead {
  text-align: center;
  font-size: 18px;
  line-height: calc(35 / 18);
}

.activity__column {
  margin-top: 35px;
  display: flex;
  gap: calc(122 / 1070 * 100%);
}

.activity__item {
  
}

@media screen and (max-width: 1280px) {
  .activity {
    padding: calc(66 / 1280 * 100vw) 0 calc(108 / 1280 * 100vw);
  }

  .activity__heading {
    font-size: calc(35 / 1280 * 100vw);
   }

   .activity__lead {
    font-size: max(calc(18 / 1280 * 100vw), 13px);
   }

   .activity__column {
    margin-top: calc(35 / 1280 * 100vw);
    gap: calc(25 / 1280 * 100vw);
   }


  
}

@media screen and (max-width: 767px) {
  .activity {
    padding: 42px 0 70px;
  }
  .activity__inner {
    padding: 0 20px;
  }

  .activity__heading {
    font-size: 19px;
  }

  .activity__column {
    width: calc(100vw + 88px);
    margin: 30px calc(50% - 50vw - 44px) 0;
  }
}

.bg02 {
  position: relative;
  z-index: 1;
  
}

.bg02:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_03.png) no-repeat top center /cover;
  z-index: -1;
}

.customer-voice {
  padding-top: 134px;

}

.customer-voice__inner {

}

.customer-voice__container {
  padding-top: 294px;
  padding-bottom: 376px;
  position: relative;
  max-width: 968px;
  margin-left: auto;
}

.customer-voice__container:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 944px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.2;
  background: #005BAC;
  z-index: 1;
  }

  .customer-voice__container:after {
    content: "";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(calc(-50% + 40px));
    width: 955px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3422;
    background: #E85AFA;
    }

.customer-voice__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 1;
}

.customer-voice__heading-en {
  opacity: 0.3;
  color: #005BAC;
  text-align: center;
  font-family: "Baloo Thambi 2";
  font-size: 110px;
  line-height: calc(95 / 110);

}

.customer-voice__heading-en--01 {
  color: #007AC3;
}

.customer-voice__heading-ja {
  color: #000;
  text-align: center;
  font-family: "Kiwi Maru";
  font-size: 37px;
  line-height: calc(57 / 37);
  opacity: 0.3104;

}

.customer-voice__heading-deco {
  position: absolute;
  top: -140px;
  left: 50%;
  transform: translateX(calc(-50% + 200px));
  width: 169px;
}

.customer-voice__text {
  color: #FFF;
  text-align: center;
  font-family: "Baloo Bhai 2";
  font-size: 32px;
  line-height: calc(57 / 40);
  margin: 23px auto 0;
  border: 3px solid #fff;
  max-width: 342px;
  position: relative;
    z-index: 1;
}

@media screen and (max-width: 1280px) {
  .customer-voice {
    padding-top: calc(134 / 1280 * 100vw);
  }

  .customer-voice__container {
    padding-top: calc(294 / 1280 * 100vw);
    padding-bottom: calc(376 / 1280 * 100vw);
    max-width: calc(968 / 1280 * 100vw);
  }

  .customer-voice__container:before  {
    width: calc(944 / 1280 * 100vw);
  }

  .customer-voice__container:after {
    width: calc(955 / 1280 * 100vw);
  }

  .customer-voice__heading-en {
    font-size: calc(110 / 1280 * 100vw);
  }

  .customer-voice__heading-ja {
    font-size: calc(37 / 1280 * 100vw);
  }

  .customer-voice__heading-deco {
    top: calc(-140 / 1280 * 100vw);
    width: calc(169 / 1280 * 100vw);
  }

  .customer-voice__text {
    font-size: calc(32 / 1280 * 100vw);
    margin-top: calc(23 / 1280 * 100vw);
    max-width: calc(342 / 1280 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .customer-voice {
    padding-top: 74px;
  }

  .customer-voice__container {
    max-width: 100%;
    padding-top: calc(143 / 375 * 100vw) ;
    padding-bottom: calc(152 / 375 * 100vw);
  }

  .customer-voice__container:before {
    width: calc(473 / 375 * 100vw);
    left: 67%;

  }

  .customer-voice__container:after {
    width: calc(473 / 375 * 100vw);
    top: 3px;
    left: 54%;
  }

  .customer-voice__heading-en {
    font-size: calc(45 / 375 * 100vw);
  }

  .customer-voice__heading-ja {
    font-size: calc(22 / 375 * 100vw);
  }

  .customer-voice__heading-deco {
    width: calc(91 / 375 * 100vw);
    top: calc(-84 / 375 * 100vw);
    transform: translateX(calc(-50% + 88 / 375 * 100vw));
  }

  .customer-voice__text {
    font-size: calc(22 / 375 * 100vw);
    margin-top: calc(14 / 275 * 100vw);
    max-width: calc(203 / 375 * 100vw);
    border-width: 1.5px;
  }

  
}

.staff-voice {
  margin-top: -322px;
}

.staff-voice__inner {

}

.staff-voice__container {
  padding: 207px 30px 116px 0;
  position: relative;
  max-width: 1000px;

}

.staff-voice__container:before {
  content: "";
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(calc(-50% - 30px));
  width: 1027px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  opacity: 0.34;
  background: #00C681;;
  z-index: 1;
}

.staff-voice__container:after {
  content: "";
    position: absolute;
    top: 32px;
    left: 50%;
    transform: translateX(calc(-50% + -81px));
    width: 1027px;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    z-index: 0;
    opacity: 0.3422;
    background: #F7BE00;
}

.staff-voice__wrap {
  max-width: 610px;
  margin: 0 auto;
  padding-right: 30px;
  position: relative;
  z-index: 1;
}

.staff-voice__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding-bottom: 20px;
  border-bottom: 1px solid #0B9000;
  max-width: 588px;
  margin: 0 auto;

}

.staff-voice__heading-en {
  text-align: center;

  
}

.staff-voice__heading-en--01 {
  color: #0B9000;
  font-family: "Baloo Thambi 2";
  font-size: 110px;
}

.staff-voice__heading-en--02 {
  color: #00C681;
  font-family: "Baloo Thambi 2";
  font-size: 110px;
}

.staff-voice__heading-ja {
  text-align: center;
  font-size: 37px;
  line-height: calc(57 / 37);
  margin-top: -30px;
}

.staff-voice__heading-deco {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(calc(-50% - 200px));
  width: 199px;
}

.staff-voice__lead {
  font-size: 30px;
  line-height: calc(45 / 30);
  margin-top: 25px;
}

.staff-voice__text {
  font-size: 18px;
  line-height: calc(31 / 18);
  margin-top: 16px;

}

.staff-voice__contents {
  margin: 18px auto 0;
  max-width: 538px;

}

.staff-voice__link {
  transition: opacity 0.3s ease 0s;

}

.staff-voice__link:hover {
  opacity: 0.6!important;
}

@media screen and (max-width: 1280px) {
  .staff-voice {
    margin-top: calc(-322 / 1280 * 100vw);
  }

  .staff-voice__container {
    padding: calc(207 / 1280 * 100vw) calc(30 / 1280 * 100vw) calc(116 / 1280 * 100vw) 0;
    max-width: calc(1000 / 1280 * 100vw);
  }

  .staff-voice__container:before {
    width: calc(1027 / 1280 * 100vw);
    top: calc(60 / 1280 * 100vw);
  }

  .staff-voice__container:after {
    width: calc(1027 / 1280 * 100vw);
    top: calc(32 / 1280 * 100vw);
  }

  .staff-voice__wrap {
    max-width: calc(610 / 1280 * 100vw);
    padding-right: calc(30 / 1280 * 100vw);
  }

  .staff-voice__heading {
    padding-bottom: calc(20 / 1280 * 100vw);
    max-width: calc(588 / 1280 * 100vw);
  }

  .staff-voice__heading-en--01 {
    font-size: calc(110 / 1280 * 100vw);
  }

  .staff-voice__heading-en--02 {
    font-size: calc(110 / 1280 * 100vw);
  }

  .staff-voice__heading-ja {
    font-size: calc(37 / 1280 * 100vw);
    margin-top: calc(-30 / 1280 * 100vw);
  }

  .staff-voice__heading-deco {
    width: calc(199 / 1280 * 100vw);
    top: calc(-120 / 1280 * 100vw);
    left: calc(-50% - 200px / 1280 * 100vw);
  }

  .staff-voice__lead {
    font-size: max(calc(30 / 1280 * 100vw), 17px);
    margin-top: calc(25 / 1280 * 100vw);
  }

  .staff-voice__text {
    font-size: max(calc(18 / 1280 * 100vw), 12px);
    margin-top: calc(16 / 1280 * 100vw);
  }

  .staff-voice__contents {
    margin-top: calc(18 / 1280 * 100vw);
    max-width: calc(538 / 1280 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .staff-voice {
    margin-top: -30px;
  }

  .staff-voice__container {
    max-width: 100%;
    padding: 91px 20px 0;

  }

  .staff-voice__container:before {
    width: calc(473 / 375 * 100vw);
    top: 10px;
    left: 42%;
  }

  .staff-voice__container:after {
    width: calc(473 / 375 * 100vw);
    top: 0;
    left: 53%;
  }

  .staff-voice__wrap {
    max-width: 100%;
    padding: 0 40px;

  }

  .staff-voice__heading {
    max-width: 100%;

  }

  .staff-voice__heading-en--01, .staff-voice__heading-en--02 {
    font-size: calc(45 / 375 * 100vw);
  }

  .staff-voice__heading-ja {
    font-size: calc(22 / 375 * 100vw);
  }

  .staff-voice__heading-deco {
    width: calc(97 / 375 * 100vw);
    top: calc(-64 / 375 * 100vw);
    left: 0;
  }

  .staff-voice__lead {
    font-size: calc(17 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }

  .staff-voice__text {
    font-size: calc(12 / 375 * 100vw);
  }

  .staff-voice__contents {
    max-width: calc(254 / 375 * 100vw);
  }
}

.history {
  margin-top: 76px;

}

.history__heading {
  text-align: center;
  color: #007AC3;
  font-size: 70px;

}

.history__video {
  position: relative;
  padding-top: 77px;
}

.history__video:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(calc(-50% - (63 * 100% / 1440)));
  width: calc(4508 / 1440 * 100vw);
  aspect-ratio: 1 / 1;
  opacity: 0.2547;
  background: #007AC3;
  border-radius: calc(4508 / 1440 * 100vw);
  z-index: -1;

}

.history__video:after {
  content: "";
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(calc(-50% + (63 * 100% / 1440)));
  width: calc(4508 / 1440 * 100vw);
  aspect-ratio: 1 / 1;
  opacity: 0.2547;
  background: #00C681;
  border-radius: calc(4508 / 1440 * 100vw);
  z-index: -1;

}

.history__video iframe {
  width: 100%;
  min-height: 800px;
  position: relative;
}

.history__video-deco01 {
  position: absolute;
  top: -66px;
  right: 19%;
  transform: translateX(calc(-50%));
  width: 91px;
}

.history__video-deco02 {
  position: absolute;
  top: -57px;
  left: 23%;
  transform: translateX(calc(-50%));
  width: 91px;
}

@media screen and (max-width: 1280px) {
  .history {
    margin-top: calc(76 / 1280 * 100vw);
  }

  .history__heading {
    font-size: calc(70 / 1280 * 100vw);
  }

  .history__video {
   padding-top: calc(77 / 1280 * 100vw);
  }

  .history__video iframe {
  min-height: 0;

  }

  .history__video-deco01 {
    top: calc(-66 / 1280 * 100vw);
    right: calc(273 / 1280 * 100vw);
    width: calc(91 / 1280 * 100vw);
  }

  .history__video-deco02 {
    top: calc(-57 / 1280 * 100vw);
    left: calc(302 / 1280 * 100vw);
    width: calc(91 / 1280 * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .history {
    margin-top: 82px;
  }

  .history__heading {
    font-size: 35px;
  }

  .history__video {
    padding-top: 26px;
  }

  .history__video-deco01 {
    width: 38px;
    top: -34px;
    right: 9%;
  }

  .history__video-deco02 {
    width: 38px;
    top: -34px;
    left: 18%;
  }
  
}

@media screen and (max-width: 767px) {
}

.footer {
  padding: 30px 0;
}

.footer__copyright {
  color: rgba(0, 0, 0, 0.55);
  text-align: center;
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }

  .footer__copyright {
    font-size: 9px;
  }
  
}

/* トップへ戻る */
.to-top {
  position: fixed;
  bottom: 72px;
  right: 54px;
  z-index: 9000;
  display: none;
}

.to-top__link {
  display: block;
  width: 131px;
}

@media screen and (max-width: 767px) {
  .to-top {
    bottom: 56px;
    right: 16px;
  }

  .to-top__link {
    width: 61px;
  }
}

/*==================================================
# 職員の声
==================================================*/
.p-staff-voice-contents {
  background: url(../img/staff-voice/bg.png) no-repeat top center /cover;
  padding: 67px 0 80px;
  position: relative;
}


.p-staff-voice-contents::after {
  content: "";
  position: absolute;
  top: -36%;
  left: -29%;
  width: 1580px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #007AC3;
  opacity: 0.17;
}

.p-staff-voice-contents::before {
  content: "";
  position: absolute;
  top: 23%;
  left: -26%;
  width: 1138px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #00C681;
  opacity: 0.18;
  z-index: -1;

}

.p-staff-voice-contents__inner {
  max-width: 1060px;
  padding: 0 30px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.p-staff-voice-contents__inner:before {
  content: "";
  position: absolute;
  bottom: -12%;
  right: -50%;
  width: 1421px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background-color: #E85AFA;
  opacity: 0.15;
  z-index: -1;
}

.p-staff-voice-contents__heading {
  color: #007AC3;
  text-align: center;
  font-size: 50px;
  font-weight: 500;
  line-height: calc(77 / 50);
}

.p-staff-voice-contents__list {
  margin-top: 64px;
}

.p-staff-voice-contents__item + .p-staff-voice-contents__item {
  margin-top: 72px;
}

.p-staff-voice-contents__block {
  width: fit-content;
  position: relative;
}

.p-staff-voice-contents__block--01:before {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 100px;
  width: 6px;
  height: 65px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.p-staff-voice-contents__block--02:before {
  content: "";
  position: absolute;
  bottom: -65px;
  left: 64px;
  width: 6px;
  height: 65px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.p-staff-voice-contents__block--03:before {
  content: "";
  position: absolute;
  bottom: -65px;
  right: 200px;
  width: 6px;
  height: 65px;
  border-left: 1px solid #000;
  border-right: 1px solid #000;
}

.p-staff-voice-contents__block--03+.p-staff-voice-contents__block {
  padding-right: 40px;
}

.p-staff-voice-contents__block + .p-staff-voice-contents__block {
  margin-top: 72px;
}

.p-staff-voice-contents__block--right {
  margin-left: auto;
}

.p-staff-voice-contents__block--center {
  margin-left: auto;
  margin-right: auto;
}


.p-staff-voice-contents__name {
  display: block;
  font-size: 18px;
  line-height: calc(36 / 18);
  padding: 0 24px;
  border: 1.5px solid #000;
  width: fit-content;
  margin-bottom: 24px;

}

.p-staff-voice-contents__title {
  font-size: 23px;
  color: #005BAC;
  font-weight: 500;
  line-height: calc(40 / 23);


}

.p-staff-voice-contents__text {
  font-size: 19px;
  line-height: calc(40 / 19);

}

.p-staff-voice-contents__movie {
  margin: 63px auto 0;
  max-width: 820px;
  position: relative;
}

.p-staff-voice-contents__movie iframe {
  width: 100%;
  aspect-ratio: 821 / 453;
  height: auto;
  border-radius: 20px;

}

.p-staff-voice-contents__deco01 {
  position: absolute;
  top: -163px;
  left: -160px;
  width: 150px;
}

.p-staff-voice-contents__deco02 {
  position: absolute;
  top: -168px;
  right: 110px;
  width: 118px;
}

@media screen and (max-width: 1280px) {
  .p-staff-voice-contents {
    padding: calc(67 / 1280 * 100vw) 0 calc(80 / 1280 * 100vw);
  }

  .p-staff-voice-contents:after {
    width: calc(1580 / 1280 * 100vw);
  }

  .p-staff-voice-contents:before {
    width: calc(1138 / 1280 * 100vw);
  }

  .p-staff-voice-contents__inner {
    max-width: calc(1060 / 1280 * 100vw);
    padding: 0 calc(30 / 1280 * 100vw);
  }

  .p-staff-voice-contents__inner:before {
    width: calc(1421 / 1280 * 100vw);
  }

  .p-staff-voice-contents__heading {
    font-size: max(calc(50 / 1280 * 100vw), 24px);
  }

  .p-staff-voice-contents__list {
    margin-top: calc(64 / 1280 * 100vw);
   }

  .p-staff-voice-contents__item + .p-staff-voice-contents__item {
    margin-top: calc(72 / 1280 * 100vw);
  }

  .p-staff-voice-contents__block--01:before {
    bottom: calc(-65 / 1280 * 100vw);
    right: calc(100 / 1280 * 100vw);
    width: calc(6 / 1280 * 100vw);
    height: calc(65 / 1280 * 100vw);
  }

  .p-staff-voice-contents__block--02:before {
    bottom: calc(-65 / 1280 * 100vw);
    left: calc(64 / 1280 * 100vw);
    width: calc(6 / 1280 * 100vw);
    height: calc(65 / 1280 * 100vw);
  }

  .p-staff-voice-contents__block--03:before {
    bottom: calc(-65 / 1280 * 100vw);
    right: calc(200 / 1280 * 100vw);
    width: calc(6 / 1280 * 100vw);
    height: calc(65 / 1280 * 100vw);
  }

  .p-staff-voice-contents__block--03+.p-staff-voice-contents__block {
    padding-right: calc(40 / 1280 * 100vw);
  }

  .p-staff-voice-contents__block + .p-staff-voice-contents__block {
    margin-top: calc(72 / 1280 * 100vw);
  }

  .p-staff-voice-contents__name {
    font-size: max(calc(18 / 1280 * 100vw), 11px);
  }

  .p-staff-voice-contents__title {
    font-size: max(calc(23 / 1280 * 100vw), 16px);
  }

  .p-staff-voice-contents__text {
    font-size: max(calc(19 / 1280 * 100vw), 12px);
  }

  .p-staff-voice-contents__movie {
    max-width: calc(820 / 1280 * 100vw);
    margin-top: calc(44 / 1280 * 100vw);
  }

  .p-staff-voice-contents__deco01 {
    top: calc(-163 / 1280 * 100vw);
    left: calc(-160 / 1280 * 100vw);
    width: calc(160 / 1280 * 100vw);
  }

  .p-staff-voice-contents__deco02 {
    top: calc(-168 / 1280 * 100vw);
    right: calc(110 / 1280 * 100vw);
    width: calc(118 / 1280 * 100vw);
  }
  
}

@media screen and (max-width: 767px) {
  .p-staff-voice-contents {
    padding: 36px 0 72px;
  }

  .p-staff-voice-contents::after {
    width: calc(710 / 375 * 100vw);
    top: -14%;
    left: -77%;
  }

  .p-staff-voice-contents::before {
    width: calc(550 / 375 * 100%);
    left: -89%;
  }

  .p-staff-voice-contents__inner {
    padding: 0 20px;
    max-width: 92%;
  }

  .p-staff-voice-contents__inner:before {
    width: calc(951 / 375 * 100vw);
    bottom: -7%;
    right: -176%;
  }

  
  .p-staff-voice-contents__list {
    width: fit-content;
    margin: 48px auto 0;
    max-width: 92%;
  }

  .p-staff-voice-contents__item + .p-staff-voice-contents__item {
    margin-top: 42px;
  }

  .p-staff-voice-contents__block {
    width: 100%;

  }

  .p-staff-voice-contents__block--right {
    margin-left: 0;
  }

  .p-staff-voice-contents__block--center {
    margin-right: 0;
    margin-left: 0;
  }

  .p-staff-voice-contents__block--01:before, .p-staff-voice-contents__block--02:before, .p-staff-voice-contents__block--03:before {
    bottom: -34px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: 5px;
    height: 30px;
  }

  .p-staff-voice-contents__block--03+.p-staff-voice-contents__block {
    padding-right: 9px;
  }

  .p-staff-voice-contents__block + .p-staff-voice-contents__block {
    margin-top: 42px;
  }


  .p-staff-voice-contents__name {
    padding: 0 13px;
    margin: 0 auto 16px;
    border-width: 0.8px;    
  }

  .p-staff-voice-contents__movie {
    margin-top: 44px;
    max-width: 100%;
  }

  .p-staff-voice-contents__deco01 {
    width: 64px;
    top: -219px;
    left: -43px;
  }

  .p-staff-voice-contents__deco02 {
    width: 59px;
    top: -220px;
    right: -36px;
  }
}
