@charset "UTF-8";
/* =============================================
  media query
============================================= */
/* =============================================
  px vw
============================================= */
/* =============================================
  px vh
============================================= */
/* =============================================
  px rem
============================================= */
/* =============================================
  default settings
============================================= */
:root {
  --color-primary: #ffe141;
  --color-secondary: #999999;
  --color-black: #323232;
  --font-en: "helvetica-neue-lt-pro", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-size: 100%;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-weight: 400;
  font-style: normal;
  overflow-x: hidden;
  color: var(--color-black);
}
body.is-active {
  overflow: hidden !important;
}

ul, ol {
  list-style: none;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}
img.img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

a {
  text-decoration: none;
  color: var(--color-black);
}
a.link, .breadcrumb a {
  transition: opacity ease 0.3s;
}
a.link:hover, .breadcrumb a:hover {
  opacity: 0.7;
}

p {
  line-height: 2;
}

address {
  font-style: normal;
}

.main {
  overflow: hidden;
  margin-top: 6.25rem;
}

.inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 2.5rem;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 2.375rem;
  }
}
.inner--sm {
  max-width: 67.5rem;
}
.inner--xs {
  max-width: 61.25rem;
}
.inner--xxs {
  max-width: 55rem;
}
.inner--right {
  max-width: 85.625rem;
  padding: 0 0 0 5rem;
}
@media screen and (max-width: 1000px) {
  .inner--right {
    padding: 0 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .inner--right {
    padding: 0 2.375rem;
  }
}
.inner--full {
  max-width: none;
  padding: 0 5rem;
}
@media screen and (max-width: 768px) {
  .inner--full {
    padding: 0 2.375rem;
  }
}

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

@media screen and (max-width: 1000px) {
  .tab {
    display: none;
  }
}

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

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

.fade-in {
  opacity: 0;
  transition: opacity ease 1s var(--delay, 0s), transform ease 1s var(--delay, 0s);
  transform: translateY(20px);
}
@media screen and (max-width: 768px) {
  .fade-in {
    transition: opacity ease 1s, transform ease 1s;
  }
}
.fade-in.is-active {
  opacity: 1;
  transform: translateY(0);
}

.js-split.is-active span {
  opacity: 1;
}
.js-split span {
  --delay: 0.05s;
  opacity: 0;
  transition: opacity ease 0.6s calc(var(--delay) * var(--index));
}

.js-hamburger-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
}
.js-hamburger-fade.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: opacity 0.5s ease 0.6s, transform 0.5s ease 0.6s, visibility 0.5s ease 0.6s;
}

.page-top {
  position: fixed;
  right: 2.5rem;
  bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .page-top {
    right: 1.875rem;
    bottom: 1.875rem;
  }
}
.page-top span {
  display: block;
  width: 3.375rem;
  height: 3.375rem;
  background-color: #DFEFFD;
  border-radius: 50%;
  transition: opacity ease 0.3s;
}
.page-top span:hover {
  opacity: 0.7;
}
.page-top span::before {
  content: "";
  width: 0.875rem;
  height: 1rem;
  background-color: var(--color-primary);
  position: absolute;
  top: calc(50% - 0.5rem);
  left: calc(50% - 0.4375rem);
  -webkit-mask-image: url(../img/icon-pagetop.svg);
          mask-image: url(../img/icon-pagetop.svg);
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
}

.entrance-img {
  position: relative;
  background: no-repeat url(../img/top/entrance-img.jpg) center center/cover;
  height: 25rem;
}
@media screen and (max-width: 768px) {
  .entrance-img {
    background: no-repeat url(../img/top/entrance-img-sp.jpg) center center/cover;
    height: 18.75rem;
  }
}
.entrance-img__text {
  position: absolute;
  left: 0;
  bottom: -4.375rem;
  width: 100%;
  display: flex;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .entrance-img__text {
    bottom: -2.8125rem;
  }
}
.entrance-img__text li {
  flex: 0 0 auto;
  white-space: nowrap;
  color: #e4e4de;
  font-size: 6.25rem;
  font-family: var(--font-en);
  font-weight: 100;
  letter-spacing: 10px;
}
@media screen and (max-width: 768px) {
  .entrance-img__text li {
    font-size: 3.75rem;
  }
}
.entrance-img__text li:nth-child(odd) {
  animation: loopText 50s -25s linear infinite;
}
.entrance-img__text li:nth-child(even) {
  animation: loopText2 50s linear infinite;
}

.office-info {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .office-info {
    margin-top: 2.5rem;
  }
}
.office-info__name {
  font-family: var(--font-en);
  font-size: 1.125rem;
  font-weight: 300;
}
.office-info__address {
  font-size: 0.8125rem;
  line-height: 1.8;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .office-info__address {
    margin-top: 0.3125rem;
  }
}
.office-info__btn {
  margin-top: 1.5625rem;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  .office-info__btn {
    margin-top: 1.25rem;
  }
}

.replace-svg .icon-color,
.replace-svg .icon-circle,
.replace-svg .icon-arrow {
  transition: stroke ease 0.3s, fill ease 0.3s;
}

.text-right {
  text-align: right;
}

.tax-accordion {
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .tax-accordion {
    margin-bottom: 0.9375rem;
  }
}
.tax-accordion:last-child {
  margin-bottom: 0;
}
.tax-accordion__btn {
  font-size: 0.875rem;
  position: relative;
  display: inline-block;
  padding-right: 1.875rem;
  transition: opacity ease 0.3s;
  color: var(--color-black);
}
.tax-accordion__btn:hover {
  opacity: 0.7;
}
.tax-accordion__btn::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0.625rem;
  height: 0.625rem;
  border-bottom: 1px solid #989898;
  border-right: 1px solid #989898;
  transform: translateY(25%) rotate(45deg);
  transition: transform ease 0.3s, top ease 0.3s;
}
.tax-accordion__btn.is-active::after {
  transform: translateY(75%) rotate(-135deg);
}
.tax-accordion__body {
  padding-top: 0.9375rem;
  display: none;
}
@media screen and (max-width: 768px) {
  .tax-accordion__body {
    padding-top: 0.625rem;
  }
}
.tax-accordion__body.is-active {
  display: block;
}

.categories {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4375rem 0.625rem;
}
.categories li a {
  border: 1px solid var(--color-black);
  display: inline-block;
  border-radius: 0.625rem;
  font-size: 0.625rem;
  padding: 0.125rem 0.625rem;
  transition: background-color ease 0.3s, color ease 0.3s;
}
.categories li a:hover, .categories li a.is-active {
  color: #fff;
  background-color: var(--color-black);
}

.tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0 0.625rem;
}
.tags li a {
  display: inline-block;
  color: #989898;
  font-size: 0.625rem;
  transition: color ease 0.3s;
}
.tags li a:hover, .tags li a.is-active {
  color: var(--color-black);
}

.page-back {
  margin-top: 12.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page-back {
    margin-top: 5rem;
  }
}
.page-back--mt-sm {
  margin-top: 8.125rem;
}
@media screen and (max-width: 768px) {
  .page-back--mt-sm {
    margin-top: 3.75rem;
  }
}

.sidebar-navigation ul li {
  margin-bottom: 0.9375rem;
}
.sidebar-navigation ul li:last-child {
  margin-bottom: 0;
}
.sidebar-navigation ul li a {
  color: #c1c1c1;
  transition: color ease 0.3s, padding-left ease 0.3s;
  position: relative;
}
.sidebar-navigation ul li a::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  left: 0;
  height: 0.5rem;
  width: 0.5rem;
  background-color: var(--color-primary);
  border-radius: 0.25rem;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.sidebar-navigation ul li a.is-active {
  color: var(--color-black);
  padding-left: 1.25rem;
}
.sidebar-navigation ul li a.is-active::before {
  opacity: 1;
}

.breadcrumb span,
.breadcrumb a {
  color: #939392;
  font-size: 0.6875rem;
  letter-spacing: 1px;
}
.breadcrumb span.breadcrumb_last,
.breadcrumb a.breadcrumb_last {
  font-weight: 500;
}
.breadcrumb--white span, .breadcrumb--white a {
  color: #fff;
}

.navigation {
  margin: 7.5rem auto 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .navigation {
    margin: 5rem auto 0;
  }
}
.navigation .nav-links {
  padding: 0 2.8125rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .navigation .nav-links {
    gap: 1.25rem;
    padding: 0 2.1875rem;
  }
}
.navigation .nav-links span, .navigation .nav-links a {
  font-family: var(--font-en);
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: 1px;
  font-weight: 300;
}
.navigation .nav-links span.current, .navigation .nav-links a.current {
  border-bottom: 1px solid var(--color-black);
}
.navigation .nav-links a {
  color: #cccccc;
  transition: color ease 0.3s;
}
.navigation .nav-links a:hover {
  color: var(--color-black);
}
.navigation .nav-links a.prev, .navigation .nav-links a.next {
  position: absolute;
  top: calc(50% - 0.25rem);
  width: 0.5rem;
  height: 0.5rem;
  transition: opacity ease 0.3s;
}
.navigation .nav-links a.prev:hover, .navigation .nav-links a.next:hover {
  opacity: 0.7;
}
.navigation .nav-links a.next {
  right: 0;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transform: rotate(45deg);
}
.navigation .nav-links a.prev {
  left: 0;
  border-top: 1px solid var(--color-black);
  border-left: 1px solid var(--color-black);
  transform: rotate(-45deg);
}

.entry-content > * {
  margin-top: 3.125rem;
}
@media screen and (max-width: 768px) {
  .entry-content > * {
    margin-top: 2.5rem;
  }
}
.entry-content > *:first-child {
  margin-top: 0;
}
.entry-content h2, .entry-content h3, .entry-content h4, .entry-content h5, .entry-content h6 {
  font-weight: 400;
}
.entry-content h2 {
  margin-top: 4.6875rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .entry-content h2 {
    margin-top: 3.4375rem;
  }
}
@media screen and (max-width: 768px) {
  .entry-content h2 + p {
    margin-top: 1.25rem;
  }
}
.entry-content h3 {
  font-size: 1.125rem;
}
.entry-content p {
  font-size: 0.875rem;
  letter-spacing: 0.3px;
  text-align: justify;
}
.entry-content ul {
  list-style-type: disc;
  padding-left: 1em;
}
.entry-content ul li {
  line-height: 2;
  font-size: 0.875rem;
}
.entry-content ol {
  list-style-type: decimal;
  padding-left: 1em;
}
.entry-content ol li {
  line-height: 2;
  font-size: 0.875rem;
}
.entry-content a {
  color: #2271b1;
  transition: opacity ease 0.3s;
}
.entry-content a:hover {
  opacity: 0.7;
}
.entry-content :where(.wp-block-columns.is-layout-flex) {
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .entry-content :where(.wp-block-columns.is-layout-flex) {
    gap: 1.5625rem;
  }
}
@media screen and (max-width: 768px) {
  .entry-content .wp-block-image + .wp-block-columns,
  .entry-content .wp-block-columns + .wp-block-columns {
    margin-top: 1.5625rem;
  }
}
.entry-content .wp-block-embed.aligncenter {
  text-align: center;
  clear: none;
}
.entry-content .wp-block-embed iframe {
  width: 100%;
  height: auto;
  max-width: 40.625rem;
  aspect-ratio: 16/9;
}
.entry-content .full-img img {
  width: 100%;
}
.entry-content--magazine > * {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .entry-content--magazine > * {
    margin-top: 1.5625rem;
  }
}
.entry-content--magazine > *:first-child {
  margin-top: 0;
}
.entry-content--magazine h2 {
  margin-top: 8.125rem;
  font-weight: 400;
  border-bottom: 1px solid var(--color-black);
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 0.3125rem;
  font-size: 1.25rem;
}
@media screen and (max-width: 768px) {
  .entry-content--magazine h2 {
    margin-top: 5rem;
  }
}
.entry-content--magazine h3 {
  margin-top: 4.375rem;
  font-size: 0.875rem;
  position: relative;
  padding-left: 1.5em;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .entry-content--magazine h3 {
    margin-top: 2.8125rem;
  }
}
.entry-content--magazine h3::before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
}
.entry-content--magazine p.lead {
  margin-top: 4.375rem;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .entry-content--magazine p.lead {
    margin-top: 2.5rem;
    font-size: 1rem;
  }
}
.entry-content--magazine :where(.wp-block-columns.is-layout-flex) {
  gap: 1.25rem;
}
@media screen and (max-width: 768px) {
  .entry-content--magazine :where(.wp-block-columns.is-layout-flex) {
    gap: 1.5625rem;
  }
}

/* =============================================
  btn
============================================= */
.btn {
  font-size: 0.875rem;
  display: inline-block;
  padding-right: 3.125rem;
  padding-bottom: 0.9375rem;
  position: relative;
  letter-spacing: 2px;
}
.btn::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  transform: scaleX(100%);
  background-color: var(--color-black);
  transform-origin: top left;
  transition: transform ease 0.3s;
}
.btn:hover::after {
  transform: scaleX(0);
  transform-origin: top right;
}
.btn:hover .replace-svg {
  transform: scale(1.2);
}
.btn:hover .icon-circle {
  fill: var(--color-black);
  stroke: var(--color-black);
}
.btn:hover .icon-arrow {
  stroke: #fff;
}
.btn .replace-svg {
  position: absolute;
  top: -0.125rem;
  right: 0;
  width: 1.5625rem;
  height: 1.5625rem;
  display: block;
  transition: transform ease 0.3s;
}
.btn .icon-circle,
.btn .icon-arrow {
  stroke: var(--color-black);
}
.btn--sm {
  font-size: 1rem;
  padding-bottom: 0.125rem;
  padding-right: 1.25rem;
}
.btn--sm .replace-svg {
  top: 0.5625rem;
  width: 0.9375rem;
  height: 0.9375rem;
}
.btn--google {
  letter-spacing: 1px;
}

.square-btn {
  position: relative;
  display: inline-block;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  color: #fff;
  font-size: 0.875rem;
  padding: 0.9375rem 3.125rem 0.9375rem 1.25rem;
  transition: background-color ease 0.3s, color ease 0.3s;
}
.square-btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.1875rem);
  right: 1.25rem;
  width: 0.375rem;
  height: 0.375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
  transition: border ease 0.3s, right ease 0.3s;
}
.square-btn:hover {
  background-color: #fff;
  color: var(--color-black);
}
.square-btn:hover::after {
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  right: 1.0625rem;
}

/* =============================================
  header
============================================= */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  transition: transform ease 0.3s;
}
.header.is-active {
  transform: translateY(-100%);
}
.header__inner {
  height: 6.25rem;
  display: flex;
  align-items: center;
  padding-left: 2.5rem;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding-left: 1.5625rem;
  }
}
.header__logo {
  opacity: 0;
  animation: headerAnim 1s ease 0.3s forwards;
}

/* =============================================
  hamburger
============================================= */
.hamburger-btn {
  display: block;
  position: fixed;
  z-index: 1001;
  top: 2.8125rem;
  right: 2.5rem;
  width: 2.5rem;
  height: 0.625rem;
  transition: top ease 0.3s;
  opacity: 0;
  animation: headerAnim 1s ease 0.3s forwards;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    right: 1.5625rem;
  }
}
.hamburger-btn.is-active {
  top: -40px;
}
.hamburger-btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  transition: top 0.3s ease 0.3s, transform ease 0.3s;
}
.hamburger-btn span:nth-of-type(1) {
  top: 0;
}
.hamburger-btn span:nth-of-type(1).is-active {
  top: 50%;
  transform: rotate(25deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
.hamburger-btn span:nth-of-type(2) {
  top: 100%;
}
.hamburger-btn span:nth-of-type(2).is-active {
  top: 50%;
  transform: rotate(-25deg);
  transition: top 0.3s ease, transform 0.3s ease 0.3s;
}
.hamburger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  overflow: scroll;
  visibility: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6.25rem 0;
}
@media screen and (max-width: 768px) {
  .hamburger-menu {
    display: block;
    padding: 8.75rem 0 2.5rem;
  }
}
.hamburger-menu.is-active {
  visibility: visible;
}
.hamburger-menu__nav {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__nav {
    width: 100%;
  }
}
.hamburger-menu__list {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 2.5rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__list {
    grid-template-columns: 1fr;
    grid-auto-flow: row;
    grid-template-rows: auto;
    gap: 1.5625rem;
  }
}
.hamburger-menu__list li a {
  font-size: 1.5rem;
  font-family: var(--font-en);
  letter-spacing: 2px;
  font-weight: 300;
  transition: color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__list li a {
    font-size: 1.25rem;
  }
}
.hamburger-menu__list li a:hover {
  color: #fff;
}
.hamburger-menu__links {
  position: absolute;
  right: 3.75rem;
  bottom: 3.75rem;
  margin-top: 5rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .hamburger-menu__links {
    position: static;
    padding: 0 2.375rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
  }
}
.hamburger-menu__links li a {
  font-size: 0.6875rem;
  transition: color ease 0.3s;
}
.hamburger-menu__links li a:hover {
  color: #fff;
}
.hamburger-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-primary);
  transform: scaleX(0);
  transition: transform ease 0.6s;
  transform-origin: top right;
  z-index: 998;
}
.hamburger-bg.is-active {
  transform-origin: top left;
  transform: scaleX(100%);
}

/* =============================================
  section
============================================= */
.sec-heading {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.sec-heading--flex {
  flex-direction: row;
  align-items: baseline;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sec-heading--flex {
    flex-direction: column;
    gap: 0;
  }
}
.sec-heading--news {
  margin-bottom: 3.75rem;
}
.sec-heading__title {
  font-family: var(--font-en);
  font-size: 4.375rem;
  font-weight: 200;
  letter-spacing: 7px;
}
@media screen and (max-width: 768px) {
  .sec-heading__title {
    font-size: 3.125rem;
  }
}
.sec-heading__subtitle {
  font-size: 0.875rem;
  color: var(--color-secondary);
  letter-spacing: 2px;
}
.sec-heading__subtitle--white {
  color: #fff;
}
.sec-text {
  font-size: 0.875rem;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec-text {
    text-align: justify;
  }
}
.sec-about {
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec-about {
    margin-top: 3.75rem;
  }
}
.sec-about__copy {
  font-size: 2.25rem;
  margin-top: 2.5rem;
  letter-spacing: 5px;
}
@media screen and (max-width: 768px) {
  .sec-about__copy {
    font-size: 1.3125rem;
    letter-spacing: 2px;
  }
}
.sec-about__text {
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sec-about__text {
    font-size: 0.875rem;
    margin-top: 0.9375rem;
    text-align: justify;
  }
}
.sec-about__btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-about__btn {
    margin-top: 3.125rem;
  }
}
.sec-works {
  margin-top: 12.5rem;
}
@media screen and (max-width: 768px) {
  .sec-works {
    margin-top: 10rem;
  }
}
.sec-works__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec-works__btn {
    margin: 4.6875rem auto 0;
  }
}
.sec-works-archive {
  padding: 3.125rem 0 12.5rem;
}
@media screen and (max-width: 768px) {
  .sec-works-archive {
    padding: 2.5rem 0 6.25rem;
  }
}
.sec-works-entry {
  padding: 0 0 12.5rem;
}
@media screen and (max-width: 768px) {
  .sec-works-entry {
    padding: 0 0 6.25rem;
  }
}
.sec-works-entry__date {
  font-size: 0.875rem;
  color: #adadad;
  font-family: var(--font-en);
  font-weight: 300;
  margin-bottom: 1.25rem;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .sec-works-entry__date {
    margin-bottom: 0.625rem;
  }
}
.sec-magazine {
  margin-top: 14.375rem;
  padding: 14.375rem 0 17.5rem;
  background-color: var(--color-primary);
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec-magazine {
    margin-top: 6.25rem;
    padding: 6.25rem 0;
  }
}
.sec-magazine__flex {
  display: flex;
}
@media screen and (max-width: 1200px) {
  .sec-magazine__flex {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 1000px) {
  .sec-magazine__flex {
    display: block;
  }
}
.sec-magazine__intro {
  margin-right: -12.5rem;
}
@media screen and (max-width: 1000px) {
  .sec-magazine__intro {
    margin-right: 0;
    padding-right: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-magazine__intro {
    padding-right: 0;
  }
}
.sec-magazine__btn {
  position: absolute;
  left: 5rem;
  top: 30rem;
}
@media screen and (max-width: 1000px) {
  .sec-magazine__btn {
    position: relative;
    top: auto;
    left: auto;
    text-align: right;
  }
}
@media screen and (max-width: 768px) {
  .sec-magazine__btn {
    margin-top: 3.75rem;
    text-align: center;
  }
}
.sec-magazine-archive {
  padding: 5rem 0 14.375rem;
}
@media screen and (max-width: 768px) {
  .sec-magazine-archive {
    padding: 2.5rem 0 6.25rem;
  }
}
.sec-magazine-entry {
  padding: 7.5rem 0 12.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-magazine-entry {
    padding: 3.75rem 0 6.25rem;
  }
}
.sec-magazine-entry__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sec-magazine-entry__inner {
    display: block;
  }
}
.sec-magazine-entry__left {
  position: sticky;
  top: 8.75rem;
  left: 0;
}
@media screen and (max-width: 768px) {
  .sec-magazine-entry__left {
    display: none;
  }
}
.sec-magazine-entry__right {
  max-width: 43.75rem;
}
@media screen and (max-width: 768px) {
  .sec-magazine-entry__right {
    max-width: none;
  }
}
.sec-service {
  background-color: #f2f2f2;
  padding: 12.5rem 0;
}
@media screen and (max-width: 768px) {
  .sec-service {
    padding: 6.25rem 0;
  }
}
.sec-service__btn {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 6.875rem auto 0;
}
@media screen and (max-width: 768px) {
  .sec-service__btn {
    margin: 4.375rem auto 0;
  }
}
.sec-service-archive {
  padding-bottom: 18.75rem;
}
@media screen and (max-width: 768px) {
  .sec-service-archive {
    padding-bottom: 0;
  }
}
.sec-news {
  padding: 19.375rem 0 12.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-news {
    padding: 6.25rem 0;
  }
}
.sec-news__btn {
  margin-top: 6.875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-news__btn {
    margin-top: 4.375rem;
  }
}
.sec-news-archive {
  padding: 7.5rem 0 12.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-news-archive {
    padding: 1.25rem 0 6.25rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-news-archive .news-article:first-of-type {
    border-top: none;
  }
}
.sec-news-entry {
  padding: 7.5rem 0 12.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-news-entry {
    padding: 3.125rem 0 6.25rem;
  }
}
.sec-mv {
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-mv {
    padding-bottom: 3.125rem;
  }
}
.sec-mv--magazine {
  background-color: var(--color-primary);
  padding: 6.25rem 0 10rem;
  text-align: center;
  -webkit-mask-image: url(../img/mask-magazine.png);
          mask-image: url(../img/mask-magazine.png);
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-position: bottom;
          mask-position: bottom;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .sec-mv--magazine {
    padding: 6.25rem 0 4.375rem;
    -webkit-mask-image: url(../img/mask-magazine-sp.png);
            mask-image: url(../img/mask-magazine-sp.png);
  }
}
.sec-mv--magazine-entry {
  padding: 7.5rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .sec-mv--magazine-entry {
    padding: 6.25rem 0 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mv--news-entry {
    padding-bottom: 1.25rem;
  }
}
.sec-mv--yellow {
  background-color: var(--color-primary);
  padding: 11.25rem 0 5rem;
  overflow-x: clip;
}
@media screen and (max-width: 768px) {
  .sec-mv--yellow {
    padding: 8.75rem 0 2.5rem;
  }
}
.sec-mv__subtitle {
  font-size: 1.25rem;
  color: #999;
  letter-spacing: 3px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-mv__subtitle {
    font-size: 1.125rem;
    margin-top: 3.4375rem;
  }
}
.sec-mv__subtitle--en {
  font-family: var(--font-en);
  font-weight: 300;
}
.sec-mv__subtitle--white {
  color: #fff;
  margin-top: 1.25rem;
}
.sec-mv__title {
  font-size: 5.625rem;
  font-family: var(--font-en);
  font-weight: 200;
  letter-spacing: 10px;
  word-break: break-all;
}
@media screen and (max-width: 768px) {
  .sec-mv__title {
    font-size: 3.375rem;
    letter-spacing: 5px;
    margin-top: 0.625rem;
  }
}
.sec-mv__title--sm {
  font-size: 2.5rem;
  letter-spacing: 4px;
  margin-top: 0.9375rem;
  line-height: 1.6;
  font-family: "zen-kaku-gothic-antique", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .sec-mv__title--sm {
    font-weight: 400;
    font-size: 1.625rem;
    letter-spacing: 2px;
    line-height: 1.4;
  }
}
.sec-mv__title--advantages {
  font-size: 11.375rem;
  position: relative;
  z-index: 1;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1200px) {
  .sec-mv__title--advantages {
    font-size: 5.625rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-mv__title--advantages {
    font-size: 2.5rem;
  }
}
.sec-mv__title--advantages::after {
  content: "";
  position: absolute;
  top: -6.25rem;
  right: -5rem;
  width: 12.5rem;
  height: 12.5rem;
  background: no-repeat url(../img/icon-advantages.svg) center center/contain;
  z-index: -1;
  animation: rotateAdvantages 15s linear infinite;
}
@media screen and (max-width: 768px) {
  .sec-mv__title--advantages::after {
    top: -6.0625rem;
    right: -2.6875rem;
    width: 8.75rem;
    height: 8.75rem;
  }
}
.sec-mv__title--magazine {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .sec-mv__title--magazine {
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.sec-mv__title--magazine::after {
  content: "";
  position: absolute;
  top: -2.1875rem;
  right: 7.1875rem;
  width: 9.1875rem;
  height: 6.75rem;
  background: no-repeat url(../img/icon-book.svg) center center/contain;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .sec-mv__title--magazine::after {
    width: 5rem;
    height: 3.75rem;
    top: -1.4375rem;
    right: 0.75rem;
  }
}
.sec-mv__title--magazine-entry {
  font-size: 2.5rem;
  letter-spacing: 5px;
  margin-top: 0.9375rem;
  line-height: 1.7;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .sec-mv__title--magazine-entry {
    font-size: 1.25rem;
    letter-spacing: 2px;
    line-height: 1.5;
  }
}
@media screen and (max-width: 768px) {
  .sec-mv__title--magazine-entry br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sec-mv__title--download {
    font-size: 2.9375rem;
  }
}
.sec-mv__copy {
  font-size: 1.5rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-mv__copy {
    font-size: 1.1875rem;
  }
}
.sec-mv__text {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
.sec-mv__text--mt-lg {
  margin-top: 5rem;
}
.sec-mv__date {
  text-align: right;
  font-size: 0.875rem;
  display: block;
  font-family: var(--font-en);
  color: #adadad;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .sec-mv__date {
    text-align: left;
    margin-top: 3.125rem;
  }
}
.sec-mv__client {
  font-size: 1.75rem;
  line-height: 1.6;
  margin-top: 0.3125rem;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .sec-mv__client {
    line-height: 1.5;
    font-size: 1rem;
    margin-top: 1.25rem;
    font-weight: 400;
  }
}
.sec-mv__categories {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .sec-mv__categories {
    margin-top: 0.8125rem;
  }
}
.sec-mv__tags {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .sec-mv__tags {
    margin-top: 0.3125rem;
  }
}
.sec-mv__magazine-subtitle {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec-mv__magazine-subtitle {
    font-size: 0.75rem;
  }
}
.sec-mv__magazine-title {
  font-size: 1.375rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-mv__magazine-title {
    font-size: 1rem;
  }
}
.sec-mv__breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.sec-mv__breadcrumb--magazine {
  margin-bottom: 5.3125rem;
}
.sec-member {
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 768px) {
  .sec-member {
    padding-bottom: 9.375rem;
  }
}
.sec-privacy {
  padding: 7.5rem 0 12.5rem;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-privacy {
    padding: 2.5rem 0 6.25rem;
  }
}
.sec-privacy p {
  font-size: 0.875rem;
  margin-top: 1.875rem;
  letter-spacing: 0.3px;
}
.sec-privacy h3 {
  font-size: 1.25rem;
  margin-top: 6.25rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-privacy h3 {
    margin-top: 5rem;
    font-size: 1.125rem;
  }
}
.sec-privacy .square-btn {
  margin: 1.25rem 0 0.625rem;
}
.sec-contact {
  background-color: #f2f2f2;
  padding: 5rem 0 14.375rem;
}
@media screen and (max-width: 768px) {
  .sec-contact {
    padding: 3.125rem 0 6.25rem;
  }
}
.sec-thanks {
  background-color: #f2f2f2;
  padding: 7.5rem 0 14.375rem;
}
@media screen and (max-width: 768px) {
  .sec-thanks {
    padding: 2.5rem 0 6.25rem;
  }
}
.sec-thanks__title {
  text-align: center;
  font-size: 1.875rem;
  padding-bottom: 2.5rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .sec-thanks__title {
    font-size: 1rem;
    padding-bottom: 1.875rem;
  }
}
.sec-thanks__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc(50% - 1.25rem);
  height: 1px;
  width: 2.5rem;
  background-color: var(--color-black);
}
.sec-thanks__text {
  font-size: 1.125rem;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-thanks__text {
    font-size: 0.875rem;
    margin-top: 1.875rem;
    text-align: left;
  }
}
.sec-thanks__text a {
  color: #2271b1;
  text-decoration: underline;
}
.sec-download {
  background-color: #f2f2f2;
  padding: 5rem 0 14.375rem;
}
@media screen and (max-width: 768px) {
  .sec-download {
    padding: 2.5rem 0 6.25rem;
  }
}
.sec-download__label {
  font-size: 1.25rem;
}
.sec-download__img {
  text-align: center;
  margin: 5rem 0 6.25rem;
}
@media screen and (max-width: 768px) {
  .sec-download__img {
    margin: 1.875rem 0 3.125rem;
  }
}
.sec-profile {
  padding: 9.375rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-profile {
    padding: 3.125rem 0;
  }
}
.sec-outline {
  padding: 9.375rem 0;
}
@media screen and (max-width: 768px) {
  .sec-outline {
    padding: 3.125rem 0;
  }
}
.sec-clients {
  padding: 9.375rem 0;
  background-color: #f2f2f2;
}
@media screen and (max-width: 768px) {
  .sec-clients {
    padding: 3.125rem 0;
  }
}
.sec-history {
  padding: 9.375rem 0;
}
@media screen and (max-width: 768px) {
  .sec-history {
    padding: 3.125rem 0 5.625rem;
  }
}
.sec-entry {
  padding: 9.375rem 0 12.5rem;
}
@media screen and (max-width: 768px) {
  .sec-entry {
    padding: 3.75rem 0 6.25rem;
  }
}
.sec-entry__form {
  margin-top: 6.25rem;
}
.sec-faq {
  padding: 6.25rem 0 16.875rem;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .sec-faq {
    padding: 3.125rem 0 6.25rem;
  }
}
.sec-links {
  padding: 8.125rem 0 14.375rem;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .sec-links {
    padding: 3.125rem 0 6.25rem;
  }
}
.sec-offer {
  background-color: var(--color-primary);
  padding-bottom: 9.375rem;
}
@media screen and (max-width: 768px) {
  .sec-offer {
    padding-bottom: 2.5rem;
  }
}
.sec-media {
  padding: 13.75rem 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .sec-media {
    padding: 5rem 0;
  }
}
.sec-media__flex {
  padding: 0 0 0 6.25rem;
  display: flex;
  justify-content: space-between;
  gap: 6.25rem;
}
@media screen and (max-width: 1366px) {
  .sec-media__flex {
    gap: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  .sec-media__flex {
    flex-direction: column;
    padding: 0 2.375rem;
    gap: 5rem;
  }
}
.sec-media__intro {
  max-width: 30rem;
}
@media screen and (max-width: 768px) {
  .sec-media__intro {
    max-width: none;
  }
}
.sec-media__title {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .sec-media__title {
    font-size: 1.1875rem;
  }
}
.sec-media__text {
  font-size: 0.875rem;
  margin-top: 1.5625rem;
  text-align: justify;
}
.sec-media__link {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .sec-media__link {
    margin-top: 3.75rem;
  }
}
.sec-proposal {
  position: relative;
  background: #efefef;
  height: 500vh;
}
@media screen and (max-width: 768px) {
  .sec-proposal {
    height: auto;
    padding: 4.375rem 0 9.375rem;
  }
}
.sec-proposal__inner {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 2.5rem 0 3.75rem;
}
@media screen and (max-width: 768px) {
  .sec-proposal__inner {
    position: initial;
    height: auto;
    overflow-y: visible;
    overflow-x: clip;
    padding: 0;
  }
}
.sec-404 {
  padding: 0 0 14.375rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .sec-404 {
    padding: 0 0 6.25rem;
  }
}
.sec-404__text {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .sec-404__text {
    margin-top: 0.625rem;
    font-size: 0.875rem;
    text-align: left;
  }
}

/* =============================================
  mv
============================================= */
.mv {
  padding-left: 2.5rem;
  opacity: 0;
  animation: mvFadeAnim 1s ease 0.3s forwards;
}
@media screen and (max-width: 768px) {
  .mv {
    padding-left: 1.5625rem;
  }
}
.mv__slider {
  height: calc(100svh - 6.25rem);
  min-height: 48.75rem;
}
@media screen and (max-width: 768px) {
  .mv__slider {
    min-height: auto;
  }
}
.mv__slider img {
  height: 100%;
}
.mv__slider.swiper-slide-active img, .mv__slider.swiper-slide-duplicate-active img, .mv__slider.swiper-slide-prev img {
  animation: mvScaleAnim 8s linear normal both;
}
.mv__navigation {
  position: fixed;
  right: 1.875rem;
  bottom: 1.875rem;
  padding: 0 1.5625rem;
  z-index: 2;
}
.mv__navigation.is-active {
  position: absolute;
}
@media screen and (max-width: 768px) {
  .mv__navigation {
    right: 1.5625rem;
    bottom: 1.5625rem;
    padding: 0 1.25rem;
  }
}
.mv__paginate {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.9375rem;
  bottom: 0 !important;
}
.mv__paginate .swiper-pagination-bullet {
  width: 0.5625rem;
  height: 0.5625rem;
  margin: 0 !important;
  background-color: transparent;
  border: 0.5px solid var(--color-black);
  opacity: 1;
}
.mv__paginate .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: var(--color-black);
}
.mv__prev, .mv__next {
  color: var(--color-black);
  width: auto;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}
.mv__prev::after, .mv__next::after {
  font-size: 0.625rem;
}
.mv__prev {
  left: 0;
}
.mv__next {
  right: 0;
}

/* =============================================
  works
============================================= */
.works-cards {
  margin-top: 4.0625rem;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3.75rem 1px;
}
@media screen and (max-width: 768px) {
  .works-cards {
    margin-top: 2.8125rem;
    grid-template-columns: 1fr 1fr;
    gap: 2.8125rem 1px;
  }
}
.works-card__link:hover .works-card__img img {
  transform: scale(1.1);
}
.works-card__img {
  overflow: hidden;
  aspect-ratio: 1/1;
}
.works-card__img img {
  transition: transform ease 0.3s;
  height: 100%;
}
.works-card__title {
  font-size: 1rem;
  font-weight: 400;
  padding: 0.9375rem 1.25rem 0;
}
@media screen and (max-width: 768px) {
  .works-card__title {
    font-size: 0.9375rem;
    padding: 0.625rem 0.625rem 0;
  }
}
.works-card__text {
  margin-top: 0.5rem;
  padding: 0 1.25rem;
  font-size: 0.8125rem;
  color: var(--color-secondary);
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .works-card__text {
    line-height: 1.5;
    margin-top: 0.3125rem;
    padding: 0 0.625rem;
    font-size: 0.75rem;
  }
}
.works-cards02 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .works-cards02 {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.works-card02__link:hover .works-card02__img img {
  transform: scale(1.1);
}
.works-card02__img {
  overflow: hidden;
  aspect-ratio: 375/250;
}
.works-card02__img img {
  height: 100%;
  transition: transform ease 0.3s;
}
.works-card02__title {
  font-size: 1rem;
  font-weight: 400;
  margin-top: 1.25rem;
}
.works-card02__text {
  font-size: 0.8125rem;
  margin-top: 0.5rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .works-card02__text {
    line-height: 1.5;
    margin-top: 0.3125rem;
  }
}
.works-card02__categories {
  margin-top: 0.625rem;
}
@media screen and (max-width: 768px) {
  .works-card02__categories {
    margin-top: 0.3125rem;
  }
}
.works-card02__tags {
  margin-top: 0.3125rem;
}

/* =============================================
  service
============================================= */
.service-links {
  margin-top: 3.75rem;
}
@media screen and (max-width: 768px) {
  .service-links {
    margin-top: 2.8125rem;
  }
}
.service-link {
  display: grid;
  grid-template-columns: 17.5rem 1fr;
  align-items: center;
  padding: 3.125rem 2rem 3.125rem 8.125rem;
  border-bottom: 1px solid var(--color-black);
  transition: background-color ease 0.3s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service-link {
    grid-template-columns: 1fr;
    padding: 1.875rem 1.875rem 1.875rem 5.3125rem;
    border-bottom: 0.5px solid var(--color-black);
  }
}
.service-link:first-of-type {
  border-top: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .service-link:first-of-type {
    border-top: 0.5px solid var(--color-black);
  }
}
.service-link:hover {
  background-color: #fff;
}
.service-link:hover .service-link__icon {
  transform: rotate(360deg);
}
.service-link:hover .service-link__icon .icon-color {
  fill: var(--color-primary);
  stroke: transparent;
}
.service-link__icon {
  position: absolute;
  transition: transform ease 0.3s;
}
.service-link__icon--branding {
  left: 2.375rem;
  top: calc(50% - 1.65625rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--branding {
    width: 2.625rem;
    height: 2.625rem;
    top: calc(50% - 1.3125rem);
    left: 0.9375rem;
  }
}
.service-link__icon--graphic {
  left: 2.0625rem;
  top: calc(50% - 2.0625rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--graphic {
    width: 3rem;
    height: 3.375rem;
    left: 0.8125rem;
    top: calc(50% - 1.6875rem);
  }
}
.service-link__icon--web {
  left: 2.3125rem;
  top: calc(50% - 1.625rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--web {
    width: 2.5rem;
    height: 2.5rem;
    left: 0.9375rem;
    top: calc(50% - 1.25rem);
  }
}
.service-link__icon--copy {
  left: 2.3125rem;
  top: calc(50% - 1.3125rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--copy {
    width: 2.5rem;
    height: 2.0625rem;
    left: 0.9375rem;
    top: calc(50% - 1rem);
  }
}
.service-link__icon--video {
  left: 2.3125rem;
  top: calc(50% - 1.6875rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--video {
    width: 2.5rem;
    height: 2.625rem;
    left: 1rem;
    top: calc(50% - 1.3125rem);
  }
}
.service-link__icon--space {
  left: 2.1875rem;
  top: calc(50% - 0.940625rem);
}
@media screen and (max-width: 768px) {
  .service-link__icon--space {
    width: 2.6875rem;
    height: 1.5rem;
    left: 0.9375rem;
    top: calc(50% - 0.75rem);
  }
}
.service-link__icon .icon-color {
  transition: fill ease 0.3s, stroke ease 0.3s;
}
.service-link__title {
  font-size: 1.625rem;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 768px) {
  .service-link__title {
    font-size: 1.5rem;
  }
}
.service-link__subtitle {
  font-size: 0.75rem;
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .service-link__subtitle {
    font-size: 0.6875rem;
    margin-top: 0.1875rem;
  }
}
@media screen and (max-width: 768px) {
  .service-link__text {
    display: none;
  }
}
.service-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .service-cards {
    grid-template-columns: 1fr;
    border-top: 0.5px solid var(--color-black);
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }
}
.service-card {
  padding: 3.75rem 3.75rem 9.375rem;
  border-bottom: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  transition: background-color ease 0.3s;
  display: block;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .service-card {
    padding: 1.875rem 1.875rem 7.5rem;
  }
}
@media screen and (max-width: 768px) {
  .service-card {
    padding: 3.125rem;
    border-right: none;
    border-bottom: 0.5px solid var(--color-black);
  }
}
.service-card:hover {
  background-color: var(--color-primary);
}
.service-card:hover .service-card__icon {
  transform: rotate(360deg);
}
.service-card:hover .service-card__icon .icon-color {
  fill: #fff;
  stroke: #fff;
}
.service-card:nth-child(3n) {
  border-right: none;
}
@media screen and (max-width: 768px) {
  .service-card:last-child {
    border-bottom: none;
  }
}
.service-card__title {
  font-family: var(--font-en);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .service-card__title {
    font-size: 1.875rem;
  }
}
.service-card__subtitle {
  font-size: 0.875rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--color-black);
  margin-bottom: 1.25rem;
}
@media screen and (max-width: 768px) {
  .service-card__subtitle {
    border-bottom: 0.5px solid var(--color-black);
  }
}
.service-card__text {
  font-size: 0.875rem;
  text-align: justify;
}
.service-card__link {
  position: absolute;
  right: 3.75rem;
  bottom: 3.75rem;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 1px;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 0.125rem;
}
@media screen and (max-width: 1000px) {
  .service-card__link {
    right: 1.875rem;
    bottom: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .service-card__link {
    position: static;
    margin-top: 4.375rem;
    margin-left: auto;
    display: block;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.service-card__icon {
  position: absolute;
  left: 3.75rem;
  bottom: 3.75rem;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 1000px) {
  .service-card__icon {
    left: 1.875rem;
    bottom: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .service-card__icon {
    left: 3.125rem;
    bottom: 3.125rem;
  }
}

/* =============================================
  other
============================================= */
.other-links {
  padding-top: 14.375rem;
  margin-bottom: -6.875rem;
}
@media screen and (max-width: 768px) {
  .other-links {
    padding: 6.25rem 0;
    margin-bottom: 0;
  }
}
.other-links__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.375rem 0;
}
@media screen and (max-width: 768px) {
  .other-links__inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
.other-link {
  position: relative;
  height: 13.75rem;
  background-color: #aaaaa0;
  color: #fff;
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 0 3.75rem;
  transition: color ease 0.3s, background-color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .other-link {
    height: auto;
    min-height: 8.75rem;
    padding: 0 1.5625rem;
  }
}
.other-link:nth-of-type(1) {
  grid-column: 1/4;
  background-color: var(--color-primary);
  color: var(--color-black);
  border: 1px solid var(--color-primary);
}
@media screen and (max-width: 768px) {
  .other-link:nth-of-type(1) {
    grid-column: auto;
  }
}
.other-link:nth-of-type(1):hover .other-link__icon {
  transform: scale(1.2);
}
.other-link:nth-of-type(1):hover .other-link__icon .icon-arrow {
  stroke: var(--color-primary);
}
.other-link:nth-of-type(1):hover .other-link__icon .icon-circle {
  fill: #fff;
  stroke: #fff;
}
.other-link:nth-of-type(2) {
  border-left: 1px solid #aaaaa0;
}
.other-link:nth-of-type(4) {
  border-right: 1px solid #aaaaa0;
}
.other-link:nth-of-type(n+2) {
  text-align: center;
  border-top: 1px solid #aaaaa0;
  border-bottom: 1px solid #aaaaa0;
}
@media screen and (max-width: 1000px) {
  .other-link:nth-of-type(n+2) {
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  .other-link:nth-of-type(n+2) {
    border: 1px solid #aaaaa0;
    text-align: left;
    padding: 0 1.5625rem;
  }
}
.other-link:nth-of-type(n+2)::before {
  content: "";
  position: absolute;
  top: 1.875rem;
  right: -1px;
  width: 1px;
  height: calc(100% - 3.75rem);
  background-color: #fff;
  z-index: 1;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .other-link:nth-of-type(n+2)::before {
    content: none;
  }
}
.other-link:nth-of-type(n+2):hover {
  background-color: #fff;
  color: #aaaaa0;
}
.other-link:nth-of-type(n+2):hover::before {
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .other-link:nth-of-type(n+2):hover .other-link__icon {
    transform: scale(1.2);
  }
  .other-link:nth-of-type(n+2):hover .other-link__icon .icon-arrow {
    stroke: #aaaaa0;
  }
  .other-link:nth-of-type(n+2):hover .other-link__icon .icon-circle {
    fill: #fff;
    stroke: #aaaaa0;
  }
}
.other-link:nth-of-type(n+2):last-child::before {
  content: none;
}
.other-link__icon {
  position: absolute;
  top: calc(50% - 1.25rem);
  right: 3.75rem;
  width: 2.5rem;
  height: 2.5rem;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .other-link__icon {
    top: calc(50% - 0.9375rem);
    right: 1.5625rem;
    width: 1.875rem;
    height: 1.875rem;
  }
}
.other-link__icon .icon-arrow {
  stroke: var(--color-black);
}
.other-link__icon .icon-circle {
  stroke: var(--color-black);
}
.other-link__icon--white {
  display: none;
}
@media screen and (max-width: 768px) {
  .other-link__icon--white {
    display: block;
  }
}
.other-link__icon--white .icon-arrow {
  stroke: #fff;
}
.other-link__icon--white .icon-circle {
  stroke: #fff;
}
.other-link__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 1.875rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .other-link__heading {
    flex-direction: column;
    gap: 0;
    margin-bottom: 0;
  }
}
.other-link__title {
  font-size: 2.25rem;
  font-family: var(--font-en);
  font-weight: 200;
  letter-spacing: 4px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .other-link__title {
    font-size: 1.875rem;
    line-height: 1;
    letter-spacing: 2px;
  }
}
.other-link__subtitle {
  font-size: 0.75rem;
  opacity: 0.5;
}
@media screen and (max-width: 768px) {
  .other-link__subtitle {
    font-size: 0.6875rem;
    margin-top: 0.3125rem;
  }
}
.other-link__text {
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .other-link__text {
    display: none;
  }
}

/* =============================================
  news
============================================= */
.news-article {
  border-bottom: 1px solid var(--color-black);
}
.news-article:first-of-type {
  border-top: 1px solid var(--color-black);
}
.news-article__link {
  display: grid;
  grid-template-columns: 6.25rem 9.375rem 1fr;
  padding: 1.875rem 6.25rem 1.875rem 0.9375rem;
  transition: background-color ease 0.4s;
  position: relative;
}
@media screen and (max-width: 768px) {
  .news-article__link {
    grid-template-columns: 6.25rem 1fr;
    padding: 1.5625rem 3.125rem 1.5625rem 0px;
  }
}
.news-article__link::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.625rem;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  top: calc(50% - 0.3125rem);
  right: 2.1875rem;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .news-article__link::after {
    right: 0.625rem;
  }
}
.news-article__link:hover {
  background-color: #fff;
}
.news-article__date {
  font-family: var(--font-en);
  font-size: 0.875rem;
  line-height: 1.9;
}
.news-article__category {
  font-size: 0.8125rem;
  color: var(--color-secondary);
  line-height: 1.9;
}
.news-article__title {
  font-weight: 400;
  font-size: 0.875rem;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .news-article__title {
    grid-column: 1/3;
  }
}

/* =============================================
  contact
============================================= */
.contact-link {
  background-color: #aaaaa0;
  display: grid;
  grid-template-columns: 1fr 40%;
  align-items: center;
}
@media screen and (max-width: 1366px) {
  .contact-link {
    grid-template-columns: 1fr 28.125rem;
  }
}
@media screen and (max-width: 768px) {
  .contact-link {
    display: flex;
    flex-direction: column-reverse;
  }
}
.contact-link:hover .contact-link__icon {
  transform: scale(1.15);
}
.contact-link:hover .contact-link__icon .icon-circle {
  fill: #fff;
}
.contact-link:hover .contact-link__icon .icon-arrow {
  stroke: #aaaaa0;
}
.contact-link__heading {
  position: relative;
  width: 100%;
  padding: 0 10rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .contact-link__heading {
    padding: 3.75rem 2.375rem;
  }
}
.contact-link__icon {
  position: absolute;
  top: calc(50% - 1.71875rem);
  right: 5rem;
  width: 3.4375rem;
  height: 3.4375rem;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .contact-link__icon {
    top: calc(50% - 1.5625rem);
    right: 2.375rem;
    width: 3.125rem;
    height: 3.125rem;
  }
}
.contact-link__icon .icon-circle,
.contact-link__icon .icon-arrow {
  stroke: #fff;
}
.contact-link__title {
  color: #fff;
  font-size: 3.75rem;
  font-family: var(--font-en);
  font-weight: 200;
  line-height: 1;
  letter-spacing: 3px;
}
@media screen and (max-width: 768px) {
  .contact-link__title {
    font-size: 2.5rem;
  }
}
.contact-link__subtitle {
  color: #fff;
  font-size: 0.875rem;
  margin-top: 0.9375rem;
  display: inline-block;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .contact-link__subtitle {
    margin-top: 0.625rem;
  }
}
.contact-link__img {
  height: 21.25rem;
}
@media screen and (max-width: 768px) {
  .contact-link__img {
    height: auto;
  }
}
.contact-link__img img {
  height: 100%;
}

/* =============================================
  company
============================================= */
.company-title {
  font-size: 1.875rem;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 2px;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .company-title {
    font-size: 1.5rem;
    padding-bottom: 0.625rem;
  }
}
.company-profile > div {
  display: grid;
  grid-template-columns: 11.25rem 1fr;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company-profile > div {
    grid-template-columns: 4.6875rem 1fr;
    margin-bottom: 1.875rem;
  }
}
.company-profile > div:last-child {
  margin-bottom: 0;
}
.company-profile > div dt, .company-profile > div dd {
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .company-profile > div dt, .company-profile > div dd {
    font-size: 0.875rem;
  }
}
.company-profile__btn {
  margin-top: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .company-profile__btn {
    margin-top: 0.9375rem;
  }
}
.company-outline > div {
  display: grid;
  grid-template-columns: 14.375rem 1fr;
  margin-bottom: 1.875rem;
}
@media screen and (max-width: 768px) {
  .company-outline > div {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}
.company-outline > div:last-child {
  margin-bottom: 0;
}
.company-outline > div dt, .company-outline > div dd {
  line-height: 1.75;
  text-align: justify;
}
@media screen and (max-width: 768px) {
  .company-outline > div dt, .company-outline > div dd {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 768px) {
  .company-outline > div dt {
    font-weight: 500;
  }
}
.company-clients {
  display: grid;
  grid-template-rows: repeat(35, auto);
  grid-template-columns: 1fr 1fr;
  grid-auto-flow: column;
  gap: 0 1.875rem;
}
@media screen and (max-width: 768px) {
  .company-clients {
    grid-template-rows: auto;
    grid-template-columns: 1fr;
    grid-auto-flow: initial;
  }
}
.company-clients li {
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .company-clients li {
    font-size: 0.875rem;
  }
}
.company-clients__last {
  grid-row: -1;
  color: #999999;
}
@media screen and (max-width: 768px) {
  .company-clients__last {
    grid-row: initial;
    text-align: right;
    margin-top: 1.875rem;
  }
}
.company-history__row {
  display: grid;
  grid-template-columns: 5.3125rem 11.5625rem 1fr;
  margin-bottom: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .company-history__row {
    grid-template-columns: 3.75rem 1fr;
    margin-bottom: 2.1875rem;
    gap: 1.25rem 0;
    align-items: center;
  }
}
.company-history__row:last-child {
  margin-bottom: 0;
}
.company-history__year {
  line-height: 1.6;
  font-family: var(--font-en);
}
.company-history__month {
  color: #999;
  line-height: 1.6;
}
.company-history__text {
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .company-history__text {
    grid-column: 1/3;
    font-size: 0.875rem;
  }
}

/* =============================================
  recruit
============================================= */
.recruit-require__input {
  display: none;
}
.recruit-require__input:checked + label {
  background-color: var(--color-primary);
  color: var(--color-black);
}
.recruit-require__input:checked + label .replace-svg {
  transform: rotate(90deg);
}
.recruit-require__input:checked + label .replace-svg .icon-circle {
  stroke: var(--color-black);
}
.recruit-require__input:checked + label .replace-svg .icon-arrow {
  stroke: var(--color-black);
}
.recruit-require__label {
  width: 50%;
  height: 10rem;
  background-color: #a8a89e;
  color: #fff;
  font-size: 0.875rem;
  display: block;
  float: left;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.3125rem;
  padding: 0 10rem 0 5rem;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .recruit-require__label {
    height: 11.25rem;
    padding: 0 0.625rem 2.5rem;
    text-align: center;
  }
}
.recruit-require__label:hover {
  opacity: 0.7;
}
.recruit-require__label .replace-svg {
  content: "";
  position: absolute;
  top: calc(50% - 1.25rem);
  right: 5rem;
  width: 2.5rem;
  height: 2.5rem;
  transform: rotate(-90deg);
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .recruit-require__label .replace-svg {
    top: auto;
    bottom: 1.25rem;
    width: 1.875rem;
    height: 1.875rem;
    right: calc(50% - 0.9375rem);
  }
}
.recruit-require__label span {
  display: block;
  font-size: 1.875rem;
  font-family: var(--font-en);
  font-weight: 300;
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .recruit-require__label span {
    font-size: 1.5rem;
  }
}
.recruit-require__content {
  display: none;
  clear: both;
  overflow: hidden;
  padding: 9.375rem 0;
  background-color: #efefef;
}
@media screen and (max-width: 768px) {
  .recruit-require__content {
    padding: 3.125rem 0 5rem;
  }
}
.recruit-require__heading {
  display: flex;
  align-items: flex-end;
  gap: 1.875rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__heading {
    gap: 1.25rem;
  }
}
.recruit-require__heading h3 {
  font-size: 1.5625rem;
  font-weight: 400;
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .recruit-require__heading h3 {
    font-size: 1.4375rem;
    letter-spacing: 2px;
  }
}
.recruit-require__heading span {
  font-size: 0.875rem;
  color: #5b5b5b;
}
@media screen and (max-width: 768px) {
  .recruit-require__heading span {
    font-size: 0.75rem;
  }
}
.recruit-require__list {
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__list {
    margin-top: 0.9375rem;
  }
}
.recruit-require__list > div {
  border-bottom: 1px solid var(--color-black);
  padding: 2.5rem 0;
  display: grid;
  grid-template-columns: 14.375rem 1fr;
}
@media screen and (max-width: 768px) {
  .recruit-require__list > div {
    grid-template-columns: 1fr;
    padding: 1.875rem 0;
  }
}
.recruit-require__list > div:first-of-type {
  border-top: 1px solid var(--color-black);
}
.recruit-require__list > div dt {
  position: relative;
  padding-left: 1.25rem;
}
.recruit-require__list > div dt::before {
  content: "";
  position: absolute;
  top: 0.5625rem;
  left: 0;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--color-primary);
}
.recruit-require__list > div dd {
  font-size: 0.875rem;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .recruit-require__list > div dd {
    padding-left: 1.25rem;
    margin-top: 0.625rem;
  }
}
.recruit-require__flow {
  margin-top: 4.375rem;
  background-color: #fff;
  padding: 1.5625rem 2.1875rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow {
    margin-top: 3.125rem;
    padding: 1.875rem 2.1875rem;
  }
}
.recruit-require__flow-title {
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow-title {
    margin-top: 1.875rem;
    text-align: center;
  }
}
.recruit-require__flow-title:first-child {
  margin-top: 0;
}
.recruit-require__flow-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9375rem 0;
  margin-top: 1.25rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow-list {
    flex-direction: column;
    align-items: center;
    gap: 1.5625rem;
  }
}
.recruit-require__flow-list li {
  border: 1px solid var(--color-black);
  padding: 0.125rem 0.625rem;
  min-width: 5.3125rem;
  font-size: 0.875rem;
  text-align: center;
  position: relative;
  margin-right: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow-list li {
    min-width: none;
    max-width: 12.5rem;
    width: 100%;
    margin-right: 0;
  }
}
.recruit-require__flow-list li::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.25rem);
  right: -2.34375rem;
  width: 1.25rem;
  height: 0.5rem;
  background: no-repeat url(../img/icon-flow-arrow.svg) center center/contain;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow-list li::after {
    background: no-repeat url(../img/icon-flow-arrow-sp.svg) center center/contain;
    top: auto;
    width: 0.5rem;
    height: 0.8125rem;
    right: calc(50% - 0.25rem);
    bottom: -1.1875rem;
  }
}
.recruit-require__flow-list li:last-child {
  margin-right: 0;
}
.recruit-require__flow-list li:last-child::after {
  content: none;
}
.recruit-require__flow-notes {
  margin-top: 1.25rem;
  font-size: 0.875rem;
}
@media screen and (max-width: 768px) {
  .recruit-require__flow-notes {
    text-align: center;
    margin-top: 1.5625rem;
    font-size: 0.75rem;
  }
}
.recruit-require__flow-text {
  margin-top: 0.625rem;
  font-size: 0.875rem;
}

#new-graduate:checked ~ #new-graduate-content,
#career:checked ~ #career-content {
  display: block;
}

/* =============================================
  member
============================================= */
.member-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 4.0625rem 5.4%;
}
@media screen and (max-width: 1000px) {
  .member-cards {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .member-cards {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 1.875rem;
  }
}
.member-card {
  display: block;
  transition: opacity ease 0.3s;
}
.member-card:hover {
  opacity: 0.7;
}
.member-card__position {
  font-size: 1.0625rem;
  font-family: var(--font-en);
  margin-top: 1.25rem;
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 2px;
}
.member-card__name {
  font-size: 1.375rem;
  font-family: var(--font-en);
  font-weight: 300;
  line-height: 1.8;
  letter-spacing: 2px;
}
.member-card__img {
  aspect-ratio: 1/1;
}
.member-card__img img {
  height: 100%;
}

/* =============================================
  magazine
============================================= */
.magazine-numbers {
  margin: 1.5625rem 0 0;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (max-width: 1000px) {
  .magazine-numbers {
    margin: 2.1875rem 0 2.8125rem;
  }
}
@media screen and (max-width: 768px) {
  .magazine-numbers--pc {
    display: none;
  }
}
.magazine-numbers--sp {
  display: none;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .magazine-numbers--sp {
    display: flex;
  }
}
.magazine-numbers--sp li button:hover {
  border: 1px solid var(--color-primary) !important;
  background-color: var(--color-primary) !important;
}
.magazine-numbers--sp li button.is-active {
  border: 1px solid var(--color-primary) !important;
  background-color: var(--color-primary) !important;
}
.magazine-numbers li button {
  display: inline-block;
  width: 0.625rem;
  height: 0.625rem;
  text-align: center;
  color: var(--color-black);
  border: 1px solid var(--color-black);
  border-radius: 50%;
  transition: color ease 0.3s, background-color ease 0.3s, border ease 0.3s;
  font-family: var(--font-en);
}
.magazine-numbers li button:hover {
  border: 1px solid #fff;
  background-color: #fff;
}
.magazine-numbers li button.is-active {
  border: 1px solid #fff;
  background-color: #fff;
}
.magazine-books {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .magazine-books {
    margin-top: 2.5rem;
  }
}
.magazine-book {
  width: 100%;
  transition: opacity ease 0.3s;
}
.magazine-book:hover {
  opacity: 0.8;
}
.magazine-book__img {
  position: relative;
  width: 80%;
  margin-left: auto;
  z-index: 2;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  display: block;
}
@media screen and (max-width: 768px) {
  .magazine-book__img {
    width: 106.53vw;
    z-index: 5;
  }
}
.magazine-book__img::before {
  content: "";
  position: absolute;
  top: 3%;
  left: 50%;
  transform: translateX(-50%);
  width: 103.5%;
  height: 101%;
  background: no-repeat url(../img/book-bg.svg) center center/contain;
}
.magazine-book__img img {
  -webkit-mask-image: url(../img/book-mask.svg);
          mask-image: url(../img/book-mask.svg);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  width: 100%;
  height: auto;
  aspect-ratio: 800/606;
  -o-object-fit: cover;
     object-fit: cover;
}
.magazine-book__card {
  margin-top: clamp(-11.25rem, -14.52vw, 0.0625rem);
  position: relative;
  background-color: #fff;
  background-image: linear-gradient(90deg, #efefef 1px, transparent 1px), linear-gradient(#efefef 1px, transparent 1px);
  background-size: clamp(0.0625rem, 2.5vw, 1.9375rem) clamp(0.0625rem, 2.5vw, 1.9375rem);
  background-position: top clamp(0.0625rem, 1.21vw, 0.9375rem) right 0px;
  width: clamp(0.0625rem, 40.32vw, 31.25rem);
  height: clamp(0.0625rem, 22.58vw, 17.5rem);
  padding: clamp(0.0625rem, 2.02vw, 1.5625rem) clamp(0.0625rem, 2.82vw, 2.1875rem) clamp(0.0625rem, 2.02vw, 1.5625rem) clamp(0.0625rem, 3.87vw, 3rem);
  overflow: hidden;
  transform: translateY(20px) rotate(-5deg);
  z-index: 3;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .magazine-book__card {
    margin-top: -6.25rem;
    width: calc(100% + 3.125rem);
    height: 28.125rem;
    margin-left: -2.375rem;
    transform: none;
    padding: 8.125rem 1.5625rem 2.8125rem 2.375rem;
    border-radius: 0 0 0.625rem 0;
    background-size: 1.9375rem 1.9375rem;
    background-position: top -1px right 0px;
    z-index: 1;
  }
}
.magazine-book__card::before {
  content: "";
  position: absolute;
  top: 0;
  left: clamp(-0.125rem, -0.16vw, 0.0625rem);
  width: clamp(0.0625rem, 2.98vw, 2.3125rem);
  height: 100%;
  background: radial-gradient(circle at left clamp(0.0625rem, 1.61vw, 1.25rem), var(--color-primary) clamp(0.0625rem, 0.73vw, 0.5625rem), #fff clamp(0.0625rem, 0.81vw, 0.625rem));
  background-size: clamp(0.0625rem, 2.98vw, 2.3125rem) clamp(0.0625rem, 3.23vw, 2.5rem);
  background-repeat: repeat-y;
  background-position: 1px 0;
}
@media screen and (max-width: 768px) {
  .magazine-book__card::before {
    content: none;
  }
}
.magazine-book__copy {
  font-size: clamp(0.0625rem, 1.61vw, 1.25rem);
  line-height: 1.6;
  font-weight: 400;
  padding-bottom: clamp(0.0625rem, 1.61vw, 1.25rem);
  border-bottom: 1px solid var(--color-black);
  height: clamp(0.0625rem, 6.85vw, 5.3125rem);
}
@media screen and (max-width: 768px) {
  .magazine-book__copy {
    font-size: 1.25rem;
    padding-bottom: 2.125rem;
    margin-top: 1.25rem;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .magazine-book__copy br {
    display: none;
  }
}
.magazine-book__subtitle {
  font-size: clamp(0.0625rem, 1.13vw, 0.875rem);
  font-family: var(--font-en);
  font-weight: 400;
  margin-top: clamp(0.0625rem, 1.13vw, 0.875rem);
}
@media screen and (max-width: 768px) {
  .magazine-book__subtitle {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}
.magazine-book__title {
  font-size: clamp(0.0625rem, 1.45vw, 1.125rem);
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .magazine-book__title {
    font-size: 1.125rem;
  }
}
.magazine-book__category {
  margin-top: clamp(0.0625rem, 1.21vw, 0.9375rem);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(0.0625rem, 0.81vw, 0.625rem);
}
@media screen and (max-width: 768px) {
  .magazine-book__category {
    margin-top: 3.125rem;
    gap: 0.625rem;
    display: none;
  }
}
.magazine-book__category li {
  color: #fff;
  background-color: #c1c1c1;
  border: 1px solid #c1c1c1;
  font-size: clamp(0.0625rem, 0.89vw, 0.6875rem);
  display: inline-block;
  font-family: var(--font-en);
  padding: clamp(0.0625rem, 0.32vw, 0.25rem) clamp(0.0625rem, 0.81vw, 0.625rem);
  border-radius: clamp(0.0625rem, 0.81vw, 0.625rem);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .magazine-book__category li {
    font-size: 0.6875rem;
    padding: 0.3125rem 0.625rem;
    border-radius: 0.625rem;
  }
}
.magazine-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6.25rem 5rem;
}
@media screen and (max-width: 768px) {
  .magazine-cards {
    grid-template-columns: 1fr;
    gap: 3.125rem;
  }
}
.magazine-card__link:hover .magazine-card__img img {
  transform: scale(1.1);
}
.magazine-card__img {
  overflow: hidden;
  aspect-ratio: 460/320;
}
.magazine-card__img img {
  height: 100%;
  transition: transform ease 0.3s;
}
.magazine-card__copy {
  font-size: 1.25rem;
  margin-top: 1.25rem;
  padding-bottom: 1.25rem;
  line-height: 1.6;
  border-bottom: 1px solid #939392;
  letter-spacing: 2px;
  min-height: 5.375rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .magazine-card__copy {
    font-size: 1rem;
    border-bottom: 0.5px solid #939392;
    min-height: auto;
  }
}
@media screen and (max-width: 768px) {
  .magazine-card__copy br {
    display: none;
  }
}
.magazine-card__subtitle {
  font-size: 0.8125rem;
  margin-top: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .magazine-card__subtitle {
    font-size: 0.75rem;
  }
}
.magazine-card__title {
  font-size: 1rem;
  font-family: var(--font-en);
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .magazine-card__title {
    font-size: 0.875rem;
  }
}
.magazine-card__categories {
  margin-top: 0.625rem;
}
.magazine-card__tags {
  margin-top: 0.3125rem;
}
.magazine-thumbnail img {
  height: 31.25rem;
}
@media screen and (max-width: 768px) {
  .magazine-thumbnail img {
    height: 15.625rem;
  }
}

/* =============================================
  faq
============================================= */
.faq-acc {
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .faq-acc {
    border-bottom: 0.5px solid var(--color-black);
  }
}
.faq-acc:first-of-type {
  border-top: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .faq-acc:first-of-type {
    border-top: 0.5px solid var(--color-black);
  }
}
.faq-acc__question {
  display: grid;
  grid-template-columns: 7.8125rem 1fr;
  align-items: center;
  padding: 2.5rem 3.75rem 2.5rem 2.5rem;
  position: relative;
  width: 100%;
  color: var(--color-black);
}
@media screen and (max-width: 768px) {
  .faq-acc__question {
    grid-template-columns: 3.125rem 1fr;
    padding: 2.1875rem 3.125rem 2.1875rem 0;
  }
}
.faq-acc__question.is-active::after {
  transform: rotate(225deg);
}
.faq-acc__question::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.3125rem);
  right: 1.875rem;
  width: 0.625rem;
  height: 0.625rem;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
  transform: rotate(45deg);
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .faq-acc__question::after {
    right: 0.1875rem;
  }
}
.faq-acc__answer {
  display: none;
}
.faq-acc__body {
  display: grid;
  grid-template-columns: 7.8125rem 1fr;
  align-items: center;
  background-color: #fff;
  margin-bottom: 2.5rem;
  padding: 2.5rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq-acc__body {
    grid-template-columns: 1fr;
    margin-bottom: 2.1875rem;
    padding: 1.5625rem;
  }
}
.faq-acc__char {
  font-size: 4.0625rem;
  font-family: var(--font-en);
  font-weight: 200;
  text-align: left;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .faq-acc__char {
    font-size: 1.875rem;
  }
}
.faq-acc__char--a {
  padding-left: 0.125rem;
}
.faq-acc__text {
  font-size: 1.25rem;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .faq-acc__text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.faq-acc__text--sm {
  font-size: 0.875rem;
}

/* =============================================
  links
============================================= */
.links-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 3.125rem;
}
@media screen and (max-width: 768px) {
  .links-list {
    grid-template-columns: 1fr 1fr;
    gap: 2.1875rem;
  }
}

/* =============================================
  advantages
============================================= */
@media screen and (max-width: 768px) {
  .adv-list {
    width: calc(100vw - 2.375rem);
    margin-left: calc(50% - 50vw);
  }
}
.adv-list div {
  border-top: 1px solid #323232;
  padding: 3.4375rem 0 3.4375rem 9.375rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .adv-list div {
    border-top: 0.5px solid #323232;
    padding: 2.5rem 0 2.5rem 2.375rem;
  }
}
.adv-list div::before {
  content: "";
  position: absolute;
  top: 3.125rem;
  left: 0;
  width: 3.125rem;
  height: 3.125rem;
  background: no-repeat url(../img/icon-advantages.svg) center center/contain;
  animation: rotateAdvantages 15s linear infinite;
}
@media screen and (max-width: 768px) {
  .adv-list div::before {
    content: none;
  }
}
.adv-list div dt {
  font-size: 1.625rem;
}
@media screen and (max-width: 768px) {
  .adv-list div dt {
    font-size: 1.125rem;
  }
}
.adv-list div dd {
  margin-top: 1.25rem;
  font-size: 0.875rem;
  line-height: 2;
  text-align: justify;
}
.adv-circles {
  width: calc(100% - 33.125rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 5%;
  margin-right: -3.66vw;
  margin-bottom: 7.5rem;
}
@media screen and (max-width: 1366px) {
  .adv-circles {
    margin-right: -3.125rem;
    width: auto;
    gap: 1.875rem;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .adv-circles {
    width: 100%;
    margin-left: 0;
    gap: 1.25rem;
    justify-content: flex-start;
  }
}
.adv-circles li {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff7cf;
  width: 16%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  font-size: 0.88vw;
}
@media screen and (max-width: 1366px) {
  .adv-circles li {
    width: 8.125rem;
    height: 8.125rem;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 768px) {
  .adv-circles li {
    width: calc(33.3333333333% - 0.8333333333rem);
    height: auto;
    font-size: 2.93vw;
  }
}
.adv-circles li:nth-child(1), .adv-circles li:nth-child(4), .adv-circles li:nth-child(8), .adv-circles li:nth-child(13), .adv-circles li:nth-child(16), .adv-circles li:nth-child(4) {
  background-color: var(--color-primary);
}
.adv-circles li:nth-child(7), .adv-circles li:nth-child(15), .adv-circles li:nth-child(19) {
  background: transparent;
  position: relative;
  z-index: 1;
}
.adv-circles li:nth-child(7)::after, .adv-circles li:nth-child(15)::after, .adv-circles li:nth-child(19)::after {
  content: "";
  position: absolute;
  top: -12.5%;
  left: -12.5%;
  width: 125%;
  height: 125%;
  background: no-repeat url(../img/icon-advantages-active.svg) center center/contain;
  z-index: -1;
  animation: rotateAdvantages 15s linear infinite;
}
@media screen and (max-width: 1366px) {
  .adv-circles li:nth-child(7)::after, .adv-circles li:nth-child(15)::after, .adv-circles li:nth-child(19)::after {
    top: calc(50% - 5.3125rem);
    left: calc(50% - 5.3125rem);
    width: 10.625rem;
    height: 10.625rem;
  }
}
@media screen and (max-width: 768px) {
  .adv-circles li:nth-child(7)::after, .adv-circles li:nth-child(15)::after, .adv-circles li:nth-child(19)::after {
    top: calc(50% - 14.67vw);
    left: calc(50% - 14.67vw);
    width: 29.33vw;
    height: 29.33vw;
  }
}
@media screen and (max-width: 768px) {
  .adv-circles li:nth-last-child(-n+2) {
    display: none;
  }
}
.adv-proposal {
  display: grid;
  grid-template-columns: 47% 45%;
  gap: 8%;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .adv-proposal {
    display: flex;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 768px) {
  .adv-proposal__body {
    padding: 0 2.375rem 8.125rem;
  }
}
.adv-proposal__badge {
  position: absolute;
  top: -4.375rem;
  left: -3.75rem;
  z-index: 2;
  text-align: center;
  letter-spacing: 1px;
  font-size: 0.875rem;
  line-height: 1.6;
  width: 10.625rem;
  height: 10.625rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .adv-proposal__badge {
    width: 8.75rem;
    height: 8.75rem;
    font-size: 0.8125rem;
    left: 0.625rem;
  }
}
.adv-proposal__badge::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: no-repeat url(../img/icon-advantages-active.svg) center center/contain;
  z-index: -1;
  animation: rotateAdvantages 15s linear infinite;
}
.adv-proposal__imgs {
  position: relative;
}
@media screen and (max-width: 768px) {
  .adv-proposal__imgs {
    display: flex;
    flex-direction: column;
    gap: 5.625rem;
  }
}
.adv-proposal__img {
  position: absolute;
  inset: 0;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .adv-proposal__img {
    position: relative;
    display: block;
    opacity: 1;
  }
}
.adv-proposal__img:first-child {
  opacity: 1;
}
.adv-proposal__title {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .adv-proposal__title {
    font-size: 1.1875rem;
  }
}
.adv-proposal__text {
  font-size: 0.875rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 768px) {
  .adv-proposal__text {
    margin-top: 1.25rem;
  }
}
.adv-proposal__btn {
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .adv-proposal__btn {
    margin-top: 4.375rem;
  }
}

/* =============================================
  sns
============================================= */
.sns-list {
  display: flex;
  align-items: center;
  gap: 1.875rem;
}

/* =============================================
  modal
============================================= */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgba(79, 79, 80, 0.7);
  padding: 11.25rem 2.5rem;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  backdrop-filter: blur(12px);
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 0;
  }
}
.modal.is-active {
  opacity: 1;
  visibility: visible;
}
.modal__body {
  background-color: #fff;
  max-width: 51.875rem;
  margin: 0 auto;
  position: relative;
}
.modal__content {
  padding: 6.25rem;
}
@media screen and (max-width: 768px) {
  .modal__content {
    padding: 8.75rem 2.375rem;
  }
}
.modal__navigation {
  display: none;
}
@media screen and (max-width: 768px) {
  .modal__navigation {
    display: flex;
    gap: 1.25rem;
    position: absolute;
    top: 2.8125rem;
    left: 2.375rem;
  }
}
.modal__navigation button {
  display: block;
  width: 2.125rem;
  height: 2.125rem;
  border-radius: 50%;
  border: 1px solid var(--color-black);
  position: relative;
}
.modal__navigation button::before {
  content: "";
  position: absolute;
  top: 0.6875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
}
.modal__navigation button:nth-child(1)::before {
  left: 0.8125rem;
  transform: rotate(-135deg);
}
.modal__navigation button:nth-child(2)::before {
  left: 0.625rem;
  transform: rotate(45deg);
}
.modal__close {
  position: absolute;
  top: 1.5625rem;
  right: 1.5625rem;
  width: 3.75rem;
  height: 3.75rem;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .modal__close {
    width: 2.5rem;
    height: 2.5rem;
    top: 2.375rem;
    right: 2.375rem;
  }
}
.modal__close:hover {
  opacity: 0.7;
}
.modal__close span {
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: var(--color-black);
  position: absolute;
  top: 50%;
  left: 0;
}
.modal__close span:nth-of-type(1) {
  transform: rotate(45deg);
}
.modal__close span:nth-of-type(2) {
  transform: rotate(-45deg);
}
.modal__head {
  display: grid;
  grid-template-columns: 16.25rem 1fr;
  gap: 4.0625rem;
}
@media screen and (max-width: 768px) {
  .modal__head {
    grid-template-columns: 1fr;
    gap: 1.875rem;
  }
}
.modal__img {
  aspect-ratio: 1/1;
}
.modal__img img {
  height: 100%;
}
.modal__position {
  font-size: 1.0625rem;
  font-family: var(--font-en);
  letter-spacing: 2px;
  margin-top: -0.4375rem;
}
@media screen and (max-width: 768px) {
  .modal__position {
    font-size: 1rem;
    margin-top: 0;
    font-weight: 300;
  }
}
.modal__name {
  font-size: 1.4375rem;
  font-family: var(--font-en);
  letter-spacing: 2px;
}
@media screen and (max-width: 768px) {
  .modal__name {
    font-size: 1.5rem;
    font-weight: 300;
  }
}
.modal__name02 {
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.modal__color-title {
  font-size: 1.0625rem;
  margin-top: 0.9375rem;
  margin-bottom: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .modal__color-title {
    margin-top: 1.25rem;
    margin-bottom: 0;
  }
}
.modal__color-cmyk {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}
.modal__color-cmyk span {
  background-color: #333;
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
}
.modal__color-cmyk p {
  letter-spacing: 1px;
  font-size: 0.875rem;
  font-family: var(--font-en);
}
@media screen and (max-width: 768px) {
  .modal__color-cmyk p {
    font-weight: 300;
  }
}
.modal__qa {
  margin-top: 3.75rem;
}
.modal__qa dt {
  font-size: 1.0625rem;
  margin-bottom: 0.9375rem;
  line-height: 1.9;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .modal__qa dt {
    font-size: 0.875rem;
    margin-bottom: 0.625rem;
  }
}
.modal__qa dd {
  font-size: 0.875rem;
  margin-bottom: 1.875rem;
  line-height: 1.9;
}

/* =============================================
  footer
============================================= */
.footer {
  background-color: var(--color-primary);
  padding: 6.25rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 3.125rem 0 1.875rem;
  }
}
.footer__top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__top {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .footer__office {
    display: none;
  }
}
.footer__nav > ul {
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(7, auto);
  gap: 1.875rem 6.25rem;
}
@media screen and (max-width: 768px) {
  .footer__nav > ul {
    grid-auto-flow: initial;
    grid-template-rows: auto;
    gap: 1.25rem;
  }
}
.footer__nav > ul li ul {
  margin-top: 0.9375rem;
}
.footer__nav > ul li ul li {
  margin-bottom: 0.9375rem;
}
.footer__nav > ul li ul li:last-child {
  margin-bottom: 0;
}
.footer__nav > ul li ul li a {
  font-size: 0.8125rem;
  padding-left: 1.25rem;
}
.footer__nav > ul li ul li a::before {
  content: "";
  position: absolute;
  top: 0.34375rem;
  left: 0;
  width: 0.4375rem;
  height: 0.4375rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.footer__nav a {
  display: inline-block;
  font-size: 1.125rem;
  font-family: var(--font-en);
  font-weight: 300;
  position: relative;
  letter-spacing: 1px;
  transition: color ease 0.3s;
}
@media screen and (max-width: 768px) {
  .footer__nav a {
    font-size: 1rem;
  }
}
.footer__nav a:hover {
  color: #fff;
}
.footer__bottom {
  margin-top: 6.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.875rem;
  }
}
.footer__links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__links {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.625rem;
    width: 100%;
  }
}
.footer__links li, .footer__links a {
  font-size: 0.6875rem;
}
@media screen and (max-width: 768px) {
  .footer__links li:last-child {
    text-align: center;
    width: 100%;
    margin-top: 2.1875rem;
  }
}
.footer__links li a {
  transition: color ease 0.3s;
}
.footer__links li a:hover {
  color: #fff;
}

/* =============================================
  form
============================================= */
.form__item {
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .form__item {
    margin-bottom: 2.1875rem;
  }
}
.form__item:last-child {
  margin-bottom: 0;
}
.form__label {
  font-size: 1.125rem;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  margin-bottom: 0.9375rem;
  gap: 0.3125rem 1.25rem;
}
@media screen and (max-width: 768px) {
  .form__label {
    font-size: 1rem;
  }
}
.form__label .require {
  background-color: var(--color-primary);
  font-size: 0.75rem;
  padding: 0 0.625rem;
  color: var(--color-secondary);
  display: inline-block;
}
.form__label .notes {
  font-size: 0.6875rem;
  color: #999;
}
.form__input {
  background-color: #fff;
  width: 100%;
  height: 4.0625rem;
  padding: 0 1.5625rem;
}
.form__input::-moz-placeholder {
  color: #c1c1c1;
}
.form__input::placeholder {
  color: #c1c1c1;
}
.form__input--gray {
  background-color: #efefef;
}
.form__select {
  background-color: #fff;
  width: 100%;
  max-width: 12.5rem;
  height: 4.0625rem;
  padding: 0 1.5625rem;
  color: var(--color-black);
}
.form__textarea {
  background-color: #fff;
  width: 100%;
  height: 8.125rem;
  padding: 1.5625rem;
}
.form__textarea::-moz-placeholder {
  color: #c1c1c1;
}
.form__textarea::placeholder {
  color: #c1c1c1;
}
.form__textarea--gray {
  background-color: #efefef;
}
.form__file {
  display: none;
}
.form__file-label {
  background: #efefef;
  width: 100%;
  height: 4.0625rem;
  line-height: 4.0625rem;
  display: block;
  padding: 0 1.5625rem;
  cursor: pointer;
}
.form__file-label--white {
  background-color: #fff;
}
.form__radio {
  background-color: #efefef;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.625rem 2.1875rem;
  padding: 1.3125rem 1.5625rem;
}
.form__radio input {
  display: none;
}
.form__radio input:checked + label::after {
  opacity: 1;
}
.form__radio label {
  position: relative;
  padding-left: 1.5625rem;
}
.form__radio label::before {
  content: "";
  position: absolute;
  top: 0.23125rem;
  left: 0;
  border: 1px solid #adadad;
  width: 0.9375rem;
  height: 0.9375rem;
  border-radius: 50%;
}
.form__radio label::after {
  content: "";
  position: absolute;
  top: 0.45rem;
  left: 0.21875rem;
  background-color: var(--color-black);
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 50%;
  opacity: 0;
  transition: opacity ease 0.3s;
}
.form__radio--white {
  background-color: #fff;
}
.form__privacy {
  margin-top: 8.75rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__privacy {
    margin-top: 4.375rem;
  }
}
.form__privacy input {
  clip: rect(0, 0, 0, 0);
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  border: 0;
  position: absolute;
}
.form__privacy input:checked + label::after {
  opacity: 1;
  transform: rotate(-410deg);
}
.form__privacy label {
  position: relative;
  padding-left: 2rem;
  font-size: 1.125rem;
  transition: opacity ease 0.3s;
}
@media screen and (max-width: 768px) {
  .form__privacy label {
    padding-left: 1.5625rem;
    font-size: 0.875rem;
  }
}
.form__privacy label:hover {
  opacity: 0.7;
}
.form__privacy label::before {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 1.0625rem;
  height: 1.0625rem;
  background-color: #fff;
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 768px) {
  .form__privacy label::before {
    width: 0.875rem;
    height: 0.875rem;
    top: 0.25rem;
  }
}
.form__privacy label::after {
  content: "";
  position: absolute;
  top: 0.3125rem;
  left: 0;
  width: 1.0625rem;
  height: 0.4375rem;
  border-left: 2.5px solid var(--color-primary);
  border-bottom: 2.5px solid var(--color-primary);
  transform: rotate(-45deg);
  opacity: 0;
  transition: opacity ease 0.3s, transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .form__privacy label::after {
    width: 0.9375rem;
    height: 0.3125rem;
    top: 0.25rem;
  }
}
.form__privacy label a {
  border-bottom: 1px solid var(--color-black);
}
.form__errors {
  margin-bottom: 2.5rem;
}
.form__errors li {
  color: #ef0d0d;
  list-style: disc;
  margin-left: 1em;
  font-size: 0.875rem;
  line-height: 1.8;
}
.form__errors--mt {
  margin-top: 2.5rem;
}
.form__btn {
  margin: 4.0625rem auto 0;
  display: block;
  background-color: var(--color-primary);
  width: 100%;
  max-width: 36.25rem;
  padding: 3.125rem;
  text-align: left;
  font-size: 1.4375rem;
  letter-spacing: 2px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__btn {
    margin: 3.125rem auto 0;
    font-size: 1.125rem;
    padding: 2.5rem 1.5625rem;
  }
}
.form__btn:hover .replace-svg {
  transform: scale(1.2);
}
.form__btn:hover .replace-svg .icon-arrow {
  stroke: var(--color-primary);
}
.form__btn:hover .replace-svg .icon-circle {
  fill: var(--color-black);
}
.form__btn .replace-svg {
  position: absolute;
  top: calc(50% - 1.25rem);
  right: 3.125rem;
  width: 2.5rem;
  height: 2.5rem;
  transition: transform ease 0.3s;
}
@media screen and (max-width: 768px) {
  .form__btn .replace-svg {
    top: calc(50% - 1rem);
    right: 1.5625rem;
    width: 2rem;
    height: 2rem;
  }
}
.form__btn .replace-svg .icon-circle,
.form__btn .replace-svg .icon-arrow {
  stroke: var(--color-black);
}

/* =============================================
  animation
============================================= */
@keyframes loopText {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loopText2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@keyframes rotateAdvantages {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes slideIn {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  45% {
    transform: scaleX(100%);
    transform-origin: left;
  }
  55% {
    transform: scaleX(100%);
    transform-origin: right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: right;
  }
}
@keyframes mvFadeAnim {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes mvScaleAnim {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes magazineAnim {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  5% {
    opacity: 1;
    transform: translateX(0);
  }
  95% {
    opacity: 1;
    transform: translateX(0);
  }
  100% {
    opacity: 0;
    transform: translateX(10px);
  }
}
@keyframes headerAnim {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}