/*========================
  body
========================*/

* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow-x: hidden;
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
  width: 100%;
}

@media screen and (min-width: 768px) and (max-width: 1053px) {
  html {
    font-size: 0.94966762vw;
  }
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2.666667vw;
  }
}

body {
  background: #fff;
  overflow-x: hidden;
}

body.locked {
  overflow: hidden;
}

main {
  padding-top: 8rem;
}

main:not(:has(.title-main)) .breadcrumb {
  padding-top: 2.4rem;
}

@media screen and (max-width: 767px) {
  main {
    padding-top: 6.4rem;
  }
}


.ios-mac {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*
  Base common text style.
  Change to match design.
*/

p, h5, h4, h3, h2, h1, a, dd, dt, li, figcaption, button, table {
  color: var(--colorBlack);
  font-family: var(--familyNotoSans);
  font-size: 1.6rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.8;
}

span {
  font-family: var(--familyNotoSans);
}

/* 
  Small fade animation on hover for links 
  Change as required
*/

main a, footer a {
  transition: opacity 0.4s cubic-bezier(0.215, 0.610, 0.355, 1);
}

a:hover {
  opacity: 0.7;
}

/*========================
  container
========================*/
.container1080 {
  margin: 0 auto;
  max-width: calc(1080px + 4rem);
  padding-inline: 2rem;
}

.container1200 {
  margin: 0 auto;
  max-width: calc(1200px + 4rem);
  padding-inline: 2rem;
}

.for-sp {
  display: none;
}

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

  .for-pc {
    display: none;
  }
}
/*========================
  components
========================*/
/* ボタン */
.commonLink {
  align-items: center;
  background: var(--colorWhite);
  border: 1px solid var(--colorMain);
  color: var(--colorMain);
  display: flex;
  font-size: 1.4rem;
  font-weight: 700;
  justify-content: center;
  line-height: 1.4;
  max-width: 22rem;
  padding-block: calc((5.6rem - 1.4rem * 1.4 - 0.2rem) / 2) calc((5.6rem - 1.4rem * 1.4 - 0.2rem) / 2);
  position: relative;
  width: 100%;
}

.commonLink:hover {
  cursor: pointer;
}

.commonLink.is-center {
  margin-inline: auto;
}

.commonLink::after {
  border-color: transparent transparent transparent var(--colorMain);
  border-style: solid;
  border-width: 0.33rem;
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.commonLink--en {
  font-family: var(--familyBebasNeue);
  font-size: 1.8rem;
  font-weight: 400;
  padding-block: calc((5.6rem - 1.8rem * 1.4 - 0.2rem) / 2) calc((5.6rem - 1.8rem * 1.4 - 0.2rem) / 2);
}

@media (hover: hover) {
  .commonLink:hover {
    background: linear-gradient(to right, #1660ca 0%, #011c5f 100%);
    color: var(--colorWhite);
    opacity: 1;
  }

  .commonLink:hover::after {
    border-color: transparent transparent transparent var(--colorWhite);
  }
}

.anchor-list {
  column-gap: 2.2%;
  display: flex;
  flex-wrap: wrap;
  row-gap: 1.6rem;
  width: 100%;
}

.anchor-item {
  width: calc((100% - (2.2% * 3))  / 4);
}

.list-length3 .anchor-item {
  width: calc((100% - (2.2% * 2))  / 3);
}

.ancor-link {
  align-items: center;
  border-bottom: 1px solid var(--colorMain);
  color: var(--colorMain);
  column-gap: 0.8rem;
  display: grid;
  font-weight: 700;
  grid-template-columns: auto 1fr;
  padding-block: 0.8rem 0.8rem;
  width: 100%;
}

.ancor-link::before {
  background: url(../images/common/arrow_anchor.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 2rem;
  width: 2rem;
}

.section__hgroup.is-right {
  margin-left: auto;
  width: fit-content;
}

.section__hgroup.is-center {
  margin-inline: auto;
  text-align: center;
  width: fit-content;
}

.section__hgroup h2 {
  font-family: var(--familyBebasNeue);
  font-size: 9.6rem;
  line-height: 1;
}

.section__hgroup h2 span {
  color: var(--colorMain);
  font-family: var(--familyBebasNeue);
}

.section__hgroup p {
  font-size: 1.8rem;
  font-weight: 700;
}

.common__text {
  font-size: 1.6rem;
  margin-top: 4rem;
}

.flex-gap4rem {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  row-gap: 4rem;
}

.flex-gap4rem + .flex-gap4rem {
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .anchor-list {
    column-gap: 6%;
    row-gap: 0.5rem;
  }
  .anchor-item, .list-length3 .anchor-item {
    width: calc((100% - 6%) / 2);
  }

  .ancor-link {
    font-size: 1.2rem;
  }

  .ancor-link::before {
    height: 1.667rem;
    width: 1.667rem;
  }
}

/* 下層タイトル */
.title-main {
  background: var(--colorBase);
  clip-path: polygon(0 0, 100% 0, calc(100% - 15rem) 100%, 0% 100%);
  padding-block: 8.4rem 8.4rem;
}

.title-main__h1 {
  font-family: var(--familyBebasNeue);
  font-size: 9.6rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.title-main__h1 span {
  color: var(--colorMain);
  font-family: var(--familyBebasNeue);
}

.title-main__sub {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin-top: 0.4rem;
}

.title2 {
  color: var(--colorMain);
  font-size: 3.2rem;
  font-weight: 700;
}

.title2.is-center {
  text-align: center;
}

.title3 {
  background-color: var(--colorSub);
  color: var(--colorWhite);
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 700;
  padding-inline: 2.4rem 2.4rem;
  width: fit-content;
}

.title3--dec {
  align-items: center;
  color: var(--colorLink);
  display: flex;
  font-size: 2.4rem;
  font-weight: 700;
}

.title3--dec::before {
  background: linear-gradient(to right, #1660ca 0%, #011c5f 100%);
  content: "";
  display: inline-block;
  height: 1.4em;
  margin-inline: 2.4rem 1.5rem;
  transform: skew(-20deg);
  width: 0.9rem;
}

.title4 {
  border-bottom: 0.6rem solid var(--colorSub);
  color: var(--colorLink);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  padding-inline: 1rem 1rem;
  width: fit-content;
}


@media screen and (max-width: 767px) {
  .title-main {
    clip-path: polygon(0 0, 100% 0, calc(100% - 7rem) 100%, 0% 100%);
    padding-block: calc((1em - 1lh) / 2 + 3.11rem) calc((1em - 1lh) / 2 + 1.978rem);
  }

  .title-main__h1 {
    font-size: 6.4rem;
  }

  .title-main__sub {
    font-size: 1.6rem;
  }

  .title2 {
    font-size: 2.4rem;
  }

  .title3, .title3--dec {
    font-size: 1.8rem;
  }

  .title3--dec::before {
    height: 1.8em;
    margin-inline: 1rem 1.5rem;
  }

  .title4 {
    font-size: 1.6rem;
  }

  .section__hgroup h2 {
    font-size: 6.4rem;
  }

  .section__hgroup p {
    font-size: 1.4rem;
    line-height: 1;
  }

  .common__text {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

/* card */
.card__column {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3,1fr);
  margin-top: 4rem;
}

.card__item {
  box-shadow: 4px 4px 16px rgba(18, 76, 192, 0.1);
}

.card__textarea {
  background: var(--colorWhite);
  padding: 1.6rem;
}

.card__genre {
  background: var(--colorGray600);
  color: var(--colorWhite);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1;
  padding: 0.7rem 0.8rem;
  width: fit-content;
}

.card__name {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: 0.8rem;
}

.card__tag {
  color: var(--colorGray600);
  font-size: 1.2rem;
  margin-top: 0.4rem;
}

.card__link {
  color: var(--colorMain);
  display: block;
  font-family: var(--familyBebasNeue);
  font-size: 1.4rem;
  margin-left: auto;
  padding-right: 1.6rem;
  position: relative;
  width: fit-content;
}

.card__link::after {
  background-image: url(../images/common/icon-arrow_right.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 1.6rem;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
}

.cardSwiper {
  margin-top: 4rem;
}

.cardSwiper .swiper-wrapper {
  display: grid;
  gap: 4rem;
  grid-template-columns: repeat(3,1fr);
}

@media screen and (max-width: 767px) {
  .card__columnWrap {
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    padding-bottom: 2rem;
  }

  .card__column {
    gap: 1.2rem;
    margin-top: 2.5rem;
    width: 89.4rem;
  }

  .card__columnWrap::-webkit-scrollbar {
    height: 1rem;
  }

  .card__columnWrap::-webkit-scrollbar-track {
    background: var(--colorGray100);
    border-radius: 2rem;
  }

  .card__columnWrap::-webkit-scrollbar-thumb {
    background: var(--colorGray400);
    border-radius: 2rem;
  }

  .card__columnWrap::-webkit-scrollbar-thumb:hover {
    background: #666;
  }

  .card__img {
    height: 24rem;
    overflow: hidden;
    width: 100%;
  }

  .card__img img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }

  .card__genre {
    padding: 0.4rem;
  }


  .cardSwiper {
    margin-top: 2rem;
    padding-bottom: 3rem;
    padding-inline: 2rem;
  }

  .cardSwiper .swiper-wrapper {
    display: flex;
    gap: 0;
  }

  .swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
    background: var(--colorGray100);
    height: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100vw - 4rem);
  }

  .swiper-scrollbar-drag {
    background: var(--colorGray400);
    height: 0.5rem;
    top: 0.25rem;
  }
}

/* common__head */

.common__headText {
  font-size: 1.8rem;
  margin-top: 4rem;
}

@media screen and (max-width: 767px) {
  .common__headText {
    font-size: 1.6rem;
    margin-top: 2rem;
  }
}

/*========================
  animation
========================*/

.js-fadeElement {
  opacity: 0;
  visibility: hidden;
}

/*========================
  breadcrumbs
========================*/
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.6rem;
  margin-block: 2rem 2rem;
}

.breadcrumb__item {
  font-size: 1.4rem;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: 1.6rem;
}

.breadcrumb__link {
  color: var(--colorLink);
  font-size: 1.4rem;
  text-decoration: underline;
}

@media (hover: hover) {
  .breadcrumb__link:hover {
    text-decoration: none;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb {
    flex-wrap: wrap;
    font-size: 1.2rem;
  }

  .breadcrumb__item {
    font-size: 1.2rem;
  }

  .breadcrumb__link {
    font-size: 1.2rem;
  }
}

/*========================
  header
========================*/

.header {
  background: var(--colorWhite);
  box-shadow: 4px 4px 16px 0 rgba(18, 76, 192, 0.1);
  display: block;
  position: fixed;
  width: 100%;
  z-index: 100;
}

/*========================
  Navbar
========================*/
.navbar {
  display: flex;
  height: 8rem;
  justify-content: space-between;
  position: 100;
}

.navbar__inner {
  align-items: center;
  display: flex;
  justify-content: space-between;
  padding-inline: 4rem;
  width: 100%;
}

.navbar__logo {
  max-width: 16.3rem;
  position: relative;
  width: 100%;
  z-index: 99;
}

.navbar__list {
  align-items: center;
  display: flex;
  gap: 2.4rem;
}

.navbar__item {
  font-size: 1.4rem;
  line-height: 1;
}

.navbar__link:hover {
  cursor: pointer;
  opacity: 0.7;
}

.navbar__parent {
  line-height: 1.8;
}

.navbar__item a {
  font-size: 1.4rem;
}

.navbar__contact {
  align-items: center;
  background: linear-gradient(135deg, #56b3ff 0%, #006ed5 100%);
  color: var(--colorWhite);
  display: flex;
  font-size: 1.6rem;
  font-weight: 700;
  gap: 0.25rem;
  justify-content: center;
  max-width: 22rem;
  position: relative;
  width: 100%;
}

.navbar__contact::before {
  background-image: url(../images/common/icon-mail.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 2.4rem;
  width: 2.4rem;
}

.navbar__submenu {
  align-items: center;
  background: #fff;
  border-top: 1px solid #d2d2d2;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  display: flex;
  gap: 6.4rem;
  justify-content: center;
  left: 0;
  opacity: 0;
  padding: 1rem 0;
  padding-block: 4rem;
  position: absolute;
  top: 100%;
  transform: translateY(10px);
  transition: opacity 0.25s ease,
  transform 0.25s ease,
  visibility 0.25s ease;
  visibility: hidden;
  width: 100%;
  z-index: 100;
}

.navbar__submenuParent {
  font-size: 1.8rem;
  font-weight: 700;
}

.navbar__submenuLink {
  display: flex;
  gap: 2.4rem;
}

.navbar__submenuLink .commonLink {
  min-width: 22rem;
}

.navbar__item.has-children:hover .navbar__submenu {
  opacity: 1;
  transform: translateY(0);
  visibility: visible;
}



/*========================
  Hamburger
========================*/

.navbar__hamburger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
  height: 1.6rem;
  position: relative;
  width: 3rem;
}

.navbar__hamburger span {
  background: #000;
  height: 2px;
  position: absolute;
  transition: all 0.3s ease-in-out, background-color delay 0.3s;
  width: 100%;
}

.drawerOpen .navbar__hamburger span {
  background: #fff;
}

.navbar__hamburger span:nth-child(1) {
  left: 0;
  top: 0;
}

.drawerOpen .navbar__hamburger span:nth-child(1) {
  transform: translate(-1px, 12px) rotate(45deg);
}

.navbar__hamburger span:nth-child(2) {
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.drawerOpen .navbar__hamburger span:nth-child(2) {
  opacity: 0;
  transform: translateX(20px);
}

.navbar__hamburger span:nth-child(3) {
  bottom: 0;
  left: 0;
}

.drawerOpen .navbar__hamburger span:nth-child(3) {
  transform: translate(-1px, -11px) rotate(-45deg);
}

/*========================
  NavDrawer
========================*/

.navdrawer {
  background: var(--colorMain);
  display: flex;
  flex-direction: column;
  gap: 18px;
  height: 100svh;
  left: 0;
  overflow-y: scroll;
  padding: 5rem 4rem;
  position: fixed;
  top: 0;
  transform: translateX(100%);
  width: 100vw;
  z-index: 100;
}

.navdrawer__container {
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  width: 100%;
}

.navdrawer__close {
  margin: 0 0 2rem auto;
  width: fit-content;
}

.navdrawerLink {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--colorWhite);
  font-family: var(--familyNotoSans);
}

.navdrawerLink:last-child {
  border-bottom: none;
}

.navdrawerItem {
  border-bottom: 1px solid rgba(210, 210, 210, 0.32);
  font-family: var(--familyNotoSans);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.8;
  position: relative;
}

.navdrawerParent {
  display: block;
  padding-block: 1.5rem;
  width: 100%;
}

.navdrawerItem a {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
}

.navdrawerItem .navdrawerLink {
  padding-block: 1.5rem;
}

.navdrawerItem::after {
  background-image: url(../images/common/icon-arrow_right_white.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 2.4rem;
  position: absolute;
  right: 1.6rem;
  top: 1.55rem;
  width: 2.4rem;
}

.navdrawerItem:has(.navdrawer__sub)::after {
  background: unset;
  color: var(--colorWhite);
  content: "＋";
  text-align: center;
}

.navdrawerItem.open:has(.navdrawer__sub)::after {
  background: unset;
  color: var(--colorWhite);
  content: "ー";
}

.navdrawer__sub {
  border-left: 1px solid var(--colorWhite);
  display: grid;
  gap: 0.8rem;
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  padding-left: 1.6rem;
  transition: 0.3s;
}

.navdrawerItem.open .navdrawer__sub {
  margin-bottom: 1.6rem;
  max-height: 30rem;
  opacity: 1;
}


a.navdrawerSubLink {
  color: var(--colorWhite);
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
}

.navdrawerParent {
  color: var(--colorWhite);
  display: block;
  font-family: var(--familyNotoSans);
  font-size: 1.4rem;
  font-weight: 700;
  width: 100%;
}



@media screen and (max-width: 767px) {
  .navbar {
    align-items: center;
    height: 6.4rem;
    padding: 1.3rem 2rem;
  }

  .navbar__inner {
    display: block;
    padding: 0;
    width: unset;
  }

  .navbar__logo {
    display: block;
    max-width: 14.7rem;
  }

  .navbar__contact {
    font-size: 1.2rem;
    height: 100%;
    max-width: 12.2rem;
  }

  .navbar__contact::before {
    height: 1.6rem;
    width: 1.6rem;
  }

  .navdrawer .navbar__contact {
    font-size: 1.6rem;
    height: 6.1rem;
    margin: 2rem auto 0;
    max-width: 22rem;
  }

  .navdrawer .navbar__contact::before {
    height: 2.4rem;
    width: 2.4rem;
  }

  .navbar__list {
    display: none;
  }

  .navbar__hamburger {
    align-self: center;
    display: block;
  }
}

/*========================
  footer
========================*/
.footerTop {
  background: var(--colorBase);
  padding-block: 10rem;
  position: relative;
}

.footerTop__column {
  display: grid;
  gap: 4rem;
  grid-template-columns: 1fr 1fr;
}

.footerTop__link {
  align-content: center;
  align-items: center;
  background: var(--colorWhite);
  box-shadow: 2px 2px 8px 0 rgba(241, 241, 241, 1);
  display: grid;
  height: 20rem;
  justify-content: center;
  position: relative;
  text-align: center;
}

.footerTop__link::after {
  background-image: url(../images/common/icon-arrow_right_circle.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  height: 3.2rem;
  position: absolute;
  right: 2.4rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.2rem;
}

.footerTop__link p {
  color: var(--colorMain);
  font-family: var(--familyBebasNeue);
  font-size: 1.6rem;
}

.footerTop__link h3 {
  color: var(--colorMain);
  font-size: 2.4rem;
  font-weight: 700;
}

.footerContact {
  background: linear-gradient(180deg, #56b3ff 0%, #006ed5 100%);
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding-block: 5rem;
  width: 100%;
}

.footerContact__column {
  align-items: center;
  display: flex;
  gap: 2.4rem;
  position: relative;
}

.footerContact__icon {
  width: 6.4rem;
}

.footerContact__column:nth-child(1) {
  justify-content: flex-end;
  padding-right: 13.3%;
}

.footerContact__column:nth-child(2) {
  justify-content: flex-start;
  padding-left: 13.3%;
}


.footerContact__column:nth-child(1):after {
  background: var(--colorWhite);
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
}

.footerContact__title {
  color: var(--colorWhite);
  font-size: 2.4rem;
  font-weight: 700;
}

.footerContact__tel {
  color: var(--colorWhite);
  font-family: var(--familyBebasNeue);
  font-size: 2.4rem;
}

.footerContact__tel span {
  font-family: var(--familyBebasNeue);
  font-size: 5.6rem;
}

.footerContact__text {
  color: var(--colorWhite);
  font-size: 1.4rem;
}

.footerContact__textarea .commonLink {
  margin-top: 1.6rem;
}

.footer {
  padding-block: 6rem 6.4rem;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
}

.footer__logo {
  display: block;
  max-width: 24.1rem;
  width: 100%;
}

.footer__address {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 2.4rem;
}

.footer__contact {
  margin-top: 4rem;
}

.footer__right {
  display: grid;
  gap: 6rem;
}

.footerNavList {
  display: flex;
  gap: 4rem;
}

.footerNavList__item a {
  font-size: 1.4rem;
  font-weight: 700;
}

.footerNavList .has-child span {
  color: var(--colorGray400);
  font-size: 1.2rem;
}

.footerNavList__child {
  border-left: 1px solid #d2d2d2;
  margin-top: 1.6rem;
  padding-left: 1.6rem;
}

.footerNavList__child a {
  font-size: 1.4rem;
  font-weight: 700;
}

.footer__rightBottom {
  display: grid;
  justify-content: flex-end;
  text-align: end;
}

.footer__rightBottom.for-sp {
  display: none;
}

.footer__privacy {
  font-size: 1.2rem;
}

.footer__copyright {
  font-size: 1rem;
  margin-top: 1.6rem;
}

@media screen and (max-width: 767px) {
  .footerTop {
    padding-block: 4rem;
  }

  .footerTop__column {
    gap: 1.6rem;
    grid-template-columns: 1fr;
  }

  .footerTop__link {
    height: auto;
    padding-block: 1.6rem;
  }

  .footerTop__link h3 {
    font-size: 1.8rem;
  }

  .footerContact {
    grid-template-columns: 1fr;
    padding: 1.6rem 2.2rem;
  }

  .footerContact__textarea .commonLink {
    margin-top: 0;
  }

  .footerContact__column:nth-child(1) {
    justify-content: center;
    padding-bottom: 2.1rem;
    padding-right: 0;
  }

  .footerContact__column:nth-child(1):after {
    bottom: 0;
    height: 1px;
    left: 0;
    top: unset;
    width: 100%;
  }

  .footerContact__column:nth-child(2) {
    justify-content: center;
    padding-left: 0;
    padding-top: 2.1rem;
  }

  .footerContact__icon {
    width: 4.3rem;
  }

  .footerContact__title {
    font-size: 1.8rem;
  }

  .footerContact__tel {
    font-size: 1.8rem;
  }

  .footerContact__tel span {
    font-size: 3.2rem;
  }

  .footerContact__text {
    font-size: 1.2rem;
    white-space: nowrap;
  }

  .footer__inner {
    display: grid;
    gap: 6.4rem;
  }

  .footerNavList {
    flex-wrap: wrap;
    gap: 1.6rem 2rem;
    padding-inline: 1.6rem;
  }

  .footerNavList__item:nth-child(1) {
    width: 100%;
  }

  .footerNavList__item:nth-child(2) {
    width: 18rem;
  }

  .footerNavList__child {
    padding-left: 1rem;
  }

  .footer__left {
    order: 2;
  }

  .footer__address {
    text-align: center;
  }

  .footer__contact {
    margin: 2.4rem auto 0;
  }

  .footer__logo {
    margin-inline: auto;
  }

  .footer__address {
    margin-top: 1.6rem;
  }

  .footer__rightBottom.for-pc {
    display: none;
  }

  .footer__rightBottom.for-sp {
    display: block;
    margin-top: 4rem;
    text-align: center;
  }
}

/*========================
  News
========================*/


.newsList__item {
  position: relative;
}

.newsList__item::after {
  border-color: transparent transparent transparent var(--colorMain);
  border-style: solid;
  border-width: 0.33rem;
  content: "";
  position: absolute;
  right: 1.6rem;
  top: 50%;
  transform: translateY(-50%);
}

.newsList__item a {
  border-bottom: 1px solid var(--colorGray100);
  display: grid;
  gap: 1.6rem;
  grid-template-columns: 5.3rem 8.1rem auto;
  padding: 2.8rem 4rem 2.8rem 0;
}

.newsList__date {
  font-family: var(--familyBebasNeue);
  font-size: 1.4rem;
}

.newsList__cat {
  border: 1px solid #d2d2d2;
  border-radius: 2rem;
  display: flex;
  font-size: 1.2rem;
  height: fit-content;
  justify-content: center;
  padding-inline: 1rem;
}

.newsList__text {
  -webkit-box-orient: vertical;
  display: -webkit-box;
  font-size: 1.4rem;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: auto;
}

@media (max-width: 767px) {
  .newsList {
    margin-top: 1.6rem;
  }

  .newsList__item a {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.6rem;
    padding-block: 2rem;
  }

  .newsList__text {
    position: relative;
    width: 100%;
  }

  .newsList__text::after {
    background-image: url(../../images/common/icon-arrow_right.svg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    content: "";
    height: 1.6rem;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: 0.3s;
    width: 1.6rem;
  }
}
