@charset "UTF-8";
/* ベーススタイル
------------------------------------------ */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: #100F0F;
  line-height: 1;
}

body.open {
  overflow: hidden;
}

a {
  color: #100F0F;
  text-decoration: none;
}

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

ul {
  list-style: none;
}

ol {
  list-style-type: none;
}

/* コンテンツ幅
------------------------------------------ */
@media screen and (max-width: 767px) {
  .content-inner {
    width: 100%;
    padding: 0 4.167vw;
  }
}
@media screen and (min-width: 768px) {
  .content-inner {
    width: min(102.857vw, 90rem);
    padding: 0 0.938rem;
    margin: 0 auto;
  }
}
/* 非表示
------------------------------------------ */
@media screen and (max-width: 767px) {
  ._sp {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  ._pc {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  ._tab {
    display: none;
  }
}
/* 文字関連
------------------------------------------ */
/* header
------------------------------------------ */
.header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 400;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.625rem 0.938rem 0 1.125rem;
}
@media screen and (min-width: 768px) {
  .header__inner {
    align-items: flex-start;
    padding: 0 0 1.5rem 0;
  }
}

.header-nav__wrapper {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .header-nav__wrapper {
    gap: 3.625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__wrapper {
    gap: clamp(1.875rem, -1.243rem + 6.497vw, 3.625rem);
  }
}

.header__logo {
  width: 9.063rem;
}
@media screen and (min-width: 768px) {
  .header__logo {
    width: 5.938rem;
    margin-top: 1.875rem;
    margin-left: 1.563rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__logo {
    width: clamp(5rem, 3.329rem + 3.48vw, 5.9375rem);
    margin-top: clamp(1.25rem, 0.136rem + 2.32vw, 1.875rem);
    margin-left: clamp(0.9375rem, -0.176rem + 2.32vw, 1.5625rem);
  }
}

@media screen and (max-width: 767px) {
  .header-content__wrapper {
    display: flex;
    align-items: center;
    gap: 1.25rem;
  }
}

.header-nav__list {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .header-nav__item {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .header-nav__item:first-child > .header-nav__link {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item:not(:first-child) {
    margin-left: 2.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__item:not(:first-child) {
    margin-left: clamp(0.625rem, -3.384rem + 8.353vw, 2.875rem);
  }
}

@media screen and (min-width: 768px) {
  .header-nav__item:nth-child(2) {
    margin-left: 2.813rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header-nav__item:nth-child(2) {
    margin-left: clamp(1.25rem, -1.534rem + 5.8vw, 2.8125rem);
  }
}

.header-nav__link {
  line-height: 1.4285714286;
}
@media screen and (min-width: 768px) {
  .header-nav__link {
    font-size: 0.875rem;
    color: #FFF;
  }
}

/* Dropdown */
@media screen and (min-width: 768px) {
  .nav-dropdown {
    position: relative;
  }
  .nav-dropdown a {
    cursor: pointer;
    position: relative;
  }
  .nav-dropdown > a::after {
    content: "";
    display: block;
    width: 6.5px;
    height: 6.5px;
    border-top: #FFF 0.063rem solid;
    border-right: #FFF 0.063rem solid;
    transform: translateY(-50%) rotate(135deg);
    transition: transform 0.3s;
    position: absolute;
    right: -29%;
    top: 50%;
  }
  .nav-dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    width: 13.313rem;
    background-color: #FFF;
    transform: scaleY(0);
    transform-origin: center top;
    transition: all 0.3s;
    position: absolute;
    left: 0;
    top: 1.25rem;
    margin-top: 0.625rem;
    padding: 1.25rem 0 1.25rem 2.188rem;
    z-index: 1;
  }
  .nav-dropdown__item a {
    font-size: 0.875rem;
    line-height: 1.4285714286;
  }
  .nav-dropdown:hover .nav-dropdown__list {
    transform: scaleY(1);
  }
  .nav-dropdown:hover a::after {
    transform: rotate(-45deg);
    top: 50%;
  }
  .nav-dropdown__item a {
    font-size: 0.875rem;
    line-height: 1;
    color: #100F0F;
    cursor: pointer;
  }
  .nav-dropdown__item a:hover {
    color: #AD1F25;
  }
}
.nav-dropdown__item a {
  position: relative;
}

.nav-dropdown__item a::before {
  content: "";
  width: 0.625rem;
  height: 0.125rem;
  background-color: #AD1F25;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}

/* hover-line
------------------------------------------ */
@media screen and (min-width: 768px) {
  .hover-line {
    position: relative;
  }
  .hover-line::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: all 0.3s;
  }
  .hover-line:hover::after {
    background-color: #AD1F25;
    transform: scale(1, 1);
  }
}
@media screen and (min-width: 768px) {
  .footer-nav__item > a {
    position: relative;
  }
  .footer-nav__item > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: all 0.3s;
  }
  .footer-nav__item > a:hover::after {
    background-color: #AD1F25;
    transform: scale(1, 1);
  }
}
/* follow-header
------------------------------------------ */
.follow-header {
  position: fixed;
  top: 0;
  left: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  background-color: #FFF;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  z-index: 300;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .follow-header {
    height: 3.75rem;
  }
}

.follow-header__inner {
  align-items: center;
  padding: 0.625rem 0.625rem 0.625rem 1.125rem;
}
@media screen and (min-width: 768px) {
  .follow-header__inner {
    padding: 0;
    max-width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .follow-header__logo {
    width: 9.313rem;
    margin-top: 0;
  }
}

.follow-header .header-nav__link {
  color: #100F0F;
}
.follow-header .header__contact > .header-nav__link {
  color: #FFF;
}
.follow-header .nav-dropdown > a::after {
  border-top: #100F0F 0.063rem solid;
  border-right: #100F0F 0.063rem solid;
}

/* page-header
------------------------------------------ */
.page-header .header-nav__item a {
  color: #100F0F;
}
@media screen and (min-width: 768px) {
  .page-header .nav-dropdown > a::after {
    border-top: #100F0F 0.063rem solid;
    border-right: #100F0F 0.063rem solid;
  }
}

/* footer
------------------------------------------ */
@media screen and (max-width: 767px) {
  .footer__inner {
    padding: 1.25rem 1.563rem 3.125rem;
    width: 18.375rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 3.125rem;
    padding-bottom: 4.375rem;
  }
}

.footer__logo {
  width: 6.25rem;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 7.5rem;
  }
}

.footer__sns {
  width: 1.875rem;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .footer__sns {
    margin-top: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .footer__sns:hover .sns-link img {
    opacity: 0.8;
  }
}

.footer__logo-link,
.sns-link {
  display: block;
}

.footer__info {
  margin-top: 1.188rem;
}
@media screen and (min-width: 768px) {
  .footer__info {
    margin-top: 2.375rem;
    display: flex;
    justify-content: center;
    gap: 3.75rem;
    margin-left: 2.188rem;
  }
}

@media screen and (min-width: 768px) {
  .company-info {
    padding-left: 2.188rem;
  }
}

.company-info__address {
  line-height: 1.7625;
  font-style: normal;
}

.company-info__address > span {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.footer-nav__container {
  margin-top: 1.313rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .footer-nav__container {
    flex-direction: row;
    margin-top: 0;
    gap: 1.875rem;
  }
}

.footer-nav__link {
  line-height: 1.5;
}

.sub-nav__list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  padding-left: 0.938rem;
  margin-top: 0.875rem;
}

.sub-nav__list a {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.sub-nav__list a::before {
  content: "";
  width: 0.625rem;
  height: 0.125rem;
  background-color: #AD1F25;
  position: absolute;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}

@media screen and (min-width: 768px) {
  .sub-nav__list a:hover {
    color: #AD1F25;
  }
}
.footer-nav__list {
  display: flex;
  flex-direction: column;
  gap: 1.125rem;
}

.footer-copyright__wrapper {
  background-color: #100F0F;
  text-align: center;
  padding: 0.625rem 0 3.938rem;
}
@media screen and (min-width: 768px) {
  .footer-copyright__wrapper {
    padding: 0.938rem 0;
  }
}

.footer-copyright {
  color: #FFF;
  font-size: 0.625rem;
}
@media screen and (min-width: 768px) {
  .footer-copyright {
    font-size: 0.875rem;
    line-height: 1.2142857143;
  }
}

/* page-fv */
.page-fv {
  position: relative;
  background-image: url(../../asset/images/page-fv-background_image_sp-01.png);
  background-position: left top;
  background-size: 15.313rem;
  background-repeat: no-repeat;
  padding-top: 6rem;
}
@media screen and (min-width: 768px) {
  .page-fv {
    background-image: url(../../asset/images/page-fv-background_image_pc-01.png);
    background-size: 33.5%;
    padding-top: 6.125rem;
    padding-bottom: 5rem;
  }
}

@media screen and (max-width: 767px) {
  .page-fv__inner {
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__inner {
    width: 57.5rem;
    padding: 0 1.25rem;
    margin: 2.5rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-fv__inner {
    width: clamp(48rem, 31.072rem + 35.267vw, 57.5rem);
  }
}

@media screen and (max-width: 767px) {
  .page-fv__content {
    margin-top: 2.5rem;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__content {
    display: flex;
    justify-content: space-between;
    gap: 2.5rem;
  }
}

@media screen and (min-width: 768px) {
  .page-fv__image {
    width: 38.6%;
  }
}

@media screen and (min-width: 768px) {
  .page-fv__text-wrapper {
    width: calc(61.4% - 2.5rem);
  }
}
.page-fv__text-wrapper .page-fv__text {
  width: 100%;
}

.page-fv__text {
  font-size: 1rem;
  line-height: 1.8;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .page-fv__text {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .page-fv__text {
    width: calc(61.4% - 2.5rem);
  }
}

.bottom-space {
  margin-bottom: 1.75em;
}

.page-fv .contact__button {
  width: 18.125rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-fv .contact__button {
    width: 31.25rem;
    margin-top: 2.5rem;
  }
}

/* page-section-title */
.page-section-title {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #AD1F25;
  font-weight: 900;
  background-image: url(../../asset/images/page-section-title_image_01.png);
  background-position: top;
  background-repeat: no-repeat;
  background-size: 100% 4px;
  width: 19.375rem;
  margin: 0 auto;
  height: 3.063rem;
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-section-title {
    background-size: 100% 6.2%;
    width: 15.563rem;
    height: 4rem;
    font-size: 1.75rem;
  }
}

/* performance */
.performance__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .performance__inner {
    width: 57.531rem;
    padding: 0 1.25rem;
    margin: 2.188rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .performance__inner {
    width: clamp(48rem, 31.072rem + 35.267vw, 57.5rem);
  }
}

@media screen and (max-width: 767px) {
  .performance__list {
    margin-top: 1.25rem;
  }
}

.performance__title {
  display: flex;
  position: relative;
  padding-bottom: 0.313rem;
}
@media screen and (max-width: 767px) {
  .performance__title {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .performance__title {
    align-items: center;
    gap: 0.625rem;
    padding-bottom: 0.781rem;
  }
}

.performance__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #939393;
}

.performance__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25.8%;
  border-bottom: 3px solid #AD1F25;
}
@media screen and (min-width: 768px) {
  .performance__title::after {
    width: 15.9%;
  }
}

.performance__title-en {
  color: #AD1F25;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .performance__title-en {
    font-size: 1.25rem;
    line-height: 1.2;
  }
}

.performance__title-ja {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .performance__title-ja {
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.performance__item:not(:first-child) {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .performance__item:not(:first-child) {
    margin-top: 2.813rem;
  }
}

.performance__content-list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .performance__content-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 20rem;
    gap: min(2.857vw, 2.5rem);
    margin-top: 1.281rem;
  }
}

@media screen and (max-width: 767px) {
  .performance__content-item:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.performance__content-title {
  background-color: #434343;
  color: #FFF;
  font-weight: 500;
  text-align: center;
  font-size: 1rem;
  line-height: 1.5;
  padding: 0.313rem 0;
}
@media screen and (min-width: 768px) {
  .performance__content-title {
    font-size: 1.125rem;
    line-height: 1.6111111111;
    padding: 0.406rem 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .performance__content-title {
    font-size: clamp(1rem, 0.777rem + 0.464vw, 1.125rem);
  }
}

/* humberger
------------------------------------------ */
@media screen and (max-width: 767px) {
  .hamburger-button__wrapper {
    position: relative;
    z-index: 200;
  }
  .hamburger-button {
    position: relative;
    width: 1.5rem;
    height: 2rem;
  }
  .hamburger-button__bar {
    display: inline-block;
    width: 100%;
    height: 2px;
    background-color: #FFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
  }
  .follow-header .hamburger-button__bar {
    background-color: #100F0F;
  }
  .page-header .hamburger-button__bar {
    background-color: #100F0F;
  }
  .hamburger-button__bar:first-child {
    top: 7px;
  }
  .hamburger-button__bar:nth-child(2) {
    top: 15px;
  }
  .hamburger-button__bar:last-child {
    bottom: 7px;
  }
  .js-hamburger-button--open .hamburger-button__bar {
    background-color: #100F0F;
    top: 50%;
  }
  .js-hamburger-button--open .hamburger-button__bar:first-child {
    transform: translateX(-50%) translateY(-50%) rotate(45deg);
  }
  .js-hamburger-button--open .hamburger-button__bar:last-child {
    transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  }
  .js-hamburger-button--open .hamburger-button__bar:nth-child(2) {
    display: none;
  }
  .hamburger-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: #FAFAFA;
    transition: all 0.6s;
    visibility: hidden;
    opacity: 0;
    z-index: 100;
  }
  .header-nav__logo-inner {
    background-color: #FFF;
    box-shadow: 0 3px 3px rgba(149, 149, 149, 0.1);
    padding: 0.625rem 0;
    padding-left: 1.125rem;
  }
  .hamburger-nav__logo {
    width: 8.563rem;
  }
  .hamburger-menu-active {
    right: 0;
    visibility: visible;
    opacity: 1;
  }
  .header-nav__list {
    flex-direction: column;
    padding: 1.25rem 1.563rem 0;
    gap: 0.625rem;
  }
  .header-nav__item:nth-child(2) {
    margin-top: 0.656rem;
  }
  .header-nav__list .nav-dropdown__list {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-top: 0.625rem;
  }
  .header-nav__list .nav-dropdown__item {
    padding-left: 0.938rem;
  }
  .header-nav__list .nav-dropdown__item a {
    font-size: 0.875rem;
  }
  .line-bottom {
    border-bottom: 1px solid #E3E3E3;
    padding-bottom: 0.625rem;
  }
  .hamburger-menu .header__contact {
    width: 15.625rem;
    margin: 1.25rem auto 0;
    border-radius: 0;
    border: 2px solid #FFF;
  }
  .hamburger-menu .header__contact a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.125rem 0;
    position: relative;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .hamburger-menu .header__contact a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .hamburger-menu .header__contact a::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 7.5px;
    height: 7.5px;
    border: 2px solid #FFF;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) translateY(-50%) rotate(45deg);
    position: absolute;
    top: 50%;
    right: 10%;
  }
  .hamburger-menu .header-nav__item > .header-nav__link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger-menu .header-nav__item > .header-nav__link::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    line-height: 1;
    width: 7.5px;
    height: 7.5px;
    border: 2px solid #AD1F25;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
  }
}
.page-hamburger .hamburger-button__bar {
  background-color: #100F0F;
}

/* header-contact
------------------------------------------ */
.header__contact {
  background-color: #AD1F25;
  transition: all 0.5s;
}
@media screen and (max-width: 767px) {
  .header__contact {
    border-radius: 6.25rem;
  }
}
@media screen and (min-width: 768px) {
  .header__contact {
    margin-left: 3.625rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__contact {
    margin-left: clamp(0.9375rem, -3.851rem + 9.977vw, 3.625rem);
  }
}

.header__contact a {
  position: relative;
  color: #FFF;
  font-size: 0.875rem;
  line-height: 1.4285714286;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .header__contact a {
    width: 6.875rem;
    padding: 0.375rem 0;
  }
}
@media screen and (min-width: 768px) {
  .header__contact a {
    width: 15.625rem;
    line-height: 1.5625;
    font-size: 1rem;
    padding: 1.094rem 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .header__contact a {
    width: clamp(12.5rem, 6.932rem + 11.601vw, 15.625rem);
  }
}

@media screen and (min-width: 768px) {
  .header__contact a {
    padding-right: 0.625rem;
  }
}

@media screen and (min-width: 768px) {
  .header__contact a::after {
    content: "";
    border: 0;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    display: inline-block;
    width: 9.5px;
    height: 9.5px;
    position: absolute;
    top: 50%;
    right: 1.313rem;
    transform: translateY(-50%) rotate(45deg);
    transition: all 0.3s;
  }
}

@media screen and (min-width: 768px) {
  .header__contact:hover {
    background-color: #C70C13;
  }
}

@media screen and (min-width: 768px) {
  .header__contact:hover .header__contact a::after {
    right: 1rem;
  }
}

/* page-top
------------------------------------------ */
.page-top {
  position: fixed;
  bottom: 65px;
  right: 10px;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .page-top {
    bottom: 1.25rem;
    right: 1.75rem;
  }
}

.page-top a {
  width: 8.333vw;
  height: 8.333vw;
  display: block;
  border-radius: 100%;
  background-color: #100F0F;
  border: 2px solid #FFF;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-top a {
    width: 2.5rem;
    height: 2.5rem;
  }
}

.page-top a::after {
  content: "";
  display: block;
  width: 2.222vw;
  height: 2.222vw;
  border-top: #FFF 0.125rem solid;
  border-right: #FFF 0.125rem solid;
  transform: rotate(-45deg);
  position: absolute;
  top: 42%;
  left: 38%;
}
@media screen and (min-width: 768px) {
  .page-top a::after {
    width: 0.5rem;
    height: 0.5rem;
    top: 45%;
    left: 40%;
  }
}

/* follow-contact
------------------------------------------ */
.follow-contact {
  width: 100%;
  background-color: #AD1F25;
  border: 2px solid #FFF;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}

.follow-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFF;
  line-height: 1.5625;
  padding: 0.813rem 0;
  position: relative;
}

.follow-contact a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.125rem;
}

/* view-button
------------------------------------------ */
.view-button__inner {
  width: 11.875rem;
}

.view-button {
  border-bottom: 1px solid #100F0F;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.625rem;
}

.view-button__text {
  line-height: 1.3;
}

.view-button__arrow {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 2px solid #100F0F;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .view-button:hover {
    border-bottom: 1px solid transparent;
  }
  .view-button:hover .hover-color {
    color: #AD1F25;
  }
  .view-button:hover .hover-color-arrow {
    border: 2px solid #AD1F25;
    border-left: 0;
    border-bottom: 0;
  }
  .view-button__inner .hover-line::after {
    height: 1px;
    bottom: -1px;
  }
}
.view-button--white .view-button {
  border-bottom: 1px solid #FFF;
}
.view-button--white .view-button:hover {
  border-bottom: 1px solid transparent;
}
.view-button--white .view-button__text {
  color: #FFF;
}
.view-button--white .view-button__arrow {
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
}

/* contact-button
------------------------------------------ */
.contact__button {
  border: 2px solid #FFF;
  background-color: #AD1F25;
  position: relative;
  transition: all 0.5s;
}

.contact__button a {
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  line-height: 1.3888888889;
  padding: 0.875rem 0 1rem;
}

.contact__button a::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 1.125rem;
  transition: all 0.3s;
}

.contact__button:hover {
  background-color: #C70C13;
}

.contact__button:hover.contact__button a::after {
  right: 0.813rem;
}

/* section-title
------------------------------------------ */
.section-title {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-title__en {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #AD1F25;
  font-size: 1.25rem;
  line-height: 1.95;
}
@media screen and (min-width: 768px) {
  .section-title__en {
    font-size: 1.875rem;
    line-height: 1.3;
  }
}

.section-title__ja {
  font-weight: 900;
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .section-title__ja {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}

/* player
------------------------------------------ */
.player {
  margin-top: 4.563rem;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .player {
    margin-top: 7.5rem;
  }
}

.player__inner {
  position: relative;
}

.player__item-meta {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.player__item-info {
  background-image: url(../../asset/images/player-background_image_sp-01.png);
  background-size: cover;
  background-position: center;
  padding: 0.563rem 0 0.563rem 0.625rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .player__item-info {
    background-image: url(../../asset/images/player-background_image_pc-01.png);
    padding: 0.375rem 0 0.375rem 0.625rem;
  }
}

.player__item-info::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 2px solid #FFF;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) translateY(-50%) rotate(45deg);
  position: absolute;
  top: 50%;
  right: 5%;
  transition: all 0.3s;
}

.player__item-image {
  overflow: hidden;
}

.player__item-image img {
  transition: all 0.3s;
}

.player__item-name {
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.5;
}

.top-swiper .player__item {
  height: 100%;
}
.top-swiper .player__item-image {
  height: 100%;
}
.top-swiper .player__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .top-swiper .player__item-name {
    font-size: clamp(0.875rem, 0.207rem + 1.392vw, 1.25rem);
  }
}

.player__item-genre {
  color: #FFF;
  font-size: 0.625rem;
  line-height: 1.5;
}

.player__inner > .view-button__inner {
  width: 14.5rem;
  padding-bottom: 0;
  margin: 4.813rem auto 0;
}
@media screen and (min-width: 768px) {
  .player__inner > .view-button__inner {
    margin-top: 6.813rem;
  }
}

@media screen and (min-width: 768px) {
  .player__item:hover .player__item-info::after {
    right: 1%;
  }
  .player__item:hover .player__item-image img {
    transform: scale(1.1, 1.1);
  }
}
/* swiper */
.swiper-container {
  position: relative;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .swiper-container {
    margin-top: 1.75rem;
  }
}

.swiper-pagination-bullet {
  border-radius: 0;
  width: 1.875rem;
  height: 0.25rem;
  background-color: #D5D18F;
  margin: 0 0.625rem !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 2.5rem;
    margin: 0 0.625rem !important;
  }
}

.swiper-pagination-bullet-active {
  background-color: #D3B510;
}

.swiper-pagination {
  bottom: -2.188rem !important;
}
@media screen and (min-width: 768px) {
  .swiper-pagination {
    bottom: -2.938rem !important;
  }
}

.swiper-custom-navigation {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
  margin-top: 2.313rem;
}
@media screen and (min-width: 768px) {
  .swiper-custom-navigation {
    position: absolute;
    top: -5.063rem;
    right: 18.6%;
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-custom-navigation {
    right: clamp(3.125rem, -16.142rem + 40.139vw, 13.9375rem);
  }
}

.swiper-custom-prev,
.swiper-custom-next {
  width: 2.813rem;
  height: 2.813rem;
  background-color: #AD1F25;
  border-radius: 100%;
  position: relative;
}

.swiper-custom-prev::after,
.swiper-custom-next::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border: 5px solid transparent;
  border-left: 8px solid #FFF;
  transform: translateX(-15%) translateY(-50%);
}

.swiper-custom-prev::after {
  border-right: 8px solid #FFF;
  border-left: 0;
  transform: translateX(-50%) translateY(-50%);
}

.swiper-slide {
  height: auto;
  max-width: 12.5rem;
  aspect-ratio: 200/260;
}

.player__list {
  height: 100%;
}

/* Light box2
------------------------------------------ */
.lb-number {
  display: none !important;
}

/* Pagination
------------------------------------------ */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.625rem;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .pagination {
    margin-top: 2.5rem;
  }
}

.pagination .page,
.pagination .current {
  width: 1.875rem;
  height: 1.875rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 700;
}
.pagination .current {
  background-color: #AD1F25;
  color: #FFF;
}
.pagination .page {
  border: 1px solid #100F0F;
}
.pagination .disabled,
.pagination .previouspostslink,
.pagination .nextpostslink {
  font-size: 0.875rem;
  font-weight: 700;
}
.pagination .previouspostslink {
  margin-right: 0.5rem;
}
.pagination .nextpostslink {
  margin-left: 0.5rem;
}
.pagination .left-arrow {
  margin-right: 0.5rem;
}
.pagination .right-arrow {
  margin-left: 0.5rem;
}

/* Breadcrumb
------------------------------------------ */
.breadcrumb {
  margin-top: 3.063rem;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch; /* スクロールをスムーズに */
  scrollbar-width: thin; /* スクロールバーの幅を調整 (Firefox) */
  scrollbar-color: #ccc transparent; /* スクロールバーの色を設定 (Firefox) */
}
@media screen and (min-width: 768px) {
  .breadcrumb {
    margin-top: 4.625rem;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb__inner {
    padding: 0 6.944vw;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
  }
  .breadcrumb__inner > span:first-of-type {
    margin-right: 0.5em;
  }
  .breadcrumb__inner > span:not(:first-of-type) {
    margin-right: 0.5em;
    margin-left: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  .breadcrumb__inner {
    max-width: 67.5rem;
    margin: 0 auto;
    padding: 0 1.25rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .breadcrumb-separator {
    margin: 0 !important;
    font-size: 1rem !important;
  }
}

.breadcrumb a,
.breadcrumb span {
  color: #100F0F;
  font-weight: 500;
  font-size: 0.75rem;
  line-height: 3.1666666667;
}
@media screen and (min-width: 768px) {
  .breadcrumb a,
  .breadcrumb span {
    font-size: 0.875rem;
    line-height: 2.7142857143;
  }
}

/*.fv-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: rem(488);
  background-image: url(../../asset/images/fv-background_image_sp-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}*/
/* fv
------------------------------------------ */
@media screen and (max-width: 767px) {
  .fv {
    padding-top: 5.313rem;
    background: url(../../asset/images/fv-background_image_sp-01.png) center/cover no-repeat;
    padding-bottom: 17%;
  }
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 6.5rem;
    padding-bottom: 32.1%;
    background-image: url(../../asset/images/fv-background_image_pc-01.png);
    background-repeat: no-repeat;
    background-size: 163%;
    background-position: 84% 101%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv {
    background-size: 122.25rem;
    background-position: -40.188rem 101%;
  }
}

@media screen and (max-width: 767px) {
  .fv__inner {
    padding: 0 0.938rem;
  }
}

.fv__catch {
  color: #FFF;
  font-size: 3rem;
  line-height: 1.3333333333;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    text-wrap: nowrap;
  }
}
@media screen and (min-width: 768px) {
  .fv__catch {
    text-align: center;
    font-size: 4.688rem;
    line-height: 1.68;
    padding-left: 1.188rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__catch {
    font-size: clamp(3.125rem, 0.341rem + 5.8vw, 4.6875rem);
  }
}
.fv__catch .font-s {
  font-size: 2.375rem;
}
@media screen and (min-width: 768px) {
  .fv__catch .font-s {
    font-size: 3.75rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__catch .font-s {
    font-size: clamp(2.5rem, 0.273rem + 4.64vw, 3.75rem);
  }
}

.fv__image {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .fv__image {
    width: 62.5rem;
    padding: 0 1.25rem;
    margin: 1.188rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .fv__image {
    width: clamp(45rem, 13.817rem + 64.965vw, 62.5rem);
  }
}

.fv__video {
  max-width: 100%;
}

/* news
------------------------------------------ */
.news {
  margin-top: -1.813rem;
}
@media screen and (min-width: 768px) {
  .news {
    margin-top: -27.3%;
  }
}

.news__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .news__inner {
    width: 46.25rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

.news__inner .view-button__inner {
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 767px) {
  .news__inner .view-button__inner {
    margin-top: 2.563rem;
  }
}

/* tabメニュー */
.news__tab {
  margin-top: 1.938rem;
}
@media screen and (min-width: 768px) {
  .news__tab {
    margin-top: 2.063rem;
  }
}

.news-menu__list {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .news-menu__item {
    font-size: 1.25rem;
  }
}

.news-menu__item:not(:first-child) {
  border-left: 1px solid #707070;
}

.news-menu__item:first-child {
  padding-right: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-menu__item:first-child {
    padding-right: 1.25rem;
  }
}

.news-menu__item:nth-child(2),
.news-menu__item:nth-child(3) {
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-menu__item:nth-child(2),
  .news-menu__item:nth-child(3) {
    padding: 0 1.25rem;
  }
}

.news-menu__item:last-child {
  padding-left: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news-menu__item:last-child {
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .news-menu__item:hover {
    font-weight: 900;
    color: #AD1F25;
    cursor: pointer;
  }
}

.news-content__list {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .news-content__list {
    margin-top: 2.188rem;
  }
}

.news-content__item {
  display: none;
}

.content__item:not(:last-child) {
  border-bottom: 1px solid #000;
}

.content__item {
  padding-top: 0.625rem;
  padding-bottom: 0.625rem;
}
@media screen and (min-width: 768px) {
  .content__item {
    padding-top: 0.938rem;
    padding-bottom: 0.875rem;
  }
}

.content__item:first-child {
  padding-top: 0;
}

.content__item:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .content__item a {
    display: grid;
    grid-template-columns: 46.5%;
    grid-template-rows: 1fr 4fr;
    gap: 0 10px;
  }
  .content__item a .content__item-meta {
    grid-column-start: 2;
    grid-row-start: 1;
    height: 0.938rem;
  }
  .content__item a .content__item-image {
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
  .content__item a .content__item-image img {
    aspect-ratio: 144/78;
  }
  .content__item a .content__item-title {
    grid-column-start: 2;
    grid-row-start: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.56em;
    max-height: 4.68em;
  }
}
@media screen and (min-width: 768px) {
  .content__item a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .content__item a .content__item-image {
    width: 9rem;
    height: 5.063rem;
    margin-left: 1.688rem;
  }
  .content__item a .content__item-image img {
    width: 100%;
    height: 100%;
  }
  .content__item a .content__item-title {
    margin-left: 0.625rem;
    flex: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.56em;
    max-height: 3.12em;
  }
  .content__item a .content__item-title:hover {
    color: #AD1F25;
  }
}

.content__item-meta {
  display: flex;
  gap: 0.313rem;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .content__item-meta {
    flex-direction: column;
    gap: 0.625rem;
    padding-top: 0.375rem;
  }
}

.content__item-data {
  font-size: 0.75rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .content__item-data {
    font-size: 0.875rem;
  }
}

.content__item-category {
  font-size: 0.625rem;
  line-height: 1.7;
  color: #FFF;
  background-color: #100F0F;
  padding-left: 0.875rem;
  padding-right: 0.938rem;
}

.content__item-title {
  font-size: 0.875rem;
  line-height: 1.56;
}
@media screen and (min-width: 768px) {
  .content__item-title {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.current {
  color: #AD1F25;
  font-weight: 900;
}

/* service
------------------------------------------ */
.service {
  padding-top: 2rem;
  background-color: #DBDBDB;
  position: relative;
}
@media screen and (min-width: 768px) {
  .service {
    padding-top: 3.563rem;
    padding-bottom: 5.438rem;
  }
}

.service::after {
  content: "";
  width: 100%;
  height: 100.833vw;
  background-image: url(../../asset/images/service-backgound_image_sp-01.png);
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  .service::after {
    background-image: url(../../asset/images/service-background_image_pc-01.png);
    height: 100%;
  }
}

.service__inner {
  padding: 0 0.938rem 3.75rem;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .service__inner {
    width: 63.125rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__inner {
    width: clamp(46.875rem, 17.919rem + 60.325vw, 63.125rem);
  }
}

.service__list {
  margin-top: 2.25rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    margin-top: 1.875rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    align-items: stretch;
    gap: 3.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service__list {
    gap: 4.167vw;
  }
}

@media screen and (min-width: 768px) {
  .service__item {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}

@media screen and (min-width: 768px) {
  .service__item-link {
    display: flex;
    flex-direction: column;
    height: 100%;
  }
}

@media screen and (max-width: 767px) {
  .service__item:not(:first-child) {
    margin-top: 1.188rem;
  }
}

@media screen and (min-width: 768px) {
  .service__item-image {
    overflow: hidden;
  }
  .service__item-image img {
    transition: all 0.3s;
  }
  .service__item:hover .service__item-image img {
    transform: scale(1.1, 1.1);
  }
  .service__item:hover .service__item-content .hover-line::after {
    background-color: #AD1F25;
    transform: scale(1, 1);
  }
  .service__item:hover .service__item-content .hover-color {
    color: #AD1F25;
  }
  .service__item:hover .service__item-content .hover-color-arrow {
    border: 2px solid #AD1F25;
    border-left: 0;
    border-bottom: 0;
  }
  .service__item:hover .hover-line::after {
    background-color: #AD1F25;
    transform: scale(1, 1);
  }
  .service__item:hover .view-button__inner .view-button {
    border-bottom: 1px solid transparent;
  }
}
.service__item-title {
  background-color: #505050;
  color: #FFF;
  font-size: 1.25rem;
  line-height: 1.2;
  font-weight: 900;
  text-align: center;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .service__item-title {
    font-size: 1.5rem;
    padding: 0.625rem 0;
  }
}

.service__item-content {
  background-color: #FFF;
  padding: 0.563rem 1.25rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .service__item-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 1.25rem 1.25rem 1.875rem;
  }
}

.service__item-text {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .service__item-text {
    flex-grow: 1;
  }
}

.service__item-content .view-button__inner {
  width: 9.125rem;
  margin: 1.188rem 0 0 auto;
}
@media screen and (max-width: 767px) {
  .service__item-content .view-button {
    padding-bottom: 0.25rem;
  }
}
@media screen and (max-width: 767px) {
  .service__item-content .view-button__text {
    font-size: 0.875rem;
  }
}

.service__inner > .view-button__inner {
  margin: 2.688rem auto 0;
}
@media screen and (min-width: 768px) {
  .service__inner > .view-button__inner {
    margin: 3.875rem auto 0;
  }
}

/* company
------------------------------------------ */
.company {
  padding-top: 3.25rem;
  padding-bottom: 94.5%;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .company {
    padding-top: 4.3%;
    padding-bottom: 5.7%;
  }
}

.company__inner {
  padding: 0 1.563rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .company__inner {
    width: 57.5rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}

@media screen and (min-width: 768px) {
  .company__inner > .section-title {
    align-items: flex-start;
  }
}

.company__text {
  margin-top: 2.063rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .company__text {
    margin-top: 1.375rem;
  }
}

.under-line {
  font-weight: 900;
  border-bottom: 2px solid #D3B510;
}

.company__inner > .view-button__inner {
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .company__inner > .view-button__inner {
    margin: 2.438rem 0 0;
  }
}

.company__image {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .company__image {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .company__image {
    width: 138.7%;
    bottom: -116%;
    right: -57.4%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .company__image {
    width: clamp(87.5rem, 58.099rem + 61.253vw, 104rem);
    bottom: -40.417vw;
    right: clamp(-37.5rem, -28.256rem + -19.258vw, -42.6875rem);
  }
}
@media screen and (min-width: 1401px) {
  .company__image {
    width: 121.438rem;
    bottom: -33.125rem;
    right: -50.188rem;
  }
}

/* contact
------------------------------------------ */
.contact {
  background-image: url(../../asset/images/contact-background_image_sp-01.png);
  background-size: 100% 22.5rem;
  background-position: center center;
  background-repeat: no-repeat;
  padding-top: 3.75rem;
  padding-bottom: 3.563rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .contact {
    background-image: url(../../asset/images/contact-background_image_pc-01.png);
    background-size: 100% 22.938rem;
    padding-top: 3.25rem;
    padding-bottom: 4.5rem;
  }
}

.contact > .section-title .section-title__en {
  color: #9D8A21;
}
.contact > .section-title .section-title__ja {
  color: #FFF;
}

.contact__text {
  line-height: 1.8;
  text-align: center;
  color: #FFF;
  margin-top: 1.563rem;
}
@media screen and (min-width: 768px) {
  .contact__text {
    font-size: 1.125rem;
    line-height: 1.3888888889;
    margin-top: 1.813rem;
  }
}

.contact__inner > .contact__button {
  width: 18.125rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .contact__inner > .contact__button {
    width: 31.25rem;
    margin-top: 1.938rem;
  }
}
@media screen and (max-width: 767px) {
  .contact__inner > .contact__button span {
    padding-right: 0.75rem;
  }
}
@media screen and (min-width: 768px) {
  .contact__inner > .contact__button span {
    padding-right: 1.938rem;
  }
}

/* page-service
------------------------------------------ */
@media screen and (min-width: 768px) {
  .page-service {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-service .service__inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .page-service .page-fv__content {
    margin-top: 3.125rem;
  }
}

@media screen and (max-width: 767px) {
  .page-service__top-text {
    padding: 0 1.563rem;
    margin-top: 2.813rem;
  }
}
@media screen and (min-width: 768px) {
  .page-service__top-text {
    max-width: 52.5rem;
    width: 100%;
    padding: 0 1.25rem 0;
    margin: 2.5rem auto 0;
  }
}

.page-service .service__list {
  margin-top: 2.313rem;
}
@media screen and (min-width: 768px) {
  .page-service .service__list {
    margin-top: 2.188rem;
  }
}
.page-service .service__item {
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .page-service .service__item:not(:first-child) {
    margin-top: 1.188rem;
  }
}

/* page-casting
------------------------------------------ */
@media screen and (max-width: 767px) {
  .page-casting {
    padding-bottom: 3.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-casting .contact__button {
    margin-top: 2.25rem;
  }
}
.page-casting .contact__button span {
  padding-right: 2.25rem;
}

.service-content {
  position: relative;
  background-color: #DBDBDB;
  padding-top: 2.5rem;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .service-content {
    padding-top: 3.125rem;
    padding-bottom: 5.063rem;
  }
}
@media screen and (max-width: 767px) {
  .service-content .page-section-title {
    width: 20.625rem;
  }
}

.service-content__background {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  right: 0;
  background-image: url(../../asset/images/page-service-content-background__image_sp-01.png);
  background-size: 100%;
  background-position: bottom right;
}
@media screen and (min-width: 768px) {
  .service-content__background {
    background-image: url(../../asset/images/page-service-content-background__image_pc-01.png);
  }
}

.service-content__inner {
  position: relative;
  z-index: 1;
  padding: 0 0.938rem;
}
@media screen and (min-width: 768px) {
  .service-content__inner {
    width: 53.75rem;
    padding: 0 1.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-content__inner {
    width: clamp(48rem, 37.754rem + 21.346vw, 53.75rem);
  }
}

.service-content .page-section-title {
  background-color: #FFF;
}

.service-content__list {
  margin-top: 1.875rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .service-content__list {
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .service-content__list {
    margin-top: 1.938rem;
    justify-content: center;
    align-items: center;
    gap: 0 1.25rem;
    flex-wrap: wrap;
  }
}

@media screen and (min-width: 768px) {
  .service-content__item:nth-child(5),
  .service-content__item:nth-child(6),
  .service-content__item:nth-child(7) {
    margin: 0 0.25rem;
  }
}

.service-content__item {
  background-color: #FFF;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .service-content__item {
    padding: 0.625rem 0;
  }
}
@media screen and (min-width: 768px) {
  .service-content__item {
    border-radius: 100%;
    width: 11.875rem;
    height: 11.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-content__item {
    width: clamp(10rem, 6.659rem + 6.961vw, 11.875rem);
    height: clamp(10rem, 6.659rem + 6.961vw, 11.875rem);
  }
}

.service-content__text {
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .service-content__text {
    font-size: 1.125rem;
    line-height: 1.6111111111;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .service-content__text {
    font-size: clamp(1rem, 0.777rem + 0.464vw, 1.125rem);
  }
}

/* performance */
.performance {
  padding-top: 2.5rem;
}
.performance .page-section-title {
  background-color: #DBDBDB;
}
@media screen and (min-width: 768px) {
  .performance {
    padding-top: 3.125rem;
  }
}

/* page-sponsored
------------------------------------------ */
.page-sponsored {
  padding-bottom: 0;
}
.page-sponsored .contact__button {
  margin-top: 2.063rem;
}
@media screen and (min-width: 768px) {
  .page-sponsored .contact__button {
    margin-top: 2.313rem;
  }
}
.page-sponsored .contact__button span {
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-sponsored .contact__button span {
    padding-right: 1.75rem;
  }
}
.page-sponsored .page-fv__inner {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-sponsored .page-fv__inner {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored .page-fv__content {
    margin-top: 2.938rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored .page-fv__text {
    margin-top: 1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .sponsored-service-content .service-content__background {
    background-image: url(../../asset/images/page-service-content-background__image_pc-02.png);
  }
}
@media screen and (min-width: 768px) {
  .sponsored-service-content .service-content__inner {
    width: 66.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sponsored-service-content .service-content__inner {
    width: clamp(48rem, 14.367rem + 70.07vw, 66.875rem);
  }
}
@media screen and (max-width: 767px) {
  .sponsored-service-content .service-content__list {
    margin-top: 1.813rem;
    gap: 0.563rem;
  }
}
@media screen and (min-width: 768px) {
  .sponsored-service-content .service-content__list {
    flex-wrap: nowrap;
    gap: min(1.429vw, 1.25rem);
  }
}
.sponsored-service-content .service-content__item {
  margin: 0;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sponsored-service-content .service-content__item {
    width: clamp(8.75rem, 3.182rem + 11.601vw, 11.875rem);
    height: clamp(8.75rem, 3.182rem + 11.601vw, 11.875rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sponsored-service-content .service-content__text {
    font-size: clamp(0.875rem, 0.43rem + 0.928vw, 1.125rem);
  }
}

/* performance
------------------------------------------ */
@media screen and (max-width: 767px) {
  .page-sponsored-performance {
    padding-top: 3.813rem;
  }
}
@media screen and (min-width: 768px) {
  .page-sponsored-performance {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored-performance .performance__inner {
    padding-bottom: 3.75rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored-performance .performance__list {
    margin-top: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored-performance .performance__content-list {
    margin-top: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sponsored-performance .performance__content-item:not(:first-child) {
    margin-top: 1.25rem;
  }
}

/* sponsorship
------------------------------------------ */
.sponsorship {
  background-color: #DBDBDB;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sponsorship {
    padding-top: 2.75rem;
  }
}
.sponsorship .page-section-title {
  background-color: #FFF;
}

.sponsorship__inner {
  padding: 0 1.563rem;
}
@media screen and (min-width: 768px) {
  .sponsorship__inner {
    width: 66.25rem;
    padding: 0 1.25rem;
    margin: 1.875rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sponsorship__inner {
    width: clamp(48rem, 15.48rem + 67.749vw, 66.25rem);
  }
}

.sponsorship__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .sponsorship__list {
    margin-top: 2.5rem;
    gap: 2.778vw;
  }
}
@media screen and (min-width: 768px) {
  .sponsorship__list {
    gap: min(2.143vw, 1.875rem);
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .sponsorship__item {
    width: calc(50% - 2.778vw);
    height: 100%;
    aspect-ratio: 3/2;
  }
}

.sponsorship__item:nth-child(odd):last-child {
  justify-self: center;
}

.sponsorship__item a,
.sponsorship__item > div {
  background-color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
  padding: 0 0.625rem;
}
@media screen and (min-width: 768px) {
  .sponsorship__item a,
  .sponsorship__item > div {
    width: 11.25rem;
    height: 7.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .sponsorship__item a,
  .sponsorship__item > div {
    width: clamp(8.125rem, 2.557rem + 11.601vw, 11.25rem);
    height: clamp(5.41875rem, 1.71rem + 7.726vw, 7.5rem);
  }
}

/* page-support
------------------------------------------ */
@media screen and (max-width: 767px) {
  .page-support .section-title__ja {
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 768px) {
  .page-support .contact__button {
    margin-top: 3.188rem;
  }
}
@media screen and (min-width: 768px) {
  .page-support .contact__button span {
    padding-right: 2.063rem;
  }
}
.page-support .page-fv__inner {
  padding-bottom: 3.813rem;
}
@media screen and (min-width: 768px) {
  .page-support .page-fv__inner {
    padding-bottom: 5rem;
  }
}

.support-fv__container {
  position: relative;
  width: 19.375rem;
  margin: 1rem auto 0;
}
@media screen and (min-width: 768px) {
  .support-fv__container {
    width: 35rem;
    margin-top: 1.875rem;
    padding: 0 1.25rem;
  }
}

.support-fv__circle-wrapper {
  display: flex;
}
@media screen and (max-width: 767px) {
  .support-fv__circle-wrapper {
    justify-content: center;
    gap: 5.313rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__circle-wrapper {
    justify-content: space-between;
  }
}

.support-fv__circle {
  width: 6.25rem;
  height: 6.25rem;
  border-radius: 50%;
  border: 2px solid #AD1F25;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .support-fv__circle {
    width: 9.375rem;
    height: 9.375rem;
  }
}

.support-fv__circle-text {
  font-weight: 900;
  font-size: 1.125rem;
}
@media screen and (min-width: 768px) {
  .support-fv__circle-text {
    font-size: 1.25rem;
    line-height: 1.9;
  }
}

.support-fv__center-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 9.313rem;
  height: 9.313rem;
  border-radius: 50%;
  background-image: url(../../asset/images/support-fv-circle_image_01.png);
  background-size: cover;
  background-repeat: no-repeat;
  margin: 5.75rem auto 0;
}
@media screen and (min-width: 768px) {
  .support-fv__center-circle {
    width: 11.688rem;
    height: 11.688rem;
    margin-top: 2.938rem;
  }
}

.support-fv__center-circle img {
  width: 4.75rem;
}
@media screen and (min-width: 768px) {
  .support-fv__center-circle img {
    width: 5.938rem;
  }
}

.support-fv__arrow-left,
.support-fv__arrow-right {
  position: absolute;
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-left,
  .support-fv__arrow-right {
    top: 6.75rem;
    width: 5.95rem;
    height: 6.313rem;
  }
}

.support-fv__arrow-left {
  left: 9.375rem;
}

.support-fv__arrow-right {
  right: 9.375rem;
}

@media screen and (min-width: 768px) {
  .arrow-group {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.support-fv__arrow--top,
.support-fv__arrow--bottom {
  position: absolute;
  width: 6.063rem;
  height: 2rem;
}

.support-fv__arrow-left span,
.support-fv__arrow-right span {
  font-weight: 900;
  position: absolute;
  font-size: 0.875rem;
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-left span,
  .support-fv__arrow-right span {
    display: inline-block;
    text-align: center;
    width: 4.188rem;
    text-shadow: 4px 4px 4px #FFF, -4px -4px 4px #FFF, -4px 4px 4px #FFF, 4px -4px 4px #FFF, 4px 0 4px #FFF, -4px 0 4px #FFF, 0 4px 4px #FFF, 0 -4px 4px #FFF;
  }
}

.support-fv__arrow-left .support-fv__arrow--top {
  background: #C3C3C3;
  -webkit-clip-path: polygon(0 25%, 83.5% 25%, 83.5% 0, 100% 50%, 83.5% 100%, 83.5% 75%, 0 75%);
          clip-path: polygon(0 25%, 83.5% 25%, 83.5% 0, 100% 50%, 83.5% 100%, 83.5% 75%, 0 75%);
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-left .support-fv__arrow--top {
    transform: rotate(70deg);
    top: 1.5rem;
    right: -0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-left .support-fv__arrow--top {
    transform: rotate(45deg);
    bottom: 2.625rem;
    right: -1.438rem;
  }
}
.support-fv__arrow-left .support-fv__arrow--bottom {
  background: #AD1F25;
  -webkit-clip-path: polygon(0 50%, 16.5% 0, 16.5% 25%, 100% 25%, 100% 75%, 16.5% 75%, 16.5% 100%);
          clip-path: polygon(0 50%, 16.5% 0, 16.5% 25%, 100% 25%, 100% 75%, 16.5% 75%, 16.5% 100%);
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-left .support-fv__arrow--bottom {
    transform: rotate(70deg);
    top: 2.188rem;
    right: 1.5rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-left .support-fv__arrow--bottom {
    transform: rotate(45deg);
    bottom: 1.125rem;
    left: -0.438rem;
  }
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-left span {
    top: 1.313rem;
    right: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-left span {
    top: 0.5rem;
    right: -0.188rem;
  }
}

.support-fv__arrow-right .support-fv__arrow--top {
  background: #C3C3C3;
  -webkit-clip-path: polygon(0 50%, 16.5% 0, 16.5% 25%, 100% 25%, 100% 75%, 16.5% 75%, 16.5% 100%);
          clip-path: polygon(0 50%, 16.5% 0, 16.5% 25%, 100% 25%, 100% 75%, 16.5% 75%, 16.5% 100%);
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-right .support-fv__arrow--top {
    transform: rotate(-63deg);
    top: 1.375rem;
    left: -1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-right .support-fv__arrow--top {
    transform: rotate(-45deg);
    top: 1.5rem;
    left: -0.875rem;
  }
}
.support-fv__arrow-right .support-fv__arrow--bottom {
  background: #AD1F25;
  -webkit-clip-path: polygon(0 25%, 83.5% 25%, 83.5% 0, 100% 50%, 83.5% 100%, 83.5% 75%, 0 75%);
          clip-path: polygon(0 25%, 83.5% 25%, 83.5% 0, 100% 50%, 83.5% 100%, 83.5% 75%, 0 75%);
}
@media screen and (max-width: 767px) {
  .support-fv__arrow-right .support-fv__arrow--bottom {
    transform: rotate(-63deg);
    top: 2.25rem;
    left: 1.313rem;
  }
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-right .support-fv__arrow--bottom {
    transform: rotate(-45deg);
    bottom: 1.188rem;
    right: -1.375rem;
  }
}
.support-fv__arrow-right span {
  top: 1.313rem;
  left: -0.188rem;
}
@media screen and (min-width: 768px) {
  .support-fv__arrow-right span {
    top: 0.5rem;
    left: -1.125rem;
  }
}

@media screen and (min-width: 768px) {
  .support-fv__info {
    width: 8.063rem;
  }
}
@media screen and (max-width: 767px) {
  .support-fv__info .font-s {
    font-size: 0.625rem;
  }
}

.support-fv__info span {
  color: #AD1F25;
  font-weight: 900;
  background-color: #E6E6E6;
  text-align: center;
  padding: 0.313rem 0;
  width: 100%;
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .support-fv__info span {
    font-size: 0.875rem;
  }
}

.support-seeker__info span,
.support-company__info span {
  display: block;
}

.support-seeker__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 8.625rem;
  gap: 0.188rem;
}
@media screen and (max-width: 767px) {
  .support-seeker__info {
    width: 4.813rem;
  }
}
@media screen and (min-width: 768px) {
  .support-seeker__info {
    top: 11.563rem;
    left: 2.625rem;
    gap: 0.813rem;
  }
}

.support-company__info {
  position: absolute;
  top: 8.375rem;
  right: 0;
}
@media screen and (max-width: 767px) {
  .support-company__info {
    width: 5.25rem;
  }
}
@media screen and (min-width: 768px) {
  .support-company__info {
    top: 11.563rem;
    right: 1.875rem;
  }
}

@media screen and (max-width: 767px) {
  .page-support .contact__button a {
    padding-right: 0.813rem;
  }
}

/* support-content
------------------------------------------ */
.support-content {
  background-color: #DBDBDB;
  padding-top: 2.563rem;
}
@media screen and (min-width: 768px) {
  .support-content {
    padding-top: 2.688rem;
  }
}

.support-button__wrapper {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .support-button__wrapper {
    padding: 0 0.938rem;
  }
}
@media screen and (min-width: 768px) {
  .support-button__wrapper {
    justify-content: center;
    gap: 3.125rem;
  }
}

.support-button {
  background-color: #FFF;
  position: relative;
  width: 9.688rem;
  padding: 1.313rem 0;
}
@media screen and (min-width: 768px) {
  .support-button {
    width: 15rem;
    padding: 0.75rem 0;
  }
}

.support-button a {
  display: block;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.support-button__text {
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.125;
}
@media screen and (max-width: 767px) {
  .support-button__text {
    padding-right: 1.375rem;
  }
}

.support-button:hover .support-button__text {
  color: #AD1F25;
}

.support-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.813rem;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0.5rem 0.281rem 0 0.281rem;
  border-color: #AD1F25 transparent transparent transparent;
}
@media screen and (min-width: 768px) {
  .support-button::after {
    right: 1.25rem;
  }
}

.support-content__inner {
  margin-top: 1.875rem;
  padding: 0 0.938rem;
}
@media screen and (min-width: 768px) {
  .support-content__inner {
    width: 67.5rem;
    padding: 0 1.25rem;
    margin: 6.688rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .support-content__inner {
    width: clamp(45.5rem, 6.298rem + 81.671vw, 67.5rem);
  }
}

.for-company_jump-point {
  padding-top: 5rem;
  margin-top: -5rem;
}

.for-jobseeker_jump-point {
  padding-top: 0.625rem;
  margin-top: -0.625rem;
}

/* for-company */
.for-company__content {
  position: relative;
  background-color: #FFF;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .for-company__content {
    padding-top: 4.25rem;
    padding-bottom: 3.75rem;
  }
}

.for-company__title {
  color: #FFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #434343;
  padding: 0.813rem 0;
}
@media screen and (min-width: 768px) {
  .for-company__title {
    width: 18.125rem;
    padding: 0.875rem 0 1rem;
    position: absolute;
    top: -1.875rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

.for-company__title span {
  font-size: 1.625rem;
  line-height: 1.1538461538;
}
@media screen and (min-width: 768px) {
  .for-company__title span {
    font-size: 1.75rem;
    line-height: 1.0714285714;
  }
}

.for-company__top-text {
  font-size: 1rem;
  line-height: 1.8;
  padding: 0 1.25rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .for-company__top-text {
    width: 46.25rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .for-company__top-text {
    width: clamp(40.625rem, 30.602rem + 20.882vw, 46.25rem);
  }
}

.strength {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .strength {
    margin-top: 3.063rem;
    padding: 0 2.813rem;
  }
}
.strength .page-section-title {
  background-color: #EFEFEF;
}

.strength__list {
  margin-top: 1.813rem;
}
@media screen and (max-width: 767px) {
  .strength__list {
    padding: 0 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .strength__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.875rem;
    margin-top: 1.875rem;
  }
}

.strength__item {
  border: 1px solid #100F0F;
}
@media screen and (min-width: 768px) {
  .strength__item {
    display: flex;
    flex-direction: column;
  }
}

.strength__item-title {
  background-color: #505050;
  color: #FFF;
  font-weight: 900;
  text-align: center;
  font-size: 1.25rem;
  line-height: 1.2;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .strength__item-title {
    font-size: 1.5rem;
    padding: 0.688rem 0;
  }
}

.strength__item-text {
  padding: 0.813rem 0.938rem 0.625rem;
  font-size: 0.875rem;
  line-height: 1.8214285714;
}
@media screen and (min-width: 768px) {
  .strength__item-text {
    font-size: 1rem;
    line-height: 1.8;
    padding: 0 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .strength__item:first-child .strength__item-text {
    padding-top: 5.313rem;
  }
}

@media screen and (min-width: 768px) {
  .strength__item:last-child .strength__item-text {
    padding-top: 1.875rem;
    padding-bottom: 2rem;
  }
}

.request-example {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .request-example {
    margin-top: 3.125rem;
  }
}
.request-example .page-section-title {
  background-color: #EFEFEF;
}

.request-example__text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .request-example__text {
    padding: 0 1.25rem;
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .request-example__text {
    text-align: center;
    width: 43.75rem;
    margin: 1.875rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .request-example__text {
    width: clamp(40.625rem, 35.057rem + 11.601vw, 43.75rem);
  }
}

.request-example .contact__button {
  width: 18.125rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .request-example .contact__button {
    width: 31.25rem;
    margin-top: 2.938rem;
  }
}
@media screen and (max-width: 767px) {
  .request-example .contact__button a {
    padding-right: 0.75rem;
  }
}

.office-info {
  margin-top: 3.75rem;
}

/* for-jobseeker */
.for-jobseeker__content {
  position: relative;
  background-color: #FFF;
  margin-top: 3.75rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .for-jobseeker__content {
    margin-top: 9rem;
    padding-top: 4.375rem;
    padding-bottom: 5rem;
  }
}

.for-jobseeker__title {
  color: #FFF;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #434343;
  font-size: 1.625rem;
  line-height: 1.1538461538;
  padding: 0.75rem 0;
}
@media screen and (min-width: 768px) {
  .for-jobseeker__title {
    font-size: 1.75rem;
    line-height: 1.0714285714;
    width: 18.125rem;
    padding: 1.125rem 0 1rem;
    position: absolute;
    top: -2.063rem;
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 767px) {
  .for-jobseeker__text-wrapper {
    padding: 0 1.25rem;
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .for-jobseeker__text-wrapper {
    width: 50rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .for-jobseeker__text-wrapper {
    width: clamp(40.625rem, 23.92rem + 34.803vw, 50rem);
  }
}

.for-jobseeker__top-text {
  font-size: 1rem;
  line-height: 1.8;
}

.job-example {
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .job-example {
    margin-top: 2.938rem;
  }
}
.job-example .page-section-title {
  background-color: #EFEFEF;
}

@media screen and (max-width: 767px) {
  .job-example__list,
  .support-content__list {
    padding: 0 0.625rem;
    margin-top: 0.813rem;
  }
}
@media screen and (min-width: 768px) {
  .job-example__list,
  .support-content__list {
    width: 55.063rem;
    margin: 1.875rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .job-example__list,
  .support-content__list {
    padding: 0 1.25rem;
    width: clamp(40.625rem, 14.899rem + 53.596vw, 55.0625rem);
  }
}

@media screen and (min-width: 768px) {
  .job-example__list {
    margin-top: 2.25rem;
  }
}

@media screen and (max-width: 767px) {
  .job-example__content-list {
    margin-top: 1.25rem;
  }
}

.job-example__item:not(:first-child) {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .job-example__item:not(:first-child) {
    margin-top: 2.688rem;
  }
}

.job-example__content-item,
.support-content__item {
  display: flex;
}
@media screen and (max-width: 767px) {
  .job-example__content-item,
  .support-content__item {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .job-example__content-item,
  .support-content__item {
    justify-content: space-between;
    padding-top: 1.875rem;
    gap: 1.875rem;
  }
}

@media screen and (min-width: 768px) {
  .job-example__content-image {
    width: 20.625rem;
    flex-shrink: 0;
  }
}

.job-example__content-image img {
  width: 100%;
}

.job-example__content-text,
.support-content__text {
  font-size: 0.875rem;
  line-height: 1.8214285714;
}
@media screen and (max-width: 767px) {
  .job-example__content-text,
  .support-content__text {
    padding: 0 0.625rem;
    margin-top: 1.063rem;
  }
}
@media screen and (min-width: 768px) {
  .job-example__content-text,
  .support-content__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

/* support */
.support {
  margin-top: 2.438rem;
}
@media screen and (min-width: 768px) {
  .support {
    margin-top: 3.75rem;
  }
}
.support .page-section-title {
  background-color: #EFEFEF;
}

.support-content__list {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .support-content__list {
    margin-top: 1.875rem;
  }
}

.support-content__item {
  align-items: center;
  padding-top: 0;
}

@media screen and (min-width: 768px) {
  .support-content__image {
    width: 21.25rem;
  }
}

@media screen and (max-width: 767px) {
  .support-content__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}
@media screen and (min-width: 768px) {
  .support-content__text {
    width: 31.25rem;
  }
}

/* contact-flow */
.contact-flow {
  margin-top: 2.313rem;
}
@media screen and (max-width: 767px) {
  .contact-flow {
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-flow {
    margin-top: 3.75rem;
  }
}
.contact-flow .page-section-title {
  background-color: #EFEFEF;
}
@media screen and (min-width: 768px) {
  .contact-flow .page-section-title {
    width: 20.063rem;
  }
}

.contact-flow__text {
  margin-top: 1.125rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  .contact-flow__text {
    padding: 0 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-flow__text {
    width: 49.375rem;
    margin: 1.875rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-flow__text {
    width: clamp(40.625rem, 25.033rem + 32.483vw, 49.375rem);
  }
}

@media screen and (min-width: 768px) {
  .contact-flow__inner {
    width: 58.469rem;
    margin: 2.313rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-flow__inner {
    width: clamp(42.5rem, 14.045rem + 59.281vw, 58.46875rem);
  }
}

.contact-flow__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact-flow__list {
    margin-top: 1.25rem;
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (min-width: 768px) {
  .contact-flow__list {
    justify-content: space-between;
  }
}

.contact-flow__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact-flow__item {
    display: flex;
    align-items: center;
    gap: 0.813rem;
    padding-left: 1.25rem;
  }
}

@media screen and (min-width: 768px) {
  .contact-flow__item:first-child {
    padding-left: 0.906rem;
  }
}

.contact-flow__item-image {
  position: relative;
}

.contact-flow__item-image::before {
  content: "01";
  font-family: "Montserrat", sans-serif;
  color: #FFF;
  font-weight: 700;
  width: 1.875rem;
  height: 1.875rem;
  background-color: #434343;
  border-radius: 50%;
  position: absolute;
  top: -0.188rem;
  left: -0.625rem;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .contact-flow__item-image::before {
    font-size: 1.25rem;
    width: 2.5rem;
    height: 2.5rem;
    top: -0.531rem;
    left: -0.906rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-flow__item-image::before {
    font-size: clamp(0.875rem, 0.207rem + 1.392vw, 1.25rem);
    width: clamp(1.5625rem, -0.108rem + 3.48vw, 2.5rem);
    height: clamp(1.5625rem, -0.108rem + 3.48vw, 2.5rem);
  }
}

.contact-flow__item:nth-child(2) .contact-flow__item-image::before {
  content: "02";
}

.contact-flow__item:nth-child(3) .contact-flow__item-image::before {
  content: "03";
}

.contact-flow__item:nth-child(4) .contact-flow__item-image::before {
  content: "04";
}

.contact-flow__item:nth-child(5) .contact-flow__item-image::before {
  content: "05";
}

.contact-flow__item:last-child .contact-flow__item-image::before {
  content: "06";
}

.contact-flow__item-image {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #F7F7F7;
  position: relative;
  width: 4.625rem;
  height: 4.625rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item-image {
    width: 6.25rem;
    height: 6.25rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .contact-flow__item-image {
    width: clamp(4.375rem, 1.034rem + 6.961vw, 6.25rem);
    height: clamp(4.375rem, 1.034rem + 6.961vw, 6.25rem);
  }
}

.contact-flow__item:not(:last-child) .contact-flow__item-image::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 10px solid #100F0F;
  border-bottom: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .contact-flow__item:not(:last-child) .contact-flow__item-image::after {
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width: 768px) {
  .contact-flow__item:not(:last-child) .contact-flow__item-image::after {
    border-style: solid;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #100F0F;
    border-right: 0;
    top: 50%;
    right: -30%;
    transform: translateY(-50%);
  }
}

.contact-flow__item:first-child .contact-flow__item-icon {
  width: 1.356rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:first-child .contact-flow__item-icon {
    width: 29.2%;
  }
}

.contact-flow__item:nth-child(2) .contact-flow__item-icon {
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:nth-child(2) .contact-flow__item-icon {
    width: 59.7%;
  }
}

.contact-flow__item:nth-child(3) .contact-flow__item-icon {
  width: 2.3rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:nth-child(3) .contact-flow__item-icon {
    width: 49.6%;
  }
}

.contact-flow__item:nth-child(4) .contact-flow__item-icon {
  width: 1.813rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:nth-child(4) .contact-flow__item-icon {
    width: 38.7%;
  }
}

.contact-flow__item:nth-child(5) .contact-flow__item-icon {
  width: 1.944rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:nth-child(5) .contact-flow__item-icon {
    width: 36.5%;
  }
}

.contact-flow__item:last-child .contact-flow__item-icon {
  width: 2.431rem;
}
@media screen and (min-width: 768px) {
  .contact-flow__item:last-child .contact-flow__item-icon {
    width: 52.4%;
  }
}

.contact-flow__item-text {
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .contact-flow__item-text {
    text-align: center;
    margin-top: 0.625rem;
  }
}

.for-jobseeker__content .contact__button {
  width: 18.125rem;
  margin: 1.875rem auto 0;
}
@media screen and (min-width: 768px) {
  .for-jobseeker__content .contact__button {
    width: 31.25rem;
    margin: 2.5rem auto 0;
  }
}
.for-jobseeker__content .contact__button span {
  padding-right: 0.75rem;
}
@media screen and (min-width: 768px) {
  .for-jobseeker__content .contact__button span {
    padding-right: 2.063rem;
  }
}

@media screen and (max-width: 767px) {
  .support-content__inner .breadcrumb {
    margin-top: 3.313rem;
  }
  .support-content__inner .breadcrumb .breadcrumb__inner {
    padding: 0 0 0 0.625rem;
  }
}

/* member
------------------------------------------ */
.page-member {
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .page-member {
    padding-bottom: 5rem;
  }
}

.member-category {
  font-size: 1.25rem;
  margin-top: 0.313rem;
}
@media screen and (max-width: 767px) {
  .member-category {
    line-height: 1.95;
  }
}
@media screen and (min-width: 768px) {
  .member-category {
    margin-top: 0.938rem;
  }
}

/* profile */
.profile__inner {
  display: flex;
}
@media screen and (max-width: 767px) {
  .profile__inner {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 768px) {
  .profile__inner {
    max-width: 57.5rem;
    width: 100%;
    padding: 0 1.25rem;
    margin: 3rem auto 0;
    gap: 2.5rem;
  }
}

.profile__image-wrapper {
  flex-shrink: 0;
  width: 13.75rem;
}
@media screen and (min-width: 768px) {
  .profile__image-wrapper {
    width: 18.75rem;
  }
}

.sns__icon-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.25rem;
  gap: 1.563rem;
}
@media screen and (min-width: 768px) {
  .sns__icon-wrapper {
    margin-top: 1.125rem;
    gap: 1.5rem;
  }
}

@media screen and (min-width: 768px) {
  .sns__icon:hover.sns__icon img {
    opacity: 0.8;
  }
}

.sns__icon a {
  display: inline-block;
}

.sns__icon--x {
  width: 1.75rem;
}

.sns__icon--facebook {
  width: 1.813rem;
}

.sns__icon--youtube {
  width: 2.063rem;
}

.sns__icon--instagram {
  width: 1.75rem;
}

.sns__icon--tiktok {
  width: 1.813rem;
}

@media screen and (max-width: 767px) {
  .profile-data {
    padding: 0 1.563rem;
    margin-top: 1.25rem;
    width: 100%;
  }
}

.member-content__head {
  font-weight: 900;
  position: relative;
  padding-bottom: 0.969rem;
  font-size: 1.25rem;
  line-height: 1.35;
}
@media screen and (min-width: 768px) {
  .member-content__head {
    font-size: 1.375rem;
    line-height: 1.0909090909;
  }
}

.member-content__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #939393;
}

.member-content__head::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25.9%;
  border-bottom: 3px solid #AD1F25;
}

@media screen and (min-width: 768px) {
  .profile-data {
    flex-grow: 1;
  }
}

@media screen and (min-width: 768px) {
  .profile-data__container {
    margin-top: 1.031rem;
    padding-right: 3.75rem;
  }
}

.profile-data__list {
  display: flex;
}
@media screen and (max-width: 767px) {
  .profile-data__list {
    align-items: center;
  }
}

@media screen and (max-width: 767px) {
  .profile-data__list:first-child {
    margin-top: 1.25rem;
  }
}

.profile-data__list:not(:first-child) {
  margin-top: 0.688rem;
}
@media screen and (min-width: 768px) {
  .profile-data__list:not(:first-child) {
    margin-top: 0.625rem;
  }
}

.profile-data__title {
  flex-shrink: 0;
  max-width: 4.375rem;
  width: 100%;
  font-size: 0.875rem;
  margin-right: 2.5rem;
}
@media screen and (min-width: 768px) {
  .profile-data__title {
    max-width: 5.25rem;
    font-size: 1rem;
    line-height: 1.8;
    margin-right: 2.375rem;
  }
}

.profile-data__title span {
  position: relative;
  width: 100%;
  display: inline-block;
}

.profile-data__title span::after {
  content: "";
  display: inline-block;
  width: 1.313rem;
  height: 0.125rem;
  background-color: #AD1F25;
  position: absolute;
  top: 50%;
  right: -45%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .profile-data__title span::after {
    right: -33%;
  }
}

@media screen and (max-width: 767px) {
  .profile-data__list--block {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .profile-data__list--block .profile-data__info {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .profile-data__list--block .profile-data__title::after {
    top: 15%;
  }
}

.profile-data__info {
  font-size: 0.875rem;
  line-height: 1.8214285714;
}
@media screen and (min-width: 768px) {
  .profile-data__info {
    font-size: 1rem;
    line-height: 1.8;
  }
}

@media screen and (max-width: 767px) {
  .page-member .contact__button {
    width: 18.125rem;
    margin: 1.25rem auto 0;
  }
}

/* profile-swiper */
.profile-data__image {
  position: relative;
}
@media screen and (max-width: 767px) {
  .profile-data__image {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .profile-data__image {
    width: 41.25rem;
    margin: 3.75rem auto 0;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #AD1F25;
  width: 2.813rem;
  height: 2.813rem;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    top: 48%;
  }
}

.swiper-button-next {
  right: 16%;
}
@media screen and (min-width: 768px) {
  .swiper-button-next {
    right: -5.313rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-next {
    right: -7.083vw;
  }
}

.swiper-button-prev {
  left: 16%;
}
@media screen and (min-width: 768px) {
  .swiper-button-prev {
    left: -5.313rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .swiper-button-prev {
    left: -7.083vw;
  }
}

.swiper-button-next::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #FFF;
}

.swiper-button-prev::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 8px 5px 0;
  border-color: transparent #FFF transparent transparent;
}

.member-swiper .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  .member-swiper .swiper-slide {
    max-height: 16.688rem;
  }
}

.member-swiper img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* achievements */
.achievements {
  margin-top: 3.75rem;
}
.achievements .page-section-title {
  background-color: #EFEFEF;
}

@media screen and (max-width: 767px) {
  .achievements__inner {
    padding: 0 1.563rem;
  }
}

.achievements__list {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .achievements__list {
    width: 42.531rem;
    margin: 2.25rem auto 0;
    padding: 0 1.25rem;
  }
}

.achievements__item:not(:first-child) {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .achievements__item:not(:first-child) {
    margin-top: 2.813rem;
  }
}

@media screen and (min-width: 768px) {
  .achievements .member-content__head::after {
    width: 21.9%;
  }
}

.achievements__text {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .achievements__text {
    margin-top: 1.125rem;
  }
}

/* other-member */
.other-member {
  background-color: #DBDBDB;
  padding-top: 2.469rem;
}
@media screen and (min-width: 768px) {
  .other-member {
    padding-top: 3.313rem;
  }
}
.other-member .page-section-title {
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .other-member .page-section-title {
    width: 21.75rem;
  }
}

@media screen and (max-width: 767px) {
  .other-member__inner {
    padding: 0 0.938rem;
  }
}

.other-member__list {
  display: flex;
  width: 13.75rem;
  margin: 1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .other-member__list {
    flex-direction: column;
    gap: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .other-member__list {
    width: 63.125rem;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem;
    gap: 1.875rem;
    justify-content: center;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .other-member__list {
    gap: 2.5vw;
    width: clamp(48rem, 21.049rem + 56.148vw, 63.125rem);
  }
}

.other-member__list .player__item {
  position: relative;
}
@media screen and (max-width: 767px) {
  .other-member__list .player__item:nth-child(n+4) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .other-member__list .player__item-image img {
    width: 13.75rem;
    height: 20.625rem;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .other-member__list .player__item-image img {
    width: clamp(10.475rem, 4.639rem + 12.158vw, 13.75rem);
    height: clamp(15.6875rem, 6.889rem + 18.329vw, 20.625rem);
  }
}

.other-member .view-button__inner {
  margin: 1.875rem auto 0;
  width: 14.5rem;
}
@media screen and (min-width: 768px) {
  .other-member .view-button__inner {
    margin-top: 3.125rem;
  }
}

/* page-company
------------------------------------------ */
.page-company {
  position: relative;
  width: 100%;
  padding-bottom: 20.563rem;
}
@media screen and (max-width: 767px) {
  .page-company {
    background-image: url(../../asset/images/page-fv-background_image_sp-01.png), url(../../asset/images/page-company-backgound_image_sp-01.png);
    background-position: left top, left clamp(-6.25rem, -8.959rem + 12.039vw, -3.1875rem) bottom clamp(-316px, -153px + (100vw - 360px) * -0.4, -153px);
    background-size: 15.313rem, clamp(48.875rem, 31.572rem + 76.904vw, 68.4375rem);
    background-repeat: no-repeat, no-repeat;
  }
}
@media screen and (min-width: 768px) {
  .page-company {
    padding-bottom: 17.688rem;
    background-image: url(../../asset/images/page-fv-background_image_pc-01.png), url(../../asset/images/page-company-backgound_image_pc.png);
    background-position: left top, left 8.214vw bottom 41%;
    background-size: 33.5%, 120.938rem;
    background-repeat: no-repeat, no-repeat;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-company {
    padding-bottom: 23.583vw;
    background-position: left top, left clamp(-5.4375rem, -27.934rem + 46.868vw, 7.1875rem) bottom -388px;
    background-size: 33.5%, clamp(90.625rem, 36.611rem + 112.529vw, 120.9375rem);
  }
}
@media screen and (min-width: 1401px) {
  .page-company {
    background-position: left top, left clamp(7.1875rem, -55.086rem + 71.119vw, 33.8125rem) bottom -388px;
    background-size: 33.5%, clamp(120.9375rem, 111.436rem + 10.851vw, 125rem);
  }
}

.page-company__top-text {
  font-size: 1rem;
  line-height: 2;
  margin-top: 2.688rem;
}
@media screen and (max-width: 767px) {
  .page-company__top-text {
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .page-company__top-text {
    width: 45rem;
    margin-top: 4.75rem;
    margin-right: auto;
    margin-bottom: 0;
    margin-left: clamp(11.25rem, -32.5rem + 50vw, 27.5rem);
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .page-company__top-text {
    width: clamp(40.625rem, 32.829rem + 16.241vw, 45rem);
    margin-top: 6.333vw;
    margin-left: clamp(2.5rem, -13.092rem + 32.483vw, 11.25rem);
  }
}

/* policy */
.policy {
  background-color: #EDEDED;
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .policy {
    padding-top: 3.25rem;
    padding-bottom: 3.625rem;
  }
}
.policy .page-section-title {
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  .policy__inner {
    padding: 0 1.563rem;
  }
}

.policy__text {
  display: flex;
  flex-direction: column;
  padding-left: 1rem;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .policy__text {
    gap: 0.938rem;
  }
}
@media screen and (min-width: 768px) {
  .policy__text {
    width: 36.938rem;
    margin: 1.438rem auto 0;
    padding-left: 1rem;
  }
}

.policy__text span {
  position: relative;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .policy__text span {
    line-height: 2;
  }
}

.text-dot::after {
  content: "";
  display: inline-block;
  width: 0.375rem;
  height: 0.375rem;
  background-color: #AD1F25;
  border-radius: 50%;
  position: absolute;
  top: 23%;
  left: -15px;
}
@media screen and (min-width: 768px) {
  .text-dot::after {
    top: 50%;
    left: -15px;
  }
}

/* ceo-message */
.ceo-message {
  padding: 2.5rem 1.563rem 3.625rem;
}
@media screen and (min-width: 768px) {
  .ceo-message {
    padding: 3.125rem 0 5.063rem;
  }
}
.ceo-message .page-section-title {
  background-color: #EFEFEF;
}

@media screen and (max-width: 767px) {
  .ceo-message__inner {
    margin-top: 1.875rem;
    padding: 0 1.563rem;
  }
}
@media screen and (min-width: 768px) {
  .ceo-message__inner {
    width: 60rem;
    margin: 1.688rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .ceo-message__inner {
    width: clamp(45rem, 18.271rem + 55.684vw, 60rem);
  }
}

@media screen and (min-width: 768px) {
  .ceo-message__wrapper {
    display: flex;
    justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .ceo-message__text-wrapper {
    margin-top: 1.25rem;
  }
}
@media screen and (min-width: 768px) {
  .ceo-message__text-wrapper {
    width: 41.25rem;
  }
}

@media screen and (max-width: 767px) {
  .ceo-message__image {
    width: 12.5rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .ceo-message__image {
    width: 16.25rem;
    margin-right: 2.5rem;
  }
}

.ceo-message__title {
  font-size: 1rem;
  line-height: 1.8;
}

.ceo-message__name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
}

.ceo-message__text {
  font-size: 1rem;
  line-height: 1.8;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ceo-message__text {
    margin-top: 1.25rem;
  }
}

.ambassador-message__wrapper {
  border: 1px solid #939393;
  margin-top: 2.5rem;
  padding: 0.938rem;
}
@media screen and (min-width: 768px) {
  .ambassador-message__wrapper {
    display: flex;
    justify-content: center;
    padding: 2rem 1.563rem 2.25rem 2.5rem;
  }
}

.ambassador-message__image {
  width: 10rem;
}
@media screen and (max-width: 767px) {
  .ambassador-message__image {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .ambassador-message__image {
    margin-right: 2.5rem;
    flex-shrink: 0;
  }
}

.ambassador-message__text-wrapper {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .ambassador-message__text-wrapper {
    flex-grow: 1;
  }
}

.ambassador-message__head {
  font-size: 1.375rem;
  line-height: 1.0909090909;
  font-weight: 900;
  position: relative;
  padding-bottom: 0.594rem;
}

.ambassador-message__head::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #939393;
}

.ambassador-message__head::after {
  content: "";
  width: 20.6%;
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 3px solid #AD1F25;
}

.ambassador-message__name {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 900;
  margin-top: 1.25rem;
}

.ambassador-message__text {
  line-height: 1.8;
  margin-top: 1.25rem;
}

/* company-profile */
.company-profile {
  background-color: #DBDBDB;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .company-profile {
    padding-top: 3.125rem;
  }
}
.company-profile .page-section-title {
  background-color: #FFF;
}

.company-profile__wrapper {
  padding: 0 1.563rem;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-profile__wrapper {
    max-width: 57.5rem;
    width: 100%;
    margin: 1.875rem auto 0;
    padding: 0 1.25rem;
  }
}

.company-profile__list {
  display: flex;
  font-size: 1rem;
  background-color: #FFF;
}
@media screen and (max-width: 767px) {
  .company-profile__list {
    flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  .company-profile__list {
    align-items: center;
    line-height: 1.32;
    border-bottom: 1px solid #EDEDED;
  }
}

.company-profile__term {
  background-color: #505050;
  color: #FFF;
  font-weight: 700;
  width: 100%;
  padding: 0.844rem 0 0.844rem 1.25rem;
}
@media screen and (min-width: 768px) {
  .company-profile__term {
    text-align: center;
    max-width: 8.125rem;
    font-weight: 900;
    padding: 1.063rem 0;
  }
}

.company-profile__description {
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company-profile__description {
    line-height: 1.625;
    font-weight: 400;
    padding: 0.625rem 1.25rem 0.438rem;
  }
}

@media screen and (max-width: 767px) {
  .company-profile .breadcrumb {
    margin-top: 2.625rem;
  }
}

/* page-news
------------------------------------------ */
.page-news__inner {
  padding: 0 1.563rem 3.769rem;
}
@media screen and (min-width: 768px) {
  .page-news__inner {
    max-width: 42.5rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .page-news .section-title {
    padding: 0 0.313rem;
  }
}
.page-news .section-title__ja {
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .page-news .section-title__ja {
    margin-top: 0.438rem;
  }
}
@media screen and (min-width: 768px) {
  .page-news .section-title__ja {
    font-size: 1.5rem;
    line-height: 1.5;
    letter-spacing: 0.07em;
  }
}

.page-news__top-wrapper {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-news__top-wrapper {
    margin-top: 0.625rem;
  }
}

.page-news__meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.page-news__category {
  color: #FFF;
  background-color: #100F0F;
  font-size: 0.875rem;
  line-height: 1.2142857143;
  width: 6rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .page-news__category {
    padding: 0.063rem 0;
  }
}

.page-news__data {
  font-family: "Montserrat", sans-serif;
  font-size: 0.875rem;
  line-height: 1.2857142857;
}

.page-news__image {
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .page-news__image {
    margin-top: 0.625rem;
  }
}

.page-news__content {
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .page-news__content {
    margin-top: 1.75rem;
  }
}

.page-news__content > h2,
.page-news__content > h3 {
  position: relative;
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.35;
  padding-bottom: 0.438rem;
}
@media screen and (min-width: 768px) {
  .page-news__content > h2,
  .page-news__content > h3 {
    font-weight: 700;
    font-size: 1.375rem;
    line-height: 1.0909090909;
    padding-bottom: 0.844rem;
  }
}

.page-news__content > h2::before,
.page-news__content > h3::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #939393;
}

.page-news__content > h2::after,
.page-news__content > h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25.8%;
  border-bottom: 3px solid #AD1F25;
}
@media screen and (min-width: 768px) {
  .page-news__content > h2::after,
  .page-news__content > h3::after {
    width: 21.9%;
  }
}

.page-news__content > h4 {
  position: relative;
  font-weight: 900;
  font-size: 1.125rem;
  line-height: 1.5;
  padding-left: 1.813rem;
}
@media screen and (min-width: 768px) {
  .page-news__content > h4 {
    font-size: 1.25rem;
    line-height: 1.2;
    padding-left: 5.031rem;
    font-weight: 700;
  }
}

.page-news__content > h4::before {
  content: "";
  position: absolute;
  width: 1.313rem;
  height: 0.125rem;
  background-color: #AD1F25;
  left: 0;
  top: 25%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .page-news__content > h4::before {
    width: 4.375rem;
    height: 0.188rem;
    top: 50%;
  }
}

.page-news__content > h5 {
  position: relative;
  font-weight: 900;
  font-size: 1rem;
  line-height: 1.6875;
  padding-left: 0.563rem;
}
@media screen and (min-width: 768px) {
  .page-news__content > h5 {
    font-size: 1.125rem;
    line-height: 1.3333333333;
    padding-left: 0.75rem;
    font-weight: 700;
  }
}

.page-news__content > h5::before {
  content: "";
  position: absolute;
  width: 0.125rem;
  height: 1.125rem;
  background-color: #AD1F25;
  left: 0;
  top: 50%;
}
@media screen and (max-width: 767px) {
  .page-news__content > h5::before {
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 768px) {
  .page-news__content > h5::before {
    width: 0.188rem;
    height: 1.5rem;
    top: 0;
  }
}

.page-news__content p {
  font-size: 0.875rem;
  line-height: 1.8214285714;
}
@media screen and (min-width: 768px) {
  .page-news__content p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.page-news__content > h3,
.page-news__content > h4,
.page-news__content > h5 {
  margin-top: 1.313rem;
}
@media screen and (min-width: 768px) {
  .page-news__content > h3,
  .page-news__content > h4,
  .page-news__content > h5 {
    margin-top: 2.75rem;
  }
}

@media screen and (min-width: 768px) {
  .page-news__content-list {
    margin-top: 2.5rem;
  }
}

.page-news__content-item {
  padding-left: 1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .page-news__content-item {
    margin-top: 0.313rem;
  }
}

.page-news__content-item::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 50%;
  background-color: #AD1F25;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.page-news__content-text,
.page-news__content-ordered-text {
  font-size: 0.875rem;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .page-news__content-text,
  .page-news__content-ordered-text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.page-news__content-item:not(:first-child),
.page-news__content-ordered-item:not(:first-child) {
  margin-top: 0.625rem;
}

.page-news__content-ordered-list {
  list-style: decimal;
  margin-top: 0.875rem;
}
@media screen and (min-width: 768px) {
  .page-news__content-ordered-list {
    margin-top: 2.063rem;
  }
}

.page-news__content-ordered-item::marker {
  color: #AD1F25;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 767px) {
  .page-news__content-ordered-item::marker {
    font-size: 0.875rem;
  }
}

.page-news__content-ordered-item {
  margin-left: 0.875rem;
}
@media screen and (min-width: 768px) {
  .page-news__content-ordered-item {
    margin-top: 0.313rem;
    margin-left: 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .page-nav {
    width: 16.125rem;
    margin: 2.563rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .page-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
    margin-top: 3.125rem;
  }
}

.page-nav__prev,
.page-nav__next {
  background-color: #EDEDED;
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .page-nav__prev,
  .page-nav__next {
    width: 16.125rem;
  }
}

@media screen and (min-width: 768px) {
  .page-nav__prev {
    grid-column: 1;
    justify-self: start;
  }
}

@media screen and (max-width: 767px) {
  .page-nav__next {
    margin-top: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .page-nav__next {
    grid-column: 2;
    justify-self: end;
  }
}

@media screen and (min-width: 768px) {
  .page-nav__next:hover.page-nav__next a,
  .page-nav__prev:hover.page-nav__prev a {
    color: #AD1F25;
  }
}

@media screen and (min-width: 768px) {
  .page-nav__next:hover .page-nav__arrow,
  .page-nav__prev:hover .page-nav__arrow {
    border-color: #AD1F25;
  }
}

.page-nav__prev a,
.page-nav__next a {
  display: flex;
  align-items: center;
  height: 5.813rem;
  width: 100%;
  padding: 0.625rem 1.375rem 0.625rem 2.188rem;
}
@media screen and (min-width: 768px) {
  .page-nav__prev a,
  .page-nav__next a {
    padding: 0.625rem 1.25rem 0.625rem 2.313rem;
  }
}

.page-nav__next a {
  padding-left: 1.375rem;
  padding-right: 2.188rem;
}
@media screen and (min-width: 768px) {
  .page-nav__next a {
    padding-left: 1.25rem;
    padding-right: 2.313rem;
  }
}

.page-nav__text {
  font-size: 0.875rem;
  line-height: 1.7142857143;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
@media screen and (min-width: 768px) {
  .page-nav__text {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.page-nav__arrow {
  position: absolute;
  top: 44%;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 7.5px;
  height: 7.5px;
  border: 2px solid #100F0F;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}

.page-nav__prev .page-nav__arrow {
  border-top: 0;
  border-right: 0;
  left: 0.781rem;
}

.page-nav__next .page-nav__arrow {
  border-bottom: 0;
  border-left: 0;
  right: 0.781rem;
}

.page-news .view-button__inner {
  width: 7.875rem;
  margin: 1.25rem auto 0;
}
@media screen and (min-width: 768px) {
  .page-news .view-button__inner {
    width: 9.375rem;
    margin-top: 2.5rem;
  }
}

/* articles */
.articles {
  background-color: #EDEDED;
  padding-top: 2.469rem;
}
@media screen and (min-width: 768px) {
  .articles {
    padding-top: 3.313rem;
  }
}
.articles .page-section-title {
  background-color: #FFF;
}

.articles__inner {
  padding: 0 1.563rem;
  margin-top: 2.075rem;
}
@media screen and (min-width: 768px) {
  .articles__inner {
    max-width: 67.5rem;
    width: 100%;
    padding: 0 1.25rem;
    margin: 1.75rem auto 0;
  }
}

@media screen and (min-width: 768px) {
  .articles-content__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    position: relative;
    -moz-column-gap: 3.25rem;
         column-gap: 3.25rem;
    row-gap: 2.125rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .articles-content__list {
    -moz-column-gap: clamp(1.25rem, -2.314rem + 7.425vw, 3.25rem);
         column-gap: clamp(1.25rem, -2.314rem + 7.425vw, 3.25rem);
  }
}

@media screen and (max-width: 767px) {
  .articles-content__item:not(:first-child) {
    margin-top: 0.688rem;
  }
}

@media screen and (max-width: 767px) {
  .articles-content__item:not(:last-child) {
    border-bottom: 1px solid #000;
    padding-bottom: 0.625rem;
  }
}

.articles-content__item a {
  display: flex;
}
@media screen and (max-width: 767px) {
  .articles-content__item a {
    display: grid;
    grid-template-columns: 46.5%;
    grid-template-rows: 1fr 4fr;
    gap: 0 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .articles-content__item a {
    align-items: center;
    max-height: 5.063rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .articles-content__item a {
    gap: clamp(0.625rem, -1.157rem + 3.712vw, 1.625rem);
  }
}

.articles-content__item-meta {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .articles-content__item-meta {
    grid-column-start: 2;
    grid-row-start: 1;
    gap: 0.313rem;
    height: 0.938rem;
  }
}
@media screen and (min-width: 768px) {
  .articles-content__item-meta {
    flex-direction: column;
    gap: 0.563rem;
  }
}

.articles-content__item-data {
  font-family: "Montserrat", sans-serif;
  font-size: 0.75rem;
  line-height: 1.25;
}
@media screen and (min-width: 768px) {
  .articles-content__item-data {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.articles-content__item-category {
  color: #FFF;
  background-color: #100F0F;
  font-size: 0.625rem;
  line-height: 1.5;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4.313rem;
}

@media screen and (min-width: 768px) {
  .articles-content__item-content {
    display: flex;
    align-items: center;
    gap: 0.625rem;
  }
}

.articles-content__item-image {
  width: 9rem;
}
@media screen and (max-width: 767px) {
  .articles-content__item-image {
    grid-row: span 2/span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }
}
@media screen and (min-width: 768px) {
  .articles-content__item-image {
    flex-shrink: 0;
    margin-left: 1.688rem;
    height: inherit;
  }
}

.articles-content__item-image img {
  -o-object-fit: cover;
     object-fit: cover;
}

.articles-content__item-title {
  font-size: 0.875rem;
  grid-column-start: 2;
  grid-row-start: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.56em;
  max-height: 4.68em;
}
@media screen and (max-width: 767px) {
  .articles-content__item-title {
    margin-top: 0.313rem;
  }
}
@media screen and (min-width: 768px) {
  .articles-content__item-title {
    flex-shrink: 1;
    font-size: 1rem;
    line-height: 1.8;
    max-height: 5.4em;
    margin-left: 0.563rem;
  }
}

@media screen and (min-width: 768px) {
  .articles-content__item-title:hover {
    color: #AD1F25;
  }
}

@media screen and (min-width: 768px) {
  .articles__list::after {
    content: "";
    position: absolute;
    top: 50%; /* 1行目の下 */
    left: 0;
    width: 100%;
    height: 1px;
    background-color: rgba(0, 0, 0, 0.4);
    display: none;
  }
}

/* 行が2行以上の場合のみ表示 */
@media screen and (min-width: 768px) {
  .articles__list:has(.articles-content__item:nth-child(3))::after {
    display: block;
  }
}

/* contact
------------------------------------------ */
@media screen and (min-width: 768px) {
  .page-contact {
    padding-bottom: 0.625rem;
  }
}

.page-contact__inner {
  padding: 0 1.563rem;
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .page-contact__inner {
    max-width: 47.125rem;
    margin: 2.5rem auto 0;
    padding: 0 1.25rem;
  }
}

.page-contact__top-text {
  font-size: 1rem;
  line-height: 1.6875;
}

.page-contact__top-text a:link,
.contact__form-privacy a:link {
  color: #0000EE;
  text-decoration: underline;
}

.page-contact__top-text a:visited,
.contact__form-privacy a:visited {
  color: #551A8B;
  text-decoration: underline;
}

.wpcf7-form {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .wpcf7-form {
    margin-top: 1.688rem;
  }
}

.form__wrapper {
  margin-top: 1.875rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .form__wrapper {
    flex-direction: column;
    gap: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .form__wrapper {
    justify-content: space-between;
    margin-top: 1.063rem;
  }
}

@media screen and (max-width: 767px) {
  .form__wrapper--checkbox {
    margin-top: 0;
  }
}

@media screen and (min-width: 768px) {
  .form__wrapper:nth-child(6) {
    margin-top: 2.063rem;
  }
}

.form__label {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.875rem;
  line-height: 1.4285714286;
}

.required {
  background-color: #AD1F25;
  color: #FFF;
  font-size: 0.625rem;
  width: 2.5rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.caution-company-name {
  position: relative;
}
@media screen and (max-width: 767px) {
  .caution-company-name {
    padding-bottom: 0.625rem;
  }
}
@media screen and (min-width: 768px) {
  .caution-company-name {
    width: 13.563rem;
  }
}

.caution-company-name::after {
  content: "※個人の方は「個人」とご入力ください";
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: 500;
  width: 100%;
  position: absolute;
  bottom: -0.688rem;
  left: 0;
}

.form__cautions {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  margin-top: 0.313rem;
}

.form__checkbox label {
  font-size: 0.875rem;
  line-height: 1.4166666667;
  display: flex;
  align-items: center;
  gap: 0.313rem;
}
@media screen and (min-width: 768px) {
  .form__checkbox label {
    font-size: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .form__checkbox label:not(:first-child) {
    padding-left: 10px;
  }
}

@media screen and (min-width: 768px) {
  .form__checkbox label:last-child {
    padding-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 0.938rem;
  }
}
@media screen and (min-width: 768px) {
  .wpcf7-checkbox {
    display: grid;
    grid-template-columns: auto auto auto 1fr;
    grid-template-rows: auto auto;
    row-gap: 10px;
    -moz-column-gap: 20px;
         column-gap: 20px;
    width: 30rem;
    margin-right: 0.313rem;
  }
}

.wpcf7-list-item {
  margin: 0;
}

.form__checkbox label:nth-child(4) {
  grid-column: 4/-1;
}

.form__checkbox label:last-child {
  grid-row: 2;
  grid-column: 1/3;
}

@media screen and (max-width: 767px) {
  input[type=text],
  input[type=email],
  input[type=tel] {
    height: 2.5rem;
    padding: 0.625rem;
    width: 100%;
  }
}

input[type=checkbox] {
  position: relative;
  width: 0.875rem;
  height: 0.875rem;
  border: 1px solid #707070;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 1px;
  left: 4px;
  transform: rotate(50deg);
  width: 4px;
  height: 10.47px;
  border-right: 2px solid #AD1F25;
  border-bottom: 2px solid #AD1F25;
  content: "";
}

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

.form__input input,
.form__textarea textarea {
  background-color: #F2F2F2;
}
@media screen and (min-width: 768px) {
  .form__input input,
  .form__textarea textarea {
    width: 30rem;
    padding: 0.625rem 0 0.625rem 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .form__textarea textarea {
    width: 100%;
    height: 8.75rem;
    padding: 0.875rem 1.125rem;
  }
}
@media screen and (min-width: 768px) {
  .form__textarea textarea {
    height: 8.7em;
  }
}

.form__wrapper--textarea {
  align-items: flex-start;
}

::-moz-placeholder {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  color: #8E8E8E;
}

::placeholder {
  font-size: 0.875rem;
  line-height: 1.4285714286;
  font-weight: 400;
  color: #8E8E8E;
}

.contact__form-privacy {
  margin-top: 1.875rem;
}
@media screen and (min-width: 768px) {
  .contact__form-privacy {
    margin-top: 2.125rem;
  }
}

.contact__form-privacy__inner {
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact__form-privacy__inner .wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact__form-submit {
  background-color: #AD1F25;
  color: #FFF;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 18.125rem;
}
@media screen and (max-width: 767px) {
  .contact__form-submit {
    margin: 1.875rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .contact__form-submit {
    width: 31.25rem;
    margin: 2.875rem auto 0;
    padding: 0.938rem 0;
    font-size: 1.125rem;
    line-height: 1.3888888889;
  }
}

@media screen and (max-width: 767px) {
  .wpcf7-submit {
    width: 100%;
    padding-top: 1rem;
    padding-bottom: 1.125rem;
    padding-left: 4.125rem;
  }
}

.contact__form-submit::after {
  content: "";
  display: inline-block;
  width: 7.5px;
  height: 7.5px;
  border-top: 2px solid #FFF;
  border-right: 2px solid #FFF;
  position: absolute;
  top: 50%;
  right: 4%;
  transform: translateY(-50%) rotate(45deg);
}

@media screen and (min-width: 768px) {
  .contact__form-submit input {
    padding-left: 2.563rem;
  }
}

.contact__bottom-line {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0.75rem;
  background-image: url(../../asset/images/page-contact_line_01.png);
  background-size: 100% 0.75rem;
  background-position: center;
  background-repeat: no-repeat;
}

/* sale-link
------------------------------------------ */
.page-sale {
  padding-bottom: 0.938rem;
}
@media screen and (min-width: 768px) {
  .page-sale {
    padding-bottom: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sale .page-fv__content {
    margin-top: 2.938rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sale .page-fv__text {
    margin-top: 1.063rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sale .contact__button {
    margin-top: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  .page-sale .contact__button span {
    padding-right: 0.75rem;
  }
}

.sale-link {
  background-color: #DBDBDB;
  padding-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .sale-link {
    padding-top: 3.125rem;
  }
}
.sale-link .page-section-title {
  background-color: #FFF;
}

@media screen and (max-width: 767px) {
  .sale-link .service__inner {
    padding-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .sale-link .service__list {
    margin-top: 1.875rem;
  }
}
@media screen and (min-width: 768px) {
  .sale-link .service__item-text {
    height: 7.2em;
  }
}
.sale-link .view-button__inner {
  width: 12.719rem;
}
@media screen and (min-width: 768px) {
  .sale-link .view-button__inner {
    width: 14.625rem;
    margin: 1.25rem 0 0 auto;
  }
}

/* page-archive-news
------------------------------------------ */
@media screen and (min-width: 768px) {
  .page-archive-news {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767px) {
  .archive-news__inner {
    padding: 0 1.563rem;
    margin-top: 3.188rem;
  }
}
@media screen and (min-width: 768px) {
  .archive-news__inner {
    max-width: 43.75rem;
    width: 100%;
    margin: 2.813rem auto 0;
  }
}

.archive-news-content {
  margin-top: 2.813rem;
}
@media screen and (min-width: 768px) {
  .archive-news-content {
    margin-top: 2.063rem;
  }
}

@media screen and (min-width: 768px) {
  .archive-news-content__list .articles-content__item:not(:last-child) {
    border-bottom: 1px solid #000;
    padding-bottom: 0.938rem;
  }
  .archive-news-content__list .articles-content__item:not(:first-child) {
    margin-top: 0.875rem;
  }
}
@media screen and (max-width: 767px) {
  .archive-news-content__list .articles-content__item-image {
    width: 100%;
  }
}

.archive__item {
  display: none;
}

.archive-news .breadcrumb {
  margin-top: 3.781rem;
}
@media screen and (min-width: 768px) {
  .archive-news .breadcrumb {
    margin-top: 5rem;
  }
}

.js-content {
  opacity: 1;
  transition: opacity 0.2s ease-in-out;
}

.js-content.loading {
  opacity: 0.6;
}

/* page-archive-member
------------------------------------------ */
@media screen and (min-width: 768px) {
  .page-arhive-member {
    padding-bottom: 0;
  }
}

@media screen and (min-width: 768px) {
  .archive-member__inner {
    max-width: 60.625rem;
    width: 100%;
    margin: 2.813rem auto 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .archive-member__inner {
    width: clamp(45.5rem, 18.549rem + 56.148vw, 60.625rem);
  }
}

@media screen and (max-width: 767px) {
  .archive-member-menu__list {
    padding: 0 2.188rem;
    flex-wrap: wrap;
    margin: 3.063rem auto 0;
    row-gap: 0.813rem;
    max-width: 22.5rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-member-menu__item {
    line-height: 1.3;
  }
}

@media screen and (min-width: 768px) {
  .archive-member-menu__item:nth-child(4),
  .archive-member-menu__item:nth-child(5) {
    padding: 0 1.25rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-member-menu__item:nth-child(4) {
    padding-left: 0.625rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-member-menu__item:nth-child(5) {
    padding-right: 0.625rem;
    border: none;
  }
}

/* archive-member-content */
@media screen and (min-width: 768px) {
  .archive-member-content {
    margin-top: 2.063rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-member-content__list {
    width: 13.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2.5rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .archive-member-content__list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .archive-member-content__list {
    gap: clamp(0.625rem, -1.602rem + 4.64vw, 1.875rem);
  }
}

.archive-member-content__list .player__item {
  position: relative;
}
.archive-member-content__list .player__item a {
  height: 20.625rem;
  display: inline-block;
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
  .archive-member-content__list .player__item a {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  .archive-member-content__list .player__item__info {
    padding-top: 0.25rem;
    padding-bottom: 0.375rem;
  }
}

@media screen and (max-width: 767px) {
  .archive-member-content .pagination {
    margin-top: 2.25rem;
  }
}

/* privacy-policy
------------------------------------------ */
@media screen and (min-width: 768px) {
  .page-privacy-policy {
    padding-top: 4rem;
    padding-bottom: 0;
  }
}

.privacy-policy__inner {
  padding: 0 1.563rem;
  margin-top: 2.519rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__inner {
    width: 40.063rem;
    margin: 2.5rem auto 0;
    padding: 0;
  }
}

.privacy-policy__top-text,
.privacy-policy__text {
  font-size: 0.875rem;
  line-height: 1.8214285714;
}
@media screen and (min-width: 768px) {
  .privacy-policy__top-text,
  .privacy-policy__text {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.privacy-policy__list {
  margin-top: 2.531rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__list {
    margin-top: 2.875rem;
  }
}

.privacy-policy__item:not(:first-child) {
  margin-top: 1.438rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__item:not(:first-child) {
    margin-top: 1.438rem;
  }
}

.privacy-policy__title {
  font-weight: 700;
  position: relative;
  font-size: 1.25rem;
  line-height: 1.35;
  padding-bottom: 0.313rem;
  display: flex;
  gap: 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__title {
    font-size: 1.375rem;
    line-height: 1.0909090909;
    padding-bottom: 0.875rem;
    gap: 1.438rem;
  }
}

.privacy-policy__title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 3px solid #939393;
}

.privacy-policy__title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 25.8%;
  border-bottom: 3px solid #AD1F25;
}
@media screen and (min-width: 768px) {
  .privacy-policy__title::after {
    width: 21.9%;
  }
}

.privacy-policy__text {
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .privacy-policy__text {
    margin-top: 1.063rem;
  }
}/*# sourceMappingURL=style.css.map */