@charset "utf-8";
/*
Theme Name:BRS
Theme URI:
Author:
*/

/* =================================================
Foundation
================================================= */
:root {
  --primary-font-family: "Montserrat", "Zen Kaku Gothic New", YuGothic, "游ゴシック体", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Helvetica Neue", HelveticaNeue, Verdana, "メイリオ", Meiryo, sans-serif;
  --font-en: "Montserrat", serif;
  --input-font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Helvetica Neue", HelveticaNeue, Verdana, "メイリオ", Meiryo, sans-serif;
  --c-body: #121212;
  --c-primary: #2dbbed;
  --c-secondary: #ffb400;
  --c-border: #d8d8d8;
  --sec_margin-inline: 20px;
  --cont_margin-inline: 150px;
  --cont_margin-block: 200px;
  --cont_margin-block02: 150px;
}

@media (max-width: 1300px) {
  :root {
    --cont_margin-inline: 120px;
    --cont_margin-block: 150px;
    --cont_margin-block02: 100px;
  }
}

@media (max-width: 960px) {
  :root {
    --cont_margin-inline: 90px;
    --cont_margin-block: 100px;
  }
}

@media (max-width: 769px) {
  :root {
    --cont_margin-inline: 20px;
    --cont_margin-block: 70px;
    --cont_margin-block02: 50px;
  }
}

/* Base
------------------------------------------------- */
* {
  font-weight: 400;
  font-style: normal;
  font-family: var(--primary-font-family);
  margin: 0;
  padding: 0;
  line-height: 1.75;
  letter-spacing: .1em;
  color: var(--c-body);
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

html {
  font-size: 62.5%;
  /*scroll-padding-top: 120px;*/
}

body {
  font-size: 18px;
  font-size: 1.8rem;
  word-wrap: break-word;
  font-display: swap;
  overflow-wrap: break-word;
  overflow-x: hidden;
  position: relative;
}

body.fixed {
  /*position: fixed !important;*/
  width: 100%;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 374px) {
  html {
    font-size: 2.667vw;
  }
}

img {
  border: 0;
  vertical-align: bottom;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}


/* =================================================
Animation
================================================= */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

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

  100% {
    opacity: 1;
    transform: translate(0, 0);
  }
}

@keyframes blur {
  0% {
    opacity: 0;
    -ms-filter: blur(6px);
    filter: blur(6px);
  }

  100% {
    opacity: 1;
    -ms-filter: blur(0);
    filter: blur(0);
  }
}

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

  100% {
    opacity: 1;
    transform: translate(0, 0) rotate(45deg);
  }
}

.-fadein {
  opacity: 0;
}

.-translate {
  opacity: 0;
  transform: translate(0, 5px);
}

.-blur {
  opacity: 0;
}

.fv-fadein {
  opacity: 0;
  animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}

.fv-translate {
  opacity: 0;
  animation: translate 0.3s ease-in-out 0.5s forwards;
}

.fv-blur {
  opacity: 0;
  animation: blur 0.5s ease-in-out 0.5s forwards;
}

.js-effect__fade {
  animation: fadeIn 0.5s ease-in-out 0.5s forwards;
}

.js-effect__blur {
  animation: blur 0.2s ease-in-out 0.5s forwards;
}

.js-effect__translate {
  animation: translate 0.5s ease-in-out 0.5s forwards;
}


/* =================================================
Layout
================================================= */
#l-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Header
------------------------------------------------- */
.l-header {
  width: calc(100% - 100px);
  height: 50px;
  display: flex;
  justify-content: space-between;
  position: fixed;
  top: 30px;
  left: 50px;
  transition: all .3s ease-in-out;
  z-index: 999;
}

/* .l-header:before {
  position: absolute;
  content: "";
  width: 642px;
  height: 642px;
  background-color: rgba(255, 255, 255, 0.45);
  transform: rotate(45deg);
  top: -610px;
  left: -300px;
  border-radius: 20px;
  z-index: -1;
} */

.l-header__logo {
  width: 295px;
  height: 84px;
  position: relative;
  top: 0;
  left: 0;
  transition: transform 0.3s ease, opacity 0.3s ease;
  z-index: 10;
}

/* subページでもCSSアニメーションは使わない */
.sub .l-header__logo {
  animation: none;
  opacity: 1;
  transform: translateY(0);
}

.start {
  background: var(--c-primary);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9999;
  /*display: none;*/
}

.start .start__logo {
  position: fixed;
  top: calc(50% - 42px);
  left: calc(50% - 147px);
  /*transform: translate(-50%, -50%);*/
  display: none;
  z-index: 100000;
  width: 295px;
  height: 84px;
  transition: top 0.5s ease-in-out, left 0.5s ease-in-out;
}

.start .start__logo.move {
  top: 30px;
  left: 50px;
  /*transform: translate( 0, 0 );*/
}

.start .start__logo img {
  width: 100%;
  height: auto;
}

.start .start__txt {
  position: fixed;
  top: 50%;
  left: 52%;
  color: #fff;
  font-size: clamp(2.0rem, 3vw, 2.6rem);
  transform: translate(-50%, -50%);
  z-index: 100000;
  display: none;
  text-align: center;
}

.start .start__txt span {
  display: inline-block;
  white-space: nowrap;
  color: #fff;
}

.start.is-visible {
  display: block;
}

@media screen and (max-width: 1300px) {
  .l-header__logo {
    width: 210px;
  }

  .start .start__logo {
    top: calc(50% - 30px);
    left: calc(50% - 105px);
    width: 210px;
    height: 60px;
  }
}

@media screen and (max-width: 960px) {
  .l-header {
    width: calc(100% - 60px);
    top: 30px;
    left: 30px;
  }

  .l-header:before {
    width: 500px;
    height: 500px;
    top: -450px;
    left: -250px;
  }

  .start .start__logo.move {
    top: 30px;
    left: 30px;
  }
}

@media screen and (max-width: 768px) {
  .l-header {
    width: calc(100% - 40px);
    top: 20px;
    left: 20px;
  }

  .l-header:before {
    top: -510px;
  }

  .l-header__logo {
    width: 150px;
    margin-left: -10px;
  }

  .start .start__logo {
    top: calc(50% - 21px);
    left: calc(50% - 75px);
    width: 150px;
    height: 42px;
    margin-left: -10px;
  }

  .start .start__logo.move {
    top: 20px;
    left: 20px;
  }
}

.l-header-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .l-header-menu {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--c-primary);
    transition: all .3s;
    -webkit-transition: .3s ease-in-out;
    transition: .5s ease-in-out;
    z-index: 99999;
  }

  .-transform .l-header-menu {
    top: 0;
    right: 0;
  }
}

@media screen and (max-width: 769px) {
  .l-header-menu {
    width: 40px;
    height: 40px;
  }
}

/* ---------- Global Nav ----------*/
.l-gnav {
  background: #fff;
  border-radius: 100px;
  padding: 10px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-shadow: 0px 3px 20px 3px rgba(0, 0, 0, 0.05);
  animation: translate 0.5s ease-in-out 4.0s forwards;
  opacity: 0;
}

.sub .l-gnav {
  animation: translate 0.5s ease-in-out 1.0s forwards;
}

.l-gnav-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0 20px;
}

.l-gnav-ul li {}

.l-gnav-ul li a {
  font-size: 1.7rem;
  display: block;
  padding: 2px 15px 0;
  font-weight: 700;
  transition: all .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .l-gnav-ul li a:hover {
    color: var(--c-secondary);
  }
}

@media screen and (max-width: 1300px) {
  .l-gnav {
    height: 70px;
  }

  .l-gnav-ul {
    margin: 0 10px;
  }

  .l-gnav-ul li a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1100px) {
  .l-gnav-ul li a {
    padding: 2px 5px 0;
  }
}

@media screen and (max-width: 960px) {
  .l-gnav {
    display: none;
  }
}

/* Footer
------------------------------------------------- */
.l-footer {
  background: var(--c-primary);
  border-radius: 70px 70px 0 0;
  margin: 0 var(--sec_margin-inline);
  padding: 80px;
  position: relative;
}

.l-footer:before {
  position: absolute;
  content: "";
  width: 793px;
  height: 579px;
  left: 0;
  bottom: 0;
  background: url("images/ft-obj-logo.png") no-repeat 0 0;
  background-size: 793px 579px;
}

.l-footer * {
  color: #fff;
}

.l-footer__main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 80px;
}

.l-footer__info {
  width: 40%;
}

.l-footer__logo {
  width: 295px;
  height: 84px;
  margin-bottom: 100px;
  margin-left: -10px;
}

.l-footer-info__tel span {
  font-size: 1.8rem;
  display: inline-block;
  margin-right: 10px;
}

.l-footer-info__tel a {
  font-size: 3.6rem;
}

.l-footer-info__sche {
  margin-bottom: 70px;
}

.l-footer-info__name {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 0.25em;
}

.l-footer__navgroup {
  width: 60%;
}

.l-footer__btn {
  display: flex;
  justify-content: flex-end;
  column-gap: 10px;
  margin-bottom: 120px;
}

.l-footer__btn.-sp {
  display: none;
}

.l-footer__btn a {
  border: 1px solid var(--c-secondary);
  background: var(--c-secondary);
}

@media (hover: hover) and (pointer: fine) {
  .l-footer__btn a:hover {
    background: var(--c-primary);
    border: 1px solid #fff;
  }
}

@media screen and (max-width: 1500px) {
  .l-footer {
    border-radius: 50px 50px 0 0;
  }
}

@media screen and (max-width: 1300px) {
  .l-footer__logo {
    width: 210px;
    margin-bottom: 60px;
  }

  .l-footer-info__tel span {
    font-size: 1.6rem;
  }

  .l-footer-info__tel a {
    font-size: 3.0rem;
  }

  .l-footer-info__name {
    font-size: 1.8rem;
  }

  .l-footer__btn {
    margin-bottom: 90px;
  }
}

@media screen and (max-width: 1150px) {
  .l-footer {
    padding: 80px 50px;
  }

  .l-footer__info {
    width: 35%;
  }

  .l-footer__navgroup {
    width: 65%;
  }
}

@media screen and (max-width: 960px) {
  .l-footer {
    border-radius: 30px 30px 0 0;
  }

  .l-footer__main {
    display: block;
    margin-bottom: 20px;
  }

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

  .l-footer__logo {
    margin: 0 auto 50px;
  }

  .l-footer-info__sche {
    margin-bottom: 50px;
  }

  .l-footer-info__name {
    margin-bottom: 10px;
  }

  .l-footer-info__add {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }

  .l-footer__navgroup {
    width: 100%;
  }

  .l-footer__btn {
    justify-content: center;
    margin-bottom: 50px;
  }

  .l-footer__btn.-pc {
    display: none;
  }

  .l-footer__btn.-sp {
    display: flex;
  }

  .l-footer__btn a {
    border: 1px solid var(--c-secondary);
    background: var(--c-secondary);
  }
}

@media screen and (max-width: 767px) {
  .l-footer {
    border-radius: 30px 30px 0 0;
    padding: 50px 30px;
  }

  .l-footer:before {
    width: 300px;
    height: 219px;
    background: url("images/ft-obj-logo.png") no-repeat 0 0;
    background-size: 100% auto;
  }

  .l-footer__logo {
    margin: 0 auto 20px;
  }

  .l-footer-info__tel span {
    font-size: 1.2rem;
  }

  .l-footer-info__tel a {
    font-size: 2.2rem;
  }

  .l-footer-info__sche {
    margin-bottom: 30px;
  }

  .l-footer-info__name {
    font-size: 1.4rem;
  }

  .l-footer-info__add {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .l-footer__btn {
    margin-bottom: 30px;
  }

  .l-footer__btn.-sp {
    display: block;
  }

  .l-footer__btn p.c-btn-cta {
    margin: 0 auto 10px;
    width: 100%;
    max-width: 250px;
  }

  .l-footer-btm__copy {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

/* Footer Nav */
.l-footer__nav {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  column-gap: 80px;
}

.l-footer-nav__ttl {
  font-size: 3.6rem;
  margin-bottom: 0.5em;
}

.l-footer-nav__li a {
  font-size: 1.8rem;
  display: block;
  padding: 0 10px 0 20px;
  margin-bottom: 15px;
  position: relative;
  transition: all .3s ease-in-out;

  & span {
    font-weight: 500;
  }
}

.l-footer-nav__li a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: #fff;
  top: 15px;
  left: 0;
  transition: all .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-nav__li a:hover {
    padding: 0 0 0 30px;
  }

  .l-footer-nav__li a:hover:before {
    left: 10px;
  }
}

@media screen and (max-width: 600px) {
  .l-footer {
    border-radius: 30px 30px 0 0;
    padding: 50px 20px;
  }
}

@media screen and (max-width: 1300px) {
  .l-footer__nav {
    column-gap: 50px;
  }

  .l-footer-nav__ttl {
    font-size: 3.0rem;
  }

  .l-footer-nav__li a {
    font-size: 1.6rem;
  }

  .l-footer-nav__li a:before {
    top: 12px;
  }
}

@media screen and (max-width: 1150px) {
  .l-footer__nav {
    column-gap: 30px;
  }

  .l-footer-nav__ttl {
    font-size: 2.6rem;
  }

  .l-footer-nav__li a {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 960px) {
  .l-footer__nav {
    justify-content: space-evenly;
  }

  .l-footer-nav__body {
    width: 30%;
  }

  .l-footer-nav__body:last-child {
    width: auto;
  }

  .l-footer-nav__li a {
    padding: 0 0 0 20px;
  }

  .l-footer-nav__ttl {
    font-size: 2.2rem;
    margin-bottom: 0.25em;
  }

  .l-footer-nav__li a {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer__nav {
    display: block;
  }

  .l-footer-nav__body {
    width: 100%;
    margin-bottom: 30px;
  }

  .l-footer-nav__ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .l-footer-nav__li {
    width: 33.33%;
  }

  .l-footer-nav__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .l-footer-nav__li a {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 600px) {
  .l-footer__nav {
    display: block;
  }

  .l-footer-nav__body {
    width: 100%;
    margin-bottom: 10px;
  }

  .l-footer-nav__ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .l-footer-nav__li {
    width: 50%;
  }

  .l-footer-nav__ttl {
    font-size: 1.8rem;
    margin-bottom: 5px;
  }

  .l-footer-nav__li a {
    font-size: 1.3rem;
  }
}

.l-footer__btm {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-footer-btm__ul {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.l-footer-btm__li {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.l-footer-btm__li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: #fff;
  top: 10%;
  right: 0;
}

.l-footer-btm__li:last-child:before {
  display: none;
}

.l-footer-btm__li a {
  transition: all .3s ease-in-out;
  position: relative;
}

.l-footer-btm__li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -3px;
  left: 0;
  opacity: 0;
  transition: all .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .l-footer-btm__li a:hover:before {
    opacity: 1;
  }
}

@media screen and (max-width: 960px) {
  .l-footer__btm {
    display: block;
    text-align: center;
  }

  .l-footer-btm__ul {
    justify-content: center;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .l-footer-btm__ul {
    display: block;
  }

  .l-footer-btm__li {
    padding-right: 0;
    margin-right: 0;
  }

  .l-footer-btm__li:before {
    display: none;
  }

  .l-footer-btm__li:last-child:before {
    display: none;
  }
}


/* =================================================
Object
================================================= */

/*---------- component ----------*/
/*--wrap--*/
.c-cont__f {
  margin: 0;
}

.c-cont__ll {
  margin: 0 var(--cont_margin-inline);
}

.c-cont__l {
  max-width: 1620px;
  margin: 0 auto;
}

.c-cont__m {
  max-width: 1200px;
  margin: 0 auto;
}

.c-cont__s {
  max-width: 800px;
  margin: 0 auto;
}

.c-cont {
  padding-top: 150px;
  padding-bottom: 200px;
  position: relative;
}

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

  .c-cont__ll,
  .c-cont__l {
    margin: 0 var(--cont_margin-inline);
  }
}

@media screen and (max-width: 1300px) {
  .c-cont__m {
    margin: 0 var(--cont_margin-inline);
  }
}

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

  .c-cont__ll,
  .c-cont__l,
  .c-cont__m {
    margin: 0 var(--cont_margin-inline);
  }
}

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

  .c-cont__ll,
  .c-cont__l,
  .c-cont__m,
  .c-cont__s {
    margin: 0 var(--cont_margin-inline);
  }

  .c-cont {
    padding-top: 70px;
    padding-bottom: 100px;
  }
}

/*----- Title -----*/
/*--c-page-ttl--*/
.c-page-ttl {
  height: 480px;
  display: flex;
  align-items: center;
  position: relative;
  background: url("images/page-obj-logo.png") no-repeat left -100px bottom -20px #e7f8fe;
  overflow: hidden;
  opacity: 0;
  animation: blur 0.5s ease-in-out 0.5s forwards;
}

.c-page-ttl__inner {
  position: absolute;
  left: var(--cont_margin-inline);
  bottom: calc(var(--cont_margin-inline) - 50px);
}

.c-page-ttl__txt {
  color: var(--c-body);
  font-size: 3.0rem;
  line-height: 1.6;
  font-weight: 900;
  opacity: 0;
  animation: blur 0.5s ease-in-out 1s forwards;
}

.c-page-ttl__en {
  color: var(--c-primary);
  font-size: 10.0rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 10px;
  opacity: 0;
  letter-spacing: 0.05em;
  animation: blur 0.5s ease-in-out 1s forwards;
}

@media screen and (max-width: 1300px) {
  .c-page-ttl {
    height: 400px;
    background: url("images/page-obj-logo.png") no-repeat left -50px bottom -10px #e7f8fe;
    background-size: calc((1113 / 1920) * 100vw) calc((700 / 1920) * 100vw);
  }

  .c-page-ttl__inner {
    bottom: calc(var(--cont_margin-inline) - 30px);
  }

  .c-page-ttl__txt {
    font-size: 1.8rem;
  }

  .c-page-ttl__en {
    font-size: 7.0rem;
  }
}

@media screen and (max-width: 960px) {
  .c-page-ttl {
    height: 400px;
    background: url("images/page-obj-logo.png") no-repeat left -50px bottom -10px #e7f8fe;
    background-size: calc((1271 / 1920) * 100vw) calc((800 / 1920) * 100vw);
  }

  .c-page-ttl__txt {
    font-size: 1.8rem;
  }

  .c-page-ttl__en {
    font-size: 6.5rem;
  }
}

@media screen and (max-width: 767px) {
  .c-page-ttl {
    height: 300px;
    background: url("images/page-obj-logo.png") no-repeat left -50px bottom -10px #e7f8fe;
    background-size: calc((769 / 769) * 100vw) calc((483 / 769) * 100vw);
  }

  .c-page-ttl__inner {
    bottom: var(--cont_margin-inline);
  }

  .c-page-ttl__txt {
    font-size: 1.6rem;
  }

  .c-page-ttl__en {
    font-size: 4.5rem;
  }
}

.c-page-obj__img {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
  z-index: -1;
}

.c-page-obj__img.obj01 {
  width: calc((114 / 1920) * 100vw);
  height: calc((114 / 1920) * 100vw);
  border-radius: 100%;
  top: 50%;
  left: 10%;
}

.c-page-obj__img.obj02 {
  width: 130px;
  height: 130px;
  width: calc((130 / 1920) * 100vw);
  height: calc((130 / 1920) * 100vw);
  border-radius: 10px;
  transform: rotate(45deg);
  top: 5%;
  left: 30%;
  background: #beecfd;
}

.c-page-obj__img.obj03 {
  width: 225px;
  height: 225px;
  width: calc((225 / 1920) * 100vw);
  height: calc((225 / 1920) * 100vw);
  border-radius: 10px;
  transform: rotate(45deg);
  bottom: -10%;
  right: 30%;
  background: #fcf3c0;
}

.c-page-obj__img.obj04 {
  width: 265px;
  height: 265px;
  width: calc((265 / 1920) * 100vw);
  height: calc((265 / 1920) * 100vw);
  border-radius: 265px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
  background: #def3fb;
}

@media screen and (max-width: 1300px) {
  .c-page-obj__img.obj01 {
    width: calc((148 / 1920) * 100vw);
    height: calc((148 / 1920) * 100vw);
  }

  .c-page-obj__img.obj02 {
    width: calc((169 / 1920) * 100vw);
    height: calc((169 / 1920) * 100vw);
  }

  .c-page-obj__img.obj03 {
    width: calc((292 / 1920) * 100vw);
    height: calc((292 / 1920) * 100vw);
  }

  .c-page-obj__img.obj04 {
    width: calc((344 / 1920) * 100vw);
    height: calc((344 / 1920) * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .c-page-obj__img.obj01 {
    width: calc((192 / 1920) * 100vw);
    height: calc((192 / 1920) * 100vw);
  }

  .c-page-obj__img.obj02 {
    width: calc((219 / 1920) * 100vw);
    height: calc((219 / 1920) * 100vw);
  }

  .c-page-obj__img.obj03 {
    width: calc((379 / 1920) * 100vw);
    height: calc((379 / 1920) * 100vw);
  }

  .c-page-obj__img.obj04 {
    width: calc((447 / 1920) * 100vw);
    height: calc((447 / 1920) * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .c-page-obj__img.obj01 {
    width: calc((150 / 769) * 100vw);
    height: calc((150 / 769) * 100vw);
    top: 40%;
    left: -5%;
  }

  .c-page-obj__img.obj02 {
    width: calc((130 / 769) * 100vw);
    height: calc((130 / 769) * 100vw);
    top: 15%;
    left: 10%;
  }

  .c-page-obj__img.obj03 {
    width: calc((250 / 769) * 100vw);
    height: calc((250 / 769) * 100vw);
    right: -15%;
    bottom: 40%;
  }

  .c-page-obj__img.obj04 {
    width: calc((200 / 769) * 100vw);
    height: calc((200 / 769) * 100vw);
    top: 0;
    right: 15%;
  }
}

@media screen and (max-width: 450px) {
  .c-page-obj__img.obj01 {
    width: calc((170 / 769) * 100vw);
    height: calc((170 / 769) * 100vw);
    top: 50%;
  }

  .c-page-obj__img.obj02 {
    width: calc((160 / 769) * 100vw);
    height: calc((160 / 769) * 100vw);
    top: 20%;
  }

  .c-page-obj__img.obj03 {
    width: calc((300 / 769) * 100vw);
    height: calc((300 / 769) * 100vw);
  }

  .c-page-obj__img.obj04 {
    width: calc((220 / 769) * 100vw);
    height: calc((220 / 769) * 100vw);
  }
}

/* Section Title */
.c-sec-ttl01 {
  margin-bottom: 30px;
  font-size: 5.0rem;
  font-weight: 700;
  line-height: 1.4;
}

.c-sec-en01 {
  margin-bottom: 20px;
  font-size: 2.0rem;
  color: var(--c-primary);
}

@media screen and (max-width: 1500px) {
  .c-sec-ttl01 {
    font-size: 4.0rem;
  }
}

@media screen and (max-width: 1300px) {
  .c-sec-ttl01 {
    font-size: 3.5rem;
  }

  .c-sec-en01 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 960px) {
  .c-sec-ttl01 {
    margin-bottom: 20px;
    font-size: 3.0rem;
  }

  .c-sec-en01 {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-sec-ttl01 {
    font-size: 2.4rem;
  }

  .c-sec-ttl01 .u-p-xxxxl {
    display: block;
  }

  .c-sec-en01 {
    font-size: 1.4rem;
  }
}

.c-sec-ttl02 {
  margin-bottom: 20px;
  font-size: 2.6rem;
  line-height: 1.4;
  color: var(--c-primary);
}

@media screen and (max-width: 1500px) {
  .c-sec-ttl02 {
    margin-bottom: 20px;
    font-size: 2.2rem;
    line-height: 1.4;
    color: var(--c-primary);
  }
}

@media screen and (max-width: 767px) {
  .c-sec-ttl02 {
    margin-bottom: 10px;
    font-size: 2.0rem;
    line-height: 1.4;
    color: var(--c-primary);
  }
}

.c-sec-ttl03 {
  margin-bottom: 50px;
  padding-bottom: 50px;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #d8d8d8;
}

@media screen and (max-width: 1500px) {
  .c-sec-ttl03 {
    font-size: 3.8rem;
  }
}

@media screen and (max-width: 1300px) {
  .c-sec-ttl03 {
    font-size: 3.0rem;
  }
}

@media screen and (max-width: 960px) {
  .c-sec-ttl03 {
    margin-bottom: 20px;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .c-sec-ttl03 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

.c-sec-en04 {
  font-size: 7.2rem;
  color: #2dbbed;
  line-height: 1.4;
}

.c-sec-ttl04 {
  font-size: 2.0rem;
  font-weight: 700;
  margin-bottom: 90px;
}

@media screen and (max-width: 1500px) {
  .c-sec-en04 {
    /*font-size: 6.0rem;*/
  }

  .c-sec-ttl04 {
    margin-bottom: 70px;
  }
}

@media screen and (max-width: 1300px) {
  .c-sec-en04 {
    /*font-size: 5.5rem;*/
  }

  .c-sec-ttl04 {
    font-size: 1.8rem;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 960px) {
  .c-sec-en04 {
    font-size: 5.0rem;
  }
}

@media screen and (max-width: 769px) {
  .c-sec-en04 {
    font-size: 4.0rem;
  }

  .c-sec-ttl04 {
    font-size: 1.4rem;
    margin-bottom: 30px;
  }
}

.c-sec-ttl05 {
  font-size: 2.6rem;
  font-weight: 700;
  padding: 10px 0 10px 25px;
  margin-bottom: 30px;
  position: relative;
}

.c-sec-ttl05:before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: var(--c-primary);
  top: 0;
  left: 0;
}

@media screen and (max-width: 960px) {
  .c-sec-ttl05 {
    font-size: 2.2rem;
    padding: 5px 0 5px 25px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 769px) {
  .c-sec-ttl05 {
    font-size: 1.8rem;
    padding: 5px 0 5px 20px;
  }
}

.c-sec-txt01 {
  margin-bottom: 50px;
  font-size: 2.2rem;
}

@media screen and (max-width: 1300px) {
  .c-sec-txt01 {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 960px) {
  .c-sec-txt01 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .c-sec-txt01 {
    font-size: 1.4rem;
  }
}

.c-sec-txt02 {
  margin-bottom: 50px;
  font-size: 2.0rem;
}

@media screen and (max-width: 1300px) {
  .c-sec-txt02 {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 960px) {
  .c-sec-txt02 {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .c-sec-txt02 {
    font-size: 1.4rem;
  }
}

/* section */
.c-section {
  padding-bottom: var(--cont_margin-block);
}

.c-section:first-child {
  padding-top: var(--cont_margin-block);
}

.c-section.-bg-blue {
  padding-top: var(--cont_margin-block);
  background: #e7f8fe;
}

@media screen and (max-width: 960px) and (min-width: 768px) {
  .recruit-concept__inner.c-cont__ll {
    padding-top: 40px;
  }
}

/* table */
.c-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #d8d8d8;
}

.c-table__ttl {
  width: 25%;
  padding: 30px 20px 30px 40px;
  border-top: 1px solid #d8d8d8;
}

.c-table__txt {
  width: 75%;
  padding: 30px 20px 30px 0;
  border-top: 1px solid #d8d8d8;
}

@media screen and (max-width: 960px) {
  .c-table__ttl {
    padding: 30px 20px 30px 0;
    border-top: 1px solid #d8d8d8;
  }

  .c-table__txt {
    padding: 30px 0;
  }
}

@media screen and (max-width: 600px) {
  .c-table__ttl {
    width: 100%;
    padding: 20px 0;
    font-weight: 700;
  }

  .c-table__txt {
    width: 100%;
    padding: 20px 0;
  }
}

/* list */
.c-sec-list {
  margin-bottom: 50px;
}

.c-sec-list li {
  font-size: 2.2rem;
  position: relative;
  margin-bottom: 10px;
  padding: 0 0 0 20px;
  line-height: 1.4;
}

.c-sec-list li:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  top: 10px;
  left: 0;
  border-radius: 8px;
}

@media screen and (max-width: 1300px) {
  .c-sec-list li {
    font-size: 1.8rem;
  }

  .c-sec-list li:before {
    width: 8px;
    height: 8px;
    top: 8px;
  }
}

@media screen and (max-width: 767px) {
  .c-sec-list {
    margin-bottom: 30px;
  }

  .c-sec-list li {
    font-size: 1.4rem;
    padding: 0 0 0 15px;
  }

  .c-sec-list li:before {
    width: 6px;
    height: 6px;
    top: 6px;
  }
}

/*----- Button -----*/
.c-btn-cta {
  width: 200px;
}

.c-btn-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  color: #fff;
  border: 1px solid var(--c-secondary);
  border-radius: 60px;
  background: var(--c-secondary);
  transition: all .4s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn-cta a:hover {
    background: #fff;
    color: var(--c-secondary);
  }
}

@media screen and (max-width: 1300px) {
  .c-btn-cta {
    width: 180px;
  }

  .c-btn-cta a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    color: #fff;
    border: 1px solid var(--c-secondary);
    border-radius: 60px;
    background: var(--c-secondary);
    transition: all .4s ease-in-out;
  }

  @media (hover: hover) and (pointer: fine) {
    .c-btn-cta a:hover {
      background: #fff;
      color: var(--c-secondary);
    }
  }
}

.c-btn {
  width: 300px;
}

.c-btn-l {
  width: 400px;
}

.c-btn a {
  padding: 0 50px 0 30px;
  height: 70px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  background: var(--c-primary);
  font-size: 2.0rem;
  letter-spacing: .2em;
  line-height: 1.3;
  border: 2px solid var(--c-primary);
  border-radius: 70px;
  transition: all .3s ease-in-out;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.c-btn a:after {
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  border-radius: 8px;
  top: calc(50% - 4px);
  right: 30px;
  background: #fff;
  transition: all .3s ease-in-out;
}

.c-btn.-orange a {
  background: var(--c-secondary);
  border: 2px solid var(--c-secondary);
}

.c-btn-inner {
  color: #fff;
}

@media (hover: hover) and (pointer: fine) {
  .c-btn a:hover {
    color: #fff;
    background: #fff;
    color: var(--c-primary);
  }

  .c-btn a:hover:after {
    background: var(--c-primary);
  }

  .c-btn.-orange a:hover {
    color: var(--c-secondary);
  }

  .c-btn.-orange a:hover:after {
    background: var(--c-secondary);
  }
}

@media screen and (max-width: 1300px) {
  .c-btn a {
    height: 60px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .c-btn {
    margin: 0 auto;
    width: 250px;
  }

  .c-btn-l {
    width: 100%;
    max-width: 400px;
  }

  .c-btn a {
    padding: 0 30px 0 20px;
    height: 50px;
    font-size: 1.4rem;
  }

  .c-btn a:after {
    right: 20px;
  }
}

/*----- Breadcrumb -----*/
.c-breadcrumb__ul {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.c-breadcrumb__li {
  margin-right: 10px;
  padding-right: 20px;
  position: relative;
}

.c-breadcrumb__li:not(:nth-last-of-type(1)) {
  flex-shrink: 0;
}

.c-breadcrumb__li:nth-last-of-type(1) {
  margin-right: 0;
  padding-right: 0;
}

.c-breadcrumb__li:not(:nth-last-of-type(1)):after {
  width: 10px;
  height: 1px;
  content: '';
  position: absolute;
  top: 13px;
  right: 0;
  background: var(--c-white-2);
}

.c-breadcrumb__li,
.c-breadcrumb__li a {
  color: var(--c-white-2);
  font-size: 1.4rem;
}

.c-breadcrumb__li a {
  display: inline-block;
  transition: all .3s ease-in-out;
}

.c-breadcrumb__li:nth-of-type(1) a {
  width: 14px;
  height: 21px;
  font-size: 0;
  text-indent: 100%;
  white-space: nowrap;
  background: url(../images/ico_logo.svg) no-repeat center center / 14px;
  overflow: hidden;
}

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

  .c-breadcrumb__li,
  .c-breadcrumb__li a {
    font-size: 1.3rem;
  }

  .c-breadcrumb__li:nth-of-type(1) a {
    width: 11px;
    height: 17px;
    background: url(../images/ico_logo.svg) no-repeat center center / 11px;
    transform: translateY(2px);
  }

  .c-breadcrumb__li:not(:nth-last-of-type(1)):after {
    top: 11px;
  }
}

/*----- Form -----*/
/* Text, Textarea, Selectbox */
.c-sel {
  width: 100%;
  min-width: 150px;
  max-width: 300px;
  height: 45px;
  padding: 0 20px;
  background: #fff url(images/arr_select_down.png) no-repeat right 10px center / 9px;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  cursor: pointer;
}

.c-form {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 5px !important;
  font-size: 16px;
}

.c-form.-sm {
  max-width: 250px;
}

.c-form.-md {
  max-width: 445px;
}

.c-form.-lg {
  max-width: 650px;
}

.c-form-txt {
  width: 100%;
  max-width: 650px;
  height: 210px;
  padding: 0px 12px;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 5px;
  font-size: 16px;
}

.c-form-button {
  border-radius: 50px;
  width: 200px;
  height: 40px;
  border: 1px solid var(--c-primary);
  padding: 0 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.4rem;
  color: var(--c-primary);
  background: #fff;
  position: relative;
  cursor: pointer;
  transition: all .3s ease-in-out;
  margin-bottom: 5px;
}

.c-form-button:hover {
  border: 1px solid var(--c-primary);
  color: #fff;
  background: var(--c-primary);
}

.c-form-button:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 20px;
  border-radius: 100%;
  background: var(--c-primary);
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.c-form-button:hover:before {
  background: #fff;
}

.p-form-date lavel {
  position: relative;
  display: inline-block;
  width: 310px;
  border-radius: 15px;
}
.p-form-date lavel::before {
  position: absolute;
  content: "";
  top: 0;
  right: 0px;
  width: 48px;
  height: 48px;
  background-color: var(--c-primary);
  background-image: url("images/calendar.svg");
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0px 5px 5px 0px;
}
input[type="date"] {
  position: relative;
  padding: 0 10px;
  width: 310px;
  background: transparent;
  box-sizing: border-box;
}
input[type="date"]::-webkit-calendar-picker-indicator {
  position: absolute;
  right: 0px;
  top: 0px;
  padding: 0;
  width: 48px;
  height: 48px;
  background: rgba(255, 0, 0, 0.0); // 一旦背景色を付けて、見やすくします
  color: transparent;
  cursor: pointer;
}
input[type="date"]::-webkit-inner-spin-button{
  -webkit-appearance: none;
}
input[type="date"]::-webkit-clear-button{
  -webkit-appearance: none;
}

@media screen and (max-width: 767px) {
  .c-form {
    height: 48px;
  }

  .c-form-button {
    width: 160px;
    height: 30px;
    padding: 0 20px;
    font-size: 1.3rem;
  }
}

/* Check, Radio */
input[type='radio'] {
  margin-right: 5px;
}

input[type='radio']+span {
  margin-right: 10px;
}

.c-col-l label {
  margin-right: 5px;
}

/* Button */
.c-btn-submit {
  width: 500px;
  position: relative;
  margin-bottom: 10px;
}

.p-entry-form .c-btn-submit {
  margin: 0 auto 10px;
}

/*.c-btn-submit:after {
  width: 8px;
  height: 8px;
  content: '';
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: #fff;
  border-radius: 8px;
  transition: all .4s ease-in-out;
}*/
.c-btn-submit input {
  width: 100%;
  padding: 30px 0 33px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  background: none;
  background: var(--c-primary);
  border-radius: 100px;
  transition: all .4s ease-in-out;
  border: 2px solid var(--c-primary);
}

.c-btn-submit.-submit,
.c-btn-submit.-back {
  width: 500px;
}

.c-btn-submit.-submit input {
  padding: 30px 0 33px 30px;
  font-size: 2.0rem;
}

.c-btn-submit .-back {
  padding: 15px 0 15px 30px;
  font-size: 1.6rem;
  background: var(--c-border);
  border: 2px solid var(--c-border);
}

.c-btn-submit.-submit input {
  color: #fff;
  background: var(--c-primary);
}

@media (hover: hover) and (pointer: fine) {
  .c-btn-submit:hover:after {
    top: 50%;
    background: var(--c-primary);
  }

  .c-btn-submit:hover input {
    color: var(--c-primary);
    border: 2px solid var(--c-primary);
    background: none;
  }

  .c-btn-submit.-back input:hover {
    color: var(--c-border);
    border: 2px solid var(--c-border);
    background: #fff;
  }

  .c-btn-submit.-back:hover:after {
    background: var(--c-border);
  }
}

@media screen and (max-width: 960px) {
  .c-btn-submit {
    width: 100%;
    max-width: 400px;
  }
}

@media screen and (max-width: 767px) {
  .c-btn-submit {
    max-width: 350px;
  }

  .c-btn-submit input {
    padding: 20px 0 23px 20px;
    font-size: 1.6rem;
  }

  .c-btn-submit.-submit input {
    padding: 20px 0 23px 20px;
    font-size: 1.6rem;
  }

  .c-btn-submit.-back input {
    font-size: 1.4rem;
  }
}

/*--c-menu--*/
.c-menu-trigger, .c-menu-trigger span {
  transition: all .4s;
  box-sizing: border-box;
}

.c-menu-trigger {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-transform: uppercase;
  border-radius: 50px;
}

@media (hover: hover) {
  .c-menu-trigger:hover {
    background: #fff;
  }

  .c-dl-close .c-menu-trigger:hover {
    background: rgba(45,187,237,0.5);
  }
}

@media (hover: none) {
  .c-menu-trigger:hover {
    background: none;
  }
}

.c-menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
  border-radius: 5px;
}

.c-dl-close .c-menu-trigger span {
  background: var(--c-primary);
}

.c-menu-trigger span:nth-of-type(1) {
  top: 20px;
  left: 12px;
  width: 25px;
}

.c-menu-trigger span:nth-of-type(2) {
  top: 28px;
  left: 12px;
  width: 15px;
}

@media (hover: hover) {
  .c-menu-trigger:hover span:nth-of-type(1) {
    top: 22px;
    left: 12px;
    width: 25px;
    background: var(--c-primary);
  }

  .c-menu-trigger:hover span:nth-of-type(2) {
    top: 26px;
    left: 12px;
    width: 15px;
    background: var(--c-primary);
  }

  .c-dl-close .c-menu-trigger:hover span:nth-of-type(1),
  .c-dl-close .c-menu-trigger:hover span:nth-of-type(2) {
    background: var(--c-primary);
  }
}

.c-menu-trigger span.show {
  display: block;
}

.c-menu-trigger span.hide {
  display: none;
}

.c-menu-trigger.active span:nth-of-type(1) {
  top: 24px;
  left: 12px;
  width: 25px;
  -webkit-transform: translateY(0) rotate(-20deg);
  transform: translateY(0) rotate(-20deg);
  background: #fff;
}

.c-menu-trigger.active span:nth-of-type(2) {
  top: 24px;
  left: 12px;
  width: 25px;
  -webkit-transform: translateY(-0) rotate(20deg);
  transform: translateY(-0) rotate(20deg);
  background: #fff;
}

.c-menu-trigger.active span:nth-of-type(1),
.c-menu-trigger.active span:nth-of-type(2) {
  background: var(--c-primary);
}

@media (hover: hover) {

  .c-menu-trigger:hover.active span:nth-of-type(1),
  .c-menu-trigger:hover.active span:nth-of-type(2) {
    background: var(--c-primary);
  }

  .c-dl-close .c-menu-trigger:hover.active span:nth-of-type(1),
  .c-dl-close .c-menu-trigger:hover.active span:nth-of-type(2) {
    background: #fff;
  }
}

@media screen and (max-width: 769px) {
  .c-menu-trigger {
    width: 40px;
    height: 40px;
  }

  .c-menu-trigger span:nth-of-type(1) {
    top: 15px;
    width: 15px;
  }

  .c-menu-trigger span:nth-of-type(2) {
    top: 22px;
    width: 10px;
  }

  @media (hover: hover) {
    .c-menu-trigger:hover span:nth-of-type(1) {
      top: 18px;
      width: 15px;
    }

    .c-menu-trigger:hover span:nth-of-type(2) {
      top: 21px;
      width: 10px;
    }
  }

  .c-menu-trigger.active span:nth-of-type(1),
  .c-menu-trigger.active span:nth-of-type(2) {
    top: 19px;
    left: 12px;
    width: 16px;
  }
}

/*--c-dl-menu--*/
@media (hover: hover) and (pointer: fine) {
  .c-dl-menu__btn a:hover {
    background: var(--c-primary);
    border: 1px solid #fff;
  }
}

.c-dl-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .c-dl-menu {
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 999;
    overflow-y: scroll;
    overflow-x: hidden;
    min-height: 100vh;
    /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    min-height: 100svh;
  }

  .c-dl-close {
    position: fixed;
    top: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50px;
    z-index: 9999;
    background: #fff;
  }

  .c-dl-menu__main {
    display: block;
    margin-bottom: 50px;
  }

  .c-dl-menu__cont {
    width: 100%;
    min-height: 100vh;
    /* Fallback */
    min-height: calc(var(--vh, 1vh) * 100);
    min-height: 100svh;
    position: relative;
    padding: 80px 50px;
    background: var(--c-primary);
    z-index: 1;
  }

  .c-dl-menu__cont:before {
    position: absolute;
    content: "";
    width: 793px;
    height: 579px;
    left: 0;
    bottom: 0;
    background: url("images/ft-obj-logo.png") no-repeat 0 0;
    background-size: 793px 579px;
    z-index: -1;
  }

  .c-dl-menu__cont * {
    color: #fff;
  }

  .c-dl-menu-nav__ul {
    display: flex;
    flex-direction: column;
    gap: 1em 0;
  }

  .c-dl-menu__info {
    width: 100%;
    text-align: center;
  }

  .c-dl-menu__logo {
    width: 210px;
    margin: 0 auto 70px;
  }

  .c-dl-menu__tel span {
    font-size: 1.6rem;
    display: inline-block;
    margin-right: 10px;
  }

  .c-dl-menu__tel a {
    font-size: 3.0rem;
  }

  .c-dl-menu__sche {
    margin-bottom: 30px;
  }

  .c-dl-menu__name {
    font-size: 1.8rem;
    margin-bottom: 0;
    font-weight: 700;
  }

  .c-dl-menu__add {
    font-size: 1.4rem;
    margin-bottom: 50px;
  }

  .c-dl-menu__navgroup {
    width: 100%;
    margin-bottom: 30px;
  }

  .c-dl-menu__btn {
    display: flex;
    column-gap: 10px;
    justify-content: center;
    margin-bottom: 30px;
  }

  .c-dl-menu__btn a {
    border: 1px solid var(--c-secondary);
    background: var(--c-secondary);
  }
}

@media screen and (max-width: 767px) {
  .c-dl-close {
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }

  .c-dl-menu__cont {
    padding: 70px 20px 50px;
  }

  .c-dl-menu__cont:before {
    width: 300px;
    height: 219px;
    background: url("images/ft-obj-logo.png") no-repeat 0 0;
    background-size: 100% auto;
  }

  .c-dl-menu__logo {
    margin: 0 auto 50px;
  }

  .c-dl-menu__tel span {
    font-size: 1.2rem;
  }

  .c-dl-menu__tel a {
    font-size: 2.2rem;
  }

  .c-dl-menu__sche {
    margin-bottom: 30px;
  }

  .c-dl-menu__name {
    font-size: 1.4rem;
    margin-bottom: 0;
  }

  .c-dl-menu__add {
    font-size: 1.2rem;
    margin-bottom: 30px;
  }

  .c-dl-menu__navgroup {
    margin-bottom: 20px;
  }

  .c-dl-menu__btn {
    margin-bottom: 30px;
    display: block;
  }

  .c-dl-menu__btn p.c-btn-cta {
    margin: 0 auto 10px;
    width: 100%;
    max-width: 250px;
  }
}

/* c-dl-menu-nav */
@media (hover: hover) and (pointer: fine) {
  .c-dl-menu-nav__li a:hover {
    padding: 0 0 0 30px;
  }

  .c-dl-menu-nav__li a:hover:before {
    left: 10px;
  }
}

@media screen and (max-width: 960px) {
  .c-dl-menu__nav {
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
    column-gap: 30px;
    justify-content: space-between;
  }

  .c-dl-menu-nav__body {
    width: 30%;
  }

  .c-dl-menu-nav__ttl {
    font-size: 2.2rem;
    margin-bottom: 0.5em;
  }

  .c-dl-menu-nav__li a {
    height: 3em;
    padding-left: 1em;
    border: 1px solid;
    border-radius: 30px;
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    transition: all .3s ease-in-out;

    & span {
      font-weight: 500;
    }
  }

  /* .c-dl-menu-nav__li a:before {
    position: absolute;
    content: "";
    width: 10px;
    height: 1px;
    background: #fff;
    left: -5px;
    transition: all .3s ease-in-out;
  } */

  .c-dl-menu-nav__li a:after {
    width: 6px;
    height: 6px;
    content: '';
    position: absolute;
    border-radius: 8px;
    right: 10px;
    background: #fff;
    transition: all .3s ease-in-out;
  }
}

@media screen and (max-width: 767px) {
  .c-dl-menu__nav {
    display: block;
  }

  .c-dl-menu-nav__body {
    width: 100%;
    margin-bottom: 20px;
  }

  .c-dl-menu-nav__ttl {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .c-dl-menu-nav__ul {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 10px 2%;
  }

  .c-dl-menu-nav__li {
    width: 32%;
  }

  .c-dl-menu-nav__li a {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .c-dl-menu-nav__body {
    margin-bottom: 20px;
  }

  .c-dl-menu-nav__li {
    width: 49%;
  }
}

.c-dl-menu__btm {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 30px;
}

.c-dl-menu-btm__li {
  padding-right: 15px;
  margin-right: 15px;
  position: relative;
}

.c-dl-menu-btm__li:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 80%;
  background: #fff;
  top: 10%;
  right: 0;
}

.c-dl-menu-btm__li:last-child:before {
  display: none;
}

.c-dl-menu-btm__li a {
  transition: all .3s ease-in-out;
  position: relative;
}

.c-dl-menu-btm__li a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background: #fff;
  bottom: -3px;
  left: 0;
  opacity: 0;
  transition: all .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .c-dl-menu-btm__li a:hover:before {
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  .c-dl-menu__btm {
    display: flex;
    gap: 0 2em;
    text-align: center;
    margin-bottom: 30px;
  }

  .c-dl-menu-btm__li {
    padding-right: 0;
    margin-right: 0;
  }

  .c-dl-menu-btm__li a {
    padding-bottom: 0.25em;
    border-bottom: 1px solid;
    font-size: 1.2rem;
  }

  .c-dl-menu-btm__li:before {
    display: none;
  }

  .c-dl-menu-btm__li:last-child:before {
    display: none;
  }
}

.c-dl-menu__copy {
  text-align: center;
}

/*-- c-circle --*/
.c-circle:before {
  position: absolute;
  content: "";
  width: 1500px;
  height: 1500px;
  top: 300px;
  left: 0;
  transform: translateX(-30%);
  border: 100px solid #fcf3c0;
  z-index: -2;
  border-radius: 100%;
}

@media screen and (max-width: 1500px) {
  .c-circle:before {
    width: calc((1700 / 1920) * 100vw);
    height: calc((1700 / 1920) * 100vw);
    top: calc((200 / 1500) * 100vw);
    transform: translateX(-50%);
    border: calc((100 / 1500) * 100vw) solid #fcf3c0;
  }
}

@media screen and (max-width: 960px) {
  .c-circle:before {
    width: calc((850 / 960) * 100vw);
    height: calc((850 / 960) * 100vw);
    top: calc((128 / 960) * 100vw);
    transform: translateX(-50%);
    border: calc((64 / 960) * 100vw) solid #fcf3c0;
    left: calc((128 / 960) * 100vw);
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 796px) {
  .c-circle:before {
    width: 120vw;
    height: 120vw;
  }
}

.c-circle02:after {
  position: absolute;
  content: "";
  width: 1000px;
  height: 1000px;
  border: 100px solid #e6f3f8;
  top: -50px;
  right: -100px;
  z-index: -1;
  border-radius: 100%;
}

@media screen and (max-width: 1500px) {
  .c-circle02:after {
    width: calc((1200 / 1920) * 100vw);
    height: calc((1200 / 1920) * 100vw);
    border: calc((100 / 1500) * 100vw) solid #e6f3f8;
  }
}

@media screen and (max-width: 960px) {
  .c-circle02:after {
    width: calc((600 / 960) * 100vw);
    height: calc((600 / 960) * 100vw);
    border: calc((64 / 960) * 100vw) solid #e6f3f8;
  }
}

@media screen and (max-width: 769px) {
  .c-circle02:after {
    width: 90vw;
    height: 90vw;
    border: calc((64 / 769) * 100vw) solid #e6f3f8;
    top: -50px;
  }
}

/*---------- project ----------*/
/* Index
-------------- */
/*----- Main Visual -----*/
.p-mv {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
}

.p-mv:before {
  position: absolute;
  content: "";
  width: calc((891 / 1920) * 100vw);
  height: calc((560 / 1920) * 100vw);
  left: -100px;
  bottom: -20px;
  background: url("images/mv-obj-logo.png") no-repeat 0 0;
  background-size: calc((891 / 1920) * 100vw) calc((560 / 1920) * 100vw);
  z-index: 1;
  animation: translate 0.5s ease-in-out 4.5s forwards;
  opacity: 0;
}

.p-mv-slider__item {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: relative;
}

.p-mv-slider__item:before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  /* Safariで安定するグラデ */
  background: linear-gradient(145deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.8) 12%,
      rgba(255, 255, 255, 0.0) 22%);

  pointer-events: none;
  z-index: 2;
  /* 明示推奨 */
}

.p-mv-slider__item img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
}

.p-mv-obj {
  width: 100%;
  height: 100vh;
  height: 100svh;
  animation: translate 0.5s ease-in-out 5.0s forwards;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}

.p-mv-obj__img {
  position: absolute;
  background: rgba(255, 255, 255, 0.5);
}

.obj01 {
  width: calc((114 / 1920) * 100vw);
  height: calc((114 / 1920) * 100vw);
  border-radius: 100%;
  top: 50%;
  left: 10%;
}

.obj02 {
  width: 130px;
  height: 130px;
  width: calc((130 / 1920) * 100vw);
  height: calc((130 / 1920) * 100vw);
  border-radius: 10px;
  transform: rotate(45deg);
  top: 10%;
  left: 30%;
}

.obj03 {
  width: 225px;
  height: 225px;
  width: calc((225 / 1920) * 100vw);
  height: calc((225 / 1920) * 100vw);
  border-radius: 10px;
  transform: rotate(45deg);
  bottom: 10%;
  right: 30%;
}

.obj04 {
  width: 265px;
  height: 265px;
  width: calc((265 / 1920) * 100vw);
  height: calc((265 / 1920) * 100vw);
  border-radius: 265px;
  top: 50%;
  right: 4%;
  transform: translateY(-50%);
}

@media screen and (max-width: 1300px) {
  .p-mv:before {
    width: calc((1113 / 1920) * 100vw);
    height: calc((700 / 1920) * 100vw);
    left: -50px;
    bottom: -10px;
    background: url("images/mv-obj-logo.png") no-repeat 0 0;
    background-size: calc((1113 / 1920) * 100vw) calc((700 / 1920) * 100vw);
  }

  .obj01 {
    width: calc((148 / 1920) * 100vw);
    height: calc((148 / 1920) * 100vw);
  }

  .obj02 {
    width: calc((169 / 1920) * 100vw);
    height: calc((169 / 1920) * 100vw);
  }

  .obj03 {
    width: calc((292 / 1920) * 100vw);
    height: calc((292 / 1920) * 100vw);
  }

  .obj04 {
    width: calc((344 / 1920) * 100vw);
    height: calc((344 / 1920) * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .p-mv:before {
    width: calc((1271 / 1920) * 100vw);
    height: calc((800 / 1920) * 100vw);
    left: -50px;
    bottom: -10px;
    background: url("images/mv-obj-logo.png") no-repeat 0 0;
    background-size: calc((1271 / 1920) * 100vw) calc((800 / 1920) * 100vw);
  }

  .obj01 {
    width: calc((192 / 1920) * 100vw);
    height: calc((192 / 1920) * 100vw);
  }

  .obj02 {
    width: calc((219 / 1920) * 100vw);
    height: calc((219 / 1920) * 100vw);
  }

  .obj03 {
    width: calc((379 / 1920) * 100vw);
    height: calc((379 / 1920) * 100vw);
  }

  .obj04 {
    width: calc((447 / 1920) * 100vw);
    height: calc((447 / 1920) * 100vw);
  }
}

@media screen and (max-width: 767px) {
  .p-mv:before {
    width: calc((769 / 769) * 100vw);
    height: calc((483 / 769) * 100vw);
    left: -50px;
    bottom: calc((100vw - 40px) * 0.38);
    background: url("images/mv-obj-logo.png") no-repeat 0 0;
    background-size: calc((769 / 769) * 100vw) calc((483 / 769) * 100vw);
  }

  .p-mv-slider__item:before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    background: linear-gradient(140deg,
        rgba(255, 255, 255, 0.90) 0%,
        rgba(255, 255, 255, 0.78) 12%,
        rgba(255, 255, 255, 0.00) 24%);
  }

  .obj01 {
    width: calc((150 / 769) * 100vw);
    height: calc((150 / 769) * 100vw);
    top: 40%;
    left: -5%;
  }

  .obj02 {
    width: calc((130 / 769) * 100vw);
    height: calc((130 / 769) * 100vw);
    top: 15%;
    left: 10%;
  }

  .obj03 {
    width: calc((250 / 769) * 100vw);
    height: calc((250 / 769) * 100vw);
    right: 5%;
  }

  .obj04 {
    width: calc((200 / 769) * 100vw);
    height: calc((200 / 769) * 100vw);
    top: 40%;
    right: -10%;
  }
}

@media screen and (max-width: 450px) {
  .obj01 {
    width: calc((170 / 769) * 100vw);
    height: calc((170 / 769) * 100vw);
    top: 50%;
  }

  .obj02 {
    width: calc((160 / 769) * 100vw);
    height: calc((160 / 769) * 100vw);
    top: 20%;
  }

  .obj03 {
    width: calc((300 / 769) * 100vw);
    height: calc((300 / 769) * 100vw);
    bottom: 20%;
    right: 10%;
  }

  .obj04 {
    width: calc((220 / 769) * 100vw);
    height: calc((220 / 769) * 100vw);
  }
}

.p-mv-catch {
  position: absolute;
  left: 150px;
  bottom: 150px;
  z-index: 2;
  animation: translate 0.5s ease-in-out 5.0s forwards;
  opacity: 0;
}

.p-mv-catch__txt {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
  text-shadow: 1px 1px 10px #fff, -1px 1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff;
}

.p-mv-catch__copy {
  font-size: 7.7rem;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 1px 1px 10px #fff, -1px 1px 10px #fff, 1px -1px 10px #fff, -1px -1px 10px #fff;
}

@media screen and (max-width: 1500px) {
  .p-mv-catch {
    left: 75px;
    bottom: 75px;
  }

  .p-mv-catch__txt {
    font-size: 2.8rem;
  }

  .p-mv-catch__copy {
    font-size: 7.0rem;
  }
}

@media screen and (max-width: 1300px) {
  .p-mv-catch {
    left: 50px;
    bottom: 50px;
  }

  .p-mv-catch__txt {
    font-size: 2.5rem;
  }

  .p-mv-catch__copy {
    font-size: 6.5rem;
  }
}

@media screen and (max-width: 1150px) {
  .p-mv-catch__txt {
    font-size: 2.0rem;
  }

  .p-mv-catch__copy {
    font-size: 6.0rem;
  }
}

@media screen and (max-width: 960px) {
  .p-mv-catch__txt {
    font-size: 1.6rem;
  }

  .p-mv-catch__copy {
    font-size: 5.0rem;
  }
}

@media screen and (max-width: 767px) {
  .p-mv-catch {
    left: 20px;
    bottom: 190px;
  }

  .p-mv-catch__copy {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 420px) {
  .p-mv-catch {
    bottom: calc(((100vw - 40px) * 0.38) + 50px);
  }
}

.p-mv-bnr {
  position: fixed;
  width: 470px;
  height: 180px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .p-mv-bnr:hover {
    opacity: 0.8;
  }
}

.p-mv-bnr.hidden {
  opacity: 0;
  display: none;
}

.p-mv-bnr__close {
  position: absolute;
  width: 29px;
  height: 29px;
  background: #d8d8d8;
  top: -10px;
  right: -10px;
  border-radius: 29px;
  cursor: pointer;
}

.p-mv-bnr__close:before {
  position: absolute;
  content: "";
  width: 11px;
  height: 1px;
  background: #65361a;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.p-mv-bnr__close:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 1px;
  background: #65361a;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}

@media screen and (max-width: 1500px) {
  .p-mv-bnr {
    width: 400px;
    height: auto;
  }
}

@media screen and (max-width: 1300px) {
  .p-mv-bnr {
    width: 300px;
  }
}

@media screen and (max-width: 960px) {
  .p-mv-bnr {
    width: 250px;
  }
}

@media screen and (max-width: 767px) {
  .p-mv-bnr {
    width: 100%;
    max-width: 400px;
    padding: 0 20px;
    right: inherit;
    left: 50%;
    bottom: 20px;
    transform: translateX(-50%);
  }

  .p-mv-bnr__close {
    right: 10px;
  }
}

/* ----- Top COMPANY -----*/
.p-tp-company {
  position: relative;
}

.p-tp-company:before {
  position: absolute;
  content: "";
  width: 1500px;
  height: 1500px;
  top: 200px;
  left: 0;
  transform: translateX(-50%);
  border: 100px solid #fcf3c0;
  z-index: -2;
  border-radius: 100%;
}

.p-tp-company:after {
  position: absolute;
  content: "";
  width: 1000px;
  height: 1000px;
  border: 100px solid #e6f3f8;
  top: 50px;
  left: 360px;
  z-index: -1;
  border-radius: 100%;
}

.p-tp-company__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: var(--cont_margin-block02);
}

.p-tp-company-info {
  width: 40%;
}

.p-tp-company-img {
  width: 60%;
  margin-right: calc(var(--cont_margin-inline) * -1);
}

.p-tp-company-img img {
  border-radius: 70px 0 0 70px;
}

@media screen and (max-width: 1500px) {
  .p-tp-company:before {
    width: calc((1700 / 1920) * 100vw);
    height: calc((1700 / 1920) * 100vw);
    top: calc((200 / 1500) * 100vw);
    transform: translateX(-50%);
    border: calc((100 / 1500) * 100vw) solid #fcf3c0;
  }

  .p-tp-company:after {
    width: calc((1200 / 1920) * 100vw);
    height: calc((1200 / 1920) * 100vw);
    border: calc((100 / 1500) * 100vw) solid #e6f3f8;
    top: calc((50 / 1500) * 100vw);
    left: calc((360 / 1500) * 100vw);
  }
}

@media screen and (max-width: 960px) {
  .p-tp-company:before {
    width: calc((850 / 960) * 100vw);
    height: calc((850 / 960) * 100vw);
    top: calc((128 / 960) * 100vw);
    transform: translateX(-50%);
    border: calc((64 / 960) * 100vw) solid #fcf3c0;
    left: calc((128 / 960) * 100vw);
    transform: translateX(-50%);
  }

  .p-tp-company:after {
    width: calc((600 / 960) * 100vw);
    height: calc((600 / 960) * 100vw);
    border: calc((64 / 960) * 100vw) solid #e6f3f8;
    top: calc((32 / 960) * 100vw);
    left: calc((320 / 960) * 100vw);
  }

  .p-tp-company__inner {
    display: block;
  }

  .p-tp-company-info {
    width: 100%;
    margin-bottom: var(--cont_margin-block);
  }

  .p-tp-company-img {
    width: calc(100% + calc(var(--cont_margin-inline)));
  }

  .p-tp-company-img img {
    border-radius: 50px 0 0 50px;
  }
}

@media screen and (max-width: 767px) {
  .p-tp-company__inner {
    padding: 0 0 var(--cont_margin-block02);
  }

  .p-tp-company-info {
    margin-bottom: var(--cont_margin-block);
  }

  .p-tp-company-img img {
    border-radius: 30px 0 0 30px;
  }
}

.p-tp-company-gallery {
  position: relative;
  width: 100vw;
  height: 40.6vw;
  margin-bottom: var(--cont_margin-block);
}

.p-tp-company-gallery p {
  position: absolute;
}

.p-tp-company-gallery img {
  border-radius: 30px;
  width: 100%;
  height: auto;
}

.p-tp-company-gallery__img01 {
  width: 23%;
  top: 42%;
  left: -5%;
}

.p-tp-company-gallery__img02 {
  width: 17.6%;
  top: 4%;
  left: 13.3%;
}

.p-tp-company-gallery__img03 {
  width: 26.9%;
  top: 49.4%;
  left: 22.3%;
}

.p-tp-company-gallery__img04 {
  width: 33.9%;
  top: 0%;
  left: 53.4%;
}

.p-tp-company-gallery__img05 {
  width: 17.6%;
  top: 68.8%;
  left: 78.4%;
}

.p-tp-company-gallery__img06 {
  width: 17.6%;
  top: 13.3%;
  left: 91.6%;
}

@media screen and (max-width: 1300px) {
  .p-tp-company-gallery {
    height: 50vw;
  }

  .p-tp-company-gallery img {
    border-radius: 20px;
  }

  .p-tp-company-gallery__img03 {
    top: 55.4%;
  }
}

@media screen and (max-width: 960px) {
  .p-tp-company-gallery {
    height: 60vw;
  }

  .p-tp-company-gallery__img01 {
    top: 35%;
  }

  .p-tp-company-gallery__img03 {
    width: 36.9%;
  }

  .p-tp-company-gallery__img04 {
    left: 43.4%;
  }

  .p-tp-company-gallery__img05 {
    width: 25.6%;
    top: 58.8%;
    left: 68.4%;
  }

  .p-tp-company-gallery__img06 {
    width: 20.6%;
    left: 85.6%;
  }
}

@media screen and (max-width: 767px) {
  .p-tp-company-gallery img {
    border-radius: 10px;
  }

  .p-tp-company-gallery__img02 {
    width: 20.6%;
    left: 15.3%;
  }

  .p-tp-company-gallery__img03 {
    top: 50.4%;
  }

  .p-tp-company-gallery__img05 {
    top: 48.8%;
  }
}

/* ----- Top Service -----*/
/* Contents */
.p-tp-service {
  margin: 0 var(--sec_margin-inline);
  background: url("images/page-obj03.png") no-repeat right 0 #f3f6fa;
  background-size: 50%;
  border-radius: 70px;
  padding: calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  position: relative;
}

.p-tp-service:before {
  position: absolute;
  content: "";
  width: 295px;
  height: 65px;
  background: url("images/page-obj05.png") no-repeat 0 0;
  background-size: cover;
  top: 0;
  left: calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  transform: translateY(-50%);
}

.p-tp-service-cont {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-tp-service-cont__img {
  width: 47.5%;
}

.p-tp-service-cont__img img {
  border-radius: 40px;
}

.p-tp-service-info {
  width: 47.5%;
}

.p-tp-service-info-ttl {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-direction: row-reverse;
  margin-bottom: 30px;
}

.p-tp-service-info__ttl {
  font-size: 3.6rem;
  font-weight: 700;
}

@media screen and (max-width: 1500px) {
  .p-tp-service-info-ttl {
    display: block;
  }

  .p-tp-service-info .p-tp-service-info__en {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1300px) {
  .p-tp-service {
    padding: 100px calc(var(--cont_margin-inline));
  }
}

@media screen and (max-width: 960px) {
  .p-tp-service {
    background: url("images/page-obj03.png") no-repeat right 0 #f3f6fa;
    background-size: 75%;
    border-radius: 30px;
    padding: 70px var(--cont_margin-inline));
  }

  .p-tp-service:before {
    width: 236px;
    height: 52px;
  }

  .p-tp-service-cont {
    display: block;
  }

  .p-tp-service-cont__img {
    width: 100%;
    margin-bottom: 50px;
  }

  .p-tp-service-info {
    width: 100%;
  }

  .p-tp-service-info-ttl {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-tp-service {
    background: url("images/page-obj03.png") no-repeat right 0 #f3f6fa;
    background-size: 80%;
    padding: 50px var(--sec_margin-inline);
    border-radius: 20px;
  }

  .p-tp-service:before {
    width: 160px;
    height: 35px;
    left: var(--sec_margin-inline);
  }

  .p-tp-service-cont__img {
    margin-bottom: 30px;
  }

  .p-tp-service-cont__img img {
    border-radius: 20px;
  }

  .p-tp-service-info-ttl {
    margin-bottom: 10px;
  }

  .p-tp-service-info__ttl {
    font-size: 2.2rem;
  }
}


/* ----- Top recruit -----*/
/* Contents */
.p-tp-recruit {
  margin: 0 var(--sec_margin-inline);
  background: #f3f6fa;
  border-radius: 70px;
  padding: 40px 40px 150px;
  position: relative;
}

.p-tp-recruit-gallery {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 25px;
  margin-bottom: 100px;
}

.p-tp-recruit-gallery__img img {
  border-radius: 50px;
}

.p-tp-recruit__en,
.p-tp-recruit__ttl,
.p-tp-recruit__lead {
  text-align: center;
}

.p-tp-recruit__btn {
  margin: 0 auto var(--cont_margin-block02);
}

@media screen and (max-width: 1500px) {
  .p-tp-recruit {
    border-radius: 50px;
  }

  .p-tp-recruit-gallery {
    margin-bottom: 70px;
  }

  .p-tp-recruit-gallery__img img {
    border-radius: 30px;
  }
}

@media screen and (max-width: 960px) {
  .p-tp-recruit {
    border-radius: 30px;
    padding: 30px;
  }

  .p-tp-recruit-gallery__img img {
    border-radius: 20px;
  }
}

@media screen and (max-width: 769px) {
  .p-tp-recruit {
    padding: 20px;
    border-radius: 20px;
  }

  .p-tp-recruit-gallery {
    column-gap: 10px;
    margin-bottom: 30px;
  }

  .p-tp-recruit-gallery__img img {
    border-radius: 10px;
  }
}

.p-tp-recruit-bnr {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 30px;
  max-width: 1620px;
  margin: 0 auto;
}

.p-tp-recruit-bnr-link {
  border-radius: 30px;
  position: relative;
  width: 100%;
  height: 280px;
}

.p-tp-recruit-bnr-link:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: #ffb400;
  opacity: 0.5;
  top: 0;
  left: 0;
  transition: all .3s ease-in-out;
  border-radius: 30px;
}

.p-tp-recruit-bnr-link:hover:before {
  opacity: 0.8;
}

.p-tp-recruit-bnr-link:after {
  position: absolute;
  font-size: 5.0rem;
  color: #fff;
  top: -35px;
  left: -10px;
  width: calc(100% + 20px);
  text-align: center;
  line-height: 1.0;
  height: 35px;
  overflow: hidden;
}

.p-tp-recruit-bnr-link.-new {
  background: url("images/tp-recruit-bnr01.jpg") no-repeat center center;
  background-size: cover;
  z-index: 1;
}

.p-tp-recruit-bnr-link.-new:after {
  content: "NEW GRADUATE";
}

.p-tp-recruit-bnr-link.-mid {
  background: url("images/tp-recruit-bnr02.jpg") no-repeat center center;
  background-size: cover;
}

.p-tp-recruit-bnr-link.-mid:after {
  content: "MID CAREER";
}

.p-tp-recruit-bnr-link.-int {
  background: url("images/tp-recruit-bnr03.jpg") no-repeat center center;
  background-size: cover;
}

.p-tp-recruit-bnr-link.-int:after {
  content: "INTERNSHIP";
}

.p-tp-recruit-bnr-link * {
  color: #fff;
  line-height: 1.4;
}

.p-tp-recruit-bnr-link a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  height: 280px;
  padding-left: 50px;
}

.p-tp-recruit-bnr-link a:before {
  position: absolute;
  content: "";
  width: 90px;
  height: 90px;
  border: 1px solid #fff;
  border-radius: 90px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.p-tp-recruit-bnr-link a:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  top: 50%;
  right: 70px;
  transform: translateY(-50%) rotate(135deg);
  transition: all .3s ease-in-out;
}

@media (hover: hover) and (pointer: fine) {
  .p-tp-recruit-bnr-link a:hover:before {
    right: 20px;
  }

  .p-tp-recruit-bnr-link a:hover:after {
    right: 60px;
  }
}

.p-tp-recruit-bnr-link__en {
  font-size: 1.7rem;
  margin-bottom: 5px;
}

.p-tp-recruit-bnr-link__jp {
  font-weight: 700;
  font-size: 4.0rem;
  margin-bottom: 10px;
}

.p-tp-recruit-bnr-link__txt {
  font-size: 2.0rem;
}

@media screen and (max-width: 1600px) {
  .p-tp-recruit-bnr {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 20px;
    max-width: 1620px;
    margin: 0 auto;
  }

  .p-tp-recruit-bnr-link {
    border-radius: 30px;
    position: relative;
    width: 100%;
    height: 280px;
  }

  .p-tp-recruit-bnr-link:before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    background: #ffb400;
    opacity: 0.5;
    top: 0;
    left: 0;
    transition: all .3s ease-in-out;
    border-radius: 30px;
  }

  .p-tp-recruit-bnr-link:hover:before {
    opacity: 0.8;
  }

  .p-tp-recruit-bnr-link:after {
    font-size: 4.0rem;
    top: -30px;
    left: -10px;
    width: calc(100% + 20px);
    height: 30px;
  }

  .p-tp-recruit-bnr-link.-new {
    background: url("images/tp-recruit-bnr01.jpg") no-repeat center center;
    background-size: cover;
    z-index: 1;
  }

  .p-tp-recruit-bnr-link.-new:after {
    content: "NEW GRADUATE";
  }

  .p-tp-recruit-bnr-link.-mid {
    background: url("images/tp-recruit-bnr02.jpg") no-repeat center center;
    background-size: cover;
  }

  .p-tp-recruit-bnr-link.-mid:after {
    content: "MID CAREER";
  }

  .p-tp-recruit-bnr-link.-int {
    background: url("images/tp-recruit-bnr03.jpg") no-repeat center center;
    background-size: cover;
  }

  .p-tp-recruit-bnr-link.-int:after {
    content: "INTERNSHIP";
  }

  .p-tp-recruit-bnr-link * {
    color: #fff;
    line-height: 1.4;
  }

  .p-tp-recruit-bnr-link a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    height: 280px;
    padding-left: 30px;
  }

  .p-tp-recruit-bnr-link a:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 90px;
    border: 1px solid #fff;
    border-radius: 90px;
    top: 50%;
    right: 30px;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
  }

  .p-tp-recruit-bnr-link a:after {
    position: absolute;
    content: "";
    width: 11px;
    height: 11px;
    border: 1px solid #fff;
    border-right: none;
    border-bottom: none;
    top: 50%;
    right: 70px;
    transform: translateY(-50%) rotate(135deg);
    transition: all .3s ease-in-out;
  }

  .p-tp-recruit-bnr-link__en {
    font-size: 1.5rem;
  }

  .p-tp-recruit-bnr-link__jp {
    font-size: 3.0rem;
  }

  .p-tp-recruit-bnr-link__txt {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1500px) {
  .p-tp-recruit-bnr-link {
    height: 220px;
  }

  .p-tp-recruit-bnr-link a {
    height: 220px;
  }

  .p-tp-recruit-bnr-link__en {
    font-size: 1.4rem;
  }

  .p-tp-recruit-bnr-link__jp {
    font-size: 3.0rem;
  }

  .p-tp-recruit-bnr-link__txt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1300px) {
  .p-tp-recruit-bnr {
    column-gap: 15px;
  }

  .p-tp-recruit-bnr-link {
    border-radius: 20px;
    height: 200px;
  }

  .p-tp-recruit-bnr-link:before {
    border-radius: 20px;
  }

  .p-tp-recruit-bnr-link a {
    height: 200px;
    padding-left: 20px;
  }

  .p-tp-recruit-bnr-link a:before {
    width: 70px;
    height: 70px;
    right: 20px;
  }

  .p-tp-recruit-bnr-link a:after {
    right: 51px;
  }

  @media (hover: hover) and (pointer: fine) {
    .p-tp-recruit-bnr-link a:hover:before {
      right: 15px;
    }

    .p-tp-recruit-bnr-link a:hover:after {
      right: 46px;
    }
  }

  .p-tp-recruit-bnr-link__en {
    font-size: 1.0rem;
  }

  .p-tp-recruit-bnr-link__jp {
    font-size: 2.6rem;
  }

  .p-tp-recruit-bnr-link__txt {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1250px) {
  .p-tp-recruit-bnr-link:after {
    font-size: 3.0rem;
    top: -25px;
    height: 25px;
  }
}

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

  .p-tp-recruit-bnr-link a:before,
  .p-tp-recruit-bnr-link a:after {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .p-tp-recruit-bnr {
    display: block;
    max-width: 800px;
  }

  .p-tp-recruit-bnr-link {
    margin-bottom: 50px;
  }

  .p-tp-recruit-bnr-link:last-child {
    margin-bottom: 0;
  }

  .p-tp-recruit-bnr-link:after {
    font-size: 3.5rem;
    top: -30px;
    height: 30px;
  }

  .p-tp-recruit-bnr-link a:before,
  .p-tp-recruit-bnr-link a:after {
    display: block;
  }
}

@media screen and (max-width: 769px) {
  .p-tp-recruit-bnr-link {
    border-radius: 10px;
    height: 130px;
    margin-bottom: 40px;
  }

  .p-tp-recruit-bnr-link:before {
    border-radius: 10px;
  }

  .p-tp-recruit-bnr-link:after {
    font-size: 3.0rem;
    top: -23px;
    height: 23px;
  }

  .p-tp-recruit-bnr-link a {
    display: block;
    position: relative;
    height: 130px;
    padding: 20px;
    text-align: center;
  }

  .p-tp-recruit-bnr-link a:before {
    display: none;
    position: absolute;
    content: "";
    width: 70px;
    height: 70px;
    border: 1px solid #fff;
    border-radius: 90px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    transition: all .3s ease-in-out;
  }

  .p-tp-recruit-bnr-link a:after {
    display: none;
  }

  .p-tp-recruit-bnr-link span {
    display: block;
  }

  .p-tp-recruit-bnr-link__ttl {
    border-right: none;
    border-bottom: 1px solid #fff;
    margin-right: 0;
    margin-bottom: 10px;
  }
}

/* ----- Top News -----*/
/* Contents */
.p-tp-news {
  margin-block: var(--cont_margin-block);
}

.p-tp-news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}

.p-tp-news-header__ttl {
  font-size: 4.4rem;
  line-height: 1.0;
}

.p-tp-news-header__en {
  font-size: 7.7rem;
  line-height: 1.0;
}

.p-tp-news-header__jp {
  margin-left: 50px;
  font-size: 1.8rem;
  color: var(--c-primary);
  line-height: 1.0;
}

.p-tp-news-tab {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.p-tp-news-tab li {
  width: 200px;
  border-right: 1px solid var(--c-primary);
  margin-right: 1px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all .3s ease-in-out;
}

.p-tp-news-tab li.active {
  border-right: 1px solid #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 50px;
  color: #fff;
  font-weight: 700;
  background: var(--c-primary);
  border-radius: 5px;
}

.p-tp-news-tab li:has(+ .active),
.p-tp-news-tab li:has(+ :hover) {
  border-right: none;
}

.p-news-list {
  border-top: 1px solid #d8d8d8;
  display: none;
}

.p-news-list.active {
  border-top: 1px solid #d8d8d8;
  display: block;
}

.p-news-list-item {
  border-bottom: 1px solid #d8d8d8;
}

.p-news-list-item a {
  padding: 30px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: all .3s ease-in-out;
}

.p-news-list-item a:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
  background: var(--c-primary);
  border-radius: 100%;
  transition: all .3s ease-in-out;
}

.p-news-list-item__img {
  width: 180px;
  height: auto;
  aspect-ratio: 9 / 7;
  margin-right: 50px;
}

.p-news-list-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.p-news-list-item-cont {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: calc(100% - 230px);
}

.p-news-list-item-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.p-news-list-item-info__date {
  color: var(--c-primary);
  font-size: 1.6rem;
  width: 120px;
}

.p-news-list-item-info__cat {
  width: 170px;
  margin-right: 20px;
}

.p-news-list-item-info__cat span {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  padding: 6px 20px;
  font-size: 1.3rem;
  border-radius: 30px;
  line-height: 1.4;
  margin: 3px 5px 3px 0;
}

.p-news-list-item__ttl {
  font-size: 2.2rem;
}

@media (hover: hover) and (pointer: fine) {
  .p-tp-news-tab li:hover {
    border-right: 1px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 50px;
    color: #fff;
    font-weight: 700;
    background: var(--c-primary);
    border-radius: 5px;
  }

  .p-news-list-item a:hover {
    background: #f3f6fa;
  }

  .p-news-list-item a:hover:before {
    right: 20px;
  }
}

@media screen and (max-width: 1500px) {
  .p-tp-news-header__ttl {
    font-size: 3.5rem;
  }

  .p-tp-news-header__en {
    font-size: 6.0rem;
  }

  .p-tp-news-header__jp {
    margin-left: 20px;
    font-size: 1.6rem;
  }

  .p-news-list-item a {
    padding: 20px 30px 20px 20px;
  }

  .p-news-list-item a:before {
    right: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .p-tp-news-header__ttl {
    font-size: 3.0rem;
  }

  .p-tp-news-header__en {
    font-size: 5.5rem;
  }

  .p-news-list-item-cont {
    display: block;
  }
}

@media screen and (max-width: 960px) {
  .p-tp-news__inner {
    margin-bottom: 50px;
  }

  .p-tp-news-header {
    margin-bottom: 50px;
  }

  .p-tp-news-header__ttl {
    font-size: 3.2rem;
  }

  .p-tp-news-header__en {
    font-size: 5.0rem;
  }

  .p-news-list-item__img {
    width: 150px;
    margin-right: 30px;
  }

  .p-news-list-item-cont {
    width: calc(100% - 180px);
  }

  .p-news-list-item-info__date {
    font-size: 1.4rem;
  }

  .p-news-list-item__ttl {
    font-size: 1.8rem;
  }

  .p-tp-news .c-btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .p-tp-news-header {
    display: block;
    margin-bottom: 30px;
  }

  .p-tp-news-header__ttl {
    font-size: 2.5rem;
  }

  .p-tp-news-header__en {
    font-size: 4.0rem;
    margin-bottom: 10px;
    display: inline-block;
  }

  .p-tp-news-header__jp {
    display: block;
  }

  .p-tp-news-tab {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .p-tp-news-tab li {
    width: inherit;
    margin-right: 5px;
    margin-bottom: 5px;
    height: 40px;
    font-weight: 700;
    cursor: pointer;
    padding: 0 10px;
    border-radius: 5px;
    border: 1px solid var(--c-primary);
  }

  .p-tp-news-tab li:hover {
    width: inherit;
    height: 40px;
  }

  .p-tp-news-tab li.active {
    width: inherit;
    height: 40px;
  }

  .p-tp-news-tab li:has(+ .active),
  .p-tp-news-tab li:has(+ :hover) {
    border: 1px solid var(--c-primary);
  }

  .p-news-list-item a {
    padding: 20px;
  }

  .p-news-list-item a:before {
    right: 0;
  }

  .p-news-list-item__img {
    width: 130px;
    margin-right: 20px;
  }

  .p-news-list-item-cont {
    width: calc(100% - 150px);
  }

  .p-news-list-item-info {
    margin-bottom: 0.25em;
  }

  .p-news-list-item-info__date {
    font-size: 1.2rem;
    width: 90px;
  }

  .p-news-list-item-info__cat {
    /* width: calc(100% - 90px); */
    width: auto;
  }

  .p-news-list-item-info__cat span {
    margin: 0;
    padding: 3px 12px;
    font-size: 1.1rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-self: center;

  }

  .p-news-list-item__ttl {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

@media screen and (max-width: 450px) {
  .p-tp-news-tab {
    margin-bottom: 20px;
  }

  .p-news-list-item a {
    display: block;
  }

  .p-news-list-item a:before {
    display: none;
  }

  .p-news-list-item__img {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 5 / 3.5;
    margin: 0 auto 10px;
  }

  .p-news-list-item-cont {
    width: 100%;
  }

  .p-news-list-item-info {
    margin-bottom: 0.25em;
  }

  .p-news-list-item__ttl {
    font-size: 1.5rem;
  }
}

/* =================================================
下層ページ
================================================= */

/* セキュリティーポリシー
------------------------------------------------- */
.p-policy-cont {
  display: flex;
  justify-content: space-between;
}

.p-policy-group {
  margin-bottom: 50px;
}

.p-policy-cont__num {
  width: 30px;
  padding: 5px 10px 0 0;
  margin-right: 10px;
  position: relative;
  font-size: 2.0rem;
  line-height: 1.0;
}

.p-policy-cont__num:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: var(--c-primary);
  top: 14px;
  right: 0;
}

.p-policy-cont-info {
  width: calc(100% - 40px);
}

.p-policy-cont-info__ttl {
  margin-bottom: 10px;
  font-size: 2.0rem;
}

.p-policy-cont-info__txt:not(:last-child) {
  margin-bottom: 30px;
}

.p-policy-cont-sub {
  margin-bottom: 50px;
}

.p-policy-cont-sub:last-child {
  margin-bottom: 0;
}

.p-policy-cont-sub__ttl {
  padding: 0 0 10px 20px;
  position: relative;
}

.p-policy-cont-sub__ttl:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 10px;
  left: 0;
  background: var(--c-primary);
  border-radius: 100%;
}

.p-policy-cont-sub__ul {
  margin-left: 15px;
}

.p-policy-sign {
  text-align: right;
  padding-top: 50px;
  margin-bottom: 100px;
}

.p-policy-caution {
  border-top: 1px solid #d8d8d8;
  border-bottom: 1px solid #d8d8d8;
  padding-top: 100px;
  padding-bottom: 100px;
}

.p-policy-caution__ttl {
  font-size: 2.4rem;
  margin-bottom: 10px;
}

.p-pmark__ttl {
  font-size: 2.0rem;
  margin-bottom: 15px;
}

.p-pmark__cont {
  margin-bottom: 25px;
}

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

.p-mark-detail {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  column-gap: 35px;
  margin-bottom: 25px;
}

.p-mark-detail__dl {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

.p-mark-detail__dl dt {
  width: 105px;
  border-right: 1px solid #d8d8d8;
  margin-right: 30px;
  margin-bottom: 15px;
}

.p-mark-detail__dl dd {
  width: calc(100% - 135px);
  margin-bottom: 15px;
}

.p-mark-detail__dl dd a {
  text-decoration-line: underline;
  transition: .8s;
}

.p-mark-detail__dl dd a:hover {
  text-decoration-line: none;
  color: var(--c-primary);
}

@media screen and (max-width: 767px) {
  .p-policy-group {
    margin-bottom: 30px;
  }

  .p-policy-cont__num {
    font-size: 1.4rem;
  }

  .p-policy-cont__num:before {
    top: 12px;
  }

  .p-policy-cont-info__ttl {
    font-size: 1.6rem;
  }

  .p-policy-cont-info__txt:not(:last-child) {
    margin-bottom: 10px;
  }

  .p-policy-cont-sub {
    margin-bottom: 20px;
  }

  .p-policy-cont-sub__ttl {
    padding: 0 0 5px 20px;
  }

  .p-policy-cont-sub__ttl:before {
    top: 8px;
  }

  .p-policy-sign {
    margin-bottom: 30px;
  }

  .p-policy-caution {
    padding-top: 30px;
    padding-bottom: 30px;
  }

  .p-policy-caution__ttl {
    font-size: 1.6rem;
  }

  .p-pmark__ttl {
    font-size: 1.6rem;
  }

  .p-pmark__cont {
    font-size: 1.4rem;
  }

  .p-mark-detail {
    display: block;
  }

  .p-mark-detail__img {
    margin-bottom: 20px;
  }

  .p-mark-detail__dl dt {
    width: 70px;
    border-right: 1px solid #d8d8d8;
    margin-right: 10px;
    margin-bottom: 15px;
  }

  .p-mark-detail__dl dd {
    width: calc(100% - 95px);
    margin-bottom: 15px;
  }
}


/* 採用情報
------------------------------------------------- */
/*-- recruit-mv --*/
.recruit-mv {
  background: #e7f8fe;
  width: 100%;
  height: 56.25vw;
  position: relative;
  z-index: 1;
  animation: translate 0.5s ease-in-out 0.5s forwards;
  opacity: 0;
}

.recruit-mv__inner {
  width: 100%;
  height: 56.25vw;
  position: relative;
}

.recruit-mv__img {
  position: absolute;
  overflow: hidden;
  /* マスク用に必須 */
  border-radius: 20px;
  /* 角丸の調整 */
  transform: rotate(45deg);
  /* 親を45°回転 */
  transform-origin: center center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.recruit-mv__img img {
  /*width: 141.42%;*/
  /* √2倍して親にフィット */
  max-width: 141.42%;
  height: 141.42%;
  transform: rotate(-45deg);
  object-fit: cover;
  /* はみ出た部分をカバー */
}

.recruit-mv__obj {
  position: absolute;
}

.recruit-mv__img.img01 {
  width: calc((874 / 1920) * 100vw);
  height: calc((874 / 1920) * 100vw);
  width: calc((640 / 1920) * 100vw);
  height: calc((640 / 1920) * 100vw);
  top: 26.5%;
  left: 5%;
  /*animation: translate 0.5s ease-in-out 0.5s forwards;
  opacity: 0;*/
}

.recruit-mv__img.img02 {
  width: calc((506 / 1920) * 100vw);
  height: calc((506 / 1920) * 100vw);
  width: calc((371 / 1920) * 100vw);
  height: calc((371 / 1920) * 100vw);
  top: 10.5%;
  left: 41%;
  /*animation: translate 0.5s ease-in-out 1.0s forwards;
  opacity: 0;*/
}

.recruit-mv__img.img03 {
  width: calc((627 / 1920) * 100vw);
  height: calc((627 / 1920) * 100vw);
  width: calc((460 / 1920) * 100vw);
  height: calc((460 / 1920) * 100vw);
  top: 55.7%;
  left: 50.5%;
  /*animation: translate 0.5s ease-in-out 1.5s forwards;
  opacity: 0;*/
}

.recruit-mv__img.img04 {
  width: calc((361 / 1920) * 100vw);
  height: calc((361 / 1920) * 100vw);
  width: calc((265 / 1920) * 100vw);
  height: calc((265 / 1920) * 100vw);
  top: 26.7%;
  right: 16.1%;
  /*animation: translate 0.5s ease-in-out 2.0s forwards;
  opacity: 0;*/
}

.recruit-mv__img.img05 {
  width: calc((341 / 1920) * 100vw);
  height: calc((341 / 1920) * 100vw);
  width: calc((250 / 1920) * 100vw);
  height: calc((250 / 1920) * 100vw);
  top: 53.7%;
  right: 3%;
  /*animation: translate 0.5s ease-in-out 2.5s forwards;
  opacity: 0;*/
}

.recruit-mv__img.img06 {
  width: calc((361 / 1920) * 100vw);
  height: calc((361 / 1920) * 100vw);
  width: calc((265 / 1920) * 100vw);
  height: calc((265 / 1920) * 100vw);
  top: 8.6%;
  right: -5.9%;
  /*animation: translate 0.5s ease-in-out 3.0s forwards;
  opacity: 0;*/
}

.recruit-mv__obj.obj01 {
  width: calc((227 / 1920) * 100vw);
  height: calc((227 / 1920) * 100vw);
  border-radius: 10px;
  top: inherit;
  bottom: -7.8%;
  left: -9%;
  background: #daf2fb;
  animation: rotate 0.5s ease-in-out 3.5s forwards;
  opacity: 0;
}

.recruit-mv__obj.obj02 {
  width: calc((160 / 1920) * 100vw);
  height: calc((160 / 1920) * 100vw);
  border-radius: 10px;
  top: -0.5%;
  left: 30%;
  background: #fcf3c0;
  animation: rotate 0.5s ease-in-out 4.0s forwards;
  opacity: 0;
}

.recruit-mv__obj.obj03 {
  width: calc((180 / 1920) * 100vw);
  height: calc((180 / 1920) * 100vw);
  border-radius: 10px;
  top: inherit;
  bottom: -7.8%;
  left: 36.5%;
  background: #daf2fb;
  animation: rotate 0.5s ease-in-out 4.5s forwards;
  opacity: 0;
}

.recruit-mv__obj.obj04 {
  width: calc((108 / 1920) * 100vw);
  height: calc((108 / 1920) * 100vw);
  border-radius: 10px;
  top: 14%;
  right: 28.0%;
  background: #f8fcfd;
  animation: rotate 0.5s ease-in-out 5.0s forwards;
  opacity: 0;
}

.recruit-mv__obj.obj05 {
  width: calc((86 / 1920) * 100vw);
  height: calc((86 / 1920) * 100vw);
  border-radius: 10px;
  top: 36.5%;
  right: 4.5%;
  background: #fcf3c0;
  animation: rotate 0.5s ease-in-out 5.5s forwards;
  opacity: 0;
}

@media screen and (max-width: 769px) {
  .recruit-mv {
    height: 100vw;
  }

  .recruit-mv__inner {
    height: 100vw;
  }

  .recruit-mv__img {
    border-radius: 15px;
  }

  .recruit-mv__img.img01 {
    width: calc((370 / 769) * 100vw);
    height: calc((370 / 769) * 100vw);
    top: 31%;
    left: -1%;
  }

  .recruit-mv__img.img02 {
    width: calc((230 / 769) * 100vw);
    height: calc((230 / 769) * 100vw);
    top: 7%;
    left: 45%;
  }

  .recruit-mv__img.img03 {
    width: calc((150 / 769) * 100vw);
    height: calc((150 / 769) * 100vw);
    top: 87%;
    left: 36%;
  }

  .recruit-mv__img.img04 {
    width: calc((240 / 769) * 100vw);
    height: calc((240 / 769) * 100vw);
    top: 64%;
    right: 10%;
  }

  .recruit-mv__img.img05 {
    width: calc((190 / 769) * 100vw);
    height: calc((190 / 769) * 100vw);
    top: 37%;
    right: -8%;
  }

  .recruit-mv__img.img06 {
    width: calc((160 / 769) * 100vw);
    height: calc((160 / 769) * 100vw);
    top: 6%;
    right: -8%;
  }

  .recruit-mv__obj.obj01 {
    width: calc((200 / 769) * 100vw);
    height: calc((200 / 769) * 100vw);
    border-radius: 5px;
    top: inherit;
    bottom: -7.8%;
    left: -15%;
  }

  .recruit-mv__obj.obj02 {
    width: calc((120 / 769) * 100vw);
    height: calc((120 / 769) * 100vw);
    border-radius: 5px;
    top: -2%;
    left: 30%;
  }

  .recruit-mv__obj.obj03 {
    width: calc((80 / 769) * 100vw);
    height: calc((80 / 769) * 100vw);
    border-radius: 5px;
    top: inherit;
    bottom: -10%;
    left: 18%;
  }

  .recruit-mv__obj.obj04 {
    width: calc((108 / 769) * 100vw);
    height: calc((108 / 769) * 100vw);
    border-radius: 5px;
    top: -5%;
    right: 15%;
  }

  .recruit-mv__obj.obj05 {
    width: calc((70 / 769) * 100vw);
    height: calc((70 / 769) * 100vw);
    border-radius: 5px;
    top: 47%;
    left: 63%;
  }
}

/*-- recruit-concept --*/
.recruit-concept {
  background: url("images/recruit-concept-logo.png") no-repeat right -6.7% top var(--cont_margin-block) #e7f8fe;
  background-size: calc((753 / 1920) * 100vw) calc((600 / 1920) * 100vw);
}

.recruit-concept__logo {
  width: 316px;
  margin-bottom: 40px;
}

.recruit-concept__catch {
  font-size: 7.8rem;
  margin-bottom: 40px;
  color: var(--c-primary);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.01em;
}

.recruit-concept__txt {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.recruit-concept__txt .-emphasis {
  background: linear-gradient(transparent 60%, yellow 60%);
  display: inline;
  font-weight: 700;
}

.recruit-concept-link {
  display: flex;
  justify-content: flex-start;
  column-gap: 20px;
}

@media screen and (max-width: 1500px) {
  .recruit-concept__catch {
    font-size: 6.0rem;
  }

  .recruit-concept-link {
    column-gap: 10px;
  }

  .recruit-concept-link p a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1250px) {
  .recruit-concept-link {
    display: block;
    column-gap: 20px;
  }

  .recruit-concept-link p {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 960px) {
  .recruit-concept__logo {
    margin-bottom: 30px;
  }

  .recruit-concept__catch {
    font-size: 5.0rem;
    margin-bottom: 30px;
  }

  .recruit-concept__txt {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 769px) {
  .recruit-concept__logo {
    width: 200px;
    margin-bottom: 20px;
  }

  .recruit-concept__catch {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .recruit-concept__txt {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }
}

/*-- recruit-message --*/
.recruit-message {
  background: url("images/recruit-message-img-pc.png") no-repeat 0 0;
  background-size: auto 100%;
}

.recruit-message__inner {
  padding: var(--cont_margin-block) var(--cont_margin-inline) var(--cont_margin-block) 50%;
}

.recruit-message__ttl {
  font-size: 6.0rem;
  font-weight: bold;
  color: #2dbbed;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 30px;
}

.recruit-message__en {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 50px;
}

.recruit-message__catch {
  font-size: 2.6rem;
  margin-bottom: 30px;
}

.recruit-message-list-box {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid var(--c-primary);
  border-radius: 140px;
  height: 140px;
  margin-bottom: 10px;
}

.recruit-message-list__ttl {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 140px;
  aspect-ratio: 1;
  background: var(--c-primary);
  text-align: center;
  border-radius: 140px;
  line-height: 1.0;
}

.recruit-message-list__ttl p {
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.5;
}

.recruit-message-list__ttl span {
  color: #fff;
  font-size: 2.8rem;
  line-height: 1.0;
}

.recruit-message-list__txt {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.4;
  padding: 0 30px;
  width: calc(100% - 140px);
}

.recruit-message__img {
  display: none;
}

@media screen and (max-width: 1500px) {
  .recruit-message {
    background: url("images/recruit-message-img-pc.png") no-repeat -100px 0;
    background-size: auto 100%;
  }

  .recruit-message__inner {
    padding: 100px var(--cont_margin-inline) 100px 50%;
  }

  .recruit-message__ttl {
    font-size: 5.5rem;
    margin-bottom: 30px;
  }

  .recruit-message__en {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 50px;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-message {
    background: url("images/recruit-message-img-pc.png") no-repeat -150px 0;
    background-size: auto 100%;
  }

  .recruit-message__inner {
    padding: 100px var(--cont_margin-inline) 100px 40%;
  }

  .recruit-message__ttl {
    font-size: 4.5rem;
    margin-bottom: 30px;
  }

  .recruit-message__en {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
  }

  .recruit-message__catch {
    font-size: 2.2rem;
  }

  .recruit-message-list-box {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border: 1px solid var(--c-primary);
    border-radius: 120px;
    height: 120px;
    margin-bottom: 10px;
  }

  .recruit-message-list__ttl {
    width: 120px;
    border-radius: 120px;
  }

  .recruit-message-list__ttl p {
    font-size: 1.4rem;
  }

  .recruit-message-list__ttl span {
    font-size: 2.2rem;
  }

  .recruit-message-list__txt {
    font-size: 2.0rem;
    padding: 0 20px;
    width: calc(100% - 120px);
  }
}

@media screen and (max-width: 960px) {
  .recruit-message {
    background: none;
  }

  .recruit-message__inner {
    padding: 50px var(--cont_margin-inline);
  }

  .recruit-message__ttl {
    font-size: 3.5rem;
    margin-bottom: 30px;
  }

  .recruit-message__en {
    font-size: 1.4rem;
  }

  .recruit-message__img {
    display: block;
  }

  .recruit-message__catch {
    font-size: 2.0rem;
  }

  .recruit-message-list-box {
    border-radius: 100px;
    height: 100px;
  }

  .recruit-message-list__ttl {
    width: 100px;
    border-radius: 100px;
  }

  .recruit-message-list__ttl p {
    font-size: 1.2rem;
  }

  .recruit-message-list__ttl span {
    font-size: 2.0rem;
  }

  .recruit-message-list__txt {
    font-size: 1.8rem;
    width: calc(100% - 100px);
  }
}

@media screen and (max-width: 769px) {
  .recruit-message__inner {
    padding: 30px var(--cont_margin-inline);
  }

  .recruit-message__ttl {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .recruit-message__en {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }

  .recruit-message__catch {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .recruit-message-list-box {
    border-radius: 80px;
    height: 80px;
  }

  .recruit-message-list__ttl {
    width: 80px;
    border-radius: 80px;
  }

  .recruit-message-list__ttl span {
    font-size: 1.8rem;
  }

  .recruit-message-list__txt {
    font-size: 1.4rem;
    padding: 0 10px;
    width: calc(100% - 80px);
  }
}

/*-- recruit-number --*/
.recruit-number__en,
.recruit-number__ttl {
  text-align: center;
}

.recruit-number__en {
  line-height: 1.4;
  margin-bottom: 10px;
}

.recruit-number__inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.recruit-number__box {
  background: #fff;
  border-radius: 10px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  text-align: center;
  padding-top: 70px;
}

.recruit-number__col15 {
  width: calc(50% - 10px);
}

.recruit-number__col10 {
  width: calc(33.333% - 14px);
}

.recruit-number__col18 {
  width: calc(60% - 10px);
}

.recruit-number__col12 {
  width: calc(40% - 10px);
}

.recruit-number__icon {
  height: 150px;
  text-align: center;
  display: flex;
  justify-content: center;
}

.recruit-number__icon img {
  width: auto;
  height: 150px;
}

.recruit-number__txt {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: 0.05em;
}

.recruit-number__txt span {
  font-size: 14.0rem;
  font-weight: 500;
  line-height: 1.0;
  color: var(--c-primary);
  letter-spacing: 0.05em;
}

span.recruit-number__txt-s {
  font-size: 2.0rem;
  font-weight: 700;
  color: #121212;
}

@media screen and (max-width: 1500px) {
  .recruit-number__box {
    height: 400px;
    padding-top: 60px;
  }

  .recruit-number__icon {
    height: 120px;
  }

  .recruit-number__icon img {
    height: 120px;
  }

  .recruit-number__txt {
    font-size: 2.5rem;
  }

  .recruit-number__txt span {
    font-size: 10.0rem;
  }

  span.recruit-number__txt-s {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-number__box {
    height: 320px;
    padding-top: 50px;
  }

  .recruit-number__icon {
    height: 100px;
  }

  .recruit-number__icon img {
    height: 100px;
  }

  .recruit-number__txt {
    font-size: 2.0rem;
  }

  .recruit-number__txt span {
    font-size: 7.5rem;
  }

  span.recruit-number__txt-s {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 960px) {
  .recruit-number__inner {
    gap: 10px;
  }

  .recruit-number__box {
    height: 250px;
    padding-top: 20px;
  }

  .recruit-number__col15 {
    width: calc(50% - 5px);
  }

  .recruit-number__col10 {
    width: calc(33.333% - 7px);
  }

  .recruit-number__col18 {
    width: calc(60% - 5px);
  }

  .recruit-number__col12 {
    width: calc(40% - 5px);
  }

  .recruit-number__txt {
    font-size: 1.8rem;
  }

  .recruit-number__txt span {
    font-size: 6.5rem;
  }

  span.recruit-number__txt-s {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 769px) {
  .recruit-number__box {
    height: 160px;
    padding: 20px 10px 10px;
  }

  .recruit-number__en {
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .recruit-number__col15 {
    width: calc(50% - 5px);
  }

  .recruit-number__icon {
    height: 60px;
  }

  .recruit-number__icon img {
    height: 60px;
  }

  .recruit-number__txt {
    font-size: 1.4rem;
  }

  .recruit-number__txt span {
    font-size: 4.5rem;
  }

  span.recruit-number__txt-s {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 600px) {
  .recruit-number__inner {
    gap: 5px;
  }

  .recruit-number__box {
    height: 150px;
  }

  .recruit-number__col15 {
    width: calc(50% - 3px);
  }

  .recruit-number__col10 {
    width: calc(33.333% - 4px);
  }

  .recruit-number__col18 {
    width: calc(60% - 3px);
  }

  .recruit-number__col12 {
    width: calc(40% - 3px);
  }

  .recruit-number__icon {
    height: 50px;
  }

  .recruit-number__icon img {
    height: 50px;
  }

  .recruit-number__txt {
    font-size: 1.3rem;
  }

  .recruit-number__txt span {
    font-size: 3.5rem;
  }

  span.recruit-number__txt-s {
    font-size: 1.2rem;
  }
}


/*-- recruit-interview --*/
.recruit-interview {
  padding-top: var(--cont_margin-block);
}

.recruit-interview__en,
.recruit-interview__ttl {
  text-align: center;
}

.recruit-interview-slide {
  padding-bottom: 50px;
  position: relative;
}

.recurit-interview-card {
  margin: 0 25px;
  position: relative;
}

.recurit-interview-card__img {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  width: 100%;
  margin-bottom: 30px;
}

.recurit-interview-card__img img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.recurit-interview-card__img.-front {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .3s ease-in-out;
}

a:hover .recurit-interview-card__img.-front {
  opacity: 0;
}

.recurit-interview-card__comment {
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
}

.recurit-interview-card__job {
  font-size: 1.4rem;
}

.recruit-interview-slide .slick-dots li {
  width: 50px;
  height: 5px;
  background: #eee;
  border-radius: 5px;
}

.recruit-interview-slide .slick-dots li.slick-active {
  width: 50px;
  height: 5px;
  background: var(--c-primary);
}

.recruit-interview-slide .slick-dots button:before {
  display: none;
}

.no-scroll {
  overflow: hidden;
  height: 100vh;
  overscroll-behavior: contain; /* スクロール連鎖を防ぐ */
}

@media screen and (max-width: 1500px) {
  .recurit-interview-card {
    margin: 0 15px;
  }

  .recurit-interview-card__img {
    margin-bottom: 20px;
  }

  .recurit-interview-card__comment {
    font-size: 1.5rem;
  }

  .recurit-interview-card__job {
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 769px) {
  .recruit-interview-slide {
    padding-bottom: 20px;
  }

  .recurit-interview-card {
    margin: 0 10px;
  }

  .recurit-interview-card__img {
    margin-bottom: 10px;
  }

  .recurit-interview-card__comment {
    font-size: 1.5rem;
  }

  .recurit-interview-card__job {
    font-size: 1.3rem;
  }
}

/*-- recruit-blog__arrow --*/
.recruit-interview-slide__arrow {
  position: absolute;
  width: calc((100% + 60px) - (var(--cont_margin-inline) * 2));
  height: 60px;
  top: 50%;
  left: calc(var(--cont_margin-inline) - 30px);
  transform: translateY(-50%);
  z-index: 1;
}

.recruit-interview-slide__arrow-prev {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: 1px solid var(--c-primary);
  background: var(--c-primary);
  border-radius: 100%;
  transition: all 0.5s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.recruit-interview-slide__arrow-prev:hover {
  background: #fff;
}

.recruit-interview-slide__arrow-prev:before,
.recruit-interview-slide__arrow-prev:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: #fff;
  left: 25px;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.recruit-interview-slide__arrow-prev:hover:before,
.recruit-interview-slide__arrow-prev:hover:after {
  background: var(--c-primary);
  left: 22px;
}

.recruit-interview-slide__arrow-prev:before {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  top: 18px;
}

.recruit-interview-slide__arrow-prev:after {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  top: 23px;
}

.recruit-interview-slide__arrow-next {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: 1px solid var(--c-primary);
  background: var(--c-primary);
  border-radius: 100%;
  transition: all 0.5s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.recruit-interview-slide__arrow-next:hover {
  background: #fff;
}

.recruit-interview-slide__arrow-next:before,
.recruit-interview-slide__arrow-next:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  right: 25px;
  background: #fff;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.recruit-interview-slide__arrow-next:hover:before,
.recruit-interview-slide__arrow-next:hover:after {
  background: var(--c-primary);
  right: 22px;
}

.recruit-interview-slide__arrow-next:before {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  top: 18px;
}

.recruit-interview-slide__arrow-next:after {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  top: 23px;
}

@media screen and (max-width: 1500px) {
  .recruit-interview-slide__arrow {
    width: calc((100% + 80px) - (var(--cont_margin-inline) * 2));
    left: calc(var(--cont_margin-inline) - 40px);
  }
}

@media screen and (max-width: 1300px) {
  .recruit-interview-slide__arrow {
    width: calc((100% + 90px) - (var(--cont_margin-inline) * 2));
    left: calc(var(--cont_margin-inline) - 45px);
  }
}

@media screen and (max-width: 960px) {
  .recruit-interview-slide__arrow {
    width: calc((100% + 30px) - (var(--cont_margin-inline) * 2));
    left: calc(var(--cont_margin-inline) - 15px);
  }
}

@media screen and (max-width: 769px) {
  .recruit-interview-slide__arrow {
    height: 50px;
    width: calc((100% + 20px) - (var(--cont_margin-inline) * 2));
    left: calc(var(--cont_margin-inline) - 10px);
  }

  .recruit-interview-slide__arrow-prev {
    width: 50px;
    height: 50px;
  }

  .recruit-interview-slide__arrow-prev:before,
  .recruit-interview-slide__arrow-prev:after {
    left: 20px;
  }

  .recruit-interview-slide__arrow-prev:hover:before,
  .recruit-interview-slide__arrow-prev:hover:after {
    left: 17px;
  }

  .recruit-interview-slide__arrow-prev:before {
    top: 13px;
  }

  .recruit-interview-slide__arrow-prev:after {
    top: 18px;
  }

  .recruit-interview-slide__arrow-next {
    width: 50px;
    height: 50px;
  }

  .recruit-interview-slide__arrow-next:before,
  .recruit-interview-slide__arrow-next:after {
    right: 20px;
  }

  .recruit-interview-slide__arrow-next:hover:before,
  .recruit-interview-slide__arrow-next:hover:after {
    right: 17px;
  }

  .recruit-interview-slide__arrow-next:before {
    top: 13px;
  }

  .recruit-interview-slide__arrow-next:after {
    top: 18px;
  }
}

/*-- recruit-schedule --*/
.recruit-schedule__en,
.recruit-schedule__ttl {
  text-align: center;
}

.recruit-schedule-cont {
  background: #fff;
  border-radius: 15px;
  padding: 50px;
  margin-bottom: 100px;
}

.recruit-schedule-ttl {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 40px 50px;
  background: #f4f5f6;
}

.recruit-schedule-ttl__ttl {
  font-size: 3.0rem;
  font-weight: 700;
  line-height: 1.2;
}

.recruit-schedule-ttl__ttl span {
  font-size: 4.8rem;
  font-weight: 700;
  line-height: 1.2;
}

.-house .recruit-schedule-ttl__ttl {
  color: var(--c-primary);
}

.-house .recruit-schedule-ttl__ttl span {
  color: var(--c-primary);
}

.-site .recruit-schedule-ttl__ttl {
  color: var(--c-secondary);
}

.-site .recruit-schedule-ttl__ttl span {
  color: var(--c-secondary);
}

.recruit-schedule-ttl__en {
  font-size: 1.5rem;
}

.-house .recruit-schedule-ttl__en {
  color: var(--c-primary);
}

.-site .recruit-schedule-ttl__en {
  color: var(--c-secondary);
}

.recruit-schedule-flow {
  margin: 70px 50px;
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  position: relative;
}

.recruit-schedule-flow:before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 221px;
  border-radius: 5px;
}

.recruit-schedule-flow__time {
  width: 340px;
  font-size: 4.0rem;
  font-weight: 600;
  position: relative;
  line-height: 1.0;
}

.recruit-schedule-flow__time:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  top: 20px;
  right: 40px;
}

.recruit-schedule-flow__time:after {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border-radius: 100%;
  top: 13px;
  right: 110px;
}

.-house .recruit-schedule-flow:before {
  background: var(--c-primary);
}

.-house .recruit-schedule-flow__time {
  color: var(--c-primary);
}

.-house .recruit-schedule-flow__time:before {
  background: var(--c-primary);
}

.-house .recruit-schedule-flow__time:after {
  background: var(--c-primary);
}

.-site .recruit-schedule-flow:before {
  background: var(--c-secondary);
}

.-site .recruit-schedule-flow__time {
  color: var(--c-secondary);
}

.-site .recruit-schedule-flow__time:before {
  background: var(--c-secondary);
}

.-site .recruit-schedule-flow__time:after {
  background: var(--c-secondary);
}

.recruit-schedule-flow-info {
  width: calc(100% - 340px);
  margin-bottom: 70px;
}

.recruit-schedule-flow-info__ttl {
  font-weight: 700;
  font-size: 2.5rem;
  margin-bottom: 5px;
}

.recruit-schedule-remarks {
  text-align: right;
}

@media screen and (max-width: 1500px) {
  .recruit-schedule-cont {
    padding: 30px;
  }

  .recruit-schedule-ttl {
    padding: 30px 40px;
  }

  .recruit-schedule-ttl__ttl {
    font-size: 2.4rem;
  }

  .recruit-schedule-ttl__ttl span {
    font-size: 3.8rem;
  }

  .recruit-schedule-flow {
    margin: 50px 30px;
  }

  .recruit-schedule-flow__time {
    font-size: 3.5rem;
  }

  .recruit-schedule-flow-info {
    margin-bottom: 50px;
  }

  .recruit-schedule-flow-info__ttl {
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-schedule-cont {
    margin-bottom: 70px;
  }

  .recruit-schedule-ttl {
    padding: 30px;
  }

  .recruit-schedule-ttl__ttl {
    font-size: 2.2rem;
  }

  .recruit-schedule-ttl__ttl span {
    font-size: 3.4rem;
  }

  .recruit-schedule-ttl__en {
    font-size: 1.3rem;
  }

  .recruit-schedule-flow {
    margin: 30px 20px;
  }

  .recruit-schedule-flow:before {
    left: 138px;
  }

  .recruit-schedule-flow__time {
    width: 200px;
    font-size: 3.0rem;
  }

  .recruit-schedule-flow__time:before {
    width: 80px;
    top: 15px;
    right: 20px;
  }

  .recruit-schedule-flow__time:after {
    width: 12px;
    height: 12px;
    top: 10px;
    right: 55px;
  }

  .recruit-schedule-flow-info {
    width: calc(100% - 200px);
  }

  .recruit-schedule-flow-info__ttl {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 960px) {
  .recruit-schedule-cont {
    padding: 20px;
    margin-bottom: 50px;
  }

  .recruit-schedule-flow-info__ttl {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 769px) {
  .recruit-schedule-cont {
    margin-bottom: 30px;
  }

  .recruit-schedule-ttl {
    display: block;
    padding: 20px;
  }

  .recruit-schedule-ttl__ttl {
    font-size: 1.8rem;
  }

  .recruit-schedule-ttl__ttl span {
    font-size: 3.0rem;
  }

  .recruit-schedule-flow:before {
    left: 104px;
  }

  .recruit-schedule-flow__time {
    width: 150px;
    font-size: 2.2rem;
    padding-top: 2px;
  }

  .recruit-schedule-flow__time:before {
    width: 50px;
    top: 14px;
  }

  .recruit-schedule-flow__time:after {
    width: 11px;
    height: 11px;
    top: 9px;
    right: 39px;
  }

  .recruit-schedule-flow-info {
    width: calc(100% - 150px);
    margin-bottom: 30px;
  }

  .recruit-schedule-flow-info__ttl {
    font-size: 1.6rem;
    margin-bottom: 0;
  }
}

@media screen and (max-width: 500px) {
  .recruit-schedule-cont {
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 20px;
  }

  .recruit-schedule-ttl {
    border-radius: 5px;
  }

  .recruit-schedule-ttl__ttl {
    font-size: 1.6rem;
  }

  .recruit-schedule-ttl__ttl span {
    font-size: 2.5rem;
  }

  .recruit-schedule-ttl__en {
    font-size: 1.1rem;
  }

  .recruit-schedule-flow {
    margin: 20px 10px;
    padding: 10px 0;
  }

  .recruit-schedule-flow:before {
    left: 80px;
  }

  .recruit-schedule-flow__time {
    width: 110px;
    font-size: 1.8rem;
    padding-top: 3px;
  }

  .recruit-schedule-flow__time:before {
    width: 40px;
    top: 12px;
    right: 10px;
  }

  .recruit-schedule-flow__time:after {
    top: 7px;
    right: 23px;
  }

  .recruit-schedule-flow-info {
    width: calc(100% - 110px);
  }
}

/*-- recruit-gallery --*/
.recruit-gallery {
  width: 100%;
  overflow: hidden;
  background: #fff;
}

.recruit-gallery__row {
  width: 100%;
  overflow: hidden;
}

.recruit-gallery__track {
  display: flex;
  padding: 0;
  margin: 0;
  list-style: none;
}

.recruit-gallery__item {
  flex: 0 0 auto;
  width: 500px;
  height: 500px;
  overflow: hidden;
}

.recruit-gallery__item>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 1500px) {
  .recruit-gallery__item {
    width: 300px;
    height: 300px;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-gallery__item {
    width: 250px;
    height: 250px;
  }
}

@media screen and (max-width: 769px) {
  .recruit-gallery__item {
    width: 200px;
    height: 200px;
  }
}

@media screen and (max-width: 500px) {
  .recruit-gallery__item {
    width: 150px;
    height: 150px;
  }
}

/*-- recruit-blog --*/
.recruit-blog {
  padding-top: var(--cont_margin-block);
}

.recruit-blog__inner {
  position: relative;
  width: calc(100% + 40px);
  margin-right: -40px;
}

.recruit-blog__inner:before {
  position: absolute;
  content: "";
  width: var(--cont_margin-inline);
  height: 100%;
  background: #fff;
  top: 0;
  left: calc(var(--cont_margin-inline) * -1);
  z-index: 1;
}

.recruit-blog .slick-track {
  margin-left: 0;
}

.recruit-blog-slide__card {
  margin: 0 40px 0 0;
}

.recruit-blog-slide__img {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  aspect-ratio: 4 / 3;
  width: 100%;
  height: 100%;
  border: none;
}

.recruit-blog-slide__img img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recurit-interview-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.recruit-blog-slide__date {
  font-size: 1.6rem;
  color: var(--c-primary);
  margin-bottom: 10px;
}

.recruit-blog-slide__txt {
  font-size: 2.2rem;
}

.recruit-blog .slick-list {
  overflow: visible;
}

@media screen and (max-width: 1500px) {
  .recruit-blog__inner {
    width: calc(100% + 30px);
    margin-right: -30px;
  }

  .recruit-blog-slide__card {
    margin: 0 30px 0 0;
  }

  .recruit-blog-slide__txt {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-blog__inner {
    width: calc(100% + 20px);
    margin-right: -20px;
  }

  .recruit-blog-slide__card {
    margin: 0 20px 0 0;
  }

  .recruit-blog-slide__img {
    margin-bottom: 15px;
  }

  .recruit-blog-slide__date {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 769px) {
  .recruit-blog-slide__img {
    margin-bottom: 10px;
  }

  .recruit-blog-slide__date {
    font-size: 1.4rem;
  }

  .recruit-blog-slide__txt {
    font-size: 1.6rem;
  }
}

/*-- recruit-blog__arrow --*/
.recruit-blog__arrow {
  position: absolute;
  width: 130px;
  height: 60px;
  top: 20px;
  right: 40px;
  z-index: 1;
}

.recruit-blog__arrow-prev {
  position: absolute;
  top: 0;
  left: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: 1px solid var(--c-primary);
  background: var(--c-primary);
  border-radius: 100%;
  transition: all 0.5s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.recruit-blog__arrow-prev:hover {
  background: #fff;
}

.recruit-blog__arrow-prev:before,
.recruit-blog__arrow-prev:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  background: #fff;
  left: 25px;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.recruit-blog__arrow-prev:hover:before,
.recruit-blog__arrow-prev:hover:after {
  background: var(--c-primary);
  left: 22px;
}

.recruit-blog__arrow-prev:before {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  top: 18px;
}

.recruit-blog__arrow-prev:after {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  top: 23px;
}

.recruit-blog__arrow-next {
  position: absolute;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 60px;
  height: 60px;
  border: 1px solid var(--c-primary);
  background: var(--c-primary);
  border-radius: 100%;
  transition: all 0.5s;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.recruit-blog__arrow-next:hover {
  background: #fff;
}

.recruit-blog__arrow-next:before,
.recruit-blog__arrow-next:after {
  position: absolute;
  content: "";
  width: 8px;
  height: 2px;
  right: 25px;
  background: #fff;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
}

.recruit-blog__arrow-next:hover:before,
.recruit-blog__arrow-next:hover:after {
  background: var(--c-primary);
  right: 22px;
}

.recruit-blog__arrow-next:before {
  -webkit-transform: translateY(8px) rotate(45deg);
  transform: translateY(8px) rotate(45deg);
  top: 18px;
}

.recruit-blog__arrow-next:after {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  top: 23px;
}

@media screen and (max-width: 1500px) {
  .recruit-blog__arrow {
    right: 30px;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-blog__arrow {
    right: 20px;
  }
}

@media screen and (max-width: 769px) {
  .recruit-blog__arrow {
    width: 110px;
    height: 50px;
    top: 10px;
  }

  .recruit-blog__arrow-prev {
    width: 50px;
    height: 50px;
  }

  .recruit-blog__arrow-prev:before,
  .recruit-blog__arrow-prev:after {
    left: 20px;
  }

  .recruit-blog__arrow-prev:hover:before,
  .recruit-blog__arrow-prev:hover:after {
    left: 17px;
  }

  .recruit-blog__arrow-prev:before {
    top: 13px;
  }

  .recruit-blog__arrow-prev:after {
    top: 18px;
  }

  .recruit-blog__arrow-next {
    width: 50px;
    height: 50px;
  }

  .recruit-blog__arrow-next:before,
  .recruit-blog__arrow-next:after {
    right: 20px;
  }

  .recruit-blog__arrow-next:hover:before,
  .recruit-blog__arrow-next:hover:after {
    right: 17px;
  }

  .recruit-blog__arrow-next:before {
    top: 13px;
  }

  .recruit-blog__arrow-next:after {
    top: 18px;
  }
}


/*-- recruit-contact --*/
.recruit-contact {
  background: #f3f6fa;
  margin: 0 var(--sec_margin-inline) var(--sec_margin-inline);
  border-radius: 70px;
  padding: calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.recruit-contact-link {
  height: 280px;
  width: calc(33.333% - 20px);
  position: relative;
}

.recruit-contact-link:after {
  position: absolute;
  font-size: 5.0rem;
  color: #fff;
  top: -40px;
  left: 0;
  width: 100%;
  text-align: center;
  line-height: 1.0;
  height: 40px;
  overflow: hidden;
}

.recruit-contact-link.-new:after {
  content: "NEW GRADUATE";
}

.recruit-contact-link.-mid:after {
  content: "MID CAREER";
}

.recruit-contact-link.-intern:after {
  content: "INTERNSHIP";
}

.recruit-contact-link a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--c-secondary);
  width: 100%;
  height: 280px;
  border-radius: 20px;
  padding: 0 0 0 50px;
  font-size: 2.5rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}

.recruit-contact-link a:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 60px;
  border: 1px solid #fff;
  border-radius: 90px;
  top: 50%;
  right: 43px;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.recruit-contact-link a:after {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  border: 1px solid #fff;
  border-right: none;
  border-bottom: none;
  top: 50%;
  right: 70px;
  transform: translateY(-50%) rotate(135deg);
  transition: all .3s ease-in-out;
}

.recruit-contact-link a:hover:before {
  right: 20px;
}

.recruit-contact-link a:hover:after {
  right: 60px;
}

@media screen and (max-width: 1650px) {
  .recruit-contact-link a {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 1500px) {
  .recruit-contact {
    border-radius: 50px;
  }

  .recruit-contact-link {
    height: 240px;
    width: calc(33.333% - 15px);
  }

  .recruit-contact-link a {
    height: 240px;
    padding: 0 0 0 30px;
    font-size: 1.8rem;
  }

  .recruit-contact-link a:before {
    right: 18px;
  }

  .recruit-contact-link a:after {
    right: 45px;
  }

  .recruit-contact-link a:hover:before {
    right: 10px;
  }

  .recruit-contact-link a:hover:after {
    right: 50px;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-contact {
    padding: 70px 50px 50px;
  }

  .recruit-contact-link {
    height: 200px;
    width: calc(33.333% - 10px);
  }

  .recruit-contact-link:after {
    font-size: 3.0rem;
    top: -25px;
    height: 25px;
  }

  .recruit-contact-link a {
    height: 200px;
    padding: 0 0 0 20px;
    font-size: 1.6rem;
  }

  .recruit-contact-link a:before {
    width: 60px;
    height: 60px;
  }

  .recruit-contact-link a:after {
    width: 9px;
    height: 9px;
    right: 47px;
  }

  .recruit-contact-link a:hover:after {
    right: 37px;
  }
}

@media screen and (max-width: 960px) {
  .recruit-contact {
    border-radius: 30px;
    padding: 50px 20px 20px;
  }

  .recruit-contact-link {
    height: 150px;
  }

  .recruit-contact-link:after {
    font-size: 2.0rem;
    top: -15px;
    height: 15px;
  }

  .recruit-contact-link a {
    height: 150px;
    padding: 0 60px 0 10px;
    font-size: 1.4rem;
  }

  .recruit-contact-link a:before {
    width: 40px;
    height: 40px;
  }

  .recruit-contact-link a:after {
    width: 7px;
    height: 7px;
    right: 37px;
  }

  .recruit-contact-link a:hover:after {
    right: 27px;
  }
}

@media screen and (max-width: 769px) {
  .recruit-contact {
    display: block;
  }

  .recruit-contact-link {
    height: 80px;
    width: 100%;
    max-width: 500px;
    margin: 0 auto 30px;
  }

  .recruit-contact-link:after {
    font-size: 2.5rem;
    top: -17px;
    height: 17px;
  }

  .recruit-contact-link a {
    height: 80px;
    border-radius: 10px;
    padding: 0 60px 0 20px;
    line-height: 1.4;
  }

  .recruit-contact-link a:before {
    right: 15px;
  }

  .recruit-contact-link a:after {
    right: 32px;
  }

  .recruit-contact-link a:hover:before {
    right: 15px;
  }

  .recruit-contact-link a:hover:after {
    right: 32px;
  }
}

@media screen and (max-width: 600px) {
  .recruit-contact-link:last-child {
    margin-bottom: 0;
  }
}


/*-- recruit-interview-detail --*/
.recruit-interview-detail {
  position: relative;
  background: #fff;
  padding: 50px 50px 100px;
  width: auto;
  margin: 100px var(--cont_margin-inline);
}

.recruit-interview-detail-main {
  margin-bottom: 150px;
  position: relative;
}

.recruit-interview-detail-main__catch {
  position: absolute;
  bottom: 80px;
  left: 80px;
}

.recruit-interview-detail-main-catch__inner {
  padding: 10px 20px;
  color: #121212;
  font-size: 3.8rem;
  line-height: 2.2;
  background: #fff;
  display: inline;
  -webit-box-decoration-break: clone;
  box-decoration-break: clone;
}

.recruit-interview-detail-main__name {
  position: absolute;
  top: 0;
  right: 0;
  background: #fff;
  padding: 40px 100px 40px 100px;
  border-radius: 0 0 0 50px;
  font-size: 4.0rem;
  font-weight: 700;
  text-align: right;
  line-height: 1.0;
}

.recruit-interview-detail-main__name span {
  font-size: 2.0rem;
  font-weight: 500;
}

.recruit-interview-detail-main__name:before {
  position: absolute;
  content: "";
  width: 48px;
  height: 47px;
  top: 0;
  left: -47px;
  background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
  background-size: 48px 47px;
  transform: rotate(-90deg);
}

.recruit-interview-detail-main__name:after {
  position: absolute;
  content: "";
  width: 48px;
  height: 47px;
  right: -1px;
  bottom: -47px;
  background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
  background-size: 48px 47px;
  transform: rotate(-90deg);
}

.recruit-interview-detail-inner {
  max-width: 1300px;
  padding: 0 50px;
  margin: 0 auto;
}

.recruit-interview-detail-cont {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 50px;
}

.recruit-interview-detail-cont:nth-child(2n) {
  flex-direction: row-reverse;
}

.recruit-interview-detail-cont__img {
  width: 48.5%;
}

.recruit-interview-detail-cont__img img {
  width: 100%;
  height: auto;
}

.recruit-interview-detail-cont__info {
  width: 48.5%;
}

.recruit-interview-detail-cont__ttl {
  font-size: 3.0rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.recruit-interview-detail-main__photo {
  height: 80vh;
}

.recruit-interview-detail-main__photo img {
  object-fit: cover;
  height: 100%;
}

@media screen and (max-width: 1500px) {
  .recruit-interview-detail-main {
    margin-bottom: 100px;
  }

  .recruit-interview-detail-main__catch {
    bottom: 30px;
    left: 30px;
  }

  .recruit-interview-detail-main-catch__inner {
    font-size: 3.2rem;
  }

  .recruit-interview-detail-main__name {
    padding: 30px 70px 30px 70px;
    font-size: 3.5rem;
  }

  .recruit-interview-detail-main__name span {
    font-size: 1.8rem;
  }

  .recruit-interview-detail-cont__ttl {
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 1300px) {
  .recruit-interview-detail-main {
    margin-bottom: 50px;
  }

  .recruit-interview-detail-main-catch__inner {
    padding: 5px 10px;
    color: #121212;
    font-size: 2.5rem;
    line-height: 2.0;
  }

  .recruit-interview-detail-main__name {
    padding: 20px 50px 20px 50px;
    border-radius: 0 0 0 30px;
    font-size: 3.0rem;
  }

  .recruit-interview-detail-main__name span {
    font-size: 1.6rem;
  }

  .recruit-interview-detail-main__name:before {
    width: 30px;
    height: 30px;
    left: -30px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 30px 30px;
  }

  .recruit-interview-detail-main__name:after {
    width: 30px;
    height: 30px;
    bottom: -30px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 30px 30px;
  }

  .recruit-interview-detail-cont__img {
    width: 48.0%;
  }

  .recruit-interview-detail-cont__info {
    width: 48.0%;
  }
}

@media screen and (max-width: 960px) {
  .recruit-interview-detail {
    padding: 30px;
  }

  .recruit-interview-detail-main__catch {
    bottom: 20px;
    left: 20px;
  }

  .recruit-interview-detail-main-catch__inner {
    font-size: 2.2rem;
  }

  .recruit-interview-detail-main__name {
    padding: 20px 30px 20px 30px;
    font-size: 2.5rem;
  }

  .recruit-interview-detail-cont__ttl {
    font-size: 2.0rem;
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 769px) {
  .recruit-interview-detail {
    padding: 20px;
    margin: 70px var(--cont_margin-inline) 50px;
  }

  .recruit-interview-detail-main__catch {
    bottom: 15px;
    left: 15px;
  }

  .recruit-interview-detail-main-catch__inner {
    font-size: 2.0rem;
  }

  .recruit-interview-detail-main__name {
    padding: 15px 0 15px 20px;
    border-radius: 0 0 0 20px;
    font-size: 2.0rem;
  }

  .recruit-interview-detail-main__name span {
    font-size: 1.4rem;
  }

  .recruit-interview-detail-main__name:before {
    width: 20px;
    height: 20px;
    left: -20px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 20px 20px;
  }

  .recruit-interview-detail-main__name:after {
    width: 20px;
    height: 20px;
    bottom: -20px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 20px 20px;
  }

  .recruit-interview-detail-cont {
    margin-bottom: 30px;
  }

  .recruit-interview-detail-cont__ttl {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .recruit-interview-detail {
    padding: 10px;
  }

  .recruit-interview-detail-main {
    margin-bottom: 30px;
  }

  .recruit-interview-detail-main-catch__inner {
    padding: 2px 5px;
    font-size: 1.4rem;
  }

  .recruit-interview-detail-main__name {
    padding: 10px 10px 10px 20px;
    border-radius: 0 0 0 10px;
    font-size: 1.8rem;
  }

  .recruit-interview-detail-main__name:before {
    width: 10px;
    height: 10px;
    left: -10px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 10px 10px;
  }

  .recruit-interview-detail-main__name:after {
    width: 10px;
    height: 10px;
    bottom: -10px;
    background: url("images/recruit-interview-detail-obj.png") no-repeat 0 0;
    background-size: 10px 10px;
  }

  .recruit-interview-detail-main__photo {
    height: 80vw;
  }

  .recruit-interview-detail-main__photo img {
    object-fit: cover;
    height: 80vw;
  }

  .recruit-interview-detail-inner {
    max-width: 1300px;
    padding: 0 20px;
    margin: 0 auto;
  }

  .recruit-interview-detail-cont {
    display: block;
  }

  .recruit-interview-detail-cont__img {
    width: 100%;
    margin-bottom: 20px;
  }

  .recruit-interview-detail-cont__info {
    width: 100%;
  }
}

/* fade + scale アニメーション */
@media screen and (max-width: 769px) {
  /* body.body-fixed-ios {
    position: fixed !important;
  width: 100%;
  overflow-y: scroll;
}*/

  .mfp-content {
    max-height: 100vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
}

.mfp-fade.mfp-bg {
  opacity: 0;
  transition: all 0.3s ease-out;
  overflow: hidden;
  height: 100vh;
  overscroll-behavior: contain; /* スクロール連鎖を防ぐ */
}
.mfp-fade.mfp-bg.mfp-ready {
  opacity: 0.8;
}

.mfp-fade.mfp-bg.mfp-removing {
  opacity: 0;
}

.mfp-fade.mfp-wrap .mfp-content {
  opacity: 0;
  transform: scale(0.8);
  transition: all 0.3s ease-out;
}

.mfp-fade.mfp-wrap.mfp-ready .mfp-content {
  opacity: 1;
  transform: scale(1);
}

.mfp-fade.mfp-wrap.mfp-removing .mfp-content {
  opacity: 0;
  transform: scale(0.8);
}

.popup-modal-dismiss {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.popup-modal-dismiss:before {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  transform: rotate(45deg);
  top: 15px;
}

.popup-modal-dismiss:after {
  position: absolute;
  content: "";
  width: 30px;
  height: 1px;
  background: #fff;
  transform: rotate(135deg);
  top: 15px;
}

.mfp-close {
  display: none !important;
}

@media screen and (max-width: 769px) {
  .popup-modal-dismiss {
    top: 20px;
    right: 20px;
  }
}

/* 採用情報
------------------------------------------------- */
/* p-company */
.p-company {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  margin-bottom: 150px;
  position: relative;
}
.p-company-side {
  width: calc(100% - 40px) !important;
  margin: 0 var(--cont_margin-inline);
}

@media screen and (min-width: 1201px) {
  .p-company-side {
    display: none;
  }
}
@media screen and (max-width: 1200px) {
  .p-company {
    display: flex;
    flex-direction: column;
    padding-top: 0;
    margin-top: 100px;
  }
}


@media screen and (max-width: 769px) {
  .p-company {
    padding-top: 0;
    margin-top: 50px;
    margin-bottom: 100px;
  }
}

.p-company-nav {
  position: relative;
  padding: 0 0 0 var(--cont_margin-inline);
}

.p-company-nav__li {
  margin-bottom: 20px;
  position: relative;
}

.p-company-nav__li a {
  display: block;
  font-size: 2.5rem;
  line-height: 1.4;
  position: relative;
  transition: all .3s;
  -webkit-transition: .3s ease-in-out;
  transition: .3s ease-in-out;
  text-decoration: none;
}

.p-company-nav__li:first-child a {
  font-weight: 500;
}

.p-company-nav__li a.active:before {
  position: absolute;
  content: "";
  width: 150px;
  height: 1px;
  top: 16px;
  left: -165px;
  background: var(--c-primary);
}

.p-company-nav__li a.active:after {
  position: absolute;
  content: "";
  width: 9px;
  height: 9px;
  top: 12px;
  left: -20px;
  background: var(--c-primary);
  border-radius: 9px;
}

.p-company-nav__li a.active {
  font-weight: 700;
  color: var(--c-primary);
}

.p-company-nav__li a:hover {
  font-weight: 700;
  color: var(--c-primary);
}

@media screen and (max-width: 1500px) {
  .p-company-nav__li {
    margin-bottom: 15px;
  }

  .p-company-nav__li a {
    font-size: 2.0rem;
  }

  .p-company-nav__li a.active:before {
    width: 150px;
    height: 1px;
    top: 14px;
    left: -165px;
  }

  .p-company-nav__li a.active:after {
    width: 9px;
    height: 9px;
    top: 10px;
    left: -20px;
  }
}

.p-company-nav {
  width: 350px;
  padding-top: 50px;
}

.p-company-cont {
  width: calc(100% - 350px);
}

@media screen and (max-width: 1500px) {
  .p-company-nav {
    width: 280px;
  }

  .p-company-cont {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 1200px) {
  .p-company-nav {
    display: none;
  }

  .p-company-cont {
    width: 100%;
  }
}

/* p-company-sec */
.p-company-sec {
  margin: 50px var(--cont_margin-inline) 100px;
  padding-bottom: 100px;
}

.p-company-sec_msg {
  margin: 0px var(--cont_margin-inline) 50px;
  padding-bottom: 0px;
}

.p-company-sec:last-child {
  margin: 50px var(--cont_margin-inline);
}

@media screen and (max-width: 1200px) {
  .p-company-sec {
    margin: 0 var(--cont_margin-inline);
  }
}

/*-- p-company-mvv --*/
.p-company-mvv {
  padding-top: 100px;
  margin-top: 0;
  margin-bottom: 200px;
}

.p-company-mvv__inner {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  background: url("images/page-obj06.png") no-repeat center center;
  background-size: 100%;
}

.p-company-mvv__inner:before {
  position: absolute;
  content: "";
  background: url("images/company-logo.svg") no-repeat center center;
  background-size: 35%;
  border-radius: 100%;
  aspect-ratio: 1 / 1;
  top: 0;
  left: 0;
  width: 100%;
  z-index: -1;
}

.p-company-mvv__txt {
  font-size: 1.64rem;
}

.p-company-mvv-cont {
  position: absolute;
  display: inline-block;
  z-index: 0;
}

/* 中心の丸（前面・固定位置） */
.p-company-mvv-cont::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 17%;
  aspect-ratio: 1 / 1;
  background: #cfe9f3;
  border-radius: 50%;
  z-index: -1;
  /* 丸が手前 */
}

.p-company-mvv-cont .ripple {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(1);
  width: 17%;
  aspect-ratio: 1 / 1;
  border: 2px solid rgba(175, 220, 240, 0.7);
  /* 少し透明度を上げて柔らかく */
  border-radius: 50%;
  z-index: -2;
  opacity: 0;
  animation: ripple 5s ease-out infinite;
  filter: blur(2px);
  /* 輪郭をさらに柔らかく */
}

/* 波紋を時間差で出す */
.p-company-mvv-cont .ripple:nth-child(1) {
  animation-delay: 0s;
}

.p-company-mvv-cont .ripple:nth-child(2) {
  animation-delay: 1.6s;
}

.p-company-mvv-cont .ripple:nth-child(3) {
  animation-delay: 3.2s;
}

/* 柔らかく広がる波紋 */
@keyframes ripple {
  0% {
    transform: translateX(-50%) scale(1);
    opacity: 0.7;
    box-shadow: 0 0 25px 10px rgba(175, 220, 240, 0.6);
  }

  60% {
    transform: translateX(-50%) scale(3);
    opacity: 0.35;
    box-shadow: 0 0 50px 25px rgba(175, 220, 240, 0.4);
  }

  100% {
    transform: translateX(-50%) scale(3.5);
    opacity: 0;
    box-shadow: 0 0 80px 40px rgba(175, 220, 240, 0);
  }
}

.p-company-mvv-cont.-vision:before {
  width: 25%;
}

.p-company-mvv-cont.-values:before {
  width: 19.6%;
}

.p-company-mvv-cont.-vision .ripple {
  width: 25%;
}

.p-company-mvv-cont.-values .ripple {
  width: 19.6%;
}

.p-company-mvv__en {
  font-size: 6.0rem;
  font-weight: bold;
  color: var(--c-secondary);
  text-align: center;
  margin: -30px 0 10px;
  line-height: 1.0;
}

.p-company-mvv__jp {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.0;
  text-align: center;
}

.p-company-mvv-txt {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
}

.p-company-mvv-cont.-mission {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
}

.p-company-mvv-cont.-values {
  top: 70%;
  right: 14%;
  transform: translateX(50%);
  width: 60%;
}

.p-company-mvv-cont.-vision {
  top: 70%;
  left: 14%;
  transform: translateX(-50%);
  width: 47%;
}

.p-company-mvv-values {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.p-company-mvv-values__ttl {
  width: 160px;
  background: var(--c-primary);
  border-radius: 3px;
  padding: 5px 6px 5px 14px;
  color: #fff;
  font-size: 1.5rem;
  margin-bottom: 5px;
  text-align: center;
  position: relative;
  overflow: hidden;
  /* 擬似要素がはみ出さないように */
}

/* shine effect */
.p-company-mvv-values__ttl::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: linear-gradient(120deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.6) 50%,
      rgba(255, 255, 255, 0) 100%);
  transform: rotate(25deg) translateX(-150%);
  animation: shine 2s ease-in-out infinite;
}

@keyframes shine {
  0% {
    transform: rotate(25deg) translateX(-150%);
  }

  60% {
    transform: rotate(25deg) translateX(150%);
  }

  100% {
    transform: rotate(25deg) translateX(150%);
  }
}

/* 順番にディレイをかける */
.p-company-mvv-values__ttl.-bravery::before {
  animation-delay: 0s;
}

.p-company-mvv-values__ttl.-enjoy::before {
  animation-delay: 0.1s;
}

.p-company-mvv-values__ttl.-action::before {
  animation-delay: 0.2s;
}

.p-company-mvv-values__ttl.-respect::before {
  animation-delay: 0.3s;
}


.p-company-mvv-values__txt {
  width: calc(100% - 180px);
  font-size: 1.5rem;
  margin-bottom: 5px;
  line-height: 1.2;
}

.p-company-mvv-sp {
  display: none;
}

#policy, #name, #message,#chart, #company, #history {
  padding-top: 50px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -50px; /* heightと同じ分のネガティブマージン */
}


@media screen and (max-width: 1300px) {
  .p-company-mvv-cont.-values {
    top: 70%;
    right: 14%;
    transform: translateX(50%);
    width: 55%;
  }
}

@media screen and (max-width: 1200px) {
  .p-company-mvv {
    margin-top: 0;
    margin-bottom: 50px;
  }

  .p-company-mvv__en {
    font-size: 5.0rem;
    margin: -20px 0 10px;
  }

  .p-company-mvv__jp {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }

  .p-company-mvv-values__ttl {
    width: 140px;
    font-size: 1.3rem;
  }

  .p-company-mvv-values__txt {
    width: calc(100% - 160px);
  }
}

@media screen and (max-width: 960px) {
  .p-company-mvv {
    margin-top: 0;
    margin-bottom: 150px;
  }

  .p-company-mvv__en {
    font-size: 4.0rem;
  }

  .p-company-mvv__jp {
    font-size: 1.6rem;
  }

  .p-company-mvv-values {
    margin-left: -50px;
    margin-right: 20px;
  }

  .p-company-mvv-values__ttl {
    width: 130px;
  }

  .p-company-mvv-values__txt {
    width: calc(100% - 140px);
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 769px) {
  .p-company-mvv {
    margin-bottom: 150px;
  }

  .p-company-mvv__inner {
    width: calc(100% - 100px);
    margin: 0 50px;
  }

  .p-company-mvv-cont.-values:before {
    width: 17%;
  }

  .p-company-mvv__en {
    font-size: 3.0rem;
    margin: -10px 0 10px;
  }

  .p-company-mvv__jp {
    font-size: 1.4rem;
    margin-bottom: 20px;
    line-height: 1.0;
    text-align: center;
  }

  .p-company-mvv-txt {
    font-size: 1.4rem;
  }

  .p-company-mvv__txt {
    font-size: 1.4rem;
  }

  .p-company-mvv-cont.-values {
    width: 70%;
  }

  .p-company-mvv-values {
    margin-left: -50px;
    margin-right: 70px;
  }
}

@media screen and (max-width: 650px) {
  .p-company-mvv {
    margin-bottom: 0;
  }

  .p-company-mvv__inner {
    width: calc(100% - 40px);
    max-width: 450px;
    margin: 0 auto 50px;
  }

  .p-company-mvv .-pc {
    display: none;
  }

  .p-company-mvv-sp-cont {
    margin-bottom: 50px;
  }

  .p-company-mvv-sp-cont:last-child {
    margin-bottom: 0;
  }

  .p-company-mvv-sp {
    display: block;
  }

  .p-company-mvv-values {
    display: block;
    margin-left: 0;
    margin-right: 0;
  }

  .p-company-mvv-values__ttl {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 10px;
  }

  .p-company-mvv-values__ttl::before {
    content: "";
    position: absolute;
    top: -500px;
    left: -1000px;
    width: 1000px;
    height: 500px;
    background: linear-gradient(120deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.6) 50%,
        rgba(255, 255, 255, 0) 100%);
    transform: rotate(5deg) translateX(-150%);
    animation: shine 3s ease-in-out infinite;
  }

  .p-company-mvv-values__txt {
    width: 100%;
    margin-bottom: 20px;
  }
}

/*-- p-company-policy --*/
.p-company-policy-cont {
  background: #ebf7fb;
  border-radius: 15px;
  padding: 1px 20px 20px;
  position: relative;
}

.p-company-policy__ttl {
  text-align: center;
  margin: -20px 0 20px;
  font-size: 3.6rem;
  color: var(--c-primary);
  line-height: 1.0;
}

.p-company-policy__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 20px;
}

.p-company-policy-box {
  background: #fff;
  border-radius: 20px;
  flex: 1;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.p-company-policy-box__ttl {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 30px;
  color: var(--c-secondary);
  line-height: 1.4;
  text-align: center;
}

.p-company-policy-box__txt {
  font-size: 1.6rem;
}

@media screen and (max-width: 1500px) {
  .p-company-policy__ttl {
    margin: -15px 0 20px;
    font-size: 3.2rem;
  }

  .p-company-policy-box {
    padding: 40px 20px;
  }

  .p-company-policy-box__ttl {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 1300px) {
  .p-company-policy__ttl {
    font-size: 2.8rem;
  }

  .p-company-policy-box {
    padding: 30px 20px;
  }

  .p-company-policy-box__ttl {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 960px) {
  .p-company-policy__inner {
    column-gap: 10px;
  }

  .p-company-policy-box {
    border-radius: 10px;
  }
}

@media screen and (max-width: 650px) {
  .p-company-policy-cont {
    padding: 1px 10px 10px;
  }

  .p-company-policy__ttl {
    margin: -10px 0 10px;
    font-size: 2.2rem;
  }

  .p-company-policy__inner {
    display: block;
  }

  .p-company-policy-box {
    margin-bottom: 10px;
  }

  .p-company-policy-box:last-child {
    margin-bottom: 0;
  }

  .p-company-policy-box__ttl {
    font-size: 1.8rem;
  }

  .p-company-policy-box__txt {
    font-size: 1.4rem;
  }
}

/*-- p-company-name --*/
.p-company-name {
  text-align: center;
}

.p-company-name__logo {
  width: 100%;
  max-width: 250px;
  margin: 0 auto 50px;
}

.p-company-name__logotype {
  width: 90%;
  max-width: 706px;
  margin: 0 auto 30px;
}

@media screen and (max-width: 769px) {
  .p-company-name__logo {
    width: 100%;
    max-width: 220px;
  }

  .p-company-name__logotype {
    width: 90%;
    max-width: 500px;
  }
}

/*-- p-company-message --*/
.p-company-message__main {
  margin-bottom: 50px;
}

.p-company-message__main img {
  border-radius: 50px;
}

.p-company-message__catch {
  font-size: 5.0rem;
  margin-bottom: 50px;
  color: var(--c-primary);
  line-height: 1.4;
  font-weight: 700;
}

.p-company-message-president {
  margin-bottom: 100px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.p-company-message-president__img {
  width: 40%;
}

.p-company-message-president__img img {
  border-radius: 20px;
}

.p-company-message-president-info {
  width: calc(60% - 50px);
}

.p-company-message-president-info__txt {
  margin-bottom: 50px;
  font-weight: 500;
}

.p-company-message-president-info__txt span {
  color: #ff3100;
  font-weight: 700;
}

.p-company-message-president-info__name {
  text-align: right;
}

.p-company-message-president-info__name img {
  width: 206px;
  margin: 10px 0 0 auto;
}

.p-company-message-member {
  display: flex;
  justify-content: space-between;
  column-gap: 30px;
}

.p-company-message-member-card {
  flex: 1;
  text-align: center;
}

.p-company-message-member-card__img {
  margin-bottom: 15px;
}

.p-company-message-member-card__img img {
  border-radius: 20px;
}

.p-company-message-member-card__post {
  font-size: 1.8rem;
}

.p-company-message-member-card__name {
  font-size: 2.4rem;
  line-height: 1.2;
}

@media screen and (max-width: 1550px) {
  .p-company-message__main img {
    border-radius: 30px;
  }

  .p-company-message__catch {
    font-size: 4.0rem;
  }

  .p-company-message-member {
    column-gap: 20px;
  }
}

@media screen and (max-width: 1400px) {
  .p-company-message__catch {
    font-size: 3.5rem;
  }
}

@media screen and (max-width: 960px) {
  .p-company-message__main img {
    border-radius: 20px;
  }

  .p-company-message-president {
    margin-bottom: 70px;
  }

  .p-company-message-president-info {
    width: calc(60% - 30px);
  }

  .p-company-message-president-info__txt {
    margin-bottom: 30px;
  }

  .p-company-message-president-info__name img {
    width: 160px;
  }
}

@media screen and (max-width: 769px) {
  .p-company-message__main {
    margin-bottom: 30px;
  }

  .p-company-message__catch {
    font-size: 3.0rem;
  }

  .p-company-message-president-info {
    width: calc(60% - 20px);
  }

  .p-company-message-president-info__txt {
    margin-bottom: 20px;
  }

  .p-company-message-member {
    column-gap: 10px;
  }

  .p-company-message-member-card__img img {
    border-radius: 10px;
  }

  .p-company-message-member-card__post {
    font-size: 1.4rem;
  }

  .p-company-message-member-card__name {
    font-size: 2.0rem;
    line-height: 1.2;
  }
}

@media screen and (max-width: 600px) {
  .p-company-message__main {
    margin-bottom: 20px;
  }

  .p-company-message__main img {
    border-radius: 10px;
  }

  .p-company-message__catch {
    font-size: 2.2rem;
    margin-bottom: 30px;
  }

  .p-company-message-president {
    display: block;
  }

  .p-company-message-president__img {
    width: 60%;
    max-width: 350px;
    margin: 0 auto 20px;
  }

  .p-company-message-president__img img {
    border-radius: 10px;
  }

  .p-company-message-president-info {
    width: 100%;
  }

  .p-company-message-president-info__name img {
    width: 120px;
  }

  .p-company-message-member {
    display: block;
  }

  .p-company-message-member-card {
    width: 80%;
    margin: 0 auto 20px;
  }

  .p-company-message-member-card__post {
    font-size: 1.2rem;
  }

  .p-company-message-member-card__name {
    font-size: 1.6rem;
  }
}

.p-company-chart img {
  border-radius: 20px;
}


.p-company-outline-table {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  border-bottom: 1px solid #d8d8d8;
  position: relative;
}

.p-company-outline-table__ttl {
  width: 25%;
  padding: 30px 20px 30px 40px;
  border-top: 1px solid #d8d8d8;
}

.p-company-outline-table__txt {
  width: 75%;
  padding: 30px 20px 30px 0;
  border-top: 1px solid #d8d8d8;
}

.p-company-outline-table__txt iframe {
  width: 100%;
  height: 500px;
}

.p-company-outline-table-add {
  margin-bottom: 20px;
}

.p-company-outline-table-add__ttl {
  font-size: 2.0rem;
}

@media screen and (max-width: 960px) {
  .p-company-outline-table__ttl {
    padding: 30px 20px 30px 0;
    border-top: 1px solid #d8d8d8;
  }

  .p-company-outline-table__txt {
    padding: 30px 0;
  }
}

@media screen and (max-width: 768px) {
  .p-company-outline-table__txt {}
}

@media screen and (max-width: 600px) {
  .p-company-outline-table__ttl {
    width: 100%;
    padding: 20px 0 0;
    font-weight: 700;
  }

  .p-company-outline-table__txt {
    width: 100%;
    padding: 10px 0 20px;
    border: none;
  }

  .p-company-outline-table__txt iframe {
    height: calc(100vw - 40px);
  }

  .p-company-outline-table-add__ttl {
    font-size: 1.6rem;
  }
}


/*-- p-company-history --*/
.p-company-history {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}

.p-company-history:before {
  position: absolute;
  content: "";
  width: 1px;
  height: 100%;
  top: 0;
  left: 5px;
  background: #d8d8d8;
}

.p-company-history__ttl {
  width: 250px;
  padding: 0 0 0 40px;
  margin-bottom: 20px;
  position: relative;
  font-size: 2.2rem;
  color: var(--c-primary);
}

.p-company-history__ttl:before {
  position: absolute;
  content: "";
  width: 11px;
  height: 11px;
  background: var(--c-primary);
  border-radius: 100%;
  top: 12px;
  left: 0;
}

.p-company-history__txt {
  width: calc(100% - 250px);
  font-size: 2.2rem;
  margin-bottom: 20px;
}

@media screen and (max-width: 960px) {
  .p-company-history__ttl {
    width: 200px;
    font-size: 1.8rem;
  }

  .p-company-history__ttl:before {
    top: 9px;
  }

  .p-company-history__txt {
    width: calc(100% - 200px);
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 769px) {
  .p-company-history {
    padding-top: 30px;
  }

  .p-company-history__ttl {
    width: 170px;
    padding: 0 0 0 30px;
    font-size: 1.6rem;
  }

  .p-company-history__txt {
    width: calc(100% - 170px);
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .p-company-history {
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .p-company-history__ttl {
    width: 100%;
    margin-bottom: 5px;
  }

  .p-company-history__ttl:before {
    top: 8px;
  }

  .p-company-history__txt {
    font-size: 1.4rem;
    width: 100%;
    padding: 0 0 0 30px;
  }
}

/* サービス
------------------------------------------------- */
/* Contents */
.p-service-strengths {
  position: relative;
  background: url("images/page-obj04.png") no-repeat 0 center;
  background-size: 100% auto;
  padding-block: 250px;
}

.p-service-strengths.-sub {
  background: url("images/page-obj04.png") no-repeat 0 var(--cont_margin-block02);
  background-size: 100% auto;
  padding-block: var(--cont_margin-block02);
}

.p-service-strengths__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-service-strengths-info {
  width: 48%;
}

.p-service-strengths-chart {
  width: 50%;
}

@media screen and (max-width: 1300px) {
  .p-service-strengths {
    padding-block: 150px;
  }

  .p-service-strengths.-sub {
    padding-block: var(--cont_margin-block02);
  }

  .p-service-strengths-info {
    width: 40%;
  }

  .p-service-strengths-chart {
    width: 55%;
  }
}

@media screen and (max-width: 960px) {
  .p-service-strengths {
    position: relative;
    background: url("images/page-obj04.png") no-repeat 0 var(--cont_margin-block02);
    background-size: 150% auto;
  }

  .p-service-strengths__inner {
    display: block;
  }

  .p-service-strengths-info {
    width: 100%;
  }

  .p-service-strengths-chart {
    width: 100%;
    margin-bottom: 50px;
  }

  .p-service-strengths-chart img {
    width: 100%;
    max-width: 650px;
    margin: 0 auto;
  }

  .p-service-strengths__btn {
    margin: 0 auto;
  }
}

@media screen and (max-width: 769px) {
  .p-service-strengths {
    padding-block: 50px;
  }

  .p-service-strengths.-sub {
    padding-block: var(--cont_margin-block02);
  }

  .p-service-strengths-chart {
    margin-bottom: var(--cont_margin-block02);
  }
}

/*  p-service-dev  */
.p-service-dev {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  margin-block: var(--cont_margin-block02);
}

.p-service-dev-cont {
  flex: 1;
  background: #e6f3f8;
  border-radius: 40px;
  padding: 30px;
}

.p-service-dev-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.p-service-dev-header-ttl__jp {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}

.p-service-dev-header-ttl__en {
  font-size: 1.5rem;
  color: var(--c-primary);
  line-height: 1.2;
}

.p-service-dev-header-icon {
  width: 110px;
  aspect-ratio: 1;
  background: #fff;
  border-radius: 100%;
}

.p-service-dev-header-txt {
  font-size: 2.2rem;
}

@media screen and (max-width: 1300px) {
  .p-service-dev {
    column-gap: 30px;
  }

  .p-service-dev-cont {
    border-radius: 30px;
  }

  .p-service-dev-header {
    margin-bottom: 20px;
  }

  .p-service-dev-header-ttl__jp {
    font-size: 2.6rem;
  }

  .p-service-dev-header-icon {
    width: 90px;
  }

  .p-service-dev-header-icon img {
    width: 100%;
    height: auto;
  }

  .p-service-dev-header-txt {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 960px) {
  .p-service-dev {
    column-gap: 20px;
  }

  .p-service-dev-cont {
    border-radius: 20px;
  }

  .p-service-dev-header-ttl__jp {
    font-size: 2.4rem;
  }

  .p-service-dev-header-txt {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 769px) {
  .p-service-dev-cont {
    padding: 20px;
  }

  .p-service-dev-header {
    margin-bottom: 10px;
  }

  .p-service-dev-header-ttl__jp {
    font-size: 1.8rem;
  }

  .p-service-dev-header-ttl__en {
    font-size: 1.2rem;
  }

  .p-service-dev-header-icon {
    width: 70px;
  }

  .p-service-dev-header-txt {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 600px) {
  .p-service-dev {
    display: block;
  }

  .p-service-dev-cont {
    margin-bottom: 20px;
  }

  .p-service-dev-header-icon {
    width: 60px;
  }
}

/*  p-service-works  */
.p-service-works-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.p-service-works-cont {
  border-top: 1px solid var(--c-border);
  flex: 1;
}

.p-service-works-list {
  width: 48%;
  border-bottom: 1px solid var(--c-border);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.p-service-works-list__ttl {
  font-size: 2.2rem;
}

.p-service-works-list__client {
  font-size: 1.6rem;
  color: var(--c-primary);
}

@media screen and (max-width: 1300px) {
  .p-service-works-inner {
    column-gap: 30px;
  }

  .p-service-works-list__ttl {
    font-size: 1.8rem;
  }

  .p-service-works-list__client {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 1005px) {
  .p-service-works-list {
    width: 100%;
  }
}

@media screen and (max-width: 960px) {
  .p-service-works-inner {
    display: block;
    column-gap: 20px;
  }

  .p-service-works-cont:last-child {
    border-top: none;
    flex: 1;
  }

  .p-service-works-list {
    padding: 15px 0;
  }
}

@media screen and (max-width: 769px) {
  .p-service-works-list__ttl {
    font-size: 1.6rem;
  }

  .p-service-works-list__client {
    font-size: 1.4rem;
  }
}

.p-service-detail {
  margin: 0 var(--sec_margin-inline) var(--cont_margin-block);
  background: #f3f6fa;
  border-radius: 70px;
  padding: calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  position: relative;
}

.p-service-detail__ttl {
  font-size: 5.0rem;
  font-weight: 700;
  padding: 0 0 40px;
  margin: 0 0 40px;
  border-bottom: 1px solid var(--c-primary);
}

.p-service-detail__catch {
  font-size: 2.6rem;
  margin-bottom: 20px;
  color: var(--c-secondary);
}

.p-service-detail__txt {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.p-service-detail__btn {
  margin-bottom: 100px;
}

.p-service-detail-box {
  margin-bottom: 100px;
}

.p-service-detail-box__catch {
  font-size: 4.0rem;
  font-weight: 700;
  margin-bottom: 30px;
}

.p-service-detail-box__txt {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.p-service-detail-box__txt:last-child {
  font-size: 2.2rem;
  margin-bottom: 0;
}

.p-service-detail-box__main {
  margin-bottom: 50px;
}

.p-service-detail-box__main img {
  border-radius: 30px;
}

.p-service-detail-box-gallery {
  display: flex;
  justify-content: space-between;
  column-gap: 60px;
  margin-bottom: 50px;
}

.p-service-detail-box-gallery__img {
  flex: 1;
}

.p-service-detail-box-gallery__img img {
  border-radius: 30px;
}

@media screen and (max-width: 1300px) {
  .p-service-detail {
    padding: 100px calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  }

  .p-service-detail__ttl {
    font-size: 4.0rem;
    padding: 0 0 30px;
    margin: 0 0 30px;
  }

  .p-service-detail__btn {
    margin-bottom: 70px;
  }

  .p-service-detail-box {
    margin-bottom: 70px;
  }

  .p-service-detail-box__catch {
    font-size: 3.0rem;
  }

  .p-service-detail-box__txt {
    font-size: 2.0rem;
  }

  .p-service-detail-box__txt:last-child {
    font-size: 2.0rem;
  }

  .p-service-detail-box-gallery {
    column-gap: 40px;
  }
}

@media screen and (max-width: 960px) {
  .p-service-detail {
    border-radius: 30px;
    padding: 70px calc(var(--cont_margin-inline) - var(--sec_margin-inline));
  }

  .p-service-detail__ttl {
    font-size: 3.6rem;
  }

  .p-service-detail__catch {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }

  .p-service-detail__txt {
    font-size: 1.8rem;
  }

  .p-service-detail-box__catch {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .p-service-detail-box__main img {
    border-radius: 20px;
  }

  .p-service-detail-box-gallery {
    column-gap: 30px;
    margin-bottom: 30px;
  }

  .p-service-detail-box-gallery__img img {
    border-radius: 20px;
  }
}

@media screen and (max-width: 767px) {
  .p-service-detail {
    padding: 30px var(--sec_margin-inline) var(--sec_margin-inline);
  }

  .p-service-detail__ttl {
    font-size: 2.4rem;
    padding: 0 0 15px;
    margin: 0 0 15px;
  }

  .p-service-detail__catch {
    font-size: 1.6rem;
  }

  .p-service-detail__txt {
    font-size: 1.4rem;
  }

  .p-service-detail__btn {
    margin-bottom: 50px;
  }

  .p-service-detail-box {
    margin-bottom: 30px;
  }

  .p-service-detail-box__catch {
    font-size: 2.0rem;
    margin-bottom: 10px;
  }

  .p-service-detail-box__txt {
    font-size: 1.4rem;
  }

  .p-service-detail-box__txt:last-child {
    font-size: 1.4rem;
  }

  .p-service-detail-box__main img {
    border-radius: 10px;
  }

  .p-service-detail-box-gallery__img img {
    border-radius: 10px;
  }
}

@media screen and (max-width: 600px) {
  .p-service-detail-box-gallery {
    display: block;
  }
}

.p-service-detail-list-box {
  margin-bottom: 30px;
  background: #fff;
  border-radius: 15px;
}

.p-service-detail-list-header {
  background: var(--c-primary);
  border-radius: 15px;
  color: #fff;
  padding: 30px 50px;
}

.p-service-detail-list-header__en {
  font-size: 1.5rem;
  color: #fff;
}

.p-service-detail-list-header__ttl {
  font-size: 3.0rem;
  font-weight: bold;
  color: #fff;
}

.p-service-detail-list-txt {
  padding: 50px;
  font-size: 2.2rem;
}

.p-service-detail-list-txt>p {}

@media screen and (max-width: 1300px) {
  .p-service-detail-list-header {
    padding: 20px 30px;
  }

  .p-service-detail-list-header__ttl {
    font-size: 2.5rem;
  }

  .p-service-detail-list-txt {
    padding: 30px;
    font-size: 2.0rem;
  }

  .p-service-detail-list-txt>p {}
}

@media screen and (max-width: 960px) {
  .p-service-detail-list-header__ttl {
    font-size: 2.3rem;
  }
}

@media screen and (max-width: 769px) {
  .p-service-detail-list-box:last-child {
    margin-bottom: 0;
  }

  .p-service-detail-list-box {
    margin-bottom: 20px;
    border-radius: 10px;
  }

  .p-service-detail-list-header {
    background: var(--c-primary);
    border-radius: 10px;
    padding: 10px 20px;
  }

  .p-service-detail-list-header__en {
    font-size: 1.2rem;
  }

  .p-service-detail-list-header__ttl {
    font-size: 1.8rem;
  }

  .p-service-detail-list-txt {
    padding: 20px;
    font-size: 1.4rem;
  }

  .p-service-detail-list-txt>p {}
}

/* お知らせ
------------------------------------------------- */

/*----- List -----*/
.p-news {
  display: flex;
  justify-content: space-between;
  margin-right: var(--cont_margin-inline);
  flex-direction: row-reverse;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .p-news {
    display: flex;
    flex-direction: column-reverse;
    justify-content: space-between;
    margin: 0 var(--cont_margin-inline);
  }
}

/*----- Sidebar -----*/
.p-news-side {
  position: relative;
  padding: 0 0 0 var(--cont_margin-inline);
  width: 250px;
}

.p-news-cat {
  background: #e7f8fe;
  border-radius: 15px;
  padding: 40px 30px;
  width: 250px;
}

.p-news-cat__ttl {
  font-size: 1.6rem;
  color: var(--c-primary);
  margin-bottom: 30px;
}

.cat-item {}

.cat-item a {
  display: block;
  padding: 0 0 20px 20px;
  position: relative;
  line-height: 1.4;
  color: var(--c-primary);
}

.current-cat a {
  color: var(--c-secondary);
}

.cat-item a:before {
  position: absolute;
  content: "";
  width: 10px;
  height: 1px;
  background: var(--c-primary);
  top: 10px;
  left: 0;
}

.p-news-cont {
  width: calc(100% - var(--cont_margin-inline) - 350px);
}

.p-news-cont .p-news-list,
.p-news-related .p-news-list {
  display: block;
}

@media screen and (max-width: 1800px) {
  .p-news-cont .p-news-list-item-cont {
    display: block;
  }
}

@media screen and (max-width: 1500px) {
  .p-news-side {
    width: 200px;
  }

  .p-news-cat {
    width: 200px;
  }

  .p-news-cat__ttl {
    margin-bottom: 20px;
  }

  .p-news-cont {
    width: calc(100% - var(--cont_margin-inline) - 250px);
  }
}

@media screen and (max-width: 1200px) {
  .p-news-side {
    width: 100%;
    padding: 0;
  }

  .p-news-cat {
    padding: 40px 30px 20px;
    width: 100%;
  }

  .p-news-cat__ul {
    display: flex;
    justify-content: flex-start;
  }

  .cat-item {
    margin-right: 30px;
  }

  .p-news-cont {
    width: 100%;
    margin-top: 100px;
  }
}

@media screen and (max-width: 960px) {
  .p-news-cat {
    padding: 20px 20px 10px 20px;
  }

  .p-news-cat__ttl {
    margin-bottom: 15px;
  }

  .p-news-cat__ul {
    flex-wrap: wrap;
  }

  .cat-item {
    margin-right: 20px;
  }

  .cat-item a {
    padding: 0 0 10px 20px;
  }

  .p-news-cont {
    margin-top: 50px;
  }
}

/*----- Pager -----*/
.p-pager {
  font-size: 0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}

.page-numbers {
  width: 80px;
  aspect-ratio: 1;
  margin: 100px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--c-primary);
  border-radius: 100%;
  transition: all .3s ease-in-out;
  color: var(--c-primary);
}

.prev.page-numbers,
.next.page-numbers {
  font-size: 2.0rem;
  transform: translateY(-2px);
  border: none;
  color: var(--c-primary);
  position: relative;
}

.prev.page-numbers:before,
.next.page-numbers:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.prev.page-numbers:before {
  left: -10px;
}

.next.page-numbers:before {
  right: -10px;
}

.page-numbers.current,
.page-numbers:hover {
  color: #fff;
  background: var(--c-primary);
}

.prev.page-numbers:hover,
.next.page-numbers:hover {
  background: none;
  color: var(--c-primary);
}

.prev.page-numbers:hover:before {
  left: -15px;
}

.next.page-numbers:hover:before {
  right: -15px;
}

@media screen and (max-width: 960px) {
  .page-numbers {
    margin: 50px 0 0 0;
  }
}

@media screen and (max-width: 769px) {
  .p-pager {
    column-gap: 5px;
  }

  .page-numbers {
    width: 40px;
    font-size: 1.4rem;
  }

  .prev.page-numbers,
  .next.page-numbers {
    font-size: 1.2rem;
  }
}


/* お知らせ-詳細-
------------------------------------------------- */
.p-news-detail-header {
  padding: 0 0 50px;
  margin: 0 0 70px;
  border-bottom: 1px solid var(--c-border);
}

.p-news-detail-info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 40px;
}

.p-news-detail-info__date {
  color: var(--c-primary);
  font-size: 1.6rem;
  width: 120px;
}

.p-news-detail-info__cat {
  width: 170px;
  margin-right: 20px;
}

.p-news-detail-info__cat span {
  display: inline-block;
  background: var(--c-primary);
  color: #fff;
  padding: 6px 20px;
  font-size: 1.3rem;
  border-radius: 30px;
  line-height: 1.4;
  margin: 3px 5px 3px 0;
}

.p-news-detail-ttl {
  font-size: 3.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 1300px) {
  .p-news-detail-header {
    padding: 0 0 40px;
    margin: 0 0 50px;
  }

  .p-news-detail-info {
    margin-bottom: 30px;
  }

  .p-news-detail-ttl {
    font-size: 2.8rem;
  }

  .p-news-detail-info {
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 960px) {
  .p-news-detail-info__date {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  .p-news-detail-header {
    padding: 0 0 20px;
    margin: 0 0 20px;
  }

  .p-news-detail-info {
    margin-bottom: 10px;
  }

  .p-news-detail-ttl {
    font-size: 2.4rem;
  }

  .p-news-detail-info__date {
    font-size: 1.2rem;
    width: 90px;
  }

  .p-news-detail-info__cat {
    /* width: calc(100% - 90px); */
    width: auto;
  }

  .p-news-detail-info__cat span {
    padding: 3px 12px;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.1;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

.p-news-detail-cont p {
  letter-spacing: .01em;
  line-height: 2.2;
  margin-bottom: 30px;
}

/* p-news-related */
.p-news-raleted-ttl {
  margin-bottom: 20px;
  font-size: 4.0rem;
}

.p-news-raleted-ttl__jp {
  font-size: 1.8rem;
  color: var(--c-primary);
  margin-left: 20px;
}

@media screen and (max-width: 1200px) {
  .p-news-raleted-ttl {
    font-size: 3.5rem;
  }

  .p-news-raleted-ttl__jp {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 960px) {
  .p-news-raleted-ttl {
    font-size: 3.0rem;
  }

  .p-news-raleted-ttl__jp {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 769px) {
  .p-news-raleted-ttl {
    font-size: 2.4rem;
  }

  .p-news-raleted-ttl__jp {
    display: block;
    font-size: 1.4rem;
    margin-left: 0;
  }
}

/* Pagenation */
.p-pagenation {
  margin-top: 100px;
  position: relative;
}

.p-pagenation__btn {
  width: 100%;
  max-width: 320px;
  height: 70px;
  margin: 0 auto;
}

.p-pagenation__btn a {
  width: 100%;
  height: 70px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2.0rem;
  background: var(--c-primary);
  color: #fff;
  border-radius: 70px;
  transition: all .3s ease-in-out;
  border: 2px solid var(--c-primary);
}

.p-pagenation__btn a:hover {
  background: #fff;
  color: var(--c-primary);
}

.p-pagenation__turn {
  position: absolute;
}

.-prev.p-pagenation__turn {
  top: 50%;
  right: 50%;
  transform: translateY(-50%) translateX(-200px);
}

.-next.p-pagenation__turn {
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(200px);
}

.p-pagenation__turn a {
  font-size: 2.0rem;
  color: var(--c-primary);
  padding: 0 10px;
}

.p-pagenation__turn:before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  background: var(--c-primary);
  border-radius: 100%;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s ease-in-out;
}

.-prev.p-pagenation__turn:before {
  left: -10px;
}

.-next.p-pagenation__turn:before {
  right: -10px;
}

.-prev.p-pagenation__turn:hover,
.-next.p-pagenation__turn:hover {
  background: none;
  color: var(--c-primary);
}

.-prev.p-pagenation__turn:hover:before {
  left: -15px;
}

.-next.p-pagenation__turn:hover:before {
  right: -15px;
}

@media screen and (max-width: 1200px) {
  .p-pagenation {
    margin-top: 70px;
  }

  .p-pagenation__btn {
    max-width: 260px;
  }

  .p-pagenation__btn a {
    font-size: 1.8rem;
  }

  .-prev.p-pagenation__turn {
    transform: translateY(-50%) translateX(-170px);
  }

  .-next.p-pagenation__turn {
    transform: translateY(-50%) translateX(170px);
  }
}

@media screen and (max-width: 769px) {
  .p-pagenation {
    margin-top: 50px;
  }

  .p-pagenation__btn {
    max-width: 180px;
    height: 50px;
  }

  .p-pagenation__btn a {
    height: 50px;
    font-size: 1.4rem;
  }

  .-prev.p-pagenation__turn {
    transform: translateY(-50%) translateX(-100px);
  }

  .-next.p-pagenation__turn {
    transform: translateY(-50%) translateX(100px);
  }

  .p-pagenation__turn a {
    font-size: 1.2rem;
    padding: 0 5px;
  }
}


/* お問い合わせ
------------------------------------------------- */
.p-contact-lead {
  margin-bottom: 100px;
  font-size: 2.2rem;
}

.p-contact-sec {
  margin-bottom: 150px;
  padding-bottom: 150px;
  border-bottom: 1px solid var(--c-border);
}

.p-contact-sec:last-child {
  margin-bottom: 0;
  padding-bottom: 150px;
  border-bottom: none;
}

@media screen and (max-width: 1300px) {
  .p-contact-lead {
    font-size: 2.0rem;
  }

  .p-contact-sec {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }

  .p-contact-sec:last-child {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 960px) {
  .p-contact-lead {
    font-size: 2.0rem;
  }

  .p-contact-sec {
    margin-bottom: 100px;
    padding-bottom: 100px;
  }

  .p-contact-sec:last-child {
    padding-bottom: 100px;
  }
}

@media screen and (max-width: 767px) {
  .p-contact-lead {
    margin-bottom: 50px;
    font-size: 1.6rem;
  }

  .p-contact-sec {
    margin-bottom: 50px;
    padding-bottom: 50px;
  }

  .p-contact-sec:last-child {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 500px) {
  .p-contact-lead {
    margin-bottom: 30px;
    font-size: 1.4rem;
  }
}

/*----- Tel -----*/
.p-contact-main__tel span {
  font-size: 2.4rem;
  display: inline-block;
  margin-right: 10px;
  color: var(--c-primary);
  line-height: 1.0;
}

.p-contact-main__tel a {
  font-size: 4.8rem;
  color: var(--c-primary);
  line-height: 1.0;
}

.p-contact-main__sche {
  font-size: 1.6rem;
}

@media screen and (max-width: 960px) {
  .p-contact-main__tel span {
    font-size: 2.0rem;
  }

  .p-contact-main__tel a {
    font-size: 3.5rem;
  }
}

@media screen and (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

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

  .p-contact-main__tel span {
    font-size: 1.4rem;
  }

  .p-contact-main__tel a {
    font-size: 2.8rem;
  }

  .p-contact-main__sche {
    font-size: 1.4rem;
  }
}

/* ----- Layout -----*/
.p-contact-sec__inner {
  display: flex;
  justify-content: space-between;
}

.p-contact-ttl {
  width: 300px;
  padding: 30px 0 0;
}

.p-contact-ttl__ttl {
  font-size: 2.4rem;
  font-weight: 700;
}

.p-contact-main {
  width: calc(100% - 300px);
  padding: 30px 0 30px 100px;
  border-left: 1px solid #d8d8d8;
}

@media screen and (max-width: 1500px) {
  .p-contact-ttl {
    width: 250px;
  }

  .p-contact-main {
    width: calc(100% - 250px);
  }
}

@media screen and (max-width: 1300px) {
  .p-contact-sec__inner {
    display: block;
  }

  .p-contact-ttl {
    width: 100%;
    padding: 0 0 50px;
  }

  .p-contact-ttl__ttl {
    font-size: 3.0rem;
  }

  .p-contact-main {
    width: 100%;
    padding: 50px 0;
    border-left: none;
    border-top: 1px solid #d8d8d8;
  }
}

@media screen and (max-width: 960px) {
  .p-contact-ttl {
    padding: 0 0 30px;
  }

  .p-contact-ttl__ttl {
    font-size: 2.4rem;
  }

  .p-contact-main {
    padding: 30px 0;
  }
}

@media screen and (max-width: 769px) {
  .p-contact-ttl {
    padding: 0 0 20px;
  }

  .p-contact-ttl__ttl {
    font-size: 2.0rem;
  }

  .p-contact-main {
    padding: 20px 0;
  }
}

/* ----- Form -----*/
.p-contact-main__intro {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .p-contact-main__intro {
    margin-bottom: 30px;
  }
}

/* Guide */
.p-contact-guide {
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0 130px;
  position: relative;
  display: flex;
  margin-bottom: 50px;
}

.p-contact-guide:before {
  width: calc(100% - 22px);
  height: 1px;
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: -1;
  background: var(--c-border);
}

.p-contact-guide__item {
  letter-spacing: .15em;
  line-height: 1;
  font-size: 1.6rem;
}

.p-contact-guide__item:before {
  width: 15px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  margin-inline: auto;
  content: '';
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100%;
}

.p-contact-guide__item.-current {
  color: var(--c-primary);
}

.p-contact-guide__item.-current:before {
  width: 15px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  content: '';
  display: block;
  background: #fff;
  border: 3px solid var(--c-primary);
}

@media screen and (max-width: 767px) {
  .p-contact-guide {
    gap: 0 70px;
    margin-bottom: 30px;
  }

  .p-contact-guide__item {
    font-size: 1.4rem;
  }
}

/* Contents */
.p-form-table {
  margin-bottom: 50px;
  border-top: 1px solid var(--c-border);
}

.p-form-table dl {
  padding-block: 25px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--c-border);
}

.p-form-table dl dt {
  width: 320px;
  padding-left: 50px;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.p-form-table dl dd.c-col-s {
  width: 60px;
  flex-shrink: 0;
  font-size: 1.6rem;
}

.p-form-table dl dd.c-col-l {
  width: calc(100% - 380px);
  padding-left: 50px;
  font-size: 1.6rem;
}

.p-form-txt {
  margin-bottom: 5px;
  display: block;
  font-size: 1.4rem;
}

.p-form-rec {
  width: 100%;
  padding: 8px 0 9px;
  display: block;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--c-primary);
  border-radius: 5px;
  color: var(--c-primary);
}

@media screen and (max-width: 1600px) {
  .p-form-table dl dt {
    width: 250px;
    padding-left: 0;
  }

  .p-form-table dl dd.c-col-l {
    width: calc(100% - 310px);
  }
}

@media screen and (max-width: 1500px) {
  .p-form-table dl dt {
    width: 200px;
  }

  .p-form-table dl dd.c-col-l {
    width: calc(100% - 260px);
  }
}

@media screen and (max-width: 960px) {
  .p-form-table dl dt {
    width: 180px;
  }

  .p-form-table dl dd.c-col-l {
    width: calc(100% - 240px);
    padding-left: 30px;
  }
}

@media screen and (max-width: 769px) {
  .p-form-table {
    margin-bottom: 30px;
  }

  .p-form-table dl {
    flex-wrap: wrap;
  }

  .p-form-table dl dt {
    width: calc(100% - 50px);
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .p-form-table dl dd.c-col-s {
    width: 50px;
    font-size: 1.4rem;
    margin-bottom: 10px;
  }

  .p-form-table dl dd.c-col-l {
    width: 100%;
    font-size: 1.4rem;
    padding-left: 0;
  }

  .p-form-txt {
    font-size: 1.2rem;
  }

  .p-form-rec {
    padding: 7px 0;
    font-size: 1.2rem;
  }
}



.p-form-check__link {
  font-size: 1.4rem;
  margin: 40px 0 5px;
}

.p-entry-form .p-form-check__link {
  text-align: center;
}

.p-form-check__link a {
  text-decoration: underline;
}

.p-form-check {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  /*font-size: 0;*/
  /*text-align: center;*/
}
.p-form-contact {
  display: flex;
  justify-content: left !important;
}

 {
  width: 100%;
  margin-bottom: 50px;
  display: flex;
  justify-content: center;
  position: relative;
  /*font-size: 0;*/
  /*text-align: center;*/
}


.p-entry-form .p-form-check {
  margin: 0 auto 50px;
}

.p-form-check input[type="checkbox"] {
  margin-right: 10px;
  display: inline-block;
}

.wpcf7-form-control-wrap {
  display: inline-block;
}

.wpcf7-form-control-wrap input[type="checkbox"] {
  margin-right: 0;
}

.p-form-check__txt {
  display: inline-block;
  position: relative;
  font-size: 1.6rem;
  letter-spacing: .1em;
  line-height: 1;
}

@media screen and (max-width: 769px) {
  .p-form-check__txt {
    font-size: 1.4rem;
  }
}

/* ----- 確認画面、完了画面 -----*/
#form02 .p-contact-lead,
#form03 .p-contact-lead {
  padding: 20px;
  font-size: 1.6rem;
  line-height: 1.75;
}

.p-contact-lead.-error {
  margin-bottom: 60px;
  color: #b10000;
  border: 3px solid #b10000;
}

.p-contact-lead.-confirm {
  margin-bottom: 60px;
  color: var(--c-primary);
  border: 3px solid var(--c-primary);
}

.error_messe {
  color: #b10000;
}

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

  #form02 .p-form-table dl,
  #form03 .p-form-table dl {
    flex-direction: column;
  }

  #form02 .p-form-table dl dt,
  #form02 .p-form-table dl dd,
  #form03 .p-form-table dl dt,
  #form03 .p-form-table dl dd {
    width: 100%;
  }

  .p-form-btnarea {
    flex-direction: column;
  }
}

/* エントリー
------------------------------------------------- */
.p-entry-job-tab__menu {
  display: flex;
  justify-content: center;
  column-gap: 30px;
  list-style: none;
  padding: 0;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}

.p-entry-job-tab-menu__li {
  flex: 1;
  width: 50%;
}

.p-entry-job-tab-menu__li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 130px;
  color: var(--c-primary);
  background: #fff;
  border: 1px solid var(--c-primary);
  border-bottom: none;
  border-radius: 30px 30px 0 0;
  font-size: 3.0rem;
  transition: all .3s ease-in-out;
}

.p-entry-job-tab-menu__li a:hover,
.p-entry-job-tab-menu__li.active a {
  color: #fff;
  background: var(--c-primary);
}

.p-entry-job-tab__panel {
  /*display: none;*/
  padding: 95px;
  border: 5px solid var(--c-primary);
  border-radius: 30px;
  background: #fff;
}

/*.p-entry-job-tab__panel.active {
  display: block;
}*/
@media screen and (max-width: 1500px) {
  .p-entry-job-tab-menu__li a {
    height: 110px;
    font-size: 2.5rem;
  }

  .p-entry-job-tab__panel {
    padding: 75px;
  }
}

@media screen and (max-width: 1300px) {
  .p-entry-job-tab__menu {
    column-gap: 20px;
  }

  .p-entry-job-tab-menu__li a {
    height: 90px;
    border-radius: 20px 20px 0 0;
  }

  .p-entry-job-tab__panel {
    padding: 45px;
    border-radius: 20px;
  }
}

@media screen and (max-width: 960px) {
  .p-entry-job-tab__menu {
    column-gap: 10px;
  }

  .p-entry-job-tab-menu__li a {
    height: 70px;
    border-radius: 10px 10px 0 0;
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 769px) {
  .p-entry-job-tab-menu__li a {
    height: 60px;
    font-size: 1.8rem;
  }

  .p-entry-job-tab__panel {
    padding: 17px;
    border: 3px solid var(--c-primary);
  }
}

@media screen and (max-width: 600px) {
  .p-entry-job-tab__menu {
    column-gap: 5px;
    width: 95%;
  }

  .p-entry-job-tab-menu__li a {
    height: 50px;
    font-size: 1.4rem;
  }

  .p-entry-job-tab__panel {
    border-radius: 10px;
  }
}

.p-entry-job__catch {
  font-size: 4.0rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.p-entry-job__txt {
  font-size: 2.2rem;
  margin-bottom: 50px;
}

.p-entry-job-table {
  margin-bottom: 100px;
}

p.p-entry-job-flow__en {
  margin-bottom: 0;
}

.p-entry-job-flow__ttl {
  font-size: 3.0rem;
  font-weight: 700;
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--c-primary);
}

.p-entry-job-flow__inner {
  display: flex;
  justify-content: space-between;
  column-gap: 50px;
  counter-reset: num;
}

.p-entry-job-flow-box {
  flex: 1;
  counter-increment: num;
  position: relative;
}

.p-entry-job-flow-box:before {
  position: absolute;
  content: "";
  width: 15px;
  height: 15px;
  border: 1px solid var(--c-primary);
  border-left: none;
  border-top: none;
  transform: rotate(315deg) translateX(-50%);
  top: 0%;
  right: -30px;
}

.p-entry-job-flow-box:last-child:before {
  display: none;
}

.p-entry-job-flow-box__ttl {
  display: ruby-text;
  padding: 0 0 0 50px;
  margin-bottom: 15px;
  font-size: clamp(1.6rem, 1.3vw, 2.4rem);
  position: relative;
  line-height: 1.0;
}

.p-entry-job-flow-box__ttl:before {
  position: absolute;
  content: counter(num, decimal-leading-zero);
  font-size: 2.8rem;
  color: var(--c-primary);
  top: -2px;
  left: 0;
  line-height: 1.0;
}

@media screen and (max-width: 1300px) {
  .p-entry-job__catch {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }

  .p-entry-job__txt {
    font-size: 2.0rem;
    margin-bottom: 40px;
  }

  .p-entry-job-flow__ttl {
    font-size: 2.6rem;
  }

  .p-entry-job-flow__inner {
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 30px;
  }

  .p-entry-job-flow-box {
    flex: inherit;
    /*width: calc( 33.333% - 20px );*/
    margin-bottom: 10px;
    margin-right: 30px;
  }

  .p-entry-job-flow-box:before {
    right: -38px;
  }

  .p-entry-job-flow-box__ttl {
    padding: 0 0 0 40px;
    font-size: 2.0rem;
    line-height: 1.2;
  }

  .p-entry-job-flow-box__ttl:before {
    font-size: 2.2rem;
    top: 0;
    line-height: 1.2;
  }
}

@media screen and (max-width: 960px) {
  .p-entry-job__catch {
    font-size: 3.0rem;
    margin-bottom: 10px;
  }

  .p-entry-job__txt {
    margin-bottom: 30px;
  }

  .p-entry-job-table {
    margin-bottom: 50px;
  }

  .p-entry-job-flow__ttl {
    font-size: 2.4rem;
    padding-bottom: 10px;
    margin-bottom: 20px;
  }

  .p-entry-job-flow__inner {
    display: block;
  }

  .p-entry-job-flow-box {
    width: 100%;
    padding-bottom: 20px;
    margin-bottom: 10px;
  }

  .p-entry-job-flow-box:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
  }

  .p-entry-job-flow-box:before {
    transform: rotate(45deg) translateX(-50%);
    top: inherit;
    bottom: 0;
    left: 13%;
    right: inherit;
  }

  .p-entry-job-flow-box__ttl {
    margin-bottom: 10px;
  }

  .p-entry-job-flow-box__ttl:before {
    font-size: 2.0rem;
  }
}

@media screen and (max-width: 769px) {
  .p-entry-job__catch {
    font-size: 2.2rem;
    margin-bottom: 5px;
  }

  .p-entry-job__txt {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }

  .p-entry-job-table {
    margin-bottom: 30px;
  }

  .p-entry-job-flow__ttl {
    font-size: 2.0rem;
  }

  .p-entry-job-flow-box__ttl {
    padding: 0 0 0 30px;
    font-size: 1.6rem;
  }

  .p-entry-job-flow-box__ttl:before {
    font-size: 1.6rem;
  }
}


.p-entry-main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.p-entry-contact__en,
.p-entry-contact__ttl {
  text-align: center;
}

.p-entry-main__intro {
  margin-bottom: 50px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .p-entry-main__intro {
    margin-bottom: 30px;
  }
}

.p-entry-guide {
  width: fit-content;
  align-items: center;
  justify-content: center;
  gap: 0 130px;
  position: relative;
  display: flex;
  margin: 0 auto 50px;
}

.p-entry-guide:before {
  width: calc(100% - 22px);
  height: 1px;
  content: '';
  position: absolute;
  top: 7px;
  left: 10px;
  z-index: -1;
  background: var(--c-border);
}

.p-entry-guide__item {
  letter-spacing: .15em;
  line-height: 1;
  font-size: 1.6rem;
}

.p-entry-guide__item:before {
  width: 15px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  margin-inline: auto;
  content: '';
  display: block;
  background: #fff;
  border: 1px solid var(--c-border);
  border-radius: 100%;
}

.p-entry-guide__item.-current {
  color: var(--c-primary);
}

.p-entry-guide__item.-current:before {
  width: 15px;
  aspect-ratio: 1;
  margin-bottom: 16px;
  content: '';
  display: block;
  background: #fff;
  border: 3px solid var(--c-primary);
}

@media screen and (max-width: 767px) {
  .p-entry-guide {
    gap: 0 70px;
    margin-bottom: 30px;
  }

  .p-entry-guide__item {
    font-size: 1.4rem;
  }
}

/*プラグイン*/
.wpcf7 form .wpcf7-response-output {
  background: #ffb900;
  padding: 15px;
  text-align: center;
  color: #fff;
  border-radius: 10px;
  border: none;
  margin-bottom: 30px !important;
}

.wpcf7 form .wpcf7-response-output:empty {
  display: none;
}

.wpcf7-not-valid-tip {
  color: #dc3232 !important;
  font-size: 1.4rem;
  font-weight: normal;
  display: block;
  text-align: left;
}

.p-entry-form .p-form-check .wpcf7-not-valid-tip {
  text-align: center;
}

#form01 .p-form-table .p-col-l span.wpcf7-form-control-wrap {
  display: block;
}

.wpcf7-spinner {
  display: none;
}

#form01 span.wpcf7-not-valid-tip {
  display: block;
  font-size: 1.5rem;
  margin-top: 3px;
}

.wpcf7-list-item {
  margin-left: 0 !important;
  margin-right: 15px;
}

.wpcf7-list-item input[type="radio"] {
  transform: translateY(1px);
}

.wpcf7-list-item input[type="checkbox"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid var(--c-border);
  transform: translateY(1px);
  border-radius: 3px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.wpcf7-list-item input[type="checkbox"]:checked {
  background: var(--c-primary);
  border: 1px solid var(--c-primary);
}

.wpcf7-list-item input[type="checkbox"]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: '';
}

.wpcf7-list-item-label {
  margin-left: 3px;
}

/* Utility
------------------------------------------------- */
/* ---------- Display ----------*/
.u-m-xxl,
.u-m-xl,
.u-m-lg,
.u-m-md,
.u-m-sm,
.u-m-xs {
  display: none;
}

.u-p-xxl,
.u-p-xl,
.u-p-lg,
.u-p-md,
.u-p-sm,
.u-p-xs {
  display: block;
}

@media screen and (max-width: 1780px) {
  .u-m-xxxxxl {
    display: block;
  }

  .u-p-xxxxxl {
    display: none;
  }
}

@media screen and (max-width: 1630px) {
  .u-m-xxxxl {
    display: block;
  }

  .u-p-xxxxl {
    display: none;
  }
}

@media screen and (max-width: 1580px) {
  .u-m-xxxl {
    display: block;
  }

  .u-p-xxxl {
    display: none;
  }
}

@media screen and (max-width: 1440px) {
  .u-m-xxl {
    display: block;
  }

  .u-p-xxl {
    display: none;
  }
}

@media screen and (max-width: 1300px) {
  .u-m-xl {
    display: block;
  }

  .u-p-xl {
    display: none;
  }
}

@media screen and (max-width: 1100px) {
  .u-m-l {
    display: block;
  }

  .u-p-l {
    display: none;
  }
}

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

  .u-p-lg {
    display: none;
  }
}

@media screen and (max-width: 960px) {
  .u-m-md {
    display: block;
  }

  .u-p-md {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .u-m-sm {
    display: block;
  }

  .u-p-sm {
    display: none;
  }
}

@media screen and (max-width: 428px) {
  .u-m-xs {
    display: block;
  }

  .u-p-xs {
    display: none;
  }
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
    display: none;
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output{
    display: none;
}