@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  position: relative;
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
html:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(270deg, #FAE2E9 30%, rgba(121, 188, 249, 0.3) 100%);
  z-index: -2;
  top: 0;
  left: 0;
}
html:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: url(../img/common/texture.png) repeat;
  z-index: -1;
  top: 0;
  left: 0;
}

body {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  color: #44484E;
  font-family: "LINE Seed JP Regular", sans-serif;
  font-feature-settings: "palt";
  font-weight: 400;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  width: 100%;
}

a {
  color: #44484E;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: .3s;
  -moz-transition: .3s;
  -webkit-transition: .3s;
  -o-transition: .3s;
  -ms-transition: .3s;
}

a:hover {
  color: #44484E;
  text-decoration: none;
  opacity: 0.65;
}

a:active, a:hover {
  outline-width: 0;
}

li {
  margin: 0;
  list-style: none;
}

ul, ol {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, p, figure, dd, dt, dl {
  margin: 0;
}

figcaption, figure, main,
article, aside, footer,
header, nav, section {
  display: block;
}

b, strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

button, input, optgroup, select, textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button {
  border: none;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
}

button::-moz-focus-inner, [type="button"]::-moz-focus-inner, [type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring, [type="button"]:-moz-focusring, [type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type="checkbox"], [type="radio"] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

[type="number"]::-webkit-inner-spin-button, [type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  outline-offset: -2px;
}

[type="search"]::-webkit-search-cancel-button, [type="search"]::-webkit-search-decoration {
  -moz-appearance: none;
  -webkit-appearance: none;
}

/* Grid System width Flex */
.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -webkit-flex-wrap: wrap-reverse;
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-direction-column {
  flex-direction: column;
}

/*margin*/
.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

/* form input*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  max-width: 100%;
  width: 100%;
}

input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=password],
input[type=number],
select {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  margin: 2px;
  padding: 0 .3em;
  width: 100%;
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=password]:focus,
input[type=number]:focus,
select:focus {
  outline: none;
  border-color: #000;
}

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

input[type=number] {
  -moz-appearance: textfield;
}

select {
  font-size: 13px;
  font-size: 1.3rem;
  height: 2.5em;
  padding: .5em;
  width: auto;
  min-width: 7em;
}

textarea {
  font-size: 16px;
  font-size: 1.6rem;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 .3em;
  resize: vertical;
  width: 100%;
}
textarea :focus {
  outline: none;
  border-color: #000;
}

input[type=checkbox],
input[type=radio] {
  background: #FFF;
  cursor: pointer;
  margin-right: .5em;
}

textarea::placeholder,
input::placeholder {
  font-size: 1.4rem;
  color: #C5C5C5;
}

/* wordpress pager */
.pager {
  display: flex;
  height: 35px;
  margin-bottom: 60px;
  max-width: 100%;
  padding: 30px 0;
  position: relative;
}
.pager a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  display: block;
  position: relative;
  line-height: 1.42857143;
  text-decoration: none;
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #000;
  font-weight: bold;
  margin: 5px;
  padding: 5px 10px;
}

.pc .pager a:active,
.pc .pager a:hover,
.pc .pager a:focus {
  border-color: #000;
  color: #000;
}

.pager .previous, .pager .next,
.pager .back {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.pager .previous a {
  padding-left: 1.5em;
}

.pager .previous a:before {
  content: "≪";
  content: "";
  position: absolute;
  left: 5px;
  top: 4px;
}

.pager .next a {
  padding-right: 1.5em;
}
.pager .next a:after {
  content: "≫";
  content: "";
  position: absolute;
  right: 5px;
  top: 4px;
}

.pager .back a {
  padding: 5px;
}

/* wordpress pagination */
.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}

.pagination > li {
  position: relative;
}

.pagination > li > span,
.pagination > li > a {
  border-radius: 4px;
  border: 1px solid #E8E8E8;
  color: #231815;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}

.pagination > li > span {
  border-color: #231815;
  cursor: default;
}

.pc .pagination > li > a:active,
.pc .pagination > li > a:hover,
.pc .pagination > li > a:focus {
  border-color: #000;
  color: #000;
}

.pagination > li span.dot {
  border: none;
  width: 1em;
}

/* wordpress wp-pagenavi */
.wp-pagenavi {
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  -webkit-border-radius: 100%;
  border-radius: 100%;
  border: 1px solid #000;
  color: #000;
  margin: 3px;
  width: 2.4em;
  height: 2.4em;
  line-height: 2.4;
  display: block;
  text-decoration: none;
  padding: 0;
}
.wp-pagenavi .current {
  border: 0;
  color: #fff;
  background: #000;
  font-weight: normal;
}
.wp-pagenavi a:hover {
  border: 1px solid #000;
}

/* wordpress breadcrumbs */
.txt_ellipsis .breadcrumbs span:last-of-type {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  width: 130px;
  display: inline-block;
  vertical-align: bottom;
}

.breadcrumbs {
  margin: 2% 0;
  font-size: 1.2rem;
}
.breadcrumbs .container {
  margin-left: 0;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
}
.breadcrumbs a {
  color: #231815;
  text-decoration: none;
}
.breadcrumbs a:hover {
  color: #000;
}
.breadcrumbs ul, .breadcrumbs ol {
  list-style: none;
  padding: 0;
}
.breadcrumbs li {
  display: inline;
}
.breadcrumbs li:before {
  content: ">";
  margin: 0 10px;
}
.breadcrumbs li:first-child:before {
  display: none;
}

@media screen and (max-width: 560px) {
  .breadcrumbs {
    font-size: 1rem;
  }
  .breadcrumbs li:before {
    margin: 0 5px;
  }
}
/* Slick Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

.slick-slide img {
  width: 100%;
  height: auto;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img,
.slick-initialized .slick-slide {
  display: block;
}

.slick-slide.slick-loading img,
.slick-arrow.slick-hidden {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./img/common/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick/slick.eot");
  src: url("./fonts/slick/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick/slick.woff") format("woff"), url("./fonts/slick/slick.ttf") format("truetype"), url("./fonts/slick/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  z-index: 1;
  display: block;
  width: 16px;
  height: 31px;
  line-height: 0;
  font-size: 0;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  margin-top: -15px;
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  opacity: 0.65;
  color: transparent;
}

.slick-prev.slick-disabled,
.slick-next.slick-disabled {
  opacity: 0.25;
}

.slick-prev {
  left: 30px;
  background: url(../img/common/btn-prev.png) no-repeat center center;
}

.slick-next {
  right: 30px;
  background: url(../img/common/btn-next.png) no-repeat center center;
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 0;
}

.slick-dots {
  position: absolute;
  bottom: 10px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0;
  font-size: 0;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 12px;
  line-height: 20px;
  text-align: center;
  color: #AAA;
  opacity: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots .slick-active button:before {
  color: #000;
  opacity: 0.75;
}

.slick-archive {
  padding-top: 10px;
  margin: 0 auto;
  width: calc(100% - 50px);
}

.slick-archive__item {
  padding: 5px;
}

.slick-archive__item a {
  display: block;
  max-width: 350px;
  margin: auto;
  color: #231815;
  text-decoration: none;
  position: relative;
}

.slick-archive__item a:hover {
  opacity: 0.65;
}

.slick-archive__date {
  margin-top: 5px;
  display: block;
}

.slick-archive__title {
  display: block;
  font-weight: bold;
}

.slick-archive__label {
  background-color: #464a4c;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  padding: .2em 2em;
}

@media screen and (max-width: 560px) {
  .slick-archive__date,
  .slick-archive__label {
    font-size: 1rem;
  }

  .slick-archive__title {
    font-size: 1.2rem;
  }
}
 /***************************

layout/header.scss

***************************/
/* toggle button */
.toggle {
  display: none;
}

@media screen and (max-width: 1300px) {
  .toggle {
    cursor: pointer;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 84px;
    height: 84px;
    border-radius: 100%;
    background: linear-gradient(135deg, #E462A5, #DD3A8E);
    border: none;
    outline: none;
    position: absolute;
    padding: 13px;
    right: 30px;
    text-align: center;
    top: 30px;
    z-index: 10;
  }

  .toggle__bar {
    position: relative;
    margin: 8px auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }

  .toggle__bar, .toggle__bar::before, .toggle__bar::after {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    outline: 1px solid transparent;
    -webkit-transition-property: background-color, -webkit-transform;
    transition-property: background-color, -webkit-transform;
    transition-property: background-color, transform;
    transition-property: background-color, transform, -webkit-transform;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
  }

  .toggle__bar::before, .toggle__bar::after {
    position: absolute;
    content: "";
  }

  .toggle__bar::before {
    top: -10px;
  }

  .toggle__bar::after {
    top: 10px;
  }
}
.toggle.active {
  background: #fff;
}

.toggle.active .toggle__bar {
  background: transparent;
}

.toggle.active .toggle__bar::before {
  background: linear-gradient(135deg, #E462A5, #DD3A8E);
  transform: translateY(10px) rotate(45deg);
}

.toggle.active .toggle__bar::after {
  background: linear-gradient(135deg, #E462A5, #DD3A8E);
  transform: translateY(-10px) rotate(-45deg);
}

.fade {
  opacity: 0;
  -webkit-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

.fade.in {
  opacity: 1;
}

@media screen and (max-width: 768px) {
  .toggle {
    top: 50%;
    right: 15px;
    translate: 0 -50%;
    width: 64px;
    height: 64px;
  }
}
 /***************************

 header

***************************/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 30px 0;
}

.header .logo {
  position: relative;
  z-index: 10;
}

.header_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  padding: 0 30px;
}

.gnav {
  line-height: 1.6;
  margin: 0;
}

.gnav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 25px;
}

.gnav-menu {
  width: calc(100% - 45px);
  display: flex;
  align-items: center;
  gap: 25px;
}
.gnav-menu li a {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.link-entry {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 220px;
  width: 100%;
  height: 84px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
  border-radius: 84px;
  background: linear-gradient(135deg, #E462A5, #DD3A8E);
}
.link-entry:before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow01.png) no-repeat;
  background-size: 100% 100%;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  z-index: 10;
  pointer-events: none;
}
.link-entry:hover {
  color: #fff;
}
.link-entry:hover:before {
  translate: 10px -50%;
  transition: all .6s;
}

@media screen and (max-width: 1400px) {
  .gnav-menu {
    gap: 15px;
  }

  .link-entry {
    max-width: 190px;
  }

  .link-entry:before {
    right: 15px;
  }
}
@media screen and (min-width: 1301px) {
  .gnav {
    max-width: 1150px;
    width: 100%;
    padding-left: 50px;
    background: #fff;
    border-radius: 84px;
  }
}
@media screen and (max-width: 1300px) {
  .gnav {
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    right: 0;
    top: 0;
    width: 100%;
    height: 100lvh;
    z-index: 6;
    padding: 20px 15px;
    transition: all .4s;
    overflow: hidden;
  }
  .gnav:after {
    position: absolute;
    content: '';
    width: 200vw;
    aspect-ratio: 1 / 1;
    top: 50%;
    left: 50%;
    background: linear-gradient(270deg, #fae2e9 30%, #79bcf9 100%);
    z-index: -1;
    border-radius: 100%;
    translate: -50% -50%;
    transition: all 0.8s;
  }
  .gnav .gnav-menu {
    flex-direction: column;
    width: 100%;
  }
  .gnav .link-entry {
    max-width: 360px;
  }
  .gnav .link-entry:before {
    right: 30px;
  }

  .gnav.active {
    visibility: visible;
  }
  .gnav.active:after {
    scale: 1 1;
    border-radius: 0;
  }

  .gnav.close {
    visibility: hidden;
  }
  .gnav.close:after {
    scale: 0 0;
    border-radius: 100%;
    transition: all 0.6s;
    transition-delay: 0.5s;
  }

  .active .gnav-inner {
    flex-direction: column;
    justify-content: center;
    opacity: 1;
    transition: all 0.6s;
    transition-delay: 0.5s;
  }

  .close .gnav-inner {
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transition: all 0.6s;
  }
}
@media screen and (max-width: 768px) {
  .header {
    padding: 15px 0;
  }

  .header_inner {
    padding: 0 15px;
  }
}
@media screen and (max-width: 500px) {
  .header .logo {
    width: 170px;
  }

  .gnav:after {
    width: 100lvh;
  }

  .gnav-inner {
    gap: 15px;
  }

  .gnav-menu {
    gap: 10px;
  }

  .link-entry {
    height: 64px;
  }
}
 /***************************

layout/footer.scss

***************************/
.footer {
  width: 100%;
  margin-top: 100px;
  overflow: hidden;
}

.footer_content {
  width: 100%;
  padding-bottom: 100px;
}

.footer_content_inner {
  width: 100%;
  padding: 0 20px;
}

.footer_content_links {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  gap: 60px;
}
.footer_content_links li {
  width: 100%;
}
.footer_content_links li a {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  gap: 25px;
  padding: 25px;
  padding-right: 70px;
  background: #fff;
  border-radius: 20px;
}
.footer_content_links li a:hover {
  opacity: 1;
  background: #E35EA3;
}
.footer_content_links li a:hover:before {
  background: url(../img/common/arrow03_w.png);
}
.footer_content_links li a:hover .footer_content_links_ttl_en {
  color: #fff;
}
.footer_content_links li a:hover .footer_content_links_ttl_ja {
  color: #fff;
}
.footer_content_links li a:hover .text p {
  color: #fff;
}
.footer_content_links li a:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../img/common/arrow03.png);
  background-size: 100% auto;
  right: 25px;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
  pointer-events: none;
}
.footer_content_links li a .img {
  width: 40%;
}
.footer_content_links li a .img img {
  border-radius: 15px;
}
.footer_content_links li a .text {
  width: 55%;
}
.footer_content_links li a .text p {
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #777;
}

.footer_content_links_ttl {
  margin-bottom: 15px;
}

.footer_content_links_ttl_en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.08em;
  color: #E35EA3;
}

.footer_content_links_ttl_ja {
  display: block;
  font-weight: 400;
  font-size: 3.2rem;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1024px) {
  .footer_content_links {
    gap: 30px;
  }
}
@media screen and (max-width: 768px) {
  .footer_content_links {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 500px) {
  .footer_content_links li a {
    flex-direction: column;
  }

  .footer_content_links li a .img {
    display: none;
  }

  .footer_content_links li a .text {
    width: 100%;
  }

  .footer_content_links_ttl_ja {
    font-size: 2.6rem;
  }
}
.footer_content_gallery {
  position: relative;
  width: 100%;
  margin-bottom: 120px;
}
.footer_content_gallery .footer_content_gallery__deco {
  position: absolute;
  content: '';
  width: 100vw;
  height: 22vw;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 5;
  pointer-events: none;
  overflow: hidden;
  text-align: center;
}
.footer_content_gallery .footer_content_gallery__deco img {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 50%;
  max-width: inherit;
  width: 200vw;
  translate: -50% 0;
  animation: footmove 60s linear infinite;
}
.footer_content_gallery .gallery_image {
  width: 100%;
}

@keyframes footmove {
  100% {
    rotate: -360deg;
  }
}
.footer_content_gallery_ttl {
  position: relative;
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.12em;
  text-align: center;
  z-index: 10;
  margin-top: 120px;
  padding-left: 270px;
  padding-right: 270px;
}

.footer_content_entry {
  position: relative;
  max-width: 1420px;
  width: 95%;
  margin: 0 auto;
}
.footer_content_entry:after {
  position: absolute;
  content: '';
  width: 189px;
  height: 130px;
  background: url(../img/common/entry-deco-back.png);
  background-size: 100% auto;
  z-index: -1;
  left: 50px;
  bottom: -55px;
  animation: Es02 3s linear infinite both;
}
.footer_content_entry a {
  position: relative;
  width: 100%;
  height: 360px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(38deg, #E979B5, #E450A1);
  border-radius: 360px;
}
.footer_content_entry a:after {
  position: absolute;
  content: '';
  width: 100px;
  height: 100px;
  background: url(../img/common/entry-arrow.png);
  background-size: 100% 100%;
  top: 50%;
  right: clamp(50px, 8.7vw, 130px);
  translate: 0 -50%;
  z-index: 5;
  pointer-events: none;
}
.footer_content_entry a h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 9rem;
  letter-spacing: 0.08em;
  color: #fff;
}
.footer_content_entry a p {
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  color: #fff;
}
.footer_content_entry .entry-character01 {
  position: absolute;
  content: '';
  width: 200px;
  height: 254px;
  background: url(../img/common/entry-character01.png) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  top: -244px;
  left: 90px;
  pointer-events: none;
}
.footer_content_entry .entry-character02 {
  position: absolute;
  content: '';
  width: 184px;
  height: 245px;
  background: url(../img/common/entry-character02.png) no-repeat;
  background-size: 100% auto;
  z-index: 2;
  top: -235px;
  right: 90px;
  pointer-events: none;
}
.footer_content_entry .effect_h {
  position: absolute;
  content: '';
  width: 106px;
  height: 108px;
  background: url(../img/common/entry-deco02.png) no-repeat;
  background-size: 100% auto;
  left: 10%;
  top: -20px;
  z-index: 4;
  pointer-events: none;
}
.footer_content_entry .effect_u {
  position: absolute;
  content: '';
  width: 126px;
  height: 84px;
  background: url(../img/common/entry-deco01.png) no-repeat;
  background-size: 100% auto;
  right: 6%;
  top: -25px;
  z-index: 4;
  pointer-events: none;
}
.footer_content_entry .effect_b {
  position: absolute;
  content: '';
  width: 86px;
  height: 102px;
  background: url(../img/common/entry-deco03.png) no-repeat;
  background-size: 100% auto;
  right: 20%;
  bottom: -25px;
  z-index: 4;
  pointer-events: none;
}

@media screen and (max-width: 1500px) {
  .footer_content_gallery_ttl {
    margin-top: 5vw;
  }
}
@media screen and (max-width: 1024px) {
  .footer_content_gallery {
    margin-bottom: 20vw;
  }

  .footer_content_gallery_ttl {
    font-size: 3.5vw;
    padding-left: 0;
    padding-right: 0;
  }

  .footer_content_entry a {
    height: 280px;
    border-radius: 280px;
  }

  .footer_content_entry .entry-character01 {
    left: 20px;
    width: 20vw;
    height: 25vw;
    top: -18vw;
    z-index: -1;
  }

  .footer_content_entry .entry-character02 {
    right: 20px;
    width: 18vw;
    height: 24vw;
    top: -18vw;
    z-index: -1;
  }
}
@media screen and (max-width: 768px) {
  .footer {
    margin-top: 60px;
  }

  .footer_content_entry a {
    height: 200px;
    border-radius: 200px;
  }

  .footer_content_entry a:after {
    width: 80px;
    height: 80px;
  }

  .footer_content_entry a h3 {
    font-size: 9.1vw;
    line-height: 1.2;
  }

  .footer_content_entry a p {
    font-size: 2.8vw;
  }
}
@media screen and (max-width: 500px) {
  .footer_content_entry a {
    min-height: 100px;
    height: 30vw;
    border-radius: 150px;
  }

  .footer_content_entry a:after {
    width: 12vw;
    height: 12vw;
    right: 6vw;
  }
}
.footer_main_block {
  width: 100%;
  padding: 0 20px;
  margin-bottom: 50px;
}

.footer_main_block_inner {
  max-width: 1340px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer_main_block_inner .add {
  max-width: 280px;
  width: 100%;
}
.footer_main_block_inner .add .logo {
  margin-bottom: 25px;
}
.footer_main_block_inner .add .corporate-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 40px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #44484E;
  text-align: center;
  letter-spacing: 0.03em;
  background: url(../img/common/corporate-link.png) no-repeat;
  background-position: center right 20px;
  background-size: 17px 9px;
  background-color: #fff;
  border-radius: 40px;
  margin-bottom: 25px;
}
.footer_main_block_inner .add p {
  line-height: 2;
  letter-spacing: 0.03em;
}

.sub-nav {
  max-width: 950px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  gap: 25px 5%;
}

.sub-nav_block .privacy {
  font-weight: 600;
  letter-spacing: 0.03em;
}

.sub-nav_list:not(:last-child) {
  margin-bottom: 25px;
}
.sub-nav_list li {
  position: relative;
}
.sub-nav_list li:not(:last-child) {
  margin-bottom: 10px;
}
.sub-nav_list li:not(.under) a {
  display: block;
  position: relative;
  padding-left: 50px;
}
.sub-nav_list li:not(.under) a:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../img/common/arrow03.png);
  background-size: 100% 100%;
  left: 0;
  top: 2.5px;
}
.sub-nav_list li:not(.under) a .en {
  display: block;
  font-family: "Raleway", sans-serif;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.2;
  color: #E35EA3;
  letter-spacing: 0.08em;
}
.sub-nav_list li:not(.under) a .ja {
  display: block;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0.03em;
}
.sub-nav_list li.under {
  padding-left: 50px;
}
.sub-nav_list li.under a {
  display: block;
  padding-left: 18px;
  position: relative;
}
.sub-nav_list li.under a:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #E35EA3;
  border-radius: 100%;
  left: 0;
  top: 7px;
}

.footer .copyright {
  font-family: "Raleway", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  color: #8699A6;
  text-align: center;
  padding: 30px 20px;
}

@media screen and (max-width: 1200px) {
  .sub-nav {
    flex-wrap: wrap;
  }

  .sub-nav_block {
    width: 47%;
  }

  .sub-nav_list li:not(.under) a br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .sub-nav_list li:not(.under) a {
    padding-left: 35px;
  }

  .sub-nav_list li:not(.under) a:before {
    width: 30px;
    height: 30px;
    top: 8px;
  }

  .footer_content_entry .effect_h {
    width: 10vw;
    height: 11vw;
    top: -2vw;
  }

  .footer_content_entry .effect_u {
    width: 12vw;
    height: 8vw;
    top: -2.4vw;
  }

  .footer_content_entry .effect_b {
    width: 8.4vw;
    height: 10vw;
    bottom: -2.4vw;
  }

  .footer_content_entry:after {
    width: 19vw;
    height: 12.7vw;
    bottom: -5.4vw;
  }
}
@media screen and (max-width: 768px) {
  .footer_main_block {
    margin-bottom: 30px;
  }

  .footer_main_block_inner {
    flex-direction: column;
  }

  .footer_main_block_inner .add {
    max-width: 100%;
    display: flex;
    align-items: flex-end;
    gap: 20px 50px;
  }

  .footer_main_block_inner .add .corporate-link {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 600px) {
  .footer_main_block_inner .add {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .sub-nav {
    flex-direction: column;
    justify-content: flex-start;
  }

  .sub-nav_block {
    width: 100%;
  }

  .sub-nav_list {
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
  }

  .sub-nav_list:not(:last-child) {
    margin-bottom: 15px;
  }

  .sub-nav_list li:not(:last-child) {
    margin-bottom: 5px;
  }

  .sub-nav_list li:not(.under) a .ja {
    font-size: 1.8rem;
  }

  .sub-nav_list li:not(.under) a:before {
    top: 5px;
  }

  .sub-nav_block .privacy {
    display: block;
    max-width: 270px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 425px) {
  .sub-nav_list {
    max-width: 100%;
  }

  .sub-nav_block .privacy {
    max-width: 100%;
  }
}
/*////////////////////////

 user common css

////////////////////////*/
#mainWrap {
  overflow: hidden;
}

.under .main {
  overflow: hidden;
}

.container_l {
  max-width: 1380px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.container_m {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding-right: 20px;
  padding-left: 20px;
}

.sp_550 {
  display: none;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.vt_align_top {
  vertical-align: top;
}

.wd_100 {
  width: 100%;
}

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

  .pc {
    display: none;
  }
}
@media screen and (min-width: 651px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (max-width: 650px) {
  a[href^="tel:"] {
    text-decoration: underline;
    display: inline-block;
  }
}
@media screen and (max-width: 550px) {
  .pc_550 {
    display: none;
  }

  .sp_550 {
    display: block;
  }
}
/*////////////////////////

fonts

////////////////////////*/
.raleway {
  font-family: "Raleway", sans-serif;
}

.barlow {
  font-family: "Barlow", sans-serif;
}

.yugo {
  font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
}

.line-seed-jp {
  font-family: "LINE Seed JP Regular";
}

@font-face {
  font-family: "LINE Seed JP Regular";
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Rg.eot");
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Rg.eot?#iefix") format("embedded-opentype"), url("../fonts/LINESeedJP/LINESeedJP_OTF_Rg.woff") format("woff");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP Thin";
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Th.eot");
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Th.eot?#iefix") format("embedded-opentype"), url("../fonts/LINESeedJP/LINESeedJP_OTF_Th.woff") format("woff");
  font-weight: 100;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP Bold";
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Bd.eot");
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Bd.eot?#iefix") format("embedded-opentype"), url("../fonts/LINESeedJP/LINESeedJP_OTF_Bd.woff") format("woff");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "LINE Seed JP ExtraBold";
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Eb.eot");
  src: url("../fonts/LINESeedJP/LINESeedJP_TTF_Eb.eot?#iefix") format("embedded-opentype"), url("../fonts/LINESeedJP/LINESeedJP_OTF_Eb.woff") format("woff");
  font-weight: 800;
  font-style: normal;
}
.italic {
  font-style: italic;
}

.thin {
  font-weight: 100;
}

.extralight {
  font-weight: 200;
}

.light {
  font-weight: 300;
}

.regular {
  font-weight: 400;
}

.medium {
  font-weight: 500;
}

.semibold {
  font-weight: 600;
}

.bold {
  font-weight: 700;
}

.extrabold {
  font-weight: 800;
}

.black {
  font-weight: 900;
}

.ls5 {
  letter-spacing: 0.05em;
}

.ls3 {
  letter-spacing: 0.03em;
}

.lh22 {
  line-height: 2.2;
}

.lh2 {
  line-height: 2;
}

.lh18 {
  line-height: 1.8;
}

.lh1 {
  line-height: 1;
}

.fz18 {
  font-size: 1.8rem;
}

.fz22 {
  font-size: 2.2rem;
}

.fz24 {
  font-size: clamp(20px, 3.1vw, 24px);
}

.fz28 {
  font-size: clamp(20px, 3.6vw, 28px);
}

.fz32 {
  font-size: clamp(22px, 4.2vw, 32px);
}

.fz36 {
  font-size: clamp(26px, 4.7vw, 36px);
}

.col_white {
  color: #fff;
}

.col_pink {
  color: #E35EA3;
}

.txt_under {
  border-bottom: 1px solid;
}

/***************************

object/project/effects.scss

***************************/
/*ロード時にフェードイン*/
.fadein {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*スクロールフェードイン*/
.fadeInTop {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInTop;
  animation-name: fadeInTop;
  visibility: visible !important;
}

@-webkit-keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInTop {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInBottom {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInBottom;
  animation-name: fadeInBottom;
  visibility: visible !important;
}

@-webkit-keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
  }
}
@keyframes fadeInBottom {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}
.fadeInLeft {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
  visibility: visible !important;
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-30px);
    -ms-transform: translateX(-30px);
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
.fadeInRight {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 1s;
  -ms-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
  visibility: visible !important;
}

@-webkit-keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
  }
}
@keyframes fadeInRight {
  0% {
    opacity: 0;
    -webkit-transform: translateX(20px);
    -ms-transform: translateX(20px);
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes aboutText {
  100% {
    transform: rotate(360deg);
  }
}
@keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@-webkit-keyframes openBox {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
@keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@-webkit-keyframes openText {
  100% {
    line-height: 2;
    opacity: 1;
    visibility: visible;
  }
}
@keyframes faq {
  0% {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  100% {
    padding-top: 20px;
    padding-bottom: 20px;
    line-height: 1.8;
    visibility: visible;
  }
}
.es--01 {
  animation: Es01 5s linear infinite both;
}

.es--02 {
  animation: Es02 5s linear infinite both;
}

@keyframes Es01 {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 -15px;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes Es02 {
  0% {
    translate: 0 0;
  }
  50% {
    translate: 0 20px;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes Essub01 {
  0% {
    translate: -50% 0;
  }
  50% {
    translate: -50% 20px;
  }
  100% {
    translate: -50% 0;
  }
}
.delay20 {
  animation-delay: 2s;
}

.early20 {
  animation-delay: -2s;
}

/*////////////////////////

btn

////////////////////////*/
.btn-A {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  height: 100px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #fff;
  background: linear-gradient(58deg, #DD3A8E 0%, #E462A5 100%);
  border-radius: 100px;
  padding: 10px 50px;
}
.btn-A:before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow01.png);
  background-size: 100% 100%;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.btn-A:hover {
  color: #fff;
}
.btn-A:hover:before {
  translate: 5px -50%;
  transition: all .6s;
}

.btn-B {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  width: 100%;
  height: 100px;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.08em;
  color: #E460A4;
  background: #fff;
  border-radius: 100px;
  padding: 10px 50px;
}
.btn-B:before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  background: url(../img/common/arrow02.png);
  background-size: 100% 100%;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.btn-B:hover {
  color: #E460A4;
}
.btn-B:hover:before {
  translate: 5px -50%;
  transition: all .6s;
}

.btn-center {
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .btn-A,
  .btn-B {
    height: 80px;
    border-radius: 80px;
    z-index: 5;
  }

  .tab-center {
    margin: 0 auto;
  }
}
/*////////////////////////

hdg__

////////////////////////*/
.hdg__01 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hdg__01 .hdg__01__en {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #E35EA3;
}
.hdg__01 .hdg__01__en.line-seed-jp {
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
}
.hdg__01 .hdg__01__ja {
  font-weight: 400;
  font-size: 4.8rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
.hdg__01.col_white {
  color: #fff;
}
.hdg__01.col_white .hdg__01__en {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .hdg__01 .hdg__01__en {
    font-size: 1.6rem;
  }
  .hdg__01 .hdg__01__ja {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 425px) {
  .hdg__01 .hdg__01__ja {
    font-size: clamp(28px, 8.9vw, 32px);
  }
}
.hdg__02 {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hdg__02 .hdg__02__en {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #E35EA3;
}
.hdg__02 .hdg__02__en.line-seed-jp {
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
}
.hdg__02 .hdg__02__ja {
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

@media screen and (max-width: 768px) {
  .hdg__02 .hdg__02__en {
    font-size: 1.6rem;
  }
  .hdg__02 .hdg__02__ja {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .hdg__02 .hdg__02__ja {
    font-size: clamp(22px, 6.1vw, 26px);
  }
}
.hdg__03 {
  font-weight: 400;
  font-size: 2.8rem;
  letter-spacing: 0.03em;
  line-height: 2;
  color: #DF4B98;
}

@media screen and (max-width: 768px) {
  .hdg__03 {
    font-size: 2.2rem;
  }
}
/***************************

object/project/top.scss

***************************/
.body_inner {
  position: relative;
  overflow: hidden;
}

.back-content {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  top: 0;
  left: 0;
}
.back-content .back-content--pink {
  position: absolute;
  content: '';
  width: 500px;
  height: 500px;
  border-radius: 100%;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  background: linear-gradient(67deg, #E450A1, #E979B5);
  scale: 0;
}

.mv {
  position: relative;
  width: 100%;
  padding-top: 220px;
  margin-bottom: 120px;
}

.mv_hub_deco01 {
  position: absolute;
  content: '';
  width: 61px;
  height: 63px;
  background: url(../img/top/message-deco01.png);
  background-size: 100% auto;
  bottom: -63px;
  left: 2vw;
  z-index: 1;
  pointer-events: none;
}

.mv_hub_deco02 {
  position: absolute;
  content: '';
  width: 50px;
  height: 49px;
  background: url(../img/top/mv-back-deco.png);
  background-size: 100% auto;
  bottom: 10vw;
  right: 3vw;
  z-index: -1;
  pointer-events: none;
}

.mv_hub_deco03 {
  position: absolute;
  content: '';
  width: 77px;
  height: 48px;
  background: url(../img/top/mv-under-deco.png);
  background-size: 100% auto;
  bottom: -110px;
  right: 19vw;
  z-index: 1;
  pointer-events: none;
}

.main-visual {
  position: relative;
  padding-bottom: 180px;
}

.main-visual-wrap {
  margin: 0 auto;
  width: 42vw;
  height: 28vw;
  position: relative;
  perspective: 10000px;
}

.mv-carousel {
  height: 100%;
  width: 100%;
  position: absolute;
  transform-style: preserve-3d;
  transition: transform 1s;
}

.mv-carousel_item {
  display: block;
  position: absolute;
  width: 42vw;
  height: 28vw;
  opacity: 1;
  border-radius: 10px;
  opacity: 0.7;
  filter: blur(1px);
  transform-origin: center;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.mv-carousel_item.is--01 {
  transform: rotateY(0deg) translateZ(42vw);
}
.mv-carousel_item.is--02 {
  transform: rotateY(60deg) translateZ(42vw);
}
.mv-carousel_item.is--03 {
  transform: rotateY(120deg) translateZ(42vw);
}
.mv-carousel_item.is--04 {
  transform: rotateY(180deg) translateZ(42vw);
}
.mv-carousel_item.is--05 {
  transform: rotateY(240deg) translateZ(42vw);
}
.mv-carousel_item.is--06 {
  transform: rotateY(300deg) translateZ(42vw);
}
.mv-carousel_item.is-opning {
  opacity: 1;
  filter: blur(0);
}
.mv-carousel_item.is-opning img {
  scale: 1.1;
}
.mv-carousel_item.is-active {
  opacity: 1;
  filter: blur(0);
}
.mv-carousel_item.is-active img {
  animation: openMv 0.2s linear 0.2s both;
}
.mv-carousel_item img {
  width: 100%;
  border-radius: 30px;
  scale: 0.9;
}

@keyframes openMv {
  100% {
    scale: 1.1;
  }
}
.main-visual-inner {
  position: absolute;
  content: '';
  width: 100%;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: 3;
  padding: 0 30px;
}

.main-visual_ttl {
  text-align: center;
}

.main-visual_sub_ttl {
  letter-spacing: 0.12em;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
}
.main-visual_sub_ttl br {
  display: none;
}

@media screen and (max-width: 1500px) {
  .main-visual {
    padding-bottom: 12vw;
  }
}
@media screen and (max-width: 1300px) {
  .mv {
    padding-top: 130px;
  }
}
@media screen and (max-width: 768px) {
  .main-visual-wrap {
    width: 42vw;
    height: 48vw;
  }

  .mv-carousel_item {
    width: 42vw;
    height: 48vw;
  }
  .mv-carousel_item.is--01 {
    transform: rotateY(0deg) translateZ(42vw);
  }
  .mv-carousel_item.is--02 {
    transform: rotateY(60deg) translateZ(42vw);
  }
  .mv-carousel_item.is--03 {
    transform: rotateY(120deg) translateZ(42vw);
  }
  .mv-carousel_item.is--04 {
    transform: rotateY(180deg) translateZ(42vw);
  }
  .mv-carousel_item.is--05 {
    transform: rotateY(240deg) translateZ(42vw);
  }
  .mv-carousel_item.is--06 {
    transform: rotateY(300deg) translateZ(42vw);
  }
}
@media screen and (max-width: 600px) {
  .mv {
    margin-bottom: 80px;
  }

  .mv_hub_deco01 {
    width: 47px;
    height: 49px;
    bottom: -40px;
  }

  .mv_hub_deco03 {
    bottom: -70px;
  }
}
@media screen and (max-width: 425px) {
  .main-visual {
    overflow: hidden;
    padding-bottom: 80px;
  }

  .main-visual-wrap {
    width: 55vw;
    height: 70vw;
  }

  .mv-carousel_item {
    width: 55vw;
    height: 59vw;
  }
  .mv-carousel_item.is--01 {
    transform: rotateY(0deg) translateZ(55vw);
  }
  .mv-carousel_item.is--02 {
    transform: rotateY(60deg) translateZ(55vw);
  }
  .mv-carousel_item.is--03 {
    transform: rotateY(120deg) translateZ(55vw);
  }
  .mv-carousel_item.is--04 {
    transform: rotateY(180deg) translateZ(55vw);
  }
  .mv-carousel_item.is--05 {
    transform: rotateY(240deg) translateZ(55vw);
  }
  .mv-carousel_item.is--06 {
    transform: rotateY(300deg) translateZ(55vw);
  }

  .main-visual_sub_ttl {
    font-size: 5vw;
  }
  .main-visual_sub_ttl br {
    display: block;
  }
}
.top01 {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding-top: 40px;
  padding-bottom: 120px;
}

.top01_hub_deco01 {
  position: absolute;
  content: '';
  width: 98px;
  height: 61px;
  background: url(../img/top/concept-back-deco.png);
  background-size: 100% auto;
  bottom: 40vw;
  left: 20px;
  pointer-events: none;
}

.top01_hub_deco02 {
  position: absolute;
  content: '';
  width: 187px;
  height: 164px;
  background: url(../img/top/concept-under-deco.png);
  background-size: 100% auto;
  bottom: 30px;
  left: -40px;
  z-index: 3;
  pointer-events: none;
}

.t-concept_wrap {
  position: relative;
  max-width: 1420px;
  width: 95%;
  background: #fff;
  border-radius: 19px;
  margin: 0 auto;
  padding: 110px 18vw 100px;
  z-index: 3;
}

.t-concept_hub_deco01 {
  position: absolute;
  content: '';
  width: 101px;
  height: 67px;
  background: url(../img/top/concept-top-deco.png);
  background-size: 100% auto;
  top: -30px;
  right: 50px;
  z-index: 1;
  pointer-events: none;
}

.t-concept_hub_deco02 {
  position: absolute;
  content: '';
  width: 72px;
  height: 86px;
  background: url(../img/top/message-deco02.png);
  background-size: 100% auto;
  bottom: -20px;
  left: 80px;
  z-index: 1;
  pointer-events: none;
}

.concept-slider {
  margin-top: -60px;
  z-index: 2;
}

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

.concept-slider .swiper-container {
  overflow: hidden;
}

.concept-slider .swiper-slide {
  width: auto;
}
.concept-slider .swiper-slide img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .t-concept_image01 {
    position: absolute;
    max-width: 240px;
    width: 16vw;
    top: -45px;
    left: 40px;
    z-index: 2;
  }
  .t-concept_image01 img {
    border-radius: 15px;
  }

  .t-concept_image02 {
    position: absolute;
    max-width: 310px;
    width: 16vw;
    top: 50%;
    right: -20px;
    translate: 0 -50%;
    z-index: 2;
  }
  .t-concept_image02 img {
    border-radius: 15px;
  }
}
@media screen and (max-width: 768px) {
  .t-concept_wrap {
    padding: 70px 20px 50px;
  }

  .t-concept_image_wrap {
    margin-top: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .t-concept_image01 {
    width: 55%;
  }
  .t-concept_image01 img {
    width: 100%;
    border-radius: 15px;
  }

  .t-concept_image02 {
    width: 45%;
  }
  .t-concept_image02 img {
    width: 100%;
    border-radius: 15px;
  }
}
@media screen and (max-width: 600px) {
  .top01 {
    padding-bottom: 80px;
  }

  .t-concept_hub_deco01 {
    width: 84px;
    height: 56px;
    top: -10px;
    right: 10px;
  }

  .t-concept_hub_deco02 {
    width: 57px;
    height: 66px;
    left: 15px;
  }

  .top01_hub_deco01 {
    bottom: 50%;
    left: -30px;
  }

  .top01_hub_deco02 {
    width: 24vw;
    height: 21.4vw;
  }
}
@media screen and (max-width: 425px) {
  .concept-slider {
    margin-top: -30px;
  }

  .hdg__01 .hdg__01__ja {
    font-size: 6vw;
  }
}
.top02 {
  position: relative;
  width: 100%;
  padding-top: 50px;
  padding-bottom: 200px;
  overflow: hidden;
}

.top02_hub_deco01 {
  position: absolute;
  content: '';
  width: 61px;
  height: 63px;
  background: url(../img/top/message-deco01.png);
  background-size: 100% auto;
  top: 20px;
  right: 70px;
  z-index: 1;
  pointer-events: none;
}

.top02_hub_deco02 {
  position: absolute;
  content: '';
  width: 126px;
  height: 84px;
  background: url(../img/top/message-deco05.png);
  background-size: 100% auto;
  bottom: 120px;
  left: 45px;
  z-index: -1;
  pointer-events: none;
}

.top02_hub_deco03 {
  position: absolute;
  content: '';
  width: 312px;
  height: 313px;
  background: url(../img/top/message-under-deco.png);
  background-size: 100% auto;
  bottom: 20px;
  right: -90px;
  z-index: -1;
  pointer-events: none;
}

.t-message_box {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px 7%;
}

.t-message_box_image {
  position: relative;
  max-width: 485px;
  width: 100%;
}
.t-message_box_image .name {
  position: absolute;
  max-width: 220px;
  width: 45%;
  height: 8%;
  font-weight: 600;
  letter-spacing: 0.03em;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  bottom: 0;
  z-index: 2;
  border-bottom-left-radius: 18px;
  border-top-right-radius: 20px;
}
.t-message_box_image .name br {
  display: none;
}
.t-message_box_image img {
  clip-path: url(#mask);
  width: 100%;
}

.t-message_box_text {
  max-width: 540px;
  width: calc(100% - 600px);
}

.t-message_hub_deco01 {
  position: absolute;
  content: '';
  width: 61px;
  height: 63px;
  background: url(../img/top/message-deco01.png);
  background-size: 100% auto;
  top: -20px;
  right: -20px;
  z-index: 1;
  pointer-events: none;
}

.t-message_hub_deco02 {
  position: absolute;
  content: '';
  width: 72px;
  height: 86px;
  background: url(../img/top/message-deco02.png);
  background-size: 100% auto;
  top: 70px;
  left: -90px;
  z-index: 1;
  pointer-events: none;
}

.t-message_hub_deco03 {
  position: absolute;
  content: '';
  width: 115px;
  height: 104px;
  background: url(../img/top/message-deco03.png);
  background-size: 100% auto;
  bottom: 170px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.t-message_hub_deco04 {
  position: absolute;
  content: '';
  width: 52px;
  height: 110px;
  background: url(../img/top/message-deco04.png);
  background-size: 100% auto;
  bottom: -80px;
  right: -45px;
  z-index: 1;
  pointer-events: none;
}

@media screen and (max-width: 1300px) {
  .t-message_hub_deco02 {
    left: 10px;
  }

  .t-message_hub_deco03 {
    left: -40px;
    bottom: 110px;
  }

  .t-message_hub_deco04 {
    bottom: -40px;
    right: -20px;
  }
}
@media screen and (max-width: 1024px) {
  .t-message_box_image {
    width: 50%;
  }

  .t-message_box_text {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .t-message_box {
    flex-direction: column;
  }

  .t-message_box_image {
    width: 100%;
  }

  .t-message_box_text {
    width: 100%;
  }
  .t-message_box_text .btn-A {
    margin: 0 auto;
  }

  .t-message_hub_deco02 {
    left: -50px;
  }
}
@media screen and (max-width: 600px) {
  .top02 {
    padding-bottom: 100px;
  }

  .top02_hub_deco01 {
    width: 48px;
    height: 49px;
    right: 20px;
  }

  .top02_hub_deco02 {
    width: 98px;
    height: 65.6px;
    left: 20px;
    bottom: 50px;
  }

  .top02_hub_deco03 {
    width: 244px;
    height: 244px;
  }

  .t-message_box {
    width: 90%;
    margin: 0 auto;
  }

  .t-message_hub_deco01 {
    width: 48px;
    height: 49px;
  }

  .t-message_hub_deco02 {
    width: 56px;
    height: 67px;
  }

  .t-message_hub_deco03 {
    width: 90px;
    height: 81px;
  }

  .t-message_hub_deco04 {
    width: 41px;
    height: 86px;
  }

  .t-message_box_image .name {
    height: auto;
    bottom: -15px;
  }
  .t-message_box_image .name br {
    display: block;
  }
}
@media screen and (max-width: 425px) {
  .t-message_box_image .name {
    font-size: 1.4rem;
  }
}
.top03 {
  position: relative;
  width: 100%;
  margin-bottom: 160px;
  overflow: hidden;
}

.top03_hub_deco01 {
  position: absolute;
  content: '';
  width: 133px;
  height: 107px;
  background: url(../img/top/data-back-deco01.png);
  background-size: 100% auto;
  top: 195px;
  left: 90vw;
  z-index: -1;
  pointer-events: none;
}

.top03_hub_deco02 {
  position: absolute;
  content: '';
  width: 103px;
  height: 102px;
  background: url(../img/top/data-back-deco02.png);
  background-size: 100% auto;
  bottom: 40px;
  left: 2vw;
  z-index: -1;
  pointer-events: none;
}

.t-data_list {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 60px;
}

.t-data_list_box {
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 30px;
}
.t-data_list_box .icn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 205px;
}
.t-data_list_box .data_countup {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.t-data_list_box .data_countup_num {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 10rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: #E35EA3;
}
.t-data_list_box .data_num_text {
  font-size: 3.2rem;
  letter-spacing: 0.03em;
  writing-mode: tb-rl;
  color: #E35EA3;
  padding-bottom: 10px;
}

.t-data_list_ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  height: 55px;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #E35EA3;
  text-align: center;
  line-height: 1.4;
}
.t-data_list_ttl span {
  font-size: 1.4rem;
  font-weight: 400;
}

@media screen and (max-width: 1200px) {
  .t-data_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1024px) {
  .top03_hub_deco01 {
    left: inherit;
    right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .t-data_list_box .data_countup_num {
    font-size: 8rem;
  }

  .t-data_list_box .data_num_text {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 600px) {
  .top03 {
    margin-bottom: 80px;
  }

  .t-data_list {
    grid-template-columns: 100%;
  }

  .t-data_list_box {
    padding: 15px;
  }

  .t-data_list_box .icn {
    min-height: auto;
    padding: 15px 0;
  }

  .t-data_list_box .data_countup_num {
    font-size: 6rem;
  }

  .t-data_list_box .data_num_text {
    writing-mode: rl-tb;
    padding-bottom: 0;
    font-size: 2rem;
  }

  .top03_hub_deco01 {
    width: 104px;
    height: 83.3px;
    right: -10px;
  }

  .top03_hub_deco02 {
    width: 80.5px;
    height: 79.7px;
    right: -10px;
  }
}
.top04 {
  position: relative;
  width: 100%;
  padding: 150px 0 60px;
}

.t-interview_block {
  position: relative;
  width: 100%;
  padding-bottom: 160px;
}
.t-interview_block .t-interview_block_hub_deco01 {
  position: absolute;
  content: '';
  width: 137px;
  height: 158px;
  background: url(../img/top/interview_block_hub_deco01.png);
  background-size: 100% auto;
  top: 50px;
  right: 5vw;
  z-index: 1;
  pointer-events: none;
}
.t-interview_block .t-interview_block_hub_deco02 {
  position: absolute;
  content: '';
  width: 141px;
  height: 160px;
  background: url(../img/top/interview_block_hub_deco02.png);
  background-size: 100% auto;
  top: 150px;
  left: 3vw;
  z-index: 1;
  pointer-events: none;
}
.t-interview_block .t-interview_block_hub_deco03 {
  position: absolute;
  content: '';
  width: 103px;
  height: 102px;
  background: url(../img/top/interview_block_hub_deco03.png);
  background-size: 100% auto;
  bottom: 120px;
  right: 11vw;
  z-index: 1;
  pointer-events: none;
}

.interview-slider {
  width: 100%;
  margin: 50px auto 60px;
}
.interview-slider .swiper-slide {
  opacity: 0.7;
  scale: 0.9;
}
.interview-slider .swiper-slide.swiper-slide-active {
  opacity: 1;
  scale: 1;
}

.interview-slider-item-inner {
  position: relative;
  width: 100%;
  padding-top: 20px;
}
.interview-slider-item-inner .img img {
  width: 100%;
  border-radius: 20px;
}
.interview-slider-item-inner .person-copy {
  position: absolute;
  right: 20px;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 10px;
  font-feature-settings: "palt";
}
.interview-slider-item-inner .person-copy span {
  font-size: clamp(22px, 2vw, 32px);
  color: #E45FA4;
  font-weight: 400;
  writing-mode: tb-rl;
  letter-spacing: 0.03em;
  padding: 15px 5px;
  background: #fff;
  border-radius: 4px;
}
.interview-slider-item-inner .person-copy span:first-child {
  margin-bottom: 20px;
}
.interview-slider-item-inner .interview-data {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 20px 30px;
}
.interview-slider-item-inner .interview-data .person-post {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 15px;
  border: 2px solid #fff;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #fff;
  border-radius: 30px;
}
.interview-slider-item-inner .interview-data .name {
  font-weight: bold;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #fff;
  margin-top: 10px;
}

.swiper-button-prev.interview-slider-prev,
.swiper-button-next.interview-slider-next {
  width: 84px;
  height: 84px;
}

.swiper-button-next.interview-slider-next {
  right: 8vw;
}
.swiper-button-next.interview-slider-next:after {
  content: '';
  width: 84px;
  height: 84px;
  background: url(../img/top/interview-arrow-next.png);
  background-size: 100% 100%;
}

.swiper-button-prev.interview-slider-prev {
  left: 8vw;
}
.swiper-button-prev.interview-slider-prev:after {
  content: '';
  width: 84px;
  height: 84px;
  background: url(../img/top/interview-arrow-prev.png);
  background-size: 100% 100%;
}

.t-crosstake_block {
  position: relative;
  width: 100%;
}
.t-crosstake_block .btn-B {
  margin-left: auto;
}
.t-crosstake_block .t-crosstake_block_hub_deco01 {
  position: absolute;
  content: '';
  width: 190px;
  height: 130px;
  background: url(../img/top/crosstake_block_hub_deco01.png);
  background-size: 100% auto;
  top: -130px;
  left: 9vw;
  z-index: 1;
  pointer-events: none;
}
.t-crosstake_block .t-crosstake_block_hub_deco02 {
  position: absolute;
  content: '';
  width: 72px;
  height: 86px;
  background: url(../img/top/crosstake_block_hub_deco02.png);
  background-size: 100% auto;
  bottom: 60px;
  left: 8vw;
  z-index: 1;
  pointer-events: none;
}

.t-crosstake_tab {
  width: 100%;
  margin: 60px auto;
  display: flex;
}

.t-crosstake_image {
  width: 51%;
}
.t-crosstake_image .t-crosstake_image_item {
  position: relative;
  display: none;
}
.t-crosstake_image .t-crosstake_image_item.is-show {
  display: block;
}
.t-crosstake_image .t-crosstake_image_item .visual {
  width: 100%;
  border-radius: 0 20px 20px 0;
}
.t-crosstake_image .t-crosstake_image_item .inner {
  position: absolute;
  z-index: 3;
  left: 50px;
  bottom: 40px;
}
.t-crosstake_image .t-crosstake_image_item .inner .num {
  position: relative;
  z-index: 2;
  margin-bottom: -10px;
}
.t-crosstake_image .t-crosstake_image_item .inner .text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.t-crosstake_image .t-crosstake_image_item .inner h3 {
  display: inline-block;
  font-weight: 400;
  font-size: 4rem;
  letter-spacing: 0.03em;
  background: #fff;
  padding: 5px 15px;
  border-radius: 4px;
  border-bottom-left-radius: 0;
}
.t-crosstake_image .t-crosstake_image_item .inner p {
  display: inline-block;
  letter-spacing: 0.03em;
  padding: 5px 15px;
  background: #fff;
  border-radius: 0 0 4px 4px;
}

.t-crosstake_link {
  width: 49%;
  padding: 0 70px;
}

.t-crosstake_link_text {
  width: 100%;
  height: 25%;
  font-weight: 400;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  color: #fff;
  line-height: 2.2;
}

.t-crosstake_link_list {
  width: 100%;
  height: 75%;
}

.t-crosstake_link_list_item {
  width: 100%;
  height: 33%;
  border-bottom: 1px solid #fff;
}
.t-crosstake_link_list_item:first-child {
  border-top: 1px solid #fff;
}
.t-crosstake_link_list_item a {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 100%;
  padding-right: 50px;
}
.t-crosstake_link_list_item a:after {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../img/top/closstalk-arrow.png);
  background-size: 100% 100%;
  top: 50%;
  right: 10px;
  translate: 0 -50%;
}
.t-crosstake_link_list_item a:hover:after {
  translate: 5px -50%;
  transition: all .6s;
}
.t-crosstake_link_list_item a p {
  font-family: "Raleway", sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.08em;
  line-height: 1.2;
}
.t-crosstake_link_list_item a h4 {
  font-weight: 400;
  font-size: 3.2rem;
  color: #fff;
  letter-spacing: 0.03em;
}
.t-crosstake_link_list_item a h4 span {
  font-size: 1.4rem;
}

@media screen and (max-width: 1500px) {
  .t-crosstake_image {
    height: 600px;
  }

  .t-crosstake_image .t-crosstake_image_item img {
    height: 100%;
    object-fit: cover;
  }

  .t-crosstake_image .t-crosstake_image_item .inner .num img {
    height: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .t-crosstake_tab {
    flex-direction: column;
    gap: 30px;
  }

  .t-crosstake_image {
    width: 100%;
    height: inherit;
  }

  .t-crosstake_link {
    width: 100%;
    padding: 0;
  }

  .t-crosstake_link_text {
    padding: 0 30px;
    margin-bottom: 40px;
  }

  .t-crosstake_link_list_item a {
    height: 140px;
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .top04 {
    padding: 70px 0 30px;
  }

  .t-interview_block {
    padding-bottom: 80px;
  }

  .t-interview_block .t-interview_block_hub_deco01 {
    right: 20px;
    top: -80px;
    width: 13vw;
    height: 15vw;
  }

  .t-interview_block .t-interview_block_hub_deco02 {
    left: 20px;
    top: -50px;
    width: 14vw;
    height: 16vw;
  }

  .t-interview_block .t-interview_block_hub_deco03 {
    width: 10vw;
    height: 10vw;
  }

  .t-crosstake_block .t-crosstake_block_hub_deco01 {
    left: 30px;
    width: 16vw;
    height: 13vw;
    background-repeat: no-repeat;
  }

  .t-crosstake_block .t-crosstake_block_hub_deco02 {
    bottom: -20px;
    left: 20px;
    width: 9vw;
    height: 11vw;
    background-repeat: no-repeat;
  }
}
@media screen and (max-width: 600px) {
  .t-crosstake_image .t-crosstake_image_item .inner {
    position: relative;
    left: inherit;
    bottom: inherit;
    z-index: 3;
    margin-top: -20vw;
    padding: 0 20px;
  }

  .t-crosstake_image .t-crosstake_image_item .inner .num img {
    width: 40%;
  }
}
@media screen and (max-width: 425px) {
  .interview-slider-item-inner .person-copy {
    gap: 5px;
    right: 10px;
  }

  .interview-slider-item-inner .person-copy span {
    font-size: 1.8rem;
  }

  .swiper-button-prev.interview-slider-prev,
  .swiper-button-next.interview-slider-next {
    width: 54px;
    height: 54px;
  }

  .swiper-button-next.interview-slider-next:after,
  .swiper-button-prev.interview-slider-prev:after {
    width: 54px;
    height: 54px;
  }

  .t-crosstake_image .t-crosstake_image_item .inner h3 {
    font-size: 6.3vw;
  }

  .t-crosstake_link_list_item a h4 {
    display: flex;
    flex-direction: column;
    font-size: 2.5rem;
  }

  .t-crosstake_block .btn-B {
    margin-right: auto;
  }

  .interview-slider-item-inner .interview-data .person-post {
    font-size: 4vw;
  }
}
#viewport {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100%;
  width: 100%;
  overflow: hidden;
}

#scroll-container {
  position: absolute;
  width: 100%;
}

/***************************

object/project/subpage.scss

***************************/
.under .main {
  position: relative;
  padding-top: 130px;
}
.under .main:after {
  position: absolute;
  content: '';
  width: 100vw;
  height: 100%;
  background: url(../img/subpage/page-header-deco05.png), url(../img/subpage/page-header-deco06.png);
  background-repeat: no-repeat;
  background-size: 103px 100px, 189px 130px;
  background-position: bottom 20% left, bottom 30% right;
  left: 50%;
  top: 0;
  translate: -50% 0;
  pointer-events: none;
  z-index: -1;
  animation: Essub01 3s linear infinite both;
  animation-delay: -2s;
}
@media screen and (max-width: 1500px) {
  .under .main:after {
    background-position: bottom 20% left -20px, bottom 30% right -20px;
  }
}

.subpage {
  position: relative;
  width: 100%;
  z-index: 2;
}
.subpage:before {
  position: absolute;
  content: '';
  width: 43px;
  height: 61px;
  background: url(../img/subpage/page-header-deco01.png);
  background-size: 100% auto;
  right: 18vw;
  top: 35px;
  pointer-events: none;
  z-index: -1;
  animation: Es01 3s linear infinite both;
}
.subpage:after {
  position: absolute;
  content: '';
  width: 92px;
  height: 95px;
  background: url(../img/subpage/page-header-deco02.png);
  background-size: 100% auto;
  left: 9vw;
  top: 180px;
  pointer-events: none;
  z-index: -1;
  animation: Es01 3s linear infinite both;
  animation-delay: -2s;
}

.subpage_inner {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 20px;
}

.subpage_ttl {
  font-weight: 400;
  font-size: 12.5rem;
  letter-spacing: 0.12em;
  line-height: 1.2;
  color: #fff;
  text-align: center;
}

.subpage_ttl__ja {
  font-size: 2.8rem;
  letter-spacing: 0.08em;
  text-align: center;
}

.subpage_visual {
  position: relative;
  width: 100%;
}
.subpage_visual img {
  width: 100%;
}
.subpage_visual:before {
  position: absolute;
  content: '';
  width: 158px;
  height: 179px;
  background: url(../img/subpage/page-header-deco03.png);
  background-size: 100% auto;
  right: 5.7vw;
  top: -90px;
  pointer-events: none;
  z-index: 2;
  animation: Es02 3s linear infinite both;
}

.under-section-wrap {
  position: relative;
  max-width: 1420px;
  width: 90%;
  background: #fff;
  border-radius: 20px;
  margin: -5vw auto 0;
  z-index: 3;
}
.under-section-wrap:before {
  position: absolute;
  content: '';
  width: 123px;
  height: 107px;
  background: url(../img/subpage/page-header-deco04.png);
  background-size: 100% auto;
  left: -20px;
  top: -10px;
  pointer-events: none;
  z-index: 1;
  animation: Es01 3s linear infinite both;
  animation-delay: -2s;
}

@media screen and (max-width: 1300px) {
  .under .main {
    padding-top: 80px;
  }
}
@media screen and (max-width: 1024px) {
  .subpage:before {
    width: 4.2vw;
    height: 6vw;
    right: 10vw;
  }

  .subpage:after {
    width: 9vw;
    height: 9.3vw;
    left: 4vw;
  }

  .subpage_ttl {
    font-size: clamp(70px, 12vw, 125px);
  }

  .subpage_visual:before {
    width: 15vw;
    height: 17vw;
    right: 3vw;
    top: -9vw;
  }

  .under-section-wrap:before {
    width: 12vw;
    height: 10vw;
  }
}
@media screen and (max-width: 768px) {
  .subpage_inner {
    padding: 60px 20px;
  }
}
@media screen and (max-width: 425px) {
  .subpage:after {
    top: 130px;
  }

  .subpage_ttl {
    font-size: 11.8vw;
  }

  .subpage_ttl__ja {
    font-size: 2rem;
  }

  .subpage_inner p.col_pink {
    font-size: 3.1vw;
  }

}
/***************************

object/project/concept.scss

***************************/
.concept01 {
  width: 100%;
  padding-top: 150px;
  margin-bottom: 120px;
}

.concept-vision {
  display: flex;
  gap: 50px 70px;
  width: 100%;
  margin-top: 100px;
}

.concept-vision_image,
.concept-vision_text {
  width: 50%;
}

.concept02 {
  width: 100%;
  padding-bottom: 100px;
}

.concept-numbers_box {
  position: relative;
  width: 100%;
}

.concept-numbers_list {
  width: 100%;
  display: flex;
  gap: 20px;
  margin: 0 auto;
  margin-top: 50px;
}

.concept-numbers_list_item {
  width: calc(100% / 3);
  background: #FCE9F2;
  border-radius: 14px;
  padding: 40px 35px;
}
.concept-numbers_list_item .icn {
  text-align: center;
  margin-bottom: 20px;
}

@media screen and (max-width: 1024px) {
  .concept-vision {
    gap: 50px 30px;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .concept01 {
    padding-top: 70px;
    margin-bottom: 60px;
  }

  .concept02 {
    padding-bottom: 50px;
  }

  .concept-vision {
    flex-direction: column;
    margin-top: 50px;
  }

  .concept-vision_image {
    max-width: 600px;
    width: 100%;
  }

  .concept-vision_text {
    width: 100%;
  }

  .concept-numbers_list {
    flex-wrap: wrap;
  }

  .concept-numbers_list_item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 425px) {
  .concept-numbers_list_item {
    width: 100%;
  }
}
/***************************

object/project/message.scss

***************************/
.message-name-box {
  position: absolute;
  max-width: 475px;
  width: 100%;
  background: linear-gradient(32deg, #DD3A8E, #E462A5);
  border-radius: 13px;
  top: calc( 50% - 70px);
  left: calc((100% - 1220px) / 2);
}

.message-name_post {
  width: 100%;
  padding: 30px 40px;
  letter-spacing: 0.03em;
  color: #fff;
  border-bottom: 1px solid #fff;
}

.message-name {
  width: 100%;
  padding: 30px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 20px;
}
.message-name .message-name_en {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: #fff;
}

.message-name-box_deco01 {
  position: absolute;
  content: '';
  width: 43px;
  height: 46px;
  background: url(../img/message/main-deco01.png);
  background-size: 100% auto;
  z-index: 1;
  pointer-events: none;
  left: -20px;
  top: -60px;
}

.message-name-box_deco02 {
  position: absolute;
  content: '';
  width: 31px;
  height: 45px;
  background: url(../img/message/main-deco02.png);
  background-size: 100% auto;
  z-index: 1;
  pointer-events: none;
  bottom: -50px;
  left: 70px;
}

.message-name-box_deco03 {
  position: absolute;
  content: '';
  width: 32px;
  height: 40px;
  background: url(../img/message/main-deco03.png);
  background-size: 100% auto;
  z-index: 1;
  pointer-events: none;
  top: -60px;
  right: -20px;
}

.message01 {
  width: 100%;
  padding: 110px 0 100px;
}

.message-first-article {
  width: 100%;
  display: flex;
  margin-bottom: 70px;
}
.message-first-article h3 {
  width: 420px;
}
.message-first-article p {
  width: calc(100% - 420px);
}

.message-point_list {
  width: 100%;
}

.message-point_list_item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.message-point_list_item:nth-child(odd) {
  flex-direction: row-reverse;
}
.message-point_list_item:not(:last-child) {
  margin-bottom: 80px;
}
.message-point_list_item .image {
  width: 52%;
}
.message-point_list_item .image img {
  border-radius: 15px;
}
.message-point_list_item .text {
  width: 43%;
}

@media screen and (max-width: 1300px) {
  .message-name-box {
    left: 40px;
  }

  .message .subpage_visual img {
    height: 500px;
    object-fit: cover;
  }

  .message .message-name_ja img {
    height: inherit;
  }
}
@media screen and (max-width: 1024px) {
  .message-name-box {
    width: 47vw;
  }

  .message-first-article h3 {
    width: 345px;
  }

  .message-first-article p {
    width: calc(100% - 345px);
  }
}
@media screen and (max-width: 768px) {
  .message-name-box {
    top: calc( 50% - 90px);
  }

  .message-name_post,
  .message-name {
    padding: 15px 30px;
  }

  .subpage_visual img {
    object-position: 60% center;
  }

  .message01 {
    padding: 60px 0 50px;
  }

  .message-first-article {
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 40px;
  }

  .message-first-article h3,
  .message-first-article p {
    width: 100%;
  }

  .message-point_list_item,
  .message-point_list_item:nth-child(odd) {
    flex-direction: column;
    gap: 20px;
  }

  .message-point_list_item:not(:last-child) {
    margin-bottom: 40px;
  }

  .message-point_list_item .image {
    width: 100%;
    text-align: center;
  }

  .message-point_list_item .text {
    width: 100%;
  }
}
@media screen and (min-width: 651px) {
  .sp-message-name-box {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .message01 {
    padding-top: 130px;
  }

  .pc-message-name-box {
    display: none;
  }

  .message-name_post br {
    display: none;
  }

  .message .under-section-wrap {
    z-index: 3;
  }

  .message-name-box {
    max-width: 100%;
    width: 80%;
    top: -80px;
    left: 50%;
    translate: -50% 0;
    z-index: 99;
  }
}
@media screen and (max-width: 425px) {
  .message01 {
    padding-top: 160px;
  }

  .message-name_post br {
    display: block;
  }
}
/***************************

object/project/data.scss

***************************/
.data01 {
  width: 100%;
  padding: 110px 0 100px;
}

.data01 .data_countup_num.fz80 {
  font-size: 8rem;
}

.t-data_list_box .data_countup.flex-align-center {
  align-items: center;
}

.data01 .t-data_list {
  gap: 20px;
}
.data01 .t-data_list.row_span3 {
  grid-template-columns: repeat(3, 1fr);
}
.data01 .t-data_list.row_span2 {
  grid-template-columns: repeat(2, 1fr);
}
.data01 .t-data_list:first-of-type {
  margin-top: 80px;
}
.data01 .t-data_list:not(:last-of-type) {
  margin-bottom: 20px;
}

.data01 .t-data_list_box {
  background: #FCE9F2;
}

.data_countup_dl {
  width: 100%;
}
.data_countup_dl .data_countup_dl_block {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.data_countup_dl .data_countup_dl_block:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  border-top: 1px dotted;
  top: 50%;
}
.data_countup_dl .data_countup_dl_block.flex-wrap:after {
  position: absolute;
  content: '';
  width: 80%;
  height: 1px;
  border-top: 1px dotted;
  top: 75%;
  right: 0;
}
.data_countup_dl .data_countup_dl_block.flex-wrap dd {
  margin-left: auto;
}
.data_countup_dl .data_countup_dl_block dt {
  position: relative;
  font-size: 1.8rem;
  letter-spacing: 0.03em;
  line-height: 2;
  padding: 10px;
  padding-left: 20px;
  background: #FCE9F2;
  z-index: 2;
  white-space: nowrap;
}
.data_countup_dl .data_countup_dl_block dt:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: linear-gradient(51deg, #DD3A8E, #E462A5);
  border-radius: 100%;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 2;
}
.data_countup_dl .data_countup_dl_block dd {
  position: relative;
  background: #FCE9F2;
  z-index: 2;
  padding: 0 10px;
}
.data_countup_dl .data_countup_dl_block dd .data_countup_num {
  font-size: 4rem;
}
.data_countup_dl .data_countup_dl_block dd .data_num_text {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  writing-mode: rl-tb;
  padding-bottom: 0;
  line-height: 1;
}

@media screen and (max-width: 1400px) {
  .data01 .t-data_list {
    grid-template-columns: repeat(2, 1fr);
  }
}


@media screen and (max-width: 1200px) {
  .data_countup_dl .data_countup_dl_block.flex-wrap:after {
    top: 50%;
  }
}
@media screen and (max-width: 1024px) {
  .data01 .t-data_list.row_span3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .data01 {
    padding: 60px 0 50px;
  }

  .data01 .t-data_list:first-of-type {
    margin-top: 40px;
  }

  .data_countup_dl .data_countup_dl_block.flex-wrap:after {
    top: 75%;
  }
  .data_countup_dl .data_countup_dl_block.flex-wrap dt {
    width: 100%;
  }
}
@media screen and (max-width: 750px) {
  .data01 .t-data_list,
  .data01 .t-data_list.row_span2,
  .data01 .t-data_list.row_span3 {
    grid-template-columns: 100%;
  }
}
@media screen and (max-width: 650px) {
  .data01 .t-data_list_box .icn {
    min-height: auto;
    padding: 10px 0;
  }

  .data01 .data_countup_num.fz80 {
    font-size: 4rem;
  }

  .data_countup_dl .data_countup_dl_block.flex-wrap:after {
    top: 50%;
  }
  .data_countup_dl .data_countup_dl_block.flex-wrap dt {
    width: inherit;
  }
}
@media screen and (max-width: 425px) {
  .data01 .data_countup_dl .data_countup_dl_block dd .data_countup_num {
    font-size: 3rem;
  }

  .data01 .data_countup_dl .data_countup_dl_block dd .data_num_text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 375px) {
  .data_countup_dl .data_countup_dl_block.flex-wrap:after {
    top: 75%;
  }
  .data_countup_dl .data_countup_dl_block.flex-wrap dt {
    width: 100%;
  }
}
/***************************

object/project/interview.scss

***************************/
.interview-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  margin-top: 90px;
}

.interview-list_item {
  width: calc(50% - 30px);
}
.interview-list_item a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}
.interview-list_item a:before {
  position: absolute;
  content: '';
  width: 70px;
  height: 70px;
  background: url(../img/interview/arrow.png);
  background-size: 100% 100%;
  right: 40px;
  bottom: 30px;
  z-index: 2;
  pointer-events: none;
}
.interview-list_item a:hover {
  opacity: 1;
}
.interview-list_item a:hover:before {
  translate: 10px 0;
  transition: all .6s;
}
.interview-list_item a:hover .img {
  overflow: hidden;
  border-radius: 20px;
}
.interview-list_item a:hover .img img {
  scale: 1.2;
  transition: all 1s;
}
.interview-list_item .img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.interview-list_item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
.interview-list_item .inner {
  width: 100%;
  height: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.interview-list_item .inner:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, #000, #fff 40%);
  z-index: 1;
  opacity: 0.3;
  border-radius: 20px;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.interview-list_item .inner h3 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-start;
  gap: 10px;
  z-index: 2;
}
.interview-list_item .inner h3 span {
  display: inline-block;
  font-size: 2.8rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  writing-mode: tb-rl;
  color: #E45FA4;
  padding: 10px 5px;
  background: #fff;
  border-radius: 4px;
}
.interview-list_item .inner h3 span:first-child {
  margin-bottom: 20px;
}
.interview-list_item .inner .person_data {
  position: relative;
  width: 100%;
  z-index: 3;
}
.interview-list_item .inner .person_data .post {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.interview-list_item .inner .person_data .name {
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1300px) {
  .interview-list_item .inner {
    justify-content: flex-end;
    align-items: flex-start;
    height: 400px;
    gap: 15px;
  }

  .interview-list_item .inner h3 {
    flex-direction: column;
  }

  .interview-list_item .inner h3 span {
    writing-mode: lr-tb;
  }

  .interview-list_item .inner h3 span:first-child {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1024px) {
  .interview-list {
    gap: 30px;
  }

  .interview-list_item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .interview-list_item .img img {
    height: inherit;
  }
}
@media screen and (max-width: 600px) {
  .interview-list_item .inner {
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
  }

  .interview-list_item .inner {
    height: 375px;
  }

  .interview-list_item .inner h3 span {
    font-size: 4vw;
  }

  .interview-list_item a:before {
    right: 20px;
    width: 50px;
    height: 50px;
  }

  .interview-list_item .inner {
    padding: 20px 70px 20px 20px;
  }

  .interview-list_item .inner .person_data .post {
    font-size: 3.5vw;
  }
}
/* detail */
.interview-detail .employee-copy {
  position: absolute;
  top: -40px;
  right: calc((100% - 1040px) / 2);
  z-index: 3;
}

.interview-detail .employee-copy h3 {
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 10px;
}
.interview-detail .employee-copy h3 span {
  display: inline-block;
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.03em;
  writing-mode: tb-rl;
  color: #E45FA4;
  padding: 10px 5px;
  background: #fff;
  border-radius: 4px;
}
.interview-detail .employee-copy h3 span:first-child {
  margin-bottom: 20px;
}

.employee-info-box {
  position: relative;
  max-width: 1220px;
  width: calc(100% - 80px);
  translate: 0 -60px;
  z-index: 4;
  display: flex;
  align-items: center;
  background: linear-gradient(30deg, #DD3A8E, #E462A5);
  padding: 20px 0;
  border-radius: 14px;
  margin: 0 auto;
}
.employee-info-box .text {
  width: calc(100% - 310px);
  padding: 0 60px;
}

.employee-info {
  width: 310px;
  padding: 20px 60px;
  border-right: 1px solid #fff;
}
.employee-info .post {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.employee-info .name {
  color: #fff;
  letter-spacing: 0.03em;
}

@media screen and (max-width: 1300px) {
  .interview-detail .subpage_visual img {
    height: 400px;
    object-fit: cover;
    object-position: center;
  }

  .interview-detail .employee-copy {
    right: 18.5vw;
  }
}
@media screen and (max-width: 600px) {
  .interview-detail .employee-copy {
    right: 8.5vw;
  }

  .interview-detail .employee-copy h3 span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 425px) {
  .employee-info .post {
    font-size: 3.1vw;
  }
}
.interview-detail01 {
  width: 100%;
  margin-bottom: 100px;
}

.interview-detail-content {
  width: 100%;
}

.interview-detail-content_block {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.interview-detail-content_block:nth-child(odd) {
  flex-direction: row-reverse;
}
.interview-detail-content_block:not(:last-child) {
  margin-bottom: 80px;
}
.interview-detail-content_block .image {
  width: 52%;
}
.interview-detail-content_block .image img {
  border-radius: 15px;
}
.interview-detail-content_block .textbox {
  width: 42%;
}
.interview-detail-content_block .textbox .flag {
  position: relative;
  display: inline-block;
  font-weight: bold;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  color: #DF4B98;
  padding: 10px 25px;
  border-radius: 6px;
  background: #FCE9F2;
  margin-bottom: 30px;
}
.interview-detail-content_block .textbox .flag:after {
  position: absolute;
  content: '';
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-left: 10px solid #FCE9F2;
  left: 0;
  bottom: -10px;
}
.interview-detail-content_block .textbox .text p:not(:last-child) {
  margin-bottom: 10px;
}

.interview-detail02 {
  width: 100%;
  padding-bottom: 100px;
}

.interview-schedule-wrap {
  width: 100%;
  background: #FCE9F2;
  border-radius: 20px;
  padding: 0 20px;
  padding-bottom: 90px;
}

.interview-schedule_ttl {
  display: block;
  max-width: 455px;
  width: 100%;
  min-height: 55px;
  text-align: center;
  background: url(../img/concept/numbers-ttl-back.png);
  background-size: 100% 100%;
  background-position: bottom center;
  margin: 0 auto 50px;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.03em;
  color: #DF4B98;
  padding: 0 20px;
}

.interview-schedule {
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
}
.interview-schedule:before {
  position: absolute;
  content: '';
  width: 2px;
  height: 100%;
  border-left: 2px dotted #DF4B98;
  top: 0;
  left: 50%;
  translate: -50% 0;
}

.interview-schedule_block {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.interview-schedule_block:nth-child(even) {
  flex-direction: row-reverse;
}
.interview-schedule_block:nth-child(even) dd:before {
  left: inherit;
  right: -16px;
  rotate: 180deg;
}
.interview-schedule_block:not(:first-child) {
  margin-top: -15px;
}
.interview-schedule_block:not(:last-child):before {
  position: absolute;
  content: '';
  width: 4px;
  height: 100%;
  border-left: 4px solid #DF4B98;
  top: 40px;
  left: calc(50% - 3px);
  z-index: -1;
}

.interview-schedule_block dt {
  width: 155px;
  padding-top: 20px;
  text-align: center;
}
.interview-schedule_block dt span {
  width: 90px;
  height: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  font-size: 2.4rem;
  letter-spacing: -0.02em;
  color: #fff;
  background: #DF4B98;
  border-radius: 40px;
}

.interview-schedule_block dd {
  position: relative;
  width: calc((100% - 155px) / 2);
  background: #fff;
  border-radius: 15px;
  padding: 20px 35px;
}
.interview-schedule_block dd:before {
  position: absolute;
  content: '';
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 16px solid #fff;
  top: 30px;
  left: -16px;
  z-index: 2;
}
.interview-schedule_block dd .inner {
  width: 100%;
}
.interview-schedule_block dd .inner.flexbox {
  gap: 10px 25px;
}
.interview-schedule_block dd .inner .image {
  width: 140px;
}
.interview-schedule_block dd .inner .text {
  width: calc(100% - 165px);
}

.other-employee-list-wrap {
  width: 100%;
  margin-top: 90px;
}
.other-employee-list-wrap .other-employee-list {
  margin-top: 30px;
}
@media screen and (min-width: 1025px) {
  .other-employee-list-wrap .other-employee-list {
    display: flex;
    gap: 20px 40px;
  }
  .other-employee-list-wrap .other-employee-list .swiper-slide {
    width: calc((100% - 80px) / 3);
  }
  .other-employee-list-wrap .other-employee-list .swiper-slide:nth-child(n+4) {
    display: none;
  }
}
.other-employee-list-wrap .other-employee-list_item {
  width: 100%;
}
.other-employee-list-wrap .other-employee-list_item a {
  position: relative;
  display: block;
  width: 100%;
}
.other-employee-list-wrap .other-employee-list_item a:before {
  position: absolute;
  content: '';
  width: 40px;
  height: 40px;
  background: url(../img/interview/arrow.png);
  background-size: 100% 100%;
  right: 25px;
  bottom: 30px;
  z-index: 2;
  pointer-events: none;
}
.other-employee-list-wrap .other-employee-list_item a:hover {
  opacity: 1;
}
.other-employee-list-wrap .other-employee-list_item a:hover:before {
  translate: 10px 0;
  transition: all .6s;
}
.other-employee-list-wrap .other-employee-list_item a:hover .img {
  overflow: hidden;
  border-radius: 20px;
}
.other-employee-list-wrap .other-employee-list_item a:hover .img img {
  scale: 1.2;
  transition: all 1s;
}
.other-employee-list-wrap .other-employee-list_item .img {
  width: 100%;
}
.other-employee-list-wrap .other-employee-list_item .img img {
  width: 100%;
  border-radius: 20px;
}
.other-employee-list-wrap .other-employee-list_item .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  padding: 20px 30px;
  left: 0;
  top: 0;
  display: flex;
  align-items: flex-end;
}
.other-employee-list-wrap .other-employee-list_item .inner:before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  background: linear-gradient(30deg, #000, #fff 40%);
  z-index: 1;
  opacity: 0.3;
  border-radius: 20px;
  left: 0;
  top: 0;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.other-employee-list-wrap .other-employee-list_item .inner .person_data {
  position: relative;
  z-index: 3;
}
.other-employee-list-wrap .other-employee-list_item .inner .person_data .post {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 1vw;
  font-weight: bold;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.other-employee-list-wrap .other-employee-list_item .inner .person_data .name {
  font-weight: bold;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.03em;
}
.other-employee-list-wrap .swiper-button-prev.other-employee-prev,
.other-employee-list-wrap .swiper-button-next.other-employee-next {
  width: 84px;
  height: 84px;
}
.other-employee-list-wrap .swiper-button-next.other-employee-next {
  right: 0;
}
.other-employee-list-wrap .swiper-button-next.other-employee-next:after {
  content: '';
  width: 84px;
  height: 84px;
  background: url(../img/top/interview-arrow-next.png);
  background-size: 100% 100%;
}
.other-employee-list-wrap .swiper-button-prev.other-employee-prev {
  left: 0;
}
.other-employee-list-wrap .swiper-button-prev.other-employee-prev:after {
  content: '';
  width: 84px;
  height: 84px;
  background: url(../img/top/interview-arrow-prev.png);
  background-size: 100% 100%;
}
@media screen and (min-width: 1025px) {
  .other-employee-list-wrap .other-employee-next,
  .other-employee-list-wrap .other-employee-prev {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .interview-schedule_block dd .inner.flexbox {
    flex-direction: column;
  }

  .interview-schedule_block dd .inner .text {
    width: 100%;
  }

  .other-employee-list-wrap .other-employee-list_item {
    padding: 0 20px;
  }

  .other-employee-list-wrap .other-employee-list_item a:before {
    width: 40px;
    height: 40px;
    right: 20px;
  }

  .other-employee-list-wrap .other-employee-list_item .inner .person_data .post {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 768px) {
  .interview-detail01 {
    margin-bottom: 50px;
  }

  .employee-info-box {
    flex-direction: column;
  }

  .employee-info {
    width: 100%;
    padding: 0 20px 10px;
    text-align: center;
    border-right: none;
    border-bottom: 1px solid #fff;
  }

  .employee-info-box .text {
    width: 100%;
    padding: 10px 20px 0;
  }

  .interview-detail-content_block {
    flex-direction: column;
  }

  .interview-detail-content_block:nth-child(odd) {
    flex-direction: column;
  }

  .interview-detail-content_block:not(:last-child) {
    margin-bottom: 40px;
  }

  .interview-detail-content_block .image {
    max-width: 630px;
    width: 100%;
  }

  .interview-detail-content_block .textbox {
    width: 100%;
  }

  .interview-detail02 {
    padding-bottom: 50px;
  }

  .interview-schedule-wrap {
    padding-bottom: 50px;
  }

  .other-employee-list-wrap {
    margin-top: 50px;
  }

  .interview-schedule_block,
  .interview-schedule_block:nth-child(even) {
    flex-direction: column;
  }

  .interview-schedule_block:not(:first-child) {
    margin-top: 0;
  }

  .interview-schedule_block dt {
    width: 100%;
  }

  .interview-schedule_block dd {
    width: 100%;
    margin-top: 20px;
  }

  .interview-schedule_block dd:before {
    display: none;
  }

  .other-employee-list-wrap .other-employee-list_item .inner .person_data .post {
    font-size: 2vw;
  }
}
@media screen and (max-width: 600px) {
  .other-employee-list-wrap .other-employee-list_item {
    padding: 0 5px;
  }

  .other-employee-list-wrap .swiper-button-prev.other-employee-prev,
  .other-employee-list-wrap .swiper-button-next.other-employee-next {
    width: 54px;
    height: 54px;
  }

  .other-employee-list-wrap .swiper-button-next.other-employee-next:after,
  .other-employee-list-wrap .swiper-button-prev.other-employee-prev:after {
    width: 54px;
    height: 54px;
  }

  .interview-schedule_ttl {
    max-width: 80%;
    font-size: 2.2rem;
  }
}
@media screen and (max-width: 425px) {
  .other-employee-list-wrap .other-employee-list_item .img img {
    height: 350px;
    object-fit: cover;
  }

  .other-employee-list-wrap .other-employee-list_item .inner .person_data {
    margin-bottom: 50px;
  }

  .other-employee-list-wrap .other-employee-list_item .inner .person_data .post {
    font-size: 3.3vw;
  }
}
/***************************

object/project/crosstalk.scss

***************************/
.crosstalk-list {
  width: 100%;
  margin-top: 90px;
}

.crosstalk-list_item {
  position: relative;
  width: 100%;
}
.crosstalk-list_item:not(:last-child) {
  margin-bottom: 80px;
}
.crosstalk-list_item:nth-child(odd) .inner {
  align-items: flex-end;
}
.crosstalk-list_item:nth-child(odd) .inner .text {
  border-top-left-radius: 10px;
}
@media screen and (min-width: 601px) {
  .crosstalk-list_item:nth-child(odd) .inner .text:before, .crosstalk-list_item:nth-child(odd) .inner .text:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/crosstalk/crosstalk-text-deco.png);
    background-size: 100% auto;
    z-index: 2;
  }
  .crosstalk-list_item:nth-child(odd) .inner .text:before {
    top: -20px;
    right: 0;
  }
  .crosstalk-list_item:nth-child(odd) .inner .text:after {
    bottom: 0;
    left: -20px;
  }
}
.crosstalk-list_item:nth-child(even) .inner .text {
  border-top-right-radius: 10px;
}
.crosstalk-list_item:nth-child(even) .inner .text:before, .crosstalk-list_item:nth-child(even) .inner .text:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/crosstalk/crosstalk-text-deco.png);
  background-size: 100% auto;
  z-index: 2;
  rotate: 90deg;
}
.crosstalk-list_item:nth-child(even) .inner .text:before {
  top: -20px;
  left: 0;
}
.crosstalk-list_item:nth-child(even) .inner .text:after {
  bottom: 0;
  right: -20px;
}
.crosstalk-list_item a:hover {
  opacity: 1;
}
.crosstalk-list_item a:hover .img img {
  scale: 1.1;
  transition: all .6s;
}
.crosstalk-list_item a:hover .inner {
  background: rgba(0, 0, 0, 0.3);
  transition: all .6s;
}
.crosstalk-list_item a:hover .inner .text .arrow {
  translate: 20px 0;
  transition: all .6s;
}
.crosstalk-list_item .img {
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}
.crosstalk-list_item .img img {
  width: 100%;
}
.crosstalk-list_item .inner {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.crosstalk-list_item .inner .num {
  position: relative;
  max-width: 600px;
  width: 100%;
  z-index: 2;
  margin-bottom: -30px;
  padding-left: 15px;
}
.crosstalk-list_item .inner .text {
  position: relative;
  max-width: 600px;
  width: 90%;
  min-height: 90px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 30px 20px 30px 30px;
  z-index: 1;
}
.crosstalk-list_item .inner .text .flexbox {
  gap: 10px 20px;
}
.crosstalk-list_item .inner .text .arrow {
  width: 50px;
  height: 50px;
  background: url(../img/common/arrow03@2x.png) no-repeat;
  background-position: center center;
  background-size: 100% auto;
}

@media screen and (max-width: 1024px) {
  .crosstalk-list_item .img img {
    height: 400px;
    object-fit: cover;
  }

  .crosstalk-list_item .inner .num img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .crosstalk-list_item .inner .text {
    justify-content: space-between;
  }

  .crosstalk-list_item .inner .text .flexbox {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .crosstalk-list_item .img img {
    height: inherit;
  }

  .crosstalk-list_item .inner .num {
    margin-bottom: -15px;
  }

  .crosstalk-list_item .inner {
    position: relative;
    margin-top: -10vw;
  }

  .crosstalk-list_item .inner .text {
    width: 95%;
    padding: 10px;
  }

  .crosstalk-list_item:nth-child(odd) .inner .text {
    border-top-left-radius: 0;
    border-top-right-radius: 10px;
  }
  .crosstalk-list_item:nth-child(odd) .inner .text:before, .crosstalk-list_item:nth-child(odd) .inner .text:after {
    position: absolute;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../img/crosstalk/crosstalk-text-deco.png);
    background-size: 100% auto;
    z-index: 2;
    rotate: 90deg;
  }
  .crosstalk-list_item:nth-child(odd) .inner .text:before {
    top: -20px;
    left: 0;
  }
  .crosstalk-list_item:nth-child(odd) .inner .text:after {
    bottom: 0;
    right: -20px;
  }

  .crosstalk-list_item:nth-child(odd) .inner {
    align-items: flex-start;
  }

  .crosstalk-list_item .inner .text .arrow {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 425px) {
  .crosstalk-list_item .inner .text .fz32 {
    font-size: 5.3vw;
  }

  .crosstalk-list_item .inner .text span {
    font-size: 1.3rem;
  }

  .crosstalk-list_item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 320px) {
  .crosstalk-list_item .inner .text .fz32 {
    font-size: 4.9vw;
  }

  .crosstalk-list_item .inner .text span {
    font-size: 1.1rem;
  }
}
/* detail */
.talk-info-box {
  position: relative;
  max-width: 1220px;
  width: calc(100% - 80px);
  translate: 0 -60px;
  z-index: 4;
  background: linear-gradient(30deg, #DD3A8E, #E462A5);
  padding: 50px 0 35px;
  border-radius: 14px;
  margin: 0 auto;
}
.talk-info-box .text {
  max-width: 1080px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto 30px;
}

.talk-info {
  width: 100%;
}
.talk-info .talk-info_flag {
  position: relative;
  margin-bottom: 20px;
}
.talk-info .talk-info_flag:after {
  position: absolute;
  content: '';
  width: 100%;
  height: 1px;
  background: #fff;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.talk-info .talk-info_flag span {
  position: relative;
  width: 100%;
  max-width: 170px;
  width: 100%;
  min-height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  font-size: 1.4rem;
  font-weight: 600;
  color: #DF4B98;
  letter-spacing: 0.03em;
  background: #fff;
  z-index: 3;
  margin: 0 auto;
}

.talk-info_list {
  position: relative;
  max-width: 1040px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px 100px;
  margin: 0 auto;
}
.talk-info_list:before, .talk-info_list:after {
  position: absolute;
  content: '';
  width: 35px;
  height: 2px;
  background: #fff;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.talk-info_list:before {
  rotate: 45deg;
}
.talk-info_list:after {
  rotate: -45deg;
}
.talk-info_list li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.talk-info_list li .icn {
  width: 165px;
}
.talk-info_list li .talk-info_data {
  width: calc(100% - 185px);
}
.talk-info_list .post {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  font-size: 1.8rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  border: 2px solid #fff;
  color: #fff;
  border-radius: 30px;
  margin-bottom: 10px;
  padding: 0 15px;
}
.talk-info_list .name {
  color: #fff;
  letter-spacing: 0.03em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.crosstalk-detail01 {
  width: 100%;
  margin-bottom: 110px;
}

.crosstalk-detail-block {
  width: 100%;
}
.crosstalk-detail-block:not(:last-of-type) {
  margin-bottom: 120px;
}

.crosstalk-detail-talk {
  width: 100%;
  display: flex;
  gap: 40px 70px;
}
.crosstalk-detail-talk:not(:last-child) {
  margin-bottom: 60px;
}
.crosstalk-detail-talk:nth-child(odd) {
  flex-direction: row-reverse;
}
.crosstalk-detail-talk .image {
  width: 52%;
}
.crosstalk-detail-talk .image img {
  border-radius: 15px;
}

.crosstalk-detail-talk-cont {
  width: 44%;
}
.crosstalk-detail-talk-cont li {
  display: flex;
  align-items: center;
  gap: 20px;
}
.crosstalk-detail-talk-cont li:not(:last-child) {
  margin-bottom: 15px;
}
.crosstalk-detail-talk-cont li .icn {
  width: 70px;
}
.crosstalk-detail-talk-cont li .icn span {
  width: 100%;
  display: block;
  font-size: 1.1rem;
  margin-top: 5px;
  text-align: center;
}
.crosstalk-detail-talk-cont li p {
  width: calc(100% - 90px);
}

.crosstalk-detail-block_ttl {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-bottom: 70px;
}
.crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__en {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  color: #E35EA3;
}
.crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__en.line-seed-jp {
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
}
.crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__ja {
  font-weight: 400;
  font-size: 3.6rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
}

.crosstalk-detail02 {
  width: 100%;
  padding-bottom: 100px;
}

.other-link-list {
  width: 100%;
  display: flex;
  gap: 20px 40px;
  margin-top: 30px;
}

.other-link-list_item {
  position: relative;
  width: 100%;
}
.other-link-list_item a:hover {
  opacity: 1;
}
.other-link-list_item a:hover .img img {
  scale: 1.1;
  transition: all .6s;
}
.other-link-list_item a:hover .inner {
  background: rgba(0, 0, 0, 0.3);
  transition: all .6s;
}
.other-link-list_item .img {
  width: 100%;
  overflow: hidden;
  border-radius: 15px;
}
.other-link-list_item .img img {
  width: 100%;
}
.other-link-list_item .inner {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  border-radius: 12px;
  bottom: 0;
  left: 0;
}
.other-link-list_item .inner .num {
  position: relative;
  width: 100%;
  padding-left: 15px;
  margin-bottom: -20px;
  z-index: 3;
}
.other-link-list_item .inner .num img {
  width: 50%;
}
.other-link-list_item .inner .text {
  position: relative;
  display: flex;
  gap: 10px;
  padding: 10px 20px;
  background: #fff;
  border-top-right-radius: 10px;
}
.other-link-list_item .inner .text:before, .other-link-list_item .inner .text:after {
  position: absolute;
  content: '';
  width: 20px;
  height: 20px;
  background: url(../img/crosstalk/crosstalk-text-deco.png);
  background-size: 100% auto;
  z-index: 2;
  rotate: 90deg;
}
.other-link-list_item .inner .text:before {
  top: -20px;
  left: 0;
}
.other-link-list_item .inner .text:after {
  bottom: 0;
  right: -20px;
}
.other-link-list_item .inner .text .flexbox {
  gap: 10px;
}
.other-link-list_item .inner .text .arrow {
  width: 50px;
  height: 50px;
  background: url(../img/common/arrow03@2x.png) no-repeat;
  background-position: center;
  background-size: 100% auto;
}

@media screen and (max-width: 1024px) {
  .talk-info_list li .icn {
    width: 100px;
  }

  .talk-info_list li .talk-info_data {
    width: calc(100% - 120px);
  }

  .other-link-list {
    flex-direction: column;
  }

  .crosstalk-detail-talk {
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__en {
    font-size: 1.6rem;
  }
  .crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__ja {
    font-size: 2.6rem;
  }

  .talk-info_list li {
    flex-direction: column;
  }

  .talk-info_list li .talk-info_data {
    width: 100%;
    text-align: center;
  }

  .crosstalk-detail01 {
    margin-bottom: 60px;
  }

  .crosstalk-detail-block:not(:last-of-type) {
    margin-bottom: 60px;
  }

  .crosstalk-detail-block_ttl {
    margin-bottom: 40px;
  }

  .crosstalk-detail-talk,
  .crosstalk-detail-talk:nth-child(odd) {
    flex-direction: column;
  }

  .crosstalk-detail-talk-cont {
    width: 100%;
  }

  .crosstalk-detail-talk .image {
    width: 100%;
    text-align: center;
  }

  .crosstalk-detail02 {
    padding-bottom: 50px;
  }

  .talk-info-box {
    width: calc(100% - 40px);
  }

  .talk-info_list {
    padding: 0 10px;
  }
}
@media screen and (max-width: 600px) {
  .talk-info_list {
    flex-direction: column;
    gap: 60px;
  }

  .other-link-list_item .inner .text .flexbox {
    flex-direction: column;
  }

  .other-link-list_item .inner {
    position: relative;
    margin-top: -14vw;
  }

  .other-link-list_item .inner .text {
    width: 95%;
    justify-content: space-between;
    align-items: center;
  }

  .other-link-list_item .inner .text .arrow {
    width: 30px;
    height: 30px;
  }
}
@media screen and (max-width: 425px) {
  .crosstalk-detail-block_ttl .crosstalk-detail-block_ttl__ja {
    font-size: clamp(22px, 6.1vw, 26px);
  }

  .talk-info_list .post {
    font-size: 3.1vw;
  }
}
/***************************

object/project/welfare.scss

***************************/
.welfare-block {
  width: 100%;
}
.welfare-block:first-of-type {
  margin-top: 100px;
}
.welfare-block:not(:last-child) {
  margin-bottom: 120px;
}

.welfare-systems-list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
}
.welfare-systems-list.row_span3 .welfare-systems-list_item {
  width: calc((100% - 40px) / 3);
}
.welfare-systems-list.row_span4 .welfare-systems-list_item {
  width: calc((100% - 60px) / 4);
}

.welfare-systems-list_item {
  border-radius: 15px;
  background: #FCE9F2;
  padding: 50px 35px;
}
.welfare-systems-list_item .icn {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;
}
.welfare-systems-list_item p {
  margin-top: 10px;
}

@media screen and (max-width: 768px) {
  .welfare-block:first-of-type {
    margin-top: 50px;
  }

  .welfare-block:not(:last-child) {
    margin-bottom: 60px;
  }

  .welfare-systems-list.row_span3 .welfare-systems-list_item {
    width: calc(50% - 10px);
  }

  .welfare-systems-list.row_span4 .welfare-systems-list_item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 600px) {
  .welfare-systems-list_item {
    padding: 30px 20px;
  }

  .welfare-systems-list.row_span3 .welfare-systems-list_item {
    width: 100%;
  }

  .welfare-systems-list.row_span4 .welfare-systems-list_item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 425px) {
  .welfare-systems-list.row_span4 .welfare-systems-list_item {
    width: 100%;
  }
}
/***************************

object/project/requirements.scss

***************************/
@media screen and (max-width: 1200px) {
  .requirements .subpage_ttl {
    font-size: clamp(70px, 10vw, 125px);
  }
}
@media screen and (max-width: 690px) {
  .requirements .subpage_ttl {
    font-size: 10vw;
  }
}
.requirements-division-tab {
  width: 100%;
  display: flex;
  margin: 60px 0;
}
.requirements-division-tab li {
  width: calc(100% / 3);
  font-weight: 400;
  font-size: 2.4rem;
  letter-spacing: 0.03em;
  text-align: center;
  color: #aaa;
  padding: 30px 20px;
  border-bottom: 2px solid #EFECEA;
}
.requirements-division-tab li.current {
  font-weight: 600;
  color: #E35EA3;
  border-color: #E35EA3;
}
.requirements-division-tab li:hover {
  cursor: pointer;
}

.requirements-division-tabCont {
  width: 100%;
}

.requirements-division-tabCont_block {
  width: 100%;
  display: none;
}
.requirements-division-tabCont_block.is-show {
  display: block;
}

.occupation-tab {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 60px;
}
.occupation-tab li {
  position: relative;
  width: calc((100% - 30px) / 3);
  min-height: 70px;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0.03em;
  color: #aaa;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
  border-radius: 4px;
}
.occupation-tab li.current {
  font-weight: 600;
  background: #E35EA3;
  color: #fff;
}
.occupation-tab li.current:after {
  position: absolute;
  content: '';
  border-left: 9px solid transparent;
  border-right: 9px solid transparent;
  border-top: 10px solid #E35EA3;
  left: 50%;
  bottom: -10px;
  translate: -50% 0;
}
.occupation-tab li:hover {
  cursor: pointer;
}

.occupation-tabCont {
  width: 100%;
  background: #FCE9F2;
  border-radius: 14px;
  padding: 40px 20px 80px;
  margin-bottom: 55px;
}

.occupation-tabCont_block {
  width: 100%;
  display: none;
}
.occupation-tabCont_block.is-now {
  display: block;
}

.occupation-info {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.occupation-info_block {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #EBCBDC;
}
.occupation-info_block dt {
  width: 165px;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding: 35px 0;
}
.occupation-info_block dd {
  width: calc(100% - 165px);
  padding: 35px 0;
}
.occupation-info_block dd p {
  letter-spacing: 0.03em;
  line-height: 2;
}
.occupation-info_block dd p.fz14 {
  font-size: 1.4rem;
}
.occupation-info_block dd p:not(:last-child) {
  margin-bottom: 20px;
}
.occupation-info_block dd ul:not(:last-child) {
  margin-bottom: 20px;
}
.occupation-info_block dd ul li {
  position: relative;
  padding-left: 20px;
}
.occupation-info_block dd ul li:before {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  background: #E35EA3;
  border-radius: 100%;
  left: 0;
  top: 8px;
}

.btn-entry {
  position: relative;
  max-width: 600px;
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: #fff;
  background: linear-gradient(8deg, #DD3A8E, #E462A5);
  border-radius: 100px;
  padding: 20px 60px;
  margin: 0 auto;
}
.btn-entry:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow01.png) no-repeat;
  background-size: 100% 100%;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.btn-entry:hover {
  opacity: 1;
  color: #fff;
}
.btn-entry:hover:after {
  translate: 10px -50%;
  transition: all .6s;
}

@media screen and (max-width: 768px) {
  .requirements-division-tab {
    margin: 30px 0;
  }

  .occupation-tab {
    margin-bottom: 30px;
  }

  .occupation-tabCont {
    padding: 20px 20px 40px;
    margin-bottom: 35px;
  }

  .btn-entry {
    min-height: 70px;
  }
}
@media screen and (max-width: 600px) {
  .requirements-division-tab li {
    padding: 15px 10px;
    font-size: 2.1rem;
  }

  .occupation-tab {
    flex-direction: column;
  }

  .occupation-tab li {
    width: 100%;
    min-height: 50px;
  }

  .occupation-tab li.current:after {
    display: none;
  }

  .occupation-info_block {
    flex-direction: column;
  }

  .occupation-info_block dt {
    width: 100%;
    padding: 15px 0 5px;
  }

  .occupation-info_block dd {
    width: 100%;
    padding: 15px 0;
  }
}
@media screen and (max-width: 425px) {
  .requirements-division-tab {
    flex-direction: column;
  }

  .requirements-division-tab li {
    width: 100%;
  }
}
/***************************

object/project/entry.scss

***************************/
.link-privacy {
  font-weight: 600;
  border-bottom: 2px solid;
}

.form_wrap {
  width: 100%;
  margin-top: 90px;
}

.privacy-acceptance {
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 9px;
  padding: 25px 20px;
  text-align: center;
  margin-bottom: 70px;
}

.privacy-acceptance .wpcf7-list-item input[type=checkbox] {
  display: none;
}

.privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 45px;
  cursor: pointer;
  line-height: 1.6;
  letter-spacing: 0.03em;
  display: inline-block;
}

.privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label::after,
.privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: #ddd;
  border: none;
  border-radius: 4px;
}

.privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label::before {
  opacity: 0;
  left: 6px;
  top: 40%;
  translate: 0 -50%;
  width: 15px;
  height: 10px;
  border-left: 3px solid #E35EA3;
  border-bottom: 3px solid #E35EA3;
  rotate: -45deg;
  z-index: 1;
  border-radius: 2px;
}

.privacy-acceptance input[type=checkbox]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.contact-form {
  width: 100%;
  background: #FCE9F2;
  border-radius: 9px;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.contact-form-list {
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.contact-form_block {
  width: 100%;
}
.contact-form_block:not(:last-child) {
  margin-bottom: 40px;
}
.contact-form_block dt {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
.contact-form_block dt .req {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 25px;
  font-size: 1.4rem;
  color: #fff;
  letter-spacing: 0.03em;
  background: #F33A05;
  border-radius: 3px;
}
.contact-form_block dd {
  width: 100%;
}

.radio_block .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}

.radio_block .wpcf7-list-item {
  background: #fff;
  border-radius: 5px;
  padding: 25px 20px;
}

.radio_block .wpcf7-list-item input[type=radio] {
  display: none;
}

.radio_block .wpcf7-list-item .wpcf7-list-item-label {
  position: relative;
  padding: 0 0 0 45px;
  cursor: pointer;
  letter-spacing: 0.03em;
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
}

.radio_block .wpcf7-list-item .wpcf7-list-item-label::after,
.radio_block .wpcf7-list-item .wpcf7-list-item-label::before {
  position: absolute;
  content: "";
  display: block;
  transition: all .3s;
}

.radio_block .wpcf7-list-item .wpcf7-list-item-label::after {
  left: 0;
  top: 50%;
  translate: 0 -50%;
  width: 30px;
  height: 30px;
  background: #EDEFF1;
  border: none;
  border-radius: 50%;
}

.radio_block .wpcf7-list-item .wpcf7-list-item-label::before {
  left: 5px;
  top: 50%;
  translate: 0 -50%;
  margin-top: 0;
  width: 20px;
  height: 20px;
  background: #E35EA3;
  border-radius: 100%;
  opacity: 0;
  z-index: 1;
  border: 0;
}

.radio_block .wpcf7-radio input[type=radio]:checked + .wpcf7-list-item-label::before {
  opacity: 1;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel] {
  width: 100%;
  min-height: 70px;
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 20px;
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.contact-form textarea {
  width: 100%;
  min-height: 240px;
  background: #fff;
  border: none;
  border-radius: 4px;
  padding: 20px;
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.03em;
}

.contact-form input[type=text]::placeholder,
.contact-form input[type=email]::placeholder,
.contact-form input[type=tel]::placeholder {
  font-family: "LINE Seed JP Regular";
  font-weight: 400;
  letter-spacing: 0.03em;
  font-size: 1.6rem;
  color: #aaa;
}

.form-submit {
  position: relative;
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}
.form-submit:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow01.png) no-repeat;
  background-size: 100% 100%;
  right: 30px;
  top: 50%;
  translate: 0 -50%;
  z-index: 3;
  pointer-events: none;
}
.form-submit:hover {
  opacity: 1;
  color: #fff;
}
.form-submit:hover:after {
  translate: 10px -50%;
  transition: all .6s;
}
.form-submit input[type=submit] {
  width: 100%;
  min-height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.03em;
  background: linear-gradient(8deg, #DD3A8E, #E462A5);
  border-radius: 100px;
  padding: 20px 60px;
  border: 0;
}
.form-submit input[type=submit]:hover {
  cursor: pointer;
}
.wpcf7-spinner {
  display: none !important;
}

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

  .privacy-acceptance {
    margin-bottom: 40px;
  }

  .contact-form {
    padding: 40px 20px;
    margin-bottom: 30px;
  }

  .form-submit input[type=submit] {
    min-height: 70px;
  }
}
@media screen and (max-width: 425px) {
  .privacy-acceptance {
    padding: 20px 10px;
  }
  .privacy-acceptance .wpcf7-list-item .wpcf7-list-item-label {
    font-size: 3.1vw;
  }
}
/* thanks */
.thanks-contact {
  width: 100%;
  background: #FCE9F2;
  border-radius: 14px;
  padding: 40px 20px;
  text-align: center;
  margin-bottom: 60px;
}
.thanks-contact .tel {
  font-family: "Barlow", sans-serif;
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 4rem;
}
.thanks-contact .fz14 {
  font-size: 1.4rem;
}

.top-back {
  position: relative;
  max-width: 300px;
  width: 100%;
  min-height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.03em;
  background: linear-gradient(8deg, #DD3A8E, #E462A5);
  border-radius: 100px;
  padding: 20px 60px;
  border: 0;
}
.top-back:after {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  letter-spacing: 0.08em;
  background: url(../img/common/arrow01.png) no-repeat;
  background-size: 100% 100%;
  left: 30px;
  top: 50%;
  translate: 0 -50%;
  rotate: 180deg;
  z-index: 3;
  pointer-events: none;
}
.top-back:hover {
  opacity: 1;
  color: #fff;
}
.top-back:hover:after {
  translate: -10px -50%;
  transition: all .6s;
}

@media screen and (max-width: 768px) {
  .thanks-contact {
    padding: 20px;
    margin-bottom: 30px;
  }

  .top-back {
    min-height: 70px;
  }
}
/***************************

object/project/privacy.scss

***************************/
.privacy .under-section-wrap {
  margin-top: 0;
}

.privacy .hdg__03 {
  margin-top: 60px;
  margin-bottom: 10px;
}

.privacy01 {
  width: 100%;
  padding-top: 150px;
  margin-bottom: 120px;
}

.privacy02,
.privacy03,
.privacy04 {
  width: 100%;
  margin-bottom: 120px;
}

.privacy05 {
  width: 100%;
  padding-bottom: 100px;
}

.company_info {
  width: 100%;
  margin-top: 60px;
}
.company_info .conpany_info_block {
  display: flex;
  border-bottom: 1px solid #efecea;
  padding: 30px 0;
}
.company_info .conpany_info_block dt {
  width: 200px;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 2;
}
.company_info .conpany_info_block dd {
  width: calc(100% - 200px);
  letter-spacing: 0.03em;
  line-height: 2;
}

.contact_counter {
  border-radius: 14px;
  background: #FCE9F2;
  padding: 30px 20px;
}

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

  .privacy01 {
    padding-top: 75px;
    margin-bottom: 60px;
  }

  .privacy02,
  .privacy03,
  .privacy04 {
    margin-bottom: 60px;
  }

  .privacy05 {
    padding-bottom: 50px;
  }

  .company_info {
    margin-top: 30px;
  }
  .company_info .conpany_info_block {
    padding: 15px 0;
  }
  .company_info .conpany_info_block dt {
    width: 120px;
  }
  .company_info .conpany_info_block dd {
    width: calc(100% - 120px);
  }
}

.link-non {
  pointer-events: none;
  color: #aaa;
}