@charset "UTF-8";
img {
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

mark {
  font-style: normal;
}

html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  text-align: left;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-animation: fadeIn 1.2s ease-out normal;
          animation: fadeIn 1.2s ease-out normal;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}
html body {
  overflow-x: hidden;
}

p,
a,
.description {
  font-size: 1.5rem;
  line-height: 2.2;
  letter-spacing: 0.05em;
}

@media (scripting: none) {
  html {
    scroll-behavior: smooth;
  }
}
@-webkit-keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
@keyframes fadeIn {
  /*フェードインの詳細な動き*/
  from {
    /*フェードインの始まりの項目*/
    opacity: 0; /*始まりの透明度*/
    -webkit-transform: translateY(1px);
            transform: translateY(1px); /*縦軸の始まりの位置*/
  }
  to {
    /*フェードインの終わりの項目*/
    opacity: 1; /*終わりの透明度*/
    -webkit-transform: translateY(0%);
            transform: translateY(0%); /*縦軸の終わりの位置*/
  }
}
.shippori {
  font-family: "Shippori Mincho", serif;
  letter-spacing: -0.03em;
}
.shippori span {
  letter-spacing: -0.03em;
}

.upper {
  text-transform: uppercase;
}

.cont {
  width: 85.3%;
  max-width: 800px;
  margin: 0 auto;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767.9px) {
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flex-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 767.9px) {
  .flex-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

a {
  text-decoration: none;
}

.j-sb {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.j-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.j-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.a-s {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.sp-none {
  display: block;
}
@media screen and (max-width: 767.9px) {
  .sp-none {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 767.9px) {
  .sp-block {
    display: block;
  }
}

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

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

.none {
  display: none;
}

a {
  color: #ffffff;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
}

li {
  list-style: none;
}

main {
  background: #000;
}

.heading1 {
  font-size: 4rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: -0.03em;
  padding-bottom: 55px;
  margin-bottom: 40px;
  font-family: "Shippori Mincho", serif;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767.9px) {
  .heading1 {
    font-size: 3.2rem;
    padding-bottom: 48px;
    margin-bottom: 32px;
  }
}
.heading1::after {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url(../img/slash.svg);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.heading2 {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  text-align: center;
  color: #00a0e9;
  font-family: "Shippori Mincho", serif;
}

.heading3 {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.6;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  padding-bottom: 6px;
  color: #00a0e9;
  font-family: "Shippori Mincho", serif;
  border-bottom: 1px solid #00a0e9;
}

.link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-bottom: 1px solid #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link::after {
  content: "";
  width: 16px;
  height: 16px;
  background-image: url(../img/link.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.link:hover {
  color: #00a0e9;
  border-color: #00a0e9;
  opacity: 1;
}
.link:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
}

/* fadeUp */
.fade {
  opacity: 0;
}

.fade.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(30px);
            transform: translateY(30px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.header {
  position: relative;
}

.h_logo {
  position: fixed;
  top: 40px;
  left: 40px;
  width: 120px;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .h_logo {
    position: absolute;
    top: 24px;
    left: 24px;
    width: 72px;
  }
}
.h_logo img {
  width: 100%;
}

.lang_switch {
  position: fixed;
  top: 40px;
  right: 40px;
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 10;
}
@media screen and (max-width: 767.9px) {
  .lang_switch {
    position: absolute;
    top: 24px;
    right: 24px;
    gap: 16px;
  }
}
.lang_switch a,
.lang_switch p {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.83;
  position: relative;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767.9px) {
  .lang_switch a,
  .lang_switch p {
    font-size: 1.4rem;
    line-height: 2;
  }
}
.lang_switch a::after,
.lang_switch p::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #00a0e9;
  opacity: 0;
}
.lang_switch a {
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lang_switch a::after {
  opacity: 0;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.lang_switch a:hover {
  color: #00a0e9;
  opacity: 1;
}
.lang_switch a:hover::after {
  opacity: 1;
}

.main_visual {
  height: auto;
  aspect-ratio: 1366/948;
  background-image: url(../img/fv.jpg);
  background-size: cover;
  padding-top: 150px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 767.9px) {
  .main_visual {
    background-image: url(../img/fv2-sp.jpg);
    aspect-ratio: 375/768;
  }
}
.main_visual .main_visual_lead {
  margin: 0 auto;
}
.main_visual .main_visual_lead h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 500;
}
.main_visual .main_visual_lead h2 span {
  font-size: 3.2rem;
  line-height: 1.8;
  text-shadow: 0 2px 40px #08b7f7;
}
@media screen and (max-width: 767.9px) {
  .main_visual .main_visual_lead h2 span {
    font-size: 2.4rem;
  }
}

body.ja .main_visual_lead .text1 {
  padding-left: 23px;
}
body.ja .main_visual_lead .text1 span:nth-child(2) {
  letter-spacing: 0.04em;
}
body.ja .main_visual_lead .text1 span:nth-child(3) {
  letter-spacing: -0.08em;
}
body.ja .main_visual_lead .text1 span:nth-child(4) {
  letter-spacing: -0.1em;
}
body.ja .main_visual_lead .text1 span:nth-child(5) {
  letter-spacing: 0;
}
body.ja .main_visual_lead .text1 span:nth-child(6) {
  letter-spacing: 0;
}
body.ja .main_visual_lead .text2 span:nth-child(1) {
  letter-spacing: -0.14em;
}
body.ja .main_visual_lead .text2 span:nth-child(4) {
  letter-spacing: 0;
}
body.ja .main_visual_lead .text2 span:nth-child(6) {
  letter-spacing: -0.14em;
}
body.ja .main_visual_lead .text2 span:nth-child(7) {
  letter-spacing: -0.1em;
}
body.ja .main_visual_lead .text2 span:nth-child(8) {
  letter-spacing: 0;
}
body.ja .main_visual_lead .text2 span:nth-child(10) {
  letter-spacing: -0.2em;
}
body.ja .main_visual_lead .text2 span:nth-child(11) {
  letter-spacing: -0.1em;
}

.bg_img {
  position: relative;
}
.bg_img::before {
  content: "";
  position: absolute;
  top: 130px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  z-index: 1;
}
@media screen and (max-width: 767.9px) {
  .bg_img::before {
    background-image: url(../img/bg-sp.jpg);
    top: 64px;
  }
}
.bg_img.fixed-bg::before {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100vh !important;
}

section {
  margin-bottom: 200px;
}
@media screen and (max-width: 767.9px) {
  section {
    margin-bottom: 120px;
  }
}

section,
.footer {
  position: relative;
  z-index: 2;
}

.sec1 {
  padding-top: 100px;
}
@media screen and (max-width: 767.9px) {
  .sec1 {
    padding-top: 64px;
  }
}
@media screen and (max-width: 767.9px) {
  .sec1 .heading1 .js-text {
    display: block;
  }
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(1) {
  letter-spacing: 0;
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(2) {
  letter-spacing: 0;
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(3) {
  letter-spacing: -0.01em;
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(4) {
  letter-spacing: -0.01em;
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(5) {
  letter-spacing: -0.01em;
}
.sec1 .heading1 span.js-text:nth-child(1) span:nth-child(6) {
  letter-spacing: -0.01em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(1) {
  letter-spacing: -0.06em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(2) {
  letter-spacing: -0.12em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(3) {
  letter-spacing: -0.2em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(4) {
  letter-spacing: -0.12em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(5) {
  letter-spacing: -0.28em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(6) {
  letter-spacing: -0.3em;
}
.sec1 .heading1 span.js-text:nth-child(2) span:nth-child(7) {
  letter-spacing: -0.16em;
}
.sec1 .sec1_box {
  margin-top: 64px;
  padding: 64px;
  border-radius: 8px;
  background: rgba(26, 44, 66, 0.6);
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .sec1 .sec1_box {
    margin: 40px 0;
    padding: 32px;
  }
}
.sec1 .sec1_box .sec1_box_img {
  border-radius: 4px;
  margin-bottom: 16px;
  padding: 51.5px 64px;
  background: #fff;
}
@media screen and (max-width: 767.9px) {
  .sec1 .sec1_box .sec1_box_img {
    padding: 16px;
  }
}
.sec1 .sec1_box p {
  color: #00a0e9;
  margin-bottom: 4px;
  font-weight: 700;
}
.sec1 .sec1_box .description {
  color: #fff;
  margin-bottom: 0;
  font-weight: 400;
}
.sec1 .chronology {
  border-radius: 8px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
  padding: 22px 40px;
  margin: 40px 0 64px;
}
@media screen and (max-width: 767.9px) {
  .sec1 .chronology {
    padding: 22px 24px;
    margin: 40px 0;
  }
}
.sec1 .chronology::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1.2px;
  z-index: 2;
  background: linear-gradient(130deg, #71caf3, #00a0e9 25%, #005a83 50%, #00a0e9 75%, #71caf3);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .sec1 .chronology::before {
    background: none;
    border: 1px solid #00a0e9;
    mask: none;
    -webkit-mask: none;
  }
}
@media screen and (max-width: 767.9px) {
  .sec1 .chronology ol li {
    margin-bottom: 10px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 767.9px) {
  .sec1 .chronology ol li:last-child {
    margin-bottom: 0;
  }
}
.sec1 .chronology ol li p:nth-child(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  font-size: 1.5rem;
  color: #00a0e9;
  line-height: 2;
  width: 90px;
  letter-spacing: 0.03em;
}
.sec1 .chronology ol li p:nth-child(1)::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 1px;
  background: #00a0e9;
  border-radius: 50%;
}
.sec1 .chronology ol li p:nth-child(2) {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  color: #fff;
}
.sec1 .chronology ol .dots p:nth-child(1) {
  padding-left: 16px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.sec1 .chronology ol .dots p:nth-child(1)::before {
  content: none;
}

.sec2 .sec2_detail1 {
  margin-bottom: 64px;
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail1 {
    margin-bottom: 40px;
  }
}
.sec2 .sec2_detail2 {
  margin-bottom: 80px;
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail2 {
    margin-bottom: 40px;
  }
}
.sec2 .sec2_detail2 .heading2 {
  margin-bottom: 24px;
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail2 .heading2 {
    margin-bottom: 16px;
  }
}
.sec2 .sec2_detail2 .heading3 span {
  margin-right: 9px;
}
.sec2 .sec2_detail2 .flow_item {
  margin-bottom: 40px;
}
.sec2 .sec2_detail2 .flex-top {
  gap: 40px;
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail2 .flex-top {
    gap: 16px;
  }
}
.sec2 .sec2_detail2 .flex-top .description {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail2 .flex-top .description {
    width: 100%;
  }
}
.sec2 .sec2_detail2 .flex-top .img {
  width: calc(50% - 20px);
}
@media screen and (max-width: 767.9px) {
  .sec2 .sec2_detail2 .flex-top .img {
    width: 100%;
  }
}
.sec2 .sec2_detail2 .flex-top .img img {
  border-radius: 8px;
  display: block;
  margin-bottom: 8px;
}
.sec2 .sec2_detail2 .flex-top .img p {
  font-size: 1.3rem;
  line-height: 1.6;
}
.sec2 .comment {
  margin-bottom: 40px;
  padding: 63px 64px;
  border-radius: 8px;
  position: relative;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767.9px) {
  .sec2 .comment {
    padding: 31px 32px;
  }
}
.sec2 .comment::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: linear-gradient(130deg, #71caf3, #00a0e9 25%, #005a83 50%, #00a0e9 75%, #71caf3);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .sec2 .comment::before {
    background: none;
    border: 1px solid #00a0e9;
    mask: none;
    -webkit-mask: none;
  }
}
.sec2 .comment .flex-top {
  gap: 32px 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 40px;
}
.sec2 .comment .flex-top h3 {
  font-weight: 500;
}
@media screen and (max-width: 767.9px) {
  .sec2 .comment .flex-top h3 {
    margin-right: -20px;
  }
}
.sec2 .comment .flex-top h3 span {
  display: block;
  font-size: 3.2rem;
  line-height: 1.6;
  margin: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(#005a83), color-stop(50%, #00a0e9), to(#71caf3));
  background: linear-gradient(0deg, #005a83, #00a0e9 50%, #71caf3);
  background: -webkit-linear-gradient(180deg, #005a83, #00a0e9 50%, #71caf3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media screen and (max-width: 767.9px) {
  .sec2 .comment .flex-top h3 span {
    font-size: 2.4rem;
  }
}
.sec2 .comment .flex-top img {
  width: 160px;
  height: auto;
  aspect-ratio: 1/1;
  border-radius: 4px;
}
@media screen and (max-width: 767.9px) {
  .sec2 .comment .flex-top img {
    margin: 0 auto;
  }
}
.sec2 .comment .citation {
  display: block;
  font-size: 1.1rem;
  margin-top: 8px;
  line-height: 1.6;
  letter-spacing: 0.05em;
}
.sec2 .comment .sign {
  margin-top: 24px;
  text-align: right;
}
.sec2 .comment .sign p {
  font-size: 1.3rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
.sec2 .comment .sign p:nth-child(2) {
  font-size: 2rem;
  margin-bottom: 0;
}
.sec2 .comment .sign img {
  width: 160px;
}

.sec3 {
  margin-bottom: 190px;
}
@media screen and (max-width: 767.9px) {
  .sec3 {
    margin-bottom: 80px;
  }
}

.footer {
  padding: 24px 0 40px;
  position: relative;
}
.footer p {
  font-size: 1.1rem;
  text-align: center;
  margin-bottom: 6px;
}
.footer .f_logo {
  width: 240px;
  margin: 0 auto 24px;
}
.footer .f_logo img {
  width: 100%;
}
.footer small {
  text-align: center;
  font-size: 1.1rem;
  display: block;
}

.simplebar-track.simplebar-horizontal {
  height: 10px;
  background: #b5b5b5;
  border-radius: 5px;
  max-width: 372px;
  margin: 0 auto;
}

.simplebar-scrollbar {
  height: 10px;
  background: #41485b;
  border-radius: 5px;
  top: 0;
}

.simplebar-content-wrapper {
  margin-right: 10px;
}

.news_list {
  max-height: 675px;
  overflow: auto;
  margin-right: -10px;
}
@media screen and (max-width: 767.9px) {
  .news_list {
    max-height: 595px;
  }
}
.news_list .news_full {
  display: none;
}
.news_list .news_item {
  cursor: pointer;
  padding: 24px 90px 24px 40px;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 8px;
  position: relative;
  min-height: 127px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767.9px) {
  .news_list .news_item {
    padding: 16px 64px 16px 24px;
    min-height: 111px;
  }
}
.news_list .news_item::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 48px;
  width: 16px;
  height: 8px;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url(../img/arrow.svg);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  .news_list .news_item::before {
    right: 32px;
  }
}
.news_list .news_item::after {
  content: "";
  opacity: 0;
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: linear-gradient(130deg, #71caf3, #00a0e9 25%, #005a83 50%, #00a0e9 75%, #71caf3);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .news_list .news_item::after {
    background: none;
    border: 1px solid #00a0e9;
    mask: none;
    -webkit-mask: none;
  }
}
.news_list .news_item time {
  display: block;
  color: #00a0e9;
  margin-bottom: 4px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.news_list .news_item .news_title {
  font-size: 1.5rem;
  line-height: 1.8;
  font-weight: 400;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  display: -webkit-box;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  letter-spacing: 0.05em;
}
.news_list .news_item:hover::before {
  -webkit-transform: translateY(-50%) translateX(8px);
          transform: translateY(-50%) translateX(8px);
}
.news_list .news_item:hover::after {
  opacity: 1;
}
.news_list .news_item:hover .news_title {
  color: #00a0e9;
  text-decoration: underline;
}

.news-popup {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 19 !important;
}
.news-popup .popup-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 20;
}
.news-popup .popup-content {
  position: relative;
  max-width: 800px;
  width: 85.3%;
  max-height: 60vh;
  margin: 20vh auto 0;
  background: #000;
  border-radius: 8px;
  overflow: hidden;
  -webkit-animation: popupSlideIn 0.3s ease-out;
          animation: popupSlideIn 0.3s ease-out;
  z-index: 21;
}
@media screen and (max-width: 767.9px) {
  .news-popup .popup-content {
    max-height: calc(100svh - 163px);
    margin-top: 82px;
  }
}
.news-popup .popup-content::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 8px;
  padding: 1px;
  background: linear-gradient(130deg, #71caf3, #00a0e9 25%, #005a83 50%, #00a0e9 75%, #71caf3);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
          mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
          mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  pointer-events: none;
}
@-moz-document url-prefix() {
  .news-popup .popup-content::before {
    background: none;
    border: 1px solid #00a0e9;
    mask: none;
    -webkit-mask: none;
  }
}
.news-popup .popup-content .popup-close-top {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  width: 48px;
  height: 48px;
  cursor: pointer;
  z-index: 22;
  padding: 0;
}
.news-popup .popup-content .popup-close-top::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../img/button_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.news-popup .popup-content .popup-close-top:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
}
.news-popup .popup-content .popup-body {
  padding: 0 64px 80px;
  margin-top: 80px;
  overflow-y: auto;
  max-height: calc(60vh - 150px);
  background: #000;
  scrollbar-width: none;
}
@media screen and (max-width: 767.9px) {
  .news-popup .popup-content .popup-body {
    padding: 0 32px 32px;
    max-height: calc(100svh - 163px - 112px);
  }
}
.news-popup .popup-content .popup-body::-webkit-scrollbar {
  display: none;
}
.news-popup .popup-content .popup-body .popup-date {
  display: block;
  color: #00a0e9;
  margin-bottom: 12px;
  line-height: 1.6;
  font-family: "Shippori Mincho", serif;
  font-size: 1.3rem;
  font-weight: 500;
}
.news-popup .popup-content .popup-body .popup-title {
  font-size: 1.8rem;
  font-weight: 400;
  color: #00a0e9;
  line-height: 1.8;
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
.news-popup .popup-content .popup-body .popup-text {
  color: #ffffff;
  font-size: 1.5rem;
  margin-bottom: 24px;
}
.news-popup .popup-content .popup-body .popup-text a {
  text-decoration: underline;
}
.news-popup .popup-content .popup-body .popup-text img {
  display: block;
  margin: 16px 0;
}
.news-popup .popup-content .popup-close-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  font-size: 1.3rem;
  line-height: 1.8;
  cursor: pointer;
}
.news-popup .popup-content .popup-close-bottom::after {
  content: "";
  width: 32px;
  height: 32px;
  background-image: url(../img/button_close.svg);
  background-size: contain;
  background-repeat: no-repeat;
  -webkit-transition: all 0.1s;
  transition: all 0.1s;
}
.news-popup .popup-content .popup-close-bottom:hover {
  color: #00a0e9;
  text-decoration: underline;
}
.news-popup .popup-content .popup-close-bottom:hover::after {
  -webkit-filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
          filter: brightness(0) saturate(100%) invert(49%) sepia(75%) saturate(2822%) hue-rotate(168deg) brightness(95%) contrast(101%);
}

@-webkit-keyframes popupSlideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(-20px);
            transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}

@keyframes popupSlideIn {
  from {
    opacity: 0;
    -webkit-transform: scale(0.9) translateY(-20px);
            transform: scale(0.9) translateY(-20px);
  }
  to {
    opacity: 1;
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
#scroll-top {
  position: fixed;
  z-index: 2;
  bottom: 40px;
  right: 40px;
  width: 64px;
  height: 64px;
  display: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background: rgba(0, 0, 0, 0.6);
  border-radius: 4px;
}
@media screen and (max-width: 767.9px) {
  #scroll-top {
    width: 40px;
    height: 40px;
    bottom: 40px;
    right: 15px;
  }
}

#scroll-top a {
  width: 100%;
  height: 100%;
  display: block;
}

#scroll-top a span {
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 30px;
  right: 16px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  #scroll-top a span {
    width: 15px;
    top: 19px;
    right: 8px;
  }
}

#scroll-top a span::before {
  content: "";
  width: 18px;
  height: 2px;
  border-radius: 3px;
  background: #fff;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  top: 9px;
  right: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767.9px) {
  #scroll-top a span::before {
    width: 15px;
    top: 7px;
    right: 7px;
  }
}

#scroll-top:hover {
  -webkit-transform: translateY(-8px);
          transform: translateY(-8px);
}
#scroll-top:hover a {
  opacity: 1;
}
#scroll-top:hover a span {
  background: #00a0e9;
}
#scroll-top:hover a span::before {
  background: #00a0e9;
}

@media screen and (max-width: 767.9px) {
  body.en .main_visual {
    padding-top: 160px;
  }
}
body.en .sec2 .comment .sign p:nth-child(2) {
  margin-bottom: 8px;
}/*# sourceMappingURL=common.css.map */