@charset "UTF-8";
html {
  width: 100%;
  height: 100%;
}

@media (max-width: 767px) and (min-width: 375px) {
  html {
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
@media (max-width: 1080px) and (min-width: 768px) {
  html {
    font-size: 16px;
    font-size: 1.4814814815vw;
  }
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "游ゴシック", YuGothic, Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  color: palette("basic", "text");
  overflow-x: hidden;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  background-color: #0F1F36;
}
body.no_scroll {
  overflow: hidden;
  position: relative;
}

a {
  cursor: pointer;
  text-decoration: none;
  outline: none;
  color: #fff;
}

p {
  font-size: max(1rem, 16px);
  line-height: 1.875;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

.u-sp {
  display: none;
}

@media screen and (max-width: 767px) {
  p {
    font-size: 1rem;
    line-height: 1.875;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: block;
  }
}
/* —————————————————
  ヘッダー header
  —————————————————*/
.l-header {
  width: 100%;
  height: 120px;
  margin: 0 auto;
  transition: 0.3s ease all;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgb(15, 31, 54);
  background: linear-gradient(0deg, rgba(15, 31, 54, 0) 0%, rgba(15, 31, 54, 0.3) 100%);
}

.l-header__logo {
  position: relative;
  z-index: 9;
  width: 18%;
}

.l-header__inner {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  transition: 0.5s;
  height: 100%;
  padding: 1.875rem 3.75rem 0;
}

.l-header__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  position: relative;
  gap: 30px;
  z-index: 9;
}
.l-header__list li a {
  font-size: 0.875rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 10px;
}
.l-header__list li a .en {
  display: none;
}
.l-header__list li:not(.nav-contact) a {
  position: relative;
  text-decoration: none;
  height: 100%;
  transition: 0.3s ease;
  color: #fff;
}
.l-header__list li:not(.nav-contact) a::after {
  content: "";
  position: absolute;
  left: -4px;
  bottom: -2px;
  width: calc(100% + 8px);
  height: 1px;
  background: #fff;
  -ms-transform: scale(0, 1);
      transform: scale(0, 1);
  -ms-transform-origin: right top;
      transform-origin: right top;
  transition: transform 0.3s;
}
@media (hover: hover) {
  .l-header__list li:not(.nav-contact) a:hover::after {
    -ms-transform: scale(1, 1);
        transform: scale(1, 1);
    -ms-transform-origin: left top;
        transform-origin: left top;
  }
}
.l-header__list li.nav-contact a {
  border: 1px solid #fff;
  padding: 0.625rem 1.25rem;
  color: #fff;
  border-radius: 25px;
  transition: 0.3s ease;
  width: 100%;
  max-width: 9.75rem;
}
.l-header__list li.nav-contact a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 6px;
  -webkit-mask-image: url("../img/icon_arrow.svg");
          mask-image: url("../img/icon_arrow.svg");
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-position: top right;
          mask-position: top right;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: #fff;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-header__list li.nav-contact a:hover {
    background-color: #fff;
    color: #00578D;
  }
  .l-header__list li.nav-contact a:hover::after {
    background-color: #00578D;
  }
}

.c-hamburger {
  display: none;
}

.l-header.fixed {
  position: fixed;
  z-index: 999999;
}
.l-header.fixed .l-header__logo {
  margin-top: 0;
}

@media screen and (max-width: 992px) {
  .l-header {
    padding: 0;
    height: 90px;
  }
  .l-header .l-header__logo {
    width: 50%;
  }
  .l-header__inner {
    padding: 15px;
  }
  .l-header__nav {
    z-index: 99999;
    width: 100%;
    background: rgb(51, 68, 90);
    background: linear-gradient(0deg, rgb(51, 68, 90) 0%, rgb(15, 31, 54) 100%);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    padding-top: 5.875rem;
  }
  .l-header__list {
    padding-bottom: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 0;
    width: calc(100% - 60px);
    margin: 0 auto;
  }
  .l-header__list li {
    width: 100%;
    text-align: left;
    padding-bottom: 18px;
    margin-bottom: 10px;
  }
  .l-header__list li a {
    width: 100%;
    display: block;
    padding: 10px 0;
    color: #fff;
    font-weight: 400;
    position: relative;
  }
  .l-header__list li a .en {
    display: block;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.75rem;
    font-weight: 500;
    letter-spacing: 0.07em;
  }
  .l-header__list li a .jp {
    color: #C7B7A0;
  }
  .l-header__list li:not(.nav-contact) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .l-header__list li:not(.nav-contact) a::after {
    content: "";
    display: block;
    width: 34px;
    height: 34px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    background: url("../img/icon_arrow.svg") no-repeat center/10px 5px;
    transition: 0.3s ease;
    position: absolute;
    left: initial;
    top: 50%;
    right: 0;
    -ms-transform: translateY(-50%);
        transform: translateY(-50%);
  }
  .l-header__list li.nav-contact {
    width: 100%;
    margin: 20px auto 0;
  }
  .l-header__list li.nav-contact a {
    color: #0F1F36;
    max-width: 100%;
    background: none;
    background-color: #E2E9EF;
    font-size: 1.875rem;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    padding: 18px;
    border-radius: 0;
  }
  .l-header__list li.nav-contact a .en {
    font-size: 1.875rem;
  }
  .l-header__list li.nav-contact a .jp {
    display: none;
  }
  .l-header__list li.nav-contact a::after {
    width: 34px;
    height: 34px;
    -webkit-mask: none;
            mask: none;
    background: url("../img/icon_arrow_blue.svg") no-repeat top right/100%;
  }
  .c-hamburger {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    z-index: 99999999;
    display: block;
  }
  .c-hamburger span {
    display: inline-block;
    transition: all 0.2s;
    box-sizing: border-box;
    position: absolute;
    height: 1px;
    background-color: #fff;
    border-radius: 4px;
    left: 8px;
  }
  .c-hamburger span:nth-of-type(1) {
    top: 20px;
    width: 42px;
  }
  .c-hamburger span:nth-of-type(2) {
    top: 28px;
    width: 34px;
  }
  .c-hamburger span:nth-of-type(3) {
    top: 36px;
    width: 24px;
  }
  .c-hamburger.is-active span:nth-of-type(1) {
    -ms-transform: translateY(8px) rotate(-30deg);
        transform: translateY(8px) rotate(-30deg);
  }
  .c-hamburger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .c-hamburger.is-active span:nth-of-type(3) {
    -ms-transform: translateY(-8px) rotate(30deg);
        transform: translateY(-8px) rotate(30deg);
    width: 42px;
  }
}
/* —————————————————
  フッター footer
  —————————————————*/
.l-footer {
  position: relative;
  overflow: hidden;
  background: rgb(30, 41, 59);
  background: linear-gradient(41deg, rgb(30, 41, 59) 0%, rgb(11, 13, 16) 100%);
  color: #fff;
  padding: 6.375rem 0;
}

.l-footer__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 2.1875rem;
}
.l-footer__wrap .l-footer__block {
  width: 33.3333333333%;
}

.l-footer__info {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 2.75rem;
}
.l-footer__info address {
  font-size: 0.875rem;
  line-height: 1.72;
  letter-spacing: 0.07em;
}

.l-footer__nav .l-footer__list li:not(:last-child) {
  margin-bottom: 30px;
}
.l-footer__nav .l-footer__list a {
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0.07em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 16px;
  transition: 0.3s ease;
}
.l-footer__nav .l-footer__list a::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 6px;
  background: url("../img/icon_arrow.svg") no-repeat top right/100%;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-footer__nav .l-footer__list a:hover {
    opacity: 0.7;
  }
  .l-footer__nav .l-footer__list a:hover::before {
    -ms-transform: translateX(3px);
        transform: translateX(3px);
  }
}

.l-footer__group {
  background-color: #232B36;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  padding: 1.875rem 0;
}
.l-footer__group .ttl {
  font-weight: 700;
}
.l-footer__group .list {
  line-height: 2;
}
.l-footer__group .list a {
  color: #fff;
  font-size: 0.875rem;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .l-footer__group .list a:hover {
    opacity: 0.7;
  }
}

.c-copyLight {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .l-footer {
    padding: 5rem 0 7.5rem;
  }
  .l-footer__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 4.375rem;
  }
  .l-footer__wrap .l-footer__block {
    width: 100%;
  }
  .l-footer__info {
    gap: 1.25rem;
  }
  .l-footer__nav .l-footer__list li:not(:last-child) {
    margin-bottom: 26px;
  }
  .l-footer__group {
    -ms-flex-pack: start;
        justify-content: flex-start;
    padding: 1.875rem 0 1.875rem 2.5rem;
  }
  .l-footer__group .list {
    line-height: 1.8;
  }
  .l-footer__group .list a {
    color: #fff;
    font-size: 0.875rem;
  }
  .c-copyLight {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.07em;
  }
}
/* —————————————————
  common
  —————————————————*/
/* ------- title --------- */
.c-ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 500;
}
.c-ttl .jp {
  font-size: 0.875rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.07em;
}
.c-ttl .en {
  font-size: 3.75rem;
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  color: #C7B7A0;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .c-ttl {
    gap: 10px;
  }
  .c-ttl .en {
    font-size: 3.125rem;
  }
}
.c-ttl-sub {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  width: 100%;
  padding-bottom: 20px;
  margin-bottom: 60px;
  font-weight: 500;
  border-bottom: 1px solid rgba(15, 31, 54, 0.1);
  position: relative;
  gap: 8px;
}
.c-ttl-sub::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background-color: #008EE6;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.c-ttl-sub .en {
  font-size: 1.375rem;
  line-height: 1.2;
  font-family: "Cormorant Garamond", serif;
  color: rgba(15, 31, 54, 0.5);
  letter-spacing: 0.04em;
}
.c-ttl-sub .jp {
  font-size: 2.25rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.07em;
}

@media screen and (max-width: 767px) {
  .c-ttl-sub {
    margin-bottom: 40px;
  }
  .c-ttl-sub .en {
    font-size: 1.125rem;
  }
  .c-ttl-sub .jp {
    font-size: 1.75rem;
  }
}
/* ------- btn --------- */
.c-btn {
  color: #fff;
  font-size: 1.125rem;
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  width: 100%;
  max-width: 140px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 8px;
  transition: 0.3s ease;
  letter-spacing: 0.07em;
}
.c-btn::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  background: url("../img/icon_arrow_blue.svg") no-repeat center/100%;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .c-btn:hover::after {
    background-image: url("../img/icon_arrow_wh.svg");
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    margin-top: 40px;
    max-width: 8.75rem;
  }
  .c-btn a {
    font-size: 1.125rem;
    padding: 14px 20px;
    max-width: 100%;
    white-space: nowrap;
  }
}
/* ------- en text --------- */
.c-text-en {
  font-size: 7.8125rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
  width: 100%;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  color: #98A1AD;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.07em;
}
.c-text-en span {
  display: inline-block;
  animation: loopText 100s linear infinite;
  white-space: nowrap;
  line-height: 0.8;
  padding-bottom: 10px;
}

@keyframes loopText {
  0% {
    transform: translate(-100%);
  }
  100% {
    transform: translate(0);
  }
}
@media screen and (max-width: 767px) {
  .c-text-en {
    font-size: 5.25rem;
  }
}
.u-serif {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}

/* —————————————————
  home
  —————————————————*/
.l-wrap {
  width: calc(100% - 60px);
  max-width: 1000px;
  margin: 0 auto;
}

.l-wrap__wide {
  width: calc(100% - 60px);
  max-width: 1160px;
  margin: 0 auto;
}

/* ----------------------------
   top mv
 ---------------------------- */
.p-top-mv {
  width: 100%;
  height: 100svh;
  position: relative;
  overflow: hidden;
}

.p-top-mv__img {
  width: 100%;
  height: 100%;
  position: relative;
}
.p-top-mv__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 40%;
  background: linear-gradient(180deg, rgba(14, 29, 51, 0) 0%, rgb(15, 31, 54) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
}
.p-top-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-top-mv__text {
  position: absolute;
  bottom: 6%;
  left: calc((100% - 62.5rem) / 2);
  color: #fff;
}

.p-top-mv__ttl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 1.875rem;
  z-index: 9;
}
.p-top-mv__ttl .en {
  display: inline-block;
  font-family: "Cormorant Garamond", serif;
  font-size: max(1.5rem, 24px);
  letter-spacing: 0.07em;
}
.p-top-mv__ttl .jp {
  display: inline-block;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-size: max(3.125rem, 50px);
  line-height: 1.4;
  letter-spacing: 0.07em;
}

.p-top-mv__lead {
  font-family: "Cormorant Garamond", serif;
  margin-top: 2.5rem;
  letter-spacing: 0.07em;
}

.p-top-mv__scroll {
  text-align: center;
  z-index: 1;
  position: absolute;
  bottom: 6%;
  right: calc((100% - 62.5rem) / 2);
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.p-top-mv__scroll p {
  color: #eee;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  display: inline-block;
}
.p-top-mv__scroll span {
  height: 78px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.3);
  display: block;
  overflow: hidden;
  position: relative;
}
.p-top-mv__scroll span::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 30px;
  background: #fff;
  animation: lineMove 2s ease-in-out infinite;
}

@keyframes lineMove {
  0% {
    bottom: 77px;
    opacity: 0;
  }
  100% {
    bottom: -40px;
    opacity: 1;
  }
}
@media screen and (max-width: 767px) {
  .p-top-mv {
    height: 100svh;
    max-height: 700px;
  }
  .p-top-mv__text {
    bottom: 8.6%;
    left: 30px;
  }
  .p-top-mv__ttl {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
        flex-direction: column;
    -ms-flex-align: start;
        align-items: flex-start;
    gap: 1.5rem;
    z-index: 9;
  }
  .p-top-mv__ttl .en {
    font-size: min(1rem, 32px);
  }
  .p-top-mv__ttl .jp {
    font-size: min(2.375rem, 42px);
  }
  .p-top-mv__lead {
    font-size: 0.75rem;
    margin-top: 20px;
  }
  .p-top-mv__scroll {
    bottom: 8%;
    right: 15px;
  }
}
/* ----------------------------
   top about
 ---------------------------- */
.p-top-about {
  position: relative;
  margin: 5rem 0 6.25rem;
  min-height: 42.25rem;
}

.p-top-about__block {
  width: 50%;
  margin: 0 0 0 auto;
  padding: 4.375rem 0 5rem 3.125rem;
}
.p-top-about__block .p-top-about__text p {
  letter-spacing: 0.07em;
  color: #fff;
}
.p-top-about__block .p-top-about__text p:not(:last-child) {
  margin-bottom: 20px;
}
.p-top-about__block .c-btn {
  margin-top: 40px;
}

.p-top-about__img {
  position: absolute;
  top: 0;
  left: 0;
  width: 40.8%;
  height: 42.25rem;
}
.p-top-about__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .p-top-about {
    margin: 1.25rem 0 3.75rem;
    min-height: 100%;
  }
  .p-top-about__block {
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .p-top-about__block .c-ttl {
    -ms-flex-align: end;
        align-items: flex-end;
    margin-bottom: 0;
    position: relative;
    z-index: 1;
  }
  .p-top-about__block .p-top-about__text {
    margin-top: 30px;
  }
  .p-top-about__img {
    position: static;
    width: 72vw;
    height: auto;
    margin-left: calc(50% - 50vw);
    margin-top: -20px;
  }
}
/* ----------------------------
   top news
 ---------------------------- */
.p-top-news {
  overflow: hidden;
  padding-top: 5rem;
  margin-bottom: 9.375rem;
}

.p-top-news-block {
  margin-top: 80px;
}

.p-top-news-slider {
  overflow: initial;
}
.p-top-news-slider .swiper-control__wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: end;
      justify-content: flex-end;
  gap: 20px;
  width: 100%;
  margin: 40px 0 0;
  /* ------ swiper btn ------ */
}
.p-top-news-slider .swiper-control__wrap .swiper-button-next,
.p-top-news-slider .swiper-control__wrap .swiper-button-prev {
  width: 3.5rem;
  height: 3.5rem;
  margin-top: 0;
  transition: 0.3s ease;
  position: static;
}
@media (hover: hover) {
  .p-top-news-slider .swiper-control__wrap .swiper-button-next:hover,
  .p-top-news-slider .swiper-control__wrap .swiper-button-prev:hover {
    opacity: 0.7;
  }
}
.p-top-news-slider .swiper-control__wrap .swiper-button-next:after,
.p-top-news-slider .swiper-control__wrap .swiper-button-prev:after {
  content: "";
  display: block;
  font-size: 1.75rem;
  transition: 0.3s ease;
  display: block;
  width: 3.5rem;
  min-width: 3.5rem;
  height: 3.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/15px 8px;
}
.p-top-news-slider .swiper-control__wrap .swiper-button-next:after {
  content: "";
}
.p-top-news-slider .swiper-control__wrap .swiper-button-prev:after {
  content: "";
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
  margin-left: 4px;
}
.p-top-news-slider .swiper-control__wrap .c-btn {
  position: absolute;
  top: -100px;
  right: 0;
}

.p-top-news-slider__item {
  transition: 0.3s ease;
}
.p-top-news-slider__item .p-news__img {
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-top-news-slider__item .p-news__img img {
  aspect-ratio: 260/146;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.3s ease;
}
.p-top-news-slider__item .p-news__text {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  letter-spacing: 0.05em;
  gap: 4px 10px;
}
.p-top-news-slider__item .p-news__text .category {
  font-size: 0.8125rem;
  border: 1px solid #516889;
  border-radius: 3px;
  padding: 0 4px;
}
.p-top-news-slider__item .p-news__text .ttl {
  font-weight: 700;
  line-height: 1.875;
  font-size: 1rem;
}
@media (hover: hover) {
  .p-top-news-slider__item:hover {
    opacity: 0.8;
  }
  .p-top-news-slider__item:hover .p-news__img img {
    -ms-transform: scale(1.08);
        transform: scale(1.08);
  }
}

@media screen and (max-width: 767px) {
  .p-top-news {
    padding-top: 2.5rem;
    margin-bottom: 7.5rem;
  }
  .p-top-news-slider .swiper-control__wrap .c-btn {
    position: static;
    margin-top: 0;
    margin-right: 1.5rem;
  }
}
/* ----------------------------
   top business
 ---------------------------- */
.p-top-our-business {
  position: relative;
  z-index: 1;
}
.p-top-our-business .l-wrap__wide {
  background-color: #152B4A;
  /* padding: 7.5rem 0; */
  padding: 4.5rem 0;
  margin-top: 4rem;
}
.p-top-our-business .l-wrap {
  position: relative;
}
.p-top-our-business .c-btn {
  position: absolute;
  top: 3.125rem;
  right: 0;
}

.p-top-our-business__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 2.5rem 3.125rem;
}
.p-top-our-business__list .item {
  width: calc(33.3333333333% - 2.125rem);
  letter-spacing: 0.07em;
  transition: 0.3s ease;
  color: #fff;
}
.p-top-our-business__list .item .item__img {
  background: #fff;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 90px;
  margin-bottom: 15px;
}
.p-top-our-business__list .item .ttl {
  font-weight: 700;
  font-size: 1.125rem;
}
@media (hover: hover) {
  .p-top-our-business__list .item:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-top-our-business {
    background-color: #152B4A;
  }
  .p-top-our-business .l-wrap__wide {
    background: none;
    padding: 5rem 0;
  }
  .p-top-our-business .l-wrap {
    width: 100%;
  }
  .p-top-our-business .c-btn {
    position: static;
  }
  .p-top-our-business__list {
    gap: 2.5rem;
  }
  .p-top-our-business__list .item {
    width: 100%;
  }
}
/* ----------------------------
   top action
 ---------------------------- */
.p-top-bg {
  position: relative;
  padding: 9.375rem 0;
  background: url("../img/top_bg.jpg") no-repeat center/cover;
  margin-top: -9.375rem;
}

.p-top-action {
  margin-top: 9.375rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  padding-bottom: 6.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.p-top-action__links {
  margin-top: 2.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  gap: 20px;
}

.p-top-action__block {
  position: relative;
  transition: 0.3s ease;
}
.p-top-action__block .block__text {
  position: absolute;
  top: 0;
  left: 0;
  padding: 20px 20px 20px 30px;
  width: 100%;
  height: 100%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.p-top-action__block .block__text .ttl {
  font-size: 1.375rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
}
.p-top-action__block .block__text .c-btn {
  margin: 0 0 0 auto;
}
.p-top-action__block .block__text .c-btn::after {
  background-image: url("../img/icon_arrow_wh.svg");
}
.p-top-action__block .block__img {
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-top-action__block:hover .block__img {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-top-bg {
    padding: 7.5rem 0;
    margin-top: 0;
  }
  .p-top-bg .l-wrap {
    width: 100%;
  }
  .p-top-action {
    margin-top: 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 7.5rem;
  }
  .p-top-action__links {
    margin-top: 0;
    gap: 30px;
  }
}
/* ----------------------------
   top company
 ---------------------------- */
.p-top-company {
  padding-top: 6.25rem;
}
.p-top-company .c-f-box {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.p-top-company .c-f-box .c-ttl {
  width: 50%;
}
.p-top-company .c-f-box .lead {
  width: 50%;
  letter-spacing: 0.07em;
  margin-top: 2.5rem;
  color: #fff;
}

.p-top-company__links {
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.p-top-company__links .item {
  width: 50%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 14.6875rem;
  background-color: #152B4A;
  border: 1px solid #37537B;
  transition: 0.3s ease;
}
.p-top-company__links .item .wrap {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 25px;
}
.p-top-company__links .item .wrap::before {
  content: "";
  display: inline-block;
  width: 40px;
  min-width: 40px;
  height: 40px;
  background: url("../img/icon_arrow_blue.svg") no-repeat center/100%;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-top-company__links .item .wrap:hover::after {
    background-image: url("../img/icon_arrow_wh.svg");
  }
}
.p-top-company__links .item .links__ttl {
  margin-bottom: 0;
  width: auto;
}
.p-top-company__links .item .links__ttl .jp {
  font-size: 0.875rem;
}
.p-top-company__links .item .links__ttl .en {
  font-size: 2.25rem;
  color: #fff;
}
@media (hover: hover) {
  .p-top-company__links .item:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 767px) {
  .p-top-company .c-f-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .p-top-company .c-f-box .c-ttl {
    width: 100%;
  }
  .p-top-company .c-f-box .lead {
    width: 100%;
    margin-top: 0;
  }
  .p-top-company__links {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
    margin-top: 40px;
  }
  .p-top-company__links .item {
    width: 100%;
  }
  .p-top-company__links .item .links__ttl {
    gap: 0;
  }
}
@media screen and (max-width: 767px) and (hover: hover) {
  .p-top-company__links .item:hover {
    opacity: 0.7;
  }
}
/* ----------------------------
   top contact
 ---------------------------- */
.p-top-img {
  width: 100%;
}

.p-top-contact {
  background: url("../img/top_contact_bg.jpg") no-repeat top center/cover;
  padding: 11.25rem 0 10rem;
  position: relative;
}
.p-top-contact .c-text-en {
  z-index: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.p-top-contact .l-wrap {
  background-color: rgba(21, 43, 74, 0.42);
  position: relative;
  z-index: 1;
  padding-bottom: 7.5rem;
}
.p-top-contact .l-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  filter: brightness(90%);
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
}
.p-top-contact .l-wrap .c-ttl {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: 0;
  -ms-transform: translateY(-3.5rem);
      transform: translateY(-3.5rem);
}
.p-top-contact .l-wrap .c-ttl .en {
  color: #fff;
  font-size: 5.625rem;
}
.p-top-contact .l-wrap .c-ttl .jp {
  font-size: 1rem;
}
.p-top-contact .p-top-contact__lead {
  text-align: center;
  font-size: 1.375rem;
  position: relative;
  line-height: 1.86;
  letter-spacing: 0.07em;
  color: #fff;
}
.p-top-contact .p-contact__btn {
  position: relative;
  max-width: 320px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 40px auto 0;
  font-size: 1.375rem;
}
.p-top-contact .p-contact__btn::after {
  background-image: url("../img/icon_arrow_wh.svg");
}
@media (hover: hover) {
  .p-top-contact .p-contact__btn:hover {
    background-color: #fff;
    color: #0F1F36;
  }
  .p-top-contact .p-contact__btn:hover::after {
    background-image: url("../img/icon_arrow_blue.svg");
  }
}

@media screen and (max-width: 767px) {
  .p-top-contact {
    background-image: url("../img/top_contact_bg_sp.jpg");
    padding: 8.75rem 0 10rem;
  }
  .p-top-contact .c-text-en {
    top: 45%;
  }
  .p-top-contact .l-wrap {
    padding-bottom: 3.75rem;
  }
  .p-top-contact .l-wrap .c-ttl {
    -ms-transform: translateY(-2.25rem);
        transform: translateY(-2.25rem);
    gap: 4px;
  }
  .p-top-contact .l-wrap .c-ttl .en {
    color: #fff;
    font-size: 3.125rem;
  }
  .p-top-contact .p-top-contact__lead {
    font-size: 1rem;
  }
  .p-top-contact .p-contact__btn {
    max-width: 275px;
    margin: 30px auto 0;
  }
}
/* —————————————————
  page commone
  —————————————————*/
.l-main:not(.l-main-home) {
  padding-top: 10rem;
}

.c-heading {
  position: relative;
}
.c-heading .c-heading__wrap {
  position: relative;
  padding-top: 6.875rem;
}
.c-heading .c-heading__ttl {
  font-weight: 500;
  position: absolute;
  top: 0;
  left: 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: start;
      align-items: flex-start;
}
.c-heading .c-heading__ttl .jp {
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.07em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
  color: #fff;
}
.c-heading .c-heading__ttl .jp::before {
  content: "";
  display: block;
  width: 44px;
  height: 1px;
  background-color: #fff;
}
.c-heading .c-heading__ttl .en {
  font-size: 7.5rem;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  color: #C7B7A0;
  letter-spacing: 0.04em;
}
.c-heading .c-heading__img {
  width: 100%;
  height: 26.875rem;
  overflow: hidden;
}
.c-heading .c-heading__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .l-main:not(.l-main-home) {
    padding-top: 8.125rem;
  }
  .c-heading .c-heading__wrap {
    padding-top: 4.75rem;
  }
  .c-heading .c-heading__ttl {
    gap: 8px;
  }
  .c-heading .c-heading__ttl .jp {
    font-size: 1.125rem;
  }
  .c-heading .c-heading__ttl .en {
    font-size: 3.375rem;
  }
  .c-heading .c-heading__img {
    height: 21.875rem;
  }
}
.c-next-page__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-next-page__link .c-next__wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -ms-transform: translate(-50%, -50%);
      transform: translate(-50%, -50%);
}
.c-next-page__link .c-next__wrap::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  display: block;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/27px 14px;
  position: absolute;
  top: 50%;
  right: 0;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.c-next-page__link .c-next-ttl {
  color: #fff;
}
.c-next-page__link .c-next-ttl .jp {
  font-size: 1.125rem;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  letter-spacing: 0.07em;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  gap: 12px;
}
.c-next-page__link .c-next-ttl .en {
  font-size: 5.3125rem;
  line-height: 1.1;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.04em;
}

@media screen and (max-width: 767px) {
  .c-next-page__link .c-next__wrap {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
        align-items: center;
    -ms-flex-pack: center;
        justify-content: center;
    -ms-flex-direction: column;
        flex-direction: column;
    gap: 60px;
  }
  .c-next-page__link .c-next__wrap::after {
    width: 6rem;
    height: 6rem;
    position: static;
    -ms-transform: translateY(0);
        transform: translateY(0);
  }
  .c-next-page__link .c-next-ttl {
    text-align: left;
  }
  .c-next-page__link .c-next-ttl .jp {
    font-size: 1.125rem;
  }
  .c-next-page__link .c-next-ttl .en {
    font-size: 3.375rem;
  }
}
/* ---------------------------------
  company
---------------------------------*/
.p-company__container {
  background-color: #E2E9EF;
  width: 100%;
  max-width: 1160px;
  margin: -10rem auto 9.375rem;
  position: relative;
  padding: 6.25rem 0;
}

@media screen and (max-width: 767px) {
  .p-company__container {
    margin: 0 auto;
    padding: 5rem 0;
  }
}
/* ---------------------------------
  company overview
---------------------------------*/
.p-company-overview {
  margin-bottom: 9.375rem;
}
.p-company-overview .c-ttl {
  margin-bottom: 60px;
}

.p-overview__block .c-dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: stretch;
      align-items: stretch;
  letter-spacing: 0.07em;
  background-color: #F8FCFF;
  padding: 1.5625rem 3.75rem;
  font-size: 1rem;
}
.p-overview__block .c-dl:not(:last-child) {
  margin-bottom: 3px;
}
.p-overview__block .c-dl dt {
  width: 20%;
}
.p-overview__block .c-dl dd {
  width: 80%;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .p-company-overview {
    margin-bottom: 5rem;
  }
  .p-company-overview .c-ttl {
    margin-bottom: 60px;
  }
  .p-overview__block .c-dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 25px 20px;
    gap: 5px;
  }
  .p-overview__block .c-dl:not(:last-child) {
    margin-bottom: 3px;
  }
  .p-overview__block .c-dl dt {
    width: 100%;
  }
  .p-overview__block .c-dl dd {
    width: 100%;
  }
}
/* ---------------------------------
  company access
---------------------------------*/
.p-company-access address {
  letter-spacing: 0.07em;
  line-height: 1.8;
}

.p-access__map {
  width: 100%;
  margin-top: 20px;
}
.p-access__map iframe {
  width: 100%;
  height: 355px;
}

/* ---------------------------------
  our-business intro
---------------------------------*/
.p-our-business-intro {
  padding-top: 9.375rem;
  position: relative;
  margin-bottom: 6.25rem;
}
.p-our-business-intro::before {
  content: "";
  display: block;
  width: 70%;
  height: 90%;
  background-color: #152B4A;
  position: absolute;
  top: 0;
  right: 0;
}

.p-our-business-intro__block {
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.p-our-business-intro__block .block__text {
  width: 55%;
}
.p-our-business-intro__block .block__text .c-ttl {
  font-size: 1.75rem;
  font-family: "Cormorant Garamond", serif;
  color: #C7B7A0;
  margin-bottom: 30px;
}
.p-our-business-intro__block .block__text .c-lead {
  font-size: 2rem;
  color: #fff;
  letter-spacing: 0.07em;
}
.p-our-business-intro__block .block__img {
  width: 40vw;
  margin-right: calc(50% - 50vw);
  margin-left: auto;
}

@media screen and (max-width: 767px) {
  .p-our-business-intro {
    padding-top: 7.5rem;
    margin-bottom: 7.5rem;
  }
  .p-our-business-intro::before {
    width: 30%;
    height: 90%;
  }
  .p-our-business-intro__block {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 40px;
  }
  .p-our-business-intro__block .block__text {
    width: 100%;
  }
  .p-our-business-intro__block .block__text .c-ttl {
    font-size: 1.75rem;
    margin-bottom: 10px;
  }
  .p-our-business-intro__block .block__text .c-lead {
    font-size: 1.625rem;
  }
  .p-our-business-intro__block .block__img {
    width: 100vw;
    margin-right: calc(50% - 50vw);
  }
}
/* ---------------------------------
  our-business
---------------------------------*/
.p-our-business {
  margin-bottom: 9.375rem;
}

.p-our-business__anchor {
  display: -ms-flexbox;
  display: flex;
  gap: 1.5625rem;
  justify-content: center;
}
.p-our-business__anchor li {
  width: 20%;
}
.p-our-business__anchor li a {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
  border: 1px solid #fff;
  width: 100%;
  height: 106px;
  padding: 20px 0 12px;
  text-align: center;
  line-height: 1.2;
  gap: 5px;
  transition: 0.3s ease;
}
.p-our-business__anchor li a::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  min-height: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/8px 5px;
  -ms-transform: rotate(90deg);
      transform: rotate(90deg);
}
@media (hover: hover) {
  .p-our-business__anchor li a:hover {
    opacity: 0.7;
  }
}

.p-our-business__block {
  margin-top: 9.375rem;
}
.p-our-business__block .c-ttl-sub {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.p-our-business__block .c-ttl-sub .en {
  color: rgba(255, 255, 255, 0.5);
}
.p-our-business__block .c-f-box {
  display: -ms-flexbox;
  display: flex;
  gap: 3.75rem;
}
.p-our-business__block .c-f-box .block__img {
  width: 40%;
  background-color: #fff;
  padding: 2.5rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 16.875rem;
}
.p-our-business__block .c-f-box .block__text {
  width: calc(60% - 3.75rem);
  min-height: 16.875rem;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  color: #fff;
}
.p-our-business__block .c-f-box .block__text p {
  letter-spacing: 0.07em;
}
.p-our-business__block .c-f-box .block__text .ttl {
  font-weight: 700;
  font-size: 1.375rem;
  margin-bottom: 10px;
}
.p-our-business__block .c-f-box .block__text .c-btn {
  margin: auto 0 0 auto;
}
.p-our-business__block .c-f-box .block__text .c-btn::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  display: block;
  width: 2.5rem;
  min-width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: url("../img/icon_ex.svg") no-repeat center/14px 14px;
  background-color: #00578D;
}

@media screen and (max-width: 767px) {
  .p-our-business {
    margin-bottom: 7.5rem;
  }
  .p-our-business__anchor {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
  .p-our-business__anchor li {
    width: 100%;
  }
  .p-our-business__anchor li a {
    -ms-flex-direction: row;
        flex-direction: row;
    width: 100%;
    height: 70px;
    padding: 10px 30px;
    gap: 5px;
  }
  .p-our-business__block {
    margin-top: 5rem;
  }
  .p-our-business__block:first-of-type {
    margin-top: 7.5rem;
  }
  .p-our-business__block .c-ttl-sub {
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  .p-our-business__block .c-ttl-sub .en {
    color: rgba(255, 255, 255, 0.5);
  }
  .p-our-business__block .c-f-box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 20px;
  }
  .p-our-business__block .c-f-box .block__img {
    width: 100%;
    padding: 2.5rem;
    height: 13.125rem;
  }
  .p-our-business__block .c-f-box .block__text {
    width: 100%;
    min-height: 100%;
  }
  .p-our-business__block .c-f-box .block__text .c-btn {
    margin: 40px 0 0 auto;
  }
  .p-our-business__block:nth-of-type(2) .c-f-box .block__img img {
    width: 117px;
  }
  .p-our-business__block:nth-of-type(3) .c-f-box .block__img img {
    width: 112px;
  }
  .p-our-business__block:nth-of-type(5) .c-f-box .block__img img {
    width: 148px;
  }
}
/* ----------- news -----------*/
.p-news {
  position: relative;
  padding: 9.375rem 0;
}

.p-news__container {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 6.25rem;
}

.p-news__search {
  width: 200px;
  position: sticky;
  top: 0;
}
.p-news__search .ttl {
  color: #fff;
  font-weight: 700;
  margin-bottom: 30px;
}
.p-news__search .c-sort a.c-sort-acc {
  margin-bottom: 20px;
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.p-news__search .c-sort a.c-sort-acc.is-active {
  color: #C7B7A0;
  font-weight: 700;
}
.p-news__search .c-sort a.c-sort-acc.is-active::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #C7B7A0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}
.p-news__search .c-sort-menu .list li:not(:last-child) {
  margin-bottom: 20px;
}
.p-news__search .c-sort-menu .list li a {
  display: inline-block;
  position: relative;
  padding-left: 20px;
}
.p-news__search .c-sort-menu .list li.is-active a {
  font-weight: 700;
  padding-left: 20px;
  color: #C7B7A0;
}
.p-news__search .c-sort-menu .list li.is-active a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background-color: #C7B7A0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 0;
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

.p-news__main {
  width: calc(100% - 300px);
}

.p-news__list {
  color: #fff;
}
.p-news__list .p-news__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 40px;
}
.p-news__list .p-news__item:not(:last-child) {
  margin-bottom: 40px;
}
.p-news__list .p-news__link {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 2.5rem;
  transition: 0.3s ease;
}
@media (hover: hover) {
  .p-news__list .p-news__link:hover {
    opacity: 0.8;
  }
}
.p-news__list .p-news__img {
  width: 40%;
}
.p-news__list .p-news__img img {
  aspect-ratio: 260/146;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-news__list .p-news__text {
  width: 60%;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  gap: 10px;
  letter-spacing: 0.07em;
}
.p-news__list .p-news__text .date {
  line-height: 1.5;
}
.p-news__list .p-news__text .category {
  font-size: 0.8125rem;
  border: 1px solid #516889;
  border-radius: 3px;
  padding: 0 4px;
  line-height: 1.5;
}
.p-news__list .p-news__text .ttl {
  font-weight: 700;
  line-height: 1.875;
  font-size: 1rem;
}

/* ページネーション */
.p-news ul.page-numbers {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  margin-top: 40px;
  gap: 10px;
  position: relative;
  padding: 0 40px;
}
.p-news .page-numbers li .page-numbers {
  display: block;
  width: 34px;
  height: 34px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  border-radius: 50%;
  color: #fff;
  transition: 0.3s ease;
}
.p-news .page-numbers li a.page-numbers:hover {
  opacity: 0.7;
}
.p-news .page-numbers li .current {
  background-color: rgba(255, 255, 255, 0.14);
  color: #fff;
}
.p-news .page-numbers.prev::after,
.p-news .page-numbers.next::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  width: 46px;
  min-width: 46px;
  min-height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/8px 5px;
}
.p-news .page-numbers.prev {
  position: absolute;
  top: 0;
  left: 0;
}
.p-news .page-numbers.prev::after {
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
}
.p-news .page-numbers.next {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .p-news {
    padding: 80px 0 120px;
  }
  .p-news__container {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3.75rem;
  }
  .p-news__search {
    width: 100%;
    position: static;
  }
  .p-news__search .ttl {
    margin-bottom: 10px;
  }
  .p-news__search .c-sort-select {
    position: relative;
  }
  .p-news__search .c-sort-select::after {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-bottom: 1px solid #fff;
    border-right: 1px solid #fff;
    -ms-transform: rotate(45deg);
        transform: rotate(45deg);
    position: absolute;
    top: 50%;
    right: 18px;
    -ms-transform: translateY(-50%) rotate(45deg);
        transform: translateY(-50%) rotate(45deg);
    pointer-events: none;
  }
  .p-news__search .c-sort-select select {
    color: #fff;
    font-weight: 400;
    margin-bottom: 0;
    display: inline-block;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 100%;
    background-color: #152B4A;
    font-size: 0.875rem;
    padding: 16px 20px;
    border-radius: 3px;
  }
  .p-news__main {
    width: 100%;
  }
  .p-news__list .p-news__item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding-bottom: 40px;
  }
  .p-news__list .p-news__item:not(:last-child) {
    margin-bottom: 40px;
  }
  .p-news__list .p-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 24px;
  }
  .p-news__list .p-news__img {
    width: 100%;
  }
  .p-news__list .p-news__text {
    width: 100%;
  }
  /* ページネーション */
  .p-news ul.page-numbers {
    gap: 8px;
  }
  .p-news .page-numbers li .page-numbers {
    width: 32px;
    height: 32px;
  }
  .p-news .page-numbers.prev::after,
  .p-news .page-numbers.next::after {
    width: 40px;
    min-width: 40px;
    min-height: 40px;
  }
}
/* ----------- news article -----------*/
/* --- パンくず ---*/
.c-breadcrumb {
  margin-bottom: 40px;
}

.c-breadcrumb__list {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style: none;
  font-size: 0.875rem;
  letter-spacing: 0.07em;
}
.c-breadcrumb__list li:not(:last-of-type)::after {
  content: "/";
  font-size: 14px;
  margin: 0 20px;
}
.c-breadcrumb__list li {
  color: #fff;
}
.c-breadcrumb__list a {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 500;
}

.p-news-detail {
  margin-bottom: 9.375rem;
}

.p-news__article {
  width: 100%;
  background-color: #152B4A;
  padding: 6.25rem 20px;
}
.p-news__article .l-wrap {
  width: 100%;
  max-width: 700px;
}

.p-news-article__head {
  margin-bottom: 40px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-align: start;
      align-items: flex-start;
  color: #fff;
  gap: 20px 15px;
  letter-spacing: 0.07em;
}
.p-news-article__head .p-news__ttl {
  font-size: 1.625rem;
  font-weight: 700;
}
.p-news-article__head .p-news__date {
  text-align: left;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-news-article__head .p-news__category {
  font-size: 0.8125rem;
  border: 1px solid #516889;
  border-radius: 3px;
  padding: 0 4px;
  line-height: 1.5;
}

.p-news-article__body {
  color: #fff;
  letter-spacing: 0.07em;
}
.p-news-article__body a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: 0.3s ease;
}
.p-news-article__body a:hover {
  color: #fff;
}
.p-news-article__body h2 {
  line-height: 1.6;
  font-weight: 700;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  gap: 8px;
  font-size: 1.25rem;
  padding-bottom: 10px;
  margin-bottom: 40px;
}
.p-news-article__body h2::after {
  content: "";
  display: block;
  width: 84px;
  height: 1px;
  background-color: #008EE6;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.p-news-article__body h3 {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.7;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: start;
      align-items: flex-start;
  -ms-flex-pack: start;
      justify-content: flex-start;
  gap: 10px;
  margin-bottom: 40px;
}
.p-news-article__body h3::before {
  content: "";
  display: block;
  width: 10px;
  height: 2px;
  background-color: #008EE6;
  margin-top: 16px;
}
.p-news-article__body h4, .p-news-article__body h5 {
  margin-bottom: 40px;
}
.p-news-article__body > * {
  margin-top: 30px;
}
.p-news-article__body > *:first-child {
  margin-top: 0;
}

.p-news-btn {
  font-size: 1rem;
  font-weight: 700;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  gap: 20px;
  max-width: 162px;
  margin: 40px auto 0;
}
.p-news-btn::before {
  content: "";
  display: inline-block;
  transition: 0.3s ease;
  width: 56px;
  min-height: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/15px 8px;
  -ms-transform: scale(-1, 1);
      transform: scale(-1, 1);
}
.p-news-btn:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .p-news-detail {
    margin-bottom: 120px;
  }
  .p-news__article {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 80px 30px;
  }
  .p-news-article__head {
    margin-bottom: 40px;
    color: #fff;
    gap: 16px 12px;
  }
  .p-news-article__head .p-news__ttl {
    font-size: 1.375rem;
    line-height: 1.45;
  }
}
/* ----------- contact -----------*/
.p-contact {
  position: relative;
  padding-top: 6.25rem;
  padding-bottom: 120px;
}
.p-contact .c-lead {
  color: #fff;
}
.p-contact .c-text-en {
  z-index: 0;
  color: #fff;
  opacity: 0.1;
  position: absolute;
  top: 31.25rem;
  left: 0;
}
.p-contact .l-wrap {
  position: relative;
  z-index: 1;
}
.p-contact .c-ttl {
  text-align: center;
  font-size: 1.625rem;
  font-weight: 700;
  color: #000;
}

.p-contact__form {
  background-color: #E2E9EF;
  padding: 6.25rem 5rem;
  margin-top: 40px;
}
.p-contact__form .c-ttl {
  margin-bottom: 100px;
}
.p-contact__form dl {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: justify;
      justify-content: space-between;
  -ms-flex-align: center;
      align-items: center;
  gap: 1.875rem;
  margin: 0 auto;
  letter-spacing: 0.07em;
}
.p-contact__form dl:not(:last-of-type) {
  margin-bottom: 2.25rem;
}
.p-contact__form dl dt {
  font-size: 1.125rem;
  font-weight: 700;
  -ms-flex: 1;
      flex: 1;
}
.p-contact__form dl dd {
  font-size: 1rem;
  font-weight: 500;
  width: 73%;
  position: relative;
}
.p-contact__form dl dd input[type=text],
.p-contact__form dl dd input[type=tel],
.p-contact__form dl dd input[type=email],
.p-contact__form dl dd select,
.p-contact__form dl dd textarea {
  width: 100%;
  padding: 16px 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  outline: none;
  border: none;
  background-color: #F8FCFF;
}
.p-contact__form dl dd input:focus,
.p-contact__form dl dd textarea:focus,
.p-contact__form dl dd select:focus {
  outline: none;
}
.p-contact__form dl dd ::-moz-placeholder {
  color: #8B95A3;
}
.p-contact__form dl dd :-ms-input-placeholder {
  color: #8B95A3;
}
.p-contact__form dl dd ::placeholder {
  color: #8B95A3;
}
.p-contact__form dl dd textarea {
  height: 12.5rem;
  resize: vertical;
  padding: 0.75rem 1.375rem;
  font-size: 1rem;
}
.p-contact__form dl .form-require {
  background-color: #0F1F36;
  font-size: 0.875rem;
  color: #fff;
  display: inline-block;
  padding: 3px 8px;
  margin-left: 10px;
  border-radius: 12px;
  font-weight: 400;
}

.p-contact__form dl .empty {
  color: #d60000;
  font-size: .75rem;
  position: absolute;
  bottom: -24px;
    left: 10px;
}

.c-contact__btn {
  position: relative;
  width: 100%;
  margin: 30px auto 0;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
}
.c-contact__btn input,
.c-contact__btn button {
  background-color: #0F1F36;
  color: #fff;
  font-size: 1.125rem;
  font-weight: 700;
  padding: 30px 20px;
  width: 100%;
  text-align: center;
  gap: 8px;
  transition: 0.3s ease;
  letter-spacing: 0.07em;
}
@media (hover: hover) {
  .c-contact__btn input:hover,
  .c-contact__btn button:hover {
    opacity: 0.8;
  }
}
.c-contact__btn::after {
  content: "";
  display: block;
  transition: 0.3s ease;
  display: block;
  width: 1.875rem;
  height: 1.875rem;
  min-height: 1.875rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: url("../img/icon_arrow.svg") no-repeat center/8px 5px;
  position: absolute;
  top: 50%;
  left: calc(50% + 7rem);
  -ms-transform: translateY(-50%);
      transform: translateY(-50%);
}

dl.form-item-textarea {
  -ms-flex-align: start;
      align-items: flex-start;
}

.p-contact__check {
  margin-top: 60px;
  text-align: center;
}
.p-contact__check input[type=checkbox] {
  display: none;
}
.p-contact__check .check__txt {
  padding: 0 0 0 34px;
  position: relative;
  letter-spacing: 0.07em;
  display: inline-block;
}
.p-contact__check .check__txt a {
  color: #00578D;
  text-decoration: underline;
}
.p-contact__check .check__txt::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  border: 1px solid #959FAD;
  background-color: #fff;
}
.p-contact__check input[type=checkbox]:checked + .check__txt::after {
  content: "";
  display: block;
  position: absolute;
  top: 2px;
  left: 9px;
  width: 7px;
  height: 14px;
  -ms-transform: rotate(40deg);
      transform: rotate(40deg);
  border-bottom: 2px solid #0F1F36;
  border-right: 2px solid #0F1F36;
}

@media screen and (max-width: 767px) {
  .p-contact {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  .p-contact .c-lead {
    width: calc(100% - 40px);
    margin: 0 auto;
  }
  .p-contact .l-wrap {
    width: 100%;
  }
  .p-contact__form {
    padding: 80px 30px;
    margin-top: 80px;
  }
  .p-contact__form dl {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
    max-width: 840px;
    margin: 0 auto;
  }
  .p-contact__form dl:not(:last-of-type) {
    margin-bottom: 2.5rem;
  }
  .p-contact__form dl dd {
    width: 100%;
  }
  .p-contact__form dl dd input[type=text],
  .p-contact__form dl dd input[type=tel],
  .p-contact__form dl dd input[type=email],
  .p-contact__form dl dd select,
  .p-contact__form dl dd textarea {
    padding: 16px 20px;
  }
  .p-contact__form dl dd textarea {
    height: 240px;
  }
  .c-contact__btn {
    margin: 40px auto 0;
  }
  .p-contact__check {
    margin-top: 40px;
    text-align: left;
  }
  .p-contact__check .check__txt::before {
    top: 2px;
  }
  .p-contact__check input[type=checkbox]:checked + .check__txt::after {
    top: 5px;
  }
}

.p-link__btn {
  position: relative;
  max-width: 320px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  margin: 40px auto 0;
  font-size: 1.375rem;
}
.p-link__btn::after {
  background-image: url("../img/icon_arrow_wh.svg");
}
@media (hover: hover) {
  .p-link__btn:hover {
    background-color: #fff;
    color: #0F1F36;
  }
  .p-link__btn:hover::after {
    background-image: url("../img/icon_arrow_blue.svg");
  }
}