@charset "utf-8";

:root {
  --max-width: 1080px;
  --wp-width: 895px;
  --side-padding: 5%;
  --height-header-default: 113px;
  --height-header-scrolled: 62px;
  --height-header-sp: 62px;
  --primary-color: #083090;
  --gray-color: #4f4f4f;
  --white-color: #fff;
  --red-color: #DF0515;
  --base-textcolor: #000F29;
  --lightblue-bgcolor: #ECEFF1;
  --lightblue2-bgcolor: #E1ECF9;
  --lightgray-bgcolor: #F5F5F5;
  --lightgray-linecolor: #B2B2B2;
  --lightgray-bordercolor: #ccc;
  --hover-color: rgba(8,48,144,.5);
  --cta-button-color: #FBA904;
  --fontsize-80: 5rem;
  --fontsize-48: 3rem;
  --fontsize-44: 2.75rem;
  --fontsize-40: 2.5rem;
  --fontsize-34: 2.125rem;
  --fontsize-32: 2rem;
  --fontsize-28: 1.75rem;
  --fontsize-26: 1.625rem;
  --fontsize-24: 1.5rem;
  --fontsize-20: 1.25rem;
  --fontsize-18: 1.125rem;
  --fontsize-16: 1rem;
  --fontsize-14: 0.875rem;
  --fontsize-13: 0.8125rem;
  --fontsize-12: 0.75rem;
}

/* A (more) Modern CSS Reset */

/* Box sizing rules */

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Prevent font size inflation */

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}

/* Remove default margin in favour of better control in authored CSS */

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-end: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

/* Set core body defaults */

body {
  min-height: 100vh;
  line-height: 1.5;
}

/* Set shorter line heights on headings and interactive elements */

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

/* Balance text wrapping on headings */

h1, h2,
h3, h4 {
  text-wrap: balance;
}

/* A elements that don't have a class get default styles */

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
  color: currentColor;
}

/* Make images easier to work with */

img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

/* Make sure textareas without a rows attribute are not tiny */

textarea:not([rows]) {
  min-height: 10em;
}

/* Anything that has been anchored to should have extra scroll margin */

:target {
  scroll-margin-block: 5ex;
}

html {
  scrollbar-gutter: stable;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--base-textcolor);
  margin: 0;
  &:has(dialog[open]) {
    overflow: hidden;
  }
}

h1,h2,h3,h4 {
  margin: 0;
  line-height: 1.4;
  text-wrap: wrap;
}

figure {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
}

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

a {
  text-decoration: none;
  color: inherit;
}

mark {
  color: inherit;
}

:focus:not(:focus-visible) {
  outline: none;
}

.main {
  position: relative;
  margin-bottom: 100px;
  @media screen and (max-width: 767px) {
    margin-bottom: 84px;
  }
  &:has(.local-navi) {
    margin-bottom: 0;
  }
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

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

.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* wovn：翻訳対象言語別のコンテンツ出し分けスタイル */

html[lang="ja"] .hide_if_ja {
    display: none;
}

html[lang="en"] .hide_if_en {
    display: none;
}

.head-navi {
    position: sticky;
    top: 0;
    inset: 0;
    width: 100%;
    height: var(--height-header-default);
    transition: height .2s ease-in-out;
    background: var(--white-color);
    z-index: 1000;
    @media screen and (min-width: 1130px) {
        header {
            transition: height .2s ease-in-out;
        }
        .header__utility {
            transition: height .2s ease-in-out;
        }
        .header__logo {
            transition: height .2s ease-in-out;
        }
        &.is-header--scrolled {
            height: var(--height-header-scrolled);
            box-shadow: 0 4px 10px 0 rgb(0 0 0 / .16);
            header {
                height: var(--height-header-scrolled);
                grid-template-rows: 1fr;
                grid-template-areas: "header-logo header-gnavi";
            }
            .header__utility {
                display: none;
            }
            .header__logo {
                width: 160px;
                height: auto;
            }
            .global-navi__submenu {
                top: var(--height-header-scrolled);
            }
            .global-navi__category {
                span {
                    @media screen and (min-width: 1130px) {
                        padding-bottom: 0;
                        &::before {
                            bottom: 12px;
                        }
                        &::after {
                            bottom: 1px;
                        }
                    }
                }
            }
            .global-navi__contact ,
            .global-navi__requestInfo {
                @media screen and (min-width: 1130px) {
                    align-items: center;
                }
            }
        }
    }
    @media screen and (max-width: 1129px) {
        position: static;
        height: auto;
        transition: none;
        z-index: 0;
    }
}

html.is-globalNav-opened {
    @media screen and (max-width: 1129px) {
        position: fixed;
        width: 100%;
    }
    body {
        overflow: hidden;
    }
    .head-navi {
        position: fixed;
        inset: 0;
        width: 100vw;
        height: 100%;
        background-color: transparent;
        overflow: hidden;
        overflow-y: auto;
        z-index: 1000;
        @media screen and (min-width: 1130px) {
            scrollbar-gutter: stable;
        }
        &::before {
            content: "";
            position: absolute;
            top: var(--height-header-default);
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgb(0 0 0 / .7);
            width: 100vw;
            height: calc(100% - var(--height-header-default));
        }
        &::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: var(--white-color);
            width: 100vw;
            height: var(--height-header-default);
            z-index: -1;
        }
    }
    .js-sticky-nav {
        z-index: 999;
    }
}

.header {
    grid-area: header-top;
    display: grid;
    grid-template-columns: 140px auto;
    grid-template-rows: 1fr;
    width: 100%;
    background-color: var(--white-color);
    position: relative;
    margin: 0 auto;
    height: var(--height-header-scrolled);
    @media screen and (min-width: 1130px) {
        grid-template-columns: 220px auto;
        grid-template-rows: 1fr 1fr;
        grid-template-areas:
        "header-logo header-utility"
        "header-logo header-gnavi";
        gap: 0 4%;
        height: var(--height-header-default);
        max-width: calc(var(--max-width) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
    }
    ul {
        list-style: none;
    }
}

.header__logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 140px;
    height: auto;
    flex-shrink: 0;
    @media screen and (min-width: 1130px) {
        grid-area: header-logo;
        width: 220px;
    }
    @media screen and (max-width: 1129px) {
        padding: 0 0 0 20px;
    }
    img {
        width: auto;
        height: 100%;
    }
}

.header__utility {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 0 32px;
    padding-right: 68px;
    @media screen and (min-width: 1130px) {
        grid-area: header-utility;
        padding-right: 0;
    }
    a ,
    button {
        text-decoration: none;
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
    }
}

.wovn-languages {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 0 7px;
    .wovn-switch {
        color: var(--base-textcolor);
        font-size: var(--fontsize-14);
        font-style: normal;
        line-height: 1.6;
        cursor: pointer;
        transition: opacity .3s ease-in-out;
        &:not(:last-child) {
            &::after {
                content: "";
                display: inline-block;
                margin-left: 7px;
                width: 1px;
                height: 14px;
                background-color: #ccc;
            }
        }
        @media (hover: hover) {
          &:hover {
            opacity: .5;
          }
        }
    }
}

html[lang="ja"] .wovn-switch[data-value="ja"],
html[lang="en"] .wovn-switch[data-value="en"] {
    pointer-events: none;
    color: var(--primary-color);
    font-weight: 700;
    cursor: unset;
}

.header__utility__links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 32px;
    color: var(--primary-color);
    font-size: var(--fontsize-14);
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    @media screen and (max-width: 1129px) {
        display: none;
    }
}

.header__login__button {
    padding-left: 26px;
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_login.svg) no-repeat 0 50% / 18px 18px;
    border: none;
    span {
        color: var(--primary-color);
    }
}

.header__utility__search {
    display: flex;
    align-items: center;
}

.header__search__button {
    position: relative;
    width: 18px;
    height: 18px;
    line-height: 1;
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_search.svg) no-repeat 0 50% / 18px 18px;
    border: none;
    span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

.header__utility__search {
  .global-navi__submenu {
    display: none;
    position: fixed;
    top: var(--height-header-default);
    left: 0;
    right: 0;
    max-width: 710px;
    margin: 0 auto;
    padding: 44px 0;
    z-index: 1000;
  }
  .global-navi__submenu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
    padding: 80px 20px 82px;
    margin: 0 auto;
    background-color: var(--white-color);
    &::before {
      display: none;
    }
    form {
      width: 100%;
      max-width: 534px;
    }
    .global-navi__submenu__close {
      top: 24px;
      right: 24px;
      @media (hover: hover) {
        &:hover {
          opacity: .5;
        }
      }
    }
  }
}

.header__utility__search__head {
  margin: 0 auto 20px;
  font-size: var(--fontsize-20);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
}

.inputArea {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 54px;
  margin: 0 auto;
  border: none;
  @media screen and (max-width: 1129px) {
    height: 51px;
  }
}

.inputArea__input {
  display: inline-block;
  width: 100%;
  height: 100%;
  vertical-align: middle;
  padding: 14px;
  color: var(--base-textcolor);
  font-size: var(--fontsize-16);
  border: 1px solid #ccc;
  @media screen and (max-width: 1129px) {
    font-size: var(--fontsize-14);
  }
  &:focus-visible {
    border-radius: 0;
  }
  &::-moz-placeholder {
    color: #a3a3a3;
  }
  &::placeholder {
    color: #a3a3a3;
  }
  &::-ms-clear {
    visibility: visible;
  }
}

.inputArea__button {
  position: relative;
  display: flex;
  flex-shrink: 0;
  border-radius: 0;
  text-transform: uppercase;
  cursor: pointer;
  overflow: hidden;
  white-space: nowrap;
  min-width: 90px;
  height: 100%;
  padding: 7px 40px 7px 16px;
  text-align: left;
  font-size: var(--fontsize-16);
  color: var(--white-color);
  line-height: 1;
  background: var(--primary-color) url(/wp-content/themes/matlantis_theme2/assets/img/icon_search_white.svg) no-repeat calc(100% - 14px) 50% / 18px 18px;
  border: 1px solid var(--primary-color);
  @media screen and (max-width: 1129px) {
    min-width: 86px;
    padding: 5px 12px;
    padding: 5px 36px 5px 12px;
  }
  @media (hover: hover) {
    &:hover {
      border: 1px solid var(--hover-color);
      color: var(--white-color);
      background-color: #8898c8;
    }
  }
}

.inputArea__box {
  margin-top: 60px;
}

.inputArea__box input.inputArea__input {
  padding: 0 14px;
  font-weight: 400;
  line-height: 1.4;
}

.header__utility__login {
  .global-navi__submenu {
    display: none;
    position: fixed;
    top: var(--height-header-default);
    left: 0;
    right: 0;
    max-width: 710px;
    margin: 0 auto;
    padding: 44px 0;
    z-index: 100;
  }
  .global-navi__submenu__inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    width: 100%;
    padding: 80px 20px 82px;
    margin: 0 auto;
    background-color: var(--white-color);
    &::before {
      display: none;
    }
    form {
      width: 100%;
      max-width: 534px;
    }
  }
}

.header__utility__login__head {
  margin: 0 0 20px;
  font-size: var(--fontsize-20);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.4;
  @media screen and (max-width: 1129px) {
    text-align: center;
    font-size: var(--fontsize-18);
  }
}

.header__utility__login__button {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 246px;
  margin: 32px auto 0;
  padding: 8px 16px;
  color: var(--white-color);
  font-size: var(--fontsize-16);
  font-style: normal;
  font-weight: 500;
  line-height: 1.2;
  background-color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 1.4em;
  @media (hover: hover) {
    &:hover {
      border: 1px solid var(--hover-color);
      color: var(--white-color);
      background-color: #8898c8;
    }
  }
}

.login__form {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fontsize-16);
  @media screen and (max-width: 1129px) {
    font-size: var(--fontsize-14);
  }
  .spNavi__utility__login & {
    flex-direction: column;
    gap: 8px 0;
  }
}

.login__input {
  width: 210px;
  height: 34px;
  margin: 0 8px;
  padding: 4px 14px;
  border: 1px solid #ccc;
}

.login__button {
  &.is-disabled {
    background-color: var(--lightgray-bordercolor);
    border: 1px solid var(--lightgray-bordercolor);
    color: var(--white-color);
  }
}

.login__error {
  margin-top: 8px;
  font-size: var(--fontsize-16);
  color: var(--red-color);
  text-align: center;
}

.spNavi__utility__login {
  @media screen and (max-width: 414px) {
    display: none;
  }
  .modal__button {
    color: var(--primary-color);
  }
  .modal__dialog {
    position: fixed;
    top: 106px;
    width: 100%;
    height: -moz-fit-content;
    height: fit-content;
    max-width: calc(100dvw - (var(--side-padding) * 2));
    max-height: calc(100dvh - 40px);
    margin: 0 auto;
    padding: 0;
    scrollbar-gutter: initial;
    overflow: hidden;
    z-index: 3;
    background-color: #fff;
    .dialog {
      display: flex;
      flex-direction: column;
      max-width: none;
      max-height: none;
      padding: 72px 3% 5%;
      position: relative;
      @media screen and (max-width: 767px) {
        padding: 50px 3% 5%;
      }
    }
    .dialog__close {
      position: absolute;
      top: 24px;
      right: 24px;
    }
  }
}

.global-navi {
    position: static;
    @media screen and (min-width: 1130px) {
        grid-area: header-gnavi;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
    }
    ul {
        list-style: none;
    }
    .header.is-spNavi-fixed & {
        @media screen and (max-width: 1129px) {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            z-index: 1000;
        }
    }
}

.global-navi__inner {
    width: 100%;
}

.global-navi__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.spNavi__button {
    display: none;
    @media screen and (max-width: 1129px) {
        position: absolute;
        top: 20px;
        right: 22px;
        display: flex;
        padding: 0;
        align-items: center;
        font-size: var(--fontsize-14);
        font-weight: 700;
        line-height: 1;
        color: var(--primary-color);
        z-index: 100;
        transition: opacity .1s ease-in-out;
        border: none;
        background: transparent;
    }
    @media (hover: hover) {
        &:hover {
            opacity: .5;
        }
    }
    &.is-opened .spNavi__button__icon::before {
        transform: translateY(11px) rotate(-45deg);
    }
    &.is-opened .spNavi__button__icon::after {
        transform: translateY(-11px) rotate(45deg);
    }
    &.is-opened .spNavi__button__iconMiddle {
        opacity: 0;
    }
}

.spNavi__button__icon {
    display: inline-block;
    position: relative;
    width: 28px;
    height: 24px;
    transition: all .4s;
    &::before,
    &::after {
        content: "";
    }
    &::before {
        top: 0;
    }
    &::after {
        bottom: 0;
    }
}

.spNavi__button__iconMiddle {
    top: 11px;
}

.spNavi__button__icon::before,
.spNavi__button__icon::after,
.spNavi__button__iconMiddle {
    display: inline-block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    border-radius: 1px;
    transition: all .4s;
}

.spNavi__button__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.global-navi__content {
    container-type: inline-size;
    @media screen and (max-width: 1129px) {
        display: none;
        position: fixed;
        top: var(--height-header-sp);
        width: 100%;
        height: calc(100dvh - var(--height-header-sp));
        overflow-y: auto;
        overflow-x: hidden;
        background: #ECEFF1;
        z-index: 1000;
    }
}

.global-navi__menuBar {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    @media screen and (min-width: 1130px) {
        flex-wrap: wrap;
        justify-content: end;
        gap: 0 3cqi;
        height: 54px;
    }
    @media screen and (max-width: 1129px) {
        flex-direction: column;
    }
}

.global-navi__menuBar__item {
    display: flex;
    height: 100%;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    font-style: normal;
    font-weight: 500;
    line-height: 1.2;
    @media screen and (max-width: 1129px) {
        flex-direction: column;
        width: 100%;
    }
}

.global-navi__menuBar__item--spNavi {
    display: none;
    @media screen and (max-width: 1129px) {
        display: flex;
    }
}

.global-navi__category {
    display: flex;
    flex-wrap: wrap;
    max-width: 134px;
    height: 100%;
    position: relative;
    z-index: 2;
    padding: 0;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    border-bottom: transparent;
    @media screen and (max-width: 1129px) {
        display: flex;
        align-items: center;
        padding: 14px 40px 14px 0;
        border-bottom: 1px solid #ccc;
        width: 100%;
        max-width: none;
        color: var(--primary-color);
        font-size: var(--fontsize-18);
        font-style: normal;
        font-weight: 700;
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 16px;
            height: 6px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow.svg) no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }
    }
    span {
        position: relative;
        @media screen and (min-width: 1130px) {
            display: flex;
            align-items: center;
            height: 100%;
            padding-bottom: 20px;
        }
        &::before {
            @media screen and (min-width: 1130px) {
                content: "";
                display: block;
                width: 100%;
                height: 1px;
                position: absolute;
                left: 0;
                bottom: 20px;
                opacity: 0;
                background: var(--primary-color);
                transition: opacity .2s ease .1s;
            }
        }
    }
    &.js-has-submenu__button {
        &::after {
            @media screen and (min-width: 1130px) {
                content: "";
                display: block;
                width: 0;
                height: 4px;
                position: absolute;
                left: 50%;
                bottom: 0;
                transform: translateX(-50%);
                background: var(--primary-color);
                transition: width .2s ease-out;
            }
        }
        span {
            &:after {
                content: "";
                display: block;
                position: absolute;
                @media screen and (min-width: 1130px) {
                    bottom: 8px;
                    left: 50%;
                    width: 6px;
                    height: 6px;
                    border-radius: 3px;
                    background-color: var(--primary-color);
                    transform: translateX(-50%) scale(0);
                    transform-origin: center;
                    opacity: 0;
                    transition: transform .2s ease .1s, opacity .1s ease 0s;
                }
            }
        }
    }
    @media (hover: hover) {
        &:hover {
            span {
                color: var(--primary-color);
                &::before {
                    opacity: 1;
                }
                &::after {
                    opacity: 1;
                    transform: translateX(-50%) scale(1);
                }
            }
        }
    }
    &.is-opened {
        &::after {
            width: 100%;
        }
        span {
            &::before ,
            &::after {
                display: none;
            }
        }
    }
    &.is-current {
        color: var(--primary-color);
    }
    &.is-type--button ,
    &.is-type--button-02 {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 39px;
        padding: 8px 12px;
        max-width: none;
        min-width: 86px;
        color: var(--white-color);
        font-size: var(--fontsize-14);
        font-style: normal;
        font-weight: 500;
        line-height: 1.2;
        background-color: var(--primary-color);
        border: 1px solid var(--primary-color);
        border-radius: 1.4em;
        @media screen and (max-width: 1129px) {
            height: 47px;
            padding: 10px 0;
            width: 100%;
            border-radius: 25px;
            z-index: 2;
        }
        @media (hover: hover) {
            &:hover {
                border: 1px solid var(--hover-color);
                color: var(--white-color);
                background-color: #8898c8;
            }
        }
        &::after {
            display: none;
        }
    }
    &.is-type--button-02 {
        position: relative;
        color: var(--primary-color);
        background-color: var(--white-color);
        @media (hover: hover) {
            &:hover {
                border: 1px solid var(--hover-color);
                color: var(--white-color);
                background-color: #8898c8;
            }
        }
    }
}

.global-navi__contact {
    @media screen and (max-width: 1129px) {
        margin-top: 24px;
    }
}

.global-navi__submenu {
    position: absolute;
    top: var(--height-header-default);
    left: 0;
    z-index: 1000;
    @media screen and (max-width: 1129px) {
        position: absolute;
        top: var(--height-header-sp);
        left: 0;
        z-index: 2;
        width: 100%;
        height: auto;
    }
    @media screen and (min-width: 1130px) {
        display: none;
        width: 100vw;
        margin: 0 calc(50% - 50vw);
    }
}

.global-navi__submenu__close {
    position: absolute;
    top: 20px;
    right: calc(var(--side-padding) + 12px);
    @media screen and (max-width: 1129px) {
        display: none;
    }
    @media (hover: hover) {
        &:hover {
            opacity: .5;
        }
    }
    button {
        border: none;
        background: transparent;
        border-radius: 0;
        box-sizing: border-box;
        cursor: pointer;
        padding: 0;
        display: block;
        width: 24px;
        height: 24px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_close.svg) no-repeat 50% 50% / 24px 24px;
        span {
            position: absolute;
            width: 1px;
            height: 1px;
            padding: 0;
            margin: -1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
            border: 0;
        }
    }
}

.global-navi__submenu__inner {
    position: relative;
    background: var(--white-color);
    &:before {
        @media screen and (min-width: 1130px) {
            content: "";
            display: block;
            position: absolute;
            top: 0;
            left: 0;
            width: 30%;
            height: 100%;
            background-color: var(--lightblue-bgcolor);
        }
    }
}

.global-navi__submenu__content {
    display: flex;
    flex-direction: column;
    @media screen and (min-width: 1130px) {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        position: relative;
        width: 100%;
        max-width: calc(var(--max-width) + (var(--side-padding) * 2));
        padding: 0 var(--side-padding);
        margin: 0 auto;
    }
    @media screen and (max-width: 1129px) {
        padding-bottom: 32px;
    }
}

.global-navi__submenu__sidebar {
    order: 2;
    padding: 16px var(--side-padding) 0;
    @media screen and (min-width: 1130px) {
        padding: 66px 44px 0 0;
        background-color: var(--lightblue-bgcolor);
    }

}

.global-navi__submenu__sidebar__title {
    margin-top: 0;
    color: var(--base-textcolor);
    font-size: var(--fontsize-24);
    font-style: normal;
    font-weight: 700;
    line-height: 33.6px; /* 140% */
    @media screen and (max-width: 1129px) {
        display: none;
    }
}

.global-navi__submenu__sidebar__text {
    margin-top: 20px;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
    @media screen and (max-width: 1129px) {
        display: none;
    }
}

.global-navi__submenu__sidebar__button {
    color: var(--primary-color);
    font-size: var(--fontsize-16);
    font-style: normal;
    font-weight: 700;
    line-height: 1.6;
    padding: 14px 0;
    @media screen and (min-width: 1130px) {
        position: relative;
        display: inline-block;
        width: 100%;
        margin-top: 32px;
        padding: 12px calc(24px + 26px + 8px);
        background-color: var(--white-color);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        border-radius: 100vh;
        text-align: center;
        text-decoration: none;
        font-weight: 500;
        &::before,
        &::after {
            content: "";
            position: absolute;
            top: calc(50% + 4px);
            right: 24px;
            height: 2px;
            background-color: var(--primary-color);
            transform: translateY(-50%);
        }
        &::before {
            width: 26px;
        }
        &::after {
            width: 13px;
            transform: translateY(-50%) rotate(40deg);
            transform-origin: calc(100% - 1px) 50%;
        }
        &[target="_blank"] {
            padding: 12px calc(24px + 16px + 8px);
            &::before {
                display: none;
            }
            &::after {
                top: calc(50%);
                width: 16px;
                height: 16px;
                background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
                transform: translateY(-50%);
            }
        }
        @media (hover: hover) {
            &:hover {
                border: 1px solid var(--hover-color);
                color: var(--white-color);
                background-color: #8898c8;
                &::before,
                &::after {
                    background-color: var(--white-color);
                }
            }
            &[target="_blank"]:hover {
                &::after {
                    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank_white.svg) no-repeat center center;
                }
            }
        }
    }
    @media screen and (max-width: 1129px) {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 24px 16px 0;
        font-size: var(--fontsize-18);
        font-weight: 700;
        line-height: 1.4;
        color: var(--primary-color);
        border-bottom: 1px solid #ccc;
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 16px;
            height: 6px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow.svg) no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }
        span {
            display: none;
        }
    }
    @media (hover: hover) {
        &:hover {
            opacity: .5;
        }
    }
}

.global-navi__submenu__mainmenu {
    order: 3;
    padding: 66px 30px 94px 44px;
    background-color: var(--white-color);
    @media screen and (max-width: 1129px) {
        padding: 0 var(--side-padding);
    }
    ul {
        padding-left: 0;
    }
    a {
        position: relative;
        display: inline-block;
        color: var(--primary-color);
        font-size: var(--fontsize-16);
        font-style: normal;
        font-weight: 400;
        line-height: 22.4px;
        @media screen and (max-width: 1129px) {
            font-size: var(--fontsize-14);
        }
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
        &[target="_blank"] {
            &::after {
                content: "";
                display: inline-block;
                position: absolute;
                top: 50%;
                right: 0;
                width: 16px;
                height: 16px;
                background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
                transform: translateY(-50%);
            }
        }
    }
}

.global-navi__1stlayer {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.global-navi__1stlayer__link {
    padding: 0;
    > a ,
    > span {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 16px 24px 16px 0;
        font-size: var(--fontsize-20);
        font-weight: 400;
        line-height: 1.4;
        border-bottom: 1px solid #ccc;
        @media screen and (max-width: 1129px) {
            font-size: var(--fontsize-16);
        }
    }
    > a {
        color: var(--primary-color);
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 16px;
            height: 6px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow.svg) no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }
    }
    > span {
        color: var(--base-textcolor);
    }
}

.global-navi__2ndlayer {
    padding: 8px 0;
    border-bottom: 1px solid #ccc;
}

.global-navi__2ndlayer__link {
    a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        padding: 8px 0 8px 20px;
        font-size: var(--fontsize-16);
        &[target="_blank"] {
            padding: 8px 24px 8px 20px;
        }
        @media screen and (max-width: 1129px) {
            font-size: var(--fontsize-14);
        }
        &::before {
            content: "";
            position: absolute;
            top: calc(1em + 4px);
            left: 0;
            width: 12px;
            height: 1px;
            background-color: var(--primary-color);
            @media screen and (max-width: 1129px) {
                top: calc(1em + 6px);
            }
        }
    }
}

.global-navi__submenu__bottomLinks {
    display: flex;
    flex-direction: column;
    gap: 12px 0;
    margin-top: 12px;
    padding-top: 20px;
    border-top: 1px solid #ccc;
    @media screen and (max-width: 1129px) {
        gap: 0;
        margin-top: 12px;
        padding-top: 0;
        border-top: none;
    }
}

.global-navi__submenu__bottomLink {
    a {
        @media screen and (max-width: 1129px) {
            display: flex;
            padding: 10px 0 12px;
        }
    }

}

.global-navi__submenu__recommend {
    order: 4;
    padding: 66px 0 94px;
    background-color: var(--white-color);
    @media screen and (max-width: 1129px) {
        padding: 32px var(--side-padding) 0;
    }
}

.global-navi__submenu__recommend__inner {
    padding: 24px 24px 24px 32px;
    background-color: #f5f5f5;
    border-radius: 8px;
}

.global-navi__submenu__recommend__title {
    margin: 0;
    color: var(--base-textcolor);
    font-size: var(--fontsize-20);
    font-style: normal;
    font-weight: 700;
    line-height: 28px; /* 140% */
    @media screen and (max-width: 1129px) {
        font-size: var(--fontsize-18);
    }
}

.global-navi__submenu__recommend__links {
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 16px 0;
    margin-top: 20px;
    padding-left: 0;
}

.global-navi__submenu__recommend__link {
    a {
        position: relative;
        display: flex;
        align-items: center;
        width: 100%;
        color: var(--primary-color);
        font-size: var(--fontsize-16);
        font-style: normal;
        font-weight: 400;
        line-height: 1.6;
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
        &[target="_blank"] {
            padding-right: 24px;
            &::after {
                content: "";
                display: inline-block;
                position: absolute;
                top: 50%;
                right: 0;
                width: 16px;
                height: 16px;
                background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
                transform: translateY(-50%);
            }
        }
    }
}

.global-navi__submenu__recommend__text {
    margin-top: 8px;
    padding: 0;
    color: var(--base-textcolor);
    font-size: var(--fontsize-14);
    font-style: normal;
    font-weight: 400;
    line-height: 1.6;
}

.spNavi__layerGroup__nextButton {
    @media screen and (max-width: 1129px) {
        display: flex;
        align-items: center;
        position: relative;
        padding: 20px 40px 20px 0;
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 8px;
            height: 16px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_slide_next.svg) no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }
    }
}

.spNavi__layerGroup__backButton {
    order: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    padding: 8px 20px 8px 36px;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    border: none;
    background-color: var(--lightblue-bgcolor);
    @media screen and (min-width: 1130px) {
        display: none;
    }
    &::before {
        content: "";
        display: block;
        position: absolute;
        top: 50%;
        left: 20px;
        width: 11px;
        height: 18px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_back.svg) no-repeat center / 11px 18px;
        transform: translateY(-50%);
    }
}

.spNavi__layerGroupFirst {
    @media screen and (max-width: 1129px) {
        position: static;
        list-style: none;
        padding: 18px var(--side-padding) 48px;
        background-color: var(--lightblue-bgcolor);
    }
}

.spNavi__layerGroup {
    @media screen and (max-width: 1129px) {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        width: 100%;
        padding-bottom: 48px;
        box-shadow: 0 4px 10px 0 rgb(0 0 0 / .16);
    }
    &.is-show {
        @media screen and (max-width: 1129px) {
            transform: translateX(0);
            z-index: 3;
            transition: transform .8s, z-index .9s;
        }
    }
    &.is-hide {
        @media screen and (max-width: 1129px) {
            transition: transform .7s, z-index 1s;
            transform: translateX(100%);
        }
    }
    &.is-preHide {
        @media screen and (max-width: 1129px) {
            transform: translateX(0);
        }
    }
}

.spNavi__layerGroupLower {
    @media screen and (max-width: 1129px) {
        min-height: 110%;
        transform: translateX(100%);
        background: var(--white-color);
        z-index: 1001;
    }
}

.spNavi__utility__links {
    display: none;
    @media screen and (max-width: 1129px) {
        display: block;
        width: 100%;
        margin-bottom: 32px;
    }
    ul {
        @media screen and (max-width: 1129px) {
            display: flex;
            flex-direction: column;
            gap: 16px 0;
            align-items: flex-start;
            width: 100%;
            margin-top: 24px;
            font-size: var(--fontsize-16);
            font-weight: 400;
        }
    }
    a {
        color: var(--primary-color);
    }
}

.spNavi__utility__search {
    display: none;
    @media screen and (max-width: 1129px) {
        display: block;
        width: 100%;
        margin-top: 44px;
        font-size: var(--fontsize-16);
        font-weight: 400;
    }
}

.footer-bar {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    overflow: hidden;
    &::after {
        content: "";
        position: absolute;
        top: -650%;
        right: -44%;
        width: 100%;
        height: 795px;
        background: radial-gradient(50% 50% at 50% 50%, #00B4E1 0%, rgba(0, 180, 225, 0) 100%);
    }
}

.footer-bar__inner {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    padding: 24px var(--side-padding);
    margin: 0 auto;
    z-index: 1;
    @media screen and (max-width: 1129px) {
        height: 64px;
        padding: 14px var(--side-padding);
    }
}

.footer-bar__link-pagetop {
    margin: 0;
    a {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0 8px;
        position: relative;
        color: var(--white-color);
        font-size: var(--fontsize-16);
        @media screen and (max-width: 1129px) {
            font-size: var(--fontsize-14);
        }
        &::after {
            content: "";
            display: inline-block;
            width: 16px;
            height: 8px;
            vertical-align: middle;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/common/icon_arrow_pagetop.svg) no-repeat 0 0;
            background-size: contain;
        }
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
    }
}

.footer-bar__logo {
    width: 183px;
    @media screen and (max-width: 1129px) {
        width: 120px;
    }
}

.footer {
    width: 100%;
    ul ,
    ol {
        list-style: none;
    }
    .newsletter {
        margin-top: 0;
    }
}

.footer__main {
    background-color: #1d2c50;
}

.footer__main__inner {
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    margin: 0 auto;
    padding: 64px var(--side-padding);
    @media screen and (max-width: 1129px) {
        padding-top: 44px;
        padding-bottom: 48px;
    }
}

.footer__sns {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 0 44px;
    padding: 64px 0 84px;
    color: var(--white-color);
    @media screen and (max-width: 1129px) {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px 0;
        padding: 44px 0 64px;
    }
    .sns__list {
        gap: 0 34px;
        margin-top: 0;
        @media screen and (max-width: 1129px) {
            justify-content: flex-start;
            gap: 0 24px;
        }
        li {
            width: 10%;
        }
    }
}

.footer__sns__title {
    margin: 0;
    padding: 0;
    font-size: var(--fontsize-20);
    font-weight: 700;
    @media screen and (max-width: 1129px) {
        font-size: var(--fontsize-18);
    }
}

.footer__sitemap {
    color: var(--white-color);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.2;
    a {
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
    }
    .js-has-submenu__button {
        position: relative;
        &::before ,
        &::after {
            @media screen and (max-width: 1129px) {
                content: "";
                display: block;
                position: absolute;
                right: 0;
                top: 50%;
                width: 20px;
                height: 2px;
                background: var(--white-color);
                border-radius: 1px;
                transition: transform .2s ease-out, background .2s ease-out;
            }
        }
        &::after {
            @media screen and (max-width: 1129px) {
                transform: rotate(90deg);
            }
        }
        &.is-opened::after, &.is-show::after {
            transform: rotate(0deg);
        }
    }
    .js-has-submenu__body {
        @media screen and (max-width: 1129px) {
            display: none;
        }
    }
}

.footer__sitemap__inner {
    padding-top: 0;
}

.footer__sitemap__menu {
    display: grid;
    gap: 44px 30px;
    grid-template-columns: repeat(4, 1fr);
    @media screen and (max-width: 1129px) {
        display: flex;
        flex-direction: column;
        gap: 0;
    }
}

.footer__sitemap__menu__item {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    list-style: none;
    @media screen and (max-width: 1129px) {
        gap: 0;
        border-bottom: 1px solid var(--white-color);
    }
}

.footer__sitemap__category {
    font-size: var(--fontsize-20);
    font-weight: 700;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 24px 0 0;
    @media screen and (max-width: 1129px) {
        font-size: var(--fontsize-18);
    }
    &::before {
        @media screen and (min-width: 1130px) {
            content: "";
            position: absolute;
            bottom: -20px;
            left: 0;
            display: block;
            width: 100%;
            height: 1px;
            background-color: var(--white-color);
        }
    }
    &::after {
        content: "";
        position: absolute;
        top: 50%;
        right: 0;
        width: 16px;
        height: 6px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_white.svg) no-repeat center center;
        background-size: contain;
        transform: translateY(-50%);
    }
    @media screen and (max-width: 1129px) {
        display: flex;
        align-items: center;
        padding: 20px 40px 20px 0;
    }
}

.footer__sitemap__content {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    padding-top: 20px;
    list-style: none;
    @media screen and (max-width: 1129px) {
        padding: 0 0 10px 0;
    }
}

.footer__sitemap__1stlayer {
    display: flex;
    flex-direction: column;
    gap: 20px 0;
    @media screen and (max-width: 1129px) {
        gap: 0;
    }
}

.footer__sitemap__1stlayer__link {
    color: var(--white-color);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.6;
    > a {
        position: relative;
        display: flex;
        align-items: center;
        padding-right: 24px;
        @media screen and (max-width: 1129px) {
            padding: 10px 24px 10px 0;
        }
        &::after {
            content: "";
            position: absolute;
            top: 50%;
            right: 0;
            width: 16px;
            height: 6px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_white.svg) no-repeat center center;
            background-size: contain;
            transform: translateY(-50%);
        }
    }
    > span {
        @media screen and (max-width: 1129px) {
            display: flex;
            padding: 10px 0 8px;
        }
    }
}

.footer__sitemap__1stlayer__link--top {
    font-weight: 700;
    @media screen and (min-width: 1130px) {
        display: none;
    }
    > a {
        @media screen and (max-width: 1129px) {
            padding: 5px 24px 5px 0;
        }
    }
}

.footer__sitemap__2ndlayer {
    display: flex;
    flex-direction: column;
    gap: 19px 0;
    margin-top: 16px;
    @media screen and (max-width: 1129px) {
        gap: 0;
        margin-top: 0;
    }
}

.footer__sitemap__2ndlayer__link {
    color: var(--white-color);
    font-size: var(--fontsize-16);
    font-weight: 400;
    line-height: 1.6;
    @media screen and (max-width: 1129px) {
        padding-bottom: 2px;
    }
    a {
        display: flex;
        align-items: center;
        position: relative;
        width: 100%;
        padding-left: 20px;
        font-size: var(--fontsize-14);
        @media screen and (max-width: 1129px) {
            padding: 8px 0 8px 20px;
        }
        &::before {
            content: "";
            display: inline-block;
            position: absolute;
            top: .8em;
            left: 0;
            width: 12px;
            height: 1px;
            background-color: var(--white-color);
            @media screen and (max-width: 1129px) {
                top: calc(8px + .8em);
            }
        }
    }
}

.footer__base {
    color: var(--primary-color);
}

.footer__base__inner {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    justify-content: center;
    gap: 24px 0;
    width: 100%;
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    padding: 24px var(--side-padding) 64px;
    margin: 0 auto;
    background-color: var(--white-color);
    @media screen and (min-width: 1130px) {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr;
        gap: 0 24px;
    }
    @media screen and (max-width: 1129px) {
    }
}

.footer__utility {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 12px 24px;
    list-style: none;
    @media screen and (min-width: 1130px) {
        max-width: 552px;
        flex-direction: row;
        align-self: baseline;
    }
    li {
        color: var(--primary-color);
        font-size: var(--fontsize-12);
        font-weight: 400;
        line-height: 1.6;
        @media (hover: hover) {
            &:hover {
                opacity: .5;
            }
        }
    }
}

.footer__base__info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px 0;
    @media screen and (min-width: 1130px) {
        align-items: flex-end;
    }
}

.footer__iso {
    width: 272px;
    flex-shrink: 0;
    @media screen and (min-width: 1130px) {
        justify-self: flex-end;
    }
}

.footer__copyright {
    margin-top: 0;
    font-size: var(--fontsize-14);
    @media screen and (min-width: 1130px) {
        justify-self: flex-end;
    }
}

.section {
  width: 100%;
  &:has(.title-lv1) {
    padding-bottom: 120px;
    @media screen and (max-width: 767px) {
      padding-bottom: 64px;
    }
    + .section {
      .title-lv2--center {
        padding-top: 0;
      }
    }
  }
  .section__inner {
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
  }
  .title-lv2--center {
    ~ .section {
      .title-lv2--center {
        margin-top: 100px;
        @media screen and (max-width: 767px) {
          margin-top: 84px;
        }
      }
    }
  }
}

.section--bgcolor {
  padding: 64px 0;
  background-color: var(--lightblue-bgcolor);
  @media screen and (max-width: 767px) {
    padding: 48px 0;
  }
}

.section--bg-pt1 {
  padding: 64px 0;
  background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_section_pt1.png') no-repeat center center;
  background-size: cover;
  @media screen and (max-width: 767px) {
    padding: 48px 0;
    background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_section_pt1_sp.png') no-repeat 54% center;
    background-size: cover;
  }
  .title-lv2,
  .title-lv2--center {
    padding-top: 0;
  }
}

.section--bg-pt2 {
  padding: 64px 0;
  background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_section_pt2.png') no-repeat center center;
  background-size: cover;
  @media screen and (max-width: 767px) {
    padding: 48px 0;
    background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_section_pt2_sp.png') no-repeat center center;
    background-size: cover;
  }
  .title-lv2,
  .title-lv2--center {
    padding-top: 0;
  }
}

.breadcrumb {
  position: relative;
  max-width: calc(var(--max-width) + (var(--side-padding) * 2));
  margin: 20px auto 0;
  padding: 0 var(--side-padding);
  z-index: 1;
  + main {
    .hero {
      margin-top: -51px;
      @media screen and (max-width: 767px) {
        margin-top: -45px;
      }
    }
  }
}

.breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 21px;
  max-width: -moz-max-content;
  max-width: max-content;
  margin: 0;
  padding: 4px 16px;
  background-color: var(--lightblue-bgcolor);
  border-radius: 100vh;
  list-style: none;
  @media screen and (max-width: 767px) {
    padding-right: 28px;
  }
}

.breadcrumb__item {
  position: relative;
  font-weight: 700;
  font-size: var(--fontsize-14);
  line-height: 1.6;
  color: var(--gray-color);
  a {
    color: var(--primary-color);
    font-weight: 400;
    @media (hover: hover) {
      &:hover {
        text-decoration: underline;
      }
    }
  }
  &:not(:last-child) {
    &::after {
      content: '';
      position: absolute;
      right: -14px;
      top: 50%;
      transform: translateY(-50%);
      width: 5px;
      height: 14px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/line_breadcrumb.svg) no-repeat center center;
      background-size: contain;
    }
  }
  @media screen and (max-width: 767px) {
    &:not(:has(a)) {
      display: none;
    }
  }
}

.breadcrumb:has(+ .main .hero) {
  .breadcrumb__list {
    background-color: var(--white-color);
  }
}

.breadcrumb:has(+ .main .section [class^="article-"]) {
  .breadcrumb__list {
    padding: 4px 0;
    background-color: transparent;
  }
}

/*-- footer-breadcrumb --*/

.breadcrumb--footer {
  display: flex;
  align-items: center;
  min-height: 63px;
  max-width: none;
  margin-top: 0;
  padding: 0;
  width: 100%;
  background-color: var(--white-color);
  border-top: 1px solid #ccc;
  .breadcrumb__list {
    gap: 8px 21px;
    width: 100%;
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    padding: 18px var(--side-padding);
    margin: 0 auto;
    background-color: #fff;
    border-radius: 0;
  }
}

.hero {
  position: relative;
  background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_hero.png') no-repeat center bottom;
  background-size: cover;
  height: 470px;
  @media screen and (max-width: 767px) {
    background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_hero_sp.png') no-repeat left bottom;
    background-size: cover;
    height: 340px;
  }
  .hero__inner {
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--side-padding);
    display: flex;
    flex-direction: column;
    height: 100%;
  }
  .title-lv1 {
    padding-top: 120px;
    font-size: var(--fontsize-80);
    color: var(--white-color);
    @media screen and (max-width: 767px) {
      padding-top: 96px;
      font-size: var(--fontsize-48);
    }
  }
  .lead-text {
    padding-top: 32px;
    color: var(--white-color);
    @media screen and (max-width: 767px) {
      padding-top: 16px;
      font-size: var(--fontsize-13);
    }
  }
}

[class^="title-"] {
  line-height: 1.4;
  font-weight: 700;
}

[class^="title-lv2"]{
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding-top: 84px;
  }
}

.title-lv1 {
  padding-top: 68px;
  font-size: var(--fontsize-44);
  color: var(--primary-color);
  @media screen and (max-width: 767px) {
    padding-top: 44px;
    font-size: var(--fontsize-32);
  }
}

.title-lv1--small {
  padding-top: 68px;
  font-size: var(--fontsize-32);
  color: var(--primary-color);
}

.title-lv1__group {
  padding-top: 68px;
  @media screen and (max-width: 767px) {
    padding-top: 44px;
  }
  .title-caption {
    padding-left: 8px;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    line-height: 1;
  }
  .title-lv1 {
    padding-top: 8px;
    color: var(--primary-color);
    font-size: var(--fontsize-44);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-32);
    }
  }
}

.title-lv2 {
  color: var(--base-textcolor);
  font-size: var(--fontsize-40);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-32);
  }
}

.title-lv2--small {
  padding-top: 64px;
  color: var(--base-textcolor);
  font-size: var(--fontsize-28);
  @media screen and (max-width: 767px) {
    padding-top: 48px;
    font-size: var(--fontsize-24);
  }
}

.title-lv2--xsmall {
  padding-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.title-lv2--center {
  position: relative;
  padding-bottom: 18px;
  color: var(--primary-color);
  font-size: var(--fontsize-40);
  text-align: center;
  &::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: calc(50% - 30px);
    width: 60px;
    height: 2px;
    background-color: var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    padding-bottom: 20px;
    font-size: var(--fontsize-32);
    &::after {
      bottom: 0;
      left: calc(50% - 20px);
      width: 40px;
    }
  }
  + .text {
    margin-top: 32px;
    @media screen and (max-width: 767px) {
      margin-top: 28px;
    }
  }
}

.title-lv2__group {
  .title-caption {
    padding-left: 8px;
    color: var(--primary-color);
    font-size: var(--fontsize-16);
    border-left: 2px solid var(--primary-color);
    line-height: 1;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
  .title-lv2 {
    padding-top: 8px;
    color: var(--base-textcolor);
    font-size: var(--fontsize-40);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-24);
    }
  }
}

.title-lv2--point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  margin-bottom: 48px;
  color: var(--primary-color);
  font-size: var(--fontsize-28);
  text-align: center;
  @media screen and (max-width: 767px) {
    margin-bottom: 28px;
    font-size: var(--fontsize-24);
  }
}

.title-lv2--point__caption {
  position: relative;
  padding: 0 24px;
  &::before ,
  &::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    height: 35px;
    border: 1px solid var(--primary-color);
  }
  &::before {
    left: 0;
    transform: rotate(-12deg) translate3d(0, 0, 0);
  }
  &::after {
    right: 0;
    transform: rotate(12deg) translate3d(0, 0, 0);
  }
}

.title-lv3 {
  color: var(--base-textcolor);
  font-size: var(--fontsize-28);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-24);
  }
}

.title-lv3--small {
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.title-lv3--section {
  padding-top: 48px;
  color: var(--base-textcolor);
  font-size: var(--fontsize-28);
  @media screen and (max-width: 767px) {
    padding-top: 30px;
    font-size: var(--fontsize-24);
  }
}

.title-lv3__group {
  .title-caption {
    padding-left: 8px;
    color: var(--primary-color);
    font-size: var(--fontsize-16);
    border-left: 2px solid var(--primary-color);
    line-height: 1;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
    .column & {
      margin-top: 0;
    }
    + .title-lv3 {
      padding-top: 8px;
    }
  }
  .title-lv3 {
    color: var(--base-textcolor);
    font-size: var(--fontsize-28);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-24);
    }
  }
}

.title-lv4 {
  color: var(--primary-color);
  font-size: var(--fontsize-20);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.lead-text {
  margin-top: 24px;
  font-size: var(--fontsize-16);
  color: var(--base-textcolor);
  font-weight: 500;
  @media screen and (max-width: 767px) {
    margin-top: 20px;
    font-size: var(--fontsize-13);
  }
  + .table {
    margin-top: 20px;
  }
}

.text {
  margin-top: 20px;
  strong {
    font-weight: 700;
  }
  &.text-note {
    font-size: var(--fontsize-14);
  }
  a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease-in-out;
    &[target="_blank"] {
      &::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
        transform: translateX(-50%);
      }
    }
    &[href$=".pdf"] {
      &::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 20px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) no-repeat center center;
        transform: translateY(22%);
      }
    }
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
      }
    }
  }
  + .table {
    margin-top: 20px;
  }
  + .column {
    margin-top: 44px;
    @media screen and (max-width: 767px) {
      right: 26px;
    }
  }
}

.text-center {
  text-align: center;
  + .table {
    margin-top: 20px;
  }
}

.text-right {
  text-align: right;
  + .table {
    margin-top: 20px;
  }
}

.text-data-info {
  position: relative;
  margin-top: 12px;
  font-size: var(--fontsize-14);
  font-weight: 500;
  line-height: 1.8;
  + .title-lv3--small {
    margin-top: 12px;
  }
}

.text-data__item {
  display: inline;
  &.location {
    padding-left: 20px;
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_location.svg) left center no-repeat;
  }
  &:nth-child(n+2) {
    padding-left: 25px;
  }
}

.text-data-info:has(.text-data__item:nth-child(n+2)) {
  .text-data__item:not(:last-child) {
    position: relative;
    &::before {
      content: "";
      position: absolute;
      right: -12px;
      bottom: 0;
      width: 1px;
      height: 18px;
      background-color: var(--lightgray-linecolor);
    }
  }
}

.text-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.text-keyword {
  font-size: var(--fontsize-14);
  font-weight: 500;
}

.text-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  + .title-lv3--small {
    margin-top: 12px;
  }
}

[class^="text-category"]{
  margin: 0;
  padding: 6px 12px;
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100vh;
  text-align: center;
  font-size: var(--fontsize-14);
  font-weight: 500;
  line-height: 1;
}

.text-category--blue {
  background-color: var(--primary-color);
  color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.text-category--red {
  background-color: var(--red-color);
  color: var(--white-color);
  border: 1px solid var(--red-color);
}

.text-category--gray {
  background-color: var(--lightgray-bgcolor);
  color: var(--base-textcolor);
  border: 1px solid var(--lightgray-bgcolor);
}

.text-author-name {
  font-size: var(--fontsize-14);
  margin-top: 12px;
  font-weight: 500;
}

.text-author-name + .text-keywords {
  margin-top: 8px;
}

.text-cases-number {
  margin-top: 24px;
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.4;
  span {
    display: inline-block;
    margin-inline: 8px;
    font-size: var(--fontsize-32);
    color: var(--primary-color);
    &:nth-of-type(2) {
      margin-inline: 0;
    }
  }
  + .card {
    margin-top: 24px;
  }
}

.link {
  position: relative;
  display: inline-block;
  margin-top: 20px;
  color: var(--primary-color);
  transition: opacity .3s ease-in-out;
  span {
    text-decoration: none;
    &::after {
      content: "";
      display: inline-block;
      width: 26px;
      height: 2px;
      margin-left: 8px;
      background-color: var(--primary-color);
      transform: translateY(-50%);
    }
  }
  &::after {
    content: "";
    display: inline-block;
    height: 2px;
    margin-left: -12px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
  }
  &::after {
    width: 13px;
    transform: translateY(-50%) rotate(40deg);
    transform-origin: calc(100% - 1px) 50%;
  }
  &[target="_blank"] {
    &::after {
      display: none;
    }
    span {
      &::after {
        width: 16px;
        height: 16px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
        transform: translateX(-50%);
      }
    }
  }
  &[href$=".pdf"] {
    &::after {
      display: none;
    }
    span {
      &::after {
        width: 16px;
        height: 20px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) no-repeat center center;
        transform: translateY(22%);
      }
    }
  }
  @media (hover: hover) {
    &:hover {
      opacity: .5;
    }
  }
}

.link-button-grid {
  display: grid;
}

.link-button-grid--center {
  justify-items: center;
}

.link-button__wrapper {
  display: grid;
  gap: 20px 30px;
  margin-top: 32px;
  @media screen and (max-width: 767px) {
    gap: 32px 30px;
  }
  &.--column2 {
    grid-template-columns: repeat(2, 1fr);
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }
  &.--column3 {
    grid-template-columns: repeat(3, 1fr);
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
    }
  }
  .link-button {
    margin-top: 0;
  }
}

.link-button {
  position: relative;
  display: inline-block;
  margin-top: 32px;
  padding: 12px calc(24px + 26px + 8px);
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100vh;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, background-image background-color 0.3s ease-in-out, color 0.3s ease-in-out;
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
  }
  &::before {
    width: 26px;
  }
  &::after {
    width: 13px;
    transform: translateY(-50%) rotate(40deg);
    transform-origin: calc(100% - 1px) 50%;
  }
  &[target="_blank"] {
    padding: 12px calc(24px + 16px + 8px);
    &::before {
      display: none;
    }
    &::after {
      top: calc(50%);
      width: 16px;
      height: 16px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
      transform: translateY(-50%);
    }
  }
  &[href$=".pdf"] {
    padding: 12px calc(24px + 16px + 8px);
    &::before {
      display: none;
    }
    &::after {
      top: calc(50%);
      width: 16px;
      height: 20px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) no-repeat center center;
      transform: translateY(-50%);
    }
  }
  @media (hover: hover) {
    &:hover {
      border: 1px solid var(--hover-color);
      color: var(--white-color);
      background-color: #8898c8;
      &::before,
      &::after {
        background-color: var(--white-color);
      }
    }
    &[target="_blank"]:hover {
      &::after {
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank_white.svg) no-repeat center center;
      }
    }
    &[href$=".pdf"]:hover {
      &::after {
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf_white.svg) no-repeat center center;
      }
    }
  }
  &.link-button--disabled {
    pointer-events: none;
    background-color: var(--lightgray-bordercolor);
    border: 1px solid var(--lightgray-bordercolor);
  }
}

.link-button--wide {
  max-width: 535px;
  width: 100%;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}

.link-button--small {
  max-width: 342px;
  width: 100%;
  @media screen and (max-width: 767px) {
    max-width: 100%;
  }
}

.link-button--center {
  margin: 32px auto 0;
}

.linklist {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 16px 0;
  margin-top: 20px;
  list-style: none;
  &.linklist--right {
    li {
      text-align: right;
    }
  }
  .link {
    margin-top: 0;
  }
  &.linklist--space-between {
    a {
      position: relative;
      display: flex;
      align-items: center;
      padding-right: 36px;
      width: 100%;
      &::before {
        content: "";
        display: inline-block;
        width: 26px;
        height: 2px;
        margin-left: 8px;
        background-color: var(--primary-color);
        transform: translateY(-50%);
        position: absolute;
        right: 0;
      }
      &::after {
        position: absolute;
        right: 0;
      }
      span {
        &::after {
          display: none;
        }
      }
    }
  }
}

.local-navi {
  &.section {
    margin-top: 100px;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
    }
  }
  .title-lv2--small {
    padding-top: 0;
    .link {
      padding-right: calc(18px + 26px);
    }
  }
}

.local-links {
  margin-top: 46px;
  list-style: none;
  &.column {
    gap: 28px 30px;
  }
  .column__item {
    display: flex;
    align-items: stretch;
    justify-items: center;
  }
}

.local-link {
  position: relative;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 24px calc(24px + 26px + 8px) 24px 24px;
  width: 100%;
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  text-align: left;
  text-decoration: none;
  font-weight: 700;
  transition: background-color .1s ease-in-out;
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
  }
  &::before {
    width: 26px;
  }
  &::after {
    width: 13px;
    transform: translateY(-50%) rotate(40deg);
    transform-origin: calc(100% - 1px) 50%;
  }
  &[target="_blank"] {
    &::before {
      display: none;
    }
    &::after {
      top: calc(50%);
      width: 16px;
      height: 16px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
      transform: translateY(-50%);
    }
  }
  @media (hover: hover) {
    &:hover {
      border: 1px solid var(--hover-color);
      color: var(--white-color);
      background-color: var(--hover-color);
      &::before,
      &::after {
        background-color: var(--white-color);
      }
    }
    &[target="_blank"]:hover {
      &::after {
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank_white.svg) no-repeat center center;
      }
    }
  }
}

.column__item.is-active {
  .local-link {
    position: relative;
    padding: 24px calc(24px + 26px + 8px) 24px 24px;
    background-color: var(--primary-color);
    color: var(--white-color);
    font-weight: 700;
    @media (hover: hover) {
      &:hover {
        border: 1px solid var(--hover-color);
        color: var(--white-color);
        background-color: #8898c8;
      }
    }
    &::before,
    &::after {
      content: "";
      position: absolute;
      top: calc(50% + 4px);
      right: 24px;
      height: 2px;
      background-color: var(--white-color);
      transform: translateY(-50%);
    }
    &::before {
      width: 26px;
    }
    &::after {
      width: 13px;
      transform: translateY(-50%) rotate(40deg);
      transform-origin: calc(100% - 1px) 50%;
    }
  }
}

.column {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
  @media screen and (max-width: 767px) {
    gap: 26px;
  }
}

.column.--column1 .column__item {
  width: 100%;
}

.column.--column2 .column__item,
.column.--column2-reverse .column__item {
  width: calc((100% - 30px) / 2);
}

.column.--column3 .column__item {
  width: calc((100% - 60px) / 3);
}

.column.--column4 .column__item {
  width: calc((100% - 90px) / 4);
}

@media screen and (max-width: 767px) {
  .column.--column2 .column__item,
  .column.--column2-reverse .column__item,
  .column.--column3 .column__item,
  .column.--column4 .column__item {
    width: 100%;
  }
}

.column__item--image img {
  max-width: 100%;
  width: 100%;
  height: auto;
}

.column.--column2-reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .column.--column2,
  .column.--column2-reverse {
    flex-direction: column;
  }
  .column__item--text {
    order: 2;
  }

  .column__item--image {
    order: 1;
  }
}

.column.--conference {
  margin-top: 28px;
  .column__item.column__item--text {
    .text:nth-child(1) {
      margin-top: 0;
    }
  }
}

.card {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px 30px;
  &.--column2 {
    grid-template-columns: repeat(2, 1fr);
  }
  &.--column3 {
    grid-template-columns: repeat(3, 1fr);
  }
  &.--column4 {
    grid-template-columns: repeat(4, 1fr);
  }
  @media screen and (max-width: 767px) {
    margin-top: 28px;
    gap: 24px;
    &:has(.card__link .card__image) {
      gap: 20px;
    }
    &.--column2,
    &.--column3,
    &.--column4 {
      grid-template-columns: 1fr;
    }
    &.--column2 .card__link,
    &.--column3 .card__link,
    &.--column4 .card__link {
      width: 100%;
    }
  }
  &.--column4 .card__link {
    .text {
      margin-top: 8px;
    }
  }
}

.card__inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
  border: 1px solid var(--lightgray-bordercolor);
  background-color: var(--white-color);
  .card__image {
    order: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 2 / 1;
  }
  .card__item {
    display: flex;
    flex-direction: column;
    order: 2;
    padding: 24px 24px 52px;
  }
}

.card__link {
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  width: 100%;
  border: 1px solid var(--lightgray-bordercolor);
  background-color: var(--white-color);
  .card__image {
    order: 1;
    margin: 0;
    padding: 0;
    width: 100%;
    aspect-ratio: 2 / 1;
    overflow: hidden;
    transition: opacity .3s ease-in-out;
    img {
      transition: transform .3s ease-in-out;
    }
  }
  .card__item {
    display: flex;
    flex-direction: column;
    order: 2;
    padding: 24px 24px 52px;
    .card__item--logo {
      max-height: 80px;
      height: 100%;
      text-align: center;
      img {
        display: inline-block;
        width: auto;
        height: 80px;
      }
      &:has(p) {
          display: flex;
          align-items: center;
          justify-content: center;
          height: 80px;
          p {
              margin: 0;
          }
      }
    }
    .card__item--logo + .title-lv3--small,
    .card__item--logo + .new-mark + .title-lv3--small,
    .title-lv3--small + .text-client-info {
      margin-top: 16px;
    }
  }
  &.is-disabled {
    .card__item {
      color: var(--lightgray-bordercolor);
      .title-lv3--small {
        color: var(--lightgray-bordercolor);
      }
    }
  }
}

a.card__link {
  transition: border-color .3s ease-in-out, color .3s ease-in-out;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0);
    transition: background-color .3s ease-in-out;
    z-index: 1;
  }
  .card__item {
    transition: opacity .3s ease-in-out;
    &::before,
    &::after {
      content: "";
      position: absolute;
      right: 24px;
      bottom: 24px;
      height: 2px;
      background-color: var(--primary-color);
    }
    &::before {
      width: 26px;
    }
    &::after {
      width: 13px;
      transform: translateY(-50%) rotate(40deg);
      transform-origin: calc(100% - 1px) 50%;
    }
  }
  &[target="_blank"] {
    transition: border-color .3s ease-in-out, background-image .3s ease-in-out;
    .card__item {
      &::before {
        display: none;
      }
      &::after {
        bottom: 16px;
        width: 16px;
        height: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
        transform: none;
      }
    }
  }
  [class^="title-"] {
    color: var(--primary-color);
    overflow-wrap: anywhere;
  }
  @media (hover: hover) {
    &:hover {
      border: 1px solid var(--hover-color);
      &::before {
        background-color: rgba(255, 255, 255, 0.5);
      }
      .card__item {
        .title-lv3--small {
          color: rgba(8, 48, 144, 0.95);
        }
        .text {
          color: rgba(0, 15, 41, 0.95);
        }
      }
      .card__image {
        img {
          transform: scale(1.3);
        }
      }
    }
  }
}

.card--article {
  .text-categories + .title-lv3--small {
    margin-top: 8px;
  }
  .card__image {
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--lightgray-bordercolor);
    img {
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
  .text-data-info {
    margin-top: 20px;
  }
  .card__link {
    border: 1px solid var(--primary-color);
    &:after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 50px;
      height: 50px;
      background: none;
      background-color: var(--primary-color);
      transform: none
    }
    .card__item {
      &::before,
      &::after {
        content: "";
        position: absolute;
        right: 12px;
        bottom: 22px;
        height: 2px;
        background-color: var(--white-color);
        z-index: 2;
      }
      &::before {
        width: 26px;
      }
      &::after {
        width: 13px;
        transform: translateY(-50%) rotate(40deg);
        transform-origin: calc(100% - 1px) 50%;
      }
    }
    &[target="_blank"] {
      .card__item{
        &::before {
          display: none;
        }
        &::after {
          right: 16px;
          bottom: 10px;
          width: 16px;
          height: 16px;
          background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank_white.svg) no-repeat center center;
          transform: translateY(-50%);
        }
      }
    }
    &.modal {
      @media (hover: hover) {
        &:hover {
          .card__image {
            &::before {
              background-color: transparent;
            }
          }
        }
      }
      .card__item {
        &::before {
          display: none;
        }
        &::after {
          right: 15px;
          bottom: 14px;
          width: 18px;
          height: 19px;
          background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_modal.svg) no-repeat center center;
          transform: none;
        }
        .modal__button {
          text-align: left;
          background-color: var(--white-color);
          &::before {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
          }
        }
      }
      &.modal--iframe {
        .card__image {
          position: relative;
          &::before {
            content: "";
            display: block;
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            background-color: rgb(0 0 0 / .5);
            transition: background-color .3s ease-in-out;
          }
          &::after {
            content: "";
            display: block;
            position: absolute;
            top: 50%;
            left: 50%;
            width: 54px;
            height: 54px;
            background: url('/wp-content/themes/matlantis_theme2/assets/img/icon_movie_play.svg') no-repeat center center;
            transform: translate(-50%, -50%);
          }
        }
      }
    }
    @media (hover: hover) {
      &:hover {
        border: 1px solid var(--hover-color);
      }
    }
  }
}

.card--landscape {
  width: 100%;
  .card__link {
    display: flex;
    flex-direction: row;
    padding: 60px;
    border: 1px solid var(--primary-color);
    @media screen and (max-width: 767px) {
      padding: 24px 24px 70px;
      gap: 20px;
    }
    &.--column2 {
      @media screen and (max-width: 767px) {
        flex-direction: column;
      }
      .card__image,
      .card__item {
        width: calc((100% - 30px) / 2);
        @media screen and (max-width: 767px) {
          width: 100%;
        }
      }
    }
    &.--column2.--ratio3 {
      .card__image {
        flex: 0 0 calc((100% - 60px) / 3);
        @media screen and (max-width: 767px) {
          flex: none;
          width: 100%;
        }
      }
      .card__item {
        flex: 1;
        @media screen and (max-width: 767px) {
          flex: none;
          width: 100%;
        }
      }
      .card__image {
        img {
          height: 100%;
          -o-object-fit: cover;
             object-fit: cover;
        }
      }
    }
  }

  .card__link {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    &:after {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 50px;
      height: 50px;
      background: none;
      background-color: var(--primary-color);
      transform: none
    }
    .card__item {
      &::before,
      &::after {
        content: "";
        position: absolute;
        right: 12px;
        bottom: 22px;
        height: 2px;
        background-color: var(--white-color);
        z-index: 2;
      }
      &::before {
        width: 26px;
      }
      &::after {
        width: 13px;
        transform: translateY(-50%) rotate(40deg);
        transform-origin: calc(100% - 1px) 50%;
      }
    }
    &[target="_blank"] {
      .card__item{
        &::before {
          display: none;
        }
        &::after {
          right: 16px;
          bottom: 10px;
          width: 16px;
          height: 16px;
          background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank_white.svg) no-repeat center center;
          transform: translateY(-50%);
        }
      }
    }
  }
  .card__image {
    aspect-ratio: 16 / 9;
    border: 1px solid var(--lightgray-bordercolor);
  }
  .card__item {
    padding: 0;
    @media screen and (max-width: 767px) {
      &:has(.new-mark) {
        padding-top: 32px;
      }
    }
  }
  .text-categories {
    margin-top: 0;
  }

  .text-categories + .title-lv3--small {
    margin-top: 8px;
  }

  .text + .text-author-name {
    margin-top: 20px;
  }

  .text-author-name + .text-keywords {
    margin-top: 12px;
    @media screen and (max-width: 767px) {
      margin-top: 20px;
    }
  }

}

.card__link:has(.new-mark) {
  position: relative;
}

.new-mark {
  margin: 0;
}

.new-mark::before {
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	border-bottom: 84px solid transparent;
	border-left: 84px solid var(--red-color);
	z-index: 10;
}

.new-mark::after {
	content: "NEW";
	position: absolute;
	top: 18px;
	left: 10px;
	color: var(--white-color);
	font-size: var(--fontsize-14);
	font-weight: 500;
  line-height: 1;
	z-index: 10;
	-webkit-font-smoothing: antialiased;
}

.card__icons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  order: -1;
  margin-bottom: 8px;
}

.card__icon {
  display: inline-flex;
  margin-top: 0;
  padding: 4px 12px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  min-height: 26px;
  line-height: 1;
  font-size: var(--fontsize-14);
  border-radius: 1.4em;;
}

.card__icon--new {
  color: var(--white-color);
  background: var(--red-color);
}

.related {
  .card {
    margin-top: 32px;
  }
  @media screen and (max-width: 767px) {
    margin-top: 26px;
  }
}

.card__group {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 32px;
  border: 1px solid var(--lightgray-bordercolor);
  background-color: var(--white-color);
  .linklist {
    list-style: none;
    a {
      &::before {
        width: 16px;
      }
      &::after {
        width: 8px;
      }
    }
  }
}

.card__group__title {
  display: flex;
  flex-direction: column;
  gap: 12px 0;
  position: relative;
  margin-top: 0;
  color: var(--primary-color);
  font-size: var(--fontsize-20);
  line-height: 1.4;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
  &::after {
    content: "";
    display: flex;
    width: 100%;
    height: 1px;
    background-color: var(--primary-color);
  }
  a {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 0;
    padding-right: 36px;
    width: 100%;
    &::before {
      content: "";
      display: inline-block;
      width: 26px;
      height: 2px;
      margin-left: 8px;
      background-color: var(--primary-color);
      transform: translateY(-50%);
      position: absolute;
      right: 0;
    }
    &::after {
      position: absolute;
      right: 0;
    }
  }
}

.book-introduction {
  @media screen and (max-width: 767px) {
    &.--column3 {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media screen and (max-width: 414px) {
    &.--column3 {
      grid-template-columns: 1fr;
    }
  }
  .card__image {
    display: flex;
    align-items: center;
    padding: 16px;
    aspect-ratio: 3 / 2;
    text-align: center;
    background-color: var(--lightgray-bgcolor);
    img {
      margin: 0 auto;
      max-width: 100%;
      width: auto;
      height: auto;
      max-height: 100%;
    }
  }
}

.nav-anchor-link {
  max-width: calc(var(--max-width) + (var(--side-padding) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding);
  ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px 32px;
    margin-top: 0;
    padding-left: 0;
    color: var(--base-textcolor);
    list-style: none;
    @media screen and (max-width: 767px) {
      flex-direction: column;
      font-size: var(--fontsize-14);
    }
    a {
      position: relative;
      padding-right: 24px;
      transition: opacity .3s ease-in-out;
      &::after {
        content: "";
        position: absolute;
        top: 45%;
        right: 0;
        display: inline-block;
        width: 16px;
        height: 8px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_anchor-link.svg) no-repeat center center;
      }
      @media (hover: hover) {
        &:hover {
          opacity: .5;
        }
      }
    }
  }
  &.nav-anchor-link-center {
    ul {
      display: inline-block;
      justify-content: center;
      flex-direction: row;
      width: 100%;

    }
  }
  &.nav-anchor-link--sp-center {
    ul {
      @media screen and (max-width: 767px) {
        justify-content: center;
        flex-direction: row;
      }
    }
  }
}

.js-sticky-nav-placeholder {
  width: 100%;
  display: none;
}

.js-sticky-nav {
  position: static;
  top: var(--height-header-scrolled);
  transition: top 0.4s ease-in-out;
  max-width: calc(var(--max-width) + (var(--side-padding) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0;
  will-change: transform;
  background-color: var(--white-color);
  @media screen and (max-width: 1129px) {
    top: 0;
  }
  &.is-nav-sticky {
    position: fixed;
    top: var(--height-header-scrolled);
    transition: top .4s ease-in-out;
    max-width: none;
    width: 100%;
    height: 47px;
    background: var(--white-color);
    border-top: 1px solid var(--lightgray-bordercolor);
    box-shadow: 0 4px 10px 0 rgb(0 0 0 / .16);
    z-index: 1000;
    @media screen and (max-width: 1129px) {
      top: 0;
    }
  }
  + .section {
    margin-top: 84px;
    @media screen and (max-width: 1129px) {
      margin-top: 64px;
    }
  }
}

.js-sticky-nav__slider {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 20px 32px;
  height: 47px;
  margin-top: 0;
  padding: 0 var(--side-padding);
  color: var(--base-textcolor);
  list-style: none;
  overflow: hidden;
  .is-nav-default & {
    @media screen and (max-width: 767px) {
      display: flex!important;
      gap: 20px 0;
      font-size: var(--fontsize-14);
      height: auto!important;
    }
    .slick-track {
      @media screen and (max-width: 767px) {
        width: auto !important;
      }
    }
    .slick-slide {
      @media screen and (max-width: 767px) {
        float: none !important;
        width: 100%!important;
        &:not(:last-child) {
          margin-bottom: 20px!important;
        }
      }
    }
    .slick-arrow {
      @media screen and (max-width: 767px) {
        display: none !important;
      }
    }
  }
  &.slick-initialized {
    place-content: center;
    justify-content: flex-start;
    li {
      margin-right: 32px;
      &:last-child {
        padding-right: 32px;
      }
    }
  }
  a {
    position: relative;
    padding-right: 24px;
    white-space: nowrap;
    transition: opacity .3s ease-in-out;
    &::after {
      content: "";
      position: absolute;
      top: 45%;
      right: 0;
      display: inline-block;
      width: 16px;
      height: 8px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_anchor-link.svg) no-repeat center center;
    }
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
  }
}

.js-sticky-nav__slider__arrow--prev ,
.js-sticky-nav__slider__arrow--next {
  position: absolute;
  top: 0;
  width: 60px;
  height: 45px;
  background: var(--white-color);
  z-index: 1;
  &.slick-disabled {
    display: none!important;
  }
  button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: var(--white-color);
    &::before {
      content: "";
      position: absolute;
      top: 4px;
      width: 1px;
      height: 38px;
      background-color: #ccc;
      box-shadow: 0 4px 10px 0 rgb(0 0 0 / .16);
    }
    img {
      width: 20px;
      height: 20px;
    }
    @media (hover: hover) {
      &:hover {
        opacity: .5;
        cursor: pointer;
      }
    }
  }
}

.js-sticky-nav__slider__arrow--prev {
  left: 0;
 button {
   &::before {
     right: 0;
   }
 }
}

.js-sticky-nav__slider__arrow--next {
  right: 0;
  button {
    &::before {
      left: 0;
    }
  }
}

.nav-anchor-link--up {
  margin-top: 44px;
  @media screen and (max-width: 767px) {
    margin-top: 32px;
  }
  ul {
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-16);
      }
    a {
      &::after {
        top: 35%;
        transform: rotate(180deg);
      }
    }
  }
}

.nav-anchor-link--right {
  ul {
    justify-content: flex-end;
    @media screen and (max-width: 767px) {
      flex-direction: row;
    }
  }
}

.tab-links {
  display: grid;
  gap: 4px;
  padding-bottom: 14px;
  grid-template-rows: 1fr;
  &.--column3 {
    grid-template-columns: repeat(3, 1fr);
  }
  &.--column4 {
    grid-template-columns: repeat(4, 1fr);
  }

  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 5px;
    &.--column3,
    &.--column4 {
      grid-template-columns: repeat(2, 1fr);
    }
  }

}

.tab-links__item {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.tab-links__item:has(.tab-links__title) {
  padding: 18px 24px;
}

.tab-links__title,
.tab-links__link {
  text-align: center;
  text-decoration: none;
  color: var(--primary-color);
  font-size: var(--fontsize-16);
  font-weight: 700;
}

.tab-links__title {
  color: var(--white-color);
}

.tab-links__title,
.tab-links__link {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab-links__link {
  margin: 0;
  padding: 18px 24px;
  width: 100%;
  background-color: var(--lightblue2-bgcolor);
}

p.tab-links__link {
  color: var(--gray-color);
  background-color: var(--lightgray-bordercolor);
}

a.tab-links__link {
  transition: background-color .1s ease-in-out;
  @media (hover: hover) {
    &:hover {
      background-color: rgba(225,236,249,.5);
    }
  }
}

.tab-links__item.is-active {
  background-color: var(--primary-color);
  &::after {
    content: "";
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid var(--primary-color);
  }
  @media screen and (max-width: 767px) {
    &::after {
      bottom: -12px;
      border-left: 12px solid transparent;
      border-right: 12px solid transparent;
      border-top: 12px solid var(--primary-color);
    }
  }
}

.box {
  padding: 44px;
  @media screen and (max-width: 767px) {
    padding: 32px 24px;
  }
}

.box--bg-pt1 {
  background-color: var(--lightgray-bgcolor);
}

.box--bg-pt2 {
  background-color: var(--lightblue-bgcolor);
}

.media {
  max-width: var(--max-width);
  width: 100%;
  iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
  }
  &.modal__button {
    position: relative;
    transition: opacity .3s ease-in-out;
    &::before {
      content: "";
      display: block;
      position: absolute;
      right: 0;
      bottom: 0;
      width: 50px;
      height: 50px;
      background: none;
      background-color: var(--primary-color);
      transform: none;
    }
    &::after {
      content: "";
      display: block;
      position: absolute;
      right: 15px;
      bottom: 14px;
      width: 18px;
      height: 19px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_modal.svg) no-repeat center center;
      transform: none;
    }
    img {
      transition: transform .3s ease-in-out;
    }
    &:hover {
      opacity: .5;
    }
  }
}

.media__caption {
  margin-top: 12px;
  font-size: var(--fontsize-12);
  .modal & {
    font-size: var(--fontsize-16);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.media--border {
  img {
    border: 1px solid var(--lightgray-bordercolor);
  }
}

.text + .media {
  margin: 60px auto 0;
  @media screen and (max-width: 767px) {
    margin: 28px auto 0;
  }
}

[class^="list-"] {
  a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease-in-out;
    &[target="_blank"] {
      &::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 16px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
        transform: translateX(-50%);
      }
    }
    &[href$=".pdf"] {
      &::after {
        content: "";
        display: inline-block;
        width: 16px;
        height: 20px;
        margin-left: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) no-repeat center center;
        transform: translateY(22%);
      }
    }
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
      }
    }
  }
}

.list-disc {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 20px;
  list-style: none;
  > li {
    position: relative;
    padding-left: 1.2em;
    &::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: .5em;
      left: 0;
      width: 8px;
      height: 8px;
      background: var(--primary-color);
      border-radius: 50%;
    }
  }
}

.list-number {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 20px;
  padding-left: 0;
  counter-reset: number;
  list-style: none;
  > li {
    position: relative;
    padding-left: 2em;
    &::before {
      content: counter(number) ".";
      display: inline-block;
      counter-increment: number;
      position: absolute;
      top: 0;
      left: 0;
      width: 1.4em;
      text-align: left;
      background: none;
    }
  }
}

.list-check {
  display: flex;
  flex-direction: column;
  gap: 16px 0;
  margin-top: 20px;
  list-style: none;
  > li {
    position: relative;
    padding-left: 28px;
    &::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 20px;
      height: 20px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_check.svg) no-repeat center center;
      transform: translateY(-50%);
    }
  }
}

.client-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 44px 30px;
  flex-wrap: wrap;
  margin-top: 48px;
  @media screen and (max-width: 767px) {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 28px;
  }
  &:not(:has(.client-list__body)) {
    gap: 32px 30px;
    @media screen and (max-width: 767px) {
      gap: 32px 20px;
    }
    .client-list__item {
      grid-row: initial;
    }
    .client-list__image {
      aspect-ratio: 248 / 110;
      img {
        width: 60%;
        @media screen and (max-width: 767px) {
          width: 70%;
        }
      }
    }
  }
}

.client-list__item {
  position: relative;
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  gap: 20px 0;
  width: 100%;
  @media screen and (max-width: 767px) {
    display: flex;
    flex-direction: column;
  }
  .linklist {
    order: 3;
    margin-top: 0;
    padding-top: 20px;
    border-top: 1px solid #d9d9d9;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.client-list__image {
  display: flex;
  align-items: center;
  justify-content: center;
  order: 1;
  margin: 0;
  padding: 0;
  width: 100%;
  aspect-ratio: 2 / 1;
  background-color: var(--white-color);
  img {
    width: 50%;
  }
}

.client-list__body {
  order: 2;
  gap: 20px 0;
  padding: 0;
}

.client-list__title {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.client-list__details {
  margin: 8px 0 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.researcher-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px 28px;
  flex-wrap: wrap;
  margin-top: 48px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 20px 0;
    margin-top: 28px;
  }
}

.researcher-list__item {
  position: relative;
  display: grid;
  grid-row: span 2;
  grid-template-rows: subgrid;
  gap: 32px 0;
  width: 100%;
  padding: 24px;
  border: 1px solid var(--primary-color);
}

.researcher-list__person {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px 24px;
  padding: 0;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
  &:has(.researcher-list__person__image img) {
    grid-template-columns: 1fr 2fr;
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
      gap: 24px 0;
    }
  }
}

.researcher-list__person__image {
  order: 1;
  justify-self: center;
  @media screen and (max-width: 767px) {
    width: 46%;
  }
}

.researcher-list__person__body {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  order: 2;
  padding: 0;
}

.person-name {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.person-bio {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--base-textcolor);
  list-style: none;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity 0.3s ease-in-out;
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
      }
    }
  }
}

.person-profile {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  .text {
    margin-top: 0;
  }
}

.researcher-list__link {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px 24px;
  list-style: none;
  a {
    position: relative;
    display: inline-block;
    margin-top: 0;
    color: var(--primary-color);
    text-decoration: underline;
    transition: opacity .3s ease-in-out;
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
  }
  .researcher-list__link--twitter {
    width: 24px;
    height: 24px;
  }
  .researcher-list__link--linkedin {
    width: 28px;
    height: 24px;
  }
  .researcher-list__link--facebook {
    width: 24px;
    height: 24px;
  }
}

.researcher-list__title {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.researcher-list__meta {
  margin: 8px 0 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.researcher-caseBox {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 24px;
  background-color: var(--lightblue-bgcolor);
  .linklist {
    margin-top: auto;
    padding: 20px 0 0;
    border-top: 1px solid var(--primary-color);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
  .list-disc {
    margin-top: 0;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.researcher-caseBox__title {
  margin-top: 0;
  font-size: var(--fontsize-16);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.table {
    width: 100%;
    border-spacing: 0;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    tr {
        @media screen and (max-width: 767px) {
            display: flex;
            flex-direction: column;
        }
    }
    th {
        width: 33%;
        padding: 16px;
        vertical-align: top;
        text-align: left;
        font-size: var(--fontsize-16);
        font-weight: 700;
        color: var(--base-textcolor);
        background-color: #f5f5f5;
        border-left: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        @media screen and (max-width: 767px) {
            width: 100%;
        }
    }
    td {
        display: flex;
        flex-direction: column;
        gap: 20px 0;
        width: 100%;
        padding: 16px;
        font-size: var(--fontsize-16);
        font-weight: 400;
        background-color: var(--white-color);
        border-left: 1px solid #ccc;
        border-bottom: 1px solid #ccc;
        .list-disc ,
        .text ,
        .link-button ,
        .link-button__wrapper {
            margin-top: 0;
        }
    }
}

.modal__button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
  border: none;
  padding: 0;
  background-color: transparent;
}

.modal__dialog {
  position: fixed;
  border: none;
  z-index: 3;
  &::backdrop {
    background: rgb(0 0 0 / .8);
  }
}

.dialog__close {
  border: none;
  background: transparent;
  border-radius: 0;
  box-sizing: border-box;
  cursor: pointer;
  padding: 0;
  display: block;
  width: 24px;
  height: 24px;
  background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_close.svg) no-repeat 50% 50% / 24px 24px;
  @media (hover: hover) {
    &:hover {
      opacity: .5;
    }
  }
  span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.modal__dialog {
  align-content: center;
  margin: auto;
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  padding: 0;
  scrollbar-gutter: stable;
  overflow: auto;
  background: none;
  .dialog {
    display: flex;
    justify-content: center;
    position: relative;
    max-width: 60vw;
    max-height: 60vh;
    margin: 0 auto;
    padding: 0;
    @media screen and (max-width: 767px) {
      max-width: 80vw;
      max-height: 80vh;
    }
    &::after {
      content: '';
      position: absolute;
      display: block;
      width: 106%;
      height: calc(106% + 72px);
      background-color: #fff;
      transform: translate(0, -72px);
      z-index: -1;
    }
  }
  .dialog__close {
    position: absolute;
    top: -48px;
    right: 0;
  }
}

.dialog__image {
  display: flex;
  place-content: center;
  width: 100%;
}

.modal--iframe {
  .dialog {
    aspect-ratio: 560 / 315;
  }
}

.dialog__iframe {
  width: 100%;
  height: 100%;
  iframe {
    display: block;
    max-width: 100%;
    width: 100%!important;
    height: 100%!important;;
    border: none;
  }
}

.share-button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 44px;
  margin-top: 100px;
  padding: 40px 0;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  dd {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .share-button {
    flex-direction: column;
    align-items: start;
    gap: 26px;
    margin-top: 84px;
    padding: 32px 0;
  }
}

.share-button__heading {
  font-size: var(--fontsize-28);
  line-height: 1.4;
  font-weight: 700;
}

@media screen and (max-width: 767px) {
  .share-button__heading {
    font-size: var(--fontsize-24);
  }
}

.share-button__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
  li {
    position: relative;
    display: inline-block;
    a {
      display: block;
      line-height: 1;
      @media (hover: hover) {
        &:hover {
          opacity: 0.5;
        }
      }
    }
    img {
      width: auto;
      height: auto;
    }
  }
}

.share-button__list--twitter {
  width: 30px;
  height: 31px;
}

.share-button__list--linkedin {
  width: 36px;
  height: 31px;
}

.share-button__list--facebook {
  width: 34px;
  height: 34px;
}

.share-button__list--mail {
  width: 38px;
  height: 31px;
}

.share-button__list--copy {
  width: 38px;
  height: 18px;
}

.tooltip {
  display: none;
  padding: 10px;
  position: absolute;
  min-width: 118px;
  border-radius: 3px;
  background-color: var(--primary-color);
  box-sizing: border-box;
  z-index: 1;
  cursor: default;
  font-size: var(--fontsize-14);
  line-height: 1.4;
  color: var(--white-color);
  text-align: center;
  &::before {
    content: "";
    position: absolute;
    right: 0;
    bottom: -9px;
    left: 0;
    width: 0;
    height: 0;
    margin: auto;
    border-style: solid;
    border-color: var(--primary-color) transparent transparent transparent;
    border-width: 15px 11px 0 11px;
  }
  &.is-active {
    display: block;
  }
}

.section:has(.slider) + .section {
  .share-button{
    margin-top: 140px;
    @media screen and (max-width: 767px) {
      margin-top: 100px;
    }
  }
}

.sns {
  &.section {
    margin-top: 64px;
    @media screen and (max-width: 767px) {
      margin-top: 44px;
    }
  }
}

.section + .sns {
  margin-top: 100px;
  @media screen and (max-width: 767px) {
    margin-top: 84px;
  }
}

.sns__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 44px;
  margin-top: 32px;
  @media screen and (max-width: 767px) {
    gap: 32px;
  }
  li {
    list-style: none;
    a {
      @media (hover: hover) {
        &:hover {
          opacity: 0.5;
        }
      }
    }
  }
}

.cta {
  padding: 96px 0;
  background: url(/wp-content/themes/matlantis_theme2/assets/img/bg_cta.png) 50% 0 no-repeat;
  background-size: cover;
  @media screen and (max-width: 767px) {
    padding: 64px 0;
  }
  &.section {
    margin-top: 140px;
    @media screen and (max-width: 767px) {
      margin-top: 104px;
    }
  }
  &:not(:has(.portable-guide)) {
    margin-top: 100px;
    padding: 128px 0 96px;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
      padding: 96px 0 64px;
    }
  }
  .title-lv2--center {
    padding-top: 0;
    color: var(--white-color);
    &::after {
      background-color: var(--white-color);
    }
  }
  .portable-guide {
    margin-top: 48px;
    @media screen and (max-width: 767px) {
      margin-top: 28px;
    }
  }
}

.cta-button-block {
  display: grid;
  place-content: center;
  @media screen and (max-width: 767px) {
    place-content: stretch;
  }
  &.--column2 {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
      gap: 32px;
    }
    &:has(.cta-button__sub) {
      @media screen and (max-width: 767px) {
        gap: 76px;
      }
    }
    .cta-button {
      min-width: auto;
    }
  }
}

.cta-button {
  position: relative;
  padding: 24px 65px 24px 24px;
  min-width: 525px;
  background-color: var(--cta-button-color);
  border-radius: 40px;
  text-align: center;
  color: var(--primary-color);
  font-size: var(--fontsize-20);
  font-weight: 700;
  transition: opacity .3s ease-in-out;
  @media screen and (max-width: 767px) {
    padding: 24px 58px 24px 24px;
    min-width: auto;
    width: 100%;
    font-size: var(--fontsize-16);
  }
  &::before, &::after {
    content: "";
    position: absolute;
    top: calc(50% + 4px);
    right: 24px;
    height: 2px;
    background-color: var(--primary-color);
    transform: translateY(-50%);
  }
  &::before {
    width: 33px;
    @media screen and (max-width: 767px) {
      width: 26px;
    }
  }
  &::after {
    width: 13px;
    transform: translateY(-50%) rotate(40deg);
    transform-origin: calc(100% - 1px) 50%;
  }
  @media (hover: hover) {
    &:hover {
      opacity: .8;
    }
  }
}

.cta-button__sub {
  position: absolute;
  bottom: calc(100% - 10px);
  left: 50%;
  display: inline-block;
  width: 80%;
  padding: 8px 20px;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  border-radius: 4px;
  transform: translateX(-50%);
  font-size: var(--fontsize-16);
  font-weight: 700;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 99%;
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
  &::before {
    background: var(--white-color);
    width: 16px;
    height: calc(tan(60deg) * 16px / 2);
    z-index: 1;
  }
  &::after {
    background: var(--primary-color);
    width: 18px;
    height: calc(tan(60deg) * 18px / 2);
  }
}

.cta__title {
  margin: 0;
  text-align: center;
  font-size: var(--fontsize-28);
  font-weight: 700;
  line-height: 1.4;
  color: var(--white-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-24);
  }
  + .cta-button-block {
    margin-top: 44px;
    &:has(.cta-button__sub) {
      margin-top: 104px;
      @media screen and (max-width: 767px) {
        margin-top: 74px;
      }
    }
  }
}

.cta__text {
  margin-top: 32px;
  text-align: center;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-color);
  @media screen and (max-width: 767px) {
    margin-top: 28px;
    font-size: var(--fontsize-14);
  }
  + .cta-button-block {
    margin-top: 64px;
    @media screen and (max-width: 767px) {
      margin-top: 44px;
    }
  }
}

.portable-guide {
  display: grid;
  grid-template-columns: 0.85fr 1.09fr;
  margin-top: 100px;
  background-color: #E1ECF9;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    margin-top: 84px;
  }
  + .cta-button-block {
    margin-top: 116px;
    @media screen and (max-width: 767px) {
      margin-top: 82px;
    }
  }
}

.portable-guide__body {
  padding: 67px 40px 66px;
  @media screen and (max-width: 767px) {
    padding: 32px 24px;
    order: 2;
  }
}

.portable-guide__titleArea {
  display: flex;
  gap: 8px;
  flex-direction: column-reverse;
}

.portable-guide__title {
  font-size: var(--fontsize-28);
  line-height: 1.4;
  br {
    display: none;
    @media screen and (max-width: 767px) {
      display: block;
    }
  }
}

.portable-guide__subTitle {
  padding-left: 8px;
  border-left: 2px solid var(--primary-color);
  font-size: var(--fontsize-16);
  font-weight: 500;
  line-height: 1.4;
  color: var(--primary-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.portable-guide__media {
  overflow: hidden;
  @media screen and (max-width: 767px) {
    order: 1;
  }
  picture {
    width: 100%;
    height: 100%;
  }
  img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.pagenation {
  margin-top: 64px;
  padding: 0;
  ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 12px;
    list-style: none;
    container-type: inline-size;
  }
  a ,
  span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    font-size: var(--fontsize-16);
    color: var(--primary-color);
    background-color: var(--white-color);
    border-radius: 50%;
    text-decoration: none;
    line-height: 1;
    &.is-current {
      color: var(--white-color);
      background: var(--primary-color);
      border: 1px solid var(--primary-color);
    }
  }
  li {
    @media (hover: hover) {
      &:hover {
        opacity: .5;
        cursor: pointer;
      }
    }
    + .pagenation__next {
      margin-left: 20px;
      @media screen and (max-width: 767px) {
        margin-left: clamp(2cqi, 2cqi, 20px);
      }
    }
  }
}

.pagenation__prevall ,
.pagenation__prev ,
.pagenation__next ,
.pagenation__nextall {
  display: flex;
  flex-shrink: 0;
  height: 100%;
  &.is-off {
    opacity: .5;
    @media (hover: hover) {
      &:hover {
        cursor: default;
      }
    }
  }
  a ,
  span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }
}

.pagenation__prevall ,
.pagenation__nextall {
  width: 17px;
  height: 19px;
  @media screen and (max-width: 767px) {
    display: none;
  }
  &::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
    transform: translateY(15%);
  }
}

.pagenation__prev ,
.pagenation__next {
  width: 29px;
  height: 10px;
  &::after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 100%;
  }
}

.pagenation__prevall {
  &::after {
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_pagenation_preall.svg) no-repeat center center;
    background-size: contain;
  }
  + .pagenation__prev {
    @media screen and (min-width: 768px) {
      margin-left: 20px;
    }
  }
}

.pagenation__prev {
  &::after {
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_pagenation_pre.svg) no-repeat center center;
    background-size: contain;
  }
  + li {
    margin-left: 20px;
    @media screen and (max-width: 767px) {
      margin-left: clamp(2cqi, 2cqi, 20px);
    }
  }
}

.pagenation__next {
  &::after {
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_pagenation_next.svg) no-repeat center center;
    background-size: contain;
  }
  + .pagenation__nextall {
    @media screen and (min-width: 768px) {
      margin-left: 20px;
    }
  }
}

.pagenation__nextall {
  &::after {
    background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_pagenation_nextall.svg) no-repeat center center;
    background-size: contain;
  }
}

/* Slider */

.slick-slider
{
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
      -moz-user-select: none;
          user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list
{
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus
{
  outline: none;
}

.slick-list.dragging
{
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
  transform: translate3d(0, 0, 0);
}

.slick-track
{
  position: relative;
  top: 0;
  left: 0;

  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after
{
  display: table;
  content: '';
}

.slick-track:after
{
  clear: both;
}

.slick-loading .slick-track
{
  visibility: hidden;
}

.slick-slide
{
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir='rtl'] .slick-slide
{
  float: right;
}

.slick-slide img
{
  display: block;
}

.slick-slide.slick-loading img
{
  display: none;
}

.slick-slide.dragging img
{
  pointer-events: none;
}

.slick-initialized .slick-slide
{
  display: block;
}

.slick-loading .slick-slide
{
  visibility: hidden;
}

.slick-vertical .slick-slide
{
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/* Slider */

.slick-loading .slick-list
{
  background: var(--white-color) url('../img/slick/ajax-loader.gif') center center no-repeat;
}

/* Icons */

@font-face
{
  font-family: 'slick';
  font-weight: 400;
  font-style: normal;
  src: url('./fonts/slick.eot');
  src: url('./fonts/slick.eot?#iefix') format('embedded-opentype'), url('./fonts/slick.woff') format('woff'), url('./fonts/slick.ttf') format('truetype'), url('./fonts/slick.svg#slick') format('svg');
}

/* Arrows */

.slick-prev,
.slick-next
{
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
  opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev
{
  left: -25px;
}

[dir='rtl'] .slick-prev
{
  right: -25px;
  left: auto;
}

.slick-prev:before
{
  content: '←';
}

[dir='rtl'] .slick-prev:before
{
  content: '→';
}

.slick-next
{
  right: -25px;
}

[dir='rtl'] .slick-next
{
  right: auto;
  left: -25px;
}

.slick-next:before
{
  content: '→';
}

[dir='rtl'] .slick-next:before
{
  content: '←';
}

/* Dots */

.slick-dotted.slick-slider
{
  margin-bottom: 30px;
}

.slick-dots
{
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li
{
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button
{
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus
{
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
  opacity: 1;
}

.slick-dots li button:before
{
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before
{
  opacity: .75;
  color: black;
}

.slider {
  overflow: hidden;
  opacity: 0;
  transition: opacity .1s linear;
  &.slick-initialized {
    opacity: 1;
  }
  .card__link {
    display: flex;
    margin: 0 15px;
  }
  .slick-track {
    display: flex;
  }
  .slick-slide {
    height: auto !important;
  }
  &.slick-dotted {
    &.slick-slider {
      margin-bottom: 0;
    }
  }
  .slick-dots {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    padding: 0;
    list-style: none;
    bottom: 0;
    li {
      margin: auto 0;
      cursor: pointer;
      height: 14px;
      width: 14px;
      border: 1px solid var(--primary-color);
      border-radius: 50%;
      background-color: var(--white-color);
      &.slick-active {
        width: 20px;
        height: 20px;
        background-color: var(--primary-color);
      }
      button {
          display: block;
          width: 14px;
          height: 14px;
          border: 0;
          font-size: 0;
          line-height: 0;
          padding: 0;
          color: transparent;
          outline: none;
          &::before {
              content: none;
          }
      }
    }
  }
  .slide-arrow {
    position: absolute;
    top: -40px;
    bottom: 0;
    margin: auto;
    width: 66px;
    height: 66px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 1;
    transition: opacity .1s ease-in-out;
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
      }
    }
  }
  .slide-arrow.prev-arrow {
    left: 8%;
    transform: translateX(-50%);
    @media screen and (min-width: 1440px) {
      left: 18%;
    }
  }
  .slide-arrow.next-arrow {
    right: 8%;
    transform: translateX(50%);
    @media screen and (min-width: 1440px) {
      right: 18%;
    }
  }
  .slide-arrow button {
    width: 100%;
    height: 100%;
    padding: 0;
    border-radius: 50%;
    border: none;
  }
}

.search-filter {
  li {
    list-style: none;
  }
  .text-categories {
    margin: 0;
    padding: 0;
  }
  .text-category {
    display: inline-block;
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
      }
    }
  }
  &.open {
    .search-filter__button {
      &::after {
        rotate: 0deg;
      }
    }
  }
}

.search-site-search {
  margin-bottom: 32px;
  .inputArea__button {
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.search-site-search__head {
  margin-bottom: 24px;
}

.search-filter__contents {
  &.search-filter__contents--sp-open {
    .search-filter__line {
      display: none;
    }
    + .link-button-grid {
      display: none;
    }
  }
}

@media screen and (max-width: 767px) {
  .search-filter__button {
    position: relative;
    display: inline-block;
    max-width: 342px;
    width: 100%;
    margin-top: 0;
    padding: 12px calc(24px + 26px + 8px);
    background-color: var(--white-color);
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 100vh;
    font-size: var(--fontsize-14);
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 50%;
      right: 24px;
      width: 14px;
      height: 2px;
      background-color: var(--primary-color);
      translate: -50% -50%;
    }
    &::after {
      rotate: 90deg;
    }
  }
}

.search-filter__head {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
}

.search-filter__reset {
  padding-left: 28px;
  background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_close_circle.svg) no-repeat 0 50% / 20px 20px;
  border-style: none;
  cursor: pointer;
  span {
    font-size: var(--fontsize-16);
    color: var(--primary-color);
  }
  @media (hover: hover) {
    &:hover {
      opacity: 0.5;
    }
  }
}

.search-filter__group {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px 30px;
  margin-top: 24px;
}

@media screen and (max-width: 767px) {
  .search-filter__group {
    grid-template-columns: 1fr;
  }
}

.search-filter__row {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: 1 / -1;
}

@media screen and (max-width: 767px) {
  .search-filter__row {
    gap: 8px;
  }
}

.search-filter__input {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  &:checked {
    + label {
      color: var(--white-color);
      background-color: var(--primary-color);
    }
  }
}

.search-filter__title {
  margin-top: 0;
  font-size: var(--fontsize-16);
}

.search-filter__line {
  display: none;
}

@media screen and (max-width: 767px) {
  .search-filter__line {
    display: block;
    margin: 32px 0;
    background-color: #ccc;
    border: none;
    height: 1px;
  }
}

.js-scoll-fadein {
  opacity: 0;
  &.is-visible {
    opacity: 1;
  }
}

.js-scoll-fadein--from-bottom {
  transform: translateY(50px);
  transition: opacity 1s ease-in-out .3s, transform 1s ease-in-out .3s;
  &.is-visible {
    transform: translateY(0);
  }
}

.js-scoll-fadein--from-left {
  clip-path: inset(0 100% 0 0);
  transition: clip-path 1s ease-out .3s, opacity 1s ease-out .3s;
  &.is-visible {
    clip-path: inset(0 0 0 0);
  }
}

.faq-accordion {
  border-bottom: 1px solid var(--lightgray-bordercolor);
  .title-lv2--small + & {
    margin-top: 20px;
  }
}

.faq-accordion__item {
  border-bottom: none;
}

.faq-accordion__header {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 20px;
  width: 100%;
  padding: 20px 0 20px 8px;
  text-align: left;
  border-top: 1px solid var(--lightgray-bordercolor);
  @media screen and (max-width: 767px) {
    gap: 0 8px;
  }
  &::-webkit-details-marker {
    display: none;
  }
}

.faq-accordion__title {
  position: relative;
  display: grid;
  grid-template-columns: 20px auto;
  gap: 0 8px;
  font-weight: 700;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  line-height: 1.6;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  .faq-accordion__item.is-opened & {
    color: var(--primary-color);
  }
  &::before {
    content: "Q.";
    display: flex;
    width: 1em;
    height: 1em;
  }
}

.faq-accordion__icon {
  flex: 0 0 auto;
  display: inline-block;
  width: 36px;
  height: 36px;
  position: relative;
  &::after,
  &::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 2px;
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    background: var(--primary-color);
  }
  &::after {
    rotate: 90deg;
  }
  .faq-accordion__item.is-opened & {
    &::after {
      rotate: 0deg;
    }
  }
}

.faq-accordion__panel {
  overflow: hidden;
  p {
    padding: 0;
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    line-height: 1.6;
    &:first-of-type {
      margin-top: 0;
    }
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
  .linklist ,
  .link {
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.faq-accordion__panel__inner {
  padding: 0 36px 44px 32px;
  @media screen and (max-width: 767px) {
    padding: 4px 36px 32px 32px;
  }
}

.faq-section {
    margin-top: 44px;
    @media screen and (max-width: 767px) {
        margin-top: 32px;
    }
}

.hero--top {
  background: url('/wp-content/themes/matlantis_theme2/assets/img/top/bg_top_hero.png') no-repeat center bottom;
  background-size: cover;
  height: 620px;
  @media screen and (max-width: 767px) {
    background: url('/wp-content/themes/matlantis_theme2/assets/img/top/bg_top_hero_sp.png') no-repeat left bottom;
    background-size: cover;
    height: 440px;
  }
  .title-lv1--top {
    padding-top: 168px;
    font-size: var(--fontsize-44);
    @media screen and (max-width: 767px) {
      padding-top: 110px;
      font-size: var(--fontsize-32);
    }
  }
}

.section--top {
  .section__inner {
    max-width: calc(1238px + (var(--side-padding) * 2));
  }
}

@media screen and (max-width: 767px) {
  .title-lv2--top {
    .title-caption {
      font-size: var(--fontsize-16);
    }
    .title-lv2 {
      font-size: var(--fontsize-32);
    }
  }
}

.title-lv2__group--top {
  text-align: center;
  .title-caption {
    position: relative;
    display: inline-block;
    padding: 0 24px;
    color: var(--primary-color);
    font-size: var(--fontsize-28);
    text-align: center;
    line-height: 1;
    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 1px;
      height: 35px;
      border: 1px solid var(--primary-color);
    }
    &::before {
      left: 0;
      transform: rotate(-12deg) translate3d(0, 0, 0);
    }
    &::after {
      right: 0;
      transform: rotate(12deg) translate3d(0, 0, 0);
    }
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-24);
      &::before,
      &::after {
        height: 30px;
      }
    }
  }
  .title-lv2 {
    padding-top: 12px;
    color: var(--primary-color);
    font-size: var(--fontsize-40);
    text-align: center;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-24);
    }
  }
}

.card--top {
  .card__inner {
    border: 1px solid var(--primary-color);
  }
  .card__item {
    padding: 32px;
    flex-grow: 1;
  }
  .title-lv3 {
    color: var(--base-textcolor);
    margin-bottom: 32px;
  }
  .link-button--top {
    margin-top: auto;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    &::before,
    &::after {
      background-color: var(--white-color);
    }
    @media (hover: hover) {
      &:hover {
        background-color: var(--white-color);
        color: var(--primary-color);
        border: 1px solid var(--primary-color);
        &::before,
        &::after {
          background-color: var(--primary-color);
        }
      }
    }
  }
}

.client-log--top {
  margin: 48px auto 44px;
  max-width: var(--max-width);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 44px;
  list-style: none;
  @media screen and (max-width: 767px) {
    margin: 26px auto 0;
    gap: 20px;
  }
  .client-log__item {
    flex: 0 0 calc((100% - (44px * 6)) / 7);
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    @media screen and (max-width: 767px) {
      flex: 0 0 calc((100% - (20px * 3)) / 4);
    }
  }
  & + .linklist {
    align-items: center;
  }
}

.new-posts--top {
  &.section.popular-content {
    padding: 100px 0 0;
    @media screen and (max-width: 767px) {
      padding: 84px 0 0;
    }
  }
  .section__inner {
    .title-lv3 {
      padding-top: 64px;
    }
  }
  .card__link {
    height: 514px !important;
    &::before {
      z-index: 10;
    }
    &::after {
      z-index: 2;
    }
    .card__item {
      flex: 1 1 auto;
      overflow: hidden;
      &::before, &::after {
        z-index: 3;
      }
    }
    .card__image {
      flex-shrink: 0;
      &::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 100%;
        height: 124px;
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, rgba(255, 255, 255, 0.52) 28.23%, #FFF 74.19%);
        z-index: 1;
      }
    }
  }
}

.category-search {
  .section__inner {
    .title-lv3 {
      padding-top: 100px;
      @media screen and (max-width: 767px) {
        padding-top: 64px;
      }
    }
  }
  .category-links {
    .category-block {
      padding: 32px;
      border: 1px solid var(--primary-color);
      @media screen and (max-width: 767px) {
        padding: 24px;
      }
    }
    dt {
      padding-bottom: 12px;
      border-bottom: 1px solid var(--primary-color);
      .link {
        font-size: var(--fontsize-20);
        font-weight: 700;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
      }
    }
  }
}

.category-links {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 30px;
  @media screen and (max-width: 767px) {
    margin-top: 26px;
    grid-template-columns: 1fr;
  }
  .category-block {
    background-color: var(--white-color);
  }
  .link {
    position: relative;
    padding-right: 32px;
    width: 100%;
    &::before, &::after {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      right: 0;
      background-color: var(--primary-color);
      transform: translateY(-50%);
    }
  }
  dt {
    .link {
      margin-top: 0;
      font-size: var(--fontsize-20);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-18);
      }
      &::after {
        width: 26px;
        height: 2px;
        margin-left: 8px;
      }
      &::before {
        margin-left: -12px;
        width: 13px;
        height: 2px;
        transform: translateY(-50%) rotate(40deg);
        transform-origin: calc(100% - 1px) 50%;
      }
    }

  }
  dd {
    margin: 0;
    .link {
      position: relative;
      width: 100%;
      &::after {
        width: 16px;
        height: 2px;
        margin-left: 8px;
      }
      &::before {
        margin-left: -8px;
        width: 8px;
        height: 2px;
        transform: translateY(-50%) rotate(40deg);
        transform-origin: calc(100% - 1px) 50%;
      }
    }
  }
}

.category-column {
  container-type: inline-size;
  margin-top: 100px;
  display: grid;
  grid-template-columns: calc(100% * 0.404) 1fr;
  gap: 40px;
  @media screen and (max-width: 1375px) {
    padding-left: var(--side-padding);
  }
  @media screen and (max-width: 767px) {
    margin-top: 84px;
    padding: 0;
    grid-template-columns: 1fr;
    gap: 32px;
    max-height: none;
  }

  & + .category-column {
    margin-top: 84px;

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

  .category-column__item {
    display: flex;
    align-items: center;
    padding-left: calc((100cqw - 1238px) / 2);
    @media screen and (max-width: 1375px) {
      padding-left: 0;
    }
    @media screen and (max-width: 767px) {
      padding: 0 var(--side-padding);
      width: 100%;
    }

    @media screen and (max-width: 767px) {
      width: 100%;
      order: 2;
    }
    .category-links {
      margin-top: 0;
      grid-template-columns: 1fr;
      width: 100%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
      dt {
        .link {
          margin-top: 0;
          font-size: var(--fontsize-40);
          font-weight: 700;
          @media screen and (max-width: 767px) {
            font-size: var(--fontsize-32);
          }
        }
      }
    }
    .linklist {
      margin-top: 44px;
      @media screen and (max-width: 767px) {
        margin-top: 32px;
      }
      li {
        padding-bottom: 16px;
        border-bottom: 1px solid var(--lightgray-bordercolor);
      }
    }
  }
  .category-column__image {
    display: flex;
    align-items: stretch;
    height: 513px;

    @media screen and (max-width: 767px) {
      aspect-ratio: 385 / 248;
      width: 100%;
      height: auto;
      order: 1;
    }
    img {
      width: 100%;
      height: 100%;
      -o-object-fit: cover;
         object-fit: cover;
    }
  }
}

.category-column-reverse {
  grid-template-columns: 1fr calc(100% * 0.404);
  @media screen and (max-width: 1375px) {
    padding-left: 0;
    padding-right: var(--side-padding);
  }
  @media screen and (max-width: 767px) {
    padding: 0;
    grid-template-columns: 1fr;
  }
  .category-column__item {
    padding-left: 0;
    padding-right: calc((100cqw - 1238px) / 2);
    order: 2;
    @media screen and (max-width: 767px) {
      padding: 0 var(--side-padding);
    }
  }
  .category-column__image {
    order: 1;
  }
}

.cta--top {
  &.section {
    margin-top: 100px;
    padding: 84px 0 100px;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
      padding: 64px 0;
    }
  }
  .section__inner {
    max-width: calc(var(--max-width) + (var(--side-padding) * 2));
    .title-lv2--small {
      padding-top: 0;
      color: var(--white-color);
    }
    .title-lv3 {
      padding-top: 0;
      color: var(--white-color);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-24);
      }
    }
    .portable-guide {
      margin-top: 44px;
      @media screen and (max-width: 767px) {
        margin-top: 32px;
      }
    }
  }
  .cta-button-block {
    margin-top: calc(32px + 60px);
    @media screen and (max-width: 767px) {
      margin-top: calc(28px + 50px);
    }
  }
}

.share-button--top {
  .share-button {
    padding: 0;
    justify-content: center;
    border: none;
  }
}

.section.featured-cases {
  padding: 96px 0;
  @media screen and (max-width: 767px) {
    padding: 48px 0;
  }
}

.section__inner:has(.title-lv2--center) + .featured-cases {
  margin-top: 48px;
  @media screen and (max-width: 767px) {
    margin-top: 28px;
  }
}

.search-freekeyword {
  &.section {
    margin-top: 24px;
    @media screen and (max-width: 767px) {
      margin-top: 12px;
    }
  }
}

.section.new-posts--case {
  margin-top: 100px;
  .title-lv2--small {
    padding-top: 0;
  }
  @media screen and (max-width: 767px) {
    margin-top: 84px;
  }
}

.popular-content {
  &.section {
    margin-top: 100px;
    padding: 64px 0;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
    }
  }
  .title-lv2 {
    padding-top: 0;
  }

}

.resource-library-content {
  .card__item {
    display: flex;
    flex-direction: column;
    img {
      order: -1;
      align-self: flex-start;
      margin-bottom: 12px;
      width: auto;
    }
  }
}

.featured-cases--event {
  padding: 64px 0;
  @media screen and (max-width: 767px) {
    padding: 48px 0;
  }
  .title-lv2,
  .title-lv2--center {
    padding-top: 0;
  }
  .card {
    @media screen and (max-width: 767px) {
      gap: 18px;
    }
  }
}

.card-sort--event {
  margin-top: 64px;
  align-items: center;
  justify-content: space-between;
  @media screen and (max-width: 767px) {
    align-items: flex-start;
    gap: 24px;
  }
  .text-cases-number {
    margin-top: 0;
  }
  .text-sort {
    margin-top: 0;
    gap: 8px;
    .text-sort__item{
      display: inline-block;
      line-height: 1;
      &:last-child {
        position: relative;
        padding-left: 9px;
        &::before {
          content: "";
          position: absolute;
          left: 0;
          top: 0;
          bottom: 0;
          width: 1px;
          background-color: var(--base-textcolor);
        }
      }
      &.is-current {
        color: var(--primary-color);
        font-weight: 700;
      }
    }
    .text-sort__link {
      color: var(--base-textcolor);
      @media (hover: hover) {
        &:hover {
          opacity: .5;
        }
      }
    }
  }
  + .card {
    margin-top: 24px;
  }
}

.newsletter--event {
    .newsletter {
      margin-top: 0;
      padding: 0;
    }
}

.section:has(.share-button) {
  & + .newsletter--event {
    margin-top: 100px;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
    }
  }
}

.newsletter--event + .section {
  .title-lv2--small {
    margin-top: 100px;
    padding-top: 0;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
    }
  }
}

.section__inner:has([class^="title-lv2"]) {
  + .search-freekeyword {
    &.section {
      margin-top: 48px;
      @media screen and (max-width: 767px) {
        margin-top: 26px;
      }
    }
  }
}

.section__inner:has(:only-child.text-note) {
  margin-top: 100px;
  @media screen and (max-width: 767px) {
    margin-top: 84px;
  }
}

.blog-author-link {
  display: inline-block;
  margin-right: 40px;
  transition: opacity .3s ease-in-out;
  &:last-of-type {
    margin-right: 0;
  }
  @media (hover: hover) {
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
  }
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.blog-author__img {
  order: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
}

.blog-author__text {
  order: 2;
  font-size: var(--fontsize-14);
  font-weight: 500;
}

.blog-tags {
  .local-navi & {
    margin-top: 32px;
    background: var(--white-color);
    @media screen and (max-width: 767px) {
      margin-top: 26px;
    }
  }
  li {
    list-style: none;
  }
  .text-categories {
    gap: 12px;
    margin: 0;
    padding: 0;
    &:nth-of-type(2) {
      margin-bottom: 32px;
    }
  }
  .text-category {
    display: inline-block;
    transition: opacity 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
    @media (hover: hover) {
      &:hover {
        opacity: 0.5;
        background-color: var(--primary-color);
        color: var(--white-color);
      }
    }
  }
}

.link-button-grid ,
.blog-tags__line {
  &.is-hidden {
    display: none;
  }
}

.blog-tags__line {
  display: block;
  margin: 32px 0;
  background-color: #ccc;
  border: none;
  height: 1px;
}

.blog-tags__button {
  position: relative;
  display: inline-block;
  max-width: 342px;
  width: 100%;
  padding: 12px calc(24px + 26px + 8px);
  background-color: var(--white-color);
  color: var(--primary-color);
  border: 1px solid var(--primary-color);
  border-radius: 100vh;
  font-size: var(--fontsize-14);
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.1s ease-in-out, background-color 0.1s ease-in-out, color 0.1s ease-in-out;
  @media (hover: hover) {
    &:hover {
      opacity: 0.5;
      background-color: var(--primary-color);
      color: var(--white-color);
      &::before,
      &::after {
        background-color: var(--white-color);
      }
    }
  }
  &::before,
  &::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 24px;
    width: 14px;
    height: 2px;
    background-color: var(--primary-color);
    translate: -50% -50%;
  }
  &::after {
    rotate: 90deg;
  }
  &.is-open {
    &::after {
      display: none;
    }
  }
}

.blog-articles {
  &.section--bg-pt1 {
    margin-top: 68px;
    padding-block: 64px;
    @media screen and (max-width: 767px) {
      margin-top: 44px;
      padding-block: 44px;
    }
    .title-lv1 {
      padding-block: 0;
    }
  }
}

.blog-author-desc {
  display: grid;
  grid-template-columns: 1fr 2.088fr;
  gap: 30px;
  margin-top: 44px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 20px;
  }
}

.blog-author-desc__body {
  order: 2;
}

.blog-author-desc__title {
  font-size: var(--fontsize-20);
  font-weight: 700;
}

.blog-author-desc__image {
  order: 1;
  img {
    aspect-ratio: 340 / 191;
    -o-object-fit: cover;
       object-fit: cover;
    @media screen and (max-width: 767px) {
      aspect-ratio: 335 / 188;
    }
  }
}

.recruit {
  &.section {
    margin-top: 100px;
    padding: 96px 0;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
      padding: 48px 0;
    }
  }
}

.main:has(.message-hero) > .section:has(.title-lv1) {
  padding-bottom: 68px;
  @media screen and (max-width: 767px) {
    padding-bottom: 44px;
  }
}

.message-hero {
  padding: 44px 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 32px;
  background: url(/wp-content/themes/matlantis_theme2/assets/img/message/bg_message_hero.jpg) center no-repeat;
  width: 100%;
  height: 340px;
  @media screen and (max-width: 767px) {
    padding: 0;
    background: none;
    height: auto;
  }
  .message-hero__title {
    margin: 0;
    font-size: var(--fontsize-28);
    font-weight: 700;
    @media screen and (max-width: 767px) {
      order: 2;
      font-size: var(--fontsize-24);
    }
  }
  .message-hero__text {
    margin: 0;
    font-size: var(--fontsize-16);
    font-weight: 500;
    @media screen and (max-width: 767px) {
      order: 3;
      font-size: var(--fontsize-14);
    }
  }
  .message-hero__image {
    display: none;
    @media screen and (max-width: 767px) {
      display: block;
      order: 1;
    }
  }
}

.product-hero {
  position: relative;
  background: url('/wp-content/themes/matlantis_theme2/assets/img/product/bg_hero_product.png') no-repeat center bottom;
  background-size: cover;
  min-height: 470px;
  margin: -51px 0 84px;
  padding: 120px 0 130px;
  @media screen and (max-width: 767px) {
    background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_hero_sp.png') no-repeat left bottom;
    background-size: cover;
    min-height: 340px;
    margin: -45px 0 64px;
    padding: 95px 0 72px;
  }
}

.product-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  max-width: calc(var(--max-width) + (var(--side-padding) * 2));
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding) 64px;
  @media screen and (max-width: 767px) {
    gap: 24px 0;
    padding: 0 var(--side-padding) 48px;
  }
}

.product-hero__title {
  font-size: var(--fontsize-44);
  color: var(--white-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-32);
  }
  span {
    display: block;
    margin-bottom: 8px;
    padding-left: 8px;
    font-size: var(--fontsize-16);
    border-left: 2px solid var(--white-color);
    line-height: 1;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.product-hero__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  height: 100%;
  @media screen and (max-width: 767px) {
    display: flex;
    flex-direction: column;
  }
}

.product-hero__cta {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  place-content: center;
  padding: 76px 0 36px;
  @media screen and (max-width: 767px) {
    order: 3;
    place-content: stretch;
    padding: 40px 0 0;
  }
  .cta-button {
    min-width: auto;
    width: 100%;
  }
}

.product-hero__text {
  grid-column: 1;
  grid-row: 1;
  margin-top: 0;
  color: var(--white-color);
  font-size: var(--fontsize-16);
  @media screen and (max-width: 767px) {
    order: 1;
    font-size: var(--fontsize-14);
  }
}

.product-hero__iframe {
  grid-column: 2;
  grid-row: 1 / 3;
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  text-align: left;
  @media screen and (max-width: 767px) {
    order: 2;
  }
  iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
  }
}

.product-section {
  padding-top: 64px;
}

.product-hero__client {
  display: flex;
  align-content: center;
  position: relative;
  height: 105px;
  background-color: var(--white-color);
  &::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    right: 0;
    width: 160px;
    height: 100%;
    background: linear-gradient(90deg, rgb(255 255 255 / 0) 0%, rgb(255 255 255 / .52) 20.67%, #fff 78.37%);
  }
}

.clientLog-slider {
  display: flex;
  flex-wrap: nowrap;
  overflow: hidden;
  align-content: center;
  margin: 0;
  padding: 0;
}

.clientLog-slider__list {
  display: flex;
  flex-wrap: nowrap;
  align-self: center;
  place-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  will-change: transform;
  height: 80%;

  &.is-animated {
    animation: infinity-slider 46s linear infinite;
  }

  &.is-pause {
    animation-play-state: paused;
  }

  li {
    width: 140px;
    padding: 0 20px;
  }

  img {
    width: 100px;
    height: auto;
    backface-visibility: hidden;
  }
}

@keyframes infinity-slider {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.slider-logo__button {
  position: absolute;
  top: 50%;
  right: 64px;
  transform: translateY(-50%);
  padding: 0;
  border: none;
  background: transparent;
  z-index: 1;
  @media screen and (max-width: 767px) {
    right: 32px;
  }
  &:hover {
    opacity: .5;
  }
}

.slider-logo__inner {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--primary-color);
  border-radius: 50%;
  cursor: pointer;
  text-decoration: none;
}

.slider-logo__button--pause ,
.slider-logo__button--play {
    &.is-hidden {
      display: none;
    }
}

.product-overview__box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  margin-top: 48px;
  list-style: none;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    margin-top: 28px;
  }
  li {
    display: grid;
    place-content: center;
    place-items: center;
    padding: 24px;
    text-align: center;
    color: var(--white-color);
    font-size: var(--fontsize-20);
    font-weight: 700;
    background-color: var(--primary-color);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-18);
    }
  }
}

.product-overview__card {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 80px 30px;
  margin-top: 108px;
  @media screen and (max-width: 1129px) {
    grid-template-columns: repeat(2, 1fr);
  }
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    margin-top: 78px;
  }
}

.product-overview__card__item {
  display: grid;
  gap: 20px 0;
  position: relative;
  padding: 80px 24px 24px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
  &::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    @media screen and (max-width: 767px) {
      width: 100px;
      height: 100px;
    }
  }
  &.product-overview__card__item--01 {
    &::before {
      background-image: url(/wp-content/themes/matlantis_theme2/assets/img/product/icon_overview_01.svg);
      background-size: contain;
    }
  }
  &.product-overview__card__item--02 {
    &::before {
      background-image: url(/wp-content/themes/matlantis_theme2/assets/img/product/icon_overview_02.svg);
      background-size: contain;
    }
  }
  &.product-overview__card__item--03 {
    &::before {
      background-image: url(/wp-content/themes/matlantis_theme2/assets/img/product/icon_overview_03.svg);
      background-size: contain;
    }
  }
  &.product-overview__card__item--04 {
    &::before {
      background-image: url(/wp-content/themes/matlantis_theme2/assets/img/product/icon_overview_04.svg);
      background-size: contain;
    }
  }
}

.product-overview__card__title {
  margin-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.6;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.product-overview__card__copy {
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    line-height: 1.6;
    margin-top: 8px;
    @media screen and (max-width: 767px) {
        font-size: var(--fontsize-14);
    }
}

.product-overview__card__text {
  margin-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-16);
  line-height: 1.6;
  text-align: left;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.product-technology {
  margin-top: 100px;
    @media screen and (max-width: 767px) {
        margin-top: 64px;
    }
}

.product-faq {
    margin-top: 84px;
}

.product-results {
  margin-top: 48px;
  @media screen and (max-width: 767px) {
    margin-bottom: 32px;
  }
}

.product-results__card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 30px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
  }
  .linklist {
    margin-top: 0;
  }
}

.product-results__card__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  justify-items: center;
  gap: 20px 0;
  position: relative;
  padding: 32px 24px;
  text-align: center;
  background-color: var(--white-color);
  border: 1px solid var(--primary-color);
}

.product-results__card__title {
  align-self: center;
  margin-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.product-results__card__number {
  order: 3;
  margin-top: 0;
  color: var(--primary-color);
  font-size: var(--fontsize-40);
  font-weight: 700;
  line-height: 1;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-32);
  }
}

.product-results__card__image {
  order: 2;
  align-content: center;
  width: 100px;
  height: 100px;
}

.product-results__card__text {
  display: flex;
  flex-direction: column;
  order: 4;
  gap: 20px;
  margin-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-16);
  line-height: 1.6;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  p {
    margin-top: 0;
  }
}

.news-head {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 24px;
  margin-top: 64px;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 44px;
  }
}

.news-title {
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  text-align: center;
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-16);
    text-align: center;
  }
}

.news-select {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  @media screen and (max-width: 767px) {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }
}

.news-select__item {
  background: var(--white-color);
  height: 46px;
  width: 200px;
  position: relative;
  z-index: 1;
  @media screen and (max-width: 767px) {
    width: 100%;
    height: 43px;
  }
  &::after {
    position: absolute;
    content: '';
    right: 10px;
    top: 50%;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-top: 8px solid var(--primary-color);
    border-bottom: 0;
    transform: translateY(-50%);
    z-index: -1;
  }
  select {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    background: none;
    border: 1px solid #ccc;
    color: #333;
    font-size: var(--fontsize-16);
    width: 100%;
    height: 100%;
    padding: 0 12px;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.newsletter {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 0 30px;
  margin-top: 84px;
  padding: 40px;
  background-color: #ECEFF1;
  @media screen and (max-width: 767px) {
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    padding: 24px;
  }
  .inputArea {
    .inputArea__input {
        border: 1px solid transparent;
    }
    .inputArea__button {
      width: 117px;
      @media screen and (max-width: 767px) {
        width: 76px;
        padding: 5px 8px;
        font-size: var(--fontsize-14);
      }
      span {
        justify-content: center;
        background: none;
      }
    }
  }
}

.newsletter__form {
  iframe {
    border: none;
    height: 80px;
  }
}

.newsletter__head {
  display: flex;
  flex-direction: column;
  gap: 8px 0;
}

.newsletter__title {
  color: var(--base-textcolor);
  font-size: var(--fontsize-16);
  font-weight: 400;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.newsletter__lead {
  margin-top: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.newsletter__body {
  display: flex;
  flex-direction: column;
  flex-flow: column-reverse;
  gap: 10px 0;
}

.newsletter__text {
  margin-top: 0;
  font-size: var(--fontsize-14);
  a {
    color: var(--primary-color);
    text-decoration: underline;
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
  }
}

.news-content {
  margin-top: 24px;
}

.news-list {
  li {
    display: grid;
    grid-template-rows: auto 1fr;
    gap: 16px 12px;
    padding: 24px 0;
    list-style: none;
    border-bottom: 1px solid #d9d9d9;
    &:first-child {
      border-top: 1px solid #d9d9d9;
    }
  }
}

.news-list__info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.news-list__date {
  font-size: var(--fontsize-14);
  color: var(--base-textcolor);
}

.news-list__label {
  span {
    display: flex;
    align-items: center;
    padding: 4px 12px;
    font-size: var(--fontsize-14);
    line-height: 1;
    border-radius: 9999px;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    background: var(--white-color);
  }
}

.news-list__icon {
  font-size: var(--fontsize-14);
  color: var(--red-color);
}

.news-list__text {
  margin-top: 0;
  font-size: var(--fontsize-16);
  color: var(--primary-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
  a {
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
    &::after {
      content: "";
      display: inline-block;
      margin-left: -12px;
    }
    &[target="_blank"] {
      &::after {
        width: 16px;
        height: 16px;
        margin-left: 8px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
        transform: translateY(20%);
      }
    }
    &[href$=".pdf"] {
      &::after {
        width: 15.11px;
        height: 19px;
        margin-left: 8px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) no-repeat center center;
        transform: translateY(20%);
      }
    }
  }
}

.why-matlantis {
  .js-sticky-nav {
    .active {
      color: var(--primary-color);
      font-weight: 700;
    }
  }
  .is-nav-default { 
    &.js-sticky-nav {
      margin-top: 48px;
    }
    .js-smooth-scroll {
      display: inline-block;
      padding: 24px 48px 24px 24px;
      background-color: var(--lightblue2-bgcolor);
      font-weight: 700;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
    }
    .js-sticky-nav__slider {
      height: 74px;
      @media screen and (max-width: 767px) {
        display: block !important;
      }
      a {
        &::after {
          right: 24px;
        }
      }
      &.slick-initialized {
        li {
          &:last-child {
            @media screen and (max-width: 767px) {
              padding-right: 0;
            }
          }
        }
      }
    }
    .js-sticky-nav__slider__arrow--prev, .js-sticky-nav__slider__arrow--next {
      height: 74px;
      & button {
        &::before {
          height: 74px;
        }
      }
    }
  }
}

.why-matlantis-content {
  &:has(+ .why-matlantis-content) {
    .section__inner {
      border-bottom: 1px solid var(--lightgray-bordercolor);
    }
  }
  + .cta {
    margin-top: 0;
  }
  &.section {
    margin-top: 0;
  }
  .section__inner {
    position: relative;
    display: grid;
    grid-template-columns: calc(393 / 1239 * 100%) calc(816 / 1239 * 100%);
    gap: 30px;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 var(--side-padding) 100px;
    width: auto;
    max-width: calc(1238px + (var(--side-padding) * 2));
    @media screen and (max-width: 767px) {
      grid-template-columns: 1fr;
      gap: 48px;
      padding: 0 var(--side-padding) 84px;
    }
  }
  .top-section__head .title-lv2 {
    padding-top: 0;
  }
  .top-section__body {
    padding-top: 100px;
    @media screen and (max-width: 767px) {
      padding-top: 0;
    }
    section:first-child {
      > .title-lv2__group {
        padding-top: 0;
      }
    }
  }
  .title-lv2__group {
    padding-top: 64px;
    @media screen and (max-width: 767px) {
      padding-top: 48px;
    }
    .title-lv2 {
      font-size: var(--fontsize-28);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-24);
      }
    }
    .title-caption {
      margin-top: 0;
    }
  }

  .title-lv4 {
    position: relative;
    margin-top: 32px;
    padding-left: 34px;
    line-height: 1.6;
    color: var(--base-textcolor);
    &::before {
      content: "";
      display: inline-block;
      position: absolute;
      top: 50%;
      left: 0;
      width: 26px;
      height: 26px;
      background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_check.svg) no-repeat center center;
      transform: translateY(-50%);
    }
  }
}

.js-side-nav-sticky {
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding-top: 84px;
  }
}

.why-matlantis-mediaBlock {
  display: grid;
  margin-top: 32px;
  grid-template-columns: 2.14fr 1fr;
  gap: 30px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
  }
  .title-lv4 {
    margin-top: 0;
  }
}

.why-matlantis-mediaBlock__image__caption {
  font-size: var(--fontsize-14);
}

.why-matlantis-box {
  margin-top: 32px;
  padding: 24px;
  background-color: var(--lightblue-bgcolor);
  .link {
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.why-matlantis-box__title {
  margin-block: 0;
  font-size: var(--fontsize-16);
  line-height: 1.4;
  font-weight: 700;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.top-section__head__inner {
  --position-x: 0;
  --position-y: 0;
  --width: 100%;
  --position: static;
  position: var(--position);
  top: var(--position-y);
  left: var(--position-x);
  width: var(--width);
}

.top-section__head {
  position: relative;
}

.top-section__head__title {
  color: var(--primary-color);
}

.indicator-sidebar {
  position: fixed;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
}

.indicator-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 44px;
  @media screen and (max-width: 767px) {
    display: none;
  }
  li {
    list-style: none;
  }
  button {
    display: block;
    margin-left: 4px;
    width: 8px;
    height: 8px;
    border: 0;
    font-size: 0;
    line-height: 0;
    padding: 0;
    color: transparent;
    outline: none;
    cursor: pointer;
    background: var(--lightgray-bordercolor);
    border-radius: 50%;
    &.active {
      margin-left: 0;
      width: 16px;
      height: 16px;
      background: var(--primary-color);
    }
  }
}

.article-title-lv1__group {
  padding-top: 68px;
  @media screen and (max-width: 767px) {
    padding-top: 44px;
  }

  .title-caption {
    color: var(--base-textcolor);
    font-size: var(--fontsize-16);
    line-height: 1;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
  .title-lv1 {
    padding-top: 18px;
    color: var(--primary-color);
    font-size: var(--fontsize-32);
    overflow-wrap: anywhere;
    @media screen and (max-width: 767px) {
      padding-top: 14px;
      font-size: var(--fontsize-28);
    }
  }
}

.article-title-lv1 {
    padding-top: 68px;
    color: var(--primary-color);
    font-size: var(--fontsize-32);
    @media screen and (max-width: 767px) {
      padding-top: 44px;
      font-size: var(--fontsize-28);
    }
}

.article-date {
  margin-top: 64px;
  font-size: var(--fontsize-16);
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    margin-top: 48px;
    font-size: var(--fontsize-14);
  }
}

.article-header {
  margin-top: 64px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  @media screen and (max-width: 767px) {
    margin-top: 48px;
    gap: 12px;
  }
  .article-date {
    margin: 0;
    font-size: var(--fontsize-14);
    color: var(--base-textcolor);
  }
  .text-category {
    font-size: var(--fontsize-14);
  }
  .text-data-info {
    margin-top: 0;
  }

  & + .article-title-lv1 {
    padding-top: 26px;
    @media screen and (max-width: 767px) {
      padding-top: 24px;
    }
  }
}

.column--article-title {
  padding-top: 68px;
  gap: 32px;
  @media screen and (max-width: 767px) {
    padding-top: 44px;
  }
  &.--column2 .column__item {
    width: calc((100% - 32px) / 2);
    @media screen and (max-width: 767px) {
      width: 100%;
      order: 1;
    }
  }
  .column__item:not(.column__item--image) {
    display: flex;
    flex-direction: column;
    gap: 32px;
    @media screen and (max-width: 767px) {
      gap: 20px;
      order: 2;
    }
  }
  .article-title-lv1 {
    padding-top: 0;
  }
  .profile-info {
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--lightgray-bordercolor);
  }
  .profile-name {
    font-size: var(--fontsize-16);
    font-weight: 700;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
  .profile-detail {
    margin: 12px 0 0;
    font-size: var(--fontsize-16);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
  }
}

.article-intro--bg {
  margin-top: 84px;
  padding: 64px 0;
  background: url('/wp-content/themes/matlantis_theme2/assets/img/bg_intro.png') no-repeat center center;
  background-size: cover;
  @media screen and (max-width: 767px) {
    padding: 48px 0;
  }
}

.section:has(.wp-contents) {
  padding-top: 84px;
  @media screen and (max-width: 767px) {
    padding-top: 64px;
  }
}

.section:has(.title-lv1) + .section:has(.wp-contents) {
  padding-top: 0;
  @media screen and (max-width: 767px) {
    padding-top: 0;
  }
}

.article-intro--bg + .section:has(.wp-contents) {
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding-top: 84px;
  }
}

.section:has([class^="article-"]) {
  padding-bottom: 0;
  .text-keywords {
    margin-top: 20px;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .text-keyword {
    font-weight: 400;
    .link {
      text-decoration: underline;
      &::before,
      &::after {
        display: none;
      }
    }
  }
  .tag-block .text-keywords {
    margin-top: 0;
  }
}

.tag-block {
  margin-top: 100px;
  padding: 32px;
  display: flex;
  align-items: flex-start;
  background-color: var(--lightgray-bgcolor);
  @media screen and (max-width: 767px) {
    margin-top: 84px;
    padding: 24px;
  }
  .text {
    position: relative;
    margin: 0;
    padding-right: 25px;
    white-space: nowrap;
    &:after {
      content: "";
      position: absolute;
      top: 50%;
      right: 12px;
      width: 1px;
      height: 100%;
      background-color: var(--lightgray-linecolor);
      transform: translateY(-50%);
    }
  }
  .text-keywords {
    margin: 0;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }
  .text-keyword {
    font-weight: 400;
    .link {
      text-decoration: underline;
      &::before,
      &::after {
        display: none;
      }
    }
  }
  & + .article-date {
    margin-top: 20px;
  }
}

.section:has(.article-date) {
  .section__inner {
    max-width: calc(var(--wp-width) + (var(--side-padding) * 2));
  }
  + .section:has(.share-button) {
    .section__inner {
      max-width: calc(var(--wp-width) + (var(--side-padding) * 2));
    }
  }
}

.section.new-posts {
  margin-top: 100px;
  .title-lv2--small {
    padding-top: 0;
  }
  @media screen and (max-width: 767px) {
    margin-top: 84px;
  }
}

.requirements-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  padding: 100px 0;
  background: url(/wp-content/themes/matlantis_theme2/assets/img/requirements/bg_hero_requirements.jpg) no-repeat center top;
  background-size: cover;
  &::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(0 0 0 / .6);
    background-blend-mode: darken;
  }
  @media screen and (max-width: 767px) {
    padding: 84px 0;
  }
  .link-button {
    margin-top: 60px;
    @media screen and (max-width: 767px) {
      margin-top: 44px;
    }
  }
}

.requirements-hero__inner {
  position: relative;
  max-width: calc(var(--max-width) + (var(--side-padding) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--side-padding);
}

.requirements-hero__body {
  width: 66%;
  @media screen and (max-width: 767px) {
    width: 100%;
  }
}

.requirements-hero__title {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-32);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-28);
  }
  strong {
    font-weight: 400;
  }
}

.requirements-hero__text {
  margin-top: 32px;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--white-color);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.requirements-nav {
  padding-top: 84px;
  @media screen and (max-width: 767px) {
    padding-top: 64px;
  }
}

.requirements-leadArea {
  padding-top: 100px;
  @media screen and (max-width: 767px) {
    padding-top: 84px;
  }
  .column {
    + .column {
      margin-top: 64px;
      @media screen and (max-width: 767px) {
        margin-top: 44px;
      }
    }
  }
}

.requirements-voice {
  display: flex;
  flex-direction: column;
  gap: 40px 0;
  margin-top: 0;
  @media screen and (max-width: 767px) {
    gap: 32px 0;
  }
}

.requirements-voice__item {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px 30px;
  padding: 0;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 24px 0;
  }
}

.requirements-voice__image {
  order: 1;
  justify-self: center;
  @media screen and (max-width: 767px) {
    width: 60%;
  }
}

.requirements-voice__body {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  order: 2;
  padding: 0;
}

.requirements-voice__title {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
}

.requirements-voice__name {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 700;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.requirements-voice__text {
  margin: 0;
  padding: 0;
  font-size: var(--fontsize-16);
  font-weight: 400;
  line-height: 1.6;
  color: var(--base-textcolor);
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-14);
  }
}

.requirements-positions {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 20px 30px;
  padding: 100px 0;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    gap: 28px 0;
    padding: 84px 0 112px;
  }
}

.requirements-positions__head {
  display: flex;
  flex-direction: column;
  gap: 32px 0;
  .title-lv2--point {
    margin: 0;
    padding: 0;
    align-items: flex-start;
    text-align: left;
  }
  .text {
    margin-top: 0;
  }
}

.requirements-positions__body {
  display: flex;
  flex-direction: column;
  gap: 44px 0;
}

.requirements-positions__item {
  padding-bottom: 44px;
  border-bottom: 1px solid #CCC;
}

.requirements-positions__name {
  margin: 0;
  color: var(--base-textcolor);
  font-size: var(--fontsize-24);
  font-weight: 700;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-20);
  }
}

.requirements-positions__text {
  margin-top: 20px;
}

.requirements-step {
  padding: 96px 0;
  @media screen and (max-width: 767px) {
    padding: 64px 0;
  }
  .title-lv2--point {
    padding: 0;
    @media screen and (max-width: 767px) {
      padding: 0;
    }
  }
}

.requirements-step__items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px 30px;
  @media screen and (max-width: 767px) {
    grid-template-columns: 1fr;
    margin-top: 8px;
  }
}

.requirements-step__item {
  display: flex;
  flex-direction: column;
  gap: 20px 0;
  padding: 32px 24px 24px;
  background-color: var(--white-color);
  &.--numer-01 {
    .requirements-step__title {
      &::before {
        width: 52.781px;
        height: 42.12px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/requirements/icon_step__number_01.svg) no-repeat center center;
        background-size: contain;
      }
    }
  }
  &.--numer-02 {
    .requirements-step__title {
      &::before {
        width: 52.781px;
        height: 42.12px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/requirements/icon_step__number_02.svg) no-repeat center center;
        background-size: contain;
      }
    }
  }
  &.--numer-03 {
    .requirements-step__title {
      &::before {
        width: 52.781px;
        height: 42.12px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/requirements/icon_step__number_03.svg) no-repeat center center;
        background-size: contain;
      }
    }
  }
}

.requirements-step__title {
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 0;
  padding-top: 62px;
  color: var(--base-textcolor);
  font-size: var(--fontsize-20);
  font-weight: 700;
  line-height: 1.4;
  @media screen and (max-width: 767px) {
    font-size: var(--fontsize-18);
  }
  &::before {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.requirements-step__number {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.requirements-step__text {
  display: flex;
  flex-direction: column;
  margin-top: 0;
}

.cta.requirements-cta {
  margin-top: 0;
}

.wp-contents {
  margin: 0 auto;
  max-width: var(--wp-width);
  width: 100%;

  h2,h3,h4 {
    line-height: 1.4;
    font-weight: 700;
    color: var(--base-textcolor);
  }

  h2 {
    margin: 100px 0 32px;
    font-size: var(--fontsize-28);
    &:first-child {
      margin: 0 0 32px;
    }
    @media screen and (max-width: 767px) {
      margin: 84px 0 28px;
      font-size: var(--fontsize-24);
      &:first-child {
        margin: 0 0 28px;
      }
    }
  }
  h3 {
    margin: 64px 0 28px;
    font-size: var(--fontsize-24);
    .wp-block-separator + & {
      margin-top: 32px;
    }
    @media screen and (max-width: 767px) {
      margin: 48px 0 24px;
      font-size: var(--fontsize-20);
    }
  }
  h4 {
    margin: 44px 0 20px;
    font-size: var(--fontsize-20);
    @media screen and (max-width: 767px) {
      margin: 32px 0 20px;
      font-size: var(--fontsize-18);
    }
  }

  p {
    margin: 0 0 20px;
    font-size: var(--fontsize-16);
    line-height: 1.6;
    color: var(--base-textcolor);
    overflow-wrap: break-word;
    word-break: break-word;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-14);
    }
    strong {
      font-weight: 700;
    }
    + .wp-block-image,
    + .wp-block-table {
      margin: 44px 0 44px;
    }
  }

  small {
    margin: 0 0 20px;
    font-size: var(--fontsize-14);
    line-height: 1.6;
    color: var(--base-textcolor);
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-12);
    }
    strong {
      font-weight: 700;
    }
  }

  .has-text-align-left,
  .alignleft {
    text-align: left;
  }
  .has-text-align-center,
  .aligncenter {
    text-align: center;
  }
  .has-text-align-right,
  .alignright {
    text-align: right;
  }

  a {
    color: var(--primary-color);
    transition: opacity .3s ease-in-out;
    &[target="_blank"] {
      overflow-wrap: anywhere;
      /*&::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 16px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) center no-repeat;
        background-size: contain;
        margin-left: 8px;
        transform: translateY(10%);
        @media screen and (max-width: 767px) {
          width: 14px;
          height: 14px;
        }
      }*/
    }
    &[href$=".pdf"] {
      &::after {
        content: '';
        display: inline-block;
        width: 16px;
        height: 19px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_pdf.svg) center no-repeat;
        background-size: contain;
        margin-left: 8px;
        transform: translateY(20%);
        @media screen and (max-width: 767px) {
          width: 13px;
          height: 16px;
        }
      }
    }
    &[href^="#"] {
      position: relative;
      padding-right: 24px;
      &::after {
        content: "";
        position: absolute;
        top: 45%;
        right: 0;
        display: inline-block;
        width: 16px;
        height: 8px;
        background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_arrow_anchor-link.svg) center no-repeat;
        background-size: contain;
        @media screen and (max-width: 767px) {
          width: 13px;
          height: 16px;
        }
      }
    }
    @media (hover: hover) {
      &:hover {
        opacity: .5;
      }
    }
  }
  .linklist {
    gap: 20px 0;
    li {
      padding-left: 0;
      &::before {
        display: none;
      }
    }
    a[target="_blank"] {
      &::after {
        display: none;
      }
    }
  }

  ul,ol {
    margin-top: 16px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 16px 0;
    margin-bottom: 20px;
    list-style: none;
    > li {
      position: relative;
    }
  }

  ul {
    > li {
      padding-left: 1.2em;
      &::before {
        content: "";
        display: inline-block;
        position: absolute;
        top: .5em;
        left: 0;
        width: 8px;
        height: 8px;
        background: var(--primary-color);
        border-radius: 50%;
      }
    }
  }

  ol {
    padding-left: 0;
    counter-reset: number;
    > li {
      padding-left: 2em;
      &::before {
        content: counter(number) ".";
        display: inline-block;
        counter-increment: number;
        position: absolute;
        top: 0;
        left: 0;
        width: 1.4em;
        text-align: left;
        background: none;
      }
    }
  }

  .wp-block-group {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-layout-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 32px 30px;
    }
    &.is-layout-flex:has(a[href^="#"]) {
      gap: 20px 32px;
    }
    &.is-content-justification-left {
      justify-content: flex-start;
    }
    &.is-content-justification-center {
      justify-content: center;
    }
    &.is-content-justification-right {
      justify-content: flex-end;
    }
    &.is-content-justification-space-between {
      justify-content: space-between;
    }
    &.is-nowrap {
      flex-wrap: nowrap;
    }
    &.is-vertical {
      flex-direction: column;
    }
    &.is-horizontal {
      p {
        margin: 0;
      }
    }
  }

  .wp-block-table {
    margin-bottom: 44px;
    width: 100%;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-style-stripes {
      tr:nth-child(odd) {
        background-color: var(--lightgray-bgcolor);
      }
    }
    &.table-nowrap-firstcol {
      td:first-child {
        white-space: nowrap;
      }
    }
    &.table-headlinecolor-firstcol {
      td:first-child {
        background-color: var(--primary-color);
        color: var(--white-color);
      }
    }
    &.table-headlinecolor-firstrow {
      tr:first-child {
        td {
          background-color: var(--primary-color);
          color: var(--white-color);
        }
      }
    }
    &.table-col-title {
      tr > :first-child {
        font-weight: 400;
      }
      tr:first-child td {
        font-weight: 700;
      }
    }
    &.table-no-title {
      tr > :first-child {
        font-weight: 400;
      }
    }
    &.table-caption-center {
      .wp-element-caption {
        text-align: center;
      }
    }
    .has-fixed-layout {
      table-layout: fixed;
      width: 100%;
    }
    table {
      border-collapse: collapse;
    }
    tr > :first-child {
      font-weight: 700;
    }
    th,
    td {
      padding: 16px;
      border: 1px solid var(--lightgray-bordercolor);
      font-size: var(--fontsize-16);
      @media screen and (max-width: 767px) {
        padding: 14px;
        font-size: var(--fontsize-14);
      }
    }
    .has-text-align-center {
      text-align: center;
    }
    .has-text-align-right {
      text-align: right;
    }
  }
  .wp-element-caption {
    margin-top: 12px;
    font-size: var(--fontsize-12);
  }

  .wp-block-image {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.alignleft {
      text-align: left;
      margin:1em auto 1em 0;
    }
    &.aligncenter {
      text-align: center;
      margin:1em auto;
    }
    &.alignright {
      text-align: right;
      margin:1em 0 1em auto;
    }
    &.size-full {
      width: 100%;
    }
    &.size-medium,
    &.size-thumbnail {
      img {
        width: auto;
      }
    }
    .wp-element-caption {
      margin: 12px 0 0;
    }
  }

  .wp-block-embed {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-type-video {
      .wp-block-embed__wrapper {
        width: 100%;
        height: 100%;
      }
    }
    &.wp-has-aspect-ratio {
      iframe {
        width: 100%;
        height: 100%;
      }
    }
    &.wp-embed-aspect-16-9 {
      aspect-ratio: 16 / 9;
    }
  }

  .wp-block-buttons {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-layout-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 32px 30px;
      @media screen and (max-width: 767px) {
        flex-direction: column;
      }
    }
    &.is-nowrap {
      flex-wrap: nowrap;
    }
    &.is-content-justification-left {
      justify-content: flex-start;
    }
    &.is-content-justification-center {
      justify-content: center;
    }
    &.is-content-justification-right {
      justify-content: flex-end;
    }
    &.is-content-justification-space-between {
      justify-content: space-between;
    }
    &:has(.wp-block-button:nth-of-type(2)) {
      .wp-block-button {
        flex: 0 1 calc((100% - 30px) /2);
      }
      @media screen and (max-width: 767px) {
        .wp-block-button {
          width: 100%;
        }
      }
    }
    &:has(.wp-block-button:nth-of-type(3)) {
      .wp-block-button {
        flex: 0 1 calc((100% - 60px) /3);
      }
      @media screen and (max-width: 767px) {
        .wp-block-button {
          width: 100%;
        }
      }
    }
    &:has(.wp-block-button:nth-of-type(n+2)) {
      .wp-block-button__link {
        width: 100%;
      }
    }
  }
  .wp-block-button.has-custom-width {
    &.wp-block-button__width-25 {
      width: 25%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
      .wp-block-button__link {
        width: 100%;
      }
    }
    &.wp-block-button__width-50 {
      width: 50%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
      .wp-block-button__link {
        width: 100%;
      }
    }
    &.wp-block-button__width-75 {
      width: 75%;
      @media screen and (max-width: 767px) {
        width: 100%;
      }
      .wp-block-button__link {
        width: 100%;
      }
    }
    &.wp-block-button__width-100 {
      width: 100%;
      .wp-block-button__link {
        width: 100%;
      }
    }
  }
  .wp-block-button{
    .wp-block-button__link {
      position: relative;
      display: inline-block;
      padding: 12px calc(24px + 26px + 8px);
      background-color: var(--white-color);
      color: var(--primary-color);
      border: 1px solid var(--primary-color);
      border-radius: 100vh;
      text-align: center;
      text-decoration: none;
      font-weight: 500;
      transition: border-color 0.3s ease-in-out, background-color 0.3s ease-in-out, background-image 0.3s ease-in-out, color 0.3s ease-in-out;
      &::before,
      &::after {
        content: "";
        position: absolute;
        top: calc(50% + 4px);
        right: 24px;
        height: 2px;
        background-color: var(--primary-color);
        transform: translateY(-50%);
      }
      &::before {
        width: 26px;
      }
      &::after {
        width: 13px;
        transform: translateY(-50%) rotate(40deg);
        transform-origin: calc(100% - 1px) 50%;
      }
      &:not([href]) {
        border: none;
        background-color: var(--lightgray-bordercolor);
        color: var(--gray-color);
        cursor: default;
        pointer-events: none;
        &::before, &::after {
          background-color: var(--gray-color);
        }
        @media (hover: hover) {
          &:hover {
            opacity: 1;
          }
        }
      }
    }
  }

  .wp-block-heading + .wp-block-buttons,
  p + .wp-block-buttons {
    margin-top: 32px;
  }

  .wp-block-media-text {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:"media content";
    gap: 32px 30px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-vertically-aligned-top {
      .wp-block-media-text__content {
        align-content: start;
      }
    }
    &.is-vertically-aligned-center {
      .wp-block-media-text__content {
        align-content: center;
      }
    }
    &.is-vertically-aligned-bottom {
      .wp-block-media-text__content {
        align-content: end;
      }
    }
    &.has-media-on-the-right {
      grid-template-areas:"content media";
    }
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
      &.is-stacked-on-mobile {
        grid-template-areas:"media" "content";
        grid-template-columns: 1fr !important;
        gap: 20px;
      }
    }
    .wp-block-media-text__media {
      grid-area: media;
    }
    .wp-block-media-text__content {
      grid-area: content;
      h2:first-child {
        margin: 0 0 32px;
        @media screen and (max-width: 767px) {
          margin: 0 0 28px;
        }
      }
      h3:first-child {
        margin: 0 0 28px;
        @media screen and (max-width: 767px) {
          margin: 0 0 24px;
        }
      }
      h4:first-child {
        margin: 0 0 20px;
      }
      p:last-of-type {
        margin: 0;
      }
    }
  }

  .wp-block-columns {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &.is-layout-flex {
      display: flex;
      flex-direction: row;
      gap: 32px 30px;
      @media screen and (max-width: 767px) {
        flex-direction: column;
        gap: 20px;
        &:has(.wp-block-image) {
          .wp-block-column {
            order: 2;
            &:has(.wp-block-image) {
              order: 1;
            }
          }
        }
      }
    }
    &.is-content-justification-left {
      justify-content: flex-start;
    }
    &.is-content-justification-center {
      justify-content: center;
    }
    &.is-content-justification-right {
      justify-content: flex-end;
    }
    &.is-content-justification-space-between {
      justify-content: space-between;
    }
    &:has(.wp-block-column:only-child) {
      gap: 0;
      .wp-block-column {
        width: 100%;
      }
    }
    &:has(.wp-block-column:nth-of-type(2)) {
      .wp-block-column {
        flex: 0 1 calc((100% - 30px) / 2);
        @media screen and (max-width: 767px) {
          width: 100%;
        }
      }
    }
    &:has(.wp-block-column:nth-of-type(3)) {
      .wp-block-column {
        flex: 0 1 calc((100% - 60px) / 3);
        @media screen and (max-width: 767px) {
          width: 100%;
        }
      }
    }
    &:has(.wp-block-column:nth-of-type(4)) {
      .wp-block-column {
        flex: 0 1 calc((100% - 90px) / 4);
        @media screen and (max-width: 767px) {
          flex: 0 1 calc((100% - 20px) / 6);
        }
      }
    }
    .wp-block-column {
      h2:first-child {
        margin: 0 0 32px;
        @media screen and (max-width: 767px) {
          margin: 0 0 28px;
        }
      }
      h3:first-child {
        margin: 0 0 28px;
        @media screen and (max-width: 767px) {
          margin: 0 0 24px;
        }
      }
      h4:first-child {
        margin: 0 0 20px;
      }
      p:last-of-type {
        margin: 0;
      }
      .wp-block-image {
        margin: 0;
        + p {
          margin-top: 20px;
        }
      }
    }
  }

  .wp-block-separator {
    margin: 32px 0;
    border: 0;
    border-top: 1px solid var(--lightgray-bordercolor);
  }

  .wp-block-quote {
    margin: 0 0 44px;
    position: relative;
    text-indent: 1rem;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    &::before {
      content: "";
      position: absolute;
      top: 2px;
      left: 0;
      width: 10px;
      height: 9px;
      background-image: url('/wp-content/themes/matlantis_theme2/assets/img/icon_quote.svg');
      background-repeat: no-repeat;
      background-size: contain;
    }
    p::after {
      content: "";
      display: inline-block;
      width: 10px;
      height: 9px;
      background-image: url('/wp-content/themes/matlantis_theme2/assets/img/icon_quote.svg');
      background-repeat: no-repeat;
      background-size: contain;
      transform: rotate(180deg);
      margin-left: 6px;
      vertical-align: baseline;
    }
  }
  /*
    .wp-block-code {
      margin-bottom: 44px;
      padding: 40px;
      background-color: var(--lightgray-bgcolor);
      @media screen and (max-width: 767px) {
        margin-bottom: 32px;
      }
      code {
        font-size: var(--fontsize-16);
          white-space: pre-wrap;
          word-break: break-word;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-14);
        }
      }
    }
  */
  .wp-block-code {
    margin-bottom: 44px;
    padding: 1.5em;
    background-color: #f6f8fa;
    border: 1px solid #d0d7de;
    border-radius: 4px;
    overflow: hidden;

    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }

    code {
      display: block;
      line-height: 1.4;
    }
  }
  code {
    font-family: SFMono-Regular, Consolas, "Liberation Mono", Menlo, Courier, monospace;
    color: #c53929;
    white-space: pre-wrap;
    word-break: break-word;
  }
  code:not(.wp-block-code>code) {
    display:inline-block;
    padding:0 3px;
    margin-inline:2px;
    line-height:1.2;
    background-color: #f6f8fa;
    border: 1px solid #d0d7de;
    border-radius: 4px;
  }
  /* 既存スタイルの調整 */
  .portable-guide {
    margin: 100px calc(-185px / 2) 0;
    @media screen and (max-width: 767px) {
      margin: 84px 0 0;
    }
    .portable-guide__title {
      margin: 0;
      font-size: var(--fontsize-28);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-24);
      }
    }
  }

  .media__caption {
    margin: 12px 0 0;
    font-size: var(--fontsize-12);
  }

  /* 旧サイトのスタイル調整 */
  .calculation-imagebox {
    margin-top: 100px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 30px;
    @media screen and (max-width: 767px) {
      margin-top: 84px;
      grid-template-columns: 1fr;
    }
    &:first-of-type {
      margin-top: 0;
    }
    .calculation-imagebox-texts {
      overflow-wrap: anywhere;

    }
  }
  .calculation-horizonimage {
    .calculation-horizonimage-texts {
      h2:first-of-type {
        margin: 100px 0 32px;
      }
    }
    .calculation-horizonimage-image {
      margin-bottom: 44px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 32px 30px;
      @media screen and (max-width: 767px) {
        margin-bottom: 32px;
      }
    }
  }
  .wp-block-group:has(.calculation-imagebox),
  .wp-block-group:has(.calculation-horizonimage) {
    margin: 0;
  }

  /* 詳細ページ新規モジュール */
  .event-closed {
    margin-bottom: 44px;
    border: 1px solid var(--primary-color);
    .event-closed__inner {
      padding: 40px 40px 0;
      @media screen and (max-width: 767px) {
        padding: 24px 24px 0;
      }
    }
    .text{
      margin: 0 0 20px;
      &:last-of-type {
        margin: 0;
      }
    }
    .event-closed__notice {
      margin: 0 0 20px;
      font-size: var(--fontsize-20);
      font-weight: 700;
      color: var(--red-color);
      text-align: center;
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-18);
      }
    }
    .link-button--blue {
      background-color: var(--primary-color);
      color: var(--white-color);
      &::before,
      &::after {
        background-color: var(--white-color);
      }
    }
    .newsletter {
      margin-top: 44px;
      @media screen and (max-width: 767px) {
        margin-top: 32px;
      }
      .newsletter__title {
        margin: 0;
        font-size: var(--fontsize-16);
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-14);
        }
      }
      .newsletter__text {
        margin: 0;
        font-size: var(--fontsize-14);
      }
      .newsletter__lead {
        margin: 0;
        font-size: var(--fontsize-20);
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
      }
    }
  }

  .company-profile {
    margin-bottom: 44px;
    padding: 40px;
    display: grid;
    grid-template-columns: 29.3% 1fr;
    gap: 20px 30px;
    grid-template-areas:"media content";
    border: 1px solid var(--primary-color);
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
      padding: 24px;
      grid-template-columns: 1fr;
      grid-template-areas:"media" "content";
    }
    .company-profile__content {
      grid-area: content;
      .company-profile__name {
        margin: 0 0 20px;
        font-size: var(--fontsize-20);
        font-weight: 700;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
      }
    }
    .company-profile__media {
      grid-area: media;
      img {
        padding: 20px;
      }
    }
    .text{
      margin: 0 0 20px;
      &:last-of-type {
        margin: 0;
      }
    }
  }

  .customer-profile {
    margin-bottom: 32px;
    padding-bottom: 32px;
    display: grid;
    grid-template-columns: 27.58% 1fr;
    gap: 32px 30px;
    grid-template-areas:"media content";
    border-bottom: 1px dotted #000;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
      grid-template-columns: 1fr;
      grid-template-areas:"media" "content";
    }
    .customer-profile__content {
      grid-area: content;
      .customer-profile__name {
        margin: 0 0 20px;
        font-size: var(--fontsize-20);
        font-weight: 700;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
      }
    }
    .customer-profile__media {
      grid-area: media;
    }
    .text{
      margin: 0 0 20px;
      &:last-of-type {
        margin: 0;
      }
    }
  }
  .customer-profile-list {
    margin-bottom: 40px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    > .customer-profile:last-child {
      margin-bottom: 0;
      padding-bottom: 0;
      border: none;
    }
  }

  .tag-block {
    .text-keywords {
      margin: 0;
      flex-direction: row;
      align-items: center;
      gap: 12px;
    }
    .text-keyword {
      font-weight: 400;
      .link {
        text-decoration: underline;
        &::before,
        &::after {
          display: none;
        }
      }
    }
    .tag-block .text-keywords {
      margin-top: 0;
    }
  }

  .document-summary {
    &.box {
      padding: 32px;
      @media screen and (max-width: 767px) {
        padding: 32px;
      }
    }
    .title-lv2--xsmall {
      margin: 0;
      font-size: var(--fontsize-20);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-18);
      }
    }
    .wp-block-separator {
      margin: 20px 0;
    }
  }

  .balloon {
    position: relative;
    width: 100%;
    background-color: var(--primary-color);
    color: var(--white-color);
    margin: 64px auto 40px;
    padding: 20px 32px;
    display: inline-block;
    @media screen and (max-width: 767px) {
      margin: 44px auto 20px;
      padding: 20px 24px;
    }
  }

  .balloon--bottom::after {
    content: "";
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 20px solid var(--primary-color);
  }

  .balloon__text {
    margin: 0;
    font-size: var(--fontsize-20);
    color: var(--white-color);
    font-weight: 700;
    text-align: center;
    @media screen and (max-width: 767px) {
      font-size: var(--fontsize-18);
    }
  }

  .book-introduction {
    a {
        &[target="_blank"] {
          &::after {
            display: none;
          }
      }
    }
    .text-category {
      margin: 0;
      color: var(--primary-color);
      font-size: var(--fontsize-14);
      line-height: 1;
    }
    .title-lv3--small {
      margin: 12px 0 0;
      font-size: var(--fontsize-20);
      @media screen and (max-width: 767px) {
        font-size: var(--fontsize-18);
      }
    }
    .text {
      margin: 20px 0 0;
    }
  }

  .strength {
    margin-bottom: 44px;
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 64px 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
      grid-template-columns: repeat(2,1fr);
      gap: 42px 20px;
    }
    .strength__item {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: span 4;
      gap: 20px;
      text-align: center;
    }
    .strength__title {
      margin: 0;
    }
    .strength__icon {
      text-align: center;
      img {
        width: 120px;
        height: auto;
      }
    }

    .strength__number {
      margin-top: auto;
      margin-bottom: auto;
      font-size: var(--fontsize-24);
      font-weight: bold;
      color: var(--primary-color);
      text-align: center;
      small {
        font-size: var(--fontsize-20);
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
      }
      strong {
        display: inline-block;
        padding-right: 2px;
        font-size: var(--fontsize-40);
        line-height: 1;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-32);
        }
      }
    }

    .strength__text {
      margin: 0;
      text-align: center;
    }
  }

  .support-area {
    margin-bottom: 44px;
    padding: 0 24px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    .support-area-headline {
      margin: 0 -24px;
      padding: 32px 24px;
      background-color: var(--lightblue-bgcolor);
      @media screen and (max-width: 767px) {
        padding: 24px;
      }
      p {
        margin: 0;
      }
      + .wp-block-heading {
        margin-top: 32px;
      }
    }
  }

  .customer-voices {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
      grid-template-columns: 1fr;
    }
    .customer-voices__item {
      padding: 24px;
      flex: 1 0 50%;
      background-color: var(--lightblue-bgcolor);
    }
    .customer-voices__text {
      font-size: var(--fontsize-16);
      strong {
        color: var(--primary-color);
      }
    }
    .customer-voices__author {
      font-size: var(--fontsize-14);
    }
  }

  .faq-block {
    margin-bottom: 44px;
    @media screen and (max-width: 767px) {
      margin-bottom: 32px;
    }
    .faq-links {
      padding: 32px;
      border: 1px solid var(--primary-color);
      @media screen and (max-width: 767px) {
        padding: 24px;
      }
    }
    .link {
      position: relative;
      padding-right: 32px;
      width: 100%;
      &::before, &::after {
        content: "";
        display: inline-block;
        position: absolute;
        top: 50%;
        right: 0;
        background-color: var(--primary-color);
        transform: translateY(-50%);
      }
    }
    dt {
      padding-bottom: 12px;
      border-bottom: 1px solid var(--primary-color);
      .link {
        margin-top: 0;
        font-size: var(--fontsize-20);
        font-weight: 700;
        @media screen and (max-width: 767px) {
          font-size: var(--fontsize-18);
        }
        &::after {
          width: 26px;
          height: 2px;
          margin-left: 8px;
        }
        &::before {
          margin-left: -12px;
          width: 13px;
          height: 2px;
          transform: translateY(-50%) rotate(40deg);
          transform-origin: calc(100% - 1px) 50%;
        }
      }

    }
    dd {
      margin: 0;
      .linklist {
        margin: 20px 0 0;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px 44px;
        @media screen and (max-width: 767px) {
          grid-template-columns: 1fr;
        }
        li {
          padding-left: 0;
          &::before {
            display: none;
          }
        }
      }
      .link {
        position: relative;
        width: 100%;
        &::after {
          width: 16px;
          height: 2px;
          margin-left: 8px;
        }
        &::before {
          margin-left: -8px;
          width: 8px;
          height: 2px;
          transform: translateY(-50%) rotate(40deg);
          transform-origin: calc(100% - 1px) 50%;
        }
        &[target="_blank"] {
          &::before {
            display: none;
          }
          &::after {
            content: "";
            display: inline-block;
            width: 16px;
            height: 16px;
            margin-left: 8px;
            background: url(/wp-content/themes/matlantis_theme2/assets/img/icon_blank.svg) no-repeat center center;
          }
        }
      }
    }
  }

  .faq-section {
    h2,
    .title-lv2--small {
      margin: 0;
      padding: 0;
      color: var(--primary-color);
    }
  }

  /* 新規Class */
  p + .wp-box {
    margin-top: 44px;
    @media screen and (max-width: 767px) {
      margin-top: 32px;
    }
  }
  .wp-box {
    margin-bottom: 40px !important;
    padding: 40px !important;
    border: 1px solid var(--primary-color);
    .wp-block-heading {
      margin-top: 0;
    }
    .wp-block-buttons {
      margin-bottom: 32px;
    }
    .wp-block-buttons:last-of-type {
      margin-bottom: 0;
    }
  }

  .table-lightpfp {
    th,td {
      border: none;
      border-left: 5px solid var(--white-color);
      border-bottom: 5px solid var(--white-color);
      &:first-of-type {
        border-left: none;
      }
    }
    td {
      background-color: var(--lightgray-bgcolor);
    }
    tr:first-child {
      td {
        background-color: transparent;
      }
    }
    td:first-child {
      background-color: var(--primary-color);
      color: var(--white-color);
    }
  }

  .table-pfp-version-history {
    overflow-x: auto;
    th,td {
      border: none;
      border-left: 5px solid var(--white-color);
      border-bottom: 5px solid var(--white-color);
      &:first-of-type {
        border-left: none;
      }
    }
    td {
      text-align: center;
      background-color: var(--lightgray-bgcolor);
    }
    tr:first-child {
      td:nth-of-type(n+2) {
        background-color: transparent;
      }
    }
    td:first-child {
      background-color: var(--primary-color);
      color: var(--white-color);
      white-space: nowrap;
    }
    .table-bg--orange {
      background-color: #feedcc;
    }
    .table-cell-progress {
      background-color: transparent;
      white-space: nowrap;
    }

  }

  .has-red-color {
    color: var(--red-color);
  }
  .has-orange-color {
    color: var(--cta-button-color);
  }
  .has-orange-background-color {
    background-color: var(--cta-button-color);
  }
  .wp-block-button__link.has-orange-background-color {
    border: none;
    background-color: var(--cta-button-color);
  }
  .has-gray-background-color {
    background-color: var(--lightgray-bordercolor);
  }
  .wp-block-button__link.has-gray-background-color {
    border: none;
    background-color: var(--lightgray-bordercolor);
    color: var(--gray-color);
    &::before, &::after {
      background-color: var(--gray-color);
    }
  }
}

.is-error-page {
  .title-lv2--center {
    padding-top: 0;
    + .text {
      margin-top: 64px;
    }
  }
  .link-button--center {
    margin-top: 64px;
  }
}

.is-maintenance {
  .footer__base__inner {
    display: block;
  }
}

sup {
  vertical-align: 0.55em;
  font-size: 0.6em;
}

sub {
  vertical-align: -0.1em;
  font-size: 0.6em;
}
