@charset "UTF-8";

/*!
  Theme Name: kotobuki-theme framework
  Author: Ori
  Author URI: http://shikiori.com/
  Description: kotobuki-theme framework
  Version: 2.0
  Date: 2026.08.28
  License: GNU General Public License v2 or later
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/
/***************************

foundation/base.scss

***************************/
:root {
  --white: #fff;
  --black: #231815;
  --gray: #444444;
  --l-gray: #EEEEEE;
  --blue: #0163E0;
  --red: #e50012;
  --yellow: #ffeb00;
  --font: "ヒラギノ角ゴ Pro W3", "ヒラギノ角ゴ Pro W6", "Noto Sans JP", "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", 游ゴシック体, "Yu Gothic", YuGothic, メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  --popping: "Poppins", sans-serif;
  --outfit: "Outfit", sans-serif;
  --roboto: "Roboto", sans-serif;
}

* {
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  overflow: auto;
  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%;
}

body {
  overflow-x: hidden;
  font-size: 16px;
  color: var(--black);
  font-family: var(--font);
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 2;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p {
  margin: 0;
  font-weight: 500;
  font-size: 13px;
}

@media screen and (min-width: 321px) {
  p {
    font-size: 15px;
  }
}

@media screen and (min-width: 750px) {
  p {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  p {
    font-size: 15px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

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;
}

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

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-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] {
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 5%;
}

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

foundation/_animation.scss

***************************/
.mv_fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.mv_title.mv_fadeUp {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*==================================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
  animation-name: fadeInAnime;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 上から */
.fadeDown {
  -webkit-animation-name: fadeDownAnime;
  animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
  animation-name: fadeLeftAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
  animation-name: fadeRightAnime;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(50px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger {
  opacity: 0;
}

/*==================================================
    ボンッ、ヒュッ
    ===================================*/
/* 拡大 */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
  animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
  animation-name: zoomOutAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomOutAnime {
  from {
    transform: scale(1.04);
    opacity: 1;
  }

  to {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger {
  opacity: 0;
}

/*==================================================
    じわっ
    ===================================*/
/* ぼかしから出現 */
.blur {
  -webkit-animation-name: blurAnime;
  animation-name: blurAnime;
  -webkit-animation-duration: 1.8s;
  animation-duration: 1.8s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(5px);
    transform: scale(1.01);
    opacity: 0;
  }

  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

.blurTrigger {
  opacity: 0;
}

@-webkit-keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideIn {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideIn {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideIn.is-animated {
  -webkit-animation-name: textSlideIn;
  animation-name: textSlideIn;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

@keyframes textSlideDown {
  0% {
    opacity: 0;
    visibility: hidden;
    transform: translateY(-100%);
  }

  100% {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

.textSlideDown {
  display: inline-block;
  opacity: 0;
  visibility: hidden;
}

.textSlideDown.is-animated {
  -webkit-animation-name: textSlideDown;
  animation-name: textSlideDown;
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  animation-timing-function: cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@-webkit-keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

@keyframes clipPath {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
    clip-path: polygon(0% 105%, 100% 105%, 100% 105%, 0% 105%);
  }

  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
    clip-path: polygon(0% -5%, 100% -5%, 100% 105%, 0% 105%);
  }
}

.clipPathTrigger {
  opacity: 0;
}

.clipPathTrigger.is-animated {
  -webkit-animation: clipPath 0.8s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
  animation: clipPath 0.8s cubic-bezier(0.74, 0.01, 0.29, 0.97) forwards;
}

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

layout/_header.scss

***************************/
.header.-is-fixed {
  z-index: 999;
  padding: 10px 0;
}

.header.-is-fixed .top_mv {
  margin-top: 64px;
}

.header {
  background-color: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  padding: 10px 0;
  transition: all 0.5s;
}

.header_wrap {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 15px;
  gap: 10px;
  padding-right: 40px;
}

.header__logo {
  line-height: 1;
  width: 100%;
  max-width: 205px;
}

.header__nav_toggle {
  cursor: pointer;
  display: inline-block;
  background: none;
  border: none;
  outline: none;
  text-align: center;
  position: relative;
  z-index: 7;
  width: 25px;
}

.header__nav_toggle_bar {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.header__nav_toggle_bar,
.header__nav_toggle_bar::before,
.header__nav_toggle_bar::after {
  display: block;
  width: 25px;
  height: 3px;
  background-color: #231815;
  border-radius: 2px;
  outline: 1px solid transparent;
  transition-property: background-color, transform;
  transition-duration: 0.5s;
}

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

.header__nav_toggle_bar {
  width: 25px;
  background-color: transparent;
}

.header__nav_toggle_bar::after {
  width: 25px;
}

.header__nav_toggle_bar::before {
  top: -6px;
}

.header__nav_toggle_bar::after {
  top: 6px;
}

.header__nav_toggle_title {
  display: block;
  white-space: nowrap;
}

.header.-is-open .header__nav_toggle_bar {
  background-color: transparent;
}

.header.-is-open .header__nav_toggle_bar::before {
  transform: translateY(6px) rotate(135deg);
  background-color: #918b8a;
}

.header.-is-open .header__nav_toggle_bar::after {
  transform: translateY(-6px) rotate(-135deg);
  width: 25px;
  background-color: #918b8a;
}

.header__nav_item a {
  font-size: 15px;
  font-weight: 500;
}

.header__nav_item.active a,
.header__nav_item:hover a {
  opacity: 1;
  color: var(--red);
}

.header__nav_item-banner-sp {
  display: none;
}

@media screen and (min-width: 1025px) {
  .header__nav_toggle {
    display: none;
  }

  .header__nav_list {
    gap: 0 30px;
  }

  .header_wrap {
    padding: 0 50px;
  }

  .header__nav_item-sp {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .header__logo {
    z-index: 10;
    text-align: center;
    width: 100%;
    max-width: 160px;
  }

  .header__nav_item-sp {
    display: block;
    margin-top: 80px;
  }

  .header__nav_item-sp a {
    width: 100%;
    border: 2px solid var(--red);
    border-radius: 10px;
    color: var(--red);
    font-size: 36px;
    font-weight: 500;
    display: block;
    text-align: center;
    padding: 10px 20px;
    transition: all 0.5s;
  }

  .header__nav_item-sp a:hover {
    border: 2px solid var(--red);
    background: var(--red);
    color: var(--white);
  }

  .header__nav {
    max-width: min(100%, 1000px);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: var(--white);
    z-index: 6;
    transition: 0.5s;
  }

  .header.-is-open .header__nav {
    height: 100vh;
    position: absolute;
    overflow: hidden;
    transition-property: height, visibility;
    transition-duration: 0.35s;
    transition-timing-function: ease;
  }

  .header__nav_list {
    flex-direction: column;
    /* padding: 20px; */
    /* padding: 100px 100px; */
    padding: 100px 0;
    padding-bottom: 120px;
    text-align: left;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }

  .header.-is-open .header__nav {
    overflow-y: scroll;
  }

  .header.-is-open .header__nav_list {
    opacity: 1;
    top: 0;
    transform: translateY(0);
    /* margin-top: 150px; */

  }

  .header__nav_item a {
    display: block;
    opacity: 0;
    visibility: hidden;
    padding: 20px 0;
    font-weight: bold;
    font-size: 37px;
    line-height: 1.5;
  }

  .header.-is-open .header__nav_item a {
    opacity: 1;
    visibility: visible;
    transition: all 0.8s ease;
  }

  .header.-is-open .header__nav_item-banner-sp {
    display: block;
    /* margin-top: 115px; */
    padding-bottom: 40px;
  }

  .header.-is-open .header__nav_item-banner-sp img {
    width: 100%;
  }
}

@media screen and (max-width: 750px) {
  .header__logo {
    width: 100%;
    max-width: 320px;
  }
}

@media screen and (max-width: 750px) {
  .header__nav_list {
    flex-direction: column;
    /* padding: 20px; */
    padding: 30px 60px;
    padding-bottom: 60px;
    text-align: left;
    position: relative;
    top: 100%;
    transform: translateY(-100%);
    opacity: 0;
    width: 100%;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
  }
}


@media screen and (max-width: 540px) {
  .header__nav_list {
    width: 100%;
    max-width: 540px;
    margin: 0 auto;
  }

  .header__logo {
    width: 100%;
    max-width: 160px;
  }

  .header__nav_item a {
    padding: 10px 0;
    font-size: 18px;
  }

  .header__nav_item-sp a {
    font-size: 18px;
  }

  .header__nav_item-sp {
    margin-top: 40px;
  }

  .header.-is-open .header__nav_list {
    /* margin-top: 80px; */
    margin-top: 60px;
  }

  .header.-is-open .header__nav_item-banner-sp {
    display: block;
    /* margin-top: 30px; */
    padding-bottom: 40px;
  }
}

.header.-is-open .character_banner-footer_wrap {
  margin-top: 0;
}

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

layout/_footer.scss

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

footer

////////////////////////*/
.js-pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 500;
  width: 100%;
  text-align: center;
  z-index: 20;
}

@media screen and (min-width: 750px) {
  .js-pagetop {
    max-width: 40px;
    right: 30px;
    bottom: 55px;
  }
}

@media screen and (min-width: 1025px) {
  .js-pagetop {
    right: 50px;
    bottom: 75px;
  }
}

.footer_sns_item {
  width: 100%;
}

@media screen and (min-width: 750px) {
  .footer_sns_item {
    width: 100%;
    max-width: 40px;
  }
}

.footer_sns_item a {
  color: var(--white);
  background: var(--black);
  display: block;
  padding: 2px;
}

.footer_sns_item a:hover {
  opacity: 1;
  background: var(--red);
}

@media screen and (min-width: 750px) {
  .footer_sns_item a {
    aspect-ratio: 1/1;
    border-radius: 50%;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.footer_sns_list {
  display: flex;
  justify-content: space-evenly;
}

@media screen and (min-width: 750px) {
  .footer_sns_list {
    flex-direction: column;
    justify-content: center;
    gap: 5px;
  }
}

.footer_recruit_banner {
  text-align: center;
}

.character_banner-footer_wrap {
  background: linear-gradient(#fff 10%, #fffde3 10%, #fffde3 90%, #fff 90%);
  margin-top: 70px;
}

.character_banner-footer_link {
  display: inline-block;
  text-align: center;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  width: 100%;
  max-width: 350px;
  margin: 0 auto;
}

@media screen and (min-width:750px) {
  .character_banner-footer_link {
    max-width: 570px;
  }
}

@media screen and (min-width: 1024px) {
  .character_banner-footer_link {
    max-width: 350px;
  }
}

.character_banner-footer_link div {
  width: 100%;
  max-width: 25%;
}

.character_banner-footer_link:hover {
  opacity: 1;
}

.character_banner-footer_link:hover .character_banner-footer-center {
  transform: rotate(8deg);
}

.character_banner-footer-center {
  transition: all 0.2s;
  margin-left: 10px;
}

.footer {
  padding-bottom: 100px;
  padding-top: 140px;
}

@media screen and (min-width:750px) {
  .footer {
    padding-top: 240px;
  }
}

@media screen and (min-width: 1024px) {
  .footer {
    padding-top: 220px;
  }
}

.footer__nav {
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (min-width:750px) {
  .footer__nav {
    margin-top: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__nav {
    margin-top: 60px;
  }
}

.footer__nav_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
  gap: 15px;
}

@media screen and (min-width: 1024px) {
  .footer__nav_list {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
  }
}

.footer__nav_item {
  width: 100%;
  text-align: center;
}

.footer__nav_item a {
  background: #f7f7f7;
  display: block;
  padding: 10px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.5s;
}

@media screen and (min-width:750px) {
  .footer__nav_item a {
    font-size: 26px;
    padding: 10px 20px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__nav_item a {
    font-size: 13px;
    padding: 10px;
  }
}

.footer__nav_item a:hover {
  opacity: 1;
  color: var(--red);
}

.footer__other_nav_list {
  margin-top: 20px;
  line-height: 1;
}

.footer__other_nav_list a {
  font-size: 12px;
  position: relative;
}

.footer__other_nav_list a::before {
  content: "＞ ";
  color: #231815;
}

@media screen and (min-width:750px) {
  .footer__other_nav_list {
    margin-top: 25px;
  }

  .footer__other_nav_list a {
    font-size: 22px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__other_nav_list {
    margin-top: 20px;
  }

  .footer__other_nav_list a {
    font-size: 12px;
  }
}

.footer_wrap {
  width: 100%;
  max-width: 625px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .footer_wrap {
    max-width: 100%;
  }
}

.footer_logo_wrap {
  position: relative;
}

.footer_top_link {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1;
  background: var(--yellow);
  border-radius: 50%;
  aspect-ratio: 1/1;
  font-weight: 600;
  font-size: 16px;
  padding: 10px;
  width: 60px;
  height: 60px;
}

@media screen and (min-width:750px) {
  .footer_top_link {
    font-size: 20px;
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .footer_top_link {
    font-size: 16px;
    width: 60px;
    height: 60px;
  }
}

.footer_top_link i {
  font-weight: 400;
  font-size: 30px;
  margin-bottom: -5px;
}

.footer__logo {
  margin-top: 30px;
  margin-bottom: 20px;

  width: 100%;
  /* max-width: 80%; */
  max-width: 70%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:750px) {
  .footer__logo {
    margin-top: 70px;
    margin-bottom: 40px;

     width: 100%;
  max-width: 351px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__logo {
    margin-top: 30px;
    margin-bottom: 20px;

    width: 100%;
  max-width: 195px;
  }
}

.footer__text {
  font-size: 15px;
  font-weight: 500;
}

@media screen and (min-width:750px) {
  .footer__text {
    font-size: 27px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__text {
    font-size: 15px;
  }
}

.footer__text02 {
  font-size: 11px;
  font-weight: 400;
}

@media screen and (min-width:750px) {
  .footer__text02 {
    font-size: 23px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__text02 {
    font-size: 13px;
  }
}

.footer__copyright {
  display: block;
  text-align: center;
  font-size: 11px;
}

@media screen and (min-width:750px) {
  .footer__copyright {
    font-size: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .footer__copyright {
    font-size: 11px;
  }
}

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

layout/_lity.scss

***************************/
/*! Lity - v2.3.1 - 2018-04-20
* http://sorgalla.com/lity/
* Copyright (c) 2015-2018 Jan Sorgalla; Licensed MIT */
.lity {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  white-space: nowrap;
  background: #0b0b0b;
  background: rgba(0, 0, 0, 0.9);
  outline: none !important;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity.lity-opened {
  opacity: 1;
}

.lity.lity-closed {
  opacity: 0;
}

.lity * {
  box-sizing: border-box;
}

.lity-wrap {
  z-index: 9990;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-align: center;
  outline: none !important;
}

.lity-wrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

.lity-loader {
  z-index: 9991;
  color: #fff;
  position: absolute;
  top: 50%;
  margin-top: -0.8em;
  width: 100%;
  text-align: center;
  font-size: 14px;
  font-family: Arial, Helvetica, sans-serif;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lity-loading .lity-loader {
  opacity: 1;
}

.lity-container {
  z-index: 9992;
  position: relative;
  text-align: left;
  vertical-align: middle;
  display: inline-block;
  white-space: normal;
  max-width: 100%;
  max-height: 100%;
  outline: none !important;
}

.lity-content {
  z-index: 9993;
  width: 100%;
  transform: scale(1);
  transition: transform 0.3s ease;
}

.lity-loading .lity-content,
.lity-closed .lity-content {
  transform: scale(0.8);
}

.lity-content:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  display: block;
  right: 0;
  width: auto;
  height: auto;
  z-index: -1;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
}

.lity-close {
  z-index: 9994;
  width: 35px;
  height: 35px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-appearance: none;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close::-moz-focus-inner {
  border: 0;
  padding: 0;
}

.lity-close:hover,
.lity-close:focus,
.lity-close:active,
.lity-close:visited {
  text-decoration: none;
  text-align: center;
  padding: 0;
  color: #fff;
  font-style: normal;
  font-size: 35px;
  font-family: Arial, Baskerville, monospace;
  line-height: 35px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  border: 0;
  background: none;
  outline: none;
  box-shadow: none;
}

.lity-close:active {
  top: 1px;
}

/* Image */
.lity-image img {
  max-width: 100%;
  display: block;
  line-height: 0;
  border: 0;
}

/* iFrame */
.lity-iframe .lity-container,
.lity-youtube .lity-container,
.lity-vimeo .lity-container,
.lity-facebookvideo .lity-container,
.lity-googlemaps .lity-container {
  width: 100%;
  max-width: 964px;
}

.lity-iframe-container {
  width: 100%;
  height: 0;
  padding-top: 56.25%;
  overflow: auto;
  pointer-events: auto;
  transform: translateZ(0);
  -webkit-overflow-scrolling: touch;
}

.lity-iframe-container iframe {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
  background: #000;
}

.lity-hide {
  display: none;
}

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

layout/_pager.scss

***************************/
.pagination {
  display: flex;
  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: #39b8b8;
  color: #39b8b8;
}

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

/* wordpress wp-pagenavi */
.wp-pagenavi {
  padding: 50px 0 50px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  position: relative;
  z-index: 2;
}

.wp-pagenavi a,
.wp-pagenavi span {
  font-size: 1.6rem;
  border-radius: 100%;
  border: 1px solid #ffeb00;
  margin: 3px;
  width: 2.7em;
  height: 2.7em;
  line-height: 2.7;
  display: block;
  text-decoration: none;
  padding: 0 0 0 1px;
  background: transparent;
}

.wp-pagenavi a:hover {
  background: #ffeb00;
  color: #231815;
}

.wp-pagenavi span.current {
  border: 0px;
  background: #ffeb00;
  font-weight: 700;
}

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

layout/_breadcrumbs.scss

***************************/
.l-breadcrumbs {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  padding: 10px 15px;
  font-size: 12px;
}

.l-breadcrumbs a {
  color: #fff;
  display: block;
}

.l-breadcrumbs__item {
  position: relative;
}

.l-breadcrumbs__item:not(:first-of-type) {
  padding-left: 20px;
}

.l-breadcrumbs__item:not(:first-of-type):after {
  content: "";
  width: 4px;
  height: 4px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  position: absolute;
  left: 8px;
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}

.l-breadcrumbs__item:last-of-type {
  pointer-events: none;
  text-decoration: none;
}

.l-pageTitle .l-breadcrumbs {
  position: absolute;
  bottom: 0;
  left: 0;
}

.breadcrumbs_content {
  position: absolute;
  bottom: -1px;
  right: 0;
  z-index: 5;
  background-color: #fff;
  padding: 10px 30px;
  padding-bottom: 0;
  padding-right: 40px;
  border-radius: 12px 0 0 0;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_content {
    width: 85%;
  }
}

@media screen and (max-width: 450px) {
  .breadcrumbs_content {
    width: 85%;
    padding: 10px 15px;
    padding-bottom: 0;
    padding-right: 10px;
  }
}

.breadcrumbs {
  font-size: 15px;
  font-weight: bold;
  color: #999999;
}

@media screen and (max-width: 450px) {
  .breadcrumbs {
    font-size: 14px;
  }
}

.breadcrumbs li:before {
  content: "／";
  margin: 0 10px;
  color: #999999;
}

.breadcrumbs li:first-child:before {
  display: none;
}

.breadcrumbs a {
  color: #444444;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.breadcrumbs a:hover {
  color: #999999;
}

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

layout/_page-title.scss

***************************/
.sec_title {
  font-size: 32px;
  color: var(--red);
}

@media screen and (min-width: 750px) {
  .sec_title {
    font-size: 54px;
  }
}

@media screen and (min-width: 1024px) {
  .sec_title {
    font-size: 32px;
  }
}

.sec_title02 {
  font-size: 23px;
  color: var(--red);
}

.sec_title03 {
 font-size: 23px;
  font-weight: 500;
  color: var(--red);
  margin-top: 60px;
  margin-bottom: 20px;
}

@media screen and (min-width: 361px) {
  .sec_title02 {
    font-size: 24px;
  }
}

@media screen and (min-width: 750px) {
  .sec_title02 {
    font-size: 47px;
  }
}
@media screen and (min-width: 750px) {
  .sec_title03 {
    font-size: 47px;
  }
}
@media screen and (min-width: 750px) {
  .sec_title03 {
    font-size: 47px;
    margin-top: 110px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .sec_title02 {
    font-size: 26px;
  }
}

@media screen and (min-width: 1024px) {
  .sec_title03 {
    font-size: 26px;
    margin-top: 80px;
    margin-bottom: 20px;
  }
}

/* .sec_title03 {
  font-size: 18px;
  font-weight: 500;
  color: var(--red);
  margin-top: 60px;
  margin-bottom: 20px;
} */

/* @media screen and (min-width: 750px) {
  .sec_title03 {
    font-size: 37px;
    margin-top: 110px;
    margin-bottom: 30px;
  }
} */

/* @media screen and (min-width: 1024px) {
  .sec_title03 {
    font-size: 22px;
    margin-top: 80px;
    margin-bottom: 20px;
  }
} */

.sec_title04 span {
  font-size: 21px;
  display: inline-block;
  background: #fff68c;
  line-height: 1.2;
  font-weight: 400;
  padding: 0 5px;
  margin-bottom: 15px;
}

@media screen and (min-width: 321px) {
  .sec_title04 span {
    font-size: 24px;
  }
}

@media screen and (min-width: 420px) {
  .sec_title04 span {
    font-size: 30px;
    margin-bottom: 20px;
  }
}

@media screen and (min-width: 720px) {
  .sec_title04 span {
    font-size: 50px;
    margin-bottom: 25px;
  }
}

@media screen and (min-width: 1024px) {
  .sec_title04 span {
    font-size: 36px;
    margin-bottom: 20px;
  }
}

.page_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.2;
  font-size: 13px;
  color: var(--white);
  padding: 40px 0;
  background: var(--red);
  position: relative;
}

@media screen and (min-width: 750px) {
  .page_title {
    font-size: 21px;
    padding: 70px 0;
  }
}

@media screen and (min-width: 1024px) {
  .page_title {
    font-size: 13px;
    padding: 40px 0;
  }
}

.page_title .en {
  font-size: 36px;
}

@media screen and (min-width: 750px) {
  .page_title .en {
    font-size: 54px;
  }
}

@media screen and (min-width: 1024px) {
  .page_title .en {
    font-size: 36px;
  }
}

.page_title::after {
  content: "";
  display: block;
  background: url(img/common/page_bg.png);
  background-repeat: repeat-x;
  background-size: contain;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.page_mv {
  margin-bottom: 90px;
}

@media screen and (min-width: 750px) {
  .page_mv {
    font-size: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .page_mv {
    margin-bottom: 90px;
  }
}

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

object/component/_box.scss

***************************/
.container_mv {
  max-width: 1430px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .container_mv {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.container_l {
  max-width: 1080px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.container_m {
  max-width: 830px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

.container_s {
  max-width: 810px;
  margin: 0 auto;
  padding-right: 30px;
  padding-left: 30px;
}

@media screen and (min-width: 750px) {
  .container_l {
    max-width: 1080px;
    margin: 0 auto;
    padding-right: 60px;
    padding-left: 60px;
  }

  .container_m {
    max-width: 830px;
    margin: 0 auto;
    padding-right: 60px;
    padding-left: 60px;
  }

  .container_s {
    max-width: 810px;
    margin: 0 auto;
    padding-right: 60px;
    padding-left: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .container_l {
    max-width: 1080px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container_m {
    max-width: 830px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }

  .container_s {
    max-width: 810px;
    margin: 0 auto;
    padding-right: 15px;
    padding-left: 15px;
  }
}

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

object/component/_button.scss

***************************/
.btn-type01 {
  position: relative;
  font-size: 16px;
  border: 1px solid #231815;
  display: block;
  text-align: center;
  transition: all 0.5s;
  padding: 10px 20px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}

@media screen and (min-width:750px) {
  .btn-type01 {
    font-size: 33px;
    padding: 15px 50px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type01 {
    font-size: 18px;
    padding: 15x 20px;
  }
}

.btn-type01 .arrow_sm {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #231815;
}

@media screen and (min-width:750px) {
  .btn-type01 .arrow_sm {
    right: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type01 .arrow_sm {
    right: 20px;
  }
}

.btn-type01 .arrow_sm::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 10px;
  height: 1px;
  background-color: #231815;
  transform: rotate(45deg);
  transform-origin: calc(100% - 1px) 50%;
}

@media screen and (min-width:750px) {
  .btn-type01 .arrow_sm {
    width: 100px;
  }

  .btn-type01 .arrow_sm::before {
    content: "";
    position: absolute;
    width: 20px;
    transform: rotate(45deg);
  }
}

@media screen and (min-width: 1024px) {
  .btn-type01 .arrow_sm {
    width: 50px;
  }

  .btn-type01 .arrow_sm::before {
    width: 15px;
  }
}

.btn-type01:hover {
  background-color: #231815;
  opacity: 1;
  color: #fff;
}

.btn-type01:hover .arrow_sm {
  background: #fff;
}

.btn-type01:hover .arrow_sm::before {
  background: #fff;
}

.btn-type02 {
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 5px;
  transition: all 0.5s;
  margin-top: 35px;
}

.btn-type02 i {
  background: var(--red);
  border: 1px solid var(--red);
  color: #fff;
  padding: 5px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 18px;
  height: 18px;
  transition: all 0.5s;
}

@media screen and (min-width:750px) {
  .btn-type02 i {
    width: 37px;
    height: 37px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type02 i {
    width: 18px;
    height: 18px;
  }
}

@media screen and (min-width:750px) {
  .btn-type02 {
    font-size: 32px;
    gap: 10px;
    margin-top: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type02 {
    font-size: 16px;
    gap: 5px;
    margin-top: 35px;
  }
}

.btn-type02:hover {
  color: var(--red);
}

.btn-type02:hover i {
  background: var(--white);
  color: var(--red);
}

.btn-type03 {
  font-size: 18px;
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto;
  background: var(--red);
  text-align: center;
  color: var(--white);
  font-weight: bold;
  padding: 15px;
  line-height: 1.3;
  border: 2px solid var(--red);
  position: relative;
}

@media screen and (min-width:750px) {
  .btn-type03 {
    font-size: 41px;
    padding: 50px 30px;
    max-width: 620px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type03 {
    font-size: 30px;
    padding: 25px;
    max-width: 450px;
  }
}

.btn-type03 i {
  background: #fff;
  color: var(--red);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  transition: all 0.5s;
}

@media screen and (min-width:750px) {
  .btn-type03 i {
    width: 34px;
    height: 34px;
    right: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type03 i {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
}

.btn-type03:hover {
  opacity: 1;
  color: var(--red);
  background: var(--white);
}

.btn-type03:hover i {
  background: var(--red);
  color: var(--white);
}

.btn-type04 {
  font-size: 18px;
  width: 100%;
  max-width: 450px;
  display: block;
  margin: 0 auto;
  background: var(--black);
  text-align: center;
  color: var(--white);
  font-weight: bold;
  padding: 15px;
  line-height: 1.3;
  border: 2px solid var(--black);
  position: relative;
}

@media screen and (min-width:750px) {
  .btn-type04 {
    font-size: 41px;
    padding: 50px 30px;
    max-width: 620px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type04 {
    font-size: 30px;
    padding: 25px;
    max-width: 450px;
  }
}

.btn-type04 i {
  background: #fff;
  color: var(--black);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  transition: all 0.5s;
}

@media screen and (min-width:750px) {
  .btn-type04 i {
    width: 34px;
    height: 34px;
    left: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .btn-type04 i {
    width: 25px;
    height: 25px;
    font-size: 15px;
  }
}

.btn-type04:hover {
  opacity: 1;
  color: var(--black);
  background: var(--white);
}

.btn-type04:hover i {
  background: var(--black);
  color: var(--white);
}

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

object/component/_form.scss

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

object/object/project/_home.scss

***************************/
body.is-fixed {
  overflow: hidden;
  height: 100vh;
}

.animation_mv {
  transition: all 0.8s;
  overflow: hidden;
  height: 100vh;
  width: 100%;
  background: #fffde3;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.animation_mv.is-none {
  opacity: 0;
  -webkit-animation: animenone 2s linear forwards;
  animation: animenone 2s linear forwards;
}

.animation_mv.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

@-webkit-keyframes animenone {
  0% {
    opacity: 0;
    pointer-events: none;
  }

  100% {
    pointer-events: none;
    opacity: 0;
  }
}

@keyframes animenone {
  0% {
    opacity: 0;
    pointer-events: none;
  }

  100% {
    pointer-events: none;
    opacity: 0;
  }
}

.animation_mv .mv_character_img-sp {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  width: 80%;
  text-align: center;
  z-index: 10;
  overflow: hidden;
  -webkit-animation: mv_imganime 8s linear forwards;
  animation: mv_imganime 8s linear forwards;
  transform-origin: top -30px 0;
}

@media screen and (min-width: 1024px) {
  .animation_mv .mv_character_img-sp {
    display: none;
  }
}

.animation_mv .mv_character_img-sp img {
  width: 100%;
}

.animation_mv .top_mv_img {
  opacity: 0;
  -webkit-animation: matinami_imganime 5s linear forwards;
  animation: matinami_imganime 5s linear forwards;
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
  margin-top: auto;
}

@media screen and (min-width: 1024px) {
  .animation_mv .top_mv_img {
    display: none;
  }
}

.animation_mv .top_mv_img-pc {
  display: none;
}

@media screen and (min-width: 1024px) {
  .animation_mv .top_mv_img-pc {
    display: block;
    opacity: 0;
    -webkit-animation: matinami_imganimepc 4s linear forwards;
    animation: matinami_imganimepc 4s linear forwards;
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
  }
}

.animation_mv .mv_character_img-pc {
  display: none;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  z-index: 50;
  margin: 0 auto;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .animation_mv .mv_character_img-pc {
    display: block;
    -webkit-animation: mv_imganimepc 7s linear forwards;
    animation: mv_imganimepc 7s linear forwards;
  }

  .animation_mv .mv_character_img-pc img {
    width: 100%;
  }
}

@-webkit-keyframes matinami_imganime {
  0% {
    opacity: 0;
    transform: translateY(150px) scale(1.2);
  }

  10% {
    opacity: 1;
    transform: translateY(100px) scale(1.1);
  }

  70% {
    transform: translateY(100px) scale(1);
    opacity: 1;
  }

  80% {
    transform: translateY(200px) scale(1);
    opacity: 0;
  }

  100% {
    transform: translateY(700px) scale(1);
    opacity: 0;
  }
}

@keyframes matinami_imganime {
  0% {
    opacity: 0;
    transform: translateY(150px) scale(1.2);
  }

  10% {
    opacity: 1;
    transform: translateY(100px) scale(1.1);
  }

  70% {
    transform: translateY(100px) scale(1);
    opacity: 1;
  }

  80% {
    transform: translateY(200px) scale(1);
    opacity: 0;
  }

  100% {
    transform: translateY(700px) scale(1);
    opacity: 0;
  }
}

@-webkit-keyframes matinami_imganimepc {
  0% {
    transform: translateY(700px) translateX(-900px);
    opacity: 1;
  }

  40% {
    transform: translateY(550px) translateX(-800px);
    opacity: 1;
  }

  80% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  85% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  90% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  100% {
    transform: translateY(420px) translateX(-100px);
    opacity: 0;
  }
}

@keyframes matinami_imganimepc {
  0% {
    transform: translateY(700px) translateX(-900px);
    opacity: 1;
  }

  40% {
    transform: translateY(550px) translateX(-800px);
    opacity: 1;
  }

  80% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  85% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  90% {
    transform: translateY(400px) translateX(-100px);
    opacity: 1;
  }

  100% {
    transform: translateY(420px) translateX(-100px);
    opacity: 0;
  }
}

@-webkit-keyframes mv_imganime {
  0% {
    transform: rotate(0deg) translateX(50px);
    width: 80%;
    bottom: -60%;
  }

  20% {
    transform: rotate(0deg) translateX(-100px);
    bottom: 0%;
    width: 80%;
  }

  50% {
    transform: rotate(20deg) translateX(100px);
    width: 40%;
    bottom: 40%;
  }

  80% {
    transform: rotate(0) translateX(-100px);
    bottom: 40%;
    width: 40%;
    opacity: 1;
  }

  80% {
    transform: rotate(0) translateX(-150px) translateY(0);
    bottom: 40%;
    width: 40%;
  }

  90% {
    opacity: 0;
    transform: rotate(5deg) translateX(-100px) translateY(-50px);
    bottom: 40%;
    width: 38%;
    visibility: hidden;
  }

  100% {
    opacity: 0;
    transform: rotate(5deg) translateX(-100px) translateY(-50px);
    bottom: 40%;
    width: 38%;
    visibility: hidden;
  }
}

@keyframes mv_imganime {
  0% {
    transform: rotate(0deg) translateX(50px);
    width: 80%;
    bottom: -60%;
  }

  20% {
    transform: rotate(0deg) translateX(-100px);
    bottom: 0%;
    width: 80%;
  }

  50% {
    transform: rotate(20deg) translateX(100px);
    width: 40%;
    bottom: 40%;
  }

  80% {
    transform: rotate(0) translateX(-100px);
    bottom: 40%;
    width: 40%;
    opacity: 1;
  }

  80% {
    transform: rotate(0) translateX(-150px) translateY(0);
    bottom: 40%;
    width: 40%;
  }

  90% {
    opacity: 0;
    transform: rotate(5deg) translateX(-100px) translateY(-50px);
    bottom: 40%;
    width: 38%;
    visibility: hidden;
  }

  100% {
    opacity: 0;
    transform: rotate(5deg) translateX(-100px) translateY(-50px);
    bottom: 40%;
    width: 38%;
    visibility: hidden;
  }
}

@-webkit-keyframes mv_imganimepc {
  0% {
    transform: rotate(15deg) translateY(300px);
    opacity: 1;
    width: 100%;
    max-width: 800px;
  }

  20% {
    transform: rotate(0deg) translateY(200px) translateX(-400px);
    width: 100%;
    max-width: 333px;
    opacity: 1;
  }

  22% {
    transform: rotate(0deg) translateY(200px) translateX(-400px);
    width: 100%;
    max-width: 333px;
    opacity: 1;
  }

  50% {
    transform: rotate(15deg) translateY(200px) translateX(400px);
    width: 100%;
    max-width: 200px;
    opacity: 1;
  }

  52% {
    transform: rotate(15deg) translateY(200px) translateX(400px);
    width: 100%;
    max-width: 200px;
    opacity: 1;
  }

  80% {
    width: 100%;
    max-width: 333px;
    transform: rotate(5deg) translateY(180px) translateX(-350px);
    opacity: 1;
  }

  90% {
    opacity: 0;
    width: 100%;
    max-width: 333px;
    transform: rotate(5deg) translateY(150px) translateX(-350px);
  }

  100% {
    opacity: 0;
    width: 100%;
    max-width: 333px;
    transform: rotate(10deg) translateY(150px) translateX(-360px);
  }
}

@keyframes mv_imganimepc {
  0% {
    transform: rotate(15deg) translateY(300px);
    opacity: 1;
    width: 100%;
    max-width: 800px;
  }

  20% {
    transform: rotate(0deg) translateY(200px) translateX(-400px);
    width: 100%;
    max-width: 333px;
    opacity: 1;
  }

  22% {
    transform: rotate(0deg) translateY(200px) translateX(-400px);
    width: 100%;
    max-width: 333px;
    opacity: 1;
  }

  50% {
    transform: rotate(15deg) translateY(200px) translateX(400px);
    width: 100%;
    max-width: 200px;
    opacity: 1;
  }

  52% {
    transform: rotate(15deg) translateY(200px) translateX(400px);
    width: 100%;
    max-width: 200px;
    opacity: 1;
  }

  80% {
    width: 100%;
    max-width: 333px;
    transform: rotate(5deg) translateY(180px) translateX(-350px);
    opacity: 1;
  }

  90% {
    opacity: 0;
    width: 100%;
    max-width: 333px;
    transform: rotate(5deg) translateY(150px) translateX(-350px);
  }

  100% {
    opacity: 0;
    width: 100%;
    max-width: 333px;
    transform: rotate(10deg) translateY(150px) translateX(-360px);
  }
}

#opv-wrap {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #fffde3;
  transition: opacity 0.8s ease-out;
  z-index: 9999;
}

#opv-wrap.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loading video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.top_mv {
  margin-top: 58px;
}

.top_mv video {
  width: 100%;
}

.top_mv.--is-top {
  background: #fffde3;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .top_mv.--is-top {
    padding-bottom: 40px;
  }
}

.top_mv_img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .top_mv_img {
    max-width: 689px;
    margin-left: auto;
  }
}

.top_mv_img img {
  width: 100%;
}

.top_mv--animation .mv_character_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
  padding: 100px 5% 60px;
}

@media screen and (min-width: 420px) {
  .top_mv--animation .mv_character_wrap {
    gap: 30px;
  }
}

@media screen and (min-width:750px) {
  .top_mv--animation .mv_character_wrap {
    max-width: 580px;
  }
}

@media screen and (min-width: 1024px) {
  .top_mv--animation .mv_character_wrap {
    margin-right: 0;
    /* max-width: 790px; */
    max-width: 820px;
    align-items: flex-start;
    gap: 100px;
    padding-top: 10px;
    margin: 0;
    padding-right: 0;
  }
}

.top_mv--animation .mv_character_img {
  -webkit-animation: none;
  animation: none;
}

@media screen and (min-width: 1024px) {
  .top_mv--animation .mv_character_img {
    width: 100%;
    /* max-width: 569px; */
    max-width: 290px;
  }

  .top_mv--animation .mv_character_img img {
    width: 100%;
  }
}

.top_mv--animation .mv_text {
  position: relative;
  height: 100%;
  width: 100%;
}

.top_mv--animation .mv_text img {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  -webkit-animation: none;
  animation: none;
}

@media screen and (min-width: 1024px) {
  .top_mv--animation .mv_text {
    margin-top: 100px;
  }
}

.top_mv--animation.is-active .mv_character_img {
  -webkit-animation: swing linear 4s infinite;
  animation: swing linear 4s infinite;
  transform-origin: top -30px 0;
}

.top_mv--animation.is-active .mv_text img {
  -webkit-animation: fadeSwitch 10s linear infinite;
  animation: fadeSwitch 10s linear infinite;
}

.top_mv--animation.is-active .mv_text img:nth-child(1) {
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.top_mv--animation.is-active .mv_text img:nth-child(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.top_mv--animation.is-active .mv_text img:nth-child(3) {
  -webkit-animation-delay: 7s;
  animation-delay: 7s;
}

@media screen and (min-width: 1024px) {
  .top_mv--animation {
    margin-bottom: -350px;
  }
}

@-webkit-keyframes fadeSwitch {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes fadeSwitch {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }

  15% {
    opacity: 1;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
    transform: translateY(0);
  }

  36% {
    opacity: 0;
    transform: translateY(10px);
  }

  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@-webkit-keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

@keyframes swing {
  0% {
    transform: rotate(0deg);
  }

  25% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(0deg);
  }

  75% {
    transform: rotate(-10deg);
  }

  100% {
    transform: rotate(0deg);
  }
}

.video_sp {
  display: block;
}

.video_pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .video_sp {
    display: none;
  }

  .video_pc {
    display: block;
  }
}

.top_about {
  background: url(img/top/bkg02-sp.jpg) no-repeat;
  background-size: cover;
  background-position: bottom center;
}

@media screen and (min-width: 1024px) {
  .top_about {
    background: url(img/top/bkg02.jpg) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

.top_about_title {
  font-size: 26px;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 40px;
}

@media screen and (min-width: 750px) {
  .top_about_title {
    font-size: 61px;
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 1024px) {
  .top_about_title {
    font-size: 53px;
    margin-bottom: 60px;
  }
}

.top_about p {
  font-size: 15px;
  letter-spacing: 0.01em;
  line-height: 2.6;
}

@media screen and (min-width: 750px) {
  .top_about p {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .top_about p {
    font-size: 16px;
  }
}

.top_about_img {

  width: 100%;
  max-width: 80%;
  margin: 0 auto;
  margin-top: 250px;
}

@media screen and (min-width: 750px) {
  .top_about_img {
    margin-top: 650px;
  }
}

@media screen and (min-width: 1024px) {
  .top_about_img {
    margin: 0 auto;
    margin-top: 70px;
    width: 100%;
    max-width: 270px;
  }
}

.top_business .grey_bkg {
  padding: 100px 0 0;
}

@media screen and (min-width: 750px) {
  .top_business .grey_bkg {
    padding: 130px 0 0;
  }
}

@media screen and (min-width: 1024px) {
  .top_business .grey_bkg {
    padding: 140px 0 0;
  }
}

.top_business .btn-type01 {
  margin-top: 30px;
}

@media screen and (min-width: 750px) {
  .top_business .btn-type01 {
    margin-top: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .top_business .btn-type01 {
    margin-top: 35px;
  }
}

.top_business .business_title {
  font-size: 16px;
  margin: 10px 0;
}

.top_business ul {
  max-width: 1000px;
  width: 100%;
  margin: 50px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: center;
  gap: 10px;
}

@media screen and (min-width: 750px) {
  .top_business ul {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .top_business ul {
    gap: 40px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.top_business_item div {
  aspect-ratio: 300/230;
  background: #f7f7f7;
  padding: 15px;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media screen and (min-width: 750px) {
  .top_business_item div {
    aspect-ratio: 300/230;
    padding: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .top_business_item div {
    aspect-ratio: 190/145;
  }
}

@media screen and (max-width: 749px) {
  .top_business_item.--type09 div {
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

.top_business_item img {
  height: 100%;
  /* max-height: 75px; */
  max-height: 80px;
}

@media screen and (min-width: 390px) {
  .top_business_item img {
    max-height: 90px;
  }
}

@media screen and (min-width: 420px) {
  .top_business_item img {
    max-height: 120px;
  }
}

@media screen and (min-width: 750px) {
  .top_business_item img {
    max-height: 100%;
  }
}

@media screen and (min-width: 1024px) {
  .top_business_item img {
    max-height: 170px;
  }
}

.top_business ul li div p:first-child {
  margin: 0 auto;
  display: block;
}

.top_news {
  margin-top: 100px;
  margin-bottom: 100px;
}

@media screen and (min-width:750px) {
  .top_news {
    margin-top: 140px;
    margin-bottom: 170px;
  }
}

@media screen and (min-width: 1024px) {
  .top_news {
    margin-bottom: 130px;
  }
}

.top_img_wrap {
  position: relative;
  width: 100%;
  max-width: 550px;
  margin: 0 auto;
}

.top_img_character {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 80px;
}

@media screen and (min-width:750px) {
  .top_img_character {
    max-width: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .top_business .top_img_wrap .top_img_character {
    display: none;
  }
}

.business_wrap {
  position: relative;
}

.business_wrap .bg_none div {
  background-color: transparent;
}

.business_wrap .business_img_character {
  display: none;
}

@media screen and (min-width: 1024px) {
  .business_wrap .business_img_character {
    display: block;
    position: absolute;
    right: 0;
    bottom: 40px;
  }
}

.business_list h4 {
  text-align: center;
  font-weight: 500;
  font-size: 15px;
}

@media screen and (min-width: 1024px) {
  .business_list h4 {
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .business_list h4 {
    font-size: 16px;
  }
}

.news_link {
  border-bottom: 1px solid #d3d1d0;
  display: block;
  padding: 10px 0;
}

@media screen and (min-width:750px) {
  .news_link {
    font-size: 27px;
    padding: 20px 0;
  }
}

@media screen and (min-width: 1024px) {
  .news_link {
    font-size: 13px;
    padding: 10px 0;
  }
}

.news_link:hover .news_title {
  color: var(--red);
}

.news_date {
  font-size: 13px;
  font-family: var(--roboto);
  color: var(--red);
  font-weight: 500;
}

@media screen and (min-width:750px) {
  .news_date {
    font-size: 27px;
  }
}

@media screen and (min-width: 1024px) {
  .news_date {
    font-size: 13px;
  }
}

.news_title {
  font-size: 16px;
  transition: all 0.5s;
}

@media screen and (min-width:750px) {
  .news_title {
    font-size: 35px;
  }
}

@media screen and (min-width: 1024px) {
  .news_title {
    font-size: 16px;
  }
}

.top_about {
  color: var(--white);
  padding: 110px 0 50px;
}

@media screen and (min-width:750px) {
  .top_about {
    padding: 110px 0 50px;
  }
}

@media screen and (min-width: 1024px) {
  .top_about {
    padding: 80px 0 260px;
  }
}

.top_company {
  padding-top: 100px;
}

@media screen and (min-width:750px) {
  .top_company {
    padding-top: 140px;
  }
}

@media screen and (min-width: 1024px) {
  .top_company {
    padding-top: 130px;
  }
}

.top_company .sec_title02 {
  padding-bottom: 60px;
}

@media screen and (min-width:750px) {
  .top_company .sec_title02 {
    padding-bottom: 100px;
  }
}

@media screen and (min-width: 1024px) {
  .top_company .sec_title02 {
    padding-bottom: 60px;
  }
}

.career-detail {
  position: relative;
}

.company_img_character {
  position: absolute;
  top: 65%;
  transform: translateY(-65%);
  right: -15px;
  width: 100%;
  max-width: 90px;
}

@media screen and (min-width: 410px) {
  .company_img_character {
    top: 60%;
    transform: translateY(-60%);
  }
}

@media screen and (min-width:750px) {
  .company_img_character {
    max-width: 170px;
  }
}

@media screen and (min-width: 1024px) {
  .company_img_character {
    right: -30px;
  }
}

.career-detail table {
  width: 100%;
  margin: 0 0 60px 0;
}

.career-detail table th {
  width: 16%;
  min-width: 195px;
  padding: 20px 20px;
  vertical-align: top;
  text-align: left;
  font-weight: normal;
  border: 1px solid #d6d6d6;
  background: #eeeeee;
}

.career-detail table td {
  width: 84%;
  padding: 20px 20px;
  border: 1px solid #d6d6d6;
  background: #fff;
}

.career-detail table td p {
  font-weight: 400;
  font-size: 16px;
}

.text-indent {
  padding-left: 30px;
}

.career-detail table td p:last-child {
  margin: 0 0 0 0;
}

.career-detail table td p span {
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .career-detail table {
    border-bottom: 1px solid #d6d6d6;
  }

  .career-detail table th {
    width: 100%;
    padding: 15px;
    display: block;
    border-bottom: none;
  }

  .career-detail table td {
    width: 100%;
    padding: 15px;
    display: block;
    border-bottom: none;
  }
}

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

object/object/project/_company.scss

***************************/
.greeting_wrap {
  margin-top: 50px;
}

@media screen and (min-width: 750px) {
  .greeting_wrap {
    margin-top: 70px;
  }
}

.greeting_title {
  font-size: 23px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 50px;
}

@media screen and (min-width: 321px) {
  .greeting_title {
    font-size: 27px;
  }
}

@media screen and (min-width: 750px) {
  .greeting_title {
    font-size: 50px;
    margin-bottom: 90px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_title {
    font-size: 36px;
    margin-bottom: 0;
  }
}

.greeting_img_box {
  display: grid;
  grid-template-columns: 30% 1fr;
  align-items: flex-end;
  position: relative;
}

@media screen and (min-width: 750px) {
  .greeting_img_box {
    grid-template-columns: 40% 1fr;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_img_box {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_wrap {
    display: grid;
    grid-template-areas: "areaA areaB""areaC areaB";
    gap: 70px 70px;
  }

  .greeting_wrap .greeting_title {
    grid-area: areaA;
  }

  .greeting_wrap .greeting_img_box {
    grid-area: areaB;
    justify-content: flex-end;
  }

  .greeting_wrap .greeting_text_box {
    grid-area: areaC;
  }
}

.greeting_img_character {
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 100%;
  max-width: 80px;
}

@media screen and (min-width:750px) {
  .greeting_img_character {
    max-width: 130px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_img_character {
    max-width: 80px;
    right: auto;
    left: 20px;
  }
}

.greeting_img {
  margin-right: 30px;
}

@media screen and (min-width:750px) {
  .greeting_img {
    margin-right: 50px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_img {
    margin-right: 0;
  }
}

.greeting_img img {
  width: 100%;
}

.greeting_name {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1.5;
  font-size: 18px;
}

@media screen and (min-width: 750px) {
  .greeting_name {
    font-size: 36px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_name {
    font-size: 19px;
    flex-direction: row;
    gap: 15px;
    margin-top: 15px;
  }
}

.greeting_name span {
  font-size: 12px;
}

@media screen and (min-width: 750px) {
  .greeting_name span {
    font-size: 23px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_name span {
    font-size: 12px;
  }
}

.greeting_text_box {
  margin-top: 50px;
}

.greeting_text_box p {
  line-height: 2.4;
}

@media screen and (min-width: 750px) {
  .greeting_text_box {
    margin-top: 90px;
  }
}

@media screen and (min-width: 1024px) {
  .greeting_text_box {
    margin-top: 0;
  }
}

.statement01 {
  padding-top: 180px;
}

@media screen and (min-width:750px) {
  .statement01 {
    padding-top: 230px;
  }
}

@media screen and (min-width: 1024px) {
  .statement01 {
    padding-top: 270px;
  }
}

.statement01_text {
  line-height: 4;
  font-size: 12px;
}

@media screen and (min-width:361px) {
  .statement01_text {
    font-size: 15px;
  }
}

@media screen and (min-width:750px) {
  .statement01_text {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .statement01_text {
    font-size: 17px;
  }
}

.statement01_wrap {
  position: relative;
  width: 100%;
  max-width: 590px;
  margin: 0 auto;
  margin-top: 60px;
}

@media screen and (min-width: 750px) {
  .statement01_wrap {
    margin-top: 85px;
  }
}

@media screen and (min-width: 1024px) {
  .statement01_wrap {
    max-width: 430px;
    margin-top: 80px;
  }
}

.statement_img_character {
  position: absolute;
  right: 0;
  top: 40%;
  transform: translateY(-40%);
  width: 100%;
  max-width: 80px;
}

@media screen and (min-width:750px) {
  .statement_img_character {
    max-width: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .statement_img_character {
    max-width: 80px;
  }
}

.statement_logo {
  width: 100%;
  max-width: 340px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width:750px) {
  .statement_logo {
    max-width: 520px;
    margin-top: 110px;
  }
}

@media screen and (min-width: 1024px) {
  .statement_logo {
    margin-top: 100px;
    max-width: 340px;
  }
}

.logomark01 {
  margin-top: 180px;
}

@media screen and (min-width:750px) {
  .logomark01 {
    margin-top: 230px;
  }
}

@media screen and (min-width: 1024px) {
  .logomark01 {
    margin-top: 210px;
  }
}

.logomark_wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logomark_img_character {
  width: 100%;
  max-width: 90px;
}

@media screen and (min-width:750px) {
  .logomark_img_character {
    max-width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .logomark_img_character {
    max-width: 90px;
    margin-right: 140px;
  }
}

.logomark_text {
  font-size: 15px;
  line-height: 2.4;
  margin-bottom: 80px;
}

@media screen and (min-width:750px) {
  .logomark_text {
    font-size: 28px;
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1024px) {
  .logomark_text {
    font-size: 15px;
    margin-bottom: 100px;
  }
}

.logomark_img{
  width: 100%;
  max-width: 75%;
  margin-left: auto;
  margin-right: auto;
  @media screen and (min-width:750px){
    max-width: 468px;
  }
  @media screen and (min-width: 1024px){
    max-width: 374px;
  }
}

.company01 {
  margin-top: 180px;
}

.company01 .sec_title02 {
  margin-bottom: 40px;
}

@media screen and (min-width:750px) {
  .company01 {
    margin-top: 230px;
  }

  .company01 .sec_title02 {
    margin-bottom: 110px;
  }
}

@media screen and (min-width: 1024px) {
  .company01 {
    margin-top: 210px;
  }

  .company01 .sec_title02 {
    margin-bottom: 70px;
  }
}

.news_detail .news_title {
  font-size: 26px;
  font-weight: 400;
  color: var(--red);
}

@media screen and (min-width:750px) {
  .news_detail .news_title {
    font-size: 47px;
  }
}

@media screen and (min-width: 1024px) {
  .news_detail .news_title {
    font-size: 26px;
  }
}

.news_contents {
  padding: 60px 0;
  margin-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid #d3d1d0;
  border-bottom: 1px solid #d3d1d0;
}

@media screen and (min-width:750px) {
  .news_contents {
    margin-top: 50px;
    margin-bottom: 50px;
    padding: 80px 0;
  }
}

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

object/object/project/_character.scss

***************************/
@media screen and (min-width: 1024px) {
  .page_mv_character {
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    margin-top: 70px;
  }
}

.character_box {
  display: grid;
  gap: 30px;
}

@media screen and (min-width: 750px) {
  .character_box {
    .character_box {
      display: grid;
      gap: 60px;
    }
  }
}

.character_box .character_main_img {
  text-align: center;
  width: 100%;
  max-width: 80%;
  /* max-width: 70%; */
  margin: 0 auto;
}
 .character_main_img img{
    margin-right: -10%;
   }

@media screen and (min-width: 1024px) {
  .character_box {
    display: grid;
    grid-template-areas: "areaA areaB""areaC areaB";
    gap: 50px;
    align-items: flex-end;
    padding-top: 40px;
  }

  .character_box .character_title {
    grid-area: areaA;
  }

  .character_box .character_main_img {
    grid-area: areaB;
    max-width: 100%;
  }

  .character_box .character_textbox {
    grid-area: areaC;
  }

  .character_box .character_main_img {
    margin-right: -20px;
  }
  .character_main_img img{
    margin-right: auto;
   }
}

.character_title {
  width: 100%;
  max-width: 70%;
}

@media screen and (min-width:750px) {
  .character_title {
    max-width: 434px;
  }
}

@media screen and (min-width: 1024px) {
  .character_title {
    max-width: 313px;
  }
}

.character_textbox {
  font-size: 15px;
  letter-spacing: 0.03em;
}

@media screen and (min-width:750px) {
  .character_textbox {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .character_textbox {
    font-size: 15px;
  }
}

.character_list_wrap {
  position: relative;
}

.character_list_img {
  position: absolute;
  top: -40px;
  right: -15px;
}

@media screen and (min-width:750px) {
  .character_list_img {
    top: -40px;
    right: -20px;
  }
}

@media screen and (min-width: 1024px) {
  .character_list_img {
    top: -45px;
    right: -60px;
  }
}

.list-box_list {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-top: 60px;
}

@media screen and (min-width:750px) {
  .list-box_list {
    gap: 30px;
    margin-top: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .list-box_list {
    gap: 25px;
    margin-top: 85px;
  }
}

.list-box_item {
  background: #fff57f;
  border: 3px solid #fff57f;
  border-radius: 6px;
}

.list-box_contents {
  background: #fffeee;
}

.list-box_title {
  padding: 10px 15px;
  line-height: 1;
}

@media screen and (min-width: 750px) {
  .list-box_title {
    padding: 20px 40px;
  }
}

@media screen and (min-width: 1024px) {
  .list-box_title {
    padding: 10px 30px;
  }
}

.list-box_title img {
  height: 24px;
  -o-object-fit: contain;
  object-fit: contain;
}

@media screen and (min-width:750px) {
  .list-box_title img {
    height: 39px;
  }
}

@media screen and (min-width: 1024px) {
  .list-box_title img {
    height: 24px;
  }
}

.list-box_contents {
  padding: 20px;
  font-size: 15px;

}

@media screen and (min-width:750px) {
  .list-box_contents {
    padding: 40px 40px;
    font-size: 28px;
    letter-spacing: 0.03em;
  }
}

@media screen and (min-width: 1024px) {
  .list-box_contents {
    padding: 30px;
    font-size: 15px;
  }
}

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

object/object/project/_business.scss

***************************/
@media screen and (max-width: 1023px) {
  .top_mv.--business .page_mv {
    margin-bottom: 0;
  }
}

.business01 .container_l {
  padding: 0;
}

@media screen and (min-width: 1024px) {
  .business01 .container_l {
    padding: 0 30px;
  }
}

@media screen and (min-width: 1024px) {
  .business_list {
    display: grid;
    gap: 80px;
  }
}

.business_title_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-left: 30px;
}

.business_cat {
  padding-left: 30px;
  padding-right: 30px;
}

.business_textbox {
  padding-left: 30px;
  padding-right: 30px;
}

@media screen and (min-width:750px) {
  .business_title_wrap {
    padding-left: 60px;
  }

  .business_cat {
    padding-left: 60px;
    padding-right: 60px;
  }

  .business_textbox {
    padding-left: 60px;
    padding-right: 60px;
  }
}

@media screen and (min-width:1024px) {
  .business_title_wrap {
    padding-left: 0;
  }

  .business_cat {
    padding-left: 0;
    padding-right: 0;
  }
   .business_textbox {padding-left: 0;
    padding-right: 0;
  }
}

.business_deco {
  text-align: right;
}

.business_item {
  background: #fffde3;
  padding: 40px 0 60px;
}

@media screen and (min-width:750px) {
  .business_item {
    padding: 60px 0 80px;
  }
}

@media screen and (min-width: 1024px) {
  .business_item {
    padding: 30px 0 65px;
  }
}

.business_wrap {
  width: 100%;
  max-width: 830px;
  margin: 0 auto;
  /* padding: 0 15px; */
  position: relative;
  z-index: 2;
}

.business_title {
  color: #e50012;
  font-weight: 500;
  /* font-size: 21px; */
  font-size: 23px;
}
@media screen and (min-width: 361px) {
  .business_titl {
    font-size: 24px;
  }
}
@media screen and (min-width:750px) {
  .business_title {
    /* font-size: 48px; */
    font-size: 47px;
  }
}

@media screen and (min-width: 1024px) {
  .business_title {
    /* font-size: 27px; */
    font-size: 26px;
  }
}

.business_cat {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 20px;
  margin-top: 20px;
}

@media screen and (min-width:750px) {
  .business_cat {
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .business_cat {
    margin-top: 30px;
  }
}

.deco {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  display: grid;
  /* grid-template-columns: 15px 1fr; */
  padding-left: 18px;
  align-items: center;
  /* gap: 5px; */
}

@media screen and (min-width:750px) {
  .deco {
    font-size: 30px;
    /* grid-template-columns: 26px 1fr;
    gap: 3px; */
    padding-left: 29px;
    
  }
}

@media screen and (min-width: 1024px) {
  .deco {
    font-size: 17px;
    /* grid-template-columns: 15px 1fr; */
    padding-left: 18px;
  }
}

.deco:before {
  content: "";
  background: var(--red);
  width: 15px;
  height: 15px;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 10px;
  left: 0;
}

@media screen and (min-width:750px) {
  .deco:before {
    width: 26px;
    height: 26px;
    top: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .deco:before {
    width: 15px;
    height: 15px;
    top: 10px;
  }
}

.business_unit {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
  margin-top: 50px;
}

@media screen and (min-width:750px) {
  .business_unit {
    gap: 49px;
    margin-top: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .business_unit {
    gap: 50px;
    flex-direction: row;
    justify-content: space-between;
    margin-top: 40px;
  }

  .business_unit .business_textbox {
    width: 100%;
    max-width: 566px;
  }
}

.business_textbox {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 2.4;
}

@media screen and (min-width:750px) {
  .business_textbox {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .business_textbox {
    font-size: 15px;
  }
}

.business_img {
  width: 100%;
  max-width: calc(100% - 60px);
  margin: 0 auto;
  position: relative;
}
@media screen and (min-width:750px) {
  .business_img{
    max-width: calc(100% - 120px);
  }
}


.business_img::after {
  content: "";
  width: 100%;
  height: 100%;
  background: #fff68c;
  display: block;
  position: absolute;
  bottom: -10px;
  right: -10px;
  z-index: -1;
}

.business_img img {
  width: 100%;
}

@media screen and (min-width: 1024px) {
  .business_img {
    max-width: 350px;
  }
}

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

object/object/project/_privacypolicy.scss

***************************/
.privacypolicy01 p {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 2.1;
}

@media screen and (min-width:750px) {
  .privacypolicy01 p {
    font-size: 24px;
  }
}

@media screen and (min-width: 1024px) {
  .privacypolicy01 p {
    font-size: 13px;
  }
}

.privacypolicy_title {
  font-size: 18px;
  margin-top: 40px;
}

@media screen and (min-width:750px) {
  .privacypolicy_title {
    font-size: 33px;
    margin-top: 60px;
  }
}

@media screen and (min-width: 1024px) {
  .privacypolicy_title {
    font-size: 18px;
  }
}

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

object/object/project/_contact.scss

***************************/
.tel_box {
  color: var(--red);
  font-weight: 500;
  font-size: 32px;
  font-family: var(--roboto);
  line-height: 1.5;
}

@media screen and (min-width: 365px) {
  .tel_box {
    font-size: 45px;
  }
}

@media screen and (min-width:750px) {
  .tel_box {
    font-size: 76px;
  }
}

@media screen and (min-width: 1024px) {
  .tel_box {
    font-size: 52px;
  }
}

.tel_box span {
  font-size: 18px;
}

@media screen and (min-width:750px) {
  .tel_box span {
    font-size: 46px;
  }
}

@media screen and (min-width: 1024px) {
  .tel_box span {
    font-size: 31px;
  }
}

.tel_text {
  font-size: 12px;
  letter-spacing: 0.03em;
}

@media screen and (min-width:750px) {
  .tel_text {
    font-size: 21px;
  }
}

@media screen and (min-width: 1024px) {
  .tel_text {
    font-size: 12px;
  }
}

.form input,
.form select,
.form textarea {
  width: 100%;
  max-width: 100%;
  font-size: 14px;
  border: 1px solid #d7d7d7;
  outline: none;
  margin: 0;
  padding: 15px 25px;
  line-height: 1.5;
}

::-moz-placeholder {
  color: #777;
}

::placeholder {
  color: #777;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  border: 1px solid #222;
}

.form select {
  max-width: 338px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url(img/common/arrow_sm_down.png);
  background-repeat: no-repeat;
  background-position: right 15px center;
}

.form textarea {
  min-height: 250px;
}

.form input[name=your-postcode01] {
  max-width: 222px;
  margin-bottom: 10px;
  margin-left: 15px;
}

.form table tr {
  border-bottom: 1px solid #d6d6d6;
}

.form table th {
  width: 19%;
  min-width: 200px;
  padding: 50px 10px 50px 40px;
  text-align: left;
  font-weight: normal;
  vertical-align: top;
  position: relative;
}

.form table th .required,
.form table th .optional {
  position: absolute;
  left: 0;
  top: auto;
  display: inline-block;
  margin: 1px 0 0 0;
  padding: 1px 3px 1px 3px;
  font-size: 11px;
}

.form table th .required {
  background: #e50012;
  color: #fff;
}

.form table th .optional {
  background-color: #eee;
}

.form table td {
  position: relative;
  width: 81%;
  padding: 35px 10px;
}

.form .privacy {
  margin-top: 30px;
}

.form .privacy .modal-btn {
  text-decoration: underline;
  color: #e50012;
  cursor: pointer;
  transition: opacity 0.4s;
}

.form .privacy-cont {
  padding: 50px;
  background-color: #fff;
  border-radius: 5px;
  max-width: 1000px;
}

.form .privacy-cont .ttl {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.form .privacy-cont .item-ttl {
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 16px;
}

.form .privacy-cont .item+.item {
  margin-top: 30px;
}

.form .privacy .modal-btn:hover {
  opacity: 0.65;
}

p:has(.wpcf7-acceptance) {
  text-align: center;
  margin-top: 20px;
}

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

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

.wpcf7-acceptance label {
  padding-left: 35px;
  position: relative;
  cursor: pointer;
}

.wpcf7-acceptance label::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #d6d6d6;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
}

.wpcf7-acceptance label:has(input[type=checkbox]:checked)::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0px;
  width: 10px;
  height: 5px;
  border-left: 3px solid #222;
  border-bottom: 3px solid #222;
  transform: rotate(-45deg);
  margin: 5px 0 0 5px;
}

.form .submit {
  padding: 30px 15px;
  background: #222;
  border: 1px solid #222;
  text-align: center;
  color: #fff;
  cursor: pointer;
}

.form .submit:hover {
  background-color: transparent;
  opacity: 1;
  color: #222;
}

.form .submit {
  box-sizing: border-box;
  transition: all 0.6s;
}

.form p:has(.submit) {
  position: relative;
  width: 100%;
  max-width: 490px;
  margin: 60px auto 0;
}

.form p:has(.submit)::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 35px;
  top: calc(50% + 10px);
  pointer-events: none;
  z-index: 3;
}

.form p:has(.submit)::after {
  content: "";
  display: inline-block;
  width: 5px;
  height: 10px;
  background-image: url(img/common/arrow_sm.png);
  position: absolute;
  top: calc(50% + 15px);
  right: 42px;
  pointer-events: none;
  z-index: 4;
}

@media screen and (min-width: 690px) {
  .form p:has(.submit)::before {
    content: "";
    display: inline-block;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: 35px;
    top: calc(50% - 10px);
    pointer-events: none;
  }

  .form p:has(.submit)::after {
    content: "";
    display: inline-block;
    width: 5px;
    height: 10px;
    background-image: url(img/common/arrow_sm.png);
    position: absolute;
    top: calc(50% - 5px);
    right: 42px;
    pointer-events: none;
  }
}

.wpcf7-spinner {
  margin: 0;
  display: inline;
  display: none;
}

.wpcf7-not-valid-tip {
  margin-top: 5px;
  font-weight: 700;
}

/* .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
} */

.wpcf7-form-control-wrap.is-show .wpcf7-not-valid-tip {
  display: block;
}

.wpcf7 form .wpcf7-response-output {
  margin-bottom: 0;
}

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

  .form table th,
  .form table th.other {
    display: block;
    width: 100%;
    padding: 15px 10px 5px 40px;
  }

  .form table th.privacy {
    padding: 0;
  }

  .form table td {
    display: block;
    width: 100%;
    padding: 15px 0 30px 0;
  }
}

@media screen and (max-width: 500px) {
  .contact01 .tel {
    margin-top: 50px;
    padding: 20px;
  }

  .form .submit {
    margin-top: 40px;
  }

  .contact01 .heading-a {
    font-size: 26px;
  }
}

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

object/object/project/_recruit.scss

***************************/
.recruit01 p {
  font-size: 15px;
  letter-spacing: 0.03em;
  line-height: 2.4;
}

@media screen and (min-width:750px) {
  .recruit01 p {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit01 p {
    font-size: 15px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit01 p {
    margin-top: 60px;
  }

  .recruit01 p:first-of-type {
    margin-top: 0;
  }

  .recruit01 p:last-of-type {
    margin-top: 0;
  }
}

.recruit01_wrap {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding-top: 30px;
}

@media screen and (min-width:750px) {
  .recruit01_wrap {
    margin-bottom: 60px;
    padding-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit01_wrap {
    flex-wrap: nowrap;
    padding-top: 30px;
  }
}

.recruit01_img {
  margin-left: auto;
  width: 100%;
  max-width: 155px;
}

@media screen and (min-width: 1024px) {
  .recruit01_img {
    max-width: 120px;
  }
}

.recruit01_img img {
  width: 100%;
}

.circle_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 60px;
}

@media screen and (min-width:750px) {
  .circle_list {
    gap: 20px;
    margin-top: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .circle_list {
    justify-content: flex-start;
    gap: 10px;
    margin-top: 60px;
  }
}

.circle_list li {
  border: 3px solid #ffeb00;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  width: 100%;
  max-width: 82px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width:750px) {
  .circle_list li {
    max-width: 155px;
    font-size: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .circle_list li {
    max-width: 82px;
    font-size: 16px;
  }
}

.recruit02 {
  margin-top: 60px;
  background: #fffde3;
}

@media screen and (min-width:750px) {
  .recruit02 {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit02 {
    margin-top: 80px;
  }
}

.recruit02_bg {
  position: relative;
}

.recruit02_bg img {
  width: 100%;
}

.recruit02_bg_logo {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 100%;
  max-width: 200px;
  z-index: 2;
}

@media screen and (min-width:750px) {
  .recruit02_bg_logo {
    max-width: 500px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit02_bg_logo {
    max-width: 270px;
  }
}

.interview_img_wrap {
  position: relative;
  width: 100%;
  max-width: 490px;
  margin: 0 auto;
}

@media screen and (min-width: 1024px) {
  .interview_img_wrap {
    max-width: 330px;
    margin: 0;
  }
}

.interview_img_wrap .interview_character {
  position: absolute;
  bottom: 5px;
  right: -10px;
  width: 100%;
  max-width: 102px;
}

@media screen and (min-width:750px) {
  .interview_img_wrap .interview_character {
    max-width: 153px;
    bottom: 5px;
    right: -60px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_img_wrap .interview_character {
    max-width: 102px;
    bottom: 5px;
    right: -25px;
  }
}

.interview_img_deco {
  position: absolute;
  top: -20px;
  left: -15px;
  z-index: 2;
}

.interview_img {
  padding: 20px;
  border: 3px solid #ffeb00;
  width: 100%;
}

.interview_img img {
  width: 100%;
  max-width: 448px;
}

@media screen and (min-width: 1024px) {
  .interview_img img {
    max-width: 300px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_unit {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
  }
}

.interview_title {
  font-size: 24px;
  font-weight: 400;
  line-height: 1.5;
  margin-top: 40px;
  margin-bottom: 30px;
}


@media screen and (min-width: 540px) {
  .interview_title {
    font-size: 36px;
  }
}

@media screen and (min-width:750px) {
  .interview_title {
    font-size: 48px;
    margin-top: 80px;
    margin-bottom: 70px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_title {
    font-size: 30px;
    margin-top: 0;
    margin-bottom: 50px;
  }
}

.interview_job {
  font-size: 14px;
  background: var(--black);
  display: inline-block;
  color: var(--white);
  padding: 1px 10px;
  line-height: 1.8;
  margin-bottom: 5px;
}

@media screen and (min-width:750px) {
  .interview_job {
    font-size: 24px;
    margin-bottom: 30px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_job {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.interview_name {
  font-size: 19px;
}

@media screen and (min-width:750px) {
  .interview_name {
    font-size: 49px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_name {
    font-size: 19px;
  }
}

.interview_name_small {
  font-size: 17px;
  margin-left: 5px;
}

@media screen and (min-width:750px) {
  .interview_name_small {
    font-size: 29px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_name_small {
    font-size: 17px;
  }
}

.interview_join {
  font-size: 12px;
}

@media screen and (min-width:750px) {
  .interview_join {
    font-size: 21px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_join {
    font-size: 12px;
  }
}

.js-more-btn {
  background: transparent;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  font-size: 13px;
  font-family: var(--roboto);
  position: relative;
  color: rgba(35, 24, 21, 0.6);
  background: #fffde3;
}

@media screen and (min-width:750px) {
  .js-more-btn {
    margin-top: 40px;
    font-size: 23px;
  }
}

@media screen and (min-width: 1024px) {
  .js-more-btn {
    margin-top: 30px;
    font-size: 13px;
  }
}

.js-more-btn::after {
  content: "";
  width: 12px;
  height: 12px;
  border: 0;
  border-bottom: solid 2px rgba(35, 24, 21, 0.6);
  border-right: solid 2px rgba(35, 24, 21, 0.6);
  transform: rotate(45deg);
}

@media screen and (min-width:750px) {
  .js-more-btn::after {
    width: 20px;
    height: 20px;
  }
}

@media screen and (min-width: 1024px) {
  .js-more-btn::after {
    width: 12px;
  height: 12px;
  }
}

.js-more-btn.add {
  flex-direction: column-reverse;
  opacity: 0;
  pointer-events: none;
}

.js-more-btn.add::after {
  content: "";
  transform: rotate(224deg);
}

.interview_text {
  position: relative;
  height: 80px;
  overflow: hidden;
  transition: all 0.8s;
}

.content-wrapper.is-open .interview_text {
  height: 100%;
}

.interview_text {
  line-height: 2.4;
  font-size: 15px;
  margin-top: 20px;
}

@media screen and (min-width:750px) {
  .interview_text {
    font-size: 28px;
    margin-top: 40px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_text {
    font-size: 15px;
    margin-top: 30px;
  }
}

.interview_list {
  padding-bottom: 80px;
  padding-top: 60px;
}

@media screen and (min-width:750px) {
  .interview_list {
    padding-bottom: 120px;
     padding-top: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_list {
    padding-bottom: 70px;
     padding-top: 70px;
  }
}

.interview_item {
  padding-bottom: 150px;
}

@media screen and (min-width:750px) {
  .interview_item {
    padding-bottom: 200px;
  }
}

@media screen and (min-width: 1024px) {
  .interview_item {
    padding-bottom: 150px;
  }
}

.recruit03 .table {
  border: 1px solid #d6d6d6;
  line-height: 2.2;
}

.recruit03 .table .row {
  display: flex;
}

.recruit03 .table .row:not(:last-child) {
  border-bottom: 1px solid #d6d6d6;
}

.recruit03 .table .ttl {
  background-color: #eee;
  width: 100%;
  max-width: 157px;
  padding: 15px 10px;
  font-size: 15px;
}

@media screen and (min-width:750px) {
  .recruit03 .table .ttl {
    font-size: 28px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit03 .table .ttl {
    font-size: 15px;
    padding: 15px 20px;
    padding-right: 10px;
  }
}

.recruit03 .table .cont {
  padding: 15px 20px;
  font-size: 15px;
  font-weight: 400;
}

@media screen and (min-width:750px) {
  .recruit03 .table .cont {
    font-size: 28px;
    padding: 15px 30px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit03 .table .cont {
    font-size: 15px;
  }
}

ul.disc li {
  text-indent: -1em;
  margin-left: 1em;
}

ul.disc li::before {
  content: "・";
}

.recruit03 .flexbox {
  margin-top: 60px;
  justify-content: center;
  align-items: flex-end;
  gap: 45px 65px;
  flex-wrap: wrap;
}

.recruit03 .banner .txt {
  text-align: center;
  line-height: 2.2;
}

@media screen and (max-width: 1023px) {
  .recruit03 .table .ttl {
    width: 100%;
    max-width: 100%;
    padding: 15px 20px;
  }

  .recruit03 .table .row {
    display: block;
  }
}

.recruit03 .sec_title03 {
  margin-bottom: 40px;
}

@media screen and (min-width:750px) {
  .recruit03 .sec_title03 {
    margin-bottom: 80px;
  }
}

@media screen and (min-width: 1024px) {
  .recruit03 .sec_title03 {
    margin-bottom: 60px;
  }
}

.entry_wrap {
  text-align: center;
  margin-top: 80px;
}

@media screen and (min-width:750px) {
  .entry_wrap {
    margin-top: 120px;
  }
}

@media screen and (min-width: 1024px) {
  .entry_wrap {
    margin-top: 90px;
  }
}

.entry_btn_wrap {
  position: relative;
  margin-top: 40px;
}

@media screen and (min-width:750px) {
  .entry_btn_wrap {
    margin-top: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .entry_btn_wrap {
    margin-top: 100px;
  }
}

.entry_character_img {
  margin-left: auto;
  width: 100%;
  max-width: 100px;
}

@media screen and (min-width:750px) {
  .entry_character_img {
    max-width: 150px;
  }
}

@media screen and (min-width: 1024px) {
  .entry_character_img {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

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

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: flex;
}

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

.flex-row-rev {
  flex-direction: row-reverse;
}

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

.flex-col-rev {
  flex-direction: col-reverse;
}

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

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

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

.flex-justify-start {
  justify-content: flex-start;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-justify-center {
  justify-content: center;
}

.flex-justify-between {
  justify-content: space-between;
}

.flex-justify-around {
  justify-content: space-around;
}

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

.flex-align-end {
  align-items: flex-end;
}

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

.flex-align-baseline {
  align-items: baseline;
}

.flex-item {
  flex: 0 1 auto;
}

.flex-item0 {
  flex: 0 0 auto;
}

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

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

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

object/utility/_background.scss

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

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

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

object/utility/_text.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.t-center {
  text-align: center;
}

.t-left {
  text-align: left;
}

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

@media screen and (min-width: 451px) {
  .t-center_pc {
    text-align: center;
  }

  .t-left_pc {
    text-align: left;
  }

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

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fs-10 {
  font-size: 10px;
}

.fs-11 {
  font-size: 11px;
}

.fs-12 {
  font-size: 12px;
}

.fs-13 {
  font-size: 13px;
}

.fs-14 {
  font-size: 14px;
}

.fs-15 {
  font-size: 15px;
}

.fs-16 {
  font-size: 16px;
}

.fs-17 {
  font-size: 17px;
}

.fs-18 {
  font-size: 18px;
}

.fs-19 {
  font-size: 19px;
}

.fs-20 {
  font-size: 20px;
}

.fs-21 {
  font-size: 21px;
}

.fs-22 {
  font-size: 22px;
}

.fs-23 {
  font-size: 23px;
}

.fs-24 {
  font-size: 24px;
}

.fs-25 {
  font-size: 25px;
}

.fs-26 {
  font-size: 26px;
}

.fs-27 {
  font-size: 27px;
}

.fs-28 {
  font-size: 28px;
}

.fs-29 {
  font-size: 29px;
}

.fs-30 {
  font-size: 30px;
}

.fs-31 {
  font-size: 31px;
}

.fs-32 {
  font-size: 32px;
}

.fs-33 {
  font-size: 33px;
}

.fs-34 {
  font-size: 34px;
}

.fs-35 {
  font-size: 35px;
}

.fs-36 {
  font-size: 36px;
}

.f-bold {
  font-weight: bold;
}

.f-normal {
  font-weight: normal;
}

.indent--1 {
  text-indent: -1em;
  padding-left: 1em;
}

.indent--2 {
  text-indent: -2em;
  padding-left: 2em;
}

.indent--3 {
  text-indent: -3em;
  padding-left: 3em;
}

.indent--4 {
  text-indent: -4em;
  padding-left: 4em;
}

.indent--5 {
  text-indent: -5em;
  padding-left: 5em;
}

.fc--gray {
  color: var(--black);
}

.fc--black {
  color: var(--black);
}

.fc--red {
  color: red;
}

.txtdeco-none {
  text-decoration: none;
}

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

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.mb10 {
  margin-bottom: 10px;
}

.mt-190 {
  margin-top: 190px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mb150 {
  margin-bottom: 150px;
}

.mb300 {
  margin-bottom: 10px;
}

.mt-0 {
  margin-top: 0px;
}

.mt-5 {
  margin-top: 5px;
}

.mt-10 {
  margin-top: 10px;
}

.mt-15 {
  margin-top: 15px;
}

.mt-20 {
  margin-top: 20px;
}

.mt-25 {
  margin-top: 25px;
}

.mt-30 {
  margin-top: 30px;
}

.mt-35 {
  margin-top: 35px;
}

.mt-40 {
  margin-top: 40px;
}

.mt-45 {
  margin-top: 45px;
}

.mt-50 {
  margin-top: 50px;
}

.mt-55 {
  margin-top: 55px;
}

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

.mt-65 {
  margin-top: 65px;
}

.mt-70 {
  margin-top: 70px;
}

.mt-75 {
  margin-top: 75px;
}

.mt-80 {
  margin-top: 80px;
}

.mt-85 {
  margin-top: 85px;
}

.mt-90 {
  margin-top: 90px;
}

.mt-95 {
  margin-top: 95px;
}

.mt-100 {
  margin-top: 100px;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-5 {
  margin-bottom: 5px;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-45 {
  margin-bottom: 45px;
}

.mb-50 {
  margin-bottom: 50px;
}

.mb-55 {
  margin-bottom: 55px;
}

.mb-60 {
  margin-bottom: 60px;
}

.mb-65 {
  margin-bottom: 65px;
}

.mb-70 {
  margin-bottom: 70px;
}

.mb-75 {
  margin-bottom: 75px;
}

.mb-80 {
  margin-bottom: 80px;
}

.mb-85 {
  margin-bottom: 85px;
}

.mb-90 {
  margin-bottom: 90px;
}

.mb-95 {
  margin-bottom: 95px;
}

.mb-100 {
  margin-bottom: 100px;
}

.mr-0 {
  margin-right: 0px;
}

.mr-5 {
  margin-right: 5px;
}

.mr-10 {
  margin-right: 10px;
}

.mr-15 {
  margin-right: 15px;
}

.mr-20 {
  margin-right: 20px;
}

.mr-25 {
  margin-right: 25px;
}

.mr-30 {
  margin-right: 30px;
}

.mr-35 {
  margin-right: 35px;
}

.mr-40 {
  margin-right: 40px;
}

.mr-45 {
  margin-right: 45px;
}

.mr-50 {
  margin-right: 50px;
}

.mr-55 {
  margin-right: 55px;
}

.mr-60 {
  margin-right: 60px;
}

.mr-65 {
  margin-right: 65px;
}

.mr-70 {
  margin-right: 70px;
}

.mr-75 {
  margin-right: 75px;
}

.mr-80 {
  margin-right: 80px;
}

.mr-85 {
  margin-right: 85px;
}

.mr-90 {
  margin-right: 90px;
}

.mr-95 {
  margin-right: 95px;
}

.mr-100 {
  margin-right: 100px;
}

.ml-0 {
  margin-left: 0px;
}

.ml-5 {
  margin-left: 5px;
}

.ml-10 {
  margin-left: 10px;
}

.ml-15 {
  margin-left: 15px;
}

.ml-20 {
  margin-left: 20px;
}

.ml-25 {
  margin-left: 25px;
}

.ml-30 {
  margin-left: 30px;
}

.ml-35 {
  margin-left: 35px;
}

.ml-40 {
  margin-left: 40px;
}

.ml-45 {
  margin-left: 45px;
}

.ml-50 {
  margin-left: 50px;
}

.ml-55 {
  margin-left: 55px;
}

.ml-60 {
  margin-left: 60px;
}

.ml-65 {
  margin-left: 65px;
}

.ml-70 {
  margin-left: 70px;
}

.ml-75 {
  margin-left: 75px;
}

.ml-80 {
  margin-left: 80px;
}

.ml-85 {
  margin-left: 85px;
}

.ml-90 {
  margin-left: 90px;
}

.ml-95 {
  margin-left: 95px;
}

.ml-100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

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

object/utility/_font.scss

***************************/
.fv {
  writing-mode: vertical-rl;
  letter-spacing: 3px;
}

.uppercase {
  text-transform: uppercase;
}

.letterspace01 {
  letter-spacing: 2px;
}

.letterspace02 {
  letter-spacing: 4px;
}

.letterspace03 {
  letter-spacing: 1px;
}

.lineheight01 {
  line-height: 1.3;
}

.vertical {
  writing-mode: vertical-rl;
}

.ff--roboto {
  font-family: var(--roboto);
}

/*# sourceMappingURL=style.css.map */

.br_sp {
  display: block;
}

.br_pc {
  display: none;
}

@media screen and (min-width: 769px) {
  .br_sp {
    display: none;
  }

  .br_pc {
    display: block;
  }
}

.wpcf7 .wpcf7-submit:disabled {
  cursor: not-allowed;
  opacity: 0.6;
  pointer-events: none;
}