@charset "UTF-8";

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 100;
  src: url("../fonts/NotoSansJP-Thin.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 200;
  src: url("../fonts/NotoSansJP-ExtraLight.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 300;
  src: url("../fonts/NotoSansJP-Light.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 500;
  src: url("../fonts/NotoSansJP-Medium.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 600;
  src: url("../fonts/NotoSansJP-SemiBold.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 800;
  src: url("../fonts/NotoSansJP-ExtraBold.ttf") format('truetype');
}

@font-face {
  font-family: "Noto Sans JP";
  font-weight: 900;
  src: url("../fonts/NotoSansJP-Black.ttf") format('truetype');
}


@font-face {
  font-family: "Oswald";
  font-weight: 200;
  src: url("../fonts/Oswald-Light.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  font-weight: 300;
  src: url("../fonts/Oswald-Light.ttf") format('truetype');
}


@font-face {
  font-family: "Oswald";
  font-weight: 200;
  src: url("../fonts/Oswald-ExtraLight.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  font-weight: 300;
  src: url("../fonts/Oswald-Light.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  src: url("../fonts/Oswald-Regular.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  font-weight: 500;
  src: url("../fonts/Oswald-Medium.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  font-weight: 600;
  src: url("../fonts/Oswald-SemiBold.ttf") format('truetype');
}

@font-face {
  font-family: "Oswald";
  font-weight: 700;
  src: url("../fonts/Oswald-Bold.ttf") format('truetype');
}

@font-face {
  font-family: "Times New Roman";
  src: url("../fonts/times-new-roman.ttf") format('truetype');
}

:root {
  --base-font: "Noto Sans JP", sans-serif;
  --base-font-en: "Oswald", sans-serif;
  --base-color: #333333;
  --color-white: #ffffff;
}

.--en-font {
  font-family: "Oswald";
}

body {
  letter-spacing: 0.04em;
  line-height: 1.5;
  font-family: var(--base-font);
  color: var(--base-color);
}

a {
  text-decoration: none;
  transition: 0.3s;
}

img {
  width: 100%;
  height: auto;
}

picture {
  display: block;
}

figure {
  display: block;
}

a:hover {
  opacity: 0.8;
}

/* ----------------------------------------
front base
---------------------------------------- */
.top-common__head-title--en {
  color: var(--base-font);
  font-size: 80px;
  letter-spacing: 0.02em;
  font-family: var(--base-font-en);
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width:768px) {
  .top-common__head-title--en {
    font-size: 50px;
  }
}

.top-common__head-title {
  color: var(--base-font);
  font-size: 24px;
  letter-spacing: 0.02em;
  font-weight: 800;
  line-height: 1;
  padding-top: 24px;
}

@media screen and (max-width:768px) {
  .top-common__head-title {
    padding-top: 16px;
    font-size: 20px;
  }
}

.top-common__button {
  position: relative;
  color: var(--color-white);
  border-radius: 999px;
  display: flex;
  align-items: center;

  font-weight: 700;
  justify-content: start;
  max-width: 300px;
  padding: 21px 36px 21px 36px;
  font-size: 18px;
  background: var(--base-color);
}

@media screen and (max-width: 1000px) {
  .top-common__button {
    max-width: 320px;
    padding: 20px;
    width: 90%;
  }
}

.top-common__button span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;

  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.top-common__button span:after {
  content: "";
  background-image: url(../img/button-arrow-black.svg);
  width: 11px;
  height: 6px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;

}


.top-common__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 50px;
}

/* ----------------------------------------
header pc
---------------------------------------- */
.header {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  .header {
    height: inherit;
    position: fixed;
  }
}



.header__inner {
  padding-left: 30px;
  padding-right: 30px;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px) {
  .header__inner {
    padding-left: 0;
    padding-right: 4.625rem;
  }
}

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

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


.header__nav-wrap {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
  min-height: 96px;
}

@media screen and (max-width: 1000px) {
  .header__nav-wrap {
    min-height: 60px;
    z-index: 999;
    position: relative;
  }
}




@media screen and (max-width: 1000px) {
  .header__logo {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.header__logo-group {
  position: relative;
  display: flex;
  align-items: center;
  gap: 32px;
  gap: 2rem;
  justify-content: space-between;
  width: 100%;
  z-index: 10;
}

.header__logo-item {
  position: relative;
  display: block;
  width: 100%;
  max-width: clamp(140px, 10vw, 200px);
}

@media screen and (max-width: 1000px) {
  .header__logo-item {
    max-width: 120px;
  }
}


.header__group {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

.header__nav-list {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__nav-item {
  display: flex;
  justify-content: center;
  margin-right: 35px;
  flex-flow: column;
}


.header__nav-item:last-child {
  margin-right: 0px;
}



.header__nav-link {
  font-size: 18px;
  white-space: nowrap;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  font-family: var(--base-font-en);
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  position: relative;
}

.header__nav-link:hover {
  opacity: 1;
}

.header__nav-link:after {
  content: "";
  width: 100%;
  height: 6px;
  border-radius: 3.5px;
  background: var(--color-white);
  position: absolute;
  top: -10px;
  opacity: 0;
  transition: 0.3s;
}

.header__nav-link:hover:after {
  content: "";
  opacity: 1;
}

.header__nav-link span {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--base-font);

}

.header__nav-list--contact.page-common__button {
  position: relative;

  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 16px;
  font-weight: 700;
  padding-left: 40px;
  padding-right: 50px;
  padding-top: 10px;
  padding-bottom: 14px;
  margin-left: 36px;
}

.header__nav-list--contact.page-common__button span {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 16px;
  transition: 0.3s;
}

.header__nav-list--contact.page-common__button span:after {
  content: "";

  background-image: url(../img/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 9px;
  height: 6px;
  transition: 0.3s;
}

.header__nav-list--contact:hover {
  /* background: #333;
  color: #fff; */
  opacity: 0.8;
}




#header {
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  background: linear-gradient(to top, rgb(0 0 0 /0), #000);
}


#header.header--color-base {
  background: linear-gradient(to top, rgb(220 220 220 /0), #DCDCDC);
}

#header.header--color-base .header__nav-link {
  color: var(--base-color);
}

#header.header--color-base .header__logo-item {
  filter: brightness(0.2);
}

#header.header--color-base .openbtn1 span {
  background: var(--base-color);
}

.header__nav-item {
  transition: background-color 0.3s;
}

.header__nav-opacity {
  display: none;
}

.header.fixed .header__nav-opacity {
  display: flex;
}

/* ----------------------------------------
Mv
---------------------------------------- */
#g-nav-sp.panelactive {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.circle-bg {
  position: fixed;
  z-index: 999;
  background: #E7E7E7;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  opacity: 0;
  pointer-events: none;
}

.circle-bg.circleactive {
  opacity: 1;
  pointer-events: auto;
}

#g-nav-sp-list {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;

}

#g-nav-sp.panelactive #g-nav-sp-list {
  display: block;
}


/*ナビゲーション*/
#g-nav-sp ul.g-nav-sp__wrap {
  opacity: 0;
  position: relative;
  z-index: 999;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  text-align: left;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  padding-top: 100px;
  padding-top: 6.25rem;
}

@media screen and (max-width: 1000px) {
  #g-nav-sp ul.g-nav-sp__wrap {
    padding-top: 4rem;
    padding-bottom: 4rem;
    height: auto;
    height: initial;
    max-width: 41.25rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
    margin-left: auto;
    margin-right: auto;
  }
}

#g-nav-sp.panelactive ul.g-nav-sp__wrap {
  -webkit-animation-name: gnaviAnime;
  animation-name: gnaviAnime;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.g-nav-sp__item {
  text-align: left;
  width: 100%;
  border-bottom: 1px solid rgba(225, 143, 119, .5);
  list-style: none;
  padding: 10px 0;
  padding: 0.625rem 0;
}

.g-nav-sp__item:first-child {
  padding-top: 0;
}

.g-nav-sp__item-link {
  color: #554C36;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .g-nav-sp__item-link {
    font-size: 1.125rem;
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.header__logo-item.active .header__logo-item-img.-before {
  display: block;
}

.header__logo-item.active .header__logo-item-img.-after {
  display: none;
}

.pc-header-primry__mega {
  visibility: hidden;
  opacity: 0;
  display: none;
  transition: all .3s;
}

.pc-header-primry__mega-inner {
  background: var(--base-color);
  padding: 30px 35px 30px 25px;
  border-radius: 8px;
}

.pc-header-primry__mega-flex {
  display: flex;
  gap: 40px;
}


.header__nav-item:hover .pc-header-primry__mega {
  display: block;
  visibility: visible;
  opacity: 1;
  transition: all .3s;
  width: 100%;
  position: absolute;
  top: 50px;
  z-index: 1;
  width: auto;
  list-style: none;
  padding: 0;
  padding-top: 20px;
}

.pc-header-primry__mega-item.--first {
  padding-top: 0;
  font-size: 14px;
  font-weight: 700;
}

.pc-header-primry__mega-item:nth-child(2) {
  padding-top: 14px;
}

.pc-header-primry__mega-item {
  padding-top: 10px;
  text-align: left;
  font-size: 12px;
  font-weight: 500;
  color: var(--color-white);
}

.pc-header-primry__mega-item:first-child {
  padding-top: 0;
}

.pc-header-primry__mega-link {
  position: relative;
  display: inline-flex;
  gap: 5px;
  padding-right: 6px;
}

.pc-header-primry__mega-link span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  right: -12px;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}

.pc-header-primry__mega-link span:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 6px;
  height: 3px;
  transition: 0.3s;
  filter: invert(1);
}

.openbtn1 {
  position: fixed;
  top: 5px;
  top: 0.3125rem;
  right: 0;
  z-index: 9999;
  cursor: pointer;
  width: 35px;
  height: 42px;
  display: none;
}

@media screen and (max-width: 1000px) {
  .openbtn1 {
    display: block;
    top: 0;
    right: 0;
  }
}



/*×に変化*/
.openbtn1 span {
  display: inline-block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: absolute;
  left: 0px;
  height: 2.5px;
  background-color: var(--color-white);
  width: 25px;
}



.openbtn1 span:nth-of-type(1) {
  top: 21px;
}

.openbtn1 span:nth-of-type(2) {
  top: 28.5px;

}

.openbtn1.active {
  background: transparent;
}

.openbtn1.active span:nth-of-type(1) {
  background-color: #000000;
  top: 24px;
  left: 5px;
  -webkit-transform: translateY(6px) rotate(-45deg);
  transform: translateY(6px) rotate(-45deg);
  width: 24px;
}

.openbtn1.active span:nth-of-type(2) {
  background-color: #000000;
  top: 36px;
  left: 5px;
  -webkit-transform: translateY(-6px) rotate(45deg);
  transform: translateY(-6px) rotate(45deg);
  width: 24px;
}



.header-sp__nav-img {
  max-width: 120px;
  padding: 10px;
}

.header-sp__nav {
  padding-bottom: 30px;
}

.header-sp__list {
  text-align: left;
  padding: 48px 30px 40px;
}

.header-sp__list-item {
  padding-top: 24px;
  padding-bottom: 24px;
  padding-left: 10px;
  padding-right: 10px;
  border-bottom: 1px solid #A3A3A3;
}

.header-sp__list-item--button {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  background: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.header-sp__list-item--button:after {
  content: "";
  background-image: url(../img/header-sp-list-item--button.svg);
  width: 8px;
  height: 8px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
}

.header-sp__list-item--arrow {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 0;
  background: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.header-sp__list-item--arrow:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  width: 8px;
  height: 8px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;

}

.header-sp__list-item-link {
  font-size: 18px;
  white-space: nowrap;
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 5px;
  font-family: var(--base-font-en);
  font-weight: 700;
  position: relative;
  line-height: 1;
}

.header-sp__list-item-link span {
  font-size: 12px;
  font-weight: 800;
  font-family: var(--base-font);
}

.header-sp__button.page-common__button {
  margin-top: 0;
  width: 100%;

  margin-top: 0;
  max-width: 320px;
  margin-left: auto;
  margin-right: auto;
  font-size: 16px;

}

/* .header-sp__button span {
  background: var(--base-color);
}

.header-sp__button span:after {
  filter: invert(1);
} */

/* 
.header-sp__nav-accordion {
  position: relative;
}

.header-sp__nav-accordion__ttl {
  cursor: pointer;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}

.header-sp__nav-accordion__cnt {
  height: 0;
  overflow: hidden;
  -webkit-transition: 0.2s ease height;
  transition: 0.2s ease height;
}



.header-sp__nav-accordion__inner {
  padding-top: 20px;
} */

.header-sp__mega {
  height: 0;
  overflow: hidden;
  transition: 0.3s;
}



.header-sp__mega-flex {
  display: flex;
  gap: 15px;
  padding-top: 20px;
}

.header-sp__mega-flex-left {
  flex: 0 1 100px;
}

.header-sp__mega-flex-right {
  flex: 1;
}

.header-sp__mega-title {
  font-size: 14px;
  font-weight: 800;
}

.header-sp__mega-item {
  padding-top: 10px;
  line-height: 1;
}

.header-sp__mega-item:first-child {
  padding-top: 0;
}

.header-sp__mega-item:nth-child(2) {
  padding-top: 14px;
}

.header-sp__mega-link {
  position: relative;
  font-size: 12px;
  letter-spacing: 0;
}

.header-sp__mega-link span {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--base-color);
  right: -12px;
  transition: 0.3s;
  top: 50%;
  transform: translateY(-50%);
}

.header-sp__mega-link span:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 6px;
  height: 3px;
  transition: 0.3s;
}


.breadcrumbs-list__wrap {
  overflow-y: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding-top: 16px;
  padding-top: 1rem;
  padding-left: 16px;
  padding-left: 1rem;
  padding-right: 16px;
  padding-right: 1rem;
}

.breadcrumbs-list__wrap::-webkit-scrollbar {
  display: none;
}

.breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
}

.breadcrumbs-list__item {
  position: relative;
  color: #1E1E1E;
  font-size: 14px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.breadcrumbs-list__item::before {
  content: "/";
  position: absolute;
  margin-right: -12px;
  margin-right: -0.75rem;
  right: 0;
  color: #CCCCCC;
}

.breadcrumbs-list__item:last-child {
  padding-right: 20px;
  padding-right: 1.25rem;
}

.breadcrumbs-list__item:last-child::before {
  content: none;
}

.breadcrumbs-list__item a {
  position: relative;
  text-decoration: underline;
  text-decoration-skip-ink: none;
}

@media screen and (max-width:768px) {
  .breadcrumbs-list__item a span {
    display: none;
  }
}


/* ----------------------------------------
Footer
---------------------------------------- */
.footer {
  background: #000;
}

.footer__inner {
  position: relative;
  max-width: 1232px;
  margin-left: auto;
  margin-right: auto;
  padding: 60px 20px;
}



.pagetop {
  position: absolute;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 6.25rem;
  border: 4px solid #D5D5D5;
  top: -24px;
  top: -1.5rem;
  background: #F3F3F3;
  right: 24px;
  right: 1.5rem;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  opacity: 1;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  padding-top: 20px;
  padding-top: 1.25rem;
  padding-bottom: 10px;
  padding-bottom: 0.625rem;
  z-index: 1;
}

@media screen and (max-width:768px) {
  .pagetop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 2.5rem;
    height: 2.5rem;
  }
}

.pagetop-up {
  display: inline-block;
  vertical-align: middle;
  color: #D5D5D5;
  line-height: 1;
  position: relative;
  width: 1em;
  height: 1em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width:768px) {
  .pagetop-up {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 0.625rem;
    height: 0.625rem;
    margin-bottom: 5px;
  }
}

.pagetop-up::before,
.pagetop-up::after {
  content: "";
  position: absolute;
  background: currentColor;
}

.pagetop-up::before {
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  height: 0.1875rem;
}

.pagetop-up::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 3px;
  width: 0.1875rem;
}

.footer__list-group {
  padding-bottom: 32px;
  display: flex;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  color: var(--color-white);
}

@media screen and (max-width: 1000px) {
  .footer__list-group {

    flex-direction: column-reverse;
    gap: 50px;
    padding-bottom: 0;
  }
}

@media screen and (max-width:768px) {
  .footer__list-group {
    flex-direction: column-reverse;
  }
}

.footer__list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-left: 20px;
}

@media screen and (max-width:768px) {
  .footer__list {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 45%;
    flex: 0 1 45%;
    padding-left: 10px;
  }
}

.footer__list-item {
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 24px;
}



.footer__list-link-en {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.footer__list-link {
  font-size: 12px;
  font-weight: 800;
}

.footer__list-item-first {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.125;
  margin-bottom: 20px;
}

@media screen and (max-width: 1000px) {
  .footer__list-item-first {
    font-size: 14px;
  }
}

@media screen and (max-width:768px) {
  .footer__list-item-first {
    margin-bottom: 14px;
  }
}

.footer__list-item:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  padding-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media screen and (max-width:768px) {
  .footer-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.75rem;
  }
}

.footer-bottom__logo {
  width: 100%;
  max-width: 190px;
  max-width: 11.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media screen and (max-width:768px) {
  .footer-bottom__logo {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 9rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.copyright {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  text-align: center;
}

.footer__logo-wrap {
  flex: 0 1 25%;
}

.footer__list-wrap {
  flex: 1;
  display: flex;
  gap: 100px;
  justify-content: end;
}

@media screen and (max-width:1000px) {
  .footer__list-wrap {
    justify-content: start;
  }
}

@media screen and (max-width:768px) {
  .footer__list-wrap {
    flex-direction: column;
    gap: 20px;
  }
}

.footer__logo {
  max-width: 210px;
  display: flex;
}

@media screen and (max-width:768px) {
  .footer__logo {
    max-width: 250px;
  }
}

.footer__logo-bottom {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  font-weight: 500;
  margin-top: 24px;

}

.footer__logo-bottom-weight {
  font-weight: 700;
  padding-bottom: 8px;
}

.footer__logo-bottom-link {
  font-size: 10px;
  font-weight: 400;
  text-decoration: none;
  margin-top: 24px;
  display: flex;
}

.footer__list-detail {
  line-height: 1.5;
  margin-top: 10px;
}

.footer__list-detail-item {
  font-size: 12px;
  font-weight: 500;

}

.footer__list-detail-item:before {
  content: "-";
}

.footer__list-detail-item--first:before {
  content: none;
}

.footer__bottom-flex {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  margin-top: 80px;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {

  .footer__bottom-flex {
    margin-top: 0px;
  }
}




.sp__br {
  display: none;
}

@media screen and (max-width:768px) {
  .sp__br {
    display: block;
  }
}



/* ----------------------------------------
page base
---------------------------------------- */
.is-page {
  background: #F5F5F0;
}

.page__section:not(:last-of-type) {
  padding-top: 148px;
}

@media screen and (max-width:768px) {
  .page__section:not(:last-of-type) {
    padding-top: 80px;
  }
}

.page__section:last-of-type {
  padding-top: 148px;
  padding-bottom: 160px;
}

@media screen and (max-width:768px) {
  .page__section:last-of-type {
    padding-top: 80px;
    padding-bottom: 120px;
  }
}

/* ----------------------------------------
page mv
---------------------------------------- */
.mv__wrap .container:not(.breadcrumbs) {
  padding: 100px 0;
}

@media screen and (max-width:768px) {
  .mv__wrap .container:not(.breadcrumbs) {
    padding: 60px 0 80px;
    width: 100%;
  }
}

.mv__wrap .container .page__top-title,
.is-404 h1 {
  text-align: center;
  font-weight: 500;
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.35em;
  line-height: 1.5;
}

@media screen and (max-width:768px) {

  .mv__wrap .container .page__top-title,
  .is-404 h1 {
    font-size: 1.125rem;
  }
}

/* ----------------------------------------
breadcrumbs
---------------------------------------- */
/* ----------------------------------------
page title
---------------------------------------- */

/* ----------------------------------------
message mv
---------------------------------------- */
.page-counseling__inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  max-width: 1020px;
  max-width: 63.75rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .page-counseling__inner {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}

.page-counseling__text {
  text-align: center;
  font-size: 24px;
  font-size: 1.5rem;

}

@media screen and (max-width:768px) {
  .page-counseling__text {
    font-size: 1.25rem;
  }
}

.page-counseling__content {
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-counseling__content {
    padding-top: 2.5rem;
  }
}

.contact__form-description-text-required {
  font-size: 16px;
  color: #FF6B6B;
  text-align: right;
}

@media screen and (max-width: 768px) {
  .contact__form-description-text-required {
    font-size: 14px;
  }
}

.page-contact__content .contact__form {
  /* border: 1px solid #CCCCCC;
  border-radius: 1rem;
  padding: 40px;
  padding: 2.5rem; */
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__form {
    border: none;
    padding: 0rem;
  }
}

.page-contact__content .wpcf7-spinner {
  position: absolute;
}

.page-contact__content .contact__text-link a {
  color: inherit;
}

.page-contact__content .contact__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #CCCCCC;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border: none;
    margin-top: 1.125rem;
    padding-bottom: 0rem;
    gap: 8px;
  }
}

.page-contact__content .contact__item:first-child {
  margin-top: 0px;
  margin-top: 0rem;
}

.page-contact__content .contact__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 24%;
  flex: 0 1 24%;
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__item-label {
    font-size: 0.875rem;
    padding-bottom: 0;
  }
}

.page-contact__content .contact__item-flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-contact__content .contact__checbox .contact__item-body {
  padding-left: 20px;
  padding-left: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__checbox .contact__item-body {
    padding-left: 0rem;
  }
}

.contact__checbox .wpcf7-form-control {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact__checbox .wpcf7-list-item {
  position: relative;
}

@media screen and (max-width:768px) {
  .contact__checbox .wpcf7-list-item {
    font-size: 0.75rem;
  }
}

.contact__checbox .wpcf7-list-item-label {
  position: relative;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-white);
}

.contact__checbox .wpcf7-list-item-label::before {
  display: block;
  content: "";
  border: 1px solid var(--color-white);
  border-radius: 4px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.contact__checbox span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 12px;
  height: 8px;

  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2213%22%20viewBox%3D%220%200%2017%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.5607%200.43934C17.1464%201.02513%2017.1464%201.97487%2016.5607%202.56066L6.5%2012.6213L0.93934%207.06066C0.353553%206.47487%200.353553%205.52513%200.93934%204.93934C1.52513%204.35355%202.47487%204.35355%203.06066%204.93934L6.5%208.37868L14.4393%200.43934C15.0251%20-0.146447%2015.9749%20-0.146447%2016.5607%200.43934Z%22%20fill%3D%22%23704D1D%22%2F%3E%3C%2Fsvg%3E");
  background: var(--base-color);
  background-size: 12px 8px;
  background-repeat: no-repeat;
  mask-size: 100%;
  mask-repeat: no-repeat;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}


.contact__checbox input[type=checkbox]:checked+span.wpcf7-list-item-label::after {
  display: block;
}

.contact__checbox input[type=checkbox]:checked+span.wpcf7-list-item-label::before {
  background: var(--color-white);
}

.contact__checbox input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  visibility: visible;
  opacity: 0;
  position: absolute;
}

.page-contact__content .contact__accept a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-contact__content .contact__item-label .required {
  background-color: #EBA139;
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
  font-weight: 700;
}

.page-contact__content .contact__item-label .any {
  background-color: #F5F5F5;
  padding: 4px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
}

.page-contact__content .contact__item-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__item-body {
    width: 100%;
  }
}

.page-contact__content .contact__item-text input,
.page-contact__content .contact__item-text textarea {
  width: 100%;
  display: block;
  background-color: #F5F5F5;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  min-height: 48px;
  min-height: 3rem;
  border-radius: 0.5rem;
}

.page-contact__content .contact__accept {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
}

@media screen and (max-width:768px) {
  .page-contact__content .contact__accept {
    font-size: 0.75rem;
    text-align: left;
  }
}

.page-contact__content .primary__contact-button--gradition {
  position: relative;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(#EBA139), to(#DCD900));
  background: linear-gradient(to right, #EBA139, #DCD900);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 24px;
  margin-top: 1.5rem;
  max-width: 540px;
  max-width: 33.75rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .page-contact__content .primary__contact-button--gradition {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 1rem;
  }
}

.page-contact__content .primary__contact-button--gradition:before {
  content: "";
  background-image: url(../img/button-maru.svg);
  width: 32px;
  height: 32px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

@media screen and (max-width:768px) {
  .page-contact__content .primary__contact-button--gradition:before {
    width: 24px;
    height: 24px;
  }
}

.page-contact__content .primary__contact-button--gradition:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  width: 36px;
  height: 8px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}

@media screen and (max-width:768px) {
  .page-contact__content .primary__contact-button--gradition:after {
    width: 24px;
    height: 6px;
  }
}

.page-contact__content .primary__contact-button--gradition:hover {
  opacity: 0.8;
}

.page-contact__content .primary__contact-button--gradition {
  text-align: center;
}

.page-contact__content .primary__contact-button--gradition input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;

  font-weight: 700;
  color: #fff;
  padding: 20px;
  padding: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width:768px) {
  .page-contact__content .primary__contact-button--gradition input {
    padding: 0.875rem;
    font-size: 1rem;
  }
}

.page-contact__content .contact__item p {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}

.page-404__inner {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-404__inner {
    padding-bottom: 4rem;
  }
}

@media screen and (max-width:768px) {
  .page-404__text.--center {
    text-align: left !important;
  }
}

.page-content-policy h2 {

  font-weight: 500;
  font-size: 24px;
  font-size: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width:768px) {
  .page-content-policy h2 {
    font-size: 1.25rem;
  }
}

.page-content-policy h2:first-child {
  margin-top: 0px;
  margin-top: 0rem;
}

.page-content-policy p {
  font-weight: 400;
  margin-top: 24px;
  margin-top: 1.5rem;
  line-height: 1.5;
}

.page-content-policy ul {
  margin-top: 16px;
  margin-top: 1rem;
}

.page-content-policy li {
  font-weight: 400;
  line-height: 1.5;
  position: relative;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.page-content-policy li:before {
  content: "・";
  position: absolute;
  left: 0;
  top: 0;
}

.page-content-policy a {
  text-decoration: underline;
}

.page-sitemap__text {
  margin-top: 80px;
  margin-top: 5rem;
}

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

.page-sitemap__text .footer__list {
  border-left: 1px solid #000;
  text-align: left;
}

.page-sitemap__text a {
  color: #000;
}

.archive-column__sidebar-group .archive-works__item-link-category {
  font-size: 12px;
  font-size: 0.75rem;
  background: #fff;
  border-radius: 62.4375rem;
  padding: 4px 10px 5px;
  padding: 0.25rem 0.625rem 0.3125rem;
  white-space: nowrap;
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item {
  position: relative;
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:before {
  position: absolute;
  left: 0;
  top: 0;
  border-top-left-radius: 8px;
  border-top-left-radius: 0.5rem;
  border-bottom-right-radius: 8px;
  border-bottom-right-radius: 0.5rem;
  background: #EBA139;
  padding: 3px 10px;
  padding: 0.1875rem 0.625rem;
  color: #fff;
  font-size: 12px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:first-child:before {
  content: "No.1";
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:nth-child(2):before {
  content: "No.2";
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:nth-child(3):before {
  content: "No.3";
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:nth-child(4):before {
  content: "No.4";
}

.archive-column__sidebar-ranking-content .archive-works__sidebar-pickup-item:nth-child(5):before {
  content: "No.5";
}

.archive-column__sidebar-category-item-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.archive-column__sidebar-category-item {
  line-height: 2;
}

.archive-column__sidebar-category-item:first-child {
  margin-top: 0;
}

/* ----------------------------------------
last
---------------------------------------- */
.sp-flex,
.sp-block,
.sp-inline {
  display: none !important;
}

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

  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }

  .sp-block {
    display: block !important;
  }

  .sp-inline {
    display: inline !important;
  }
}

.pc-hide {
  display: none;
}

@media screen and (max-width:768px) {
  .pc-hide {
    display: block;
  }
}

.hero {
  height: 100vh;
  min-height: 600px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  position: relative;
  overflow: hidden;
}

@media screen and (max-width:768px) {
  .hero {
    min-height: 600px;
  }
}

.hero:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background-image: url(../img/top-bg-mask.webp);
  width: 100%;
  height: 100%;
  background-size: cover;
  z-index: 0;
}

.hero__img {
  width: 100vw;
  height: 100vh;
  min-height: 600px;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}



@media screen and (max-width: 768px) {
  .hero__inner {
    padding: 0 20px;
  }
}

.hero__inner {
  width: 100%;
  z-index: 1;
  padding-bottom: 60px;
}

@media screen and (max-width: 1000px) {
  .hero__inner {
    padding: 0 20px 20px;
  }
}

@media screen and (max-width: 480px) {
  .hero__inner {
    padding: 0 10px;
  }
}




.hero__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 50px;
  margin-top: 3.125rem;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: end;
}

@media screen and (max-width:768px) {
  .hero__body-bottom {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    gap: 2.625rem;
    margin-top: 1.875rem;
  }
}


.hero-news__body-paper-dl {
  position: absolute;
  bottom: 20px;
  background: #000;
  padding: 24px 24px 24px 14px;
  border-radius: 0 8px 8px 0;
}

@media screen and (max-width:768px) {
  .hero-news__body-paper-dl {
    display: none;
  }
}

.hero-news__body-paper-dl-text {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04rem;
  text-align: center;
  margin-top: 10px;
}

.hero-news__body-paper-dl-picture {
  max-width: 62px;
  margin-left: auto;
  margin-right: auto;
}





.hero-news {
  max-width: 560px;
  margin-right: 100px;
  margin-left: auto;
}

@media screen and (max-width:768px) {
  .hero-news {
    max-width: 100%;
    width: 100%;
  }
}

@media screen and (max-width:768px) {
  .hero-news__inner {
    padding-bottom: 64px;
  }
}





.hero-news__body {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: end;
}

.hero-news__item-link {
  display: flex;
  align-items: end;
  max-width: 340px;
  width: 100%;
  gap: 20px;
}

@media screen and (max-width:768px) {
  .hero-news__item-link {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    max-width: 100%;
  }
}


.hero-news__item-link-time {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  position: relative;
  border-right: 1px solid #fff;
  padding-right: 24px;
}

@media screen and (max-width:768px) {
  .hero-news__item-link-time {
    border-right: 0;
    position: relative;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

@media screen and (max-width:768px) {
  .hero-news__item-link-time:after {
    content: "";
    width: 20px;
    height: 1px;
    background: var(--color-white);
    position: absolute;
    bottom: -8px;
    left: 0;
  }
}


.hero-news__item-link-text {
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
}

@media screen and (max-width:768px) {
  .hero-news__item-link-text {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}

.sample_scroll_line {
  position: absolute;
  right: 100px;
  bottom: 260px;
}

@media screen and (max-width:768px) {
  .sample_scroll_line {
    right: 10px;
    bottom: 30%;
  }
}

.scroll-text {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.scroll-border {
  position: relative;
  margin-top: 10px;
  width: 2px;
  height: 100px;

  background: rgb(255 255 255 / 50%);
  overflow: hidden;
  margin: 10px auto auto;
}

.scroll-border::before {
  content: "";
  display: block;
  position: absolute;
  width: 2px;
  height: 30px;
  top: 0;
  left: 0;
  right: 0;
  animation: scrollbar 2.0s ease-in-out infinite;
  margin: auto;
  background-color: var(--color-white);
}

@keyframes scrollbar {
  0% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }

  100% {
    -webkit-transform: translateY(350%);
    transform: translateY(350%);
  }
}

.inner1024 {
  max-width: 1064px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;

}

/* ----------------------------------------
front page
---------------------------------------- */


.top-common__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1360px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-right: 100px;
  margin-top: 60px;
}

@media screen and (max-width: 1000px) {
  .top-common__grid {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width:768px) {
  .top-common__grid {
    grid-template-columns: 1fr;
    padding-left: 0px;
    padding-right: 0px;
    gap: 32px;
  }
}

.top-common__item-img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.top-common__item-img img {
  aspect-ratio: 360/200;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}

.top-common__item-category-wrap {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  gap: 0.3125rem;
}

.top-common__item-category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 5px;
  padding: 5px 20px;
  border-radius: 20px;
  background: #B2B2B2;
  color: #fff;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;

  font-size: 12px;
  font-size: 0.75rem;
}

@media screen and (max-width:768px) {
  .top-common__item-category {
    font-size: 12px;
    padding: 5px 10px;
  }
}

.top-common__item-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.top-common__item-time {
  padding-top: 10px;
}

@media screen and (max-width:768px) {
  .top-common__item-time {
    font-size: 12px;
  }
}

.top-common__item-text {
  padding-top: 10px;

  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

@media screen and (max-width:768px) {
  .top-common__item-text {
    font-size: 14px;
  }
}


@media screen and (max-width:768px) {
  .top-common__grid.--scroll-pc {
    overflow-x: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
    grid-template-columns: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1.25rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.top-common__grid.--scroll-pc::-webkit-scrollbar {
  display: none;
}

@media screen and (max-width:768px) {
  .top-common__grid.--scroll-pc .top-common__item {
    min-width: 240px;
  }
}

/* ----------------------------------------
top about
*/
.top-about {
  background-image: url(../img/bg-top-white.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.top-about__inner {
  padding-top: 230px;
  padding-bottom: 200px;

}

@media screen and (max-width:768px) {
  .top-about__inner {
    padding-top: 100px;
    padding-bottom: 62px;

  }
}

.top-about__body-title {
  font-size: 60px;
  font-weight: 800;
  display: inline-block;
}

@media screen and (max-width:768px) {
  .top-about__body-title {
    font-size: 24px;
    display: flex;
    flex-direction: column;
  }
}

.top-about__body-title--big {
  font-size: 100px;
  display: inline-block;
}

@media screen and (max-width:768px) {
  .top-about__body-title--big {
    font-size: 50px;
  }
}

.top-about__body-animation-img {
  max-width: 470px;
  margin-right: 0;
  margin-left: auto;
  filter: invert(1);

}

@media screen and (max-width:768px) {
  .top-about__body-animation-img {
    max-width: 250px;
    margin-top: 14px;
  }
}

.top-about__body-text {
  font-size: 20px;
  line-height: 2.4;
  font-weight: 700;
  padding-top: 160px;
}

@media screen and (max-width:768px) {
  .top-about__body-text {
    font-size: 14px;
    padding-top: 60px;
  }
}

/* ----------------------------------------
top service
*/
.top-service {
  background-image: url(../img/bg-top-white.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.top-service__inner {
  padding-top: 140px;
  padding-bottom: 200px;
}

@media screen and (max-width:768px) {
  .top-service__inner {
    padding-top: 64px;
    padding-bottom: 114px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width:768px) {
  .top-service__head {
    padding-left: 10px;
  }
}



.top-service__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 100px;
  z-index: 1;
  position: relative;
}

@media screen and (max-width:768px) {
  .top-service__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 120px;
  }
}

.top-service__grid:before {
  content: "";
  margin: 0 calc(50% - 50vw);
  width: calc(50vw + 315px);
  position: absolute;
  height: calc(100% + 176px);
  background-image: url(../img/top-service-grid-bg.webp);
  background-position: center;
  background-size: cover;
  right: 0;
  z-index: -1;
  border-radius: 60px 0 0 60px;
  z-index: 0;
  mix-blend-mode: screen;
  top: -76px;

}

@media screen and (max-width:768px) {
  .top-service__grid:before {
    width: calc(50vw + 106px);
    border-radius: 24px 0 0 24px;
    height: calc(100% + 80px);
    transform: translateY(36px);
  }
}


.top-service__item {
  background: var(--color-white);
  border-radius: 16px;
  padding: 24px 30px;
  filter: drop-shadow(0px 0px 0px 25px rgb(0 0 0 / 25%));
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
  z-index: 1;
}

@media screen and (max-width:768px) {

  .top-service__item {
    padding: 20px 12px;
  }
}

.top-service__item-img {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .top-service__item-img {
    width: 86%;
  }
}

.top-service__item--width .top-service__item-img {
  max-width: 140px;
}

.top-service__item-title {
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width:768px) {
  .top-service__item-title {
    font-size: 14px;
    line-height: 1.2;
    padding-top: 10px;
  }
}

@media screen and (max-width:768px) {
  .top-service__item:nth-child(5) .top-service__item-title {
    height: 43px;
  }
}

.top-service__item-text {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0;
  padding-top: 16px;
  text-align: center;
}

@media screen and (max-width:768px) {
  .top-service__item-text {
    font-size: 10px;
    padding-top: 10px;
  }
}

.top-service__item-text span {
  display: inline-block;
}

.top-service__item-button-wrap {
  max-width: 192px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 14px;
}

.top-service__item-button {
  text-align: center;
  font-size: 16px;
  padding: 10px 15px 10px 10px;
  justify-content: center;
  margin-top: 0;
}

@media screen and (max-width:768px) {
  .top-service__item-button {
    font-size: 0px;
    padding: 0;
    background: inherit;
  }
}

.top-service__item-button span {
  width: 16px;
  height: 16px;
}

@media screen and (max-width:768px) {
  .top-service__item-button span {
    background: var(--base-color);
    right: 0;
    width: 12px;
    height: 12px;
  }
}

.top-service__item-button span:after {
  width: 8px;
  height: 4px;
}

@media screen and (max-width:768px) {
  .top-service__item-button span:after {
    filter: invert(1);
    width: 6px;
    height: 3px;
  }
}

/* ----------------------------------------
top data
*/
.top-data {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.top-data__inner {
  padding-top: 200px;
  padding-bottom: 60px;
}

@media screen and (max-width:768px) {
  .top-data__inner {
    padding-top: 64px;
    padding-bottom: 34px;
  }

}

.top-data__head {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media screen and (max-width:768px) {
  .top-data__head {
    gap: 6px;
  }
}




.top-data__head-title {
  padding-top: 18px;
}

@media screen and (max-width:768px) {
  .top-data__head-title {
    padding-top: 12px;
  }
}

.top-data__gird {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
}

@media screen and (max-width:768px) {

  .top-data__gird {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

}

.top-data__grid-item {
  color: #333333;
  display: flex;
  flex-direction: column;
  text-align: center;
  background: var(--color-white);
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.2);
  border-radius: 8px;
  padding: 34px 20px;
}

@media screen and (max-width:768px) {
  .top-data__grid-item {
    padding: 0px 10px;

  }

}

@media screen and (max-width:768px) {
  .top-data__grid-item-flex {
    display: flex;
    gap: 0px;
    align-items: center;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

}

@media screen and (max-width:768px) {
  .top-data__grid-item-flex-left {
    flex: 0 1 48%;
  }

}

@media screen and (max-width:768px) {
  .top-data__grid-item-flex-right {
    flex: 1;
  }

}



.top-data__grid-item-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
}

@media screen and (max-width:768px) {
  .top-data__grid-item-title {
    font-size: 16px;
  }

}

.top-data__grid-item-img {
  max-width: 200px;
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}

@media screen and (max-width:768px) {
  .top-data__grid-item-img {
    max-width: 160px;
  }
}

.top-data__grid-item-img img {
  aspect-ratio: 1/1;
  object-fit: contain;
}

.top-data__grid-item-img.--sp {
  display: none;
}


@media screen and (max-width:768px) {
  .top-data__grid-item-img.--sp {
    display: block;
    margin-top: 0;
  }

  .top-data__grid-item-img.--pc {
    display: none;
  }
}

.top-data__grid-item-text {
  font-size: 40px;
  font-weight: 400;
  letter-spacing: 0.02em;
  font-family: "Times New Roman", serif;
}

@media screen and (max-width:768px) {
  .top-data__grid-item-text {
    font-size: 24px;
    line-height: 1.4;
  }
}

.top-data__grid-item-big {
  font-size: 60px;
}

@media screen and (max-width:768px) {
  .top-data__grid-item-big {
    font-size: 46px;
  }

}

.top-data__bottom {
  color: var(--base-color);
  display: flex;
  align-items: center;
  padding: 20px 78px;
  gap: 140px;
  margin-top: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.2);
}

@media screen and (max-width:768px) {
  .top-data__bottom {
    flex-direction: column;
    padding: 16px;
    gap: 8px;
    margin-top: 12px;
  }
}

.top-data__bottom-left {
  flex: 0 1 180px;
  position: relative;
}

@media screen and (max-width:768px) {
  .top-data__bottom-left {
    flex: 1;
    border-bottom: 1px solid var(--color-white);
    width: 100%;
    padding-bottom: 8px;
  }
}

.top-data__bottom-left:after {}

.top-data__bottom-left-title {
  font-size: 36px;
  letter-spacing: 0.02em;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width:768px) {

  .top-data__bottom-left-title {
    font-size: 20px;
  }
}

.top-data__bottom-right {
  flex: 1;
  gap: 40px;
  display: flex;
  position: relative;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 5px;
}

@media screen and (max-width:768px) {
  .top-data__bottom-right {
    flex-direction: column;
    gap: 8px;
    width: 100%;
    padding-top: 0;
  }
}

.top-data__bottom-right:before {
  content: "";
  height: 100%;
  width: 1px;
  background: var(--base-color);
  position: absolute;
  left: -70px;
  top: 50%;
  transform: translateY(-50%);
}

.top-data__bottom-right-item {
  text-align: center;
}

@media screen and (max-width:768px) {
  .top-data__bottom-right-item {
    display: flex;
    align-items: center;
    justify-content: end;
    gap: 16px;
  }
}

.top-data__bottom-right-item-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
}

@media screen and (max-width:768px) {
  .top-data__bottom-right-item-title {
    font-size: 12px;
  }
}

.top-data__bottom-right-item-text {
  letter-spacing: 0.02em;
  font-size: 24px;
  padding-top: 10px;

}

@media screen and (max-width:768px) {
  .top-data__bottom-right-item-text {
    font-size: 12px;
    padding-top: 0;
    line-height: 1;
  }
}

.top-data__bottom-right-item-text-big {

  font-size: 40px;
  font-family: "Times New Roman", serif;

}

@media screen and (max-width:768px) {
  .top-data__bottom-right-item-text-big {
    font-size: 32px;
  }
}

/* ----------------------------------------
top strengths
*/
.top-strengths {
  overflow: hidden;
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.top-strengths__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width:768px) {
  .top-strengths__inner {
    padding-top: 72px;
    padding-bottom: 64px;
  }
}

.top-strengths__content {
  max-width: 1270px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
}

@media screen and (max-width:768px) {
  .top-strengths__content {
    margin-top: 70px;
  }
}

.top-strengths__content-flex {
  display: flex;
  gap: 72px;
  position: relative;
  padding-top: 80px;
  margin-top: 140px;
  z-index: 1;
}

@media screen and (max-width:768px) {

  .top-strengths__content-flex {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    gap: 0px;
    margin-top: 60px;
  }
}

.top-strengths__content-flex:first-child {
  margin-top: 0;
}

.top-strengths__content-flex:before {
  content: "";
  margin: 0 calc(50% - 50vw);
  width: calc(50vw + 270px);
  position: absolute;
  height: 100%;
  background: #ffffff;
  left: 0;
  z-index: -1;
  height: 100%;
  top: 0;
  border-radius: 0 60px 0px 0;
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex:before {
    content: none;
  }
}

.top-strengths__content-flex-body {

  flex: 0 1 44%;
  padding-bottom: 80px;
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-body {
    position: relative;
    padding-top: 50px;
    padding-bottom: 60px;
    padding-right: 10px;
    padding-left: 0;
  }
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-body:before {
    content: "";
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 10px);
    position: absolute;
    height: 100%;
    background-image: url(../img/strength-item-bg.webp);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    left: 0;
    z-index: -1;
    height: 100%;
    top: 0;
    border-radius: 0 36px 0px 0;
  }
}

.top-strengths__content-flex-body-inner {
  max-width: 470px;

  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .top-strengths__content-flex-body-inner {
    max-width: 100%;
  }
}

.top-strengths__content-flex-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
  padding-bottom: 40px;
  display: flex;
  align-items: end;
  gap: 8px;
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-title {
    font-size: 20px;
    padding-bottom: 26px;
  }
}

.top-strengths__content-flex-title--strong {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-title--strong {
    font-size: 60px;
  }
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-title--sp span {
    display: inline-block;

  }
}

.top-strengths__content-flex-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 2;
}

.top-strengths__content-flex-img {
  flex: 1;
  transform: translateY(54px);
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex-img {
    flex: 1;
    transform: translateY(-20px);
    margin-right: -20px;
    margin-left: auto;
    width: 94%;
  }
}

.top-strengths__content-flex-img img {
  aspect-ratio: 615 / 370;
  object-fit: contain;
}

.top-strengths__content-flex--revers {
  flex-direction: row-reverse;
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex--revers {
    flex-direction: column;
  }
}

.top-strengths__content-flex--revers:before {
  right: 0;
  left: initial;
  border-radius: 60px 0px 0px 0px;
}

.top-strengths__content-flex--revers .top-strengths__content-flex-body-inner {
  margin-left: 0;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .top-strengths__content-flex--revers .top-strengths__content-flex-body:before {
    content: "";
    margin: 0 calc(50% - 50vw);
    width: calc(100vw - 10px);
    position: absolute;
    height: 100%;
    background-color: #EEEEEE;
    left: inherit;
    right: 0;
    z-index: -1;
    height: 100%;
    top: 0;
    border-radius: 36px 0 0px 0;
  }
}

@media screen and (max-width: 768px) {
  .top-strengths__content-flex--revers .top-strengths__content-flex-body {
    padding-left: 10px;
    padding-right: 0;
  }
}

@media screen and (max-width: 768px) {
  .top-strengths__content-flex--revers .top-strengths__content-flex-img {
    margin-left: -20px;
    margin-right: auto;
  }
}


/* ----------------------------------------
top  comparison
*/
.top-comparison {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.top-comparison__inner {
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .top-comparison__inner {

    padding-left: 0;
    padding-right: 0;
    padding-bottom: 64px;
  }
}


.top-comparison__content {
  background: #ffffff;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 24px;
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .top-comparison__content {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 768px) {
  .top-comparison__head {

    padding-left: 10px;
    padding-right: 10px;
  }
}

.top-comparison__head-title--en {
  color: var(--base-color);
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 18px;
}

@media screen and (max-width: 768px) {
  .top-comparison__head-title--en {
    font-size: 40px;
  }
}

.top-comparison__head-title--en:before,
.top-comparison__head-title--en:after {
  content: "";
  width: 1px;
  height: 100%;
  background: var(--base-color);
  position: relative;
  width: 100%;
  height: 1px;
}


@media screen and (max-width: 768px) {
  .top-comparison__table-wrap {
    overflow: hidden;
  }
}

.top-comparison__table {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;

  margin-top: 80px;
}

@media screen and (max-width: 768px) {
  .top-comparison__table {
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 60px;
    overflow: scroll;
  }
}

.top-comparison__table table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 3px;
}



.top-comparison__table thead th {
  min-width: 120px;
  padding: 10px;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  color: var(--base-color);
  line-height: 1;
  border-bottom: 1px solid var(--base-color);
}

@media screen and (max-width: 768px) {
  .top-comparison__table thead th {
    min-width: 90px;
    font-size: 14px;
    padding: 10px 0;
  }
}

.top-comparison__table thead th span {
  font-size: 12px;
}

.top-comparison__table thead th:first-child {
  min-width: 124px;
  border: none;
}

@media screen and (max-width: 768px) {
  .top-comparison__table thead th:first-child {
    min-width: 100px;
  }
}

.top-comparison__table thead th:nth-child(2) {
  background: linear-gradient(to right, #FFAD02 0%, #F98A09 40%, #EF4E16 100%);
  color: var(--base-color);
  font-size: 20px;
  font-weight: 800;
  color: #ffffff;
}

.top-comparison__table tbody td:nth-child(2) {
  border-right: 1px solid var(--color-white);
}

.top-comparison__table tbody td {
  border-bottom: 1px solid var(--base-color);
  text-align: center;
  vertical-align: middle;
}



.top-comparison__table tbody tr:last-child td:nth-child(1) {
  border-radius: 0px 0 0 4px;
}

.top-comparison__table tbody td:nth-child(1) {
  font-size: 12px;
  padding: 8px 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: none;
  color: #fff;
  background: #1A1A1A;
}

.top-comparison__table-icon {
  max-width: 16px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  filter: invert(1);
}

.top-comparison__table tbody td:nth-child(2) .top-comparison__table-icon {

  filter: inherit;
}


/* ----------------------------------------
top Loop
*/



.top-loop__inner {
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .top-loop__inner {
    padding-bottom: 64px;
  }
}

.mySwiper .swiper-wrapper {
  transition-timing-function: linear;
}

.top-loop__swiper {
  overflow: hidden;
  display: none;
}

.top-loop__swiper .swiper-slide {
  max-width: 248px;
}

.top-loop__swiper.swiper-initialized {
  display: block;
}

.top-loop__swiper .swiper-wrapper {
  transition-timing-function: linear;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.top-loop__swiper--revers {
  transform: rotate(180deg);
  margin-top: 20px;
}

.top-loop__swiper--revers img {
  transform: rotate(180deg);
}


.top-loop__button {
  margin-top: 60px;
  background: var(--color-white);
  color: var(--base-color);
  box-shadow: 0 0 30px rgb(0, 0, 0, 0.2);
}

.top-loop__button span {
  background: #000000;
}

.top-loop__button span:after {
  filter: invert(1);
}


/* ----------------------------------------
top company
*/
.top-company {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

.top-company__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .top-company__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.top-company__flex {
  display: flex;
  align-items: center;
  margin-top: -20px;
}

@media screen and (max-width: 768px) {
  .top-company__flex {
    flex-direction: column;
  }
}

.top-company__flex-body {
  flex: 0 1 65%;
  margin-top: 64px;
  background: var(--color-white);
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
  z-index: 1;
  padding: 100px 60px;

}

@media screen and (max-width: 768px) {
  .top-company__flex-body {
    padding: 60px;
  }
}

.top-company__flex-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .top-company__flex-title {
    font-size: 24px;
  }
}

.top-company__flex-text {
  font-weight: 800;
  font-size: 16px;
  line-height: 2;
  margin-top: 50px;
}

@media screen and (max-width: 768px) {
  .top-company__flex-text {
    font-size: 12px;
    margin-top: 32px;
  }
}

.top-company__flex-img {
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: -280px;
  min-height: 500px;
  display: flex;
}

@media screen and (max-width: 768px) {
  .top-company__flex-img {
    min-height: auto;
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
    margin-top: -20px;
  }
}

.top-company__flex-img img {
  object-fit: cover;
}

.top-company__button {
  margin-right: 0;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .top-company__button {
    margin-right: auto;
    margin-top: 72px;
  }
}

/* ----------------------------------------
top download
*/
.top-download {
  overflow: hidden;
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.top-download__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .top-download__inner {
    padding-top: 64px;
    padding-bottom: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

@media screen and (max-width: 768px) {
  .top-download__head {
    padding-left: 10px;
    padding-right: 10px;
    position: relative;

    z-index: 2;
  }
}

.top-download__grid:before {
  content: "";
  margin: 0 calc(50% - 50vw);
  width: calc(50vw + 315px);
  position: absolute;
  height: 100%;
  max-height: 583px;
  background-color: #F8F8F8;
  right: 0;
  top: -100px;
  z-index: -1;
  border-radius: 60px 0 0 60px;
}

.top-download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .top-download__grid {
    grid-template-columns: 1fr 1fr;
    margin-top: 32px;
    gap: 24px 10px;
  }
}

.top-download__item-img img {
  border-radius: 8px;
  object-fit: cover;
  aspect-ratio: 325/185;

}

.top-download__item-title {
  font-size: 16px;
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: end;
  margin-top: 12px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 768px) {
  .top-download__item-title {
    font-size: 14px;
  }
}

.top-download__item-title-arrow {
  position: relative;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #333333;

  transition: 0.3s;
  margin-right: 0;
  margin-left: auto;
}

.top-download__item-title-arrow:before {
  content: "";
  background-image: url(../img/button-arrow.svg);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  width: 9px;
  height: 6px;
  transition: 0.3s;
}

.top-download__button {
  margin-top: 20px;
  margin-right: 0;
}

@media screen and (max-width: 768px) {

  .top-download__button {
    margin-top: 32px;
    margin-right: auto;
  }
}

/* ----------------------------------------
top column
*/
.top-column {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
}

.top-column__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .top-column__inner {
    padding-top: 72px;
    padding-bottom: 84px;
  }
}

.top-column__head-title--en {
  color: var(--base-color);
}

.top-column__head-title {
  color: var(--base-color);
}


.top-column__grid {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .top-column__grid {
    margin-top: 30px;
  }
}

.top-column__item {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .top-column__item {
    gap: 14px;
    margin-top: 34px;
  }
}

.top-column__item:first-child {
  margin-top: 0px;
}

.top-column__item-img {
  flex: 0 1 32%;
}


.top-column__item-img img {
  object-fit: cover;
  aspect-ratio: 325/185;

}

@media screen and (max-width: 768px) {
  .top-column__item-img img {
    object-fit: cover;
    aspect-ratio: 1/1;

  }
}

.top-column__item-body {
  color: var(--base-color);
  flex: 1;
}

.top-column__item-body-head {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .top-column__item-body-head {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: start;

  }
}

.top-column__item-time {
  font-size: 14px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .top-column__item-time {
    font-size: 12px;
    font-weight: 500;
  }
}

.top-column__item-category {
  font-size: 13px;
  font-weight: 500;
  line-height: 1;
  padding: 5px 8px;
  border-radius: 2px;
  border: 1px solid var(--base-color);
}

@media screen and (max-width: 768px) {
  .top-column__item-category {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  .top-column__item-time {
    font-size: 11px;
    padding: 3px 5px;
  }
}

.top-column__item-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 768px) {
  .top-column__item-title {
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    margin-top: 8px;
  }
}

.top-column__item-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 20px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 768px) {
  .top-column__item-text {
    display: none;
  }
}

.top-column__button {
  margin-right: 0;
  background: var(--base-color);
  color: var(--color-white);
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .top-column__button {
    margin-right: auto;
    margin-top: 32px;
  }
}

.top-column__button span {
  background: var(--color-white);
}

.top-column__button span:after {
  filter: invert(1);
}

/* ----------------------------------------
top cta
*/
.top-cta {
  background-image: url(../img/top-cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 60px 60px 0 0;
  margin-top: -54px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .top-cta {
    border-radius: 36px 36px 0 0;
    margin-top: -24px;
  }
}

.top-cta__inner {
  padding-top: 80px;
  padding-bottom: 100px;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  max-width: 1200px;
}

@media screen and (max-width: 768px) {
  .top-cta__inner {
    padding-top: 0px;
    padding-bottom: 64px;
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__img-flex {
    display: flex;
    gap: 5px;
    justify-content: space-between;
  }
}

.top-cta__img--left {
  position: absolute;
  left: 20px;
  top: -60px;
  max-width: 286px;
  width: 23%;
}

@media screen and (max-width: 1100px) {
  .top-cta__img--left {
    width: 20%;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__img--left {
    position: relative;
    width: 30%;
    left: inherit;
    top: inherit;
    margin-top: -40px;
  }
}

.top-cta__img--right {
  position: absolute;
  right: 20px;
  top: -60px;
  max-width: 340px;
  width: 28%;
}

@media screen and (max-width: 1100px) {
  .top-cta__img--right {
    width: 24%;
  }
}

@media screen and (max-width: 768px) {
  .top-cta__img--right {
    position: relative;
    width: 44%;
    right: inherit;
    top: inherit;
    margin-top: -40px;
  }
}

.top-cta__flex {
  display: flex;
  gap: 24px;
  margin-top: 112px;
}

@media screen and (max-width:768px) {
  .top-cta__flex {
    flex-direction: column;
    margin-top: 90px;
  }
}

.top-cta__flex-item {
  background: var(--color-white);
  border: 1px solid var(--base-color);
  flex: 1;
  position: relative;
  padding: 25px 50px;
}

@media screen and (max-width: 768px) {
  .top-cta__flex-item {
    padding: 20px 20px;
  }
}

.top-cta__flex-item-flex {
  display: flex;
  gap: 40px;
  align-items: center;
}

@media screen and (max-width: 768px) {

  .top-cta__flex-item-flex {
    display: flex;
    gap: 20px;
    align-items: center;
  }
}

.top-cta__flex-item-flex-head {
  padding-bottom: 4px;
}

.top-cta__flex-item-flex-img {
  flex: 0 1 90px;
}

@media screen and (max-width:768px) {
  .top-cta__flex-item-flex-img {
    flex: 0 1 85px;
  }
}

.top-cta__flex-item-title-en {
  font-size: 46.6px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .top-cta__flex-item-title-en {
    font-size: 36px;
  }
}

.top-cta__flex-item-title {
  font-weight: 600;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .top-cta__flex-item-title {
    font-size: 16px;
  }
}

.top-cta__flex-item-arrow {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 16px;
  right: 20px;
  background: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

@media screen and (max-width: 768px) {
  .top-cta__flex-item-arrow {
    width: 16px;
    height: 16px;
    right: 16px;
  }
}

.top-cta__flex-item-arrow:after {
  content: "";
  background-image: url(../img/button-arrow-black.svg);
  width: 11px;
  height: 6px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
  filter: invert(1);
}

@media screen and (max-width: 768px) {
  .top-cta__flex-item-arrow:after {
    width: 8px;
    height: 4px;
  }
}


.top-cta__head-title--en {
  text-align: center;
  font-size: 80px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .top-cta__head-title--en {
    font-size: 40px;
    padding-top: 16px;
  }
}

.top-cta__head-title {
  text-align: center;
  font-size: 24px;
  padding-top: 24px;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .top-cta__head-title {
    font-size: 20px;
    padding-top: 16px;
  }
}

.top-cta__primary-button-wrap {
  display: flex;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  gap: 24px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .top-cta__primary-button-wrap {
    flex-direction: column;
    margin-top: 40px;
    width: 100%;
    justify-content: center;
  }
}

.top-cta__primary-button {
  margin-top: 0;
  width: 100%;
  background: var(--color-white);
  color: var(--base-color);
}

@media screen and (max-width: 768px) {
  .top-cta__primary-button {
    margin-left: auto;
    margin-right: auto;
  }
}

.top-cta__primary-button span {
  background: var(--base-color);
}

.top-cta__primary-button span:after {
  filter: invert(1);
}

/* ----------------------------------------
page common-base
---------------------------------------- */
.page-common-base-title-h2 {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-common-base-title-h2 {
    font-size: 24px;
    letter-spacing: 0;

  }
}

.page-common-base-text {
  font-size: 14px;
  font-weight: 500;
}


/* ----------------------------------------
page common-head
---------------------------------------- */

.page-common-head {
  background-image: url(../img/page-mv-bg-black.webp);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 570px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
  padding-bottom: 100px;
  border-radius: 0 0 60px 60px;
  background-size: cover;
  z-index: 1;
  position: relative;
}

@media screen and (max-width: 1100px) {
  .page-common-head {
    padding-top: 50px;
    padding-bottom: 50px;
    border-radius: 0 0 32px 32px;
  }
}

.page-mv--gray {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .page-mv--gray {
    padding-top: 106px;
    padding-bottom: 70px;
  }
}

.page-common-head__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.page-common-head__flex {
  display: flex;
  gap: 20px;
  align-items: center;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex {
    flex-direction: column;
  }
}

.page-common-head__flex-body {
  flex: 0 1 58%;
}

.page-common-head__flex--strength .page-common-head__flex-body {
  flex: 0 1 64%;
}

.page-common-head__flex-img {
  flex: 1;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex-img.--pc {
    display: none;
  }
}


.page-common-head__flex-img.--sp {
  display: none;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex-img.--sp {
    display: block;
    max-width: 480px;
    padding-left: 40px;
    padding-right: 40px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 36px;
  }
}


.page-common-head__flex-title {
  font-size: 56px;
  font-weight: 800;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex-title {
    font-size: 36px;

  }

  .page-common-head__flex-title span {
    display: inline-block;
  }
}

@media screen and (max-width: 374px) {
  .page-common-head__flex-title span {
    display: inline;
  }
}

.page-common-head__flex-text {
  font-size: 20px;
  padding-top: 10px;
  font-weight: 500;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex-text {
    font-size: 16px;
    padding-top: 12px;
  }
}



.page-common__button {
  position: relative;
  color: var(--color-white);
  border-radius: 999px;
  align-items: center;
  background: var(--base-color);
  display: flex;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  justify-content: start;
  max-width: 300px;
  width: 100%;
  padding: 21px 40px 21px 36px;

}

@media screen and (max-width: 1100px) {
  .page-common__button {
    padding: 16px 30px 16px 26px;
    font-size: 16px;
  }
}

@media screen and (max-width: 1000px) {
  .page-common__button {
    max-width: 300px;
    padding: 20px;
    width: 90%;
    font-size: 18px;

  }
}

@media screen and (max-width: 768px) {
  .page-common__button {
    width: 100%;

  }
}

.page-common__button span {
  width: 20px;
  height: 20px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 16px;

  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.page-common__button span:after {
  content: "";
  background-image: url(../img/button-arrow-black.svg);
  width: 11px;
  height: 6px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;

}


.page-common__button.--blue {
  background: linear-gradient(45deg, #20196F 0%, #26207B 27%, #38339D 77%, #423EAF 100%);
}

.page-common__button.--orange {
  background: linear-gradient(45deg, #FFAD02 0%, #F98A09 39%, #EF4E16 100%);
}

.page-common__button.--blue span:after {
  content: "";
  background-image: url(../img/--blue-arrow.svg);
  width: 11px;
  height: 6px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;

}

.page-common__button.--orange span:after {
  content: "";
  background-image: url(../img/--orange-arrow.svg);
  width: 11px;
  height: 6px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;

}

.page-common-head__flex-button-wrap {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-top: 60px;
}

@media screen and (max-width: 1000px) {
  .page-common-head__flex-button-wrap {
    flex-direction: column;

  }
}


/* 
page-common-head-main
 */
.page-common-head-main {
  background-image: url(../img/page-mv-bg-black.webp);
  background-repeat: no-repeat;
  background-position: center;
  min-height: 400px;
  padding-top: 120px;
  padding-bottom: 120px;
  border-radius: 0 0 60px 60px;
  background-size: cover;
}

@media screen and (max-width: 1100px) {
  .page-common-head-main {
    padding-top: 80px;
    padding-bottom: 80px;
    border-radius: 0 0 30px 30px;
  }
}

.page-common-head-main__inner {
  max-width: 1064px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.page-common-head-main__title-en {
  color: var(--color-white);
  font-size: 80px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .page-common-head-main__title-en {
    font-size: 50px;
  }
}

.page-common-head-main__title {
  color: var(--color-white);
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 24px;
}

@media screen and (max-width: 768px) {
  .page-common-head-main__title {
    margin-top: 16px;
    font-size: 20px;
  }
}

/* ----------------------------------------
page common-cta
*/


.page-common-cta {
  background-image: url(../img/page-common-cta-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 60px;
}

@media screen and (max-width: 768px) {
  .page-common-cta {
    border-radius: 24px;
  }
}

.page-common-cta__inner {
  padding-top: 120px;
  padding-bottom: 125px;
}

@media screen and (max-width: 768px) {
  .page-common-cta__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.page-common-cta__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-common-cta__title {
    font-size: 24px;
  }
}

.page-common-cta__title span {
  display: inline-block;
}

.page-common-cta__flex {
  display: flex;
  gap: 20px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-common-cta__flex {
    flex-direction: column;
  }
}

.page-common-cta__item {
  background: var(--color-white);
  padding: 40px;
  border-radius: 16px;
  filter: drop-shadow(0 0 25px rgb(0 0 0 / 25%));
}

@media screen and (max-width: 768px) {
  .page-common-cta__item {
    border-radius: 8px;
    padding: 24px 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-common-cta__item-img {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-common-cta__item-img img {
  border-radius: 8px;
}

.page-common-cta__item-title {
  font-size: 20px;
  text-align: center;
  margin-top: 30px;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-common-cta__item-title {
    font-size: 18px;
    margin-top: 12px;
  }
}

.page-common-cta__item-text {
  font-size: 16px;
  font-weight: 500;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-common-cta__item-text {
    font-size: 14px;
    margin-top: 12px;
  }
}

.page-common-cta__button {
  max-width: 320px;
  font-size: 18px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-common-cta__button {
    font-size: 16px;
    padding-right: 32px;
    margin-top: 14px;
  }
}

/* ----------------------------------------
page cta-bottom
---------------------------------------- */
.cta-bottom {
  background-image: url(../img/cta-bottom-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 60px 60px 0 0;
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .cta-bottom {
    border-radius: 30px 30px 0 0;
  }
}

.cta-bottom__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  max-width: 1265px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 768px) {
  .cta-bottom__inner {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

@media screen and (max-width: 768px) {
  .cta-bottom__content-img-flex {
    display: flex;
    gap: 10px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 60px;
  }
}

.cta-bottom__content-img--left {
  position: absolute;
  left: 20px;
  top: -60px;
  max-width: 286px;
  width: 23%;
}

@media screen and (max-width: 1100px) {
  .cta-bottom__content-img--left {
    width: 18%;
  }
}

@media screen and (max-width: 768px) {
  .cta-bottom__content-img--left {
    position: relative;
    width: 50%;
    left: inherit;
    top: inherit;
  }
}

.cta-bottom__content-img--right {
  position: absolute;
  right: 20px;
  top: -60px;
  max-width: 286px;
  width: 23%;
}

@media screen and (max-width: 1100px) {
  .cta-bottom__content-img--right {
    width: 18%;
  }
}

@media screen and (max-width: 768px) {
  .cta-bottom__content-img--right {
    position: relative;
    width: 50%;
    right: inherit;
    top: inherit;
    margin-top: 26px;
  }
}

.cta-bottom__content {
  padding-left: 20px;
  padding-right: 20px;
}

.cta-bottom__title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .cta-bottom__title {
    font-size: 30px;
  }

  .cta-bottom__title span {
    display: flex;
    flex-direction: column;
  }

}

.cta-bottom__button {
  margin-left: auto;
  margin-right: auto;
  margin-top: 36px;
}

@media screen and (max-width: 768px) {
  .cta-bottom__button {
    margin-top: 32px;
  }
}

/* ----------------------------------------
page strength-about
*/

.page-strength-about {
  background-image: url(../img/page-strength-about-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: -50px;

}

.page-strength-about__inner {
  padding-top: 80px;
}

@media screen and (max-width: 768px) {
  .page-strength-about__inner {
    padding-top: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-strength-about__title {
  line-height: 2;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: 0.04rem;
}

@media screen and (max-width: 768px) {
  .page-strength-about__title {
    font-size: 20px;
  }
}

.page-strength-about__title span {
  display: inline-block;
}

.page-strength-about__text {
  font-weight: 700;
  padding-top: 50px;
}

@media screen and (max-width: 768px) {
  .page-strength-about__text {
    padding-top: 20px;
    font-size: 14px;
  }
}

.page-strength-about__img {
  max-width: 354px;
  margin-right: 0;
  margin-left: auto;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {

  .page-strength-about__img {
    max-width: 260px;
  }
}

/* ----------------------------------------
page strength-service
*/
.page-strength-head {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  border-radius: 0;
}

.page-strength-service {
  background-image: url(../img/page-strength-service-top-bg.webp);
  background-repeat: repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
  margin-bottom: -50px;
}

.page-strength-service__inner {
  padding-top: 180px;
  padding-bottom: 290px;
}

@media screen and (max-width: 768px) {
  .page-strength-service__inner {
    padding-top: 86px;
    padding-bottom: 120px;
  }
}

.page-strength-service__head-title {
  position: relative;
  padding-bottom: 30px;
  margin-bottom: 30px;
  font-size: 40px;
  font-weight: 800;
  text-align: center;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .page-strength-service__head-title {
    font-size: 32px;
  }
}

.page-strength-service__head-title::before {
  content: attr(data-en);
  display: block;
  margin-bottom: 10px;
  color: var(--color-white);
  font-size: 80px;
  font-weight: 700;
  font-family: var(--base-font-en);
  position: absolute;
  top: calc(50% - 40px);
  transform: translate(-50%, -50%);
  left: 50%;
  white-space: nowrap;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .page-strength-service__head-title::before {
    font-size: 40px;
  }
}

.page-strength-service__flex {
  display: flex;
  max-width: 1162px;
  padding-left: 20px;
  padding-right: 20px;
  margin-left: auto;
  margin-right: auto;
  gap: 60px;
  position: relative;
  z-index: 1;
  margin-top: 200px;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex {
    flex-direction: column;
    gap: 0px;
    margin-top: 60px;
  }
}

.page-strength-service__flex:first-child {
  margin-top: 0;
}

.page-strength-service__flex:before {
  content: "";
  width: 50vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex:before {
    content: none;
  }
}

.page-strength-service__flex-body {
  flex: 0 1 34%;
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-body {
    padding-top: 50px;
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-body:before {
    content: "";
    width: 100vw;
    height: 100%;
    margin: 0 calc(50% - 50vw);
    position: absolute;
    padding-top: 50px;
    padding-bottom: 100px;
    left: 0;
    top: 0;
    background-image: url(../img/page-strength-service-flex-bg.webp);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
  }
}

.page-strength-service__flex-body-number {
  position: absolute;
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  top: -32px;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-body-number {
    font-size: 60px;
  }
}

.page-strength-service__flex-body-title {
  font-size: 24px;
  font-weight: 800;
  line-height: 2;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-body-title {
    font-size: 20px;
  }
}

.page-strength-service__flex-body-text {
  font-weight: 500;
  font-size: 14px;
  padding-top: 40px;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-body-text {
    padding-top: 24px;
    line-height: 2;
  }
}

.page-strength-service__flex-img {
  flex: 1;
  transform: translateY(100px);
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex-img {
    transform: initial;
    margin-top: -70px;
    width: 95%;
    height: 100%;
    margin-left: auto;
    margin-right: -20px;
    right: 0;
  }
}

.page-strength-service__flex-img img {
  aspect-ratio: 680/500;
  object-fit: contain;
}

.page-strength-service__flex:first-child .page-strength-service__flex-img img {
  aspect-ratio: 680/500;
  object-fit: cover;
  object-position: center;
}

.page-strength-service__flex.--revers {
  flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex.--revers {
    flex-direction: column;
  }
}

.page-strength-service__flex.--revers:before {
  content: "";
  width: 50vw;
  height: 100%;
  margin: 0 calc(50% - 50vw);
  position: absolute;
  left: auto;
  right: 0;
  top: 0;
  background: #fff;
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex.--revers:before {
    content: none;
  }
}

@media screen and (max-width: 768px) {
  .page-strength-service__flex.--revers .page-strength-service__flex-img {
    transform: initial;
    margin-top: -70px;
    width: 95%;
    height: 100%;
    margin-left: -20px;
    margin-right: auto;
    right: 0;
  }
}




/* ----------------------------------------
page strength-service
*/
.page-strength-introduction-bg {
  background-image: url(../img/page-strength-introduction-bg.webp);
  background-size: cover;
  background-position: top;
  margin-top: -50px;
}

.page-strength-introduction {
  overflow: hidden;


}

.page-strength-introduction__inner {
  padding-top: 180px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__inner {
    padding-top: 132px;
    padding-bottom: 80px;
  }
}

.page-strength-introduction__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__title {
    font-size: 24px;
  }
}

.page-strength-introduction__grid {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__grid {
    margin-top: 30px;
  }
}

@media screen and (min-width: 841px) {
  .page-strength-introduction__grid .swiper-wrapper {
    display: grid;
    gap: 20px;
    grid-template-columns: 1fr 1fr 1fr;

  }
}

.page-strength-introduction__item {
  border-radius: 8px;
  border: 1px solid var(--base-color);
  overflow: hidden;
  background: var(--color-white);
}

.page-strength-introduction__item-content {
  padding: 16px 20px 30px;
}

@media screen and (max-width: 1000px) {
  .page-strength-introduction__item-content {
    padding: 16px 12px 30px;
  }
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__item-content {
    padding: 16px 20px 30px;
  }
}

.page-strength-introduction__item-title {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .page-strength-introduction__item-title {
    font-size: 13px;
  }
}

@media screen and (max-width: 840px) {
  .page-strength-introduction__item-title {
    font-size: 18px;
  }
}

.page-strength-introduction__item-detail {
  border-top: 1px solid var(--base-color);
  padding-top: 20px;
  margin-top: 20px;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__item-detail {
    padding-top: 8px;
    margin-top: 8px;
  }
}

.page-strength-introduction__item-detail-title {
  position: relative;
  padding-left: 20px;
  font-size: 16px;
  font-weight: 700;
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__item-detail-title {
    font-size: 14px;
  }
}

.page-strength-introduction__item-detail-title.--first {
  margin-top: 0;
}

.page-strength-introduction__item-detail-title:before {
  content: "";
  width: 16px;
  height: 16px;
  background: var(--base-color);
  border-radius: 999px;
  top: 4px;
  left: 0;
  position: absolute;
}

.page-strength-introduction__item-detail-text {
  font-size: 13px;
  font-weight: 500;
  padding-left: 1em;
  text-indent: -1em;
}

@media screen and (max-width: 768px) {
  .page-strength-introduction__item-detail-text {
    font-size: 12px;
  }
}

@media screen and (max-width: 768px) {

  .page-strength-introduction__grid.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .page-strength-introduction__grid.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px 0px;
  }

  .page-strength-introduction__grid .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .page-strength-introduction__grid .swiper-pagination-bullet {
    background-color: var(--color-white);
    border: 1px solid var(--base-color);
    border-radius: 999px;
    height: 10px;
    width: 10px;

    display: block;
  }

  .page-strength-introduction__grid .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--base-color);
  }



}


/* ----------------------------------------
page strength-loop
*/
.page-strength-loop__inner {
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .page-strength-loop__inner {
    padding-bottom: 64px;
  }
}

.page-strength-loop__text {
  font-size: 30px;
  font-weight: 800;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

@media screen and (max-width: 768px) {
  .page-strength-loop__text {
    display: none;
  }
}

.page-strength-loop__content {
  margin-top: 60px;
}

/* ----------------------------------------
page strength-voice
*/
.page-strength-voice {
  background-image: url(../img/page-common-cta-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  overflow: hidden;
}

@media screen and (max-width: 768px) {

  .page-strength-voice {
    background-image: url(../img/page-strength-voice-bg-sp.webp);
  }
}

.page-strength-voice__inner {
  padding-top: 140px;
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .page-strength-voice__inner {
    padding-top: 60px;
    padding-bottom: 120px;
  }
}

.page-strength-voice__title {
  font-size: 40px;
  font-weight: 800;
  text-align: center;
}

@media screen and (max-width: 768px) {

  .page-strength-voice__title {
    font-size: 24px;
    color: #fff;
  }
}

.page-strength-voice__grid {

  margin-top: 80px;
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .page-strength-voice__grid {
    margin-top: 50px;
  }
}

@media screen and (min-width: 769px) {
  .page-strength-voice__grid .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
  }
}



.page-strength-voice__item {
  padding: 20px;
  background: var(--color-white);
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
}

.page-strength-voice__item-img {
  margin-top: -40px;
}

.page-strength-voice__item-title {
  font-size: 20px;
  font-weight: 800;
  margin-top: 36px;
}

.page-strength-voice__item-name {
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  padding-top: 24px;
}

.page-strength-voice__item-text {
  font-size: 14px;
  font-weight: 500;
  padding-top: 24px;
}

@media screen and (max-width: 768px) {

  .page-strength-voice__grid.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
  .page-strength-voice__grid.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 3px 0px;
  }

  .page-strength-voice__grid .swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
  }

  .page-strength-voice__grid .swiper-pagination-bullet {
    background-color: transparent;
    border: 1px solid var(--color-white);
    border-radius: 999px;
    height: 10px;
    width: 10px;

    display: block;
    opacity: 0.5;
  }

  .page-strength-voice__grid .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: var(--color-white);
    opacity: 1;
  }



}

/* ----------------------------------------
page creative
 ---------------------------------------- */
.--section-base-top {
  margin-top: -50px;
}

@media screen and (max-width: 768px) {
  .--section-base-top {
    margin-top: -25px;
  }
}

.page-creative-range {
  background: #EEEEEE;

  background-image: url(../img/page-creative-range-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

@media screen and (max-width: 768px) {
  .page-creative-range {
    margin-top: -25px;
  }
}

.page-creative-range__inner {
  padding-top: 190px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .page-creative-range__inner {
    padding-top: 90px;
    padding-bottom: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-creative-range__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
  margin-top: 60px;

}

@media screen and (max-width: 768px) {
  .page-creative-range__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 30px;

  }
}


.page-creative-range__grid-item {
  background: var(--color-white);
  border-radius: 8px;
  padding: 15px 10px 32px;
}

@media screen and (max-width: 768px) {
  .page-creative-range__grid-item {

    padding: 16px 10px;
  }
}

.page-creative-range__grid-item-img img {
  aspect-ratio: 220/148;
  object-fit: contain;
}

.page-creative-range__grid-item-title {
  font-size: 18px;
  font-weight: 800;
  padding-top: 8px;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  .page-creative-range__grid-item-title {
    font-size: 16px;
  }
}

.page-creative-range__grid-item-title span {
  display: inline-block;
}

.page-creative-range__grid-item-subtitle {
  font-weight: 600;
  padding-top: 8px;
  text-align: center;
  padding-left: 5px;
  padding-right: 5px;
}

@media screen and (max-width: 768px) {
  .page-creative-range__grid-item-subtitle {
    font-size: 12px;
  }
}

.page-creative-range__grid-item-subtitle span {
  display: inline-block;
}

.page-creative-range__grid-item-text {
  padding-top: 16px;
  padding-left: 10px;
  padding-right: 10px;
}

@media screen and (max-width: 768px) {
  .page-creative-range__grid-item-text {
    font-size: 12px;
    padding-left: 0;
    padding-right: 0;
  }
}

/* ----------------------------------------
page creative-reason
*/

.page-creative-reason {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.page-creative-reason__inner {
  padding-top: 140px;
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__inner {
    padding-top: 60px;
    padding-bottom: 108px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-creative-reason__title {
  color: var(--base-color);
}

.page-creative-reason__primary {
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__primary {
    margin-top: 30px;

  }
}

.page-creative-reason__flex {
  display: flex;
  gap: 60px;
  margin-top: 30px;
  align-items: start;
  background: var(--color-white);
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
  padding: 40px 40px 70px;
  border-radius: 16px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex {
    margin-top: 20px;
    padding: 20px 20px 30px;
  }
}

.page-creative-reason__flex:first-child {
  margin-top: 0;
}

.page-creative-reason__flex-body {
  flex: 0 1 42%;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-body {
    flex: 1;
  }
}

.page-creative-reason__flex-img {
  flex: 1;
}

.page-creative-reason__flex-img img {
  aspect-ratio: 450/270;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-img.--pc {
    display: none;
  }
}

.page-creative-reason__flex-img.--sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-img.--sp {
    display: block;
    margin-top: 20px;
  }
}

.page-creative-reason__flex:nth-child(3) .page-creative-reason__flex-img {
  max-width: 450px;
  margin-right: 0;
  margin-left: auto;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex:nth-child(3) .page-creative-reason__flex-img {
    max-width: 100%;
  }
}

.page-creative-reason__flex-body-head {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-body-head {
    flex-direction: row;
    gap: 8px;
  }
}

.page-creative-reason__flex-body-head-number {
  font-size: 80px;
  letter-spacing: 0.02em;
  line-height: 1;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-body-head-number {
    font-size: 60px;
  }
}

.page-creative-reason__flex-body-head-title {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-body-head-title {
    font-size: 18px;
  }
}

.page-creative-reason__flex:nth-child(3) .page-creative-reason__flex-body-head-title {
  padding-top: 21px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex:nth-child(3) .page-creative-reason__flex-body-head-title {
    padding-top: 0px;
  }
}

.page-creative-reason__flex-body-head-title span {
  display: inline-block;
}

.page-creative-reason__flex-body-text {
  padding-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-creative-reason__flex-body-text {
    padding-top: 20px;
  }
}

/* ----------------------------------------
page creative-common-cta
*/
.page-common-cta__bg {
  position: relative;
  z-index: 1;
}

.page-creative-common-cta {
  margin-top: -60px;

}

@media screen and (max-width: 768px) {
  .page-creative-common-cta {
    margin-top: -30px;
  }
}


/* ----------------------------------------
page page-creative-flow 
*/
.page-creative-flow {
  background-image: url(../img/page-creative-flow-bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.page-creative-flow__inner {
  padding-top: 180px;
  padding-bottom: 200px;
}

@media screen and (max-width: 768px) {
  .page-creative-flow__inner {
    padding-top: 72px;
    padding-bottom: 60px;
  }
}

.page-creative-flow__grid {
  display: flex;
  gap: 16px;
  margin-top: 80px;
  flex-wrap: wrap;
}

@media screen and (max-width: 1000px) {
  .page-creative-flow__grid {

    justify-content: center;
    gap: 50px 16px;
  }
}

@media screen and (max-width: 768px) {
  .page-creative-flow__grid {
    gap: 10px;
    margin-top: 30px;
    flex-direction: column;
  }
}

.page-creative-flow__item {
  background: var(--color-white);
  border-radius: 8px;
  padding: 32px 16px;
  position: relative;
  flex: 1;
}

@media screen and (max-width: 1000px) {
  .page-creative-flow__item {
    flex: 0 1 30%;
  }
}

@media screen and (max-width: 768px) {
  .page-creative-flow__item {
    flex: 1;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    padding: 20px;
  }
}

.page-creative-flow__item:after {
  position: absolute;
  content: "";
  background-image: url(../img/page-creative-flow-item-arrow.svg);
  width: 36px;
  height: 36px;
  right: -24px;
  transform: translateY(-50%);
  top: 50%;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .page-creative-flow__item:after {
    transform: translateX(-50%) rotate(90deg);
    top: inherit;
    right: inherit;
    left: 50%;
    bottom: -20px;
  }
}

.page-creative-flow__item:last-child:after {
  content: none;
}

@media screen and (max-width: 768px) {
  .page-creative-flow__item-img {
    position: absolute;
    right: 0;
    max-width: 90px;
  }
}

.page-creative-flow__item-title {
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding-top: 8px;

}

@media screen and (max-width: 768px) {
  .page-creative-flow__item-title {
    display: flex;
    gap: 4px;
    align-items: center;
  }
}

.page-creative-flow__item-title-number {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 24px;
  font-weight: 700;
  background: var(--base-color);
  border-radius: 999px;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-creative-flow__item-title-number {
    position: relative;
    left: inherit;
    transform: inherit;
    top: inherit;
    font-size: 18px;
    width: 36px;
    height: 36px;
  }
}

.page-creative-flow__item-text {
  padding-top: 16px;
}

/* ----------------------------------------
page creative-faq 
*/

.page-creative-faq__inner {
  padding-top: 140px;
  padding-bottom: 200px;
}

@media screen and (max-width:768px) {
  .page-creative-faq__inner {
    padding-top: 60px;
    padding-bottom: 120px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

.page-creative-faq__content {
  margin-top: 60px;
}

@media screen and (max-width:768px) {
  .page-creative-faq__content {
    margin-top: 30px;
  }
}

.page-creative-faq__item {
  margin-top: 32px;
}

.page-creative-faq__item:first-child {
  margin-top: 0px;
}

h4.faq__question {
  display: flex;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  transition: opacity 0.3s;
  background: #eeeeee;
  border-radius: 8px;
}

@media screen and (max-width:768px) {
  h4.faq__question {
    font-size: 16px;
  }
}

h4.faq__question:hover {
  opacity: 0.7;
}

.faq__question,
.faq__answer {
  flex: 0 1 80px;
  padding: 6px 20px;
}

.faq__content {
  flex: 1;
  position: relative;
}

.faq__question-icon {
  color: var(--base-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-right: 16px;
}

@media screen and (max-width:767px) {
  .faq__question-icon {
    margin-right: 10px;
  }
}

.faq__question-content {
  padding-right: 36px;
}

.faq__answer {
  display: flex;
  align-items: start;
  font-size: 16px;
}

@media screen and (max-width: 768px) {
  .faq__answer {
    font-size: 14px;
  }
}

.faq__answer-icon {
  color: var(--base-color);
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: 32px;
  font-weight: 700;
  margin-right: 16px;
  line-height: 1;
}


.faq__answer {
  display: none;
  margin-top: 16px;

}

.faq__content-answer {
  font-size: 16px;
  font-weight: 500;

}

.page-creative-faq__item.active .faq__answer {
  display: flex;

}

.faq__question {
  cursor: pointer;
}

.faq__content-arrow {
  position: absolute;
  right: 4px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  top: 50%;
  background: var(--base-color);
  border-radius: 999px;

}

@media screen and (max-width: 768px) {

  .faq__content-arrow {
    right: -4px;
  }
}

.page-creative-faq__item.active .faq__content-arrow {
  top: 50%;
}

.faq__content-arrow::before,
.faq__content-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  height: 10px;
  background: var(--color-white);
  transition: 0.3s;
}

.faq__content-arrow::before {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__content-arrow::after {
  transform: translate(-50%, -50%) rotate(-90deg);
}

.page-creative-faq__item.active .faq__content-arrow::before {
  transform: translate(-50%, -50%) rotate(-90deg);
}


/* ----------------------------------------
page sns-medium
*/
.page-sns-medium {
  background-image: url(../img/page-sns-medium-bg.webp);
  background-position: center;
  background-repeat: no-repeat;
}

.page-sns-medium__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {

  .page-sns-medium__inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.page-sns-medium__title {
  color: var(--base-color);
}

.page-sns-medium__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {
  .page-sns-medium__grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 30px;
  }
}

.page-sns-medium__item {
  padding: 32px 16px 16px;
  background: var(--color-white);
  border-radius: 8px;
  box-shadow: 30px 30px 30px rgb(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .page-sns-medium__item {
    flex: 0 1 30%;
    padding: 20px 10px 10px;

  }
}

.page-sns-medium__item-text {
  background: var(--base-color);
  color: var(--color-white);
  font-size: 18px;
  font-weight: 800;
  text-align: center;
  padding: 4px;
  border-radius: 4px;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .page-sns-medium__item-text {
    font-size: 9px;
  }
}

.page-sns-support {
  background-image: url(../img/bg-top-white.webp);
  background-repeat: no-repeat;
  background-size: cover;
}

.page-sns-support__inner {
  padding-top: 140px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .page-sns-support__inner {
    padding-top: 64px;
    padding-bottom: 80px;
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* 
.page-sns-support__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
}

@media screen and (max-width: 768px) {

  .page-sns-support__grid {
    margin-top: 30px;
  }
}

.page-sns-support__item {
  display: flex;
  gap: 8px;
  align-items: start;
  padding: 32px 45px;
  background: var(--color-white);
  border-radius: 8px;
}

@media screen and (max-width: 768px) {
  .page-sns-support__item {
    flex-direction: column;
    padding: 16px;
  }
}

.page-sns-support__item-img {
  flex: 0 1 45%;
}

.page-sns-support__item-body {
  flex: 1;
}

.page-sns-support__item-body-title {
  font-size: 18px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .page-sns-support__item-body-title {
    text-align: center;
    font-size: 16px;

  }
}

.page-sns-support__item-body-list {
  margin-top: 8px;
}

@media screen and (max-width: 768px) {
  .page-sns-support__item-body-list {
    margin-top: 16px;
  }
}

.page-sns-support__item-body-list-text {
  display: flex;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
  .page-sns-support__item-body-list-text {
    font-size: 12px;
  }
}

.page-sns-support__item-body-list-text:before {
  content: "・";
} */

/* ----------------------------------------
page page-download
*/

.page-download-head-main {
  min-height: 100%;
}


.page-download-main {}

.page-download-main__inner {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .page-download-main__inner {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

.page-download-main__content-title {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

.page-download-main__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 24px;
  margin-top: 30px;
}

@media screen and (max-width: 1000px) {
  .page-download-main__grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

@media screen and (max-width: 768px) {
  .page-download-main__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 10px;
    margin-top: 30px;
  }
}

.page-download-main__grid-item {
  display: flex;
  flex-direction: column;
}

.page-download-main__grid-item-img img {
  border-radius: 8px;
  aspect-ratio: 500/280;
  object-fit: cover;
}

.page-download-main__grid-item-text {
  font-size: 14px;
  font-weight: 700;
  margin-top: 14px;
  text-align: justify;
}

@media screen and (max-width: 768px) {
  .page-download-main__grid-item-text {
    font-size: 14px;
    margin-top: 16px;
  }
}

.page-download-main__grid-item-button-wrap {
  flex-grow: 1;
  display: flex;
  align-items: end;
}

.page-download-main__grid-item-button {
  font-size: 12px;
  line-height: 1;
  max-width: 220px;
  margin-top: 21px;
  padding: 15px 28px 15px 15px;
  margin-right: 0;
}

@media screen and (max-width: 768px) {
  .page-download-main__grid-item-button {
    font-size: 8px;
    padding: 10px 20px 10px 10px;
  }
}

.page-download-main__grid-item-button span {
  width: 15px;
  height: 15px;
  right: 8px;
}

.page-download-main__grid-item-button span:after {
  content: "";
  background-image: url(../img/button-arrow-black.svg);
  width: 8px;
  height: 4px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
}

.page-download-main__content {
  margin-top: 120px;
}

.page-download-main__content:first-child {
  margin-top: 0;
}

.contact-common-flex {
  display: flex;
  gap: 70px;
}

@media screen and (max-width: 1000px) {
  .contact-common-flex {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .contact-common-flex {
    flex-direction: column;
    gap: 64px;
  }
}

.contact-common-flex__left {
  flex: 0 1 46%;
}

/* @media screen and (max-width: 768px) {
  .contact-common-flex__left {
    flex: 0 1 45%;
  }
} */

.contact-common-flex__right {
  flex: 1;
}


/* ----------------------------------------
page company 
*/
.page-company {
  background: var(--base-color);
}

.page-company__inner {
  padding-top: 240px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .page-company__inner {
    padding-top: 100px;
    padding-bottom: 64px;
  }
}

/* .page-company__flex {
  display: flex;
  gap: 70px;
}

@media screen and (max-width: 1000px) {
  .page-company__flex {
    gap: 40px;
  }
}

@media screen and (max-width: 768px) {
  .page-company__flex {
    flex-direction: column;
    gap: 80px;
  }
} */

/* .page-company__left {
  flex: 0 1 45%;
} */

.page-company__head-title-en {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-company__head-title-en {
    font-size: 50px;
  }
}

.page-company__head-title {
  font-size: 24px;
  font-weight: 800;
  padding-top: 12px;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-company__head-title {
    font-size: 20px;
  }
}

.page-company__left-text {
  font-size: 30px;
  color: var(--color-white);
  font-weight: 800;
  display: flex;
  flex-direction: column;
  padding-top: 120px;
}

@media screen and (max-width: 768px) {
  .page-company__left-text {
    font-size: 24px;
    padding-top: 40px;
  }
}

.page-company__left-text strong {
  font-size: 50px;
}

@media screen and (max-width: 768px) {
  .page-company__left-text strong {
    font-size: 42px;
  }
}

@media screen and (max-width: 768px) {
  .page-company__left-text strong span {
    display: flex;
    flex-direction: column;
  }
}

.page-company__left-button-wrap {
  margin-top: 120px;
}

@media screen and (max-width: 768px) {
  .page-company__left-button-wrap {
    margin-top: 40px;
  }
}

@media screen and (max-width: 768px) {
  .page-company__left-button-wrap .page-company__left-button {
    margin-top: 20px;
  }
}

.page-company__left-button {
  max-width: 326px;
}

.page-company__left-button:nth-child(2) {
  margin-top: 20px;
}

/* .page-company__right {
  flex: 1;
} */

.page-company__item {
  color: var(--color-white);
  margin-top: 30px;
}

.page-company__item:first-child {
  margin-top: 0;
}

.page-company__item dt {
  font-size: 14px;
  font-weight: 700;
}

.page-company__item dd {
  font-size: 16px;
  font-weight: 700;
  padding-top: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-company__item dd {
    font-size: 14px;
  }
}

.page-company__item:last-child dd {
  border-bottom: none;
  padding-bottom: 0;
}

.page-company__item-link-wrap {
  display: flex;
  align-items: center;
  justify-content: end;
}

.page-company__item-link {
  text-align: right;
  position: relative;
  margin-right: 22px;
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-top: 20px;
}

.page-company__item-link span {
  width: 16px;
  height: 16px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -22px;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
}

.page-company__item-link span:after {
  content: "";
  background-image: url(../img/button-arrow-black.svg);
  width: 10px;
  height: 4px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  display: flex;
}

/* ----------------------------------------
page consultation
*/
.page-consultation {
  background: var(--base-color);
}

.page-consultation__inner {
  padding-top: 210px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .page-consultation__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.page-consultation__head-title {
  font-size: 40px;
  color: var(--color-white);
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .page-consultation__head-title {
    font-size: 32px;
  }
}

.page-consultation__content {
  padding-top: 55px;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-consultation__content {
    padding-top: 32px;
  }
}

.page-consultation__content-item {
  margin-top: 60px;
}

.page-consultation__content-item-title {
  color: var(--color-white);
  font-size: 18px;
  font-weight: 700;
  background: #5E5E5E;
  padding-left: 20px;
  padding-right: 20px;
  text-align: center;
  border-radius: 4px;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-title span {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}


.page-consultation__content-item-list {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-list {
    margin-top: 18px;
  }
}

.page-consultation__content-item-list li {
  position: relative;
  padding-left: 22px;
  margin-top: 4px;
  font-size: 18px;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-list li {
    margin-top: 8px;
  }
}

.page-consultation__content-item-list li:before {
  content: "";
  background-image: url(../img/page-consultation-content-item-list-icon.svg);
  background-size: 18px 18px;
  background-repeat: no-repeat;
  background-position: center;
  width: 18px;
  height: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.page-consultation__content-item-list-text {
  margin-top: 30px;
  letter-spacing: 0;
}

.page-consultation__content-item-img {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-img {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding-inline: 20px;
  }
}

.page-consultation__content-item-bottom-flex {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 30px;
  gap: 10px;
}

.page-consultation__content-item-bottom-contact {
  margin-top: 60px;
}

.page-consultation__content-item-bottom-contact-text {
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-bottom-contact-text {
    font-size: 16px;
    font-weight: 500;
  }
}

.page-consultation__content-item-bottom-contact-tel {
  font-size: 50px;
  font-weight: 700;
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 3px;

}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-bottom-contact-tel {
    font-size: 43px;
    margin-top: 18px;
  }
}

.page-consultation__content-item-bottom-contact-tel:before {
  content: "";
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2248%22%20height%3D%2249%22%20viewBox%3D%220%200%2048%2049%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M46.9986%2022.9401C46.9986%2011.0991%2037.3996%201.50011%2025.5586%201.50011%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M31.4059%2022.9401C31.4059%2019.7107%2028.7879%2017.0928%2025.5586%2017.0928%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M39.2022%2022.9401C39.2022%2015.4049%2033.0938%209.29645%2025.5586%209.29645%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3Cpath%20d%3D%22M29.7736%2029.8847L26.1921%2033.4662C26.1921%2033.4662%2023.5687%2032.7622%2019.6615%2028.8551C15.7543%2024.9478%2015.0335%2022.2404%2015.0335%2022.2404L18.5814%2018.6924L7.91941%208.03044L1.00015%2014.9497C1.00015%2014.9497%200.829601%2025.0606%2012.1587%2036.3897C23.4877%2047.7187%2033.355%2047.4995%2033.355%2047.4995L40.3717%2040.4827L29.7736%2029.8847Z%22%20stroke%3D%22white%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fsvg%3E');
  background-size: 46px 46px;
  width: 46px;
  height: 46px;
  background-repeat: no-repeat;
  background-position: center;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-bottom-contact-tel:before {
    width: 40px;
    height: 40px;
  }
}

.page-consultation__content-item-bottom-contact-data {
  font-size: 20px;
  text-align: right;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .page-consultation__content-item-bottom-contact-data {
    font-size: 16px;
  }
}

/* ----------------------------------------
page company 
*/

.page-contact {
  background: var(--base-color);
}

.page-contact__inner {
  padding-top: 210px;
  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .page-contact__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}


@media screen and (max-width: 768px) {
  .page-contact__flex {
    gap: 32px;
  }
}

.page-contact__head-title-en {
  font-size: 80px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-contact__head-title-en {
    font-size: 50px;
  }
}

.page-contact__head-title {
  font-size: 24px;
  font-weight: 800;
  padding-top: 12px;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-contact__head-title {
    font-size: 20px;
  }
}

.page-contact__head-text {
  font-weight: 400;
  margin-top: 30px;
  color: var(--color-white);
}

@media screen and (max-width: 768px) {
  .page-contact__head-text {
    font-size: 14px;
  }
}

/* ----------------------------------------
page recruit
*/
@media screen and (max-width: 768px) {
  .page-recruit-head-main {
    min-height: 240px;
  }
}

.page-recruit__inner {
  padding-top: 65px;
  padding-bottom: 140px;
}

@media screen and (max-width: 768px) {
  .page-recruit__inner {
    padding-top: 65px;
    padding-bottom: 64px;
  }
}

.page-recruit__title {
  font-size: 36px;
  font-weight: 800;
  border-left: 8px solid var(--base-color);
  padding-left: 16px;

}

@media screen and (max-width: 768px) {
  .page-recruit__title {
    font-size: 28px;
    padding-left: 10px;
    letter-spacing: 0;
  }
}



.page-recruit-occupation__primary {
  margin-top: 30px;
}

.page-recruit-occupation__item {
  border: 1px solid var(--base-color);
  margin-top: 40px;
}

.page-recruit-occupation__item:first-child {
  margin-top: 0;
}

.page-recruit-occupation__item-title {
  color: var(--color-white);
  background: var(--base-color);
  font-size: 20px;
  font-weight: 700;
  padding: 24px;
}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-title {
    font-size: 18px;
    padding: 8px 16px;
  }
}

.page-recruit-occupation__item-body {
  padding-left: 42px;
  padding-right: 42px;
}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-body {
    padding-left: 18px;
    padding-right: 18px;
  }
}

.page-recruit-occupation__item-body-flex {
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--base-color);
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 20px;

}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-body-flex {
    flex-direction: column;
    align-items: start;
  }
}

.page-recruit-occupation__item-body-flex:last-child {
  border: none;
}

.page-recruit-occupation__item-body-title {
  font-size: 16px;
  font-weight: 800;
  flex: 0 1 20%;
  padding-right: 15px;
}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-body-title {
    padding-right: 0;
    padding-bottom: 14px;
    text-align: left;
  }
}

.page-recruit-occupation__item-body-text {
  flex: 1;
  font-size: 14px;
  padding-left: 25px;
  position: relative;
  padding-top: 5px;
  padding-bottom: 5px;
}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-body-text {
    font-size: 12px;
    padding-left: 0px;
  }
}

.page-recruit-occupation__item-body-text:before {
  content: "";
  background: var(--base-color);
  left: 0;
  position: absolute;
  top: 0;
  height: 100%;
  width: 1px;
}

@media screen and (max-width: 768px) {
  .page-recruit-occupation__item-body-text:before {
    height: 1px;
    width: 24px;
    top: -10px;
  }
}

.page-recruit-requirements {
  margin-top: 120px;
}

.page-recruit-requirements__primary {
  border: 1px solid var(--base-color);
  padding: 62px 48px;
  margin-top: 32px;
}

@media screen and (max-width: 768px) {
  .page-recruit-requirements__primary {
    padding: 30px 24px;
  }
}

.page-recruit-requirements__item {
  margin-top: 30px;
}

@media screen and (max-width: 768px) {
  .page-recruit-requirements__item {
    margin-top: 22px;
  }
}

.page-recruit-requirements__item:first-child {
  margin-top: 0;
}

.page-recruit-requirements__item-title {
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-recruit-requirements__item-title:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 99px;
  background: #5E5E5E;
}

.page-recruit-requirements__item-text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
}

@media screen and (max-width: 768px) {
  .page-recruit-requirements__item-text {
    margin-top: 10px;
  }
}


.page-recruit-faq {
  margin-top: 140px;
}

@media screen and (max-width: 768px) {
  .page-recruit-faq {
    margin-top: 64px;
  }
}

.page-recruit-faq__title {
  text-align: center;
  font-size: 40px;
  font-weight: 800;
}

@media screen and (max-width: 768px) {
  .page-recruit-faq__title {
    font-size: 24px;
  }
}

/* ----------------------------------------
page archive
*/
.page-blog-head-main {
  background-image: url(../img/bg-top-white.webp);
  border-radius: 0;
}

.page-blog-head-main .page-common-head-main__title-en {
  color: #333333;
}

.page-blog-head-main .page-common-head-main__title {
  color: #333333;
}

.archive-keyword__flex {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 60px;
}

.archive-keyword__flex-tag {
  order: 2;
}

.archive-keyword__search-wrap {
  order: 1;
}

.archive-keyword__search-wrap {
  display: flex;
  gap: 20px;
}

@media screen and (max-width: 768px) {
  .archive-keyword__search-wrap {
    gap: 12px;
  }
}

.archive-keyword__search-input-wrap {
  background: var(--color-white);
  flex: 1;
  border-radius: 4px;
}

.archive-keyword__search-input {
  font-size: 14px;
  padding: 14px;
  width: 100%;
}

.archive-keyword__search-button {
  flex: 0 1 160px;
  display: flex;

  position: relative;
}

@media screen and (max-width: 768px) {
  .archive-keyword__search-button {
    flex: 0 1 95px;
  }
}

.archive-keyword__search-button-submit {
  background: var(--color-white);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  gap: 6px;
}

@media screen and (max-width: 768px) {
  .archive-keyword__search-button-submit {
    font-size: 16px;
  }
}

.archive-keyword__search-button-submit::before {
  content: "";
  background-size: 18px 18px;
  width: 18px;
  height: 18px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2221%22%20height%3D%2220%22%20viewBox%3D%220%200%2021%2020%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20d%3D%22M9.03235%2016.0629C4.87248%2016.0629%201.50024%2012.6909%201.50024%208.53141C1.50024%204.37188%204.87248%200.999908%209.03235%200.999908C13.1922%200.999908%2016.5645%204.37188%2016.5645%208.53141C16.5645%2012.6909%2013.1922%2016.0629%209.03235%2016.0629Z%22%20stroke%3D%22%23333333%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%2F%3E%3Cpath%20d%3D%22M19.5%2019.0002L14.3564%2013.8569%22%20stroke%3D%22%23333333%22%20stroke-width%3D%222%22%20stroke-miterlimit%3D%2210%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
}


.archive-keyword__flex-tag {
  gap: 10px;
  display: flex;
  flex-wrap: wrap;
}

.archive-keyword__flex-tag-item {
  color: var(--base-color);
}

.archive-keyword__flex-tag-item {
  display: inline-block;
  cursor: pointer;

  transition: background-color 0.3s;
}


.archive-keyword__flex-tag-item span {
  display: inline-block;
  vertical-align: middle;
  border: 1px solid var(--base-color);

  transition: background-color 0.3s;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 30px;
}

@media screen and (max-width: 768px) {
  .archive-keyword__flex-tag-item span {
    font-size: 14px;
  }
}

.archive-keyword__flex-tag-item input {
  display: none;
}


.archive-keyword__flex-tag-item input[type="checkbox"]:checked+.archive-keyword__flex-tag-item-text {
  background-color: var(--base-color);
  color: var(--color-white);
}


.archive-consulting {
  background-image: url(../img/bg-top-white.webp);

  background-position: center;
}

.archive-consulting__inner {

  padding-bottom: 120px;
}

@media screen and (max-width: 768px) {
  .archive-consulting__inner {

    padding-bottom: 64px;
  }
}

.archive-consulting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 32px;
}

@media screen and (max-width: 768px) {
  .archive-consulting__grid {
    grid-template-columns: 1fr 1fr;
    gap: 15px;
  }
}

.archive-consulting__grid-item-img img {
  border-radius: 8px;
  aspect-ratio: 320/180;
  object-fit: cover;
}

.archive-consulting__grid-item-title {
  font-size: 18px;
  font-weight: 600;
  margin-top: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width: 768px) {
  .archive-consulting__grid-item-title {
    font-size: 16px;
  }
}

.archive-consulting__grid-item-category-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  margin-top: 6px;
}

.archive-consulting__grid-item-time {
  font-size: 14px;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .archive-consulting__grid-item-time {
    font-size: 12px;
    font-weight: 400;
    width: 100%;
  }
}

.archive-consulting__grid-item-category {
  font-size: 14px;
  font-weight: 500;
  border: 1px solid var(--base-color);
  border-radius: 999px;
  line-height: 1;
  padding: 8px 15px;
}

@media screen and (max-width: 768px) {
  .archive-consulting__grid-item-category {
    font-size: 12px;
  }
}

/* ----------------------------------------
page creative-faq 
*/

.archive-news__inner {
  max-width: 1400px;
  max-width: 87.5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
}

@media screen and (max-width: 1000px) {
  .archive-news__inner {
    padding-bottom: 2.5rem;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.archive-news__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  gap: 2.5rem;
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width:768px) {
  .archive-news__list {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
  }
}

.archive-news__item-img img {
  aspect-ratio: 374/208;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}

.archive-news__item-head-category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.archive-news__item-head-category-label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}

@media screen and (max-width:768px) {
  .archive-news__item-head-category-label {
    display: none;
  }
}

.archive-news__item-head-category-label time {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}

.archive-news__item-link-category span {

  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  background: #F5F5F5;
  border-radius: 6.1875rem;
}

@media screen and (max-width:768px) {
  .archive-news__item-link-category span {
    font-size: 0.625rem;
    padding: 0.125rem 0.625rem;
  }
}

.archive-news__item-expert {

  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width:768px) {
  .archive-news__item-expert {
    font-size: 0.875rem;
  }
}

.nav-links {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width:768px) {
  .nav-links {
    gap: 0.5rem;
  }
}


.pagenation-flex {
  margin-top: 100px;
}

@media screen and (max-width:768px) {
  .pagenation-flex {
    margin-top: 40px;
  }
}

.pagenation-flex ul {
  display: flex;
  justify-content: center;
  gap: 10px;
  align-items: center;
}

.pagenation-flex a,
.pagenation-flex span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  /* background: #F5F5F5; */
}

@media screen and (max-width:768px) {

  .pagenation-flex a,
  .pagenation-flex span {
    width: 2rem;
    height: 2rem;
  }
}

.pagenation-flex span.current {
  background: var(--base-color);
  color: var(--color-white);
}

.next.page-numbers {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url(../img/pagenation-arrow.svg);
  background-repeat: no-repeat;

}

.prev.page-numbers {
  width: 24px;
  height: 24px;
  background-size: 24px 24px;
  background-image: url(../img/pagenation-arrow.svg);
  transform: rotate(180deg);
  background-repeat: no-repeat;
}


.single-download {
  background: var(--base-color);
  color: var(--color-white);
}

.single-download__flex {
  display: flex;
  gap: 90px;
  gap: 4rem;
}

@media screen and (max-width:768px) {
  .single-download__flex {
    flex-direction: column;
    gap: 2rem;
  }
}

.single-download__inner {
  padding-top: 210px;
  padding-bottom: 120px;
}



@media screen and (max-width:768px) {
  .single-download__inner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.single-download__content {
  flex: 0 1 48%;
  gap: 64px;
  overflow: hidden;
}

.single-download__content-head-img {
  margin-top: 20px;
}

.single-download__content-head-img img {
  border-radius: 8px;
}


.single-download__content-head-title {
  font-size: 40px;
  font-weight: 800;
}

@media screen and (max-width:768px) {
  .single-download__content-head-title {
    font-size: 32px;
  }
}


.single-download__content-detail {
  font-size: 16px;
  margin-top: 55px;
}

@media screen and (max-width:768px) {
  .single-download__content-detail {
    margin-top: 32px;
  }
}

.single-download__content-bottom {
  margin-top: 60px;
}

@media screen and (max-width:768px) {
  .single-download__content-bottom {
    margin-top: 60px;
  }
}

.single-download__content-bottom-title {
  font-size: 18px;
  background: #5E5E5E;
  font-weight: 700;
  padding: 10px;
  text-align: center;
  border-radius: 4px;
}

.single-download__content-bottom-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 30px;
}

.single-download__content-bottom-flex-item img {
  border-radius: 8px;

}



.single-download__button-wrap {
  margin-top: 60px;
}

.single-download__button {
  max-width: 326px;
}

.single-download__button:nth-child(2) {
  margin-top: 20px;
}


.single-download__sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* お問い合わせ */


@media screen and (max-width:768px) {
  .single-download .contact__form {
    padding: 1.5rem;
  }
}

.wpcf7-spinner {
  display: none;
}

.single-download .contact__text-link a {
  color: inherit;
}

.contact__item-flex {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.contact__item-flex:first-child {
  margin-top: 0;
}

.contact__item-flex .contact__item {
  margin-top: 0;
}

.contact__item {
  display: flex;
  flex-direction: column;
  margin-top: 30px;
}


.contact__item:first-child {
  margin-top: 0px;
}


.contact__item-label {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 2px;
  padding-bottom: 8px;
  font-weight: 700;
  color: var(--color-white);
}

@media screen and (max-width:768px) {
  .contact__item-label {
    font-size: 0.875rem;
  }
}

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



.contact__accept {
  color: var(--color-white);
}

.contact__accept a {
  text-decoration: underline;
  text-underline-offset: 2px;
}


.contact__item-label .required {

  color: #FF6B6B;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .contact__item-label .required {
    font-size: 0.625rem;
  }
}


.contact__item-label .any {
  background-color: #F5F5F5;
  padding: 4px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.25rem;
}

@media screen and (max-width:768px) {
  .contact__item-label .any {
    font-size: 0.625rem;
  }
}


.contact__item-body {
  position: relative;
  flex: 1;
}


.contact__item-text input {
  width: 100%;
  display: block;
  background-color: transparent;
  padding: 10px 0px;
  min-height: 32px;
  color: var(--color-white);
  border-bottom: 1px solid var(--color-white);
  font-size: 12px;
}



.contact__item-text textarea {
  width: 100%;
  display: block;
  background-color: transparent;
  padding: 10px 10px;
  min-height: 32px;
  color: var(--base-color);
  border-bottom: 1px solid var(--color-white);
  font-size: 12px;
  background: var(--color-white);
}



.contact__item-select {
  margin-top: 60px;
}


.contact__item-select .wpcf7-form-control.wpcf7-select {
  position: relative;
}

.contact__item-select .wpcf7-form-control.wpcf7-select::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 6px 0 6px;
  border-color: #fff transparent transparent transparent;
  position: absolute;
  top: 20px;
  right: 20px;
  pointer-events: none;
}

.contact__item-select .wpcf7-form-control.wpcf7-select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  width: 100%;
  border: 1px solid #fff;
  border-radius: 2px;
  position: relative;
  padding: 12px;
  color: var(--color-white);
}

.contact__item-select .wpcf7-form-control.wpcf7-select option {
  color: var(--base-color);
}

.contact__item-select .wpcf7-form-control-wrap {
  position: relative;
}

.contact__item-select .wpcf7-form-control-wrap:after {
  content: "";
  position: absolute;
  display: inline-block;
  border-top: 2px solid var(--color-white);
  border-right: 2px solid var(--color-white);
  height: 10px;
  width: 10px;
  top: 50%;
  right: 15px;
  transform: rotate(135deg) translateX(-50%);
  pointer-events: none;
}

.contact__accept {
  margin-top: 60px;
  font-size: 16px;
  text-align: center;
}

.single-download .contact__accept {
  margin-top: 60px;
  font-size: 16px;
  text-align: center;
}

.contact__item-textarea {
  margin-top: 60px;
}

.single-download .contact__item-textarea {
  margin-top: 60px;
}

.primary__contact-button--gradition {
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-top: 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .primary__contact-button--gradition {
    max-width: 16.25rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 1rem;
  }
}


.primary__contact-button--gradition {
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-top: 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .primary__contact-button--gradition {
    max-width: 16.25rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    justify-content: start;
    font-size: 1rem;
  }
}

.single-download .primary__contact-button--gradition {
  position: relative;
  border-radius: 999px;
  border: 1px solid var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  margin-top: 24px;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .single-download .primary__contact-button--gradition {
    max-width: 16.25rem;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 1rem;
  }
}

.primary__contact-button--gradition:before {
  content: "";
  background-image: url(../img/button-maru.svg);
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 21px;
  border: 1px solid #fff;
  border-radius: 999px;
  pointer-events: none;
}

@media screen and (max-width:768px) {
  .primary__contact-button--gradition:before {
    width: 24px;
    height: 24px;
  }
}

.single-download .primary__contact-button--gradition:before {
  content: "";
  background-image: url(../img/button-maru.svg);
  width: 20px;
  height: 20px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 21px;
  border: 1px solid #fff;
  border-radius: 999px;
}

@media screen and (max-width:768px) {
  .single-download .primary__contact-button--gradition:before {
    width: 24px;
    height: 24px;
  }
}

.primary__contact-button--gradition:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  width: 12px;
  height: 9px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
  pointer-events: none;
}

@media screen and (max-width:768px) {
  .primary__contact-button--gradition:after {
    width: 24px;
    height: 6px;
  }
}

.single-download .primary__contact-button--gradition:after {
  content: "";
  background-image: url(../img/button-arrow.svg);
  width: 12px;
  height: 9px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 25px;
}

@media screen and (max-width:768px) {
  .single-download .primary__contact-button--gradition:after {
    width: 24px;
    height: 6px;
  }
}

.primary__contact-button--gradition:hover {
  opacity: 0.8;
}

.single-download .primary__contact-button--gradition:hover {
  opacity: 0.8;
}

.primary__contact-button--gradition {
  text-align: center;
}

.single-download .primary__contact-button--gradition {
  text-align: center;
}

.primary__contact-button--gradition input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

  font-weight: 700;
  color: #fff;
  padding: 20px 36px;
  font-size: 18px;
  text-align: left;
}

.single-download .primary__contact-button--gradition input {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;

  font-weight: 700;
  color: #fff;
  padding: 20px 36px;
  font-size: 18px;
  text-align: left;
}

.single-download-thanks__text {
  padding-top: 80px;
  padding-top: 5rem;
  text-align: left;
  line-height: 1.4;
}

@media screen and (max-width:768px) {
  .single-download-thanks__text {
    padding-top: 2.5rem;
  }
}

.single-download-thanks__text.--center {
  text-align: center;
}

.single-download-thanks__text a {
  text-decoration: underline;
}

.single-download-thanks__inner {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
}

@media screen and (max-width:768px) {
  .single-download-thanks__inner {
    padding-top: 2.5rem;
    padding-bottom: 4rem;
  }
}

.page-thanks__button {
  position: relative;
  border-radius: 62.4375rem;
  background: #F5F5F5;
  padding: 20px 24px 20px 64px;
  display: inline-block;
  margin-top: 40px;
  margin-top: 2.5rem;
}

@media screen and (max-width:768px) {
  .page-thanks__button {
    font-size: 0.875rem;
    margin-top: 1.25rem;
  }
}

.page-thanks__button.--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-thanks__button:before {
  content: "";
  background-image: url(../img/thanks-arrow.svg);
  width: 32px;
  height: 32px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.archive-works__inner {
  padding-bottom: 120px;
  padding-bottom: 7.5rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  max-width: 1400px;
  max-width: 87.5rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
}

@media screen and (max-width: 1000px) {
  .archive-works__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width:768px) {
  .archive-works__inner {
    padding-bottom: 2.5rem;
    padding-right: 1.25rem;
  }
}

.archive-works__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 80px;
  margin-top: 5rem;
  gap: 64px;
  gap: 4rem;
}

@media screen and (max-width: 1200px) {
  .archive-works__flex {
    gap: 2rem;
  }
}

@media screen and (max-width: 1100px) {
  .archive-works__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 2.5rem;
    gap: 2.5rem;
  }
}

.archive-works__content-box {
  padding: 40px;
  padding: 2.5rem;
  border: 1px solid #CCCCCC;
  border-radius: 1rem;
}

@media screen and (max-width:768px) {
  .archive-works__content-box {
    padding: 0rem;
    border: none;
  }
}

.archive-works__content {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 65%;
  flex: 0 1 65%;
  max-width: 780px;
  max-width: 48.75rem;
  width: 65%;
}

@media screen and (max-width: 1100px) {
  .archive-works__content {
    width: 100%;
    max-width: 100%;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.archive-works__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  gap: 2.5rem;
}

@media screen and (max-width:768px) {
  .archive-works__list {
    gap: 1rem;
  }
}

.archive-works__sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width: 1100px) {
  .archive-works__sidebar {
    max-width: 30rem;
  }
}

.archive-works__sidebar-sticky {
  position: sticky;
  top: 100px;
}

.archive-works__item-img img {
  aspect-ratio: 374/208;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 1rem;
}

.archive-works__item-head-category-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.archive-works__item-head-category-label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}

@media screen and (max-width:768px) {
  .archive-works__item-head-category-label {
    font-size: 0.625rem;
  }
}

.archive-works__item-head-category-label time {
  font-size: 14px;
  font-size: 0.875rem;
  color: #666666;
}

@media screen and (max-width:768px) {
  .archive-works__item-head-category-label time {
    font-size: 0.625rem;
  }
}

.archive-works__item-link-category span {

  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 4px 12px;
  padding: 0.25rem 0.75rem;
  background: #F5F5F5;
  border-radius: 6.1875rem;
  display: block;
}

@media screen and (max-width:768px) {
  .archive-works__item-link-category span {
    font-size: 0.625rem;
  }
}

.archive-works__item-expert {

  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 500;
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width:768px) {
  .archive-works__item-expert {
    font-size: 0.875rem;
  }
}

.archive-works__item-company {
  font-size: 16px;
  font-size: 1rem;
  color: #666666;
  margin-top: 12px;
  margin-top: 0.75rem;
}

@media screen and (max-width:768px) {
  .archive-works__item-company {
    font-size: 0.625rem;
  }
}

.archive-works__item-tag-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.archive-works__item-tag-item {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 6.1875rem;
  border: 1px solid #CCCCCC;
  color: #666666;
  padding: 4px 12px 3px;
  padding: 0.25rem 0.75rem 0.1875rem;
}

@media screen and (max-width:768px) {
  .archive-works__item-tag-item {
    font-size: 0.625rem;
    padding: 0.25rem 0.5rem 0.1875rem;
  }
}

.single-works__relative-box-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  margin-top: 40px;
  margin-top: 2.5rem;

}

@media screen and (max-width:768px) {
  .single-works__relative-box-title {
    font-size: 1.25rem;
  }
}

.single-works__relative-box-title::before {
  content: "";
  width: 100%;
  height: 2px;
  height: 0.125rem;
  background: #EBA139;
  position: absolute;
  bottom: 0;
  left: 0;
}

.single-works__relative-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 64px 16px 16px;
  padding: 1rem 4rem 1rem 1rem;
  border-radius: 1rem;
  background: #F5F5F5;
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
}

.single-works__relative-item:after {
  content: "";
  background-image: url(../img/next-arrow.svg);
  width: 32px;
  height: 32px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

@media screen and (max-width:768px) {
  .single-works__relative-item:after {
    width: 24px;
    height: 24px;
  }
}

.single-works__relative-item:first-child {
  margin-top: 0;
}

.single-works__relative-item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}

.single-works__relative-item-img img {
  aspect-ratio: 240/135;
  border-radius: 0.5rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.single-works__relative-item-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.single-works__relative-item-body-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  gap: 1rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
}

.single-works__relative-item-body-company {
  color: #666666;
}

@media screen and (max-width:768px) {
  .single-works__relative-item-body-company {
    font-size: 0.625rem;
  }
}

.column__item-head-text-item-category-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.single-works__relative-item-body-flex .column__item-head-text-item-category {
  font-size: 12px;
  font-size: 0.75rem;
  border-radius: 6.1875rem;
  padding: 4px 10px 5px;
  padding: 0.25rem 0.625rem 0.3125rem;
  background: #fff;
}

@media screen and (max-width:768px) {
  .single-works__relative-item-body-flex .column__item-head-text-item-category {
    font-size: 0.625rem;
  }
}

.single-works__relative-item-body-expert {
  font-size: 18px;
  font-size: 1.125rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media screen and (max-width:768px) {
  .single-works__relative-item-body-expert {
    font-size: 0.875rem;
  }
}

.single-works__relative-button-wrap {
  text-align: center;
}

.single-works__relative-button {
  position: relative;
  border-radius: 62.4375rem;
  background: #F5F5F5;
  padding: 20px 64px 20px 24px;
  padding: 1.25rem 4rem 1.25rem 1.5rem;
  display: inline-block;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

@media screen and (max-width:768px) {
  .single-works__relative-button {
    font-size: 0.875rem;
    margin-top: 2rem;
  }
}

.single-works__relative-button:before {
  content: "";
  background-image: url(../img/next-arrow.svg);
  width: 32px;
  height: 32px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
}

@media screen and (max-width:768px) {
  .single-works__relative-button:before {
    width: 24px;
    height: 24px;
  }
}

.archive-works__sidebar-title {
  font-size: 20px;
  font-size: 1.25rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;

  font-weight: 500;
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-title {
    font-size: 1rem;
  }
}

.archive-works__sidebar-search {
  background: #F5F5F5;
  border-radius: 1rem;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-search.--pc {
    display: none;
  }
}

.archive-works__sidebar-search.--sp {
  display: none;
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-search.--sp {
    display: block;
    margin-top: 2.5rem;
  }
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-search.--sp .archive-works__sidebar-title {
    padding-bottom: 0;
    position: relative;
  }
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-search.--sp .archive-works__sidebar-title:after {
    content: "";
    position: absolute;
    background-image: url(../img/mainas.svg);
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: -5px;
  }
}

@media screen and (max-width:768px) {
  .archive-works__sidebar-search.--sp .archive-works__sidebar-title.active:after {
    content: "";
    position: absolute;
    background-image: url(../img/plus.svg);
    width: 2rem;
    height: 2rem;
    background-repeat: no-repeat;
    background-size: cover;
    right: 0;
    top: -5px;
  }
}

.icon-close {
  color: var(--icon-color);
  width: 24px;
  height: 24px;
  position: relative;
}

.icon-close:before,
.icon-close:after {
  content: "";
  position: absolute;
  top: 12px;
  width: 24px;
  height: var(--icon-width);
  background-color: currentColor;
}

.icon-close:before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.icon-close:after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}


.sidebar-common__banner {
  margin-top: 30px;
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.single-works__content-head-title {
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (max-width:768px) {
  .single-works__content-head-title {
    font-size: 1.125rem;
  }
}

.page .-en--font {}

.--color--yellow-grad {
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.page-common__breadcrumbs-wrap {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  position: relative;
  z-index: 1;
}

.page-common__head-inner {
  position: relative;
}

.page-common__head-flex:before {
  content: attr(data-en);
  display: block;
  color: #F6F6F6;
  font-size: 180px;
  font-size: 11.25rem;
  position: absolute;
  bottom: -30px;
  bottom: -1.875rem;
  line-height: 1;
  left: -80px;
  left: -5rem;
  z-index: 1;

  white-space: nowrap;
  pointer-events: none;
}

@media screen and (max-width: 1300px) {
  .page-common__head-flex:before {
    left: 0;
  }
}

@media screen and (max-width: 990px) {
  .page-common__head-flex:before {
    left: 0;
    font-size: 5.25rem;
    bottom: -0.9375rem;
  }
}

.page-common__head-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 990px) {
  .page-common__head-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-top: 2.5rem;
  }
}

.page-common__head-body {
  width: 30%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

@media screen and (max-width: 990px) {
  .page-common__head-body {
    width: 100%;
    padding-bottom: 2.5rem;
  }
}

.page-common__head-img {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-right: calc(50% - 50vw);
  margin-left: 4%;
}

.page-common__head-img img {
  aspect-ratio: 900/480;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-common__head-text {
  font-size: 24px;
  font-size: 1.5rem;
  letter-spacing: 0.01em;
  text-align: left;
  line-height: 1.8;
}

@media screen and (max-width: 990px) {
  .page-common__head-text {
    font-size: 0.875rem;
  }
}

.page-common__head-title {
  margin-top: 15px;
  margin-top: 0.9375rem;
}

.page-common__head-title span {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

}

@media screen and (max-width: 990px) {
  .page-common__head-title span {
    font-size: 1.25rem;
  }
}

.page-common__head-detail {
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  padding-top: 34px;
  padding-top: 2.125rem;
  line-height: 1.8571428571;
}

.page-about__content {
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 165px;
  padding-bottom: 10.3125rem;
}

@media screen and (max-width:768px) {
  .page-about__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-about-top__inner {
  max-width: 1500px;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
}

@media screen and (max-width: 1000px) {
  .page-about-top__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.page-about-top__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  gap: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-about-top__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 2rem;
  }
}

.page-about-top__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 40%;
  flex: 0 1 40%;
}

.page-about-top__img img {
  aspect-ratio: 520/420;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about-top__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-about-top__body-title {
  padding-bottom: 54px;
  padding-bottom: 3.375rem;
}

@media screen and (max-width:768px) {
  .page-about-top__body-title {
    padding-bottom: 1.5rem;
  }
}

.page-about-top__body-title span {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;

}

@media screen and (max-width:768px) {
  .page-about-top__body-title span {
    font-size: 1.5rem;
  }
}

.page-about-top__body-text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
}

@media screen and (max-width:768px) {
  .page-about-top__body-text {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.page-about-features {
  position: relative;
  margin-top: 90px;
  margin-top: 5.625rem;
}

.page-about-features:before {
  content: "Features";
  position: absolute;
  color: #ECECEC;
  font-size: clamp(300px, 23.75vw, 380px);

  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  left: 50%;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .page-about-features:before {
    font-size: 140px;
    top: 100px;
  }
}

.page-about-features__inner {
  padding-top: 90px;
  padding-top: 5.625rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  max-width: 1280px;
  max-width: 80rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .page-about-features__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.page-about-results {
  margin-top: 200px;
  margin-top: 12.5rem;
  position: relative;
}

@media screen and (max-width:768px) {
  .page-about-results {
    margin-top: 6.25rem;
  }
}

.page-about-results:before {
  content: "Results";
  position: absolute;
  color: #ECECEC;
  font-size: clamp(150px, 18vw, 220px);

  top: -40px;
  top: -2.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .page-about-results:before {
    font-size: 140px;
    top: 100px;
  }
}

.page-about-results__inner {
  max-width: 1310px;
  max-width: 81.875rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}

@media screen and (max-width: 1000px) {
  .page-about-results__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.page-about-results__head {
  text-align: center;
}

.page-about-results__head-title {
  text-align: center;
}

.page-about-results__img {
  margin-top: 50px;
  margin-top: 3.125rem;
}

.page-about-results__img-top {
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
}

.page-about-results__img-top {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.page-about-results__img-item img {
  -o-object-fit: contain;
  object-fit: contain;
  aspect-ratio: 250/100;
}

.page-about-results__img-bottom {
  margin-top: 20px;
  margin-top: 1.25rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.page-about-slogan {
  max-width: 1320px;
  max-width: 82.5rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-top: 120px;
  margin-top: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan {
    margin-top: 4rem;
  }
}

.page-about-slogan:before {
  content: "Slogan";
  position: absolute;
  color: #ECECEC;
  font-size: clamp(150px, 18vw, 220px);

  top: 40px;
  top: 2.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  z-index: 0;
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .page-about-slogan:before {
    font-size: 140px;
    top: 100px;
  }
}

.page-about-slogan__inner {
  background: #FAFAFA;
  border-radius: 0.625rem;
  padding-top: 74px;
  padding-top: 4.625rem;
  padding-bottom: 74px;
  padding-bottom: 4.625rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
  z-index: 1;
}

@media screen and (max-width: 1000px) {
  .page-about-slogan__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

@media screen and (max-width:768px) {
  .page-about-slogan__inner {
    padding-top: 3rem;
    padding-bottom: 3rem;
    padding-left: 0.9375rem;
    padding-right: 0.9375rem;
  }
}

.page-about-slogan__head {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
  z-index: 2;
  position: relative;
}

.page-about-slogan__head-title {
  max-width: 400px;
  max-width: 25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
}

.page-about-slogan__head-title-top {
  font-size: 32px;
  font-size: 2rem;
  font-weight: 700;

  display: inline-block;
}

@media screen and (max-width:768px) {
  .page-about-slogan__head-title-top {
    font-size: 1.5rem;
  }
}

.page-about-slogan__head-title-bottom {
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 700;

  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 10px;
  padding-top: 0.625rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan__head-title-bottom {
    font-size: 1.875rem;
  }
}

.page-about-slogan__head-title-bottom strong {
  font-size: 96px;
  font-size: 6rem;
  font-weight: 700;

  margin-right: 16px;
  margin-right: 1rem;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan__head-title-bottom strong {
    font-size: 3.125rem;
    margin-bottom: 0.625rem;
  }
}

.page-about-slogan__head-text {
  text-align: center;
  line-height: 2.25;
  padding-top: 60px;
  padding-top: 3.75rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan__head-text {
    font-size: 0.875rem;
    padding-top: 2rem;
  }
}

.page-about-slogan__group {
  margin-top: 100px;
  margin-top: 6.25rem;
  max-width: 1070px;
  max-width: 66.875rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .page-about-slogan__group {
    margin-top: 4rem;
  }
}

.page-about-slogan__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  gap: 4.375rem;
  padding-top: 74px;
  padding-top: 4.625rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 1.875rem;
    padding-top: 3rem;
  }
}

.page-about-slogan__item:first-child {
  padding-top: 0;
}

.page-about-slogan__item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 34%;
  flex: 0 1 34%;
}

.page-about-slogan__item-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-about-slogan__item-body-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;

}

@media screen and (max-width:768px) {
  .page-about-slogan__item-body-title {
    font-size: 1.25rem;
  }
}

.page-about-slogan__item-body-text {
  line-height: 2.25;
  font-weight: 400;
  padding-top: 40px;
  padding-top: 2.5rem;
}

@media screen and (max-width:768px) {
  .page-about-slogan__item-body-text {
    font-size: 0.875rem;
    padding-top: 1.25rem;
  }
}

.page-about-slogan__item.--revers {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width:768px) {
  .page-about-slogan__item.--revers {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
  }
}

.page-about-works {
  margin-top: 100px;
  margin-top: 6.25rem;
}

@media screen and (max-width:768px) {
  .page-about-works {
    margin-top: 4rem;
  }
}

.page-about-works .top-works__inner {
  padding-top: 0;
}

.page-about-works__head-text {
  padding-top: 150px;
  padding-top: 9.375rem;
}

@media screen and (max-width:768px) {
  .page-about-works__head-text {
    margin-top: 2.5rem;
  }
}

.page-about-service {
  margin-top: 100px;
  margin-top: 6.25rem;
  position: relative;
}

@media screen and (max-width:768px) {
  .page-about-service {
    margin-top: 4rem;
  }
}

.page-about-service:before {
  content: "Service";
  position: absolute;
  color: #ECECEC;
  font-size: clamp(150px, 18vw, 220px);

  top: -40px;
  top: -2.5rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  left: 50%;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width:768px) {
  .page-about-service:before {
    font-size: 140px;
    top: -2.5rem;
  }
}

.page-about-service__group {
  max-width: 1200px;
  max-width: 75rem;
  margin-left: auto;
  margin-right: auto;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
}

@media screen and (max-width: 1000px) {
  .page-about-service__group {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.page-about-service__head {
  text-align: center;
}

.page-about-service__group {
  margin-top: 72px;
  margin-top: 4.5rem;
}

@media screen and (max-width:768px) {
  .page-about-service__group {
    margin-top: 2.5rem;
  }
}

.page-about-service__group-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  gap: 3.75rem;
}

@media screen and (max-width:768px) {
  .page-about-service__group-top {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.page-about-service__group-top-item {
  padding: 30px;
  padding: 1.875rem;
  background: #F8F8F8;
}

@media screen and (max-width:768px) {
  .page-about-service__group-top-item {
    padding: 1.25rem;
  }
}

.page-about-service__group-top-item-img img {
  aspect-ratio: 410/240;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about-service__group-top-item-body-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;

  margin-top: 25px;
  margin-top: 1.5625rem;
}

@media screen and (max-width:768px) {
  .page-about-service__group-top-item-body-title {
    font-size: 1.25rem;
    margin-top: 0.9375rem;
  }
}

.page-about-service__group-top-item-body-list {
  padding-left: 20px;
  padding-left: 1.25rem;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.page-about-service__group-top-item-body-list li:first-child {
  margin-top: 0px;
  margin-top: 0rem;
}

.page-about-service__group-top-item-body-list li {
  position: relative;
  line-height: 1.5;
  margin-top: 10px;
  margin-top: 0.625rem;
}

@media screen and (max-width:768px) {
  .page-about-service__group-top-item-body-list li {
    font-size: 0.875rem;
  }
}

.page-about-service__group-top-item-body-list li:before {
  content: "";
  position: absolute;
  width: 10px;
  width: 0.625rem;
  height: 10px;
  height: 0.625rem;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  left: -20px;
  left: -1.25rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.page-about-service__group-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px 3%;
  gap: 3.125rem 3%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width:768px) {
  .page-about-service__group-bottom {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
  }
}

.page-about-service__group-bottom-item {
  padding: 20px;
  padding: 1.25rem;
  background: #F8F8F8;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 31%;
  flex: 0 1 31%;
}

@media screen and (max-width:768px) {
  .page-about-service__group-bottom-item {
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
  }
}

.page-about-service__group-bottom-item-img img {
  aspect-ratio: 260/146;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-about-service__group-bottom .page-about-service__group-top-item-body-title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;

  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (max-width:768px) {
  .page-about-service__button {
    margin-top: 2rem;
  }
}


.page-member__content {
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 180px;
  padding-bottom: 11.25rem;
}

@media screen and (max-width:768px) {
  .page-member__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-member-commom__head-en {
  font-size: 24px;
  font-size: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
  gap: 1.875rem;
}

@media screen and (max-width:768px) {
  .page-member-commom__head-en {
    font-size: 1rem;
    gap: 0.875rem;
  }
}

.page-member-commom__head-en:after {
  content: "";
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  height: 1px;
  background: #000;
}

.page-member-commom__head-title {
  padding-top: 30px;
  padding-top: 1.875rem;
}

@media screen and (max-width:768px) {
  .page-member-commom__head-title {
    padding-top: 0.875rem;
  }
}

.page-member-greeting__body-bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  text-align: right;
}

.page-member-greeting__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 92px;
  gap: 5.75rem;
  margin-top: 52px;
  margin-top: 3.25rem;
}

@media screen and (max-width:768px) {
  .page-member-greeting__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
    margin-top: 1.375rem;
  }
}

.page-member-greeting__img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 36%;
  flex: 0 1 36%;
}

.page-member-greeting__body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-member-greeting__body-text {
  line-height: 2.25;
}

@media screen and (max-width:768px) {
  .page-member-greeting__body-text {
    font-size: 0.875rem;
  }
}

.page-member-greeting__body-bottom {
  margin-top: 24px;
  margin-top: 1.5rem;
}

.page-member-greeting__body-bottom-name {
  font-weight: 700;
  font-size: 26px;
  font-size: 1.625rem;
  padding-top: 6px;
  padding-top: 0.375rem;
}

@media screen and (max-width:768px) {
  .page-member-greeting__body-bottom-name {
    font-size: 1.25rem;
  }
}

.page-member-staff {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-member-staff {
    margin-top: 4rem;
  }
}

.page-member-staff__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px 50px;
  gap: 7.5rem 3.125rem;
  margin-top: 42px;
  margin-top: 2.625rem;
}

@media screen and (max-width:768px) {
  .page-member-staff__list {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

.page-member-staff__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  gap: 1.875rem;
}

@media screen and (max-width:768px) {
  .page-member-staff__item {
    gap: 0.9375rem;
  }
}

.page-member-staff__item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 42%;
  flex: 0 1 42%;
}

@media screen and (max-width:768px) {
  .page-member-staff__item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 32%;
    flex: 0 1 32%;
  }
}

.page-member-staff__item-img img {
  aspect-ratio: 1/1;
  border-radius: 62.4375rem;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-member-staff__item-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-member-staff__item-body-catch {
  font-size: 14px;
  font-size: 0.875rem;

  color: #C4C4C4;
}

@media screen and (max-width:768px) {
  .page-member-staff__item-body-catch {
    font-size: 0.8125rem;
  }
}

.page-member-staff__item-body-name {

  font-size: 20px;
  font-size: 1.25rem;
  padding-top: 5px;
  padding-top: 0.3125rem;
  line-height: 1.4;
}

@media screen and (max-width:768px) {
  .page-member-staff__item-body-name {
    font-size: 1.125rem;
  }
}

.page-member-staff__item-body-text {
  font-size: 14px;
  font-size: 0.875rem;
  padding-top: 12px;
  padding-top: 0.75rem;
  line-height: 1.7142857143;
}

.page-company__content {
  margin-top: 150px;
  margin-top: 9.375rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

@media screen and (max-width:768px) {
  .page-company__content {
    margin-top: 5rem;
    padding-bottom: 2.5rem;
  }
}

.page-company-top {
  padding-top: 120px;
  padding-top: 7.5rem;
  padding-bottom: 168px;
  padding-bottom: 10.5rem;
  background: -webkit-gradient(linear, right top, left top, from(rgba(239, 239, 239, .29)), to(rgba(206, 206, 206, .29)));
  background: linear-gradient(to left, rgba(239, 239, 239, .29), rgba(206, 206, 206, .29));
  position: relative;
}

@media screen and (max-width:768px) {
  .page-company-top {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

.page-company-top__wave-top,
.page-company-top__wave-bottom {
  height: 105px;
  height: 6.5625rem;
}

@media screen and (max-width:768px) {

  .page-company-top__wave-top,
  .page-company-top__wave-bottom {
    height: 5rem;
  }
}

.page-company-top__head-title {
  font-size: 32px;
  font-size: 2rem;
  padding-top: 60px;
  padding-top: 3.75rem;
}

@media screen and (max-width:768px) {
  .page-company-top__head-title {
    font-size: 1.5rem;
    padding-top: 1.25rem;
  }
}

.page-company-top__text {
  line-height: 2.25;
  letter-spacing: 0.01em;
  padding-top: 52px;
  padding-top: 3.25rem;
}

@media screen and (max-width:768px) {
  .page-company-top__text {
    font-size: 0.875rem;
    padding-top: 1.875rem;
  }
}

.page-company-top__head-title--vision {
  max-width: 500px;
  max-width: 31.25rem;
}

.page-company-top__head-title--vision span {
  display: inline-block;
}

.page-company-top__primary {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-company-top__primary {
    margin-top: 2.5rem;
  }
}

.page-company-top__primary.--first {
  margin-top: 0;
}

.page-company-value {
  padding-top: 90px;
  padding-top: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-company-value {
    padding-top: 2.5rem;
  }
}

.page-company-value__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-company-value__item {
    padding-top: 1.875rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
  }
}

.page-company-value__item:first-child {
  padding-top: 0;
}

.page-company-value__item-left {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding-left: 60px;
  padding-left: 3.75rem;
  position: relative;
}

@media screen and (max-width:768px) {
  .page-company-value__item-left {
    padding-left: 1.875rem;
  }
}

.page-company-value__item-left:before {
  content: "";
  background-image: url(../img/page-company-value-icon.webp);
  width: 46px;
  height: 49px;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  top: 0;
}

@media screen and (max-width:768px) {
  .page-company-value__item-left:before {
    width: 24px;
    height: 24px;
  }
}

.page-company-value__item-left-en {

  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
  line-height: 1.4230769231;
}

@media screen and (max-width:768px) {
  .page-company-value__item-left-en {
    font-size: 1.25rem;
    margin-top: 0;
  }
}

.page-company-value__item-left-title {
  font-size: 16px;
  font-size: 1rem;
  padding-top: 10px;
  padding-top: 0.625rem;
  line-height: 2.25;
}

@media screen and (max-width:768px) {
  .page-company-value__item-left-title {
    font-size: 0.875rem;
  }
}

.page-company-value__item-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 71%;
  flex: 0 1 71%;
  border-bottom: 1px solid #D0D0D0;
  padding-left: 20%;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}

@media screen and (max-width:768px) {
  .page-company-value__item-right {
    padding-left: 1.875rem;
    padding-bottom: 2.5rem;
  }
}

.page-company-value__item:last-child .page-company-value__item-right {
  border-bottom: none;
  padding-bottom: 0px;
  padding-bottom: 0rem;
}

.page-company-value__item-right-text {
  line-height: 2.25;
  letter-spacing: 0.01em;
}

@media screen and (max-width:768px) {
  .page-company-value__item-right-text {
    font-size: 0.875rem;
  }
}

.page-company-information__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-company-information__inner {
    padding-top: 4rem;
  }
}

.page-company-information__primary {
  padding-left: 80px;
  padding-left: 5rem;
  padding-top: 90px;
  padding-top: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-company-information__primary {
    padding-left: 0rem;
    padding-top: 2.125rem;
  }
}

.page-company-information__table-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
}

@media screen and (max-width:768px) {
  .page-company-information__table-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}

.page-company-information__table-title {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 20%;
  flex: 0 1 20%;
}

.page-company-information__table-title-detail {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 2;
}

@media screen and (max-width:768px) {
  .page-company-information__table-title-detail {
    font-size: 0.875rem;
  }
}

.page-company-information__table-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
  padding-top: 68px;
  padding-top: 4.25rem;
  padding-bottom: 50px;
  padding-bottom: 3.125rem;
}

@media screen and (max-width:768px) {
  .page-company-information__table-body {
    padding-top: 1.25rem;
    padding-bottom: 2rem;
  }
}

.page-company-information__table-body:before {
  content: "";
  width: 100%;
  height: 2px;
  border-top: 1px dotted #C7C7C7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 18px;
  margin-top: 1.125rem;
  padding-bottom: 18px;
  padding-bottom: 1.125rem;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (max-width:768px) {
  .page-company-information__table-body:before {
    margin-top: 0.625rem;
    padding-bottom: 0rem;
  }
}

.page-company-information__table-body p {
  line-height: 1.625;
  letter-spacing: 0.05em;
}

@media screen and (max-width:768px) {
  .page-company-information__table-body p {
    font-size: 0.875rem;
  }
}

.page-company-information__table-body-map {
  padding-top: 32px;
  padding-top: 2rem;
}

@media screen and (max-width:768px) {
  .page-company-information__table-body-map iframe {
    height: 15rem;
  }
}

.page-company-greeting__inner {
  padding-top: 90px;
  padding-top: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-company-greeting__inner {
    padding-top: 4rem;
  }
}

.page-company-history {
  margin-top: 68px;
  margin-top: 4.25rem;
}

.page-company-history__primary {
  padding-left: 60px;
  padding-left: 3.75rem;
  padding-top: 52px;
  padding-top: 3.25rem;
}

@media screen and (max-width:768px) {
  .page-company-history__primary {
    padding-left: 1.875rem;
    padding-top: 3.3125rem;
  }
}

.page-company-history__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 50px;
  padding-left: 3.125rem;
  position: relative;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}

@media screen and (max-width:768px) {
  .page-company-history__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 1.875rem;
    padding-bottom: 2.5rem;
  }
}

.page-company-history__flex:before {
  content: "";
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  position: absolute;
  left: 0;
  top: 8px;
  top: 0.5rem;
  border-radius: 6.25rem;
}

@media screen and (max-width:768px) {
  .page-company-history__flex:before {
    width: 0.5625rem;
    height: 0.5625rem;
  }
}

.page-company-history__flex:last-child:after {
  content: none;
}

.page-company-history__flex:after {
  content: "";
  width: 3px;
  width: 0.1875rem;
  height: calc(100% - 25px);
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  position: absolute;
  left: 6px;
  top: 26px;
  border-radius: 6.25rem;
}

@media screen and (max-width:768px) {
  .page-company-history__flex:after {
    width: 0.0625rem;
    height: 100%;
    left: 4px;
    top: 10px;
  }
}

.page-company-history__flex-time {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 24%;
  flex: 0 1 24%;

  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .page-company-history__flex-time {
    padding-bottom: 1.25rem;
    font-size: 1.125rem;
  }
}

.page-company-history__flex-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  line-height: 2.25;
}

@media screen and (max-width:768px) {
  .page-company-history__flex-text {
    font-size: 0.875rem;
    line-height: 1.25;
  }
}

.page-recruit__content {
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content {
    padding-bottom: 4rem;
  }
}

.page-recruit-slogan .page-about-slogan__head-title {
  max-width: 100%;
}

.page-recruit-slogan .page-about-slogan__head-title-bottom {
  padding-top: 60px;
  padding-top: 3.75rem;
}

.page-recruit-detail {
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-bottom: 100px;
  margin-bottom: 6.25rem;
  background: -webkit-gradient(linear, right top, left top, from(rgba(221, 215, 2, .29)), to(rgba(235, 161, 56, .29)));
  background: linear-gradient(to left, rgba(221, 215, 2, .29), rgba(235, 161, 56, .29));
  padding-bottom: 150px;
  padding-bottom: 9.375rem;
  padding-top: 180px;
  padding-top: 11.25rem;
  position: relative;
}

@media screen and (max-width:768px) {
  .page-recruit-detail {
    margin-top: 4rem;
    margin-bottom: 4rem;
    padding-bottom: 6.25rem;
    padding-top: 7.5rem;
  }
}

.page-recruit-detail__tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2px;
  gap: 0.125rem;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.page-recruit-detail__tab-list::-webkit-scrollbar {
  display: none;
}

.page-recruit-detail__tab-item {
  background: #E9E9E9;
  color: #A0A0A0;
  padding: 11px 18px;
  padding: 0.6875rem 1.125rem;
  border-radius: 0.625rem 0.625rem 0 0;
  cursor: pointer;
  white-space: nowrap;
}

@media screen and (max-width:768px) {
  .page-recruit-detail__tab-item {
    padding: 0.5rem 0.625rem;
  }
}

.page-recruit-detail__tab-item.active {
  background: #fff;
  color: #000000;
}

.page-recruit-detail__tab-content-body {
  display: none;
}

.page-recruit-detail__tab-content-body.active {
  display: block;
  padding: 60px 40px;
  padding: 3.75rem 2.5rem;
  background: #fff;
}

@media screen and (max-width:768px) {
  .page-recruit-detail__tab-content-body.active {
    padding: 2.5rem 1.25rem;
  }
}

.page-recruit-detail__tab-content-body-title {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  text-align: center;
}

@media screen and (max-width:768px) {
  .page-recruit-detail__tab-content-body-title {
    font-size: 1.125rem;
    white-space: nowrap;
  }
}

.page-recruit-detail__tab-content-body-detail .page-company-information__table-flex:last-child .page-company-information__table-body {
  padding-bottom: 0;
}

.page-recruit-detail__tab-content-body-detail {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-recruit-detail__tab-content-body-detail {
    margin-top: 4rem;
  }
}

.contact-recruit__form {
  max-width: 820px;
  max-width: 51.25rem;
  margin-left: auto;
  margin-right: auto;
  padding-top: 62px;
  padding-top: 3.875rem;
}

@media screen and (max-width:768px) {
  .contact-recruit__form {
    padding-bottom: 2.5rem;
  }
}

.page-recruit__content .contact__form {
  border: 1px solid #CCCCCC;
  border-radius: 1rem;
  padding: 40px;
  padding: 2.5rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__form {
    border: none;
    padding: 0rem;
  }
}

.page-recruit__content .wpcf7-spinner {
  position: absolute;
}

.page-recruit__content .contact__text-link a {
  color: inherit;
}

.page-recruit__content .contact__item {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
    border: none;
    margin-top: 1.125rem;
    padding-bottom: 0rem;
    gap: 8px;
  }
}

.page-recruit__content .contact__item:first-child {
  margin-top: 0px;
  margin-top: 0rem;
}

.page-recruit__content .contact__item-label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  gap: 0.5rem;
  padding-bottom: 8px;
  padding-bottom: 0.5rem;
  -webkit-box-flex: 0;
  -ms-flex: 0 1 24%;
  flex: 0 1 24%;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__item-label {
    font-size: 0.875rem;
    padding-bottom: 0.5rem;
  }
}

.page-recruit__content .contact__item-flex-column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-recruit__content .contact__checbox .contact__item-body {
  padding-left: 20px;
  padding-left: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__checbox .contact__item-body {
    padding-left: 0rem;
  }
}

.page-recruit__content .contact__checbox .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 580px;
}

.page-recruit__content .contact__checbox .wpcf7-list-item {
  position: relative;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__checbox .wpcf7-list-item {
    font-size: 0.75rem;
  }
}

.page-recruit__content .contact__checbox .wpcf7-list-item-label {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
}

.page-recruit__content .contact__checbox .wpcf7-list-item-label::before {
  display: block;
  content: "";
  border: 2px solid #666666;
  border-radius: 4px;
  width: 24px;
  height: 24px;
  margin-right: 10px;
}

.page-recruit__content .contact__checbox span.wpcf7-list-item-label::after {
  display: block;
  position: absolute;
  content: "";
  width: 16px;
  height: 12px;
  -webkit-mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2213%22%20viewBox%3D%220%200%2017%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.5607%200.43934C17.1464%201.02513%2017.1464%201.97487%2016.5607%202.56066L6.5%2012.6213L0.93934%207.06066C0.353553%206.47487%200.353553%205.52513%200.93934%204.93934C1.52513%204.35355%202.47487%204.35355%203.06066%204.93934L6.5%208.37868L14.4393%200.43934C15.0251%20-0.146447%2015.9749%20-0.146447%2016.5607%200.43934Z%22%20fill%3D%22%23704D1D%22%2F%3E%3C%2Fsvg%3E");
  mask-image: url("data:image/svg+xml;charset=utf8,%3Csvg%20width%3D%2217%22%20height%3D%2213%22%20viewBox%3D%220%200%2017%2013%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cpath%20fill-rule%3D%22evenodd%22%20clip-rule%3D%22evenodd%22%20d%3D%22M16.5607%200.43934C17.1464%201.02513%2017.1464%201.97487%2016.5607%202.56066L6.5%2012.6213L0.93934%207.06066C0.353553%206.47487%200.353553%205.52513%200.93934%204.93934C1.52513%204.35355%202.47487%204.35355%203.06066%204.93934L6.5%208.37868L14.4393%200.43934C15.0251%20-0.146447%2015.9749%20-0.146447%2016.5607%200.43934Z%22%20fill%3D%22%23704D1D%22%2F%3E%3C%2Fsvg%3E");
  background: #fff;
  background-size: 16px 12px;
  background-repeat: no-repeat;
  left: 4px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: none;
}

.page-recruit__content .your-consultation input[type=checkbox]:checked+span.wpcf7-list-item-label::after {
  display: block !important;
}

.page-recruit__content .contact__checbox input[type=checkbox]:checked+span.wpcf7-list-item-label::after {
  display: block;
}

.page-recruit__content .contact__checbox input[type=checkbox]:checked+span.wpcf7-list-item-label::before {
  background: #666666;
}

.page-recruit__content .contact__checbox input[type=checkbox] {
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 11;
  visibility: visible;
  opacity: 0;
  position: absolute;
}

.page-recruit__content .contact__item-text input[type=radio] {
  width: 14px;
  width: 0.875rem;
  height: 14px;
  height: 0.875rem;
  min-height: auto;
}

.page-recruit__content .contact__item--radio label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  gap: 0.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-recruit__content .contact__item--radio .wpcf7-list-item:first-child {
  margin-left: 0;
}

.page-recruit__content .contact__item-body-width260 {
  max-width: 260px;
  max-width: 16.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
  gap: 0.3125rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-top: 10px;
  margin-top: 0.625rem;
  margin-bottom: 10px;
  margin-bottom: 0.625rem;
}

.page-recruit__content .contact__item-body-width260 .--text {
  white-space: nowrap;
  font-size: 20px;
  font-size: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__item-body-width260 .--text {
    font-size: 0.875rem;
  }
}

.page-recruit__content .contact__item-body-flex {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  gap: 0.625rem;
  max-width: 500px;
  max-width: 31.25rem;
}

.page-recruit__content .contact__accept a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.page-recruit__content .contact__item-label .required {
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  color: #fff;
  padding: 4px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
}

.page-recruit__content .contact__item-label .any {
  background-color: #ACACAC;
  padding: 4px 10px;
  font-size: 12px;
  font-size: 0.75rem;
  color: #fff;
}

.page-recruit__content .contact__item-body {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

@media screen and (max-width:768px) {
  .page-recruit__content .contact__item-body {
    width: 100%;
  }
}

.page-recruit__content .contact__item-text input,
.page-recruit__content .contact__item-text textarea {
  width: 100%;
  display: block;
  border: 1px solid #D9D9D9;
  padding: 10px 10px;
  padding: 0.625rem 0.625rem;
  min-height: 48px;
  min-height: 3rem;
}

.page-recruit__content .contact__item--non-border input {
  border: none;
}

.page-recruit__content .contact__item--non-border p {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6666666667;
  color: #000;
}

.page-recruit__content .primary__contact-button--gradition {
  position: relative;
  border-radius: 999px;
  background: -webkit-gradient(linear, left top, right top, from(#EBA139), to(#DCD900));
  background: linear-gradient(to right, #EBA139, #DCD900);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  margin-top: 74px;
  margin-top: 4.625rem;
  max-width: 240px;
  max-width: 15rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width:768px) {
  .page-recruit__content .primary__contact-button--gradition {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: start;
    font-size: 1rem;
  }
}

.page-recruit__content .primary__contact-button--gradition:hover {
  opacity: 0.8;
}

.page-recruit__content .primary__contact-button--gradition {
  text-align: center;
}

.page-recruit__content .primary__contact-button--gradition input {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;

  font-weight: 700;
  color: #fff;
  padding: 20px;
  padding: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width:768px) {
  .page-recruit__content .primary__contact-button--gradition input {
    padding: 0.875rem;
    font-size: 1rem;
  }
}

.page-thanks-recruit__text {
  text-align: left;
  line-height: 1.8333333333;
  font-size: 18px;
  font-size: 1.125rem;
}

@media screen and (max-width:768px) {
  .page-thanks-recruit__text {
    font-size: 0.875rem;
  }
}

.page-thanks-recruit__text a {
  text-decoration: underline;
}

.page-thanks-recruit__button-wrap {
  margin-top: 60px;
  margin-top: 3.75rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-thanks-recruit__button {
  max-width: 240px;
  max-width: 15rem;
  width: 100%;
  font-size: 19.5px;
  font-size: 1.21875rem;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  border-radius: 6.25rem;
  padding: 14px;
  padding: 0.875rem;
}

@media screen and (max-width:768px) {
  .page-thanks-recruit__button {
    font-size: 1rem;
  }
}

.page-service__content {
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
}

@media screen and (max-width:768px) {
  .page-service__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-service-top__inner {
  max-width: 1160px;
  max-width: 72.5rem;
  padding-left: 100px !important;
  padding-left: 6.25rem !important;
  padding-right: 100px !important;
  padding-right: 6.25rem !important;
}

@media screen and (max-width: 1000px) {
  .page-service-top__inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.page-service-top__text {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;
  line-height: 1.7692307692;

  text-align: center;
}

@media screen and (max-width:768px) {
  .page-service-top__text {
    font-size: 1.125rem;
  }
}

.page-service-top__text span {
  display: inline-block;
}

.page-service-top__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 30px 24px;
  gap: 1.875rem 1.5rem;
  margin-top: 88px;
  margin-top: 5.5rem;
}

@media screen and (max-width:768px) {
  .page-service-top__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.625rem 0.875rem;
    margin-top: 3rem;
  }
}

.page-service-top__item {
  text-align: center;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  color: #fff;
  position: relative;
}

.page-service-top__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 16px 30px;
  padding: 1rem 1.875rem;
  font-size: 19.5px;
  font-size: 1.21875rem;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .page-service-top__item a {
    font-size: 0.875rem;
    padding: 0.625rem 1.5625rem 0.625rem 0.625rem;
  }
}

.page-service-main {
  margin-top: 90px;
  margin-top: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-service-main {
    margin-top: 2.5rem;
  }
}

.page-service-main__inner {
  max-width: 1520px;
  max-width: 95rem;
  padding-left: 100px;
  padding-left: 6.25rem;
  padding-right: 100px;
  padding-right: 6.25rem;
}

@media screen and (max-width: 1000px) {
  .page-service-main__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.page-service-main__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 70px;
  gap: 4.375rem;
  background: #FAFAFA;
  border-radius: 0.625rem;
  padding: 60px;
  padding: 3.75rem;
  margin-top: 60px;
  margin-top: 3.75rem;
}

@media screen and (max-width: 990px) {
  .page-service-main__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 1.25rem;
    margin-top: 2.5rem;
    gap: 1.25rem;
  }
}

.page-service-main__item:first-child {
  margin-top: 0;
}

.page-service-main__item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 28%;
  flex: 0 1 28%;
}

.page-service-main__item-img img {
  aspect-ratio: 300/300;
  -o-object-fit: cover;
  object-fit: cover;
}

@media screen and (max-width: 990px) {
  .page-service-main__item-img img {
    aspect-ratio: 300/180;
    -o-object-fit: cover;
    object-fit: cover;
  }
}

.page-service-main__item-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-service-top__item:after {
  content: "";
  background-image: url(../img/page-service-top-arrow.webp);
  background-repeat: no-repeat;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-size: 100% 100%;
  right: 20px;
  right: 1.25rem;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width:768px) {
  .page-service-top__item:after {
    right: 0.3125rem;
    width: 0.9375rem;
    height: 0.9375rem;
  }
}

.page-service-main__item-body-en {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 3.1428571429;
  letter-spacing: 0.01em;
}

.page-service-main__item-body-title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 700;

}

@media screen and (max-width: 990px) {
  .page-service-main__item-body-title {
    font-size: 1.375rem;
  }
}

.page-service-main__item-body-en span {
  padding-left: 5px;
  padding-left: 0.3125rem;
}

.page-service-main__item-body-text {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
  padding-top: 48px;
  padding-top: 3rem;
}

@media screen and (max-width: 990px) {
  .page-service-main__item-body-text {
    font-size: 1rem;
    padding-top: 1.5rem;
  }
}

.page-service-main__item-body-button-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
  gap: 1.875rem;
  margin-top: 48px;
  margin-top: 3rem;
}

@media screen and (max-width: 990px) {
  .page-service-main__item-body-button-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    max-width: 13.75rem;
    margin-left: auto;
    margin-right: auto;
    gap: 0.875rem;
    margin-top: 1.25rem;
  }
}

.page-service-main__item-body__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 300px;
  max-width: 18.75rem;
  color: #fff;
  text-align: center;
  font-size: 19.5px;
  font-size: 1.21875rem;
  line-height: 1.5263157895;
  padding: 16px 10px;
  padding: 1rem 0.625rem;
  border-radius: 6.25rem;
}

@media screen and (max-width: 990px) {
  .page-service-main__item-body__button {
    font-size: 0.875rem;
  }
}

.page-service-main__item-body__button.--yellow {
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
}

.page-service-main__item-body__button.--gray {
  background: -webkit-gradient(linear, right top, left top, from(#727272), to(#BABABA));
  background: linear-gradient(to left, #727272, #BABABA);
}

.page-sns__content {
  padding-top: 130px;
  padding-top: 8.125rem;
  padding-bottom: 110px;
  padding-bottom: 6.875rem;
}

@media screen and (max-width:768px) {
  .page-sns__content {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
}

.page-sns-top__inner {
  max-width: 1190px;
  max-width: 74.375rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  padding-right: 20px;
  padding-right: 1.25rem;
  margin-left: auto;
  margin-right: auto;
}

.page-sns-top__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 90px;
  gap: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-sns-top__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.875rem;
  }
}

.page-sns-top__left {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 45%;
  flex: 0 1 45%;
}

.page-sns-top__right {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-sns-top__right-title {
  font-size: 32px;
  font-size: 2rem;
  line-height: 1.4375;

  font-weight: 700;
}

@media screen and (max-width:768px) {
  .page-sns-top__right-title {
    font-size: 1.5rem;
  }
}

.page-sns-top__right-text {
  letter-spacing: 0.01em;
  line-height: 2.25;
  padding-top: 54px;
  padding-top: 3.375rem;
}

@media screen and (max-width:768px) {
  .page-sns-top__right-text {
    font-size: 0.875rem;
    padding-top: 1.5rem;
  }
}

.page-sns-top__bottom-text {
  text-align: center;
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-sns-top__bottom-text {
    padding-top: 2.5rem;
  }
}

.page-sns-top__bottom-text span {
  display: inline-block;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.5555555556;

}

@media screen and (max-width:768px) {
  .page-sns-top__bottom-text span {
    font-size: 1.5rem;
  }
}

.page-sns-consulting {
  margin-top: 80px;
  margin-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-sns-consulting {
    margin-top: 4rem;
  }
}

.page-sns-consulting__head-title {
  max-width: 800px;
  max-width: 50rem;
}

.page-sns-consulting__head-title span {
  display: inline-block;
  font-size: 32px;
  font-size: 2rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting__head-title span {
    display: inline;
    display: initial;
  }
}

.page-sns-consulting__primary {
  padding-top: 110px;
  padding-top: 6.875rem;
}

@media screen and (max-width:768px) {
  .page-sns-consulting__primary {
    padding-top: 4rem;
  }
}

.page-sns-consulting__begin-title {
  text-align: center;

  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  background: #7EC0DE;
  border-radius: 62.4375rem;
  max-width: 220px;
  max-width: 13.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  padding: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: -64px;
  margin-top: -4rem;
}

.page-sns-consulting__center-title {
  text-align: center;

  color: #fff;
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
  border-radius: 62.4375rem;
  max-width: 220px;
  max-width: 13.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 10px;
  padding: 0.625rem;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  margin-top: -64px;
  margin-top: -4rem;
}

.page-sns-consulting__list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 35px;
  gap: 2.1875rem;
}

@media screen and (max-width: 900px) {
  .page-sns-consulting__list-wrap {
    grid-template-columns: 1fr;
    max-width: 18.75rem;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
  }
}

.page-sns-consulting__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  gap: 1.25rem;
}

.page-sns-consulting__item {
  padding: 42px 20px 22px 20px;
  padding: 2.625rem 1.25rem 1.375rem 1.25rem;
  position: relative;
}

.page-sns-consulting__item:after {
  content: "";
  background-image: url(../img/page-sns-consulting-arrow.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -47px;
  right: -2.9375rem;
  width: 54px;
  width: 3.375rem;
  height: 82px;
  height: 5.125rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 900px) {
  .page-sns-consulting__item:after {
    background-image: url(../img/page-sns-consulting-arrow-sp.webp);
    right: 50%;
    -webkit-transform: translate(50%, 0%);
    transform: translate(50%, 0%);
    bottom: -1.875rem;
    top: inherit;
    width: 7.125rem;
    height: 3.125rem;
    z-index: 3;
  }
}

.page-sns-consulting__item:last-child:after {
  content: none;
}

.page-sns-consulting__begin {
  border-radius: 14px;
  border: 3px solid #7EC0DE;
}

.page-sns-consulting__center {
  position: relative;
  border-radius: 14px;
  background: -webkit-gradient(linear, right top, left top, from(#DDD702), to(#EBA138));
  background: linear-gradient(to left, #DDD702, #EBA138);
}

.page-sns-consulting__center:before {
  content: "";
  border-radius: 14px;
  background: #fff;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  left: 3px;
  top: 3px;
  z-index: 1;
}

.page-sns-consulting__center-inner {
  z-index: 2;
  position: relative;
}

.page-sns-consulting__last {
  background: #EBBE38;
  border-radius: 14px;
  border: 3px solid rgba(185, 185, 185, .42);
}

.page-sns-consulting__item-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;

  line-height: 1.8;
  text-align: center;
}

@media screen and (max-width: 1100px) {
  .page-sns-consulting__item-text {
    font-size: 1rem;
  }
}

@media screen and (max-width: 900px) {
  .page-sns-consulting__item-text {
    font-size: 1.25rem;
  }
}

.page-sns-consulting__last-text {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 700;

  line-height: 1.3846153846;
  text-align: center;
  color: #fff;
  padding-top: 14px;
  padding-top: 0.875rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting__last-text {
    display: inline;
    display: initial;
  }
}

.page-sns-consulting-bottom__primary {
  padding-top: 120px;
  padding-top: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-sns-consulting-bottom__primary {
    padding-top: 5rem;
  }
}

.page-sns-consulting-bottom {
  margin-top: 174px;
  margin-top: 10.875rem;
}

.page-sns-consulting-bottom__head-title span {
  font-size: 32px;
  font-size: 2rem;
  display: inline-block;
}

@media screen and (max-width:768px) {
  .page-sns-consulting-bottom__head-title span {
    font-size: 1.25rem;
    display: inline;
  }
}

.page-sns-consulting-bottom__list-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  gap: 2.375rem;
  position: relative;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__list-wrap {
    grid-template-columns: 1fr;
    max-width: 21.25rem;
    margin-left: auto;
    margin-right: auto;
    gap: 3rem;
  }
}

.page-sns-consulting-bottom__item {
  border-radius: 0.8125rem;
  border: 1px solid #000000;
  padding: 40px 30px 30px;
  padding: 2.5rem 1.875rem 1.875rem;
}

@media screen and (max-width: 1100px) {
  .page-sns-consulting-bottom__item {
    padding: 1.25rem;
  }
}

.page-sns-consulting-bottom__item-left-title {
  font-size: 20px;
  font-size: 1.25rem;

  text-align: center;
  max-width: 400px;
  max-width: 25rem;
  padding: 15px;
  padding: 0.9375rem;
  background: #7EC0DE;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  margin-top: -60px;
  margin-top: -3.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-left-title {
    font-size: 1rem;
  }
}

.page-sns-consulting-bottom__item-left {
  position: relative;
}

.page-sns-consulting-bottom__item-left-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  gap: 0.75rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-left-grid {
    grid-template-columns: 1fr;
    gap: 0.875rem;
    max-width: 12.5rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-sns-consulting-bottom__item-left:after {
  content: "";
  background-image: url(../img/page-sns-consulting-arrow-bottom.webp);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  right: -52px;
  right: -3.25rem;
  width: 67px;
  width: 4.1875rem;
  height: 64px;
  height: 4rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-left:after {
    background-image: url(../img/page-sns-consulting-arrow-sp.webp);
    right: 50%;
    -webkit-transform: translate(50%, 0%);
    transform: translate(50%, 0%);
    bottom: -1.875rem;
    top: inherit;
    width: 7.125rem;
    height: 3.125rem;
    z-index: 3;
  }
}

.page-sns-consulting-bottom__item-left-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  gap: 1.25rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-sns-consulting-bottom__item-left-content-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
}

.page-sns-consulting-bottom__item-left-content-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-sns-consulting-bottom__item-left-content-small {
  color: #7EC0DE;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 2.5;

  font-weight: 700;
}

.page-sns-consulting-bottom__item-left-content-text {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;

}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-left-content-text {
    font-size: 1rem;
  }
}

.page-sns-consulting-bottom__item-right-title {
  font-size: 20px;
  font-size: 1.25rem;

  text-align: center;
  max-width: 400px;
  max-width: 25rem;
  padding: 15px;
  padding: 0.9375rem;
  background: -webkit-gradient(linear, right top, left top, from(#EBA139), to(#DCD900));
  background: linear-gradient(to left, #EBA139, #DCD900);
  margin-left: auto;
  margin-right: auto;
  color: #fff;
  margin-top: -60px;
  margin-top: -3.75rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-title {
    font-size: 1rem;
  }
}

.page-sns-consulting-bottom__item-right {
  padding: 40px 20px 30px;
  padding: 2.5rem 1.25rem 1.875rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right {
    padding: 1.875rem 1.25rem 1.875rem;
  }
}

.page-sns-consulting-bottom__item-right-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 10px;
  gap: 0.625rem;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-grid {
    grid-template-columns: 1fr;
  }
}

.page-sns-consulting-bottom__item-right-grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-sns-consulting-bottom__item-right-grid-item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 30%;
  flex: 0 1 30%;
  max-width: 58px;
  max-width: 3.625rem;
}

.page-sns-consulting-bottom__item-right-grid-item--second .page-sns-consulting-bottom__item-right-grid-item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 35%;
  flex: 0 1 35%;
}

.page-sns-consulting-bottom__item-right-grid-item-text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-sns-consulting-bottom__item-right-grid-item-text {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;

}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-grid-item.--pc {
    display: none;
  }
}

.page-sns-consulting-bottom__item-right-grid-item.--sp {
  display: none;
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-grid-item.--sp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-grid-item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 0.625rem;
  }
}

@media screen and (max-width: 990px) {
  .page-sns-consulting-bottom__item-right-grid-item-flex .page-sns-consulting-bottom__item-right-grid-item-img {
    -webkit-box-flex: 0;
    -ms-flex: 0 1 50%;
    flex: 0 1 50%;
  }
}

.page-sns-slogan .page-about-slogan__head-title {
  max-width: 500px;
  max-width: 31.25rem;
}

.page-sns-slogan__head-title-bottom strong {
  padding-left: 10px;
  padding-left: 0.625rem;
}

.page-sns-result {
  position: relative;
}

.page-sns-result__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
}





.page-sns-result .top-common__item-company-name {
  font-size: 12px;
  font-size: 0.75rem;

  line-height: 2;
  margin-top: 4px;
  margin-top: 0.25rem;
}

.page-sns-result .top-common__item-category {
  font-size: 12px;
  font-size: 0.75rem;
}

.page-sns-member {
  position: relative;
}

.page-sns-member__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-sns-member__inner {
    padding-top: 4rem;
  }
}


.page-sns-member__list {
  padding-top: 50px;
  padding-top: 3.125rem;
}

@media screen and (max-width:768px) {
  .page-sns-member__list {
    padding-top: 0rem;
  }
}

.page-sns-flow {
  margin-top: 120px;
  margin-top: 7.5rem;
  background: #F7F7F7;
  position: relative;
}

@media screen and (max-width:768px) {
  .page-sns-flow {
    margin-top: 4rem;
  }
}



.page-sns-flow__inner {
  padding-top: 90px;
  padding-top: 5.625rem;
  padding-bottom: 90px;
  padding-bottom: 5.625rem;
}

@media screen and (max-width:768px) {
  .page-sns-flow__inner {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }
}

.page-sns-flow__list-wrap {
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-sns-flow__list-wrap {
    padding-top: 2.5rem;
  }
}

.page-sns-flow__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
  gap: 2.5rem;
  background: #fff;
  padding: 32px 40px;
  padding: 2rem 2.5rem;
  margin-top: 30px;
  margin-top: 1.875rem;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0.9375rem 0.9375rem;
    margin-top: 1.25rem;
    gap: 1.25rem;
  }
}

.page-sns-flow__item:first-child {
  margin-top: 0;
}

.page-sns-flow__item-img {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 18%;
  flex: 0 1 18%;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item-img {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

.page-sns-flow__item-body {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-sns-flow__item-body-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 20px;
  gap: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item-body-head {
    gap: 0.625rem;
  }
}

.page-sns-flow__item-body-head-step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-sns-flow__item-body-head-step-en {
  font-size: 10px;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item-body-head-step-en {
    font-size: 0.5rem;
  }
}

.page-sns-flow__item-body-head-step-number {
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 700;
  line-height: 1;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item-body-head-step-number {
    font-size: 1.125rem;
  }
}

.page-sns-flow__item-body-head-step-title {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 700;

}

@media screen and (max-width:768px) {
  .page-sns-flow__item-body-head-step-title {
    font-size: 1.25rem;
  }
}

.page-sns-flow__item-body-text {
  line-height: 1.7142857143;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  padding-top: 14px;
  padding-top: 0.875rem;
}

@media screen and (max-width:768px) {
  .page-sns-flow__item-body-text {
    padding-top: 0.625rem;
  }
}

.page-sns-flow__item-body-text a {
  text-decoration: underline;
}

.page-sns-faq {
  position: relative;
}


.page-sns-faq__inner {
  padding-top: 120px;
  padding-top: 7.5rem;
}

@media screen and (max-width:768px) {
  .page-sns-faq__inner {
    padding-top: 4rem;
  }
}

.page-sns-faq__list {
  padding-top: 80px;
  padding-top: 5rem;
}

@media screen and (max-width:768px) {
  .page-sns-faq__list {
    padding-top: 2.5rem;
  }
}

.page-sns-faq__item {
  background: #F8F8F8;
  padding: 40px 24px;
  padding: 2.5rem 1.5rem;
  border-radius: 1.3125rem;
  border: 1px solid #000;
}

@media screen and (max-width:768px) {
  .page-sns-faq__item {
    padding: 1.25rem 0.875rem;
  }
}

.page-sns-faq__item h4.faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  padding-bottom: 0px;
  padding-bottom: 0rem;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-bottom: 0;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.page-sns-faq__item h4.faq__question:hover {
  opacity: 0.7;
}

.page-sns-faq__item-wrap {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.page-sns-faq__item-wrap:first-child {
  margin-top: 0;
}

.page-sns-faq__item {
  cursor: pointer;
}

.page-sns-faq__item .faq__question,
.page-sns-faq__item .faq__answer {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 80px;
  flex: 0 1 80px;
  -ms-flex: 0 1 5rem;
  flex: 0 1 5rem;

  font-weight: 500;
}

.page-sns-faq__item .faq__content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}

.page-sns-faq__item .faq__question-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 20px;
  width: 1.25rem;
  height: 23px;
  height: 1.4375rem;
  margin-right: 20px;
  margin-right: 1.25rem;
}

@media screen and (max-width:768px) {
  .page-sns-faq__item .faq__question-icon {
    font-size: 1rem;
    margin-right: 0.8125rem;
  }
}

.page-sns-faq__item .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  font-size: 16px;
  font-size: 1rem;
}

.page-sns-faq__item .faq__answer-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-right: 20px;
  margin-right: 1.25rem;
  width: 19px;
  width: 1.1875rem;
  height: 21px;
  height: 1.3125rem;
}

@media screen and (max-width:768px) {
  .page-sns-faq__item .faq__answer-icon {
    margin-right: 0.8125rem;
  }
}

.page-sns-faq__item .faq__answer {
  display: none;
}

.page-sns-faq__item.active .faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-top: 1px solid #CCCCCC;
  padding-top: 32px;
  padding-top: 2rem;
  margin-top: 32px;
  margin-top: 2rem;
}

@media screen and (max-width:768px) {
  .page-sns-faq__item.active .faq__answer {
    padding-top: 1rem;
    margin-top: 1rem;
  }
}

.page-sns-faq__item .faq__question {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-weight: 700;
}

.page-sns-faq__item .faq__question .faq__content {
  font-weight: 700;
}

.page-sns-faq__item .faq__content-arrow {
  position: absolute;
  right: 0px;
  right: 0rem;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 12px;
  width: 0.75rem;
  height: 12px;
  height: 0.75rem;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
}

.page-sns-faq__item.active .faq__content-arrow {
  -webkit-transform: translateY(-55%) rotate(-45deg);
  transform: translateY(-55%) rotate(-45deg);
}

.page-sns-faq__item .faq__content-arrow::before,
.page-sns-faq__item .faq__content-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1px;
  /* 棒の幅（太さ） */
  height: 14px;
  /* 棒の高さ */
  background: #000000;
  /* バツ印の色 */
}

.page-sns-faq__item .faq__content-arrow::before {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
  transform: translate(-50%, -50%) rotate(0deg);
}

.page-sns-faq__item .faq__content-arrow::after {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.page-sns-faq__item .single__faq.active .faq__content-arrow::before {
  -webkit-transform: translate(-50%, -50%) rotate(-90deg);
  transform: translate(-50%, -50%) rotate(-90deg);
}

.page-sns-faq__item .single__faq-wrap .single__faq {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.page-sns-faq__item .single__faq-wrap .single__faq:last-child {
  margin-bottom: 0px;
  margin-bottom: 0rem;
}

.page-sns-column__inner {
  background: transparent;
  padding-bottom: 0;
  padding-top: 180px;
  padding-top: 11.25rem;
}

@media screen and (max-width:768px) {
  .page-sns-column__inner {
    padding-top: 5rem;
  }
}



/* page-common-content-template__inner */
.page-common-content-template__head {
  margin-bottom: 40px;
}

.page-common-content-template__head-title {
  font-size: 28px;
  font-weight: 700;
}

.page-common-content-template__head-time {
  font-size: 14px;
  font-weight: 700;
  font-family: "Oswald", sans-serif;
  margin-top: 10px;
}

.page-common-content-template__inner {
  padding-top: 100px;
  padding-bottom: 100px;
  font-size: 16px;
}

@media screen and (max-width:768px) {
  .page-common-content-template__inner {
    padding-top: 64px;
    padding-bottom: 64px;
    font-ssize: 14px;
  }
}

.page-common-content-template__inner>* {
  margin-top: 40px;
}

.page-common-content-template__inner>*:first-child {
  margin-top: 0px;
}

.page-common-content-template__inner h2 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .page-common-content-template__inner h2 {
    font-size: 20px;
    font-weight: 700;
  }
}

.page-common-content-template__inner h3 {
  font-size: 20px;
  font-weight: 700;
}

@media screen and (max-width:768px) {
  .page-common-content-template__inner h3 {
    font-size: 18px;
    font-weight: 700;
  }
}

.page-common-content-template__inner h4 {
  font-size: 16px;
  font-weight: 700;
}

.page-common-content-template__inner h5 {
  font-size: 16px;
  font-weight: 700;
}

.page-common-content-template__inner h5 {
  font-size: 16px;
  font-weight: 700;
}

.page-common-content-template__inner .wp-block-list {
  list-style: revert;
  padding-left: 20px;
}


/*  */


.archive-news__item-link {
  display: flex;
  align-items: end;
  max-width: 340px;
  width: 100%;
  gap: 20px;
  margin-top: 20px;
}

@media screen and (max-width:768px) {
  .archive-news__item-link {
    flex-direction: column;
    align-items: start;
    gap: 0.5rem;
    max-width: 100%;
  }
}

.archive-news__item-link:first-child {
  margin-top: 0;
}

.archive-news__item-link-time {
  font-size: 14px;
  font-weight: 500;
  position: relative;
  border-right: 1px solid #333;
  padding-right: 24px;
}

@media screen and (max-width:768px) {
  .archive-news__item-link-time {
    border-right: 0;
    position: relative;
    padding-right: 0;
    margin-bottom: 12px;
  }
}

@media screen and (max-width:768px) {
  .archive-news__item-link-time:after {
    content: "";
    width: 20px;
    height: 1px;
    background: #333333;
    position: absolute;
    bottom: -8px;
    left: 0;
  }
}


.archive-news__item-link-text {
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (max-width:768px) {
  .archive-news__item-link-text {
    font-size: 14px;
    -webkit-line-clamp: 2;
  }
}





.--bg-top-about {
  background-image: linear-gradient(0deg, #28292a 30%, #a0a0a0 100%);
}

.--bg-top-service {
  background: #28292a;
}

.--bg-top-service .top-service__grid:before {
  background: #b2b2b2;
}

.--bg-top-data {
  background: #28292a;
}

.--bg-top-comparison__content {
  background: #28292a;
}

.--bg-top-strengths {
  background: #fff;
}

.--bg-top-strengths .top-strengths__content-flex:before {
  background: #ececec;
}

.--bg-top-company {
  background: #ececec;
}



.--bg-top-column {
  background: #0a0a0a;
}

.--bg-top-cta {
  background: #ececec;
}

.--bg-top-comparison {
  background: #fff;
}


.page-thanks-primary .page-contact__head-title-en,
.page-thanks-primary .page-contact__head-title,
.page-thanks-primary .page-contact__head-text {
  color: #333333;
}


.archive-post__item--nolink {
  pointer-events: none;
}