:root {
  /* color */
  --color-base: #1C2C43;
  --color-base-rgb: 28, 44, 67;
  --color-accent: #2ABCE7;
  --color-accent-rgb: 42, 188, 231;
  --color-blue: #D9F4F4;
  --color-red: #D72C2C;
  --color-orange: #ED8713;
  --color-dg: #38697D;
  --color-bg: #F1F1F1;
  --color-bg02: #EAF9FD;
  --color-line: rgba(var(--color-base-rgb), 0.2);
  --color-grade-o-r: linear-gradient(90deg, #ED8713, #D72C2C);
  --color-grade-r-o: linear-gradient(90deg, #D72C2C, #ED8713);
  /* transition */
  --transition-default: cubic-bezier(.25, .46, .45, .94);
  --transition-menu: .45s cubic-bezier(0.66, 0.02, 0.3, 1.03);
  /* z-index */
  --index-header: 99;
  --index-modal: 9999;
}

/* animation
------------------------------ */
@keyframes fuwafuwa {
  0% { transform: translateY(0); }
  100% { transform: translateY(20px); }
}
@keyframes btn02Txt {
  0% { transform: translateY(0); }
  100% { transform: translateY(-20px); }
}
@keyframes linerTxt {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes slideTopBottom {
  0% { transform: translateY(0); }
  100% { transform: translateY(-50%); }
}
@keyframes slideBottomTop {
  0% { transform: translateY(-50%); }
  100% { transform: translateY(0); }
}
@keyframes slideLeftRight {
  0% { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}
@keyframes bounce { 
  0% { transform: translateY(30px) scale(1);}
  30% {transform: translateY(-20px) scale(1.02);}
  50% {transform: translateY(0) scale(0.98);}
  70% {transform: translateY(-10px) scale(1.01);}
  100% { transform: translateY(0) scale(1);}
}




/* base
------------------------------ */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-word;
}

html {
  -webkit-text-size-adjust: 100%;
  position: relative;
  height: 100%;
  height: -webkit-fill-available;
  font-size: 62.5%;
}

body {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overscroll-behavior-y: none;
  color: var(--color-base);
  font-size: 1.6rem;
  line-height: normal;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.05em;
  transition: .45s var(--transition-default);
  opacity: 0;
  visibility: hidden;
}

body.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body.is-dom-load {
  opacity: 1;
  visibility: visible;
}

section {
  position: relative;
  padding: 140px 0;
}

section.bg {
  background-color: var(--color-bg);
}

main {
  position: relative;
  overflow: hidden;
}

main:not(.t-home) {
  margin-top: 100px;
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.inner.narrow {
  width: 100%;
  max-width: 1040px;
}

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

a,
button,
select {
  color: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
  cursor: pointer;
}

input {
  color: var(--color-base);
  font-family: "Noto Sans JP", sans-serif;
}

select {
  background-color: #fff;
}

a {
  -webkit-transition: var(--transition-default);
  display: block;
  text-decoration: none;
  word-break: break-all;
  transition: .35s var(--transition-default);
}

span,
sub,
sup {
  font-weight: inherit;
}

sup {
  vertical-align: top;
}

sub {
  vertical-align: bottom;
}

strong {
  font-weight: 700;
}

p.txt {
  line-height: 2;
}

.ib {
  display: inline-block;
}

.en {
  font-weight: 700;
  font-family: "Poppins", sans-serif;
}

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

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

@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
  }
  main:not(.t-home) {
    margin-top: 60px;
  }
  main {
    overflow: hidden;
  }
}

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

  section {
    padding: 80px 0;
  }
}


/* c-bgFixed
------------------------------ */
.c-bgFixed {
  background: url(../img/common/bg-fix.webp) no-repeat center center / cover;
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -10;
}
@media screen and (max-width: 767px) {
  .c-bgFixed {
    background: url(../img/common/sp/bg-fix.webp) no-repeat center center / cover;
  }
}


/* bgTxt
------------------------------ */
.c-bgTxt {
  width: 100%;
  overflow: hidden;
}

.c-bgTxt__inn {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-animation: infinity-scroll-txt 30s linear infinite;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  width: 4920px;
  animation: infinity-scroll-txt 30s linear infinite;
}

.c-bgTxt img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 820px;
  padding-right: 50px;
}


/* title01
------------------------------ */
.c-title01 {
  margin-bottom: 50px;
}
.c-title01 .en {
  font-size: 7.2rem;
  font-weight: 600;
  line-height: 1;
}
.c-title01 .jp {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}
.c-title01__white .en,
.c-title01__white .jp {
  color: #fff;
}
.c-title01__center .en,
.c-title01__center .jp {
  text-align: center;  
}
.c-title01__small .en {
  font-size: 5.8rem;
}
.c-title01__small .jp {
  font-size: 1.4rem;
}
@media screen and (max-width: 1023px) {
  .c-title01 .en {
    font-size: 5.8rem;
  }
}
@media screen and (max-width: 767px) {
  .c-title01 {
    margin-bottom: 40px;
  }
  .c-title01 .en {
    font-size: 3.8rem;
  }
  .c-title01 .jp {
    font-size: 1.4rem;
  }
  .c-title01__small {
    margin-bottom: 30px;
  }
  .c-title01__small .jp {
    margin-top: 10px;
  }
}


/* title02
------------------------------ */
.c-title02 {
  margin-bottom: 50px;
}
.c-title02 .en {
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.4;
}
.c-title02 .jp {
  font-size: 3.8rem;
  font-weight: 700;
}
.c-title02__white .en,
.c-title02__white .jp {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-title02 {
    margin-bottom: 30px;
  }
  .c-title02 .en {
    font-size: 1.2rem;
  }
  .c-title02 .jp {
    font-size: 2.8rem;
  }
}


/* c-btn01
------------------------------ */
.c-btn01 {
  background-color: var(--color-base);
  display: grid;
  align-items: center;
  grid-template-columns: 1fr 45px;
  gap: 10px;
  width: max-content;
  max-width: 270px;
  width: 100%;
  height: 60px;
  border: solid 1px var(--color-base);
  border-radius: 100px;
  font-weight: 500;
  padding: 0 10px 0 25px;
}
.c-btn01__txt .inn {
  display: block;
  overflow: hidden;
}
.c-btn01__txt .letter {
  display: inline-block;
  text-shadow: 0 20px var(--color-base);
  color: #fff;
  text-shadow: 0 20px #fff;
}
.c-btn01__arrow {
  background-color: #fff;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  overflow: hidden;
  transition: .35s var(--transition-default);
}
.c-btn01__arrow .arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn01__arrow .arrow::before,
.c-btn01__arrow .arrow::after {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  transition: .35s var(--transition-default);
}
.c-btn01__arrow .arrow::after {
  transform: translateX(-45px);
}
.c-btn01__white {
  background-color: transparent;
  border: solid 1px #fff;
}
.c-btn01__grad {
  background: var(--color-grade-o-r);
  border: none;
}
.c-btn01__grad .arrow::before,
.c-btn01__grad .arrow::after {
  background-color: var(--color-red);
}
@media (hover: hover) and (pointer: fine) {
  .c-btn01:hover .c-btn01__txt .letter {
    animation: btn02Txt 0.25s var(--transition-default) forwards;
  }
  .c-btn01:hover .c-btn01__arrow .arrow::before {
    transform: translateX(45px);
  }
  .c-btn01:hover .c-btn01__arrow .arrow::after {
    transform: translateX(0);
  }
}


/* c-btn02
------------------------------ */
.c-btn02 {
  background-color: var(--color-base);
  border-radius: 50%;
  width: 70px;
  height: 70px;
  overflow: hidden;
  transition: .35s var(--transition-default);
}
.c-btn02 .arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.c-btn02 .arrow::before,
.c-btn02 .arrow::after {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 12px;
  height: 12px;
  transition: .35s var(--transition-default);
}
.c-btn02 .arrow::after {
  background-color: var(--color-base);
  transform: translateX(-45px);
}
.c-btn02__white {
  background-color: #fff;
}
.c-btn02__white .arrow::before,
.c-btn02__white .arrow::after {
  background-color: var(--color-base);
}
@media (hover: hover) and (pointer: fine) {
  a:has(.c-btn02):hover .c-btn02 {
    background-color: #fff;
  }
  a:has(.c-btn02):hover .c-btn02 .arrow::before {
    transform: translateX(70px);
  }
  a:has(.c-btn02):hover .c-btn02 .arrow::after {
    transform: translateX(0);
  }
}


/* c-wave
------------------------------ */
.c-wave {
  position: absolute;
  left: 0;
  width: 100%;
  height: 60px;
  overflow: hidden;
}
.c-wave__bottom {
  bottom: -2px;
}
.c-wave__top {
  top: -2px;
  transform: scale(1, -1);
}
.c-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  .c-wave {
    width: 1000px;
  }
}


/* c-fixEvent
------------------------------ */
.c-fixEvent {
  position: fixed;
  bottom: 50px;
  right: 20px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: .45s var(--transition-default);
  z-index: 10;
}
.c-fixEvent.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}
.c-fixEvent a {
  background: linear-gradient(90deg, #E3EF00, #ED6713);
  border-radius: 100px 10px 10px 100px;
  display: grid;
  grid-template-columns: 65px 1fr;
  align-items: center;
  gap: 10px;
  padding: 4px 20px 4px 6px;
}
.c-fixEvent__txt {
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .c-fixEvent {
    bottom: 20px;
  }
}


/* c-entry
------------------------------ */
.c-entry__wrapper {
  border-radius: 30px;
  padding: 120px 165px 150px 70px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.c-entry__wrapper::before,
.c-entry__wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: .35s var(--transition-default);
}
.c-entry__wrapper::before {
  background: var(--color-grade-o-r);
}
.c-entry__wrapper::after {
  background: var(--color-grade-r-o);
  z-index: -2;
}
.c-entry__title {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 30px;
}
.c-entry__wrapper .txt {
  color: #fff;
  line-height: 2.2;
}
.c-entry__wrapper .c-btn02 {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 70px;
  margin: auto;
  width: 95px;
  height: 95px;
}
.c-entry__wrapper .c-btn02 .arrow::before {
  background-color: var(--color-red);
  width: 16px;
  height: 16px;
}
.c-entry__wrapper .c-btn02 .arrow::after {
  background-color: var(--color-orange);
  width: 16px;
  height: 16px;
  transform: translateX(-95px);
}
.c-entry__button {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 0 70px;
  z-index: 2;
}
.c-entry__button_item {
  border-radius: 100px;
  display: grid;
  place-content: center;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  width: 100%;
  height: 100px;
}
.c-entry__button_item.faq {
  background-color: #fff;
}
.c-entry__button_item.requirement {
  background-color: var(--color-base);
  color: #fff;
}
.c-entry__button_item::after {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  right: 40px;
  bottom: 0;
  margin: auto;
  width: 16px;
  height: 16px;
  transition: .35s var(--transition-default);
}
.c-entry__button_item.faq::after {
  background-color: var(--color-base);
}
.c-entry__button_item.requirement::after {
  background-color: #fff;
}
.c-entry__bg {
  display: flex;
  opacity: 0.3;
  pointer-events: none;
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 1;
  width: 1665*4;
  animation: linerTxt 40s linear infinite;
}
.c-entry__bg img {
  flex-shrink: 0;
  padding-right: 40px;
  width: 1665px;
}
@media screen and (max-width: 767px) {
  .c-entry {
    padding-bottom: 200px;
  }
  .c-entry__wrapper {
    padding: 50px 20px 20px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .c-entry__title {
    font-size: 2.4rem;
    margin-bottom: 15px;
  }
  .c-entry__button {
    gap: 10px;
    position: relative;
    bottom: inherit;
    margin-top: 10px;
    padding: 0;
  }
  .c-entry__button_item {
    font-size: 1.6rem;
    height: 70px;
  }
  .c-entry__button_item::after {
    right: 20px;
    width: 10px;
    height: 10px;
  }
  .c-entry__wrapper .c-btn02 {
    position: relative;
    right: inherit;
    margin: 0 0 0 auto;
    width: 60px;
    height: 60px;
  }
  .c-entry__wrapper .c-btn02 .arrow::before,
  .c-entry__wrapper .c-btn02 .arrow::after {
    width: 10px;
    height: 10px;
  }
  .c-entry__bg {
    top: 30%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .c-entry__wrapper:hover::before {
    opacity: 0;
  }
  .c-entry__button_item.faq:hover {
    background-color: var(--color-base);
    color: #fff;
  }
  .c-entry__button_item.requirement:hover {
    background-color: var(--color-accent);
  }
  .c-entry__button_item.faq:hover::after,
  .c-entry__button_item.requirement:hover::after {
    background-color: #fff;
  }
}


/* c-lowmv
------------------------------ */
.c-lowmv {
  background: linear-gradient(90deg, var(--color-base), rgba(var(--color-accent-rgb), 0.01));
  padding: 20px 0 80px;
}
.c-lowmv__list {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 80px; 
  padding: 10px 0;
  position: relative;
  overflow-x: scroll;
}
.c-lowmv__list::-webkit-scrollbar {
  height: 5px;
}
.c-lowmv__list::-webkit-scrollbar-track {
  background-color: transparent;
}
.c-lowmv__list::-webkit-scrollbar-thumb {
  background-color: rgba(var(--color-base-rgb), 0.4);
}
.c-lowmv__list li {
  flex-shrink: 0;
}
.c-lowmv__list li:not(:last-of-type) {
  padding-right: 20px;
  position: relative;
}
.c-lowmv__list li:not(:last-of-type)::before {
  content: '/';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  color: #fff;
  font-size: 1.2rem;
}
.c-lowmv__list li:last-of-type {
  pointer-events: none;
  opacity: 0.7;
}
.c-lowmv__list a {
  color: #fff;
  font-size: 1.2rem;
}
.c-lowmv .c-title01 .en {
  font-size: 8.2rem;
}
.c-lowmv .c-title01 .jp {
  font-size: 1.8rem;
}
@media screen and (max-width: 1023px) {
  .c-lowmv .c-title01 .en {
    font-size: 6.2rem;
  }
  .c-lowmv .c-title01 .jp {
    font-size: 1.4rem;
    margin-top: 13px;
  }
}
@media screen and (max-width: 767px) {
  .c-lowmv {
    padding: 10px 0 80px;
  }
  .c-lowmv__list {
    margin-bottom: 50px;
  }
  .c-lowmv .c-title01 .en {
    font-size: 5.0rem;
  }
  .c-lowmv .c-title01 .jp {
    font-size: 1.2rem;
  }
}


/* c-secLine
------------------------------ */
.c-secLine::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  width: calc(100% - 40px);
  max-width: 1000px;
  height: 1px;
  margin: auto;
  border-top: dashed 1px var(--main-color);
  content: "";
}


/* c-pager
------------------------------ */
.c-pager {
  margin-top: 70px;
}

.c-pager .page-numbers {
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.c-pager .page-numbers li {
  display: grid;
  place-items: center;
  width: 35px;
  height: 35px;
  overflow: hidden;
  border-radius: 50%;
}

.c-pager .page-numbers li > * {
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
}
.c-pager .page-numbers .current {
  background-color: var(--main-color);
  color: #fff;
}
.c-pager .page-numbers .prev,
.c-pager .page-numbers .next {
  position: relative;
}
.c-pager .page-numbers .prev::after,
.c-pager .page-numbers .next::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 10px;
  height: 10px;
  margin: auto;
  border-bottom: solid 1px var(--main-color);
  border-left: solid 1px var(--main-color);
  content: "";
}
.c-pager .page-numbers .prev::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.c-pager .page-numbers .next::after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}


/* header
------------------------------ */
.header {
  -webkit-transition: .35s var(--transition-default);
  display: grid;
  z-index: var(--index-header);
  position: fixed;
  top: 0;
  left: 0;
  grid-template-columns: 190px 1fr;
  width: 100%;
  height: 100px;
  gap: 40px;
  transition: .35s var(--transition-default);
}
.header.scroll {
  background-color: #fff;
}
.header__logo {
  position: relative;
  place-content: center;
  width: 190px;
  padding-left: 25px;
}
.header__logo_txt {
  display: block;
  color: #fff;
  font-size: 1.23rem;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0;
  padding-top: 5px;
  transition: .35s var(--transition-default);
}
.header.scroll .header__logo_txt {
  color: var(--color-base);
}
.header__navPc {
  display: grid;
  grid-template-columns: 1fr 220px;
  align-items: center;
  gap: 0 50px;
}
.header__navPc_head {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.header__navPc_head .link {
  border: solid 1px var(--color-dg);
  font-size: 1.2rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 33px;
  position: relative;
  opacity: 0.6;
}
.header__navPc_head .link::after {
  content: '';
  background: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 10px;
  margin: auto;
  width: 8px;
  height: 8px;
}
.header__navPc_link {
  display: flex;
  justify-content: flex-end;
  gap: 50px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.header__navPc_item {
  transition: .35s var(--transition-default);
}
.header__navPc_item .label,
.header__navPc_item a {
  font-size: 1.6rem;
}
.header__navPc_item .label {
  padding-right: 18px;
  position: relative;
}
.header__navPc_item .label::after {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: rotate(90deg);
  width: 8px;
  height: 8px;
  transition: .35s var(--transition-default);
}
.header__navPc_item .label.active {
  color: var(--color-accent);
  font-weight: 700;
}
.header__navPc_item .label.active::after {
  background-color: var(--color-accent);
  transform: rotate(-90deg);
}
.header__navPc_item .label.active + .header__navPc_mega {
  visibility: visible;
  opacity: 1;
}
.header__navPc_mega {
  background-color: #fff;
  border-radius: 30px;
  display: grid;
  grid-template-columns: 300px 1fr;
  position: absolute;
  top: 120px;
  left: 0;
  right: 0;
  margin: auto;
  padding: 70px 40px;
  max-width: 1000px;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: .35s var(--transition-default);
}
.header__navPc_mega .c-title01 {
  margin-bottom: 0;
}
.header__navPc_mega .c-title01 .en {
  font-size: 5.8rem;
}
.header__navPc_mega .c-title01 .jp {
  font-size: 1.4rem;
}
.header__navPc_mega_link {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
.header__navPc_mega_link .c-btn01 {
  border-bottom: solid 1px var(--color-base);
  border-radius: 0;
  grid-template-columns: 45px 1fr;
  padding: 0 0 6px 0;
  min-width: 260px;
}
.header__navPc_mega_link .letter {
  color: var(--color-base);
  text-shadow: 0 20px var(--color-base);
}
.header__navPc_mega_link .c-btn01__arrow {
  background-color: var(--color-base);
}
.header__navPc_mega_link .c-btn01__arrow .arrow::before, 
.header__navPc_mega_link .c-btn01__arrow .arrow::after {
  background-color: #fff;
}
.header__navPc_sns {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header__navPc_sns li {
  width: 22px;
  height: 22px;
}
.header__navPc_button {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  height: 100%;
}
.header__navPc_button a {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 50px;
}
.header__navPc_button a.b-requirement {
  background-color: var(--color-base);
}
.header__navPc_button a.b-entry {
  position: relative;
}
.header__navPc_button a.b-entry::before {
  content: '';
  background: var(--color-grade-o-r);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: .35s var(--transition-default);
}
.header__navPc_button a.b-entry::after {
  content: '';
  background: var(--color-grade-r-o);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}
.header__navPc_overlay {
  background-color: rgba(var(--color-base-rgb), 0.3);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 100px;
  left: 0;
  width: 100vw;
  height: calc(100dvh - 100px);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transition: .35s var(--transition-default);
}
.header__navPc_overlay.active {
  visibility: visible;
  opacity: 1;
}
.header__navSp {
  display: none;
  grid-template-columns: 110px 60px;
  margin-left: auto;
}
.header__navSp_entry {
  background: var(--color-grade-o-r);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  justify-content: center;
  text-align: center;
  font-size: 1.0rem;
  font-weight: 700;
  position: relative;
  width: 100%;
  height: 60px;
}
.header__navSp_entry::before {
  content: '';
  background: url(../img/common/icon-boat.svg) no-repeat center center / contain;
  width: 44px;
  height: 25px;
}
.header__navSp_button {
  background-color: var(--color-base);
  width: 100%;
  height: 60px;
  position: relative;
}
.header__navSp_button::before,
.header__navSp_button::after {
  content: '';
  background: url(../img/common/icon-wave.svg) no-repeat center center / contain;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 7px;
  transition: .35s var(--transition-default);
}
.header__navSp_button::before {
  top: 17px;
}
.header__navSp_button::after {
  bottom: 17px;
}
.header__navSp_button span {
  background: url(../img/common/icon-wave.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 30px;
  height: 7px;
  transition: .35s var(--transition-default);
}
.header__navSp_button span::before,
.header__navSp_button span::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  border-radius: 10px;
  width: 30px;
  height: 2px;
  opacity: 0;
}
.header__navSp_button span::before {
  transform: rotate(45deg);
}
.header__navSp_button span::after {
  transform: rotate(-45deg);
}
.header__navSp_button.active::before,
.header__navSp_button.active::after {
  opacity: 0;
}
.header__navSp_button.active span {
  background: none;
}
.header__navSp_button.active span::before,
.header__navSp_button.active span::after {
  opacity: 1;
}
.header__navSp_link {
  background-color: rgba(var(--color-base-rgb), 0.9);
  backdrop-filter: blur(10px);
  position: absolute;
  top: 60px;
  left: 0;
  padding: 50px 20px 100px;
  width: 100vw;
  height: calc(100dvh - 60px);
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  transition: .35s var(--transition-default);
}
.header__navSp_link.active {
  opacity: 1;
  visibility: visible;
}
.header__navSp_label {
  border-bottom: solid 1px #fff;
  color: #fff;
  font-weight: 700;
  opacity: 0.4;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.header__navSp_wrap + .header__navSp_wrap {
  margin-top: 50px;
}
.header__navSp_item + .header__navSp_item {
  margin-top: 20px;
}
.header__navSp_item a {
  color: #fff;
  position: relative;
  padding-left: 20px;
}
.header__navSp_item a::before {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
}
.header__navSp_wrap:last-of-type a {
  font-weight: 700;
  padding: 0;
}
.header__navSp_wrap:last-of-type a::before {
  content: none;
}
.header__navSp_sns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 50px;
}
.header__navSp_sns li {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1023px) {
  .header {
    grid-template-columns: 116px 1fr;
    gap: 0;
    height: 60px;
  }
  .header.active {
    background-color: rgba(var(--color-base-rgb), 0.9);
  }
  .header.active .header__logo_txt {
    color: #fff !important;
  }
  .header__logo {
    width: 110px;
    padding: 10px 0 10px 20px;
  }
  .header__logo_txt {
    font-size: 0.65rem;
    padding-top: 3px;
  }
  .header__navPc {
    display: none;
  }
  .header__navSp {
    display: grid;
  }
}

@media (hover: hover) and (pointer: fine) {
  .header__navPc_head .link:hover {
    background-color: #fff;
  }
  .header__navPc_sns a:hover {
    opacity: 0.6;
  }
  .header__navPc_item a:hover {
    opacity: 0.6;
  }
  .header__navPc_mega_link .c-btn01:hover {
    opacity: 1;
  }
  .header__navPc_button a.b-requirement:hover {
    background-color: var(--color-accent);
  }
  .header__navPc_button a.b-entry:hover::before {
    opacity: 0;
  }
}


/* footer
------------------------------ */
.footer {
  background-color: var(--color-base);
  padding: 60px 0 30px;
}
.footer__wrapper {
  display: grid;
  grid-template-columns: 450px 1fr;
  grid-template-rows: 68px 1fr;
  align-items: start;
  gap: 15px 20px;
}
.footer__logo {
  width: 190px;
}
.footer__logo_txt {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1;
}
.footer__sns {
  display: flex;
  align-items: center;
  gap: 20px;
  grid-column: 1 / 2;
  grid-row: 2 / 3;
}
.footer__sns li {
  width: 28px;
  height: 28px;
}
.footer__link {
  grid-column: 2 / 3;
  grid-row: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.footer__link_wrap:last-of-type a {
  font-weight: 700;
}
.footer__link_label {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  opacity: 0.4;
  margin-bottom: 15px;
}
.footer__link_item + .footer__link_item {
  margin-top: 15px;
}
.footer__link_item a {
  color: #fff;
  font-size: 1.4rem;
}
.footer__bottom {
  border-top: solid 1px #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 30px;
}
.footer__bottom_copy {
  color: #fff;
  font-size: 1.2rem;
}
.footer__bottom a {
  color: #fff;
  font-size: 1.4rem;
  padding-right: 30px;
  position: relative;
}
.footer__bottom a::after {
  content: '';
  background: url(../img/common/icon-tab.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 1023px) {
  .footer__wrapper {
    grid-template-columns: 230px 1fr;
  }
}
@media screen and (max-width: 767px) {
  .footer__wrapper {
    display: block;
  }
  .footer__logo {
    margin: 0 auto;
  }
  .footer__sns {
    justify-content: center;
    margin-top: 15px;
  }
  .footer__link {
    grid-template-columns: 1fr;
    gap: 50px;
    margin-top: 30px;
  }
  .footer__link_label {
    border-bottom: solid 1px #fff;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }
  .footer__link_item + .footer__link_item {
    margin-top: 20px;
  }
  .footer__link_wrap:not(:last-of-type) .footer__link_item a {
    padding-left: 20px;
    position: relative;
  }
  .footer__link_wrap:not(:last-of-type) .footer__link_item a::before {
    content: '';
    mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 8px;
  }
  .footer__bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 10px;
    padding: 25px 20px 0;
    margin: 50px calc(50% - 50vw) 0;
    width: 100vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer__sns a:hover {
    opacity: .6;
  }
  .footer__link_item a:hover {
    color: var(--color-accent);
  }
  .footer__bottom a:hover {
    text-decoration: underline;
  }
}


/* top
------------------------------ */
.t-home__bg {
  position: relative;
}
.t-home__bg::after {
  content: '';
  background: url(../img/top/img-bg.webp) no-repeat bottom center / cover;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  z-index: -2;
}
.t-home .mv {
  position: relative;
  width: 100%;
  height: 100dvh;
  min-height: 776px;
}
.t-home .mv .inner {
  display: grid;
  place-content: center;
  padding-top: 100px;
  height: 100%;
}
.t-home .mv__img {
  animation: fuwafuwa 5s ease-in-out infinite alternate;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  max-width: 1500px;
  height: max-content;
  z-index: -1;
}
.t-home .mv__txt {
  color: #fff;
  font-size: 11rem;
  font-weight: 700;
  text-align: center;
}
.t-home .mv__en {
  color: #fff;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
}
.t-home .mv__news {
  background-color: rgba(var(--color-base-rgb), 0.4);
  border-radius: 30px 0 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 30px 30px 20px;
  width: 332px;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  transition: .65s var(--transition-default);
}
.t-home .mv__news.hidden {
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
}
.t-home .mv__news_title {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 15px;
}
.t-home .mv__news_title .en {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
}
.t-home .mv__news_title .jp {
  color: #fff;
  font-size: 1.0rem;
}
.t-home .mv__news .instagram-item {
  list-style: none;
}
.t-home .mv__news .instagram-item img,
.t-home .mv__news .instagram-item video {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-home .mv__news .instagram-caption {
  display: none;
}
.t-home .mv__news .instagram-date {
  color: #fff;
  font-size: 1.2rem;
  margin-top: 10px;
}
.t-home .about {
  padding: 400px 0 330px;
}
.t-home .about__cloud_left {
  background: url(../img/top/img-cloud_left.webp) no-repeat left center / contain;
  width: 612px;
  height: 950px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.t-home .about__cloud_right {
  background: url(../img/top/img-cloud_right.webp) no-repeat right center / contain;
  width: 580px;
  height: 1062px;
  position: absolute;
  top: -380px;
  right: 0;
  z-index: -1;
}
.t-home .about__title {
  margin-bottom: 30px;
}
.t-home .about__title .en {
  color: #fff;
  font-size: 2.0rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 20px;
}
.t-home .about__title .jp {
  color: #fff;
  font-size: 7.2rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}
.t-home .about .txt {
  color: #fff;
  text-align: center;
  line-height: 2.4;
}
.t-home .business {
  background-color: var(--color-base);
  padding: 140px 0 200px;
  z-index: 1;
}
.t-home .business::after {
  content: '';
  background: url(../img/top/img-business_bg.webp) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 2000px;
  height: 100%;
  z-index: -1;
}
.t-home .business .txt {
  color: #fff;
  line-height: 2.2;
}
.t-home .business .c-btn01 {
  margin-top: 50px;
}
.t-home .business__wrapper {
  border-radius: 30px;
  background: url(../img/top/img-mieruca.webp) no-repeat center center / cover;
  overflow: hidden;
  margin-top: 88px;
  padding: 80px 20px;
  position: relative;
}
.t-home .business__wrap {
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px 30px;
  width: 100%;
  max-width: 584px;
  margin: 0 auto;
}
.t-home .business__wrap_title {
  margin-bottom: 20px;
}
.t-home .business__wrap_title .en {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
}
.t-home .business__wrap_title .jp {
  font-size: 3.6rem;
  font-weight: 700;
  text-align: center;
}
.t-home .business__wrap .txt {
  color: var(--color-base);
  text-align: center;
}
.t-home .business__wrapper .c-btn02 {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.t-home .interview {
  background: linear-gradient(var(--color-blue), #fff);
}
.t-home .interview .inner {
  z-index: 1;
}
.t-home .interview .txt {
  font-weight: 500;
  line-height: 2.2;
  width: max-content;
}
.t-home .interview .c-btn01 {
  margin-top: 50px;
  max-width: 290px;
}
.t-home .interview__slide {
  position: relative;
  margin-top: -180px;
  z-index: -1;
}
.t-home .interview__slide .swiper-wrapper {
  pointer-events: none !important;
}
.t-home .interview__slide .swiper-slide {
  pointer-events: auto !important;
}
.t-home .interview__wrap {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: end;
  gap: 15px;
  opacity: 0;
  padding: 0 20px;
  transform: translateY(20px);
  transition: .35s var(--transition-default);
  margin-top: 10px;
}
.t-home .interview__name {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.t-home .interview__job {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.t-home .interview__txt {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
.t-home .interview__wrap.visible {
  opacity: 1;
  transform: translateY(0);
}
.t-home .interview__pagination {
  position: absolute;
  bottom: 0;
  left: inherit;
  right: 0;
  width: 275px;
  border-left: solid 1px var(--color-line);
  z-index: 1;
}
.t-home .interview__pagination::before {
  content: '';
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  left: -1px;
  width: 1px;
  height: 100%;
  transform: scale(1, .25);
  transform-origin: top;
  transition: .35s var(--transition-default);
}
.t-home .interview__pagination[data-current="2"]::before {
  transform: scale(1, .5);
}
.t-home .interview__pagination[data-current="3"]::before {
  transform: scale(1, .75);
}
.t-home .interview__pagination[data-current="4"]::before {
  transform: scale(1, 1);
}
.t-home .swiper-pagination-bullet {
  background-color: transparent !important;
  width: inherit;
  height: inherit;
  margin: 0 !important;
  padding: 0;
  border-radius: 0;
  font-weight: 700;
  line-height: 1.5;
  padding: 20px 0 20px 30px;
  opacity: 0.3;
  z-index: 10;
}
.t-home .swiper-pagination-bullet-active {
  opacity: 1;
}
.t-home .interview__pagination .num {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1;
  padding-right: 10px;
}
.t-home .culture {
  background-color: #fff;
  padding: 100px 0 0;
  margin-top: -1px;
}
.t-home .culture__wrap {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px 100px;
}
.t-home .culture .c-title01 {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  margin: 0;
}
.t-home .culture .txt {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.t-home .culture__button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.t-home .culture__img {
  margin-top: 175px;
  overflow: hidden;
  position: relative;
}
.t-home .culture__img .swiper-wrapper {
  transition-timing-function: linear;
}
.t-home .info {
  background-color: #fff;
  padding-top: 120px;
}
.t-home .info .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.t-home .info__wrap {
  width: 100%;
  overflow: hidden;
}
.t-home .info__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 9px;
}
.t-home .info .instagram-item img,
.t-home .info .instagram-item video {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-home .info .instagram-caption {
  font-size: 1.4rem;
  line-height: 1.5;
  margin-top: 10px;
  display: -webkit-box;             
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.t-home .info .instagram-date {
  font-size: 1.4rem;
  opacity: 0.4;
  margin-top: 5px;
}
.t-home .message {
  position: relative;
  min-height: calc(100dvh - 100px);
  overflow: hidden;
  padding: 0;
}
.t-home .message .inner {
  position: relative;
  height: calc(100dvh - 100px);
  max-width: 1160px;  
}
.t-home .message__wrapper {
  position: absolute;
  inset: 0;
  height: 100%;
}
.t-home .message__wrap {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 30px;
  padding: 50px 70px;
  min-height: 490px;
}
.t-home .message__wrapper.message01 .message__wrap {
  background-image: url(../img/top/img-message01.webp);
}
.t-home .message__wrapper.message02 .message__wrap {
  background-image: url(../img/top/img-message02.webp);
}
.t-home .message__title {
  margin-bottom: 20px;
}
.t-home .message__title .en {
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
}
.t-home .message__title .jp {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  margin-top: 20px;
}
.t-home .message__wrapper .txt {
  font-size: 1.4rem;
  line-height: 2;
  max-width: 660px;
}

@media screen and (max-width: 1023px) {
  .t-home .about__title .jp {
    font-size: 5.2rem;
  }
  .t-home .interview__slide {
    margin-top: 0;
  }
  .t-home .interview__wrap {
    grid-template-columns: 60px 1fr;
    margin-top: 20px;
  }
  .t-home .interview__name {
    font-size: 3.0rem;
  }
  .t-home .interview__job {
    font-size: 1.2rem;
  }
  .t-home .interview__txt {
    font-size: 1.6rem;
  }
  .t-home .interview__pagination {
    right: 20px;
    width: 220px;
  }
  .t-home .swiper-pagination-bullet {
    padding: 10px 0 10px 20px;
  }
  .t-home .interview__pagination .num {
    font-size: 1.6rem;
  }
  .t-home .message {
    position: relative;
    min-height: inherit;
    padding: 140px 0 0;
  }
  .t-home .message .inner {
    height: auto;
    max-width: 1200px;
  }
  .t-home .message__wrapper {
    position: relative;
  }
  .t-home .message__wrapper + .message__wrapper {
    margin-top: 140px;
  }
  .t-home .message__wrapper.message01 .message__wrap {
    background-image: url(../img/top/sp/img-message01.webp);
  }
  .t-home .message__wrapper.message02 .message__wrap {
    background-image: url(../img/top/sp/img-message02.webp);
  }
  .t-home .message__wrap {
    background-position: bottom right;
    background-size: contain;
    top: 0;
    left: 0;
    transform: translate(0, 0);
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .t-home__bg::after {
    background: url(../img/top/sp/img-bg.webp) no-repeat bottom center / cover;
  }
  .t-home .mv {
    min-height: 667px;
    padding-top: 90px;
  }
  .t-home .mv .inner {
    display: block;
    place-content: inherit;
    padding: 0;
    max-width: inherit;
  }
  .t-home .mv__txt {
    font-size: 5.0rem;
    line-height: 1.2;
    margin-bottom: 15px;
  }
  .t-home .mv__en {
    font-size: 1.0rem;
    letter-spacing: 0;
  }
  .t-home .mv__en {
    font-size: 1.0rem;
  }
  .t-home .mv__news {
    padding: 20px 20px 10px;
    width: 294px;
  }
  .t-home .mv__news_title {
    margin-bottom: 10px;
  }
  .t-home .mv__news_title .en,
  .t-home .mv__news_title .jp {
    letter-spacing: 0;
  }
  .t-home .mv__news .instagram-date {
    margin-top: 5px;
  }
  .t-home .about {
    padding: 100px 0 230px;
  }
  .t-home .about__title .en {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
  .t-home .about__title .jp {
    font-size: 3.6rem;
  }
  .t-home .about__cloud_left {
    width: 200px;
    height: 310px;
    top: 50px;
  }
  .t-home .about__cloud_right {
    width: 160px;
    height: 310px;
    top: 50px;
  }
  .t-home .business {
    padding: 100px 0 180px;
  }
  .t-home .business .c-btn01 {
    margin-left: auto;
  }
  .t-home .business::after {
    top: 59%;
    left: 21%;
    width: 1000px;
  }
  .t-home .business__wrapper {
    padding: 60px 20px 20px;
    width: 100vw;
    margin: 334px calc(50% - 50vw) 0;
  }
  .t-home .business__wrap_title .en {
    font-size: 1.2rem;
  }
  .t-home .business__wrap_title .jp {
    font-size: 2.8rem;
  }
  .t-home .business__wrap .txt {
    font-size: 1.2rem;
  }
  .t-home .business__wrapper .c-btn02 {
    position: relative;
    bottom: inherit;
    right: inherit;
    margin-top: 10px;
    margin-left: auto;
  }
  .t-home .interview .txt {
    width: auto;
  }
  .t-home .interview .c-btn01 {
    margin-top: 20px;
    margin-left: auto;
  }
  .t-home .interview__slide {
    padding: 210px 20px 0;
    margin-top: 40px;
  }
  .t-home .interview__img {
    margin: 0 20px;
  }
  .t-home .interview__pagination {
    bottom: inherit;
    top: 0;
    left: 0;
    width: 100%;
  }
  .t-home .swiper-pagination-bullet {
    font-size: 1.6rem;
  }
  .t-home .interview__pagination .num {
    font-size: 2.0rem;
  }
  .t-home .culture {
    padding: 0;
  }
  .t-home .culture__wrap {
    display: block;
  }
  .t-home .culture .c-title01 {
    margin-bottom: 40px;
  }
  .t-home .culture__button {
    justify-content: flex-end;
    margin-top: 40px;
  }
  .t-home .culture__img {
    margin-top: 50px;
  }
  .t-home .info .inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .t-home .info__wrap + .info__wrap {
    border-top: solid 1px var(--color-line);
    padding-top: 50px;
  }
  .t-home .info__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 7px;
  }
  .t-home .info .instagram-caption,
  .t-home .info .instagram-date {
    font-size: 1.2rem;
  }
  .t-home .message {
    padding: 80px 0;
  }
  .t-home .message__wrap {
    background-size: cover;
    padding: 50px 20px 360px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .t-home .message__title {
    margin-bottom: 20px;
  }
  .t-home .message__title .en {
    font-size: 1.2rem;
  }
  .t-home .message__title .jp {
    font-size: 2.2rem;
    margin-top: 20px;
  }
  .t-home .message__wrapper .txt {
    font-size: 1.2rem;
  }
  .t-home .message__wrapper + .message__wrapper {
    margin-top: 70px;
  }
}


/* company
------------------------------ */
.t-company .vision {
  background-color: #fff;
  margin-top: -1px;
  padding: 100px 0 120px;
}
.t-company .vision .inner {
  background: url(../img/company/img-map.webp) no-repeat top center / contain;
}
.t-company .vision__title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 30px;
}
.t-company .vision__title + .txt {
  text-align: center;
  line-height: 2.2;
}
.t-company .vision__wrapper {
  background-color: var(--color-bg);
  border-radius: 20px;
  overflow: hidden;
  margin: 50px auto 0;
  max-width: 1000px;
  width: 100%;
}
.t-company .vision__wrapper_title {
  background-color: rgba(var(--color-base-rgb), 0.2);
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  padding: 9px 0px;
}
.t-company .vision__wrap {
  display: grid;
  grid-template-columns: calc(47% - 15px) calc(53% - 15px);
  align-items: center;
  gap: 30px;
  padding: 30px 40px;
}
.t-company .vision__wrap_list {
  border-top: solid 1px var(--color-line);
  height: 100%;
}
.t-company .vision__wrap_list li {
  border-bottom: solid 1px var(--color-line);
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  padding: 10px 0;
  height: calc(100% / 3);
}
.t-company .vision__wrap_list .title {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 30px;
}
.t-company .vision__wrap_list .num {
  background-color: var(--color-base);
  border-radius: 50%;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  width: 30px;
  height: 30px;
}
.t-company .vision__wrap_list .txt {
  font-size: 1.2rem;
  line-height: 1.8;
}
.t-company .vision__wrap_txt {
  font-size: 1.4rem;
  line-height: 2;
}
.t-company .example__wrapper {
  position: relative;
}
.t-company .example__illust {
  position: absolute;
}
.t-company .example__illust.illust01 {
  top: -44px;
  right: 277px;
  width: 177px;
}
.t-company .example__illust.illust02 {
  top: -68px;
  right: 70px;
  width: 149px;
}
.t-company .example__title {
  background-color: var(--color-base);
  border-radius: 30px 30px 0 0;
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  padding: 20px 70px;
}
.t-company .example__title small {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.t-company .example__wrap {
  background-color: #fff;
  border-radius: 0 0 30px 30px;
  display: grid;
  grid-template-columns: 1fr 275px;
  gap: 45px 20px;
  padding: 40px 70px 80px;
}
.t-company .example__list {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 20px;
}
.t-company .example__list_img {
  border-radius: 20px;
  overflow: hidden;
}
.t-company .example__list_title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-top: 15px;
}
.t-company .example__list_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 10px;
}
.t-company .example__list_tag li {
  background-color: rgba(var(--color-base-rgb), 0.1);
  border-radius: 100px;
  font-size: 1.2rem;
  line-height: 1;
  padding: 8px 12px;
}
.t-company .job {
  background-color: #fff;
  padding-top: 120px;
}
.t-company .job__wrapper {
  background-color: var(--color-bg);
  border-radius: 30px 0 0 30px;
  display: grid;
  grid-template-columns: 220px 1fr;
  grid-template-rows: max-content 1fr;
  gap: 20px 60px;
  padding: 30px 0 30px 30px;
  position: relative;
  z-index: 1;
}
.t-company .job__wrapper + .job__wrapper {
  margin-top: 10px;
}
.t-company .job__wrapper::after {
  content: '';
  background-color: var(--color-bg);
  border-radius: 30px 0 0 30px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.t-company .job__img {
  grid-row: 1 / 3;
}
.t-company .job__img img {
  border-radius: 17px;
}
.t-company .job__title {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  font-size: 2.8rem;
  font-weight: 700;
}
.t-company .job__title small {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
}
.t-company .job__wrapper .txt {
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.t-company .job__interview {
  border-top: dashed 1px var(--color-line);
  grid-column: 2 / 3;
  padding-top: 10px;
}
.t-company .job__interview_title {
  color: rgba(var(--color-base-rgb), 0.4);
  font-size: 1.6rem;
  font-weight: 500;
  padding-left: 30px;
  position: relative;
  margin-bottom: 8px;
}
.t-company .job__interview_title::before {
  content: '';
  background: url(../img/common/icon-fukidashi.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 24px;
  height: 24px;
}
.t-company .job__interview_list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}
.t-company .job__interview_item a {
  border-radius: 10px;
  position: relative;
  overflow: hidden;
}
.t-company .job__interview_item .c-btn02 {
  position: absolute;
  bottom: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
}
.t-company .job__interview_item .c-btn02 .arrow::before,
.t-company .job__interview_item .c-btn02 .arrow::after {
  width: 8px;
  height: 8px;
}
.t-company .area {
  background: url(../img/company/bg-area.webp) no-repeat bottom center / cover;
  padding: 0;
}
.t-company .area .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.t-company .area__wrapper {
  padding: 100px 0;
}
.t-company .area__wrap {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 15px 20px;
  max-width: 510px;
  width: 100%;
}
.t-company .area__wrap + .area__wrap {
  margin-top: 15px;
}
.t-company .area__label {
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
}
.t-company .area__wrap .txt {
  color: #fff;
  line-height: 1.8;
}
.t-company .area__img {
  width: calc(100vw / 2);
  margin: 0 calc(25% - 25vw) 0 0;
}

@media screen and (max-width: 1023px) {
  .t-company .example__illust.illust01 {
    top: 26px;
    right: 127px;
    width: 110px;
  }
  .t-company .example__illust.illust02 {
    top: -48px;
    right: 40px;
    width: 100px;
  }
  .t-company .example__title {
    padding: 20px 40px;
  }
  .t-company .example__wrap {
    padding: 40px 30px 80px;
  }
  .t-company .job__interview_list {
    grid-template-columns: repeat(4, 1fr);
  }
  .t-company .area__wrapper {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .t-company .vision .inner {
    background: none;
  }
  .t-company .vision__title {
    font-size: 2.8rem;
    text-align: left;
  }
  .t-company .vision__title + .txt {
    text-align: left;
  }
  .t-company .vision__wrapper_title {
    font-size: 1.8rem;
    padding: 13px 0px;
  }
  .t-company .vision__wrap {
    grid-template-columns: 1fr;
    padding: 25px 20px;
  }
  .t-company .vision__wrap_list li {
    grid-template-columns: 100px 1fr;
    height: auto;
    min-height: 90px;
  }
  .t-company .vision__wrap_list .title {
    grid-template-columns: 26px 1fr;
    gap: 5px;
    font-size: 1.4rem;
    line-height: 26px;
  }
  .t-company .vision__wrap_list .num {
    font-size: 1.4rem;
    width: 26px;
    height: 26px;
  }
  .t-company .example {
    padding: 170px 0 160px;
  }
  .t-company .example__illust.illust01 {
    top: -84px;
    right: 88px;
    width: 98px;
  }
  .t-company .example__illust.illust02 {
    right: 0;
    width: 82px;
  }
  .t-company .example__title {
    font-size: 2.2rem;
    line-height: 1.6;
    padding: 20px;
  }
  .t-company .example__title small {
    font-size: 1.4rem;
  }
  .t-company .example__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px 40px;
  }
  .t-company .example__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 9px;
    grid-column: 1 / 2;
  }
  .t-company .example__list_img {
    border-radius: 10px;
  }
  .t-company .example__list_title {
    font-size: 1.0rem;
    margin-top: 5px;
  }
  .t-company .example__list_tag {
    margin-top: 5px;
  }
  .t-company .example__list_tag li {
    font-size: 1.0rem;
    padding: 5px 10px;
  }
  .t-company .job__wrapper {
    grid-template-columns: 1fr;
    padding: 20px 0 20px 20px;
    gap: 10px;
  }
  .t-company .job__img {
    grid-row: 1 / 2;
  }
  .t-company .job__title {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    font-size: 2.2rem;
    margin-top: 10px;
  }
  .t-company .job__wrapper .txt {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .t-company .job__interview {
    grid-column: 1 / 2;
  }
  .t-company .job__interview_list {
    grid-template-columns: repeat(2, 1fr);
  }
  .t-company .area {
    background: url(../img/company/sp/bg-area.webp) no-repeat bottom center / cover;
    padding: 80px 0;
  }
  .t-company .area .inner {
    grid-template-columns: 1fr;
  }
  .t-company .area__wrapper {
    padding: 0;
  }
  .t-company .area__wrap + .area__wrap {
    margin-top: 10px;
  }
  .t-company .area__label {
    font-size: 1.6rem;
    margin-bottom: 5px;
  }
  .t-company .area__wrap .txt {
    font-size: 1.2rem;
  }
  .t-company .area__img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}


/* mieruka
------------------------------ */
.t-mieruca .introduction {
  background: linear-gradient(#fff, transparent 80%);
  padding-bottom: 0;
}
.t-mieruca .introduction__wrap {
  position: absolute;
  top: 0;
  left: 20px;
}
.t-mieruca .introduction__title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 50px;
}
.t-mieruca .introduction__title small {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.t-mieruca .introduction__title + .txt {
  line-height: 2.2;
}
.t-mieruca .introduction__img {
  position: relative;
}
.t-mieruca .introduction__img button {
  position: absolute;
  background-color: #fff;
  border: solid 2px var(--color-base);
  border-radius: 100px;
  display: grid;
  grid-template-columns: 30px 1fr;
  align-items: center;
  gap: 10px;
  padding: 5px 20px 5px 5px;
}
.t-mieruca .introduction__img button.btn01 {
  top: 215px;
  right: 30px;
}
.t-mieruca .introduction__img button.btn02 {
  bottom: 145px;
  left: 43px;
}
.t-mieruca .introduction__img button.btn03 {
  bottom: 30px;
  right: 20px;
}
.t-mieruca .introduction__img button .icon {
  background-color: var(--color-base);
  border-radius: 50%;
  position: relative;
  width: 30px;
  height: 30px;
}
.t-mieruca .introduction__img button .icon::before,
.t-mieruca .introduction__img button .icon::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 2px;
}
.t-mieruca .introduction__img button .icon::after {
  transform: rotate(90deg);
}
.t-mieruca .introduction__img button .txt {
  font-size: 1.4rem;
  font-weight: 700;
}
.t-mieruca .flow {
  padding-bottom: 0;
}
.t-mieruca .flow__wrapper {
  border-radius: 30px;
  overflow: hidden;
}
.t-mieruca .flow__title {
  background-color: var(--color-base);
  color: #fff;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
  padding: 20px 70px;
}
.t-mieruca .flow__title small {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
}
.t-mieruca .flow__wrap {
  background-color: #fff;
  display: grid;
  grid-template-columns: calc(48% - 40px) calc(52% - 40px);
  align-items: center;
  gap: 80px;
  padding: 50px 70px;
}
.t-mieruca .flow__video {
  border-radius: 20px;
  overflow: hidden;
}
.t-mieruca .flow__video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.t-mieruca .flow__item {
  background-color: var(--color-bg);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 0 20px;
  overflow: hidden;
}
.t-mieruca .flow__item + .flow__item {
  margin-top: 5px;
}
.t-mieruca .flow__item .step {
  background-color: var(--color-base);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  text-align: center;
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  place-content: center;
  height: 100%;
}
.t-mieruca .flow__item .step .num {
  display: block;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.05em;
}
.t-mieruca .flow__list_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  grid-column: 2 / 3;
  padding: 30px 20px 5px 0;
} 
.t-mieruca .flow__item .txt {
  font-size: 1.2rem;
  line-height: 1.8;
  grid-column: 2 / 3;
  padding: 0 20px 30px 0;
} 
.t-mieruca__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: var(--index-modal);
  transition: .35s var(--transition-default);
  opacity: 0;
  visibility: hidden;
}
.t-mieruca__modal.active {
  opacity: 1;
  visibility: visible;
}
.t-mieruca__modal .modal__overlay {
  background-color: rgba(var(--color-base-rgb), 0.3);
  backdrop-filter: blur(20px);
  width: 100%;
  height: 100%
}
.t-mieruca__modal .modal__content {
  background-color: #fff;
  border-radius: 30px;
  padding: 30px 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 520px;
  width: calc(100% - 40px);
  height: calc(100dvh - 100px);
  max-height: max-content;
  /* overflow: hidden; */
  display: flex;
  flex-direction: column;
}
.t-mieruca__modal .modal__close {
  display: grid;
  grid-template-columns: 45px;
  align-items: center;
  gap: 10px;
  position: absolute;
  top: -10px;
  right: -10px;
  z-index: 10;
}
.t-mieruca__modal .modal__close .cross {
  background-color: #D2D5D9;
  border-radius: 50%;
  position: relative;
  width: 45px;
  height: 45px;
}
.t-mieruca__modal .modal__close .cross::before,
.t-mieruca__modal .modal__close .cross::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 2px;
}
.t-mieruca__modal .modal__close .cross::before {
  transform: rotate(45deg);
}
.t-mieruca__modal .modal__close .cross::after {
  transform: rotate(-45deg);
}
.t-mieruca__modal .modal__img {
  flex-shrink: 0;
  margin: 0 0 20px;
  position: relative;
  overflow: hidden;
  touch-action: pan-x !important;
}
.t-mieruca__modal .modal__img:has(.swiper-pagination) {
  margin: 0 0 10px;
  padding-bottom: 20px;
}
.t-mieruca__modal .modal__img .swiper-slide {
  height: max-content;
}
.t-mieruca__modal .modal__img .swiper-pagination {
  position: absolute;
  bottom: 0;
}
.t-mieruca__modal .modal__img .swiper-pagination-bullet {
  background-color: var(--color-base);
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
}
.t-mieruca__modal .modal__img .swiper-pagination-bullet-active {
  position: relative;
}
.t-mieruca__modal .modal__img .swiper-pagination-bullet-active::after {
  content: '';
  border: solid 1px var(--color-base);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
}
.t-mieruca__modal .modal__wrap {
  overflow-y: auto;
  /* height: 190px; */
}
.t-mieruca__modal .modal__wrap::-webkit-scrollbar {
  width: 5px;
}
.t-mieruca__modal .modal__wrap::-webkit-scrollbar-thumb {
  background-color: var(--color-line);
}
.t-mieruca__modal .modal__wrap::-webkit-scrollbar-track {
  background-color: rgba(var(--color-base-rgb), 0.1);
}
.t-mieruca__modal .modal__wrap_title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}
.t-mieruca__modal .modal__wrap .txt {
  font-size: 1.4rem;
}
@media screen and (max-width: 1200px) {
  .t-mieruca .introduction__img button {
    grid-template-columns: 2.5vw 1fr;
    gap: 0.833vw;
    padding: 0.417vw 1.667vw 0.417vw 0.417vw;
  }
  .t-mieruca .introduction__img button.btn01 {
    top: 17.917vw;
    right: 2.5vw;
  }
  .t-mieruca .introduction__img button.btn02 {
    bottom: 12.083vw;
    left: 3.583vw;
  }
  .t-mieruca .introduction__img button.btn03 {
    bottom: 2.5vw;
    right: 1.667vw;
  }
  .t-mieruca .introduction__img button .icon {
    width: 2.5vw;
    height: 2.5vw;
  }
  .t-mieruca .introduction__img button .icon::before,
  .t-mieruca .introduction__img button .icon::after {
    width: 1.333vw;
    height: 0.167vw;
  }
  .t-mieruca .introduction__img button .txt {
    font-size: 1.167vw;
  }
}
@media screen and (max-width: 1023px) {
  .t-mieruca .introduction__title {
    font-size: 3.4rem;
    margin-bottom: 20px;
  }
  .t-mieruca .introduction__title + .txt {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .t-mieruca .introduction__wrap {
    position: relative;
    left: 0;
  }
  .t-mieruca .introduction__title + .txt {
    font-size: 1.4rem;
  }
  .t-mieruca .introduction__img {
    height: 575px;
    width: 100vw;
    margin: 30px calc(50% - 50vw) 0;
  }
  .t-mieruca .introduction__img_inner {
    width: 768px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .t-mieruca .introduction__img img {
    width: 768px;
    height: 100%;
    object-fit: cover;
  }
  .t-mieruca .introduction__img button {
    grid-template-columns: 30px 1fr;
    gap: 10px;
    padding: 4px 20px 4px 6px;
  }
  .t-mieruca .introduction__img button.btn01 {
    top: 350px;
    right: inherit;
    left: 220px;
  }
  .t-mieruca .introduction__img button.btn02 {
    bottom: inherit;
    top: 125px;
    left: 219px;
  }
  .t-mieruca .introduction__img button.btn03 {
    bottom: 0;
    right: 220px;
  }
  .t-mieruca .introduction__img button .icon {
    width: 30px;
    height: 30px;
  }
  .t-mieruca .introduction__img button .icon::before,
  .t-mieruca .introduction__img button .icon::after {
    width: 16px;
    height: 2px;
  }
  .t-mieruca .introduction__img button .txt {
    font-size: 1.2rem;
  }
  .t-mieruca__modal .modal__content {
    padding: 20px;
  }
  .t-mieruca .flow__title {
    font-size: 2.2rem;
    padding: 20px;
  }
  .t-mieruca .flow__title small {
    font-size: 1.4rem;
  }
  .t-mieruca .flow__wrap {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 30px 20px 40px;
  }
  .t-mieruca .flow__item .step .num {
    font-size: 2.6rem;
  }
  .t-mieruca .flow__list_title {
    font-size: 1.6rem;
    padding: 20px 20px 5px 0;
  }
  .t-mieruca .flow__item .txt {
    padding: 0 20px 20px 0;
  }
  .t-mieruca__modal .modal__wrap_title {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }
}


/* interview 一覧
------------------------------ */
.t-interview .interview {
  background: linear-gradient(#fff, var(--color-blue));
  padding: 140px 0 170px;
  position: relative;
}
.t-interview .interview__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 160px;
  padding: 0 60px;
  margin: 0 auto;
  max-width: 1000px;
}
.t-interview .interview__wrap {
  display: grid;
  grid-template-columns: 75px 1fr;
  align-items: end;
  gap: 15px;
  margin-top: 20px;
}
.t-interview .interview__name {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1;
  grid-column: 1 / 2;
  grid-row: 1 / 2;
}
.t-interview .interview__job {
  grid-column: 2 / 3;
  grid-row: 1 / 2;
}
.t-interview .interview__txt {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  grid-column: 1 / 3;
  grid-row: 2 / 3;
}
.t-interview .instagram {
  background-color: #fff;
}
.t-interview .instagram .inner {
  max-width: 1040px;
}
.t-interview .instagram__title {
  display: grid;
  grid-template-columns: 34px max-content;
  align-items: center;
  gap: 5px 12px;
  margin: 0 auto 50px;
  width: max-content;
}
.t-interview .instagram__title .en {
  font-size: 4.0rem;
  font-weight: 600;
}
.t-interview .instagram__title_txt {
  grid-column: 2 / 3;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.t-interview .instagram__head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-interview .instagram__head a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 15px;
  width: max-content;
}
.t-interview .instagram__head a .line {
  border-bottom: solid 1px var(--color-base);
}
.t-interview .instagram__head_txt {
  font-size: 1.4rem;
  line-height: 2;
  grid-column: 2 / 4;
}
.t-interview #instagram-list-interview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.t-interview #instagram-list-interview .instagram-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.t-interview #instagram-list-interview .instagram-caption,
.t-interview #instagram-list-interview .instagram-date {
  display: none;
}
@media screen and (max-width: 1023px) {
  .t-interview .interview__wrap {
    grid-template-columns: 60px 1fr;
    margin-top: 20px;
  }
  .t-interview .interview__name {
    font-size: 3.0rem;
  }
  .t-interview .interview__job {
    font-size: 1.2rem;
  }
  .t-interview .interview__txt {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .t-interview .interview {
    padding: 100px 0 160px;
  }
  .t-interview .interview__list {
    grid-template-columns: 1fr;
    padding: 0 20px;
  }
  .t-interview .interview__img {
    padding: 0 20px;
  }
  .t-interview .instagram__title {
    grid-template-columns: 26px max-content;
    margin-bottom: 30px;
  }
  .t-interview .instagram__title .icon {
    width: 26px;
    height: 26px;
  }
  .t-interview .instagram__title .en {
    font-size: 3.2rem;
  }
  .t-interview .instagram__title_txt {
    font-size: 1.2rem;
  }
  .t-interview .instagram__head {
    grid-template-columns: 1fr;
  }
  .t-interview .instagram__head_txt {
    grid-column: 1 / 2;
  }
  .t-interview #instagram-list-interview {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 7px;
  }
}


/* interview 詳細
------------------------------ */
.t-interview .head {
  background-color: #fff;
  padding: 20px 0 60px;
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
}
.t-interview.kk .head {
  background-image: url(../img/interview/kk/img-head.webp);
}
.t-interview.sm .head {
  background-image: url(../img/interview/sm/img-head.webp);
}
.t-interview.st .head {
  background-image: url(../img/interview/st/img-head.webp);
}
.t-interview.sk .head {
  background-image: url(../img/interview/sk/img-head.webp);
}
.t-interview .head .c-lowmv__list {
  margin-bottom: 60px;
}
.t-interview .head .c-lowmv__list li:not(:last-of-type)::before,
.t-interview .head .c-lowmv__list a {
  color: var(--color-base);
}
.t-interview .head__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.t-interview .head__title .en {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.4;
}
.t-interview .head__title_txt {
  margin-bottom: 60px;
}
.t-interview .head__title_txt .jp {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
}
.t-interview .head__title_txt .num {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 13.8rem;
  font-weight: 500;
  line-height: 1;
  opacity: 0.1;
  margin-top: 10px;
}
.t-interview .head__title_txt .num small {
  display: inline-block;
  font-size: 5.2rem;
  margin-top: 10px;
  vertical-align: top;
}
.t-interview .head__name {
  display: grid;
  grid-template-columns: max-content 1fr;
  align-items: center;
  gap: 0 10px;
}
.t-interview .head__name_initial {
  font-size: 4.8rem !important;
  font-weight: 700 !important;
  opacity: 1 !important;
  grid-column: 1 / 3;
}
.t-interview .head__name_job {
  grid-column: 1 / 2;
  display: inline-block;
  background-color: var(--color-base);
  padding: 4px 15px 5px;
  border-radius: 100px;
  color: #fff;
}
.t-interview .head__words {
  border-radius: 20px;
  box-shadow: 0 10px 15px rgba(var(--color-base-rgb), 0.08);
  margin-top: 30px;
  max-width: 480px;
}
.t-interview .head__words_title {
  background-color: var(--color-accent);
  border-radius: 20px 20px 0 0;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  position: relative;
}
.t-interview .head__words_title::after {
  content: '';
  background: url(../img/interview/icon-word.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 100px;
  height: 108px;
}
.t-interview .head__words .txt {
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  font-size: 2.0rem;
  font-weight: 500;
  padding: 21px 30px;
}
.t-interview .intro {
  background-color: #fff;
  padding: 140px 0 100px;
  margin-top: -1px;
}
.t-interview .intro .inner {
  max-width: 1040px;
}
.t-interview .intro__title {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  position: relative;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.t-interview .intro__title::after {
  content: '';
  background: url(../img/common/icon-wave02.svg) space center center / contain;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 110px;
  height: 15px;
}
.t-interview .intro .txt {
  text-align: center;
}
.t-interview .question {
  background: linear-gradient(#fff, var(--color-blue));
  padding: 75px 0 140px;
  margin-top: -1px;
}
.t-interview .question .inner {
  display: grid;
  grid-template-columns: 46% 54%;
}
.t-interview .question__img {
  margin-right: 70px;
  position: relative;
  z-index: 1;
}
.t-interview .question__img .main {
  border-radius: 20px;
  width: calc(100% - 30px);
}
.t-interview .question__img .bg {
  border-radius: 20px;
  width: calc(100% - 30px);
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: -1;
  overflow: hidden;
}
.t-interview .question__img .bg::before {
  content: '';
  border-radius: 20px;
  background-color: rgba(var(--color-base-rgb), 0.1);
  backdrop-filter: blur(20px);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.t-interview .question__wrap {
  position: relative;
}
.t-interview .question__wrap + .question__wrap {
  margin-top: 60px;
}
.t-interview .question__wrap dt {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 15px;
  margin-bottom: 10px;
}
.t-interview .question__wrap .num {
  background-color: var(--color-accent);
  border-radius: 50%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
}
.t-interview .question__title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
}
.t-interview .question__wrap dd {
  line-height: 2;
  padding: 0 0 0 75px;
  position: relative;
}
.t-interview .question__wrap dd::before {
  content: '';
  background-color: var(--color-accent);
  position: absolute;
  top: 0;
  left: 30px;
  width: 1px;
  height: 100%;
}
.t-interview .transition {
  position: relative;
}
.t-interview .message {
  background-color: #fff;
  padding: 80px 0 140px;
  margin-top: -1px;
}
.t-interview .message .inner {
  display: grid;
  grid-template-columns: 135px 1fr;
  align-items: center;
  gap: 62px;
}
.t-interview .message__wrap {
  background-color: var(--color-bg02);
  border-radius: 30px;
  padding: 40px;
  position: relative;
}
.t-interview .message__wrap::before {
  content: '';
  background-color: var(--color-bg02);
  clip-path: polygon(100% 0, 0 50%, 100% 100%);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -25px;
  margin: auto;
  width: 30px;
  height: 30px;
}
.t-interview .message__title {
  color: var(--color-accent);
  font-size: 2.0rem;
  font-weight: 700;
  position: relative;
  padding-left: 45px;
  margin-bottom: 12px;
}
.t-interview .message__title::before {
  content: '';
  background: url(../img/common/icon-document.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  width: 35px;
  height: 35px;
}
@media screen and (max-width: 767px) {
  .t-interview .head {
    padding: 10px 0 50px;
  }
  .t-interview.kk .head {
    background-image: url(../img/interview/kk/sp/img-head.webp);
  }
  .t-interview.sm .head {
    background-image: url(../img/interview/sm/sp/img-head.webp);
  }
  .t-interview.st .head {
    background-image: url(../img/interview/st/sp/img-head.webp);
  }
  .t-interview.sk .head {
    background-image: url(../img/interview/sk/sp/img-head.webp);
  }
  .t-interview .head .c-lowmv__list {
    margin-bottom: 20px;
  }
  .t-interview .head__title .en {
    font-size: 1.4rem;
  }
  .t-interview .head__title_txt {
    margin-bottom: 20px;
  }
  .t-interview .head__title_txt .jp {
    font-size: 1.6rem;
  }
  .t-interview .head__title_txt .num {
    font-size: 9.0rem;
  }
  .t-interview .head__title_txt .num small {
    font-size: 3.2rem;
  }
  .t-interview .head__name {
    display: block;
  }
  .t-interview .head__name_initial {
    font-size: 3.2rem !important;
  }
  .t-interview .head__name_job {
    font-size: 1.2rem;
    padding: 2px 15px 4px;
    margin: 5px 0;
  }
  .t-interview .head__words {
    position: absolute;
    bottom: -160px;
    left: 20px;
    width: calc(100% - 40px);
    z-index: 1;
  }
  .t-interview .head__words_title {
    font-size: 1.4rem;
    padding: 12px;
  }
  .t-interview .head__words_title::after {
    right: 0;
    width: 88px;
    height: 95px;
  }
  .t-interview .head__words .txt {
    font-size: 1.4rem;
    padding: 20px 30px;
  }
  .t-interview .intro {
    padding: 170px 0 80px;
  }
  .t-interview .intro__title {
    font-size: 2.4rem;
  }
  .t-interview .intro .txt {
    text-align: left;
  }
  .t-interview .question {
    padding: 40px 0 80px;
  }
  .t-interview .question .inner {
    grid-template-columns: 1fr;
  }
  .t-interview .question__img {
    margin: 0;
    padding-bottom: 20px;
    margin-bottom: 50px;
  }
  .t-interview .question__img .main {
    width: calc(100% - 20px);
  }
  .t-interview .question__img .bg {
    top: 20px;
    left: 20px;
    width: calc(100% - 20px);
  }
  .t-interview .question__wrap dt {
    grid-template-columns: 50px 1fr;
  }
  .t-interview .question__wrap .num {
    font-size: 2.0rem;
    line-height: 50px;
    width: 50px;
    height: 50px;
  }
  .t-interview .question__title {
    font-size: 1.8rem;
  }
  .t-interview .question__wrap dd {
    padding: 0 0 0 66px;
  }
  .t-interview .question__wrap dd::before {
    left: 25px;
  }
  .t-interview .transition {
    height: 495px;
  }
  .t-interview .transition img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .t-interview .message {
    padding: 40px 0 80px;
  }
  .t-interview .message .inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .t-interview .message__icon {
    width: 135px;
    margin: 0 auto;
  }
  .t-interview .message__wrap {
    padding: 40px 20px;
  }
  .t-interview .message__wrap::before {
    left: 0;
    right: 0;
    top: -20px;
    bottom: inherit;
    transform: rotate(90deg);
  }
  .t-interview .message__title {
    font-size: 1.8rem;
    padding-left: 35px;
    margin: 0 auto 12px;
    width: max-content;
  }
  .t-interview .message__title::before {
    width: 30px;
    height: 30px;
  }
}


/* environment
------------------------------ */
.t-environment .intro {
  background-color: #fff;
  margin-top: -1px;
  padding: 0;
  overflow: hidden;
}
.t-environment .intro__wrapper {
  max-width: 530px;
  width: 100%;
  padding: 150px 0;
}
.t-environment .intro__title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 50px;
}
.t-environment .intro .txt {
  font-size: 1.8rem;
  line-height: 2.4;
}
.t-environment .intro .c-btn01 {
  margin-top: 60px;
}
.t-environment .intro .inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}
.t-environment .intro__slide {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: absolute;
  top: 0;
  right: 0;
  margin-right: calc(50% - 50vw);
  width: 50%;
  height: 100%;
  z-index: 2;
}
.t-environment .intro__slide::before,
.t-environment .intro__slide::after {
  content: '';
  background: linear-gradient(#fff 0, transparent 20%);
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.t-environment .intro__slide::after {
  top: 1px;
  transform: scale(1, -1);
}
.t-environment .intro__slide .slide:first-of-type .slide__inner {
  animation: slideBottomTop 30s linear infinite;
}
.t-environment .intro__slide .slide:last-of-type .slide__inner {
  transform: translateY(-50%);
  animation: slideTopBottom 30s linear infinite;
}
.t-environment .office {
  background-color: #fff;
  margin-top: -1px;
}
.t-environment .office__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.t-environment .office__tab {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
.t-environment .office__tab button {
  background-color: var(--color-line);
  border-radius: 100px;
  color: rgba(var(--color-base-rgb), 0.5);
  font-weight: 700;
  text-align: center;
  padding: 24px 20px;
}
.t-environment .office__tab button.active {
  background-color: var(--color-base);
  color: #fff;
}
.t-environment .office__panel {
  display: none;
}
.t-environment .office__panel.active {
  display: block;
}
.t-environment .office__panel_wrap {
  background-color: var(--color-bg);
  padding: 67px;
}
.t-environment .office__img {
  max-width: 642px;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.t-environment .office__img button {
  background: url(../img/environment/icon-camera.svg) no-repeat center center / contain;
  position: absolute;
  color: transparent;
  overflow: hidden;
  width: 34px;
  height: 34px;
}
.t-environment .office__img .button01 {
  top: 39px;
  right: 16px;
}
.t-environment .office__img .button02 {
  top: 207px;
  right: 184px;
}
.t-environment .office__img .button03 {
  bottom: 269px;
  left: 184px;
}
.t-environment .office__img .button04 {
  bottom: 232px;
  left: 314px;
}
.t-environment .office__img .button05 {
  bottom: 272px;
  right: 203px;
}
.t-environment .office__img .button06 {
  bottom: 132px;
  right: 93px;
}
.t-environment .office__img .button07 {
  bottom: -12px;
  right: 300px;
}
.t-environment .office__img .button08 {
  top: 502px;
  left: 29px;
}
.t-environment .office__img .button09 {
  bottom: 380px;
  left: 310px;
}
.t-environment .office__img .button10 {
  bottom: 100px;
  right: 50px;
}
.t-environment .office__img .button11 {
  top: 280px;
  left: 61px;
}
.t-environment .office__img .button12 {
  top: 75px;
  right: 246px;
}
.t-environment .office__img .button13 {
  bottom: 220px;
  right: 106px;
}
.t-environment .office__img .button14 {
  bottom: 90px;
  left: 262px;
}
.t-environment .office__caution {
  font-size: 1.4rem;
  padding-top: 10px;
}
.t-environment .office__abroad {
  margin-top: 50px;
}
.t-environment .office__abroad .swiper-slide img {
  aspect-ratio: 312 / 234;
  background-color: var(--color-bg);
  border-radius: 20px;
  object-fit: contain;
}
.t-environment .office__abroad .swiper-slide figcaption {
  font-weight: 700;
  margin-top: 10px;
  padding-left: 20px;
  position: relative;
}
.t-environment .office__abroad .swiper-slide figcaption::before {
  content: '';
  background: url(../img/environment/icon-map.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 20px;
  height: 20px;
}
.t-environment .office__instagram {
  padding-top: 120px;
}
.t-environment .office .instagram__title {
  display: grid;
  grid-template-columns: 34px max-content;
  align-items: center;
  gap: 5px 12px;
  margin: 0 auto 50px;
  width: max-content;
}
.t-environment .office .instagram__title .en {
  font-size: 4.0rem;
  font-weight: 600;
}
.t-environment .office .instagram__title_txt {
  grid-column: 2 / 3;
  font-size: 1.4rem;
  font-weight: 500;
  text-align: center;
}
.t-environment .office .instagram__head {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.t-environment .office .instagram__head a {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 15px;
  width: max-content;
}
.t-environment .office .instagram__head a .line {
  border-bottom: solid 1px var(--color-base);
}
.t-environment .office .instagram__head_txt {
  font-size: 1.4rem;
  line-height: 2;
  grid-column: 2 / 4;
}
.t-environment .office #instagram-list-workplace {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 30px;
}
.t-environment .office #instagram-list-workplace .instagram-item img {
  width: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
.t-environment .office #instagram-list-workplace .instagram-caption,
.t-environment .office #instagram-list-workplace .instagram-date {
  display: none;
}
.t-environment .support {
  background-color: #F7F7F7;
}
.t-environment .support__wrapper {
  max-width: 1000px;
  margin: 0 auto;
}
.t-environment .support__img {
  margin: 60px 0 0;
}
.t-environment .welfare {
  background-color: #fff;
}
.t-environment .welfare__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto;
}
.t-environment .welfare__item {
  background-color: var(--color-bg02);
  border-radius: 20px;
  padding: 30px;
}
.t-environment .welfare__img {
  display: block;
  max-width: 170px;
  width: 100%;
  margin: 0 auto;
}
.t-environment .welfare__title {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  margin: 25px 0 10px;
}
.t-environment__modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: var(--index-modal);
  transition: .35s var(--transition-default);
  opacity: 0;
  visibility: hidden;
}
.t-environment__modal.active {
  opacity: 1;
  visibility: visible;
}
.t-environment__modal .modal__overlay {
  background-color: rgba(var(--color-base-rgb), 0.3);
  backdrop-filter: blur(20px);
  width: 100%;
  height: 100%
}
.t-environment__modal .modal__content {
  background-color: #fff;
  border-radius: 30px;
  padding: 20px 40px 90px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1000px;
  width: calc(100% - 40px);
  height: calc(100dvh - 100px);
  max-height: max-content;
}
.t-environment__modal .modal__close {
  display: grid;
  grid-template-columns: 1fr 45px;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  font-weight: 500;
}
.t-environment__modal .modal__close .cross {
  background-color: var(--color-line);
  border-radius: 50%;
  position: relative;
  width: 45px;
  height: 45px;
}
.t-environment__modal .modal__close .cross::before,
.t-environment__modal .modal__close .cross::after {
  content: '';
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 16px;
  height: 2px;
}
.t-environment__modal .modal__close .cross::before {
  transform: rotate(45deg);
}
.t-environment__modal .modal__close .cross::after {
  transform: rotate(-45deg);
}
.t-environment__modal .modal__slide {
  max-width: 600px;
  margin: 30px auto 0;
  position: relative;
  overflow: hidden;
}
.t-environment__modal .modal__slide img {
  aspect-ratio: 600 / 400;
  object-fit: contain;
  background-color: var(--color-bg);
}
.t-environment__modal .modal__slide figcaption {
  font-size: 2.0rem;
  font-weight: 700;
  margin-top: 10px;
}
.t-environment__modal .modal__content .swiper-pagination {
  position: relative;
  margin-top: 20px;
  bottom: 0;
}
.t-environment__modal .modal__content .swiper-pagination-bullet {
  background-color: var(--color-base);
  width: 10px;
  height: 10px;
  margin: 0 7px !important;
}
.t-environment__modal .modal__content .swiper-pagination-bullet-active {
  background-color: var(--color-base);
  position: relative;
}
.t-environment__modal .modal__content .swiper-pagination-bullet-active::after {
  content: '';
  border: solid 1px var(--color-base);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 180%;
  height: 180%;
}
@media screen and (min-width: 768px) {
  .t-environment .office__abroad .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 32px;
  }
}
@media screen and (max-width: 1023px) {
  .t-environment .intro .inner {
    grid-template-columns: 1fr;
  }
  .t-environment .intro__wrapper {
    padding: 100px 0 0;
  }
  .t-environment .intro__title {
    font-size: 2.8rem;
    margin-bottom: 30px;
  }
  .t-environment .intro .c-btn01 {
    margin-top: 30px;
  }
  .t-environment .intro__slide {
    grid-template-columns: 1fr;
    position: relative;
    margin: 0 calc(50% - 50vw);
    width: 100vw;
  }
  .t-environment .intro__slide .slide__inner {
    display: flex;
  }
  .t-environment .intro__slide .slide__item {
    flex-shrink: 0;
    width: 44vw;
  }
  .t-environment .intro__slide .slide:first-of-type .slide__inner {
    animation: linerTxt 20s linear infinite;
  }
  .t-environment .intro__slide .slide:last-of-type .slide__inner {
    transform: translateY(0);
    animation: slideLeftRight 20s linear infinite;
  }
  .t-environment .office__img {
    max-width: 594px;
  }
  .t-environment .office__img .button02 {
    top: 191px;
    right: 170px;
  }
  .t-environment .office__img .button03 {
    bottom: 253px;
    left: 169px;
  }
  .t-environment .office__img .button04 {
    left: 289px;
  }
  .t-environment .office__img .button05 {
    bottom: 252px;
    right: 187px;
  }
  .t-environment .office__img .button06 {
    bottom: 112px;
    right: 73px;
  }
  .t-environment .office__img .button07 {
    right: 276px;
  }
  .t-environment .office__img .button08 {
    top: 463px;
    left: 26px;
  }
  .t-environment .office__img .button09 {
    bottom: 350px;
    left: 290px;
  }
  .t-environment .office__img .button10 {
    bottom: 80px;
  }
  .t-environment .office__img .button11 {
    top: 259px;
    left: 54px;
  }
  .t-environment .office__img .button12 {
    top: 68px;
    right: 227px;
  }
  .t-environment .office__img .button13 {
    bottom: 200px;
    right: 97px;
  }
  .t-environment .office__img .button14 {
    bottom: 80px;
    left: 242px;
  }
}
@media screen and (max-width: 767px) {
  .t-environment .intro__wrapper {
    padding: 80px 0 0;
  }
  .t-environment .intro .txt {
    font-size: 1.4rem;
  }
  .t-environment .office__tab {
    gap: 5px;
    margin-bottom: 20px;
  }
  .t-environment .office__tab button {
    line-height: 1.3;
    padding: 10px 20px;
  }
  .t-environment .office__panel_wrap {
    padding: 50px 20px 80px;
  }
  .t-environment .office__img {
    max-width: 295px;
  }
  .t-environment .office__img .button01 {
    top: 17px;
    right: 6px;
  }
  .t-environment .office__img .button02 {
    top: 86px;
    right: 74px;
  }
  .t-environment .office__img .button03 {
    bottom: 125px;
    left: 76px;
  }
  .t-environment .office__img .button04 {
    bottom: 103px;
    left: 134px;
  }
  .t-environment .office__img .button05 {
    bottom: 125px;
    right: 84px;
  }
  .t-environment .office__img .button06 {
    bottom: 50px;
    right: 28px;
  }
  .t-environment .office__img .button07 {
    bottom: -28px;
    right: 128px;
  }
  .t-environment .office__img .button08 {
    top: 213px;
    left: 4px;
  }
  .t-environment .office__img .button09 {
    bottom: 170px;
    left: 134px;
  }
  .t-environment .office__img .button10 {
    bottom: 39px;
    right: 13px;
  }
  .t-environment .office__img .button11 {
    top: 110px;
    left: 19px;
  }
  .t-environment .office__img .button12 {
    top: 26px;
    right: 105px;
  }
  .t-environment .office__img .button13 {
    bottom: 100px;
    right: 40px;
  }
  .t-environment .office__img .button14 {
    bottom: 44px;
    left: 111px;
  }
  .t-environment .office__caution {
    font-size: 1.0rem;
    padding-top: 10px;
  }
  .t-environment .office__abroad {
    margin-top: 30px;
    padding: 0 10px;
    position: relative;
    overflow: hidden;
  }
  .t-environment .office__abroad .swiper-pagination {
    position: relative;
    bottom: 0;
    margin-top: 20px;
  }
  .t-environment .office__abroad .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 7px !important;
  }
  .t-environment .office__abroad .swiper-pagination-bullet-active {
    background-color: var(--color-base);
    position: relative;
  }
  .t-environment .office__abroad .swiper-pagination-bullet-active::after {
    content: '';
    border: solid 1px var(--color-base);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180%;
    height: 180%;
  }
  .t-environment .office__instagram {
    padding-top: 80px;
  }
  .t-environment .office .instagram__title {
    grid-template-columns: 26px max-content;
    margin-bottom: 30px;
  }
  .t-environment .office .instagram__title .icon {
    width: 26px;
    height: 26px;
  }
  .t-environment .office .instagram__title .en {
    font-size: 3.2rem;
  }
  .t-environment .office .instagram__title_txt {
    font-size: 1.2rem;
  }
  .t-environment .office .instagram__head {
    grid-template-columns: 1fr;
  }
  .t-environment .office .instagram__head_txt {
    grid-column: 1 / 2;
  }
  .t-environment .office #instagram-list-workplace {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 7px;
  }
  .t-environment .support__img {
    overflow-x: scroll;
  }
  .t-environment .support__img_inner {
    width: 650px;
  }
  .t-environment .welfare__list {
    grid-template-columns: 1fr;
  }
  .t-environment__modal .modal__content {
    padding: 20px 20px 40px;
  }
  .t-environment__modal .modal__slide {
    margin: 10px auto 0;
  }
  .t-environment__modal .modal__slide figcaption {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}


/* data
------------------------------ */
.t-data .contents {
  background-color: #fff;
  margin-top: -1px;
  padding: 120px 0 70px;
}
.t-data .contents + .contents {
  padding: 70px 0;
}
.t-data .contents.last {
  padding-bottom: 140px;
}
.t-data .contents .inner {
  max-width: 1040px;
}
.t-data .contents__list {
  display: grid;
  gap: 20px;
}
.t-data .contents__list.col2 {
  grid-template-columns: repeat(2, 1fr);
}
.t-data .contents__list.col3 {
  grid-template-columns: repeat(3, 1fr);
}
.t-data .contents__item {
  background-color: var(--color-bg02);
  border-radius: 20px;
  padding: 30px 10px;
  position: relative;
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transform-origin: bottom;
  transition: .35s var(--transition-default);
}
.t-data .contents__item.visible {
  animation: bounce .5s var(--transition-default) forwards;
  opacity: 1;
  visibility: visible;
}
.t-data .contents__title {
  font-size: 2.0rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}
.t-data .contents__txt {
  text-align: center;
}
.t-data .contents__txt .label {
  display: block;
  font-size: 2.6rem;
  font-weight: 700;
  text-align: left;
}
.t-data .contents__txt .num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 6.0rem;
  font-weight: 500;
  line-height: 1;
}
.t-data .contents__txt .unit {
  font-size: 2.4rem;
  font-weight: 500;
}
.t-data .contents__txt .small {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 2;
  line-height: 1.4;
}
.t-data .contents__icon {
  margin: 30px auto 0;
  flex: 1;
}
.t-data .contents__icon img {
  height: 100%;
  object-fit: contain;
  object-position: bottom;
}
.t-data .contents__item .chart {
  position: relative;
}
.t-data .contents__item .chart .contents__txt {
  position: absolute;
  top: 45%;
  left: 54.2%;
  transform: translate(-50%, -50%);
  width: max-content;
}

.t-data .contents__item.item01,
.t-data .contents__item.item02,
.t-data .contents__item.item03 {
  display: flex;
  flex-direction: column;
}
.t-data .contents__item.item01 .contents__icon {
  width: 130px;
}
.t-data .contents__item.item02 {
  padding-left: 24px;
  padding-right: 24px;
}
.t-data .contents__item.item02 .contents__txt {
  text-align: left;
}
.t-data .contents__item.item02 .contents__txt .num {
  font-size: 4.0rem;
}
.t-data .contents__item.item02 .contents__txt .num.fix {
  width: 63px;
  display: inline-block;
  text-align: right;
}
.t-data .contents__item.item02 .contents__txt .unit {
  font-size: 1.4rem;
}
.t-data .contents__item.item02 .contents__txt .small {
  margin-bottom: 4px;
}
.t-data .contents__item.item02 .contents__txt .count + .small {
  margin-top: 7px;
}
.t-data .contents__item.item02 .contents__icon {
  width: 122px;
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.t-data .contents__item.item03 .contents__icon {
  width: 152px;
}
.t-data .contents__item.item04 {
  grid-column: 1 / 4;
  background-image: url(../img/data/img-bg04.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  padding: 30px 40px;
}
.t-data .contents__item.item04 .contents__item_wrap {
  padding-bottom: 70px;
  position: relative;
  width: calc(50% - 20px);
  max-width: 410px;
}
.t-data .contents__item.item04 .chart__wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.t-data .contents__item.item04 .contents__icon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.t-data .contents__item.item04 .contents__icon.icon01 {
  width: 125px;
}
.t-data .contents__item.item04 .contents__icon.icon02 {
  width: 85px;
}
.t-data .contents__item.item05 {
  display: flex;
  flex-direction: column;
}
.t-data .contents__item.item05 .chart {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 182px;
  width: 100%;
  margin: 0 auto;
}
.t-data .contents__item.item05 .chart .contents__txt {
  top: 50%;
  left: 50%;
}
.t-data .contents__item.item06 .contents__icon {
  width: 160px;
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  margin: auto;
}
.t-data .contents__item.item07 .contents__icon {
  width: 135px;
}
.t-data .contents__item.item08 .contents__icon {
  width: 187px;
}
.t-data .contents__item.item09,
.t-data .contents__item.item10 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  align-content: start;
}
.t-data .contents__item.item09 .contents__title,
.t-data .contents__item.item10 .contents__title {
  grid-column: 1 / 3;
}
.t-data .contents__item.item11,
.t-data .contents__item.item12,
.t-data .contents__item.item15 {
  padding-bottom: 60px;
}
.t-data .contents__item.item11 #chart06,
.t-data .contents__item.item12 #chart07,
.t-data .contents__item.item15 #chart10 {
  max-width: 234px;
  width: 100%;
  margin: 0 auto;
}
.t-data .contents__item.item11 .contents__txt.txt01,
.t-data .contents__item.item12 .contents__txt.txt01,
.t-data .contents__item.item15 .contents__txt.txt01 {
  top: 25%;
  left: inherit;
  right: 20px;
  transform: translate(0, -50%);
}
.t-data .contents__item.item11 .contents__txt.txt02,
.t-data .contents__item.item12 .contents__txt.txt02,
.t-data .contents__item.item15 .contents__txt.txt02 {
  top: 55%;
  left: 20px;
  transform: translate(0, -50%);
}
.t-data .contents__item.item11 .contents__icon,
.t-data .contents__item.item12 .contents__icon,
.t-data .contents__item.item15 .contents__icon {
  position: absolute;
  margin: 0;
}
.t-data .contents__item.item11 .contents__icon.icon01 {
  width: 72px;
  top: 80px;
  right: 165px;
}
.t-data .contents__item.item11 .contents__icon.icon02 {
  width: 102px;
  bottom: 40px;
  left: 145px;
}
.t-data .contents__item.item12 .contents__icon.icon01 {
  width: 113px;
  top: 90px;
  right: 125px;
}
.t-data .contents__item.item12 .contents__icon.icon02 {
  width: 147px;
  bottom: 40px;
  left: 95px;
}
.t-data .contents__item.item13 .chart {
  padding-bottom: 60px;
}
.t-data .contents__item.item13 #chart08 {
  max-width: 180px;
  width: 100%;
  margin: 0 auto;
}
.t-data .contents__item.item13 .contents__txt {
  transform: translate(0, 0);
}
.t-data .contents__item.item13 .contents__txt.txt01::after,
.t-data .contents__item.item13 .contents__txt.txt02::after,
.t-data .contents__item.item13 .contents__txt.txt03::after,
.t-data .contents__item.item13 .contents__txt.txt04::after {
  content: '';
  background-color: var(--color-base);
  border-radius: 50%;
  position: absolute;
  width: 7px;
  height: 7px;
}
.t-data .contents__item.item13 .contents__txt.txt01 {
  top: -15px;
  left: 30px;
}
.t-data .contents__item.item13 .contents__txt.txt01::before {
  content: '';
  position: absolute;
  top: 40px;
  right: -160px;
  border-bottom: solid 1px var(--color-base);
  border-right: solid 1px var(--color-base);
  width: 160px;
  height: 12px;
}
.t-data .contents__item.item13 .contents__txt.txt01::after {
  top: 35px;
  right: -163px;
}
.t-data .contents__item.item13 .contents__txt.txt02 {
  top: -15px;
  right: 30px;
  left: inherit;
}
.t-data .contents__item.item13 .contents__txt.txt02::before {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -30px;
  border-bottom: solid 1px var(--color-base);
  border-right: solid 1px var(--color-base);
  width: 60px;
  height: 20px;
}
.t-data .contents__item.item13 .contents__txt.txt02::after {
  bottom: -23px;
  left: -33px;
}
.t-data .contents__item.item13 .contents__txt.txt03 {
  top: inherit;
  bottom: 0;
  right: 30px;
  left: inherit;
}
.t-data .contents__item.item13 .contents__txt.txt03::before {
  content: '';
  position: absolute;
  top: -27px;
  left: 7px;
  border-top: solid 1px var(--color-base);
  border-right: solid 1px var(--color-base);
  width: 60px;
  height: 25px;
}
.t-data .contents__item.item13 .contents__txt.txt03::after {
  top: -30px;
  left: 3px;
}
.t-data .contents__item.item13 .contents__txt.txt04 {
  top: inherit;
  bottom: 0;
  left: 30px;
}
.t-data .contents__item.item13 .contents__txt.txt04::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 90px;
  border-bottom: solid 1px var(--color-base);
  border-right: solid 1px var(--color-base);
  width: 80px;
  height: 40px;
}
.t-data .contents__item.item13 .contents__txt.txt04::after {
  top: 10px;
  left: 166px;
}
.t-data .contents__item.item13 .contents__txt .label,
.t-data .contents__item.item15 .contents__txt .label {
  font-size: 1.8rem;
}
.t-data .contents__item.item14 .chart {
  border-bottom: dashed 1px var(--color-line);
  padding: 100px 0 10px;
}
.t-data .contents__item.item14 .contents__icon {
  position: absolute;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.t-data .contents__item.item14 .contents__icon .rank {
  position: relative;
  z-index: 1;
}
.t-data .contents__item.item14 .contents__icon .num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 4.5rem;
  font-weight: 500;
  line-height: 1;
}
.t-data .contents__item.item14 .contents__icon .unit {
  font-size: 1.8rem;
  font-weight: 700;
}
.t-data .contents__item.item14 .contents__icon img {
  width: 100px;
  margin-top: -10px;
  position: relative;
  z-index: 0;
}
.t-data .contents__item.item14 .contents__icon .label {
  font-size: 1.6rem;
  font-weight: 700;
  margin-top: -16px;
  position: relative;
  z-index: 1;
}
.t-data .contents__item.item14 .contents__icon.icon01 {
  top: -20px;
  left: 28px;
}
.t-data .contents__item.item14 .contents__icon.icon02 {
  top: 10px;
  left: 132px;
}
.t-data .contents__item.item14 .contents__icon.icon03 {
  top: 20px;
  left: 237px;
}
.t-data .contents__item.item14 .contents__icon.icon04 {
  top: 60px;
  left: 333px;
}
.t-data .contents__item.item15 .contents__icon.icon01 {
  width: 113px;
  top: 80px;
  right: 135px;
}
.t-data .contents__item.item15 .contents__icon.icon02 {
  width: 92px;
  bottom: 40px;
  left: 125px;
}
.t-data .contents__item.item16 {
  padding-left: 40px;
}
.t-data .contents__item.item16 .chart {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.t-data .contents__item.item16 .chart__label {
  border-right: dashed 1px var(--color-line);
  margin-right: 5px;
}
.t-data .contents__item.item16 .label {
  line-height: 48px;
  font-weight: 700;
}
.t-data .contents__item.item16 .label + .label {
  padding-top: 17px;
}
.t-data .contents__item.item16 .chart .num {
  font-family: "Roboto Condensed", sans-serif;
  font-size: 6.0rem;
  font-weight: 500;
  letter-spacing: 0;
}
.t-data .contents__item.item16 .chart .unit {
  font-size: 2.4rem;
  font-weight: 500;
}
.t-data .contents__item.item17,
.t-data .contents__item.item18,
.t-data .contents__item.item21 {
  grid-column: 1 / 3;
  padding-left: 30px;
  padding-right: 30px;
}
.t-data .contents__item.item19,
.t-data .contents__item.item20 {
  padding-left: 30px;
  padding-right: 30px;
}
.t-data .contents__item.item17 .contents__title,
.t-data .contents__item.item18 .contents__title,
.t-data .contents__item.item19 .contents__title,
.t-data .contents__item.item20 .contents__title,
.t-data .contents__item.item21 .contents__title {
  text-align: left;
}
.t-data .contents__item.item17 .contents__item_wrap,
.t-data .contents__item.item18 .contents__item_wrap {
  display: grid;
  grid-template-columns: 320px 1fr;
  align-items: center;
  gap: 30px;
}
.t-data .contents__item.item17 .chart__wrap,
.t-data .contents__item.item18 .chart__wrap {
  max-width: 240px;
  width: 100%;
  margin: 0 auto;
}
.t-data .contents__item.item17 .chart .contents__txt,
.t-data .contents__item.item18 .chart .contents__txt {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  left: 52.2%;
}
.t-data .contents__item.item17 .label,
.t-data .contents__item.item18 .label {
  font-size: 2.0rem;
  padding-left: 14px;
}
.t-data .contents__item.item17 .contents__comment,
.t-data .contents__item.item18 .contents__comment,
.t-data .contents__item.item19 .contents__comment,
.t-data .contents__item.item20 .contents__comment {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content max-content;
  gap: 30px 10px;
}
.t-data .contents__item.item21 .contents__comment {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: max-content max-content;
  gap: 30px 10px;
}
.t-data .contents__item .comment {
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 0 #ACBCC6;
  display: grid;
  grid-template-columns: 40px 1fr;
  align-items: center;
  gap: 10px;
  padding: 20px 15px;
  position: relative;
}
.t-data .contents__item .comment::before {
  content: '';
  background: url(../img/data/icon-fukidashi.svg) no-repeat center center / contain;
  position: absolute;
  bottom: -11px;
  left: 0;
  right: 0;
  margin: auto;
  width: 22px;
  height: 13px;
  z-index: 1;
}
.t-data .contents__item .comment::after {
  content: '';
  mask: url(../img/data/icon-fukidashi.svg) no-repeat center center / contain;
  background-color: #ACBCC6;
  position: absolute;
  bottom: -14px;
  left: 4px;
  right: 0;
  margin: auto;
  width: 22px;
  height: 13px;
}
.t-data .contents__item .comment.reverse::before {
  transform: scale(-1, 1);
}
.t-data .contents__item .comment.reverse::after {
  left: 0;
  right: 4px;
  transform: scale(-1, 1);
}
.t-data .contents__item .comment .txt {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .t-data .contents__item.item02,
  .t-data .contents__item.item06,
  .t-data .contents__item.item09,
  .t-data .contents__item.item12,
  .t-data .contents__item.item14,
  .t-data .contents__item.item16,
  .t-data .contents__item.item20 {
    animation-delay: .2s;
    transition-delay: .2s;
  }
  .t-data .contents__item.item03,
  .t-data .contents__item.item07,
  .t-data .contents__item.item10 {
    animation-delay: .4s;
    transition-delay: .4s;
  }
}
@media screen and (max-width: 1023px) {
  .t-data .contents__item.item02 {
    padding: 30px 10px 100px;
  }
  .t-data .contents__item.item13 .chart {
    max-width: 334px;
    width: 100%;
    margin: 0 auto;
  }
  .t-data .contents__item.item13 .contents__txt.txt01,
  .t-data .contents__item.item13 .contents__txt.txt04 {
    left: 10px;
  }
  .t-data .contents__item.item13 .contents__txt.txt01::before {
    right: -120px;
    width: 115px;
  }
  .t-data .contents__item.item13 .contents__txt.txt01::after {
    right: -123px;
  }
  .t-data .contents__item.item13 .contents__txt.txt02 {
    right: 10px;
  }
  .t-data .contents__item.item13 .contents__txt.txt02::before {
    left: 10px;
    width: 20px;
  }
  .t-data .contents__item.item13 .contents__txt.txt02::after {
    left: 5px;
  }
  .t-data .contents__item.item13 .contents__txt.txt03 {
    right: 0;
  }
  .t-data .contents__item.item13 .contents__txt.txt03::before {
    left: 47px;
    width: 30px;
  }
  .t-data .contents__item.item13 .contents__txt.txt03::after {
    left: 43px;
  }
  .t-data .contents__item.item13 .contents__txt.txt04::before {
    top: 5px;
    left: 70px;
    width: 50px;
    height: 50px;
  }
  .t-data .contents__item.item13 .contents__txt.txt04::after {
    top: 0;
    left: 116px;
  }

  .t-data .contents__item.item17 .contents__item_wrap,
  .t-data .contents__item.item18 .contents__item_wrap {
    grid-template-columns: 240px 1fr;
  }
  .t-data .contents__item.item19,
  .t-data .contents__item.item20 {
    grid-column: 1 / 3;
  }
  .t-data .contents__item.item14 .contents__icon .num {
    font-size: 3.0rem;
  }
  .t-data .contents__item.item14 .contents__icon .unit {
    font-size: 1.2rem;
  }
  .t-data .contents__item.item14 .contents__icon img {
    width: 68px;
  }
  .t-data .contents__item.item14 .contents__icon .label {
    font-size: 1.2rem;
  }
  .t-data .contents__item.item14 .contents__icon.icon01 {
    left: 20px;
  }
  .t-data .contents__item.item14 .contents__icon.icon02 {
    top: 0px;
    left: 89px;
  }
  .t-data .contents__item.item14 .contents__icon.icon03 {
    top: 15px;
    left: 159px;
  }
  .t-data .contents__item.item14 .contents__icon.icon04 {
    top: 43px;
    left: 219px;
  }
  .t-data .contents__item.item16 {
    padding-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .t-data .contents + .contents {
    padding: 50px 0;
  }
  .t-data .contents.last {
    padding-bottom: 100px;
  }
  .t-data .contents__list.col2,
  .t-data .contents__list.col3 {
    grid-template-columns: 1fr;
  }
  .t-data .contents__title {
    font-size: 1.8rem;
  }
  .t-data .contents__txt .num {
    font-size: 4.7rem;
  }
  .t-data .contents__txt .label {
    font-size: 2.0rem;
  }
  .t-data .contents__txt .unit {
    font-size: 1.8rem;
  }
  .t-data .contents__item.item02 {
    padding: 30px 18px 100px;
  }
  .t-data .contents__item.item04 {
    grid-column: 1 / 2;
    gap: 50px;
    padding-left: 20px;
    padding-right: 20px;
  }
  .t-data .contents__item.item04 .contents__item_wrap {
    max-width: inherit;
    width: 100%;
  }
  .t-data .contents__item.item06 .contents__icon {
    position: relative;
    bottom: 0;
  }
  .t-data .contents__item.item11 .contents__icon.icon01 {
    right: 85px;
  }
  .t-data .contents__item.item11 .contents__icon.icon02 {
    left: 65px;
  }
  .t-data .contents__item.item11 .contents__txt.txt01,
  .t-data .contents__item.item12 .contents__txt.txt01 {
    top: 65%;
  }
  .t-data .contents__item.item11 .contents__txt.txt02,
  .t-data .contents__item.item12 .contents__txt.txt02,
  .t-data .contents__item.item15 .contents__txt.txt02 {
    top: 25%;
  }
  .t-data .contents__item.item12 .contents__icon.icon01 {
    right: 35px;
  }
  .t-data .contents__item.item12 .contents__icon.icon02 {
    left: 25px;
  }
  .t-data .contents__item.item11 .chart,
  .t-data .contents__item.item12 .chart,
  .t-data .contents__item.item15 .chart {
    max-width: 243px;
    width: 100%;
    margin: 0 auto;
  }
  .t-data .contents__item.item13 .chart {
    max-width: 315px;
    width: 100%;
    margin: 0 auto;
  }
  .t-data .contents__item.item15 .contents__txt.txt01  {
    right: 0;
  }
  .t-data .contents__item.item15 .contents__txt.txt02  {
    left: -20px;
  }
  .t-data .contents__item.item15 .contents__icon.icon01 {
    top: inherit;
    right: 55px;
    bottom: 60px;
  }
  .t-data .contents__item.item15 .contents__icon.icon02 {
    bottom: 80px;
    left: 40px;
  }
  .t-data .contents__item.item14 .chart {
    padding-top: 16vw;
  }
  .t-data .contents__item.item14 .contents__icon .num {
    font-size: 8vw;
  }
  .t-data .contents__item.item14 .contents__icon .unit {
    font-size: 3.2vw;
  }
  .t-data .contents__item.item14 .contents__icon img {
    width: 18.133vw;
  }
  .t-data .contents__item.item14 .contents__icon .label {
    font-size: 3.2vw;
  }
  .t-data .contents__item.item14 .contents__icon.icon01 {
    left: 5.333vw;
  }
  .t-data .contents__item.item14 .contents__icon.icon02 {
    top: 0px;
    left: 23.733vw;
  }
  .t-data .contents__item.item14 .contents__icon.icon03 {
    top: 4vw;
    left: 42.4vw;
  }
  .t-data .contents__item.item14 .contents__icon.icon04 {
    top: 11.467vw;
    left: 58.4vw;
  }
  .t-data .contents__item.item16 {
    padding-left: 20px;
    padding-right: 20px;
  }
  .t-data .contents__item.item16 .chart {
    grid-template-columns: 100px 1fr;
  }
  .t-data .contents__item.item16 .chart .num {
    font-size: 4.2rem;
  }
  .t-data .contents__item.item17,
  .t-data .contents__item.item18,
  .t-data .contents__item.item19,
  .t-data .contents__item.item20,
  .t-data .contents__item.item21 {
    grid-column: 1 / 2;
    padding-left: 20px;
    padding-right: 20px;
  }
  .t-data .contents__item.item17 .contents__item_wrap,
  .t-data .contents__item.item18 .contents__item_wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .t-data .contents__item.item17 .contents__comment,
  .t-data .contents__item.item18 .contents__comment,
  .t-data .contents__item.item19 .contents__comment,
  .t-data .contents__item.item20 .contents__comment,
  .t-data .contents__item.item21 .contents__comment {
    grid-template-columns: 1fr;
  }
}


/* faq
------------------------------ */
.t-faq section.faq {
  background-color: #fff;
  margin-top: -1px;
}
.t-faq .faq__link {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}
.t-faq .faq__link a {
  background-color: var(--color-base);
  border-radius: 100px;
  padding: 18px;
  color: #fff;
  text-align: center;
  position: relative;
}
.t-faq .faq__link a::after {
  content: '';
  mask: url(../img/common/icon-arrow.svg) no-repeat center center / contain;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
  width: 8px;
  height: 8px;
  transform: rotate(90deg);
}
.t-faq .faq__wrapper {
  padding-top: 80px;
}
.t-faq .faq__wrapper + .faq__wrapper {
  border-top: dashed 1px var(--color-line);
  margin-top: 80px;
}
.t-faq .faq__item + .faq__item {
  margin-top: 10px;
}
.t-faq .faq__button {
  background-color: var(--color-bg);
  border-radius: 10px;
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  text-align: left;
  position: relative;
  padding: 15px 85px 15px 15px;
  width: 100%;
}
.t-faq .faq__button::before,
.t-faq .faq__button::after {
  content: '';
  background-color: var(--color-base);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30px;
  margin: auto;
  width: 22px;
  height: 2px;
  transition: .35s var(--transition-default);
}
.t-faq .faq__button::after {
  transform: rotate(90deg);
}
.t-faq .faq__button.active::after {
  transform: rotate(0);
}
.t-faq .faq__button_icon,
.t-faq .faq__answer_icon {
  background-color: #fff;
  border-radius: 50%;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
}
.t-faq .faq__button_txt {
  font-size: 2.0rem;
  font-weight: 700;
}
.t-faq .faq__item_wrap {
  display: none;
}
.t-faq .faq__answer {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: center;
  gap: 20px;
  padding: 15px;
}
.t-faq .faq__answer_icon {
  background-color: var(--color-accent);
  color: #fff;
}
.t-faq .faq__answer .txt a {
  display: inline-block;
  color: var(--color-accent);
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .t-faq section.faq {
    padding: 80px 0 100px;
  }
  .t-faq .faq__link {
    gap: 5px;
  }
  .t-faq .faq__link a {
    display: grid;
    align-items: center;
    letter-spacing: 0;
    padding: 15px 22px 15px 10px;
  }
  .t-faq .faq__link a::after {
    right: 10px;
  }
  .t-faq .faq__wrapper {
    padding-top: 60px;
  }
  .t-faq .faq__wrapper + .faq__wrapper {
    margin-top: 60px;
  }
  .t-faq .faq__button {
    padding: 15px 55px 15px 15px;
  }
  .t-faq .faq__button,
  .t-faq .faq__answer {
    grid-template-columns: 45px 1fr;
    gap: 10px;
  }
  .t-faq .faq__button::before,
  .t-faq .faq__button::after {
    right: 26px;
    width: 16px;
  }
  .t-faq .faq__button_icon,
  .t-faq .faq__answer_icon {
    font-size: 1.8rem;
    line-height: 45px;
    width: 45px;
    height: 45px;
  }
  .t-faq .faq__button_txt {
    line-height: 1.5;
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .t-faq .faq__link a:hover {
    opacity: 0.6;
  }
}


/* requirement
------------------------------ */
.t-requirement .job {
  background-color: #fff;
  margin-top: -1px;
}
.t-requirement .job__txt {
  font-size: 1.2rem;
  font-weight: 700;
  text-align: right;
  max-width: 1000px;
  margin: 0 auto 10px;
}
.t-requirement .job__wrapper {
  background-color: var(--color-bg);
  border-radius: 30px;
  display: grid;
  grid-template-columns: 330px 1fr;
  gap: 30px 50px;
  padding: 60px;
  max-width: 1000px;
  margin: 0 auto;
}
.t-requirement .job__wrapper + .job__wrapper {
  margin-top: 20px;
}
.t-requirement .job__wrap {
  grid-column: 1 / 2;
  grid-row: 2 / 4;
}
.t-requirement .job__title {
  grid-column: 1 / 3;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.t-requirement .job__wrap_tag {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 20px;
}
.t-requirement .job__wrap_tag li {
  background-color: #fff;
  border: solid 1px var(--color-base);
  border-radius: 100px;
  font-size: 1.4rem;
  font-weight: 500;
  padding: 2px 15px 3px;
}
.t-requirement .job__wrap dl {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 10px 0;
  margin-bottom: 40px;
}
.t-requirement .job__wrap dt {
  font-size: 1.4rem;
  font-weight: 700;
}
.t-requirement .job__wrap dd {
  font-size: 1.4rem;
}
.t-requirement .job .c-btn01 {
  max-width: 280px;
  width: 100%;
}
.t-requirement .job .c-btn01 + .c-btn01 {
  margin-top: 10px;
}
.t-requirement .job__wrap + .txt {
  font-size: 1.4rem;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.t-requirement .job__look {
  grid-column: 2 / 3;
  grid-row: 3 / 4;
  background-color: #fff;
  border-radius: 20px;
  padding: 20px 25px 25px;
}
.t-requirement .job__look_title {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.8;
  padding-left: 25px;
  position: relative;
  margin-bottom: 12px;
}
.t-requirement .job__look_title::before {
  content: '';
  background: url(../img/common/icon-star.svg) no-repeat center center / contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 18px;
  height: 18px;
}
.t-requirement .job__look_sub {
  border-top: dashed 1px var(--color-line);
  color: var(--color-accent);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
  padding-top: 12px;
}
.t-requirement .job__look_list:first-of-type {
  padding-bottom: 12px;
}
.t-requirement .job__look_list li {
  font-size: 1.4rem;
  line-height: 1.8;
  position: relative;
  padding-left: 20px;
}
.t-requirement .job__look_list li::before {
  content: '・';
  font-size: 1.4rem;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1023px) {
  .t-requirement .job__wrapper {
    grid-template-columns: 1fr;
    padding: 40px 40px 60px;
  }
  .t-requirement .job__title {
    grid-column: 1 / 2;
  }
  .t-requirement .job__wrap {
    grid-row: 2 / 3;
  }
  .t-requirement .job__wrap + .txt {
    grid-column: 1 / 2;
    grid-row: 3 / 4;
  }
  .t-requirement .job__look {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
  }
}
@media screen and (max-width: 767px) {
  .t-requirement .job__wrapper {
    display: block;
    padding: 40px 20px 60px;
  }
  .t-requirement .job__title {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .t-requirement .job__wrap_tag li {
    font-size: 1.2rem;
  }
  .t-requirement .job__wrap dl {
    margin: 0;
  }
  .t-requirement .job__wrap + .txt {
    margin-top: 30px;
  }
  .t-requirement .job__look {
    margin: 30px 0;
    padding: 20px 15px 25px;
  }
  .t-requirement .job__look_sub {
    font-size: 1.4rem;
  }
  .t-requirement .job__look_list li {
    font-size: 1.2rem;
    padding-left: 15px;
  }
  .t-requirement .job__look_list li::before {
    font-size: 1.2rem;
  }
  .t-requirement .job .c-btn01 {
    margin-left: auto;
    margin-right: auto;
  }
}


/* entry
------------------------------ */
.t-entry .flow {
  background-color: #fff;
  margin-top: -1px;
}
.t-entry .flow .inner {
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 70px 0;
}
.t-entry .flow .c-title02 {
  margin-bottom: 0;
}
.t-entry .flow__list {
  grid-column: 1 / 3;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.t-entry .flow__list::after {
  content: '';
  border-top: dashed 2px var(--color-line);
  position: absolute;
  top: 33px;
  left: 0;
  width: 100%;
  height: 2px;
  z-index: -1;
}
.t-entry .flow__item:nth-of-type(even) .flow__item_num {
  background-color: var(--color-accent);
}
.t-entry .flow__item_num {
  background-color: var(--color-base);
  border-radius: 50%;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
  line-height: 70px;
  text-align: center;
  width: 70px;
  height: 70px;
  margin: 0 auto 30px;
}
.t-entry .flow__item_icon {
  width: 100px;
  margin: 0 auto 30px;
}
.t-entry .flow__item_title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 10px;
}
.t-entry .flow__item .txt {
  font-size: 1.4rem;
}
.t-entry .form {
  background-color: #fff;
  margin-top: -1px;
  padding-top: 0;
}
.t-entry .form__wrap {
  margin: 0 auto;
  max-width: 1000px;
  height: 900px;
}
.t-entry .form__wrap iframe {
  height: 100%;
}
@media screen and (max-width: 767px) {
  .t-entry .flow .inner {
    display: block;
  }
  .t-entry .flow .c-title02 {
    margin-bottom: 25px;
  }
  .t-entry .flow__list {
    margin-top: 60px;
    grid-template-columns: 1fr;
  }
  .t-entry .flow__list::after {
    border-left: dashed 2px var(--color-line);
    top: 0;
    left: 30px;
    width: 2px;
    height: 100%;
  }
  .t-entry .flow__item {
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: 0 20px;
  }
  .t-entry .flow__item_num {
    grid-column: 1 / 2;
    grid-row: 1 / 4;
    font-size: 2.0rem;
    line-height: 60px;
    margin-bottom: 0;
    width: 60px;
    height: 60px;
  }
  .t-entry .flow__item_icon {
    grid-column: 2 / 3;
    grid-row: 3 / 4;
    margin: 15px auto 0;
  }
  .t-entry .flow__item_title {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    padding-top: 20px;
  }
  .t-entry .flow__item .txt {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
  }
}


/* 404
------------------------------ */
.t-404 .contents {
  background-color: #fff;
  margin-top: -1px;
}
.t-404 .contents__title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 40px;
}
.t-404 .contents .txt {
  text-align: center;
}
.t-404 .contents .c-btn01 {
  margin: 50px auto 0;
}
@media screen and (max-width: 767px) {
  .t-404 .contents__title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .t-404 .contents .c-btn01 {
    margin: 30px auto 0;
  }
}