@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@400;600;700&display=swap");
/*===================================================

// Styleサイト 202408
// style.css

===================================================*/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

ul {
  list-style: none;
}

button {
  margin: 0;
  border: none;
  padding: 0;
  background: transparent;
  -webkit-appearance: none;
  appearance: none;
  font-family: inherit;
  box-shadow: none;
}

button {
  cursor: pointer;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  -moz-appearance: textfield;
}

html {
  box-sizing: border-box;
}

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

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

iframe {
  border: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

header,
footer,
main {
  display: block;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.7;
  color: #131416;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media print, screen and (min-width: 769px) {
  body {
    font-size: 16px;
  }
}
@media print {
  body {
    min-width: 1050px;
  }
}

a {
  color: #131416;
  text-underline-offset: 3px;
}
@media print, screen and (min-width: 769px) {
  a:hover {
    text-decoration: none;
  }
}

em {
  font-style: normal;
}

/*===================================================

 common

===================================================*/
.l-wrapper {
  position: relative;
}

/*===================================================

 animation

===================================================*/
@media print, screen and (min-width: 769px) {
  .anime-bottom {
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-bottom.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .anime-left {
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-left.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .anime--right {
    opacity: 0;
    visibility: hidden;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
  }
  .anime-right.visible {
    opacity: 1;
    visibility: visible;
    transform: translate(0, 0);
  }
  .anime-fadein {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
  }
  .anime-fadein.visible {
    opacity: 1;
    visibility: visible;
  }
}
@media print {
  .anime-bottom,
  .anime-top,
  .anime-right,
  .anime-left {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  .anime-fadein {
    opacity: 1 !important;
    visibility: visible !important;
  }
}
/*===================================================

 accessibility

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

/*===================================================

 header

===================================================*/
.l-header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  color: #fff;
  z-index: 10;
}
@media print, screen and (min-width: 769px) {
  .l-header {
    padding: 0 calc(80px + 4vw) 0 4vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0) 100%);
  }
}
.l-header a {
  color: #fff;
  text-decoration: none;
}
.l-header__inner {
  position: relative;
  height: 120px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .l-header__inner {
    height: 60px;
    justify-content: flex-start;
    padding: 0 120px 0 20px;
  }
}
.l-header__logo {
  display: flex;
  align-items: flex-end;
}
.l-header__logo-company img {
  width: 9.4vw;
  max-width: 180px;
  min-width: 140px;
  position: relative;
  bottom: -10px;
}
@media screen and (max-width: 768px) {
  .l-header__logo-company img {
    min-width: initial;
    width: 100px;
  }
}
.l-header__logo-list {
  margin-left: 40px;
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .l-header__logo-list {
    margin-left: 20px;
  }
}
.l-header__logo-list > li {
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .l-header__logo-list > li:not(:last-child) {
    padding-right: 32px;
    margin-right: 32px;
  }
  .l-header__logo-list > li:not(:last-child)::after {
    content: "";
    display: block;
    background: #fff;
    width: 1px;
    height: 30px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(35deg);
  }
}
.l-header__logo-list > li.logo-style img {
  width: 8.8vw;
  max-width: 132px;
  min-width: 100px;
}
@media screen and (max-width: 768px) {
  .l-header__logo-list > li.logo-style img {
    max-width: 86px;
    min-width: 86px;
  }
}
@media screen and (max-width: 768px) {
  .l-header__logo-list > li.logo-insight {
    display: none;
  }
}
.l-header__logo-list > li.logo-insight img {
  width: 5.2vw;
  max-width: 90px;
  min-width: 64px;
}
.l-header__list {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 2.4vw;
  font-size: 14px;
  letter-spacing: 0.1em;
  z-index: 10;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
}
.l-header__list a {
  transition: opacity 0.2s;
}
.l-header__list a:hover {
  opacity: 0.8;
}
@media print, screen and (max-width: 980px) {
  .l-header__list {
    display: none;
  }
}

@media print, screen and (min-width: 769px) {
  .l-sidebar {
    position: fixed;
    background: #1FB9C5;
    top: 0;
    right: 0;
    width: 80px;
    height: 100vh;
    z-index: 11;
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar {
    position: fixed;
    width: 100%;
    z-index: 11;
  }
}
.l-sidebar__inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.l-sidebar__menu {
  margin-top: auto;
}
.l-sidebar .header-lang {
  display: flex;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-sidebar .header-lang {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .wovn-languages {
    font-family: "Poppins", "Noto Sans JP", sans-serif;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar .wovn-languages {
    position: fixed;
    bottom: 120px;
    left: 0;
    width: 100%;
    text-align: center;
  }
}
.l-sidebar .wovn-languages .wovn-switch {
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .wovn-languages .wovn-switch {
    display: block;
    writing-mode: vertical-rl;
    padding: 0 4px;
    margin: 20px 0 0;
  }
  .l-sidebar .wovn-languages .wovn-switch::before {
    content: "";
    display: block;
    width: 2px;
    height: 100%;
    background: #131416;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar .wovn-languages .wovn-switch {
    display: inline-block;
    padding: 4px;
    margin: 0 10px;
  }
  .l-sidebar .wovn-languages .wovn-switch::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #131416;
    position: absolute;
    left: 0;
    bottom: 0;
    opacity: 0;
  }
}
.l-sidebar .wovn-languages .wovn-switch.selected {
  font-weight: 700;
}
.l-sidebar .wovn-languages .wovn-switch.selected::before {
  opacity: 1;
}
@media print, screen and (min-width: 769px) {
  .l-sidebar__icon-menu-list {
    margin-top: 40px;
    position: relative;
  }
  .l-sidebar__icon-menu-list::before {
    content: "";
    display: block;
    width: 40px;
    height: 1px;
    background: #131416;
    position: absolute;
    left: 50%;
    top: -16px;
    transform: translateX(-50%);
  }
}
@media print, screen and (min-width: 769px) {
  .l-sidebar__square-btn-list {
    margin-top: 16px;
    position: relative;
    right: 0;
    left: -40px;
    width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar__square-btn-list {
    position: fixed;
    bottom: -90px;
    left: 0;
    width: 100%;
    display: flex;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.4s 0.2s;
  }
  .l-sidebar__square-btn-list > li {
    flex: 1;
  }
}
.l-sidebar .sidebar-square-btn {
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 13px;
  line-height: 1;
  position: relative;
  transition: background 0.2s;
}
@media screen and (max-width: 768px) {
  .l-sidebar .sidebar-square-btn {
    width: 100%;
    height: 90px;
    font-size: 11px;
  }
}
.l-sidebar .sidebar-square-btn::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  bottom: 8px;
  right: 8px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .l-sidebar .sidebar-square-btn::before {
    width: 10px;
    height: 10px;
  }
}
.l-sidebar .sidebar-square-btn__inner {
  display: inline-flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .l-sidebar .sidebar-square-btn__company br {
    display: none;
  }
}
.l-sidebar .sidebar-square-btn__logo {
  margin-top: 10px;
}
.l-sidebar .sidebar-square-btn__logo img {
  height: 14px;
}
.l-sidebar .sidebar-square-btn__corporate {
  font-size: 15px;
  line-height: 1.2;
  text-align: center;
}
.l-sidebar .sidebar-square-btn--style {
  background: #131416;
}
.l-sidebar .sidebar-square-btn--style::before {
  /*background-image: url(../img/side_btn_arrow_gr.svg);*/
  background-image: url(../img/side_btn_arrow_pk.svg);
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .sidebar-square-btn--style:hover {
    background: #2A2B2C;
  }
}
.l-sidebar .sidebar-square-btn--insight {
  background: #131416;
}
.l-sidebar .sidebar-square-btn--insight::before {
  background-image: url(../img/side_btn_arrow_pk.svg);
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .sidebar-square-btn--insight:hover {
    background: #2A2B2C;
  }
}
.l-sidebar .sidebar-square-btn--corporate {
  background: #717171;
}
.l-sidebar .sidebar-square-btn--corporate::before {
  background-image: url(../img/side_btn_arrow_line.svg);
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .sidebar-square-btn--corporate:hover {
    background: #7a7a7a;
  }
}
.l-sidebar .global-menu {
  width: 100%;
  height: 90px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu {
    width: 60px;
    height: 60px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 11;
    background: #1FB9C5;
  }
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .global-menu {
    transition: opacity 0.2s;
  }
  .l-sidebar .global-menu:hover {
    opacity: 0.8;
  }
}
.l-sidebar .global-menu__line {
  width: 32px;
  height: 26px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu__line {
    width: 24px;
    height: 18px;
  }
}
.l-sidebar .global-menu__line span {
  display: block;
  background: #131416;
  width: 32px;
  height: 2px;
  position: absolute;
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu__line span {
    width: 24px;
  }
}
.l-sidebar .global-menu__line span:nth-child(1) {
  top: 0;
  left: 0;
}
.l-sidebar .global-menu__line span:nth-child(2) {
  top: 12px;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu__line span:nth-child(2) {
    top: 8px;
  }
}
.l-sidebar .global-menu__line span:nth-child(3) {
  bottom: 0;
}
.l-sidebar .global-menu[aria-expanded=true] .global-menu__line span:nth-child(1) {
  transform: rotate(45deg);
  top: 12px;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu[aria-expanded=true] .global-menu__line span:nth-child(1) {
    top: 8px;
  }
}
.l-sidebar .global-menu[aria-expanded=true] .global-menu__line span:nth-child(2) {
  display: none;
}
.l-sidebar .global-menu[aria-expanded=true] .global-menu__line span:nth-child(3) {
  transform: rotate(-45deg);
  bottom: 12px;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-menu[aria-expanded=true] .global-menu__line span:nth-child(3) {
    bottom: 8px;
  }
}
.l-sidebar .global-search,
.l-sidebar .global-contact {
  width: 100%;
  height: 60px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-search,
  .l-sidebar .global-contact {
    width: 60px;
    height: 60px;
    z-index: 11;
  }
}
.l-sidebar .global-search__icon:before,
.l-sidebar .global-contact__icon:before {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.l-sidebar .global-search {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-search {
    position: fixed;
    top: 0;
    right: 60px;
  }
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-contact {
    display: none;
  }
}
.l-sidebar .global-contact > a {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .global-contact > a {
    transition: opacity 0.2s;
  }
  .l-sidebar .global-contact > a:hover {
    opacity: 0.8;
  }
}
.l-sidebar .global-search__icon {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: relative;
  z-index: 1;
}
.l-sidebar .global-search__icon:before {
  background-image: url(../img/icon_search_bk.svg);
  width: 28px;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-search__icon:before {
    background-image: url(../img/icon_search_wt.svg);
  }
}
@media print, screen and (min-width: 769px) {
  .l-sidebar .global-search__icon {
    transition: opacity 0.2s;
  }
  .l-sidebar .global-search__icon:hover {
    opacity: 0.8;
  }
}
.l-sidebar .global-search__icon[aria-expanded=true] {
  background: #131416;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-search__icon[aria-expanded=true] {
    position: fixed;
    top: 8px;
    left: 0;
    width: 60px;
    height: 60px;
  }
}
.l-sidebar .global-search__icon[aria-expanded=true]:before {
  background-image: url(../img/icon_close_wt.svg) !important;
}
.l-sidebar .global-search__icon[aria-expanded=true]:hover {
  opacity: 1;
}
.l-sidebar .global-contact__icon:before {
  background-image: url(../img/icon_mail_bk.svg);
  width: 26px;
  height: 26px;
}
.l-sidebar .global-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  transition: opacity 0.4s;
  opacity: 0;
}
.l-sidebar .global-logo img {
  width: 16px;
}
@media screen and (max-width: 768px) {
  .l-sidebar .global-logo {
    display: none;
  }
}

body.gnav-open .page-top {
  opacity: 0;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  body.gnav-open .header-lang {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.4s 0.8s;
  }
  body.gnav-open .l-sidebar__square-btn-list {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    bottom: 0;
  }
  body.gnav-open .l-sidebar .global-search__icon::before {
    background-image: url(../img/icon_search_bk.svg);
  }
}

@media screen and (max-width: 768px) {
  .l-header.is-scroll + .l-sidebar .global-search__icon::before {
    background-image: url(../img/icon_search_bk.svg);
  }
}

/*-------------------------------------------------

 global-nav

-------------------------------------------------*/
.global-nav {
  position: fixed;
  right: 0;
  top: 0;
  height: 100dvh;
  width: 0;
  transform: translate(100vw, 0);
  transition: width 475ms ease-out, transform 450ms ease, border-radius 0.8s 0.1s ease;
  border-bottom-left-radius: 100vw;
  background: rgba(31, 185, 197, 0.95);
  z-index: 10;
}

.global-nav__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .global-nav__inner {
    padding-top: 60px;
    padding-bottom: 160px;
  }
}

.global-nav__menu-list {
  height: 100%;
  width: 100%;
  min-width: 600px;
  margin: 0;
  padding: 0;
  overflow: auto;
  overflow-x: hidden;
  pointer-events: auto;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
}

.global-nav__menu-list > li {
  transform: translatex(100vw);
  text-align: center;
}
.global-nav__menu-list > li a {
  text-decoration: none;
  text-align: center;
  display: block;
  padding: 16px;
  font-size: 40px;
  letter-spacing: 1px;
}
@media print, screen and (min-width: 769px) {
  .global-nav__menu-list > li a {
    transition: opacity 0.2s;
  }
  .global-nav__menu-list > li a:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
@media screen and (max-width: 768px) {
  .global-nav__menu-list > li a {
    font-size: 18px;
  }
}
.global-nav__menu-list > li a.link-open {
  display: inline-flex;
}
.global-nav__menu-list > li a.link-open:after {
  background: url(../img/icon_launch_bk.svg) no-repeat center;
  background-size: contain;
  margin-left: 8px;
}

.global-nav[aria-hidden=false] {
  width: 100vw;
  transform: translatex(0);
  border-bottom-left-radius: 0;
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li {
  transform: translatex(0);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li a {
  padding-right: 15px;
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(1) {
  transition: transform 1s 0.08s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(2) {
  transition: transform 1s 0.16s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(3) {
  transition: transform 1s 0.24s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(4) {
  transition: transform 1s 0.32s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(5) {
  transition: transform 1s 0.4s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(6) {
  transition: transform 1s 0.48s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(7) {
  transition: transform 1s 0.56s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(8) {
  transition: transform 1s 0.64s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(9) {
  transition: transform 1s 0.72s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(10) {
  transition: transform 1s 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(11) {
  transition: transform 1s 0.88s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(12) {
  transition: transform 1s 0.96s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(13) {
  transition: transform 1s 1.04s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(14) {
  transition: transform 1s 1.12s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(15) {
  transition: transform 1s 1.2s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(16) {
  transition: transform 1s 1.28s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(17) {
  transition: transform 1s 1.36s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(18) {
  transition: transform 1s 1.44s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(19) {
  transition: transform 1s 1.52s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
.global-nav[aria-hidden=false] .global-nav__menu-list > li:nth-child(20) {
  transition: transform 1s 1.6s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}

/*-------------------------------------------------

 search panel

-------------------------------------------------*/
.search-panel {
  position: absolute;
  background: #131416;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s;
  transition: none;
}
@media print, screen and (min-width: 769px) {
  .search-panel {
    top: 0;
    right: 80px;
    width: 360px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .search-panel {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
  }
}
.search-panel__inner {
  padding: 12px 12px 12px 36px;
}
@media screen and (max-width: 768px) {
  .search-panel__inner {
    padding: 20px 16px 20px 60px;
  }
}

.search-panel[aria-hidden=false] {
  opacity: 1;
  visibility: visible;
  transition: all 0.45s;
}
@media print, screen and (min-width: 769px) {
  .search-panel[aria-hidden=false] {
    border-radius: 30px 0 0 30px;
  }
}

html[lang=ja] .search-panel .search--en,
html[lang=en] .search-panel .search--ja {
  display: none !important;
}

.search-form .gsc-control-cse {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.search-form .gsc-control {
  width: auto !important;
}
.search-form form.gsc-search-box {
  margin-bottom: 0 !important;
}
.search-form table.gsc-search-box {
  margin-bottom: 0 !important;
}
.search-form table.gsc-search-box td.gsc-input {
  padding-right: 0 !important;
}
.search-form .gsc-input-box {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
}
.search-form .gsib_a {
  padding: 0 !important;
}
.search-form .gsib_a input {
  background: transparent !important;
  height: 36px !important;
  border-bottom: 1px solid #fff !important;
  color: #fff;
  outline: none;
  font-family: inherit;
  border-radius: 0 !important;
}
.search-form .gsc-search-button-v2 {
  background: transparent !important;
  border: none;
  position: relative;
  padding: 0 10px;
  border: none !important;
}
.search-form .gsc-search-button-v2 svg {
  display: none;
}
.search-form .gsc-search-button-v2:before {
  content: "";
  display: block;
  background: url(../img/icon_search_wt.svg) no-repeat center;
  background-size: contain;
  background-color: transparent !important;
  width: 28px;
  height: 28px;
}
.search-form .gscb_a,
.search-form .gsib_b,
.search-form .gsc-clear-button {
  display: none;
}

/*===================================================

 footer

===================================================*/
.l-footer {
  border-top: 1px solid #e9e9eb;
  padding: 0 calc(120px + 4vw) 0 4vw;
}
@media screen and (max-width: 768px) {
  .l-footer {
    padding: 0 20px;
  }
}
.l-footer a {
  color: #59595B;
}
.l-footer__inner {
  padding: 40px 0;
  color: #59595B;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .l-footer__inner {
    padding: 24px 0;
    font-size: 12px;
  }
}
.l-footer__accessibility {
  font-size: 14px;
  line-height: 1.7;
  color: #59595B;
  padding: 16px;
  border: 1px solid #d9d9df;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer__accessibility {
    font-size: 12px;
    margin-bottom: 24px;
  }
}
.l-footer__right {
  margin-left: auto;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .l-footer__right {
    margin: 24px auto 0;
    text-align: center;
  }
}
.l-footer__menu-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1em 3em;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .l-footer__menu-list {
    justify-content: center;
  }
}
.l-footer__menu-list > li > a {
  text-decoration: none;
}
.l-footer__address {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .l-footer__address {
    font-size: 11px;
  }
}
.l-footer__copyright {
  width: 100%;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .l-footer__copyright {
    font-size: 10px;
    text-align: center;
    margin-top: 32px;
  }
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 140px;
  z-index: 11;
  transition: opacity 0.4s;
  opacity: 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  .page-top {
    bottom: 20px;
    right: 20px;
  }
}
.page-top.is-active {
  opacity: 1;
}
.page-top__btn {
  border-radius: 50%;
  width: 36px;
  height: 36px;
  position: relative;
  background: #fff;
  cursor: pointer;
  box-shadow: 0 3px 10px 0 rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.2s;
}
.page-top__btn:before {
  content: "";
  display: block;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGhlaWdodD0iMjRweCIgdmlld0JveD0iMCAtOTYwIDk2MCA5NjAiIHdpZHRoPSIyNHB4IiBmaWxsPSIjMTMxNDE2Ij48cGF0aCBkPSJNNDgwLTUyOCAzMjQtMzcycS0xMSAxMS0yOCAxMXQtMjgtMTFxLTExLTExLTExLTI4dDExLTI4bDE4NC0xODRxMTItMTIgMjgtMTJ0MjggMTJsMTg0IDE4NHExMSAxMSAxMSAyOHQtMTEgMjhxLTExIDExLTI4IDExdC0yOC0xMUw0ODAtNTI4WiIvPjwvc3ZnPg==") no-repeat center;
  background-size: 24px auto;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page-top.is-scroll {
  opacity: 1;
}
.page-top:hover .page-top__btn {
  box-shadow: 0 3px 14px 0 rgba(0, 0, 0, 0.3);
}

/*===================================================

 icon

===================================================*/
.icon-instagram {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_instagram.svg) no-repeat center;
  background-size: contain;
}

.icon-line {
  display: inline-block;
  width: 22px;
  height: 22px;
  background: url(../img/icon_line.svg) no-repeat center;
  background-size: contain;
}

.icon-twitter {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_twitter.svg) no-repeat center;
  background-size: contain;
}

.icon-facebook {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/icon_facebook.svg) no-repeat center;
  background-size: contain;
}

.icon-pdf {
  display: inline-block;
  width: 1em;
  height: 1em;
  background: url(../img/icon_pdf_bk.svg) no-repeat center;
  background-size: contain;
}

/*===================================================

 hero

===================================================*/
.hero-content {
  width: 100%;
  position: relative;
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .hero-content {
    padding-right: 0;
  }
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 5;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .hero-scroll {
    bottom: 20px;
  }
}
.hero-scroll__txt {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media print, screen and (min-width: 769px) {
  .hero-scroll__txt {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .hero-scroll__txt {
    font-size: 11px;
    line-height: 1;
  }
}
.hero-scroll__arrow {
  margin-top: 8px;
  border-radius: 50%;
  border: 1px solid #fff;
  width: 22px;
  height: 22px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-scroll__arrow {
    margin-top: 8px;
    width: 13px;
    height: 13px;
  }
}
.hero-scroll__arrow:before {
  content: "";
  display: block;
  background: url(../img/arrow01_down_wt.svg) no-repeat center;
  background-size: contain;
  width: 5px;
  height: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 6px;
}
@media screen and (max-width: 768px) {
  .hero-scroll__arrow:before {
    width: 8px;
    height: 12px;
    bottom: 4px;
  }
}
@media print, screen and (min-width: 769px) {
  .hero-scroll__arrow {
    animation: blinkdown 2s ease-in-out 0s infinite forwards;
  }
}
@media screen and (max-width: 768px) {
  .hero-scroll__arrow {
    animation: blinkdownSP 2s ease-in-out 0s infinite forwards;
  }
}

@keyframes blinkdown {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}
@keyframes blinkdownSP {
  0% {
    opacity: 0;
    transform: translateY(0);
  }
  10% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}
.hero-slider {
  height: 100%;
}
.hero-slider__pagination {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 20px 80px;
}
@media screen and (max-width: 768px) {
  .hero-slider__pagination {
    padding: 5px 16px;
    justify-content: flex-end;
  }
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 24px;
  height: 4px;
  background: #fff;
  opacity: 0.5;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .swiper-pagination-bullet {
    width: 18px;
    margin: 0 2px !important;
  }
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.hero-slide__link {
  display: block;
  position: relative;
}
.hero-slide__img {
  width: 100%;
  height: 100dvh;
  min-height: 600px;
}
@media screen and (max-width: 768px) {
  .hero-slide__img {
    min-height: 480px;
  }
}
.hero-slide__img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-slide__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-slide__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  padding: 0 4vw 100px;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .hero-slide__content {
    padding: 0 24px 100px;
  }
}
.hero-slide__content-inner {
  position: relative;
  color: #fff;
}
.hero-slide__category {
  display: flex;
  align-items: center;
  gap: 0 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .hero-slide__category {
    gap: 0 10px;
  }
}
.hero-slide__category .hero-number {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .hero-slide__category .hero-number {
    font-size: 24px;
  }
}
.hero-slide__category .hero-category {
  font-size: 20px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .hero-slide__category .hero-category {
    font-size: 14px;
  }
}
.hero-slide__ttl {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .hero-slide__ttl {
    font-size: 24px;
    margin-top: 8px;
  }
}
.hero-slide__sub-ttl {
  margin-top: 16px;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hero-slide__sub-ttl {
    font-size: 16px;
    margin-top: 8px;
  }
}
.hero-slide__txt {
  margin-top: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hero-slide__txt {
    margin-top: 8px;
    font-size: 11px;
  }
}
.hero-slide__tag-list {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  line-height: 1.2;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .hero-slide__tag-list {
    margin-top: 8px;
    font-size: 11px;
    gap: 8px 16px;
  }
}
.hero-slide__btn {
  margin-top: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
  max-width: 240px;
  height: 48px;
  font-size: 14px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hero-slide__btn {
    margin-top: 16px;
    max-width: 120px;
    height: 32px;
    font-size: 11px;
  }
}
.hero-slide__btn:before {
  content: "";
  display: block;
  background: url(../img/arrow02_wt.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .hero-slide__btn:before {
    width: 16px;
    height: 16px;
    right: 12px;
  }
}
@media print, screen and (min-width: 769px) {
  .hero-slide__btn:hover:before {
    right: 18px;
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .hero-slide__img,
.swiper-slide-duplicate-active .hero-slide__img,
.swiper-slide-prev .hero-slide__img {
  animation: zoomUp 8s linear 0s normal both;
}

.hero-single {
  height: 100%;
  overflow: hidden;
  position: relative;
}
.hero-single__img {
  height: 70vh;
  min-height: 600px;
}
@media screen and (max-width: 768px) {
  .hero-single__img {
    min-height: 480px;
  }
}
.hero-single__img:after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}
.hero-single__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.hero-single__content {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1600px;
  padding: 125px 4vw 110px;
  z-index: 4;
}
@media screen and (max-width: 768px) {
  .hero-single__content {
    padding: 0 24px 72px;
    top: auto;
    transform: none;
    left: 0;
    bottom: 0;
  }
}
.hero-single__content-inner {
  position: relative;
  color: #fff;
}
.hero-single__ttl {
  font-size: 40px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hero-single__ttl {
    font-size: 24px;
  }
}
.hero-single__sub-ttl {
  margin-top: 16px;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .hero-single__sub-ttl {
    font-size: 16px;
    margin-top: 8px;
  }
}
.hero-single .breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 14px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .hero-single .breadcrumbs {
    font-size: 12px;
    margin-bottom: 16px;
  }
}
.hero-single .breadcrumbs > li:after {
  content: ">";
  margin: 0 1em;
}
.hero-single .breadcrumbs > li a {
  color: #fff;
  text-decoration: none;
}
.hero-single .breadcrumbs > li a:hover {
  text-decoration: underline;
}

/*===================================================

 local

===================================================*/
.local-header {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #131416;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 600px;
  max-height: 75vh;
}
@media print, screen and (min-width: 769px) {
  .local-header {
    background-attachment: fixed;
    padding: 125px calc(120px + 4vw) 0 4vw;
  }
}
@media print {
  .local-header {
    background-attachment: initial;
  }
}
@media screen and (max-width: 768px) {
  .local-header {
    height: 480px;
    max-height: 50vh;
    padding-top: 60px;
  }
}

.local-header__content {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}

.local-header__ttl {
  color: #fff;
  font-size: 40px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .local-header__ttl {
    font-size: 24px;
  }
}

.local-header--simple {
  height: 280px;
}
@media screen and (max-width: 768px) {
  .local-header--simple {
    height: 160px;
  }
}
.local-header--simple .local-header__ttl {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .local-header--simple .local-header__ttl {
    font-size: 18px;
  }
}

/*===================================================

 aritcle

===================================================*/
@media print, screen and (min-width: 769px) {
  .article-list {
    display: flex;
    flex-wrap: wrap;
    gap: 80px 4vw;
  }
}

@media print, screen and (min-width: 769px) {
  .article-item {
    width: calc((100% - 8vw) / 3);
  }
}
@media screen and (max-width: 768px) {
  .article-item {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 768px) {
  .article-card {
    display: flex;
  }
}
.article-card a {
  text-decoration: none;
}
.article-card__img {
  overflow: hidden;
  aspect-ratio: 3/2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article-card__img {
    width: 36vw;
    flex-shrink: 0;
  }
}
@media print, screen and (min-width: 769px) {
  .article-card__img > a img {
    transition: transform 0.32s ease-out;
  }
  .article-card__img > a:hover img {
    transform: scale(1.08);
  }
}
.article-card__icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 8px 12px;
}
@media screen and (max-width: 768px) {
  .article-card__icon {
    padding: 4px;
  }
}
.article-card__icon::before {
  content: "";
  display: block;
  width: 48px;
  height: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .article-card__icon::before {
    width: 32px;
    height: 6px;
  }
}
.article-card__icon.insight {
  background: #F27D78;
}
.article-card__icon.insight::before {
  background-image: url(../img/logo_insight_wtbk.svg);
}
.article-card__icon.style {
  background: #1FB9C5;
}
.article-card__icon.style::before {
  background-image: url(../img/logo_style_wtbk.svg);
}
.article-card__desc {
  padding-top: 16px;
}
@media screen and (max-width: 768px) {
  .article-card__desc {
    padding: 0 0 0 12px;
  }
}
.article-card__ttl {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .article-card__ttl {
    font-size: 13px;
  }
}
.article-card__txt {
  margin-top: 12px;
  font-size: 14px;
  color: #59595B;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 768px) {
  .article-card__txt {
    display: none;
  }
}
.article-card__tag-list {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
@media screen and (max-width: 768px) {
  .article-card__tag-list {
    margin-top: 8px;
    gap: 0 8px;
    line-height: 1.2;
  }
}
.article-card .tag-btn {
  color: #59595B;
  font-size: 14px;
  padding: 0.5em 1.2em;
}
@media screen and (max-width: 768px) {
  .article-card .tag-btn {
    font-size: 11px;
    border: none;
    padding: 0;
  }
}

.article-list-section__tag {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .article-list-section__tag {
    margin: 0 -20px 16px;
  }
}

/*===================================================

 section

===================================================*/
.section {
  padding: 0 calc(120px + 4vw) 0 4vw;
}
@media screen and (max-width: 768px) {
  .section {
    padding: 0 20px;
  }
}

.section-container {
  padding: 80px 0;
  max-width: 1600px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .section-container {
    padding: 48px 0;
  }
}

.section-heading01,
.section-heading02,
.section-heading03 {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1.4;
  letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 1.5em;
}

.section-heading01 {
  font-size: 40px;
}
@media screen and (max-width: 768px) {
  .section-heading01 {
    font-size: 20px;
  }
}

.section-heading02 {
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .section-heading02 {
    font-size: 18px;
  }
}

.section-heading03 {
  font-size: 24px;
}
@media screen and (max-width: 768px) {
  .section-heading03 {
    font-size: 16px;
  }
}

/*===================================================

 button

===================================================*/
.btn-wrap {
  margin-top: 56px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .btn-wrap {
    margin-top: 40px;
    gap: 20px;
  }
}

.btn--col1 {
  width: 100%;
}

.btn--col2 {
  width: calc((100% - 48px) / 2);
}
@media screen and (max-width: 768px) {
  .btn--col2 {
    width: auto;
  }
}

.btn--col3 {
  width: calc((100% - 96px) / 3);
}
@media screen and (max-width: 768px) {
  .btn--col3 {
    width: auto;
  }
}

.btn-primary,
.btn-primary-arr {
  background: #131416;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  min-width: 280px;
  height: 64px;
  padding: 20px 48px;
  text-decoration: none;
  position: relative;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .btn-primary,
  .btn-primary-arr {
    height: 44px;
    padding: 8px 24px;
    min-width: 240px;
    font-size: 12px;
  }
}

.btn-primary-arr:before {
  content: "";
  display: block;
  background: url(../img/arrow02_wt.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .btn-primary-arr:before {
    width: 18px;
    height: 18px;
  }
}
@media print, screen and (min-width: 769px) {
  .btn-primary-arr:hover:before {
    right: 10px;
  }
}

.btn-secondary,
.btn-secondary-arr {
  background: #fff;
  border: 1px solid #131416;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 10px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: bold;
  letter-spacing: 0.1em;
  min-width: 360px;
  height: 64px;
  padding: 20px 48px;
  text-decoration: none;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .btn-secondary,
  .btn-secondary-arr {
    transition: background 0.2s;
  }
  .btn-secondary:hover,
  .btn-secondary-arr:hover {
    background: #f4f4f5;
  }
}
@media screen and (max-width: 768px) {
  .btn-secondary,
  .btn-secondary-arr {
    height: 44px;
    padding: 8px 24px;
    font-size: 12px;
    min-width: 240px;
  }
}
.btn-secondary small,
.btn-secondary-arr small {
  margin-left: 1.5em;
  font-size: 13px;
}
.btn-secondary .icon-pdf,
.btn-secondary-arr .icon-pdf {
  min-width: 24px;
  min-height: 24px;
}
@media screen and (max-width: 768px) {
  .btn-secondary .icon-pdf,
  .btn-secondary-arr .icon-pdf {
    min-width: 18px;
    min-height: 18px;
  }
}

.btn-secondary-arr:before {
  content: "";
  display: block;
  background: url(../img/arrow02_bk.svg) no-repeat center;
  background-size: contain;
  width: 24px;
  height: 24px;
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .btn-secondary-arr:before {
    width: 18px;
    height: 18px;
  }
}
@media print, screen and (min-width: 769px) {
  .btn-secondary-arr:hover:before {
    right: 10px;
  }
}

.link-open {
  display: inline-flex;
  align-items: center;
}
.link-open:after {
  content: "";
  display: inline-block;
  background: url(../img/icon_launch_bk.svg) no-repeat center;
  background-size: contain;
  width: 0.8em;
  height: 0.8em;
  margin: 0 3px;
}

/*===================================================

 pager

===================================================*/
.list-pager {
  margin-top: 80px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  line-height: 1;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .list-pager {
    margin-top: 40px;
    gap: 16px 8px;
  }
}
.list-pager a {
  text-decoration: none;
}
.list-pager a:hover {
  text-decoration: underline;
}
.list-pager__prev, .list-pager__next {
  display: inline-flex;
  align-items: center;
  gap: 0 8px;
}
@media screen and (max-width: 768px) {
  .list-pager__prev, .list-pager__next {
    font-size: 0;
  }
}
.list-pager__prev:before, .list-pager__next:after {
  content: "";
  display: block;
  background: url(../img/arrow02_bk.svg) no-repeat center;
  background-size: contain;
  width: 20px;
  height: 20px;
}
.list-pager__prev:before {
  transform: scale(-1, 1);
}
.list-pager__page {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.list-pager__page.is-current {
  font-weight: 600;
  color: #fff;
  background: #131416;
  pointer-events: none;
}

.l-pager {
  border-style: solid;
  border-width: 1px 0 0;
  border-color: #e9e9eb;
}
.l-pager__inner {
  padding: 64px calc(120px + 4vw) 64px 4vw;
}
@media screen and (max-width: 768px) {
  .l-pager__inner {
    padding: 32px 20px;
  }
}

.pager-links {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.pager-links a {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}
.pager-links__prev, .pager-links__next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 0 24px;
  padding: 24px 0;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pager-links__prev, .pager-links__next {
    font-size: 14px;
    gap: 0 12px;
    padding: 16px 0;
  }
}
.pager-links__prev {
  left: 0;
}
.pager-links__next {
  right: 0;
}
.pager-links__prev-arrow, .pager-links__next-arrow {
  border-radius: 50%;
  border: 1px solid #131416;
  width: 34px;
  height: 34px;
  position: relative;
}
.pager-links__prev-arrow:before, .pager-links__next-arrow:before {
  content: "";
  display: block;
  width: 32px;
  height: 7px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .pager-links__prev-arrow, .pager-links__next-arrow {
    width: 17px;
    height: 17px;
  }
  .pager-links__prev-arrow:before, .pager-links__next-arrow:before {
    width: 16px;
    height: 4px;
  }
}
.pager-links__prev-arrow:before {
  background: url(../img/arrow01_back_bk.svg) no-repeat center;
  background-size: contain;
  left: 12px;
}
@media screen and (max-width: 768px) {
  .pager-links__prev-arrow:before {
    left: 6px;
  }
}
.pager-links__next-arrow:before {
  background: url(../img/arrow01_forward_bk.svg) no-repeat center;
  background-size: contain;
  right: 12px;
}
@media screen and (max-width: 768px) {
  .pager-links__next-arrow:before {
    right: 6px;
  }
}
.pager-links__top {
  border-bottom: 1px solid #131416;
  padding-bottom: 12px;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .pager-links__top {
    font-size: 11px;
    padding-bottom: 8px;
  }
}

/*===================================================

 tag

===================================================*/
.tag-btn {
  display: inline-block;
  border: 1px solid #d9d9df;
  border-radius: 40px;
  text-decoration: none;
  line-height: 1;
  padding: 0.6em 1.5em;
}
@media print, screen and (min-width: 769px) {
  .tag-btn {
    transition: background 0.2s;
  }
  .tag-btn:hover {
    background: #f4f4f5;
  }
}
@media screen and (max-width: 768px) {
  .tag-btn {
    padding: 0.5em 1em;
    font-size: 12px;
  }
}

.tag-trend {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .tag-trend {
    flex-direction: column;
    align-items: center;
  }
}
.tag-trend__label {
  background: #131416;
  color: #fff;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 10px;
  width: 124px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .tag-trend__label {
    font-size: 10px;
    width: auto;
    padding: 6px 10px;
  }
}
.tag-trend__label:before {
  content: "";
  display: block;
  border-style: solid;
  border-width: 6px;
  border-color: transparent transparent transparent #131416;
  position: absolute;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .tag-trend__label:before {
    border-width: 4px;
    border-color: #131416 transparent transparent transparent;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);
  }
}
.tag-trend__scroll {
  padding-left: 24px;
}
@media screen and (max-width: 768px) {
  .tag-trend__scroll {
    width: 100%;
    padding: 16px 0;
    overflow-x: auto;
  }
}
.tag-trend__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .tag-trend__list {
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 8px;
    padding: 0 16px;
  }
  .tag-trend__list > li:last-child {
    padding-right: 16px;
  }
}

/*===================================================

 consult

===================================================*/
.consult-section {
  background: #131416;
  color: #fff;
}
.consult-section .contact-btn-wrap {
  padding-right: 80px;
}
@media screen and (max-width: 768px) {
  .consult-section .contact-btn-wrap {
    padding: 0;
  }
}
.consult-section .contact-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4vw;
  background: #131416;
  color: #fff;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: 0.05em;
  font-size: 40px;
  text-align: center;
  position: relative;
}
@media print, screen and (min-width: 769px) {
  .consult-section .contact-btn {
    transition: background 0.4s;
  }
  .consult-section .contact-btn:hover {
    background: #2A2B2C;
  }
}
@media screen and (max-width: 768px) {
  .consult-section .contact-btn {
    padding: 32px 24px;
    font-size: 20px;
  }
}
.consult-section .contact-btn:before {
  content: "";
  display: block;
  background: url(../img/arrow02_wt.svg) no-repeat center;
  background-size: contain;
  width: 56px;
  height: 56px;
  position: absolute;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.4s;
}
@media screen and (max-width: 768px) {
  .consult-section .contact-btn:before {
    width: 24px;
    height: 24px;
    right: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  .consult-section .contact-btn:hover:before {
    right: 80px;
  }
}
.consult-section__inner {
  border-top: 1px solid #59595B;
  padding: 100px calc(120px + 4vw) 100px 4vw;
}
@media screen and (max-width: 768px) {
  .consult-section__inner {
    padding: 48px 20px;
  }
}

.consult-mail {
  max-width: 1600px;
  margin: 0 auto;
}
@media print, screen and (min-width: 769px) {
  .consult-mail__row {
    display: flex;
    align-items: flex-start;
    gap: 4vw;
  }
}
@media print, screen and (min-width: 769px) {
  .consult-mail__row-left {
    width: 45%;
  }
}
@media print, screen and (min-width: 769px) {
  .consult-mail__row-right {
    width: 55%;
  }
}
@media screen and (max-width: 768px) {
  .consult-mail__row-right {
    margin-top: 40px;
  }
}
.consult-mail__ttl {
  font-size: 32px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .consult-mail__ttl {
    font-size: 18px;
  }
}
.consult-mail__ttl-sub {
  color: #F27D78;
}
.consult-mail__ttl-main {
  font-size: min(5.2vw, 100px);
}
.consult-mail__ttl-main::first-letter {
  color: #F27D78;
}
@media screen and (max-width: 768px) {
  .consult-mail__ttl-main {
    font-size: 56px;
  }
}
.consult-mail__txt {
  margin-top: 36px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .consult-mail__txt {
    margin-top: 24px;
    font-size: 14px;
  }
}
.consult-mail__note {
  margin-top: 2em;
  font-size: 14px;
  color: #ccc;
}
@media screen and (max-width: 768px) {
  .consult-mail__note {
    font-size: 12px;
  }
}
.consult-mail__note a {
  color: #fff;
  text-decoration: underline;
  margin: 0 0.5em;
}
.consult-mail__note a:hover {
  text-decoration: none;
}

.consult-mail-form__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .consult-mail-form__inner {
    flex-direction: column;
    gap: 16px 0;
  }
}
.consult-mail-form__field {
  width: calc((100% - 40px) / 2);
}
@media screen and (max-width: 599px) {
  .consult-mail-form__field {
    width: 100%;
  }
}
.consult-mail-form__field label {
  font-weight: 500;
  display: flex;
  align-items: center;
  font-size: 16px;
  line-height: 1;
  margin-bottom: 8px;
}
@media screen and (max-width: 599px) {
  .consult-mail-form__field label {
    font-size: 14px;
    margin-bottom: 4px;
  }
}
.consult-mail-form .ico-required {
  background: #E93232;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  font-weight: 400;
  padding: 4px 8px;
  border-radius: 1px;
  margin-left: 8px;
}
@media screen and (max-width: 599px) {
  .consult-mail-form .ico-required {
    font-size: 11px;
    padding: 2px 4px;
  }
}
.consult-mail-form .input-text {
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 1px;
  box-shadow: none;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  height: 40px;
  padding: 10px;
  font-size: 14px;
  font-family: inherit;
}
.consult-mail-form__btn {
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  box-shadow: none;
  border: 2px solid #fff;
  color: #fff;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
  width: 100%;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media print, screen and (min-width: 769px) {
  .consult-mail-form__btn:hover {
    border-radius: 30px;
  }
}
@media screen and (max-width: 599px) {
  .consult-mail-form__btn {
    height: 48px;
    font-size: 14px;
  }
}

.consult-mail-form__field--privacy {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin: 24px 0;
}
@media screen and (max-width: 599px) {
  .consult-mail-form__field--privacy {
    margin: 16px 0;
  }
}
.consult-mail-form__field--privacy label {
  margin-bottom: 0;
  margin-right: 16px;
}
.consult-mail-form__field--privacy input[type=checkbox] {
  margin-left: 24px;
  margin-right: 8px;
  transform: scale(1.5);
}

.formrun-system-show {
  color: #E93232;
  font-size: 13px;
  font-weight: bold;
}

.frame-mail {
  height: 480px;
}
@media screen and (min-width: 769px) and (max-width: 1394px) {
  .frame-mail {
    height: 560px;
  }
}
@media screen and (max-width: 768px) {
  .frame-mail {
    height: 560px;
  }
}

/*===================================================

 検索ウィジェット MARS FINDER
 デザイン調整

===================================================*/
.mf_finder_container {
  width: 100%;
}
.mf_finder_container .mf_finder_searchBox {
  margin: 0;
}
.mf_finder_container .mf_finder_searchBox_items {
  padding: 0;
}
.mf_finder_container .mf_finder_searchBox_query_input {
  font-size: 18px;
  min-height: 36px;
  border: none;
  padding: 0;
  background: transparent;
  color: #fff;
  border-bottom: 1px solid #fff !important;
  outline: none;
}
@media screen and (max-width: 768px) {
  .mf_finder_container .mf_finder_searchBox_query_input {
    font-size: 16px;
    min-height: 36px;
  }
}
.mf_finder_container .mf_finder_searchBox_submit {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  width: 50px;
}
.mf_finder_container .mf_finder_searchBox_submit::before {
  content: "";
  display: block;
  background: url(../img/icon_search_wt.svg) no-repeat center;
  background-size: contain;
  background-color: transparent !important;
  width: 28px;
  height: 28px;
  margin: 0;
}
.mf_finder_container .mf_finder_searchBox_submit span {
  margin: 0;
}
.mf_finder_container .mf_finder_searchBox_suggest_items {
  border: none;
}

/*===================================================

 snippet

===================================================*/

/*===20250716 出し分け追加======*/

html[lang=ja] .is-show--en,
html[lang=en] .is-show--ja {
  display: none !important;
}

.is-hide {
  display: none !important;
}

@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .sp-hide {
    display: none !important;
  }
}

.bold {
  font-weight: bold;
}

.fc--red {
  color: #E93232 !important;
}

.fc--white {
  color: #fff !important;
}

.fc--black {
  color: #131416 !important;
}

.fc--blue {
  color: #004896 !important;
}

.fc--gray {
  color: #59595B !important;
}

.fc--green {
  color: #1FB9C5 !important;
}

.fc--pink {
  color: #F27D78 !important;
}

.fs-xs {
  font-size: 12px !important;
}

.fs-s {
  font-size: 14px !important;
}

.fs-m {
  font-size: 16px !important;
}

.fs-l {
  font-size: 18px !important;
}

.fs-xl {
  font-size: 20px !important;
}

@media screen and (max-width: 768px) {
  .sp-fs--10 {
    font-size: 10px !important;
  }
  .sp-fs--11 {
    font-size: 11px !important;
  }
  .sp-fs--12 {
    font-size: 12px !important;
  }
  .sp-fs--13 {
    font-size: 13px !important;
  }
  .sp-fs--14 {
    font-size: 14px !important;
  }
  .sp-fs--15 {
    font-size: 15px !important;
  }
  .sp-fs--16 {
    font-size: 16px !important;
  }
  .sp-fs--17 {
    font-size: 17px !important;
  }
  .sp-fs--18 {
    font-size: 18px !important;
  }
  .sp-fs--19 {
    font-size: 19px !important;
  }
  .sp-fs--20 {
    font-size: 20px !important;
  }
  .sp-fs--21 {
    font-size: 21px !important;
  }
  .sp-fs--22 {
    font-size: 22px !important;
  }
  .sp-fs--23 {
    font-size: 23px !important;
  }
  .sp-fs--24 {
    font-size: 24px !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-fs--10 {
    font-size: 10px !important;
  }
  .pc-fs--11 {
    font-size: 11px !important;
  }
  .pc-fs--12 {
    font-size: 12px !important;
  }
  .pc-fs--13 {
    font-size: 13px !important;
  }
  .pc-fs--14 {
    font-size: 14px !important;
  }
  .pc-fs--15 {
    font-size: 15px !important;
  }
  .pc-fs--16 {
    font-size: 16px !important;
  }
  .pc-fs--17 {
    font-size: 17px !important;
  }
  .pc-fs--18 {
    font-size: 18px !important;
  }
  .pc-fs--19 {
    font-size: 19px !important;
  }
  .pc-fs--20 {
    font-size: 20px !important;
  }
  .pc-fs--21 {
    font-size: 21px !important;
  }
  .pc-fs--22 {
    font-size: 22px !important;
  }
  .pc-fs--23 {
    font-size: 23px !important;
  }
  .pc-fs--24 {
    font-size: 24px !important;
  }
  .pc-fs--26 {
    font-size: 26px !important;
  }
  .pc-fs--28 {
    font-size: 28px !important;
  }
  .pc-fs--30 {
    font-size: 30px !important;
  }
  .pc-fs--32 {
    font-size: 32px !important;
  }
  .pc-fs--36 {
    font-size: 36px !important;
  }
  .pc-fs--40 {
    font-size: 40px !important;
  }
}
.align--c {
  text-align: center !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--c {
    text-align: center !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--c {
    text-align: center !important;
  }
}
.align--l {
  text-align: left !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--l {
    text-align: left !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--l {
    text-align: left !important;
  }
}
.align--r {
  text-align: right !important;
}

@media print, screen and (min-width: 769px) {
  .pc-align--r {
    text-align: right !important;
  }
}
@media screen and (max-width: 768px) {
  .sp-align--r {
    text-align: right !important;
  }
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 24px;
}
@media screen and (max-width: 768px) {
  .flex-wrap {
    gap: 24px 0;
  }
}

.flex-item {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .flex-item {
    flex: auto;
    width: 100%;
  }
}

.youtube-wrap {
  display: flex;
  justify-content: center;
  margin: 2em 0;
}
.youtube-wrap iframe {
  max-width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .youtube-wrap iframe {
    width: 100%;
  }
}

hr {
  height: 0;
  margin: 1.5em 0;
  padding: 0;
  border: none;
  border-top: 1px solid #d9d9df;
}

.table-normal {
  width: 100%;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .table-normal {
    font-size: 14px;
  }
}
.table-normal th {
  white-space: nowrap;
}
.table-normal th,
.table-normal td {
  border: 1px solid #ccc;
  padding: 0.8em;
  text-align: left;
}
.table-normal thead th {
  background: #e9e9eb;
  font-weight: 400;
}
.table-normal tbody th {
  background: #f4f4f5;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .table-scroll {
    overflow-x: auto;
  }
  .table-scroll .table-normal {
    white-space: nowrap;
  }
}
.width--a {
  width: auto;
}

.width--40px {
  width: 40px !important;
}

.width--60px {
  width: 60px !important;
}

.width--80px {
  width: 100px !important;
}

.width--100px {
  width: 100px !important;
}

.width--120px {
  width: 120px !important;
}

.width--160px {
  width: 160px !important;
}

.width--180px {
  width: 180px !important;
}

.width--200px {
  width: 200px !important;
}

.width--240px {
  width: 240px !important;
}

.width--320px {
  width: 320px !important;
}

.width--400px {
  width: 400px !important;
}

.width--480px {
  width: 480px !important;
}

.width--560px {
  width: 560px !important;
}

.width--640px {
  width: 640px !important;
}

.width--720px {
  width: 720px !important;
}

.width--10p {
  width: 10% !important;
}

.width--20p {
  width: 20% !important;
}

.width--25p {
  width: 25% !important;
}

.width--30p {
  width: 30% !important;
}

.width--33p {
  width: 33.3333% !important;
}

.width--40p {
  width: 40% !important;
}

.width--50p {
  width: 50% !important;
}

.width--60p {
  width: 60% !important;
}

.width--70p {
  width: 70% !important;
}

.width--75p {
  width: 75% !important;
}

.width--80p {
  width: 80% !important;
}

.width--90p {
  width: 90% !important;
}

.width--100p {
  width: 100% !important;
}

.width--1em {
  width: 1em;
}

.width--2em {
  width: 2em;
}

.width--3em {
  width: 3em;
}

.width--4em {
  width: 4em;
}

.width--5em {
  width: 5em;
}

@media screen and (max-width: 768px) {
  .sp-width--a {
    width: auto;
  }
  .sp-width--40px {
    width: 40px !important;
  }
  .sp-width--60px {
    width: 60px !important;
  }
  .sp-width--80px {
    width: 80px !important;
  }
  .sp-width--100px {
    width: 100px !important;
  }
  .sp-width--120px {
    width: 120px !important;
  }
  .sp-width--160px {
    width: 160px !important;
  }
  .sp-width--180px {
    width: 180px !important;
  }
  .sp-width--200px {
    width: 200px !important;
  }
  .sp-width--240px {
    width: 240px !important;
  }
  .sp-width--320px {
    width: 320px !important;
  }
  .sp-width--10p {
    width: 10% !important;
  }
  .sp-width--20p {
    width: 20% !important;
  }
  .sp-width--25p {
    width: 25% !important;
  }
  .sp-width--30p {
    width: 30% !important;
  }
  .sp-width--33p {
    width: 33.3333% !important;
  }
  .sp-width--30p {
    width: 30% !important;
  }
  .sp-width--40p {
    width: 40% !important;
  }
  .sp-width--50p {
    width: 50% !important;
  }
  .sp-width--60p {
    width: 60% !important;
  }
  .sp-width--70p {
    width: 70% !important;
  }
  .sp-width--75p {
    width: 75% !important;
  }
  .sp-width--80p {
    width: 80% !important;
  }
  .sp-width--90p {
    width: 90% !important;
  }
  .sp-width--100p {
    width: 100% !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-width--a {
    width: auto;
  }
  .pc-width--40px {
    width: 40px !important;
  }
  .pc-width--60px {
    width: 60px !important;
  }
  .pc-width--80px {
    width: 80px !important;
  }
  .pc-width--100px {
    width: 100px !important;
  }
  .pc-width--120px {
    width: 120px !important;
  }
  .pc-width--160px {
    width: 160px !important;
  }
  .pc-width--180px {
    width: 180px !important;
  }
  .pc-width--200px {
    width: 200px !important;
  }
  .pc-width--240px {
    width: 240px !important;
  }
  .pc-width--320px {
    width: 320px !important;
  }
  .pc-width--400px {
    width: 400px !important;
  }
  .pc-width--480px {
    width: 480px !important;
  }
  .pc-width--560px {
    width: 560px !important;
  }
  .pc-width--640px {
    width: 640px !important;
  }
  .pc-width--720px {
    width: 720px !important;
  }
  .pc-width--10p {
    width: 10% !important;
  }
  .pc-width--20p {
    width: 20% !important;
  }
  .pc-width--25p {
    width: 25% !important;
  }
  .pc-width--30p {
    width: 30% !important;
  }
  .pc-width--33p {
    width: 33.3333% !important;
  }
  .pc-width--40p {
    width: 40% !important;
  }
  .pc-width--50p {
    width: 50% !important;
  }
  .pc-width--60p {
    width: 60% !important;
  }
  .pc-width--70p {
    width: 70% !important;
  }
  .pc-width--75p {
    width: 75% !important;
  }
  .pc-width--80p {
    width: 80% !important;
  }
  .pc-width--90p {
    width: 90% !important;
  }
  .pc-width--100p {
    width: 100% !important;
  }
}
.p--0 {
  padding: 0 !important;
}

.p--4px {
  padding: 4px !important;
}

.p--8px {
  padding: 8px !important;
}

.p--10px {
  padding: 10px !important;
}

.p--12px {
  padding: 12px !important;
}

.p--16px {
  padding: 16px !important;
}

.p--20px {
  padding: 20px !important;
}

.p--24px {
  padding: 24px !important;
}

.p--28px {
  padding: 28px !important;
}

.p--32px {
  padding: 32px !important;
}

.p--36px {
  padding: 36px !important;
}

.p--40px {
  padding: 40px !important;
}

.p--48px {
  padding: 48px !important;
}

.p--56px {
  padding: 56px !important;
}

.p--64px {
  padding: 64px !important;
}

.p--72px {
  padding: 72px !important;
}

.p--0-5em {
  padding: 0.5em !important;
}

.p--1em {
  padding: 1em !important;
}

.p--1-5em {
  padding: 1.5em !important;
}

.p--2em {
  padding: 2em !important;
}

.p--2-5em {
  padding: 2.5em !important;
}

.p--3em {
  padding: 3em !important;
}

.p--4em {
  padding: 4em !important;
}

.p--5em {
  padding: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-p--0 {
    padding: 0 !important;
  }
  .sp-p--4px {
    padding: 4px !important;
  }
  .sp-p--8px {
    padding: 8px !important;
  }
  .sp-p--10px {
    padding: 10px !important;
  }
  .sp-p--12px {
    padding: 12px !important;
  }
  .sp-p--16px {
    padding: 16px !important;
  }
  .sp-p--20px {
    padding: 20px !important;
  }
  .sp-p--24px {
    padding: 24px !important;
  }
  .sp-p--28px {
    padding: 28px !important;
  }
  .sp-p--32px {
    padding: 32px !important;
  }
  .sp-p--36px {
    padding: 36px !important;
  }
  .sp-p--40px {
    padding: 40px !important;
  }
  .sp-p--48px {
    padding: 48px !important;
  }
  .sp-p--56px {
    padding: 56px !important;
  }
  .sp-p--64px {
    padding: 64px !important;
  }
  .sp-p--72px {
    padding: 72px !important;
  }
  .sp-p--0-5em {
    padding: 0.5em !important;
  }
  .sp-p--1em {
    padding: 1em !important;
  }
  .sp-p--1-5em {
    padding: 1.5em !important;
  }
  .sp-p--2em {
    padding: 2em !important;
  }
  .sp-p--2-5em {
    padding: 2.5em !important;
  }
  .sp-p--3em {
    padding: 3em !important;
  }
  .sp-p--4em {
    padding: 4em !important;
  }
  .sp-p--5em {
    padding: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-p--0 {
    padding: 0 !important;
  }
  .pc-p--4px {
    padding: 4px !important;
  }
  .pc-p--8px {
    padding: 8px !important;
  }
  .pc-p--10px {
    padding: 10px !important;
  }
  .pc-p--12px {
    padding: 12px !important;
  }
  .pc-p--16px {
    padding: 16px !important;
  }
  .pc-p--20px {
    padding: 20px !important;
  }
  .pc-p--24px {
    padding: 24px !important;
  }
  .pc-p--28px {
    padding: 28px !important;
  }
  .pc-p--32px {
    padding: 32px !important;
  }
  .pc-p--36px {
    padding: 36px !important;
  }
  .pc-p--40px {
    padding: 40px !important;
  }
  .pc-p--48px {
    padding: 48px !important;
  }
  .pc-p--56px {
    padding: 56px !important;
  }
  .pc-p--64px {
    padding: 64px !important;
  }
  .pc-p--72px {
    padding: 72px !important;
  }
  .pc-p--80px {
    padding: 80px !important;
  }
  .pc-p--100px {
    padding: 100px !important;
  }
  .pc-p--0-5em {
    padding: 0.5em !important;
  }
  .pc-p--1em {
    padding: 1em !important;
  }
  .pc-p--1-5em {
    padding: 1.5em !important;
  }
  .pc-p--2em {
    padding: 2em !important;
  }
  .pc-p--2-5em {
    padding: 2.5em !important;
  }
  .pc-p--3em {
    padding: 3em !important;
  }
  .pc-p--4em {
    padding: 4em !important;
  }
  .pc-p--5em {
    padding: 5em !important;
  }
}
.pt--0 {
  padding-top: 0 !important;
}

.pt--4px {
  padding-top: 4px !important;
}

.pt--8px {
  padding-top: 8px !important;
}

.pt--10px {
  padding-top: 10px !important;
}

.pt--12px {
  padding-top: 12px !important;
}

.pt--16px {
  padding-top: 16px !important;
}

.pt--20px {
  padding-top: 20px !important;
}

.pt--24px {
  padding-top: 24px !important;
}

.pt--28px {
  padding-top: 28px !important;
}

.pt--32px {
  padding-top: 32px !important;
}

.pt--36px {
  padding-top: 36px !important;
}

.pt--40px {
  padding-top: 40px !important;
}

.pt--48px {
  padding-top: 48px !important;
}

.pt--56px {
  padding-top: 56px !important;
}

.pt--64px {
  padding-top: 64px !important;
}

.pt--72px {
  padding-top: 72px !important;
}

.pt--0-5em {
  padding-top: 0.5em !important;
}

.pt--1em {
  padding-top: 1em !important;
}

.pt--1-5em {
  padding-top: 1.5em !important;
}

.pt--2em {
  padding-top: 2em !important;
}

.pt--2-5em {
  padding-top: 2.5em !important;
}

.pt--3em {
  padding-top: 3em !important;
}

.pt--4em {
  padding-top: 4em !important;
}

.pt--5em {
  padding-top: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-pt--0 {
    padding-top: 0 !important;
  }
  .sp-pt--4px {
    padding-top: 4px !important;
  }
  .sp-pt--8px {
    padding-top: 8px !important;
  }
  .sp-pt--10px {
    padding-top: 10px !important;
  }
  .sp-pt--12px {
    padding-top: 12px !important;
  }
  .sp-pt--16px {
    padding-top: 16px !important;
  }
  .sp-pt--20px {
    padding-top: 20px !important;
  }
  .sp-pt--24px {
    padding-top: 24px !important;
  }
  .sp-pt--28px {
    padding-top: 28px !important;
  }
  .sp-pt--32px {
    padding-top: 32px !important;
  }
  .sp-pt--36px {
    padding-top: 36px !important;
  }
  .sp-pt--40px {
    padding-top: 40px !important;
  }
  .sp-pt--48px {
    padding-top: 48px !important;
  }
  .sp-pt--56px {
    padding-top: 56px !important;
  }
  .sp-pt--64px {
    padding-top: 64px !important;
  }
  .sp-pt--72px {
    padding-top: 72px !important;
  }
  .sp-pt--0-5em {
    padding-top: 0.5em !important;
  }
  .sp-pt--1em {
    padding-top: 1em !important;
  }
  .sp-pt--1-5em {
    padding-top: 1.5em !important;
  }
  .sp-pt--2em {
    padding-top: 2em !important;
  }
  .sp-pt--2-5em {
    padding-top: 2.5em !important;
  }
  .sp-pt--3em {
    padding-top: 3em !important;
  }
  .sp-pt--4em {
    padding-top: 4em !important;
  }
  .sp-pt--5em {
    padding-top: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pt--0 {
    padding-top: 0 !important;
  }
  .pc-pt--4px {
    padding-top: 4px !important;
  }
  .pc-pt--8px {
    padding-top: 8px !important;
  }
  .pc-pt--10px {
    padding-top: 10px !important;
  }
  .pc-pt--12px {
    padding-top: 12px !important;
  }
  .pc-pt--16px {
    padding-top: 16px !important;
  }
  .pc-pt--20px {
    padding-top: 20px !important;
  }
  .pc-pt--24px {
    padding-top: 24px !important;
  }
  .pc-pt--28px {
    padding-top: 28px !important;
  }
  .pc-pt--32px {
    padding-top: 32px !important;
  }
  .pc-pt--36px {
    padding-top: 36px !important;
  }
  .pc-pt--40px {
    padding-top: 40px !important;
  }
  .pc-pt--48px {
    padding-top: 48px !important;
  }
  .pc-pt--56px {
    padding-top: 56px !important;
  }
  .pc-pt--64px {
    padding-top: 64px !important;
  }
  .pc-pt--72px {
    padding-top: 72px !important;
  }
  .pc-pt--80px {
    padding-top: 80px !important;
  }
  .pc-pt--100px {
    padding-top: 100px !important;
  }
  .pc-pt--120px {
    padding-top: 120px !important;
  }
  .pc-pt--140px {
    padding-top: 140px !important;
  }
  .pc-pt--160px {
    padding-top: 160px !important;
  }
  .pc-pt--0-5em {
    padding-top: 0.5em !important;
  }
  .pc-pt--1em {
    padding-top: 1em !important;
  }
  .pc-pt--1-5em {
    padding-top: 1.5em !important;
  }
  .pc-pt--2em {
    padding-top: 2em !important;
  }
  .pc-pt--2-5em {
    padding-top: 2.5em !important;
  }
  .pc-pt--3em {
    padding-top: 3em !important;
  }
  .pc-pt--4em {
    padding-top: 4em !important;
  }
  .pc-pt--5em {
    padding-top: 5em !important;
  }
}
.pl--0 {
  padding-left: 0 !important;
}

.pl--4px {
  padding-left: 4px !important;
}

.pl--8px {
  padding-left: 8px !important;
}

.pl--10px {
  padding-left: 10px !important;
}

.pl--12px {
  padding-left: 12px !important;
}

.pl--16px {
  padding-left: 16px !important;
}

.pl--20px {
  padding-left: 20px !important;
}

.pl--24px {
  padding-left: 24px !important;
}

.pl--28px {
  padding-left: 28px !important;
}

.pl--32px {
  padding-left: 32px !important;
}

.pl--36px {
  padding-left: 36px !important;
}

.pl--40px {
  padding-left: 40px !important;
}

.pl--48px {
  padding-left: 48px !important;
}

.pl--56px {
  padding-left: 56px !important;
}

.pl--64px {
  padding-left: 64px !important;
}

.pl--72px {
  padding-left: 72px !important;
}

.pl--0-5em {
  padding-left: 0.5em !important;
}

.pl--1em {
  padding-left: 1em !important;
}

.pl--1-5em {
  padding-left: 1.5em !important;
}

.pl--2em {
  padding-left: 2em !important;
}

.pl--2-5em {
  padding-left: 2.5em !important;
}

.pl--3em {
  padding-left: 3em !important;
}

.pl--4em {
  padding-left: 4em !important;
}

.pl--4em {
  padding-left: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-pl--0 {
    padding-left: 0 !important;
  }
  .sp-pl--4px {
    padding-left: 4px !important;
  }
  .sp-pl--8px {
    padding-left: 8px !important;
  }
  .sp-pl--10px {
    padding-left: 10px !important;
  }
  .sp-pl--12px {
    padding-left: 12px !important;
  }
  .sp-pl--16px {
    padding-left: 16px !important;
  }
  .sp-pl--20px {
    padding-left: 20px !important;
  }
  .sp-pl--24px {
    padding-left: 24px !important;
  }
  .sp-pl--28px {
    padding-left: 28px !important;
  }
  .sp-pl--32px {
    padding-left: 32px !important;
  }
  .sp-pl--36px {
    padding-left: 36px !important;
  }
  .sp-pl--40px {
    padding-left: 40px !important;
  }
  .sp-pl--48px {
    padding-left: 48px !important;
  }
  .sp-pl--56px {
    padding-left: 56px !important;
  }
  .sp-pl--64px {
    padding-left: 64px !important;
  }
  .sp-pl--72px {
    padding-left: 72px !important;
  }
  .sp-pl--0-5em {
    padding-left: 0.5em !important;
  }
  .sp-pl--1em {
    padding-left: 1em !important;
  }
  .sp-pl--1-5em {
    padding-left: 1.5em !important;
  }
  .sp-pl--2em {
    padding-left: 2em !important;
  }
  .sp-pl--2-5em {
    padding-left: 2.5em !important;
  }
  .sp-pl--3em {
    padding-left: 3em !important;
  }
  .sp-pl--4em {
    padding-left: 4em !important;
  }
  .sp-pl--5em {
    padding-left: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pl--0 {
    padding-left: 0 !important;
  }
  .pc-pl--4px {
    padding-left: 4px !important;
  }
  .pc-pl--8px {
    padding-left: 8px !important;
  }
  .pc-pl--10px {
    padding-left: 10px !important;
  }
  .pc-pl--12px {
    padding-left: 12px !important;
  }
  .pc-pl--16px {
    padding-left: 16px !important;
  }
  .pc-pl--20px {
    padding-left: 20px !important;
  }
  .pc-pl--24px {
    padding-left: 24px !important;
  }
  .pc-pl--28px {
    padding-left: 28px !important;
  }
  .pc-pl--32px {
    padding-left: 32px !important;
  }
  .pc-pl--36px {
    padding-left: 36px !important;
  }
  .pc-pl--40px {
    padding-left: 40px !important;
  }
  .pc-pl--48px {
    padding-left: 48px !important;
  }
  .pc-pl--56px {
    padding-left: 56px !important;
  }
  .pc-pl--64px {
    padding-left: 64px !important;
  }
  .pc-pl--72px {
    padding-left: 72px !important;
  }
  .pc-pl--80px {
    padding-left: 80px !important;
  }
  .pc-pl--100px {
    padding-left: 100px !important;
  }
  .pc-pl--0-5em {
    padding-left: 0.5em !important;
  }
  .pc-pl--1em {
    padding-left: 1em !important;
  }
  .pc-pl--1-5em {
    padding-left: 1.5em !important;
  }
  .pc-pl--2em {
    padding-left: 2em !important;
  }
  .pc-pl--2-5em {
    padding-left: 2.5em !important;
  }
  .pc-pl--3em {
    padding-left: 3em !important;
  }
  .pc-pl--4em {
    padding-left: 4em !important;
  }
  .pc-pl--5em {
    padding-left: 5em !important;
  }
}
.pr--0 {
  padding-right: 0 !important;
}

.pr--4px {
  padding-right: 4px !important;
}

.pr--8px {
  padding-right: 8px !important;
}

.pr--10px {
  padding-right: 10px !important;
}

.pr--12px {
  padding-right: 12px !important;
}

.pr--16px {
  padding-right: 16px !important;
}

.pr--20px {
  padding-right: 20px !important;
}

.pr--24px {
  padding-right: 24px !important;
}

.pr--28px {
  padding-right: 28px !important;
}

.pr--32px {
  padding-right: 32px !important;
}

.pr--36px {
  padding-right: 36px !important;
}

.pr--40px {
  padding-right: 40px !important;
}

.pr--48px {
  padding-right: 48px !important;
}

.pr--56px {
  padding-right: 56px !important;
}

.pr--64px {
  padding-right: 64px !important;
}

.pr--72px {
  padding-right: 72px !important;
}

.pr--0-5em {
  padding-right: 0.5em !important;
}

.pr--1em {
  padding-right: 1em !important;
}

.pr--1-5em {
  padding-right: 1.5em !important;
}

.pr--2em {
  padding-right: 2em !important;
}

.pr--2-5em {
  padding-right: 2.5em !important;
}

.pr--3em {
  padding-right: 3em !important;
}

.pr--4em {
  padding-right: 4em !important;
}

.pr--5em {
  padding-right: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-pr--0 {
    padding-right: 0 !important;
  }
  .sp-pr--4px {
    padding-right: 4px !important;
  }
  .sp-pr--8px {
    padding-right: 8px !important;
  }
  .sp-pr--10px {
    padding-right: 10px !important;
  }
  .sp-pr--12px {
    padding-right: 12px !important;
  }
  .sp-pr--16px {
    padding-right: 16px !important;
  }
  .sp-pr--20px {
    padding-right: 20px !important;
  }
  .sp-pr--24px {
    padding-right: 24px !important;
  }
  .sp-pr--28px {
    padding-right: 28px !important;
  }
  .sp-pr--32px {
    padding-right: 32px !important;
  }
  .sp-pr--36px {
    padding-right: 36px !important;
  }
  .sp-pr--40px {
    padding-right: 40px !important;
  }
  .sp-pr--48px {
    padding-right: 48px !important;
  }
  .sp-pr--56px {
    padding-right: 56px !important;
  }
  .sp-pr--64px {
    padding-right: 64px !important;
  }
  .sp-pr--72px {
    padding-right: 72px !important;
  }
  .sp-pr--0-5em {
    padding-right: 0.5em !important;
  }
  .sp-pr--1em {
    padding-right: 1em !important;
  }
  .sp-pr--1-5em {
    padding-right: 1.5em !important;
  }
  .sp-pr--2em {
    padding-right: 2em !important;
  }
  .sp-pr--2-5em {
    padding-right: 2.5em !important;
  }
  .sp-pr--3em {
    padding-right: 3em !important;
  }
  .sp-pr--4em {
    padding-right: 4em !important;
  }
  .sp-pr--5em {
    padding-right: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pr--0 {
    padding-right: 0 !important;
  }
  .pc-pr--4px {
    padding-right: 4px !important;
  }
  .pc-pr--8px {
    padding-right: 8px !important;
  }
  .pc-pr--10px {
    padding-right: 10px !important;
  }
  .pc-pr--12px {
    padding-right: 12px !important;
  }
  .pc-pr--16px {
    padding-right: 16px !important;
  }
  .pc-pr--20px {
    padding-right: 20px !important;
  }
  .pc-pr--24px {
    padding-right: 24px !important;
  }
  .pc-pr--28px {
    padding-right: 28px !important;
  }
  .pc-pr--32px {
    padding-right: 32px !important;
  }
  .pc-pr--36px {
    padding-right: 36px !important;
  }
  .pc-pr--40px {
    padding-right: 40px !important;
  }
  .pc-pr--48px {
    padding-right: 48px !important;
  }
  .pc-pr--56px {
    padding-right: 56px !important;
  }
  .pc-pr--64px {
    padding-right: 64px !important;
  }
  .pc-pr--72px {
    padding-right: 72px !important;
  }
  .pc-pr--80px {
    padding-right: 80px !important;
  }
  .pc-pr--100px {
    padding-right: 100px !important;
  }
  .pc-pr--0-5em {
    padding-right: 0.5em !important;
  }
  .pc-pr--1em {
    padding-right: 1em !important;
  }
  .pc-pr--1-5em {
    padding-right: 1.5em !important;
  }
  .pc-pr--2em {
    padding-right: 2em !important;
  }
  .pc-pr--2-5em {
    padding-right: 2.5em !important;
  }
  .pc-pr--3em {
    padding-right: 3em !important;
  }
  .pc-pr--4em {
    padding-right: 4em !important;
  }
  .pc-pr--5em {
    padding-right: 5em !important;
  }
}
.pb--0 {
  padding-bottom: 0 !important;
}

.pb--4px {
  padding-bottom: 4px !important;
}

.pb--8px {
  padding-bottom: 8px !important;
}

.pb--12px {
  padding-bottom: 12px !important;
}

.pb--16px {
  padding-bottom: 16px !important;
}

.pb--20px {
  padding-bottom: 20px !important;
}

.pb--24px {
  padding-bottom: 24px !important;
}

.pb--28px {
  padding-bottom: 28px !important;
}

.pb--32px {
  padding-bottom: 32px !important;
}

.pb--36px {
  padding-bottom: 36px !important;
}

.pb--40px {
  padding-bottom: 40px !important;
}

.pb--48px {
  padding-bottom: 48px !important;
}

.pb--56px {
  padding-bottom: 56px !important;
}

.pb--64px {
  padding-bottom: 64px !important;
}

.pb--72px {
  padding-bottom: 72px !important;
}

.pb--0-5em {
  padding-bottom: 0.5em !important;
}

.pb--1em {
  padding-bottom: 1em !important;
}

.pb--1-5em {
  padding-bottom: 1.5em !important;
}

.pb--2em {
  padding-bottom: 2em !important;
}

.pb--2-5em {
  padding-bottom: 2.5em !important;
}

.pb--3em {
  padding-bottom: 3em !important;
}

.pb--4em {
  padding-bottom: 4em !important;
}

.pb--5em {
  padding-bottom: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-pb--0 {
    padding-bottom: 0 !important;
  }
  .sp-pb--4px {
    padding-bottom: 4px !important;
  }
  .sp-pb--8px {
    padding-bottom: 8px !important;
  }
  .sp-pb--12px {
    padding-bottom: 12px !important;
  }
  .sp-pb--16px {
    padding-bottom: 16px !important;
  }
  .sp-pb--20px {
    padding-bottom: 20px !important;
  }
  .sp-pb--24px {
    padding-bottom: 24px !important;
  }
  .sp-pb--28px {
    padding-bottom: 28px !important;
  }
  .sp-pb--32px {
    padding-bottom: 32px !important;
  }
  .sp-pb--36px {
    padding-bottom: 36px !important;
  }
  .sp-pb--40px {
    padding-bottom: 40px !important;
  }
  .sp-pb--48px {
    padding-bottom: 48px !important;
  }
  .sp-pb--56px {
    padding-bottom: 56px !important;
  }
  .sp-pb--64px {
    padding-bottom: 64px !important;
  }
  .sp-pb--72px {
    padding-bottom: 72px !important;
  }
  .sp-pb--0-5em {
    padding-bottom: 0.5em !important;
  }
  .sp-pb--1em {
    padding-bottom: 1em !important;
  }
  .sp-pb--1-5em {
    padding-bottom: 1.5em !important;
  }
  .sp-pb--2em {
    padding-bottom: 2em !important;
  }
  .sp-pb--2-5em {
    padding-bottom: 2.5em !important;
  }
  .sp-pb--3em {
    padding-bottom: 3em !important;
  }
  .sp-pb--4em {
    padding-bottom: 4em !important;
  }
  .sp-pb--5em {
    padding-bottom: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-pb--0 {
    padding-bottom: 0 !important;
  }
  .pc-pb--4px {
    padding-bottom: 4px !important;
  }
  .pc-pb--8px {
    padding-bottom: 8px !important;
  }
  .pc-pb--12px {
    padding-bottom: 12px !important;
  }
  .pc-pb--16px {
    padding-bottom: 16px !important;
  }
  .pc-pb--20px {
    padding-bottom: 20px !important;
  }
  .pc-pb--24px {
    padding-bottom: 24px !important;
  }
  .pc-pb--28px {
    padding-bottom: 28px !important;
  }
  .pc-pb--32px {
    padding-bottom: 32px !important;
  }
  .pc-pb--36px {
    padding-bottom: 36px !important;
  }
  .pc-pb--40px {
    padding-bottom: 40px !important;
  }
  .pc-pb--48px {
    padding-bottom: 48px !important;
  }
  .pc-pb--56px {
    padding-bottom: 56px !important;
  }
  .pc-pb--64px {
    padding-bottom: 64px !important;
  }
  .pc-pb--72px {
    padding-bottom: 72px !important;
  }
  .pc-pb--80px {
    padding-bottom: 80px !important;
  }
  .pc-pb--100px {
    padding-bottom: 100px !important;
  }
  .pc-pb--120px {
    padding-bottom: 120px !important;
  }
  .pc-pb--140px {
    padding-bottom: 140px !important;
  }
  .pc-pb--160px {
    padding-bottom: 160px !important;
  }
  .pc-pb--0-5em {
    padding-bottom: 0.5em !important;
  }
  .pc-pb--1em {
    padding-bottom: 1em !important;
  }
  .pc-pb--1-5em {
    padding-bottom: 1.5em !important;
  }
  .pc-pb--2em {
    padding-bottom: 2em !important;
  }
  .pc-pb--2-5em {
    padding-bottom: 2.5em !important;
  }
  .pc-pb--3em {
    padding-bottom: 3em !important;
  }
  .pc-pb--4em {
    padding-bottom: 4em !important;
  }
  .pc-pb--5em {
    padding-bottom: 5em !important;
  }
}
.m--a {
  margin: auto;
}

.mt--a {
  margin-top: auto;
}

.ml--a {
  margin-left: auto;
}

.mr--a {
  margin-right: auto;
}

.mb--a {
  margin-bottom: auto;
}

.mlr--a {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .sp-m--a {
    margin: auto;
  }
  .sp-mt--a {
    margin-top: auto;
  }
  .sp-ml--a {
    margin-left: auto;
  }
  .sp-mr--a {
    margin-right: auto;
  }
  .sp-mb--a {
    margin-bottom: auto;
  }
  .sp-mlr--a {
    margin-left: auto;
    margin-right: auto;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-m--a {
    margin: auto;
  }
  .pc-mt--a {
    margin-top: auto;
  }
  .pc-ml--a {
    margin-left: auto;
  }
  .pc-mr--a {
    margin-right: auto;
  }
  .pc-mb--a {
    margin-bottom: auto;
  }
  .pc-mlr--a {
    margin-left: auto;
    margin-right: auto;
  }
}
.mt--0 {
  margin-top: 0 !important;
}

.mt--4px {
  margin-top: 4px !important;
}

.mt--8px {
  margin-top: 8px !important;
}

.mt--10px {
  margin-top: 10px !important;
}

.mt--12px {
  margin-top: 12px !important;
}

.mt--16px {
  margin-top: 16px !important;
}

.mt--20px {
  margin-top: 20px !important;
}

.mt--24px {
  margin-top: 24px !important;
}

.mt--28px {
  margin-top: 28px !important;
}

.mt--32px {
  margin-top: 32px !important;
}

.mt--36px {
  margin-top: 36px !important;
}

.mt--40px {
  margin-top: 40px !important;
}

.mt--48px {
  margin-top: 48px !important;
}

.mt--56px {
  margin-top: 12px !important;
}

.mt--64px {
  margin-top: 64px !important;
}

.mt--72px {
  margin-top: 72px !important;
}

.mt--0-5em {
  margin-top: 0.5em !important;
}

.mt--1em {
  margin-top: 1em !important;
}

.mt--1-5em {
  margin-top: 1.5em !important;
}

.mt--2em {
  margin-top: 2em !important;
}

.mt--2-5em {
  margin-top: 2.5em !important;
}

.mt--3em {
  margin-top: 3em !important;
}

.mt--4em {
  margin-top: 4em !important;
}

.mt--5em {
  margin-top: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-mt--0 {
    margin-top: 0 !important;
  }
  .sp-mt--4px {
    margin-top: 4px !important;
  }
  .sp-mt--8px {
    margin-top: 8px !important;
  }
  .sp-mt--10px {
    margin-top: 10px !important;
  }
  .sp-mt--12px {
    margin-top: 12px !important;
  }
  .sp-mt--16px {
    margin-top: 16px !important;
  }
  .sp-mt--20px {
    margin-top: 20px !important;
  }
  .sp-mt--24px {
    margin-top: 24px !important;
  }
  .sp-mt--28px {
    margin-top: 28px !important;
  }
  .sp-mt--32px {
    margin-top: 32px !important;
  }
  .sp-mt--36px {
    margin-top: 36px !important;
  }
  .sp-mt--40px {
    margin-top: 40px !important;
  }
  .sp-mt--48px {
    margin-top: 48px !important;
  }
  .sp-mt--56px {
    margin-top: 12px !important;
  }
  .sp-mt--64px {
    margin-top: 64px !important;
  }
  .sp-mt--72px {
    margin-top: 72px !important;
  }
  .sp-mt--0-5em {
    margin-top: 0.5em !important;
  }
  .sp-mt--1em {
    margin-top: 1em !important;
  }
  .sp-mt--1-5em {
    margin-top: 1.5em !important;
  }
  .sp-mt--2em {
    margin-top: 2em !important;
  }
  .sp-mt--2-5em {
    margin-top: 2.5em !important;
  }
  .sp-mt--3em {
    margin-top: 3em !important;
  }
  .sp-mt--4em {
    margin-top: 4em !important;
  }
  .sp-mt--5em {
    margin-top: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mt--0 {
    margin-top: 0 !important;
  }
  .pc-mt--4px {
    margin-top: 4px !important;
  }
  .pc-mt--8px {
    margin-top: 8px !important;
  }
  .pc-mt--10px {
    margin-top: 10px !important;
  }
  .pc-mt--12px {
    margin-top: 12px !important;
  }
  .pc-mt--16px {
    margin-top: 16px !important;
  }
  .pc-mt--20px {
    margin-top: 20px !important;
  }
  .pc-mt--24px {
    margin-top: 24px !important;
  }
  .pc-mt--28px {
    margin-top: 28px !important;
  }
  .pc-mt--32px {
    margin-top: 32px !important;
  }
  .pc-mt--36px {
    margin-top: 36px !important;
  }
  .pc-mt--40px {
    margin-top: 40px !important;
  }
  .pc-mt--48px {
    margin-top: 48px !important;
  }
  .pc-mt--56px {
    margin-top: 56px !important;
  }
  .pc-mt--64px {
    margin-top: 64px !important;
  }
  .pc-mt--72px {
    margin-top: 72px !important;
  }
  .pc-mt--80px {
    margin-top: 80px !important;
  }
  .pc-mt--100px {
    margin-top: 100px !important;
  }
  .pc-mt--0-5em {
    margin-top: 0.5em !important;
  }
  .pc-mt--1em {
    margin-top: 1em !important;
  }
  .pc-mt--1-5em {
    margin-top: 1.5em !important;
  }
  .pc-mt--2em {
    margin-top: 2em !important;
  }
  .pc-mt--2-5em {
    margin-top: 2.5em !important;
  }
  .pc-mt--3em {
    margin-top: 3em !important;
  }
  .pc-mt--4em {
    margin-top: 4em !important;
  }
  .pc-mt--5em {
    margin-top: 5em !important;
  }
}
.ml--0 {
  margin-left: 0 !important;
}

.ml--4px {
  margin-left: 4px !important;
}

.ml--8px {
  margin-left: 8px !important;
}

.ml--12px {
  margin-left: 12px !important;
}

.ml--16px {
  margin-left: 16px !important;
}

.ml--20px {
  margin-left: 20px !important;
}

.ml--24px {
  margin-left: 24px !important;
}

.ml--28px {
  margin-left: 28px !important;
}

.ml--32px {
  margin-left: 32px !important;
}

.ml--36px {
  margin-left: 36px !important;
}

.ml--40px {
  margin-left: 40px !important;
}

.ml--48px {
  margin-left: 48px !important;
}

.ml--56px {
  margin-left: 56px !important;
}

.ml--64px {
  margin-left: 64px !important;
}

.ml--72px {
  margin-left: 72px !important;
}

.ml--0-5em {
  margin-left: 0.5em !important;
}

.ml--1em {
  margin-left: 1em !important;
}

.ml--1-5em {
  margin-left: 1.5em !important;
}

.ml--2em {
  margin-left: 2em !important;
}

.ml--2-5em {
  margin-left: 2.5em !important;
}

.ml--3em {
  margin-left: 3em !important;
}

.ml--4em {
  margin-left: 4em !important;
}

.ml--5em {
  margin-left: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-ml--0 {
    margin-left: 0 !important;
  }
  .sp-ml--4px {
    margin-left: 4px !important;
  }
  .sp-ml--8px {
    margin-left: 8px !important;
  }
  .sp-ml--12px {
    margin-left: 12px !important;
  }
  .sp-ml--16px {
    margin-left: 16px !important;
  }
  .sp-ml--20px {
    margin-left: 20px !important;
  }
  .sp-ml--24px {
    margin-left: 24px !important;
  }
  .sp-ml--28px {
    margin-left: 28px !important;
  }
  .sp-ml--32px {
    margin-left: 32px !important;
  }
  .sp-ml--36px {
    margin-left: 36px !important;
  }
  .sp-ml--40px {
    margin-left: 40px !important;
  }
  .sp-ml--48px {
    margin-left: 48px !important;
  }
  .sp-ml--56px {
    margin-left: 56px !important;
  }
  .sp-ml--64px {
    margin-left: 64px !important;
  }
  .sp-ml--72px {
    margin-left: 72px !important;
  }
  .sp-ml--0-5em {
    margin-left: 0.5em !important;
  }
  .sp-ml--1em {
    margin-left: 1em !important;
  }
  .sp-ml--1-5em {
    margin-left: 1.5em !important;
  }
  .sp-ml--2em {
    margin-left: 2em !important;
  }
  .sp-ml--2-5em {
    margin-left: 2.5em !important;
  }
  .sp-ml--3em {
    margin-left: 3em !important;
  }
  .sp-ml--4em {
    margin-left: 4em !important;
  }
  .sp-ml--5em {
    margin-left: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-ml--0 {
    margin-left: 0 !important;
  }
  .pc-ml--4px {
    margin-left: 4px !important;
  }
  .pc-ml--8px {
    margin-left: 8px !important;
  }
  .pc-ml--12px {
    margin-left: 12px !important;
  }
  .pc-ml--16px {
    margin-left: 16px !important;
  }
  .pc-ml--20px {
    margin-left: 20px !important;
  }
  .pc-ml--24px {
    margin-left: 24px !important;
  }
  .pc-ml--28px {
    margin-left: 28px !important;
  }
  .pc-ml--32px {
    margin-left: 32px !important;
  }
  .pc-ml--36px {
    margin-left: 36px !important;
  }
  .pc-ml--40px {
    margin-left: 40px !important;
  }
  .pc-ml--48px {
    margin-left: 48px !important;
  }
  .pc-ml--56px {
    margin-left: 56px !important;
  }
  .pc-ml--64px {
    margin-left: 64px !important;
  }
  .pc-ml--72px {
    margin-left: 72px !important;
  }
  .pc-ml--80px {
    margin-left: 80px !important;
  }
  .pc-ml--100px {
    margin-left: 100px !important;
  }
  .pc-ml--0-5em {
    margin-left: 0.5em !important;
  }
  .pc-ml--1em {
    margin-left: 1em !important;
  }
  .pc-ml--1-5em {
    margin-left: 1.5em !important;
  }
  .pc-ml--2em {
    margin-left: 2em !important;
  }
  .pc-ml--2-5em {
    margin-left: 2.5em !important;
  }
  .pc-ml--3em {
    margin-left: 3em !important;
  }
  .pc-ml--4em {
    margin-left: 4em !important;
  }
  .pc-ml--5em {
    margin-left: 5em !important;
  }
}
.mr--0 {
  margin-right: 0 !important;
}

.mr--4px {
  margin-right: 4px !important;
}

.mr--8px {
  margin-right: 8px !important;
}

.mr--10px {
  margin-right: 10px !important;
}

.mr--12px {
  margin-right: 12px !important;
}

.mr--16px {
  margin-right: 16px !important;
}

.mr--20px {
  margin-right: 20px !important;
}

.mr--24px {
  margin-right: 24px !important;
}

.mr--28px {
  margin-right: 28px !important;
}

.mr--32px {
  margin-right: 32px !important;
}

.mr--36px {
  margin-right: 36px !important;
}

.mr--40px {
  margin-right: 40px !important;
}

.mr--48px {
  margin-right: 48px !important;
}

.mr--56px {
  margin-right: 56px !important;
}

.mr--64px {
  margin-right: 64px !important;
}

.mr--72px {
  margin-right: 72px !important;
}

.mr--0-5em {
  margin-right: 0.5em !important;
}

.mr--1em {
  margin-right: 1em !important;
}

.mr--1-5em {
  margin-right: 1.5em !important;
}

.mr--2em {
  margin-right: 2em !important;
}

.mr--2-5em {
  margin-right: 2.5em !important;
}

.mr--3em {
  margin-right: 3em !important;
}

.mr--4em {
  margin-right: 4em !important;
}

.mr--5em {
  margin-right: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-mr--0 {
    margin-right: 0 !important;
  }
  .sp-mr--4px {
    margin-right: 4px !important;
  }
  .sp-mr--8px {
    margin-right: 8px !important;
  }
  .sp-mr--10px {
    margin-right: 10px !important;
  }
  .sp-mr--12px {
    margin-right: 12px !important;
  }
  .sp-mr--16px {
    margin-right: 16px !important;
  }
  .sp-mr--20px {
    margin-right: 20px !important;
  }
  .sp-mr--24px {
    margin-right: 24px !important;
  }
  .sp-mr--28px {
    margin-right: 28px !important;
  }
  .sp-mr--32px {
    margin-right: 32px !important;
  }
  .sp-mr--36px {
    margin-right: 36px !important;
  }
  .sp-mr--40px {
    margin-right: 40px !important;
  }
  .sp-mr--48px {
    margin-right: 48px !important;
  }
  .sp-mr--56px {
    margin-right: 56px !important;
  }
  .sp-mr--64px {
    margin-right: 64px !important;
  }
  .sp-mr--72px {
    margin-right: 72px !important;
  }
  .sp-mr--0-5em {
    margin-right: 0.5em !important;
  }
  .sp-mr--1em {
    margin-right: 1em !important;
  }
  .sp-mr--1-5em {
    margin-right: 1.5em !important;
  }
  .sp-mr--2em {
    margin-right: 2em !important;
  }
  .sp-mr--2-5em {
    margin-right: 2.5em !important;
  }
  .sp-mr--3em {
    margin-right: 3em !important;
  }
  .sp-mr--4em {
    margin-right: 4em !important;
  }
  .sp-mr--5em {
    margin-right: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mr--0 {
    margin-right: 0 !important;
  }
  .pc-mr--4px {
    margin-right: 4px !important;
  }
  .pc-mr--8px {
    margin-right: 8px !important;
  }
  .pc-mr--10px {
    margin-right: 10px !important;
  }
  .pc-mr--12px {
    margin-right: 12px !important;
  }
  .pc-mr--16px {
    margin-right: 16px !important;
  }
  .pc-mr--20px {
    margin-right: 20px !important;
  }
  .pc-mr--24px {
    margin-right: 24px !important;
  }
  .pc-mr--28px {
    margin-right: 28px !important;
  }
  .pc-mr--32px {
    margin-right: 32px !important;
  }
  .pc-mr--36px {
    margin-right: 36px !important;
  }
  .pc-mr--40px {
    margin-right: 40px !important;
  }
  .pc-mr--48px {
    margin-right: 48px !important;
  }
  .pc-mr--56px {
    margin-right: 56px !important;
  }
  .pc-mr--64px {
    margin-right: 64px !important;
  }
  .pc-mr--72px {
    margin-right: 72px !important;
  }
  .pc-mr--80px {
    margin-right: 80px !important;
  }
  .pc-mr--100px {
    margin-right: 100px !important;
  }
  .pc-mr--0-5em {
    margin-right: 0.5em !important;
  }
  .pc-mr--1em {
    margin-right: 1em !important;
  }
  .pc-mr--1-5em {
    margin-right: 1.5em !important;
  }
  .pc-mr--2em {
    margin-right: 2em !important;
  }
  .pc-mr--2-5em {
    margin-right: 2.5em !important;
  }
  .pc-mr--3em {
    margin-right: 3em !important;
  }
  .pc-mr--4em {
    margin-right: 4em !important;
  }
  .pc-mr--5em {
    margin-right: 5em !important;
  }
}
.mb--0 {
  margin-bottom: 0 !important;
}

.mb--4px {
  margin-bottom: 4px !important;
}

.mb--8px {
  margin-bottom: 8px !important;
}

.mb--10px {
  margin-bottom: 10px !important;
}

.mb--12px {
  margin-bottom: 12px !important;
}

.mb--16px {
  margin-bottom: 16px !important;
}

.mb--20px {
  margin-bottom: 20px !important;
}

.mb--24px {
  margin-bottom: 24px !important;
}

.mb--28px {
  margin-bottom: 28px !important;
}

.mb--32px {
  margin-bottom: 32px !important;
}

.mb--36px {
  margin-bottom: 36px !important;
}

.mb--40px {
  margin-bottom: 40px !important;
}

.mb--48px {
  margin-bottom: 48px !important;
}

.mb--56px {
  margin-bottom: 56px !important;
}

.mb--64px {
  margin-bottom: 64px !important;
}

.mb--72px {
  margin-bottom: 72px !important;
}

.mb--0-5em {
  margin-bottom: 0.5em !important;
}

.mb--1em {
  margin-bottom: 1em !important;
}

.mb--1-5em {
  margin-bottom: 1.5em !important;
}

.mb--2em {
  margin-bottom: 2em !important;
}

.mb--2-5em {
  margin-bottom: 2.5em !important;
}

.mb--3em {
  margin-bottom: 3em !important;
}

.mb--4em {
  margin-bottom: 4em !important;
}

.mb--5em {
  margin-bottom: 5em !important;
}

@media screen and (max-width: 768px) {
  .sp-mb--0 {
    margin-bottom: 0 !important;
  }
  .sp-mb--4px {
    margin-bottom: 4px !important;
  }
  .sp-mb--8px {
    margin-bottom: 8px !important;
  }
  .sp-mb--10px {
    margin-bottom: 10px !important;
  }
  .sp-mb--12px {
    margin-bottom: 12px !important;
  }
  .sp-mb--16px {
    margin-bottom: 16px !important;
  }
  .sp-mb--20px {
    margin-bottom: 20px !important;
  }
  .sp-mb--24px {
    margin-bottom: 24px !important;
  }
  .sp-mb--28px {
    margin-bottom: 28px !important;
  }
  .sp-mb--32px {
    margin-bottom: 32px !important;
  }
  .sp-mb--36px {
    margin-bottom: 36px !important;
  }
  .sp-mb--40px {
    margin-bottom: 40px !important;
  }
  .sp-mb--48px {
    margin-bottom: 48px !important;
  }
  .sp-mb--56px {
    margin-bottom: 56px !important;
  }
  .sp-mb--64px {
    margin-bottom: 64px !important;
  }
  .sp-mb--72px {
    margin-bottom: 72px !important;
  }
  .sp-mb--0-5em {
    margin-bottom: 0.5em !important;
  }
  .sp-mb--1em {
    margin-bottom: 1em !important;
  }
  .sp-mb--1-5em {
    margin-bottom: 1.5em !important;
  }
  .sp-mb--2em {
    margin-bottom: 2em !important;
  }
  .sp-mb--2-5em {
    margin-bottom: 2.5em !important;
  }
  .sp-mb--3em {
    margin-bottom: 3em !important;
  }
  .sp-mb--4em {
    margin-bottom: 4em !important;
  }
  .sp-mb--5em {
    margin-bottom: 5em !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-mb--0 {
    margin-bottom: 0 !important;
  }
  .pc-mb--4px {
    margin-bottom: 4px !important;
  }
  .pc-mb--8px {
    margin-bottom: 8px !important;
  }
  .pc-mb--10px {
    margin-bottom: 10px !important;
  }
  .pc-mb--12px {
    margin-bottom: 12px !important;
  }
  .pc-mb--16px {
    margin-bottom: 16px !important;
  }
  .pc-mb--20px {
    margin-bottom: 20px !important;
  }
  .pc-mb--24px {
    margin-bottom: 24px !important;
  }
  .pc-mb--28px {
    margin-bottom: 28px !important;
  }
  .pc-mb--32px {
    margin-bottom: 32px !important;
  }
  .pc-mb--36px {
    margin-bottom: 36px !important;
  }
  .pc-mb--40px {
    margin-bottom: 40px !important;
  }
  .pc-mb--48px {
    margin-bottom: 48px !important;
  }
  .pc-mb--56px {
    margin-bottom: 56px !important;
  }
  .pc-mb--64px {
    margin-bottom: 64px !important;
  }
  .pc-mb--72px {
    margin-bottom: 72px !important;
  }
  .pc-mb--80px {
    margin-bottom: 80px !important;
  }
  .pc-mb--100px {
    margin-bottom: 100px !important;
  }
  .pc-mb--0-5em {
    margin-bottom: 0.5em !important;
  }
  .pc-mb--1em {
    margin-bottom: 1em !important;
  }
  .pc-mb--1-5em {
    margin-bottom: 1.5em !important;
  }
  .pc-mb--2em {
    margin-bottom: 2em !important;
  }
  .pc-mb--2-5em {
    margin-bottom: 2.5em !important;
  }
  .pc-mb--3em {
    margin-bottom: 3em !important;
  }
  .pc-mb--4em {
    margin-bottom: 4em !important;
  }
  .pc-mb--5em {
    margin-bottom: 5em !important;
  }
}
/*===================================================

 トップページ

===================================================*/
.top-about {
  position: relative;
  z-index: 2;
}
.top-about::before {
  content: "";
  display: block;
  background: #1FB9C5;
  width: 12vw;
  height: calc(100% + 40px);
  position: absolute;
  top: -40px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .top-about::before {
    display: none;
  }
}
.top-about__container {
  padding: 100px 40px 40px 100px;
  margin: 0 auto;
  max-width: 1280px;
  position: relative;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .top-about__container {
    padding: 56px 0 20px;
    background: transparent;
  }
}
.top-about__head {
  display: flex;
  align-items: center;
  gap: 0 8%;
  position: relative;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .top-about__head {
    margin-bottom: 24px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px 0;
  }
}
.top-about__head:before {
  content: "";
  display: block;
  width: 280px;
  height: 1px;
  background: #131416;
  position: absolute;
  top: 50%;
  right: calc(100% + 40px);
}
@media screen and (max-width: 768px) {
  .top-about__head:before {
    display: none;
  }
}
.top-about__head-logo img {
  height: 64px;
}
@media screen and (max-width: 768px) {
  .top-about__head-logo img {
    height: 32px;
  }
}
.top-about__head-txt {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .top-about__head-txt {
    font-size: 14px;
    line-height: 1.7;
    text-align: left;
  }
}
@media print, screen and (min-width: 769px) {
  .top-about__body {
    font-size: 15px;
    line-height: 2.4;
  }
}
@media screen and (max-width: 768px) {
  .top-about__body {
    font-size: 13px;
    line-height: 1.8;
    text-align: left;
  }
}
.top-about__body > p {
  margin-bottom: 1.5em;
}

/*===================================================

 記事詳細

===================================================*/
.l-article {
  padding: 80px calc(120px + 4vw) 80px 4vw;
  display: flex;
  max-width: 1440px;
  margin: 0 auto;
  position: relative;
}
@media print, screen and (max-width: 1280px) {
  .l-article {
    padding-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-article {
    padding: 32px 20px;
    flex-direction: column;
  }
}
.l-article__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .l-article__content {
    order: -1;
  }
}
@media print, screen and (min-width: 769px) {
  .l-article__share {
    width: 12.5%;
    max-width: 120px;
  }
}
@media screen and (max-width: 768px) {
  .l-article__share {
    margin-top: 32px;
  }
}

@media print, screen and (min-width: 769px) {
  .article-share {
    position: -webkit-sticky;
    position: sticky;
    top: 20px;
    left: 0;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .article-share {
    text-align: center;
  }
}
.article-share__label {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
@media print, screen and (min-width: 769px) {
  .article-share__label {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
}
@media screen and (max-width: 768px) {
  .article-share__list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
  }
}
.article-share__list > li {
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .article-share__list > li {
    margin: 0;
  }
}
.article-share__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid #131416;
  border-radius: 50%;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 16px;
  color: #59595B;
  line-height: 1.4;
  margin-bottom: 24px;
}
.article-meta__date {
  letter-spacing: 0.1em;
}
.article-meta__category {
  font-size: 14px;
}
.article-meta__author {
  font-size: 14px;
  padding-left: 1em;
  border-left: 1px solid #d9d9df;
}
@media screen and (max-width: 768px) {
  .article-meta__author {
    font-size: 13px;
  }
}

.article-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .article-tag-list {
    gap: 5px;
    margin-bottom: 24px;
  }
}

.article-main {
  font-size: 17px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .article-main {
    font-size: 16px;
  }
}
.article-main p {
  margin-bottom: 1.5em;
}
.article-main .btn-wrap {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .article-main .btn-wrap {
    font-size: 14px;
  }
}
.article-main h2 {
  font-size: 32px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2em;
  margin-bottom: 1em;
  padding-top: 40px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article-main h2 {
    font-size: 24px;
  }
}
.article-main h2:before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #131416;
  position: absolute;
  top: 0;
  left: 0;
}
.article-main h3 {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 2em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .article-main h3 {
    font-size: 20px;
  }
}
.article-main h4 {
  font-size: 22px;
  font-weight: bold;
  line-height: 1.4;
  margin-top: 1.5em;
  margin-bottom: 1em;
}
@media screen and (max-width: 768px) {
  .article-main h4 {
    font-size: 18px;
  }
}
.article-main ul > li {
  margin-bottom: 10px;
  padding-left: 28px;
  position: relative;
}
.article-main ul > li:before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  background: #ccc;
  border-radius: 50%;
  position: absolute;
  top: 11px;
  left: 8px;
}
@media screen and (max-width: 768px) {
  .article-main ul > li:before {
    top: 10px;
  }
}
.article-main ol {
  list-style-type: decimal;
}
.article-main ol > li {
  padding-left: 8px;
  margin-left: 20px;
  margin-bottom: 10px;
  position: relative;
}

.article-img {
  margin: 64px 0 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .article-img {
    margin: 32px 0 8px;
  }
}

.article-img + p:not(.article-caption) {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .article-img + p:not(.article-caption) {
    margin-top: 32px;
  }
}

.article-caption,
p.article-caption {
  margin-top: 1em;
  margin-bottom: 64px;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .article-caption,
  p.article-caption {
    margin-bottom: 32px;
    font-size: 14px;
  }
}

.article-intro {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .article-intro {
    margin-bottom: 32px;
  }
}

.article-outline {
  margin-top: 80px;
  border-style: solid;
  border-width: 1px 0;
  border-color: #59595B;
  padding: 36px 0;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .article-outline {
    margin-top: 40px;
    padding: 24px 0;
    font-size: 13px;
  }
}
.article-outline__ttl {
  font-weight: bold;
}
.article-outline__body p {
  margin: 1em 0;
}
@media screen and (max-width: 768px) {
  .article-outline__body p {
    margin: 0.5em 0;
  }
}
.article-outline__body p:last-child {
  margin-bottom: 0;
}

.article-quote {
  font-size: 16px;
  color: #59595B;
  margin-left: 24px;
  padding: 16px 0 16px 48px;
  border-left: 1px solid #d9d9df;
  position: relative;
}
@media screen and (max-width: 768px) {
  .article-quote {
    font-size: 14px;
    margin-left: 8px;
    padding: 16px 0 16px 28px;
  }
}
.article-quote p:last-child {
  margin-bottom: 0;
}
.article-quote:before {
  content: "“";
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Crimson Text", "MS P明朝", "MS PMincho", serif;
  color: #ccc;
  font-size: 40px;
  line-height: 1;
  position: absolute;
  top: 8px;
  left: 16px;
}
@media screen and (max-width: 768px) {
  .article-quote:before {
    font-size: 32px;
    top: 4px;
    left: 12px;
  }
}

.article-box-gray,
.article-box-border-gray {
  padding: 40px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .article-box-gray,
  .article-box-border-gray {
    padding: 20px;
  }
}
.article-box-gray p:last-child,
.article-box-border-gray p:last-child {
  margin-bottom: 0;
}

.article-box-gray {
  background: #f4f4f5;
}

.article-box-border-gray {
  border: 1px solid #d9d9df;
}

.speaker-section__inner {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .speaker-section__inner {
    padding-top: 24px;
    padding-bottom: 24px;
  }
}

.speaker-profile__list {
  display: flex;
  flex-wrap: wrap;
  gap: 80px;
}
@media screen and (max-width: 768px) {
  .speaker-profile__list {
    flex-direction: column;
    gap: 40px;
  }
}
@media print, screen and (min-width: 769px) {
  .speaker-profile__item {
    width: calc((100% - 80px) / 2);
  }
  .speaker-profile__item:only-child {
    margin: auto;
  }
}

@media print, screen and (min-width: 769px) {
  .profile-card {
    display: flex;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .profile-card {
    font-size: 13px;
  }
}
.profile-card__img {
  width: 32%;
  max-width: 240px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .profile-card__img {
    width: 50vw;
    max-width: initial;
    margin: 0 auto;
  }
}
.profile-card__desc {
  padding-left: 40px;
}
@media screen and (max-width: 768px) {
  .profile-card__desc {
    padding: 16px 0 0;
  }
}
.profile-card__name {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .profile-card__name {
    font-size: 16px;
    text-align: center;
  }
}
.profile-card__name-en {
  font-size: 12px;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .profile-card__name-en {
    font-size: 10px;
    text-align: center;
  }
}
.profile-card__pos {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .profile-card__pos {
    text-align: center;
  }
}
/*===================================================

 About

===================================================*/
.about-lead-txt {
  text-align: center;
  line-height: 2.2;
}
.about-lead-txt > p {
  margin-bottom: 2.5em;
}
.about-lead-txt > p:last-child {
  margin-bottom: 0;
}

.about-design-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: "Crimson Text", serif;
  line-height: 1;
}
.about-design-logo__px {
  width: 100%;
  max-width: 768px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0 20px;
}
@media screen and (max-width: 768px) {
  .about-design-logo__px {
    gap: 0 10px;
  }
}
.about-design-logo__px-main {
  font-size: 80px;
}
@media screen and (max-width: 768px) {
  .about-design-logo__px-main {
    font-size: 40px;
  }
}
.about-design-logo__px-sub {
  font-size: 40px;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .about-design-logo__px-sub {
    font-size: 16px;
    padding-bottom: 4px;
  }
}
.about-design-logo__px-sub:before {
  content: ":";
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .about-design-logo__px-sub:before {
    margin-right: 10px;
  }
}
.about-design-logo__txt {
  margin-top: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .about-design-logo__txt {
    line-height: 1.4;
  }
}

.about-approach {
  margin: 48px auto 0;
  width: 100%;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .about-approach {
    margin-top: 24px;
  }
}
.about-approach__circle {
  display: flex;
  justify-content: center;
  gap: 0 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-approach__circle {
    gap: 0 5vw;
  }
}
.about-approach__circle:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: #131416;
  transition: width 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-approach__circle.visible:after {
  width: 100%;
}
.about-approach__circle .about-circle {
  width: 180px;
  height: 180px;
  background: #fff;
  border: 1px solid #131416;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Crimson Text", serif;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.29, 1.4, 0.44, 0.96), transform 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
@media screen and (max-width: 768px) {
  .about-approach__circle .about-circle {
    width: 24vw;
    height: 24vw;
  }
}
.about-approach__circle .about-circle__en {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .about-approach__circle .about-circle__en {
    font-size: 18px;
  }
}
.about-approach__circle .about-circle__txt {
  margin-top: 8px;
  font-size: 14px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .about-approach__circle .about-circle__txt {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.2;
  }
}
.about-approach__circle .about-circle:nth-child(1).visible {
  opacity: 1;
  transition-delay: 0.2s;
}
.about-approach__circle .about-circle:nth-child(2).visible {
  opacity: 1;
  transition-delay: 0.8s;
}
.about-approach__circle .about-circle:nth-child(3).visible {
  opacity: 1;
  transition-delay: 1.4s;
}
.about-approach__caption {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 0 36px;
}
@media screen and (max-width: 768px) {
  .about-approach__caption {
    flex-direction: column;
    gap: 24px 0;
  }
}
.about-approach__caption .about-caption {
  width: 200px;
  line-height: 1.8;
  transition: opacity 0.25s linear, transform 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Crimson Text", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 768px) {
  .about-approach__caption .about-caption {
    width: auto;
    line-height: 1.7;
  }
  .about-approach__caption .about-caption__heading {
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 8px;
  }
  .about-approach__caption .about-caption__heading small {
    font-size: 14px;
  }
  .about-approach__caption .about-caption__heading small:before {
    content: "-";
    margin-right: 4px;
  }
}
.about-approach__caption .about-caption:nth-child(1).visible {
  transition-delay: 0.2s;
}
.about-approach__caption .about-caption:nth-child(2).visible {
  transition-delay: 0.8s;
}
.about-approach__caption .about-caption:nth-child(3).visible {
  transition-delay: 1.4s;
}

.about-service {
  margin: 48px auto 0;
  width: 100%;
  max-width: 768px;
}
@media screen and (max-width: 768px) {
  .about-service {
    margin-top: 24px;
  }
}
.about-service__tag {
  background: #f4f4f5;
  padding: 32px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-service__tag {
    padding: 24px 16px;
  }
}
.about-service__tag.-upper {
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .about-service__tag.-upper {
    margin-bottom: 72px;
  }
}
.about-service__tag.-upper:after {
  content: "";
  display: block;
  width: 10px;
  height: 48px;
  background: url(../img/arrow01_down_bk.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 8px;
}
.about-service__tag.-lower {
  margin-top: 80px;
  animation-delay: 1s;
}
@media screen and (max-width: 768px) {
  .about-service__tag.-lower {
    margin-top: 72px;
  }
}
.about-service__tag.-lower:after {
  content: "";
  display: block;
  width: 10px;
  height: 48px;
  background: url(../img/arrow01_down_bk.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 16px;
}
.about-service__tag-heading {
  font-size: 18px;
  font-weight: bold;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Crimson Text", "MS P明朝", "MS PMincho", serif;
  margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
  .about-service__tag-heading {
    font-size: 14px;
  }
}
.about-service__tag-heading > span {
  position: relative;
  padding: 0 1em;
}
@media screen and (max-width: 768px) {
  .about-service__tag-heading > span {
    padding: 0 0.7em;
  }
}
.about-service__tag-heading > span:before, .about-service__tag-heading > span:after {
  content: "";
  display: block;
  width: 1.5em;
  height: 1px;
  background: #131416;
  position: absolute;
  top: 50%;
}
@media screen and (max-width: 768px) {
  .about-service__tag-heading > span:before, .about-service__tag-heading > span:after {
    width: 1em;
  }
}
.about-service__tag-heading > span:before {
  right: 100%;
}
.about-service__tag-heading > span:after {
  left: 100%;
}
.about-service__tag-list {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 40px;
}
@media screen and (max-width: 768px) {
  .about-service__tag-list {
    gap: 16px 24px;
  }
}
.about-service__tag-list > li {
  color: #8E909A;
  line-height: 1.3;
}
.about-service__tag-list > li a {
  text-decoration: underline;
}
@media print, screen and (min-width: 769px) {
  .about-service__tag-list > li a:hover {
    text-decoration: none;
  }
}
.about-service__circle {
  display: flex;
  justify-content: center;
  gap: 0 56px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .about-service__circle {
    gap: 0 5vw;
  }
}
.about-service__circle:after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  background: #59595B;
  transition: width 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.about-service__circle.visible:after {
  width: 100%;
}
.about-service__circle .about-circle {
  width: 180px;
  height: 180px;
  background: #59595B;
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Crimson Text", serif;
  line-height: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.25s cubic-bezier(0.29, 1.4, 0.44, 0.96), transform 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
}
@media screen and (max-width: 768px) {
  .about-service__circle .about-circle {
    width: 24vw;
    height: 24vw;
  }
}
.about-service__circle .about-circle__en {
  font-size: 26px;
}
@media screen and (max-width: 768px) {
  .about-service__circle .about-circle__en {
    font-size: 14px;
    line-height: 1.1;
  }
}
.about-service__circle .about-circle__txt {
  margin-top: 16px;
  font-size: 13px;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .about-service__circle .about-circle__txt {
    font-size: 10px;
    margin-top: 4px;
    line-height: 1.2;
  }
}
.about-service__circle .about-circle:nth-child(1).visible {
  opacity: 1;
  transition-delay: 0.2s;
}
.about-service__circle .about-circle:nth-child(2).visible {
  opacity: 1;
  transition-delay: 0.8s;
}
.about-service__circle .about-circle:nth-child(3).visible {
  opacity: 1;
  transition-delay: 1.4s;
}
.about-service__caption {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 24px 0;
}
.about-service__caption .about-caption {
  line-height: 1.7;
  transition: opacity 0.25s linear, transform 0.8s cubic-bezier(0.29, 1.4, 0.44, 0.96);
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "Crimson Text", "MS P明朝", "MS PMincho", serif;
  text-align: center;
}
.about-service__caption .about-caption__heading {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 4px;
}
.about-service__caption .about-caption:nth-child(1).visible {
  transition-delay: 0.2s;
}
.about-service__caption .about-caption:nth-child(2).visible {
  transition-delay: 0.8s;
}
.about-service__caption .about-caption:nth-child(3).visible {
  transition-delay: 1.4s;
}

/*# sourceMappingURL=style.css.map */