@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+Gurmukhi:wght@100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

body {
  font-size: 15px;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  color: #1A1A1A;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.032em;
}

.inner {
  max-width: 1140px;
  margin: 0 auto;
  width: 79.16%;
}

.inner--size-l {
  max-width: 1240px;
  width: 86.11%;
}

.textCenter {
  text-align: center;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    line-height: 2;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 左から */
.fadeLeft {
  -webkit-animation-name: fadeLeftAnime;
          animation-name: fadeLeftAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeLeftAnime {
  from {
    opacity: 0;
    transform: translateX(-100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* 右から */
.fadeRight {
  -webkit-animation-name: fadeRightAnime;
          animation-name: fadeRightAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeRightAnime {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeInTrigger,
.fadeUpTrigger,
.fadeLeftTrigger,
.fadeRightTrigger,
.fadeInLoadTrigger,
.fadeUpLoadTrigger,
.fadeLeftLoadTrigger,
.fadeRightLoadTrigger {
  opacity: 0;
}

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

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

@keyframes zoomInAnime {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* 縮小 */
.zoomOut {
  -webkit-animation-name: zoomOutAnime;
          animation-name: zoomOutAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes zoomOutAnime {
  from {
    transform: scale(1.2);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.zoomInTrigger,
.zoomOutTrigger,
.zoomInLoadTrigger,
.zoomOutLoadTrigger {
  opacity: 0;
}

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

@-webkit-keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurAnime {
  from {
    filter: blur(10px);
    transform: scale(1.02);
    opacity: 0;
  }
  to {
    filter: blur(0);
    transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.blurTrigger,
.blurLoadTrigger {
  opacity: 0;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.delay-time15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.delay-time2 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.delay-time25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

/* アニメーション自体が変化する時間を決めるCSS*/
.change-time05 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
}

.change-time1 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}

.change-time15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}

.change-time2 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.change-time25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
}

.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.l-left {
  margin-left: 0;
  margin-right: auto;
}

.l-right {
  margin-right: 0;
  margin-left: auto;
}

.bl-btn {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
}
@media screen and (max-width: 768px) {
  .bl-btn {
    margin-left: auto;
    margin-right: 0;
  }
}
.bl-btn a {
  display: block;
  font-size: 20px;
  color: #FFFFFF;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  padding: 12px 55px;
  opacity: 1;
  transition: all 0.5s;
}
.bl-btn a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .bl-btn a {
    font-size: 15px;
    font-weight: 500;
    padding: 12px 45px;
  }
}

.bl-btn--redGradient a {
  background: linear-gradient(90deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
}

.bl-btn--ellipse a {
  border-radius: 50px;
}

.bl-btn--wh a {
  background-color: #FFFFFF;
  color: #AF1A24;
}

.bl-btn--center {
  margin-left: auto;
  margin-right: auto;
}

.bl-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bl-flex__rowCenter {
  justify-content: center;
}

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

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

.bl-flex__topAlignment {
  align-items: flex-start;
}

.bl-flex__bottomAlignment {
  align-items: flex-start;
}

.bl-ttl {
  position: relative;
}

.bl-ttl__bgEn {
  font-family: serif;
  font-size: 129px;
  font-weight: 700;
  line-height: 1;
  -webkit-text-stroke: 1px #AF1A24;
  text-stroke: 1px #AF1A24;
  color: transparent;
  position: absolute;
  top: 0;
  left: -3.4vw;
  transform: translateY(-45%);
  opacity: 0.2;
}
@media screen and (max-width: 1280px) {
  .bl-ttl__bgEn {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__bgEn {
    font-size: 60px;
    top: 10px;
    -webkit-text-stroke: 0.5px #AF1A24;
    text-stroke: 0.5px #AF1A24;
    min-height: 71px;
  }
}

.bl-ttl__en {
  font-size: 39px;
  font-weight: 700;
  color: #AF1A24;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-ttl__en {
    font-size: 28px;
  }
}

.bl-ttl__ja {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1;
  padding-bottom: 17.5px;
  position: relative;
  margin-top: 10px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 13px;
  }
}
.bl-ttl__ja::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: #AF1A24;
  width: 64px;
  height: 1px;
}

.bl-subTtl {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 0.076em;
  line-height: 1.35;
  font-family: "Noto Serif JP", serif;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .bl-subTtl {
    font-size: 20px;
    margin-top: 20px;
  }
}

.bl-ttl--center {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.bl-ttl__bgEn--center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .bl-ttl__bgEn--center {
    top: 15%;
  }
}

.bl-ttl__bgEn--fix {
  position: relative;
  top: unset;
  left: unset;
  transform: unset;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__bgEn--fix {
    transform: unset;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: 5.33%;
  }
}

.bl-ttl__bgEn--txtWh {
  -webkit-text-stroke: 1px #FFFFFF;
  text-stroke: 1px #FFFFFF;
}

.bl-ttl__en--txtWh,
.bl-ttl__ja--txtWh,
.bl-subTtl--txtWh {
  color: #FFFFFF;
}

.bl-ttl__en--center,
.bl-ttl__ja--center {
  text-align: center;
}

.bl-ttl__ja--center::after {
  left: 50%;
  transform: translateX(-50%);
}

.bl-ttl__ja--txtWh::after {
  background-color: #FFFFFF;
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  width: 100%;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  left: 0;
  padding: 0 3.33% 0 6.94%;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .head {
    padding: 0 3.3%;
  }
}
.head.head__topPage {
  transform: translateY(-100%);
  -webkit-animation-name: headLoadAnime;
          animation-name: headLoadAnime;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes headLoadAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.head__logo {
  width: 19.16%;
  max-width: 300px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .head__logo {
    width: 54%;
    max-width: 300px;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 9999;
  }
}
@media screen and (max-width: 1024px) {
  .head__logo img {
    -o-object-fit: contain;
       object-fit: contain;
  }
}
.head__logo .logoBk--top {
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.5s;
  opacity: 0;
}
.head__logo .logoWh {
  opacity: 1;
  transition: all 0.5s;
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.headNav-list .headNav-list__item:not(:last-of-type) {
  margin-right: 43px;
}
@media screen and (max-width: 1280px) {
  .headNav-list .headNav-list__item:not(:last-of-type) {
    margin-right: 30px;
  }
}
.headNav-list .headNav-list__item:nth-last-of-type(2) {
  margin-right: 51px;
}
@media screen and (max-width: 1280px) {
  .headNav-list .headNav-list__item:nth-last-of-type(2) {
    margin-right: 45p;
  }
}

.headNav-list__item a {
  color: #1A1A1A;
  font-weight: 500;
  font-size: 16px;
  line-height: 1;
  opacity: 1;
  transition: all 0.5s;
  font-family: "Noto Sans JP", sans-serif;
}
.headNav-list__item a:hover {
  transition: all 0.5s;
  opacity: 0.7;
}
@media screen and (max-width: 1024px) {
  .headNav-list__item a {
    font-size: 14px;
  }
}

.headNav-list__item--contact a {
  display: block;
  padding: 15px 45px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
  color: #FFFFFF;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 1280px) {
  .headNav-list__item--contact a {
    padding: 15px 30px;
  }
}

.head__topPage .headNav-list__item a {
  color: #FFFFFF;
  transition: all 0.5s;
}
.head__topPage.js-changeColor .headNav-list__item a {
  color: #1A1A1A;
  transition: all 0.5s;
}
.head__topPage.js-changeColor .headNav-list__item.headNav-list__item--contact a {
  color: #FFFFFF;
}

.head__topPage.js-changeColor .head__logo .logoBk {
  opacity: 1;
  transition: all 0.5s;
}
.head__topPage.js-changeColor .head__logo .logoWh {
  opacity: 0;
  transition: all 0.5s;
}
.head__topPage.js-navOpen .head__logo .logoBk {
  opacity: 1;
  transition: all 0.5s;
}
.head__topPage.js-navOpen .head__logo .logoWh {
  opacity: 0;
  transition: all 0.5s;
}

.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  height: 100vh;
  background: linear-gradient(180deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
  transition: all 0.3s;
}
.burger-nav::after {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  content: "";
  background-color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
}

.burger-nav.panelactive .burger-nav__listWrap {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

.burger-nav .burger-nav__list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.burger-nav.panelactive .burger-nav__list {
  display: block;
}

.burger-nav .burger-nav__item {
  list-style: none;
  text-align: center;
}

.burger-nav .burger-nav__item a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 29px;
  right: 20px;
  cursor: pointer;
  width: 30px;
  height: 16px;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 0;
  height: 2px;
  background-color: #1A1A1A;
  width: 100%;
}

.openbtn1.openbtn1--topPage span {
  background-color: #FFFFFF;
  transition: all 0.5s;
}

.openbtn1.openbtn1--topPage.js-changeColor span {
  background-color: #1A1A1A;
  transition: all 0.5s;
}

.openbtn1.openbtn1--topPage.js-navOpen span {
  background-color: #1A1A1A;
  transition: all 0.5s;
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn1 span:nth-of-type(3) {
  bottom: 0;
}

.openbtn1.active span:nth-of-type(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-35deg);
  width: 100%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(35deg);
  width: 100%;
}

.burger-nav__item--contact {
  margin-top: 35px;
}

.burger-nav .burger-nav__item {
  font-family: "Noto Sans JP", sans-serif;
}
.burger-nav .burger-nav__item.burger-nav__item--contact a {
  display: block;
  padding: 15px 45px;
  border-radius: 50px;
  background: linear-gradient(90deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
  color: #FFFFFF;
}

/*---------------------------
フッター
---------------------------*/
.foot {
  padding: 53.5px 0 0;
  border-top: 1px solid #AF1A24;
}
@media screen and (max-width: 768px) {
  .foot {
    padding-top: 20px;
  }
}

.inner--footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner--footer {
    display: block;
  }
}

.foot__logo {
  width: 23.61%;
  max-width: 350px;
}
@media screen and (max-width: 768px) {
  .foot__logo {
    width: 68%;
  }
}

.foot__navList {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .foot__navList {
    display: block;
    margin-top: 30px;
  }
}
.foot__navList .foot__navItem:not(:last-child) {
  margin-right: 51px;
}
@media screen and (max-width: 768px) {
  .foot__navList .foot__navItem:not(:last-child) {
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.foot__navItem a {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.036em;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .foot__navItem a {
    font-size: 14px;
    line-height: 1;
  }
}

.foot__navItem__pageNav {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .foot__navItem__pageNav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 0;
    margin-left: 10px;
  }
}
.foot__navItem__pageNav .foot__navItem__pageNav-item {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .foot__navItem__pageNav .foot__navItem__pageNav-item {
    margin-right: 10px;
  }
}
.foot__navItem__pageNav .foot__navItem__pageNav-item a {
  font-size: 14px;
  color: #A0A0A0;
  line-height: 1;
  letter-spacing: 0.028em;
}
@media screen and (max-width: 768px) {
  .foot__navItem__pageNav .foot__navItem__pageNav-item a {
    font-size: 12px;
  }
}

.copyright {
  padding: 12px 0;
  background-color: #AF1A24;
  color: #FFFFFF;
  display: block;
  text-align: center;
  width: 100%;
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 10px 0;
    margin-top: 25px;
    font-size: 10px;
  }
}

/*---------------------------
ページ共通
---------------------------*/
.normal-doc--top-about {
  margin-top: 41px;
}

.normal-doc--txtWh {
  color: #FFFFFF;
}

/*======== お問い合わせセクション =========*/
.common-contact {
  padding: 114px 0 154px;
}
@media screen and (max-width: 768px) {
  .common-contact {
    padding: 80px 0;
  }
}

.inner--common-contact {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner--common-contact {
    display: block;
  }
}

.common-contact__side-l {
  width: 570px;
}
@media screen and (max-width: 768px) {
  .common-contact__side-l {
    width: 100%;
  }
}

.bl-subTtl--common-contact {
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .bl-subTtl--common-contact {
    margin-top: 20px;
  }
}

.normal-doc--common-contact {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .normal-doc--common-contact {
    margin-top: 20px;
  }
}

.common-contact-btn {
  width: 458px;
}
@media screen and (max-width: 768px) {
  .common-contact-btn {
    width: 100%;
    margin-top: 30px;
  }
}

.common-contact-btn__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #AF1A24;
}
@media screen and (max-width: 768px) {
  .common-contact-btn__item a {
    border: 2px solid #AF1A24;
  }
}

.common-contact-btn__item--tel {
  margin-bottom: 20px;
}
.common-contact-btn__item--tel a {
  padding: 18px 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .common-contact-btn__item--tel a {
    padding: 15px 0;
  }
}

.common-contact-btn__item--form a {
  padding: 25px 0;
  width: 100%;
  background-color: #AF1A24;
}
@media screen and (max-width: 768px) {
  .common-contact-btn__item--form a {
    padding: 15px 0;
  }
}

.tel-icon {
  width: 44px;
  height: auto;
  margin-right: 21px;
}
@media screen and (max-width: 768px) {
  .tel-icon {
    width: 25px;
    margin-right: 10px;
  }
}

.tel-num {
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.034em;
  color: #AF1A24;
}
@media screen and (max-width: 768px) {
  .tel-num {
    font-size: 25px;
  }
}

.mail-icon {
  width: 35px;
  margin-right: 37px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .mail-icon {
    width: 25px;
    margin-right: 10px;
  }
}

.mail-txt {
  font-size: 20px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.048em;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .mail-txt {
    font-size: 17px;
  }
}

.under-fv {
  padding-top: 150px;
}

.page-ttl {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.page-ttl__en {
  text-align: center;
  font-size: 86px;
  font-weight: 700;
  letter-spacing: 0.043em;
  line-height: 1;
  color: #AF1A24;
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .page-ttl__en {
    font-size: 36px;
  }
}

.page-ttl___ja {
  font-size: 18px;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.037em;
  display: block;
  margin: 15px auto 0;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .page-ttl___ja {
    font-size: 13px;
    margin: 5px auto 0;
  }
}

.under-fv__img {
  margin-top: 46px;
  width: 97.56%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .under-fv__img {
    aspect-ratio: 1/0.37;
  }
}
.under-fv__img::after {
  width: 89.583%;
  height: 103.8%;
  content: "";
  position: absolute;
  top: 4.3%;
  right: -2.44%;
  z-index: -1;
  background-color: #AF1A24;
}

.common-table {
  display: block;
  width: 100%;
}

.common-table__body {
  display: block;
  width: 100%;
}

.common-table__row {
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
}

.common-table__head {
  padding: 25px 0;
  text-align: center;
  border-bottom: 2px solid #AF1A24;
  width: 24%;
  min-width: 150px;
  font-weight: 400;
  max-width: 270px;
}
@media screen and (max-width: 768px) {
  .common-table__head {
    padding: 20px 12px;
    width: 82.5px;
    min-width: unset;
    font-weight: 600;
    max-width: unset;
    letter-spacing: 0.028em;
  }
}

.common-table__data {
  padding: 25px 17%;
  border-bottom: 2px solid #C9C9C9;
  width: 76%;
  max-width: calc(100% - 150px);
}
@media screen and (max-width: 768px) {
  .common-table__data {
    padding: 20px 5px 20px 18px;
    width: calc(100% - 82.5px);
    max-width: unset;
  }
}

/*---------------------------
TOPページ
---------------------------*/
/*========= ローディング =========*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999999;
  background: #FFFFFF;
  text-align: center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-animation-name: splashLogoAnime;
          animation-name: splashLogoAnime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes splashLogoAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes splashLogoAnime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  60% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
#splash_logo img {
  width: 340px;
}
@media screen and (max-width: 768px) {
  #splash_logo img {
    width: 227px;
  }
}

/*========= FV =========*/
.fv {
  position: relative;
  width: 100%;
  height: 100vh;
}
.fv::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0,0,0,.31) 0%, rgba(0,0,0, 0.7) 100%);
  background-color: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
}

.fv-img {
  width: 100%;
  height: 100%;
}
.fv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv-mainTxt {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50% , -50%);
  z-index: 1;
  width: 100%;
  text-align: center;
}

.fv-subTxt{
  position: absolute;
  left: 6.94vw;
  bottom: 4vh;
  z-index: 1;
} 

.fv-subTxt__size-l{
  font-size: clamp(20px, 2.63vw, 55px);
  font-weight: 500;
  line-height: 1;
  color: #fff;
}

.fv-subTxt__size-s{
  margin-top: 24px;
  font-size: 24px;
  font-size: clamp(12.5px, 1.66vw, 27.5px);
  font-weight: 500;
  line-height: 1.3;
  color: #fff;
}

.fv-subTxt__en{
  display: inline-block;
  font-size: clamp(12.5px, 1.66vw, 27.5px);
  margin:0 auto 5%;
  background: linear-gradient(90deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.fv-mainTxt__ja {
  font-size: clamp(25px, 3.33vw, 70px);
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.42;
}
.fv-mainTxt__ja span {
  display: block;
  -webkit-clip-path: inset(100% 0 0 0);
  clip-path: inset(100% 0 0 0);
  -webkit-animation-name: fvTxtLoad;
          animation-name: fvTxtLoad;
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes fvTxtLoad {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}

@keyframes fvTxtLoad {
  0% {
    -webkit-clip-path: inset(100% 0 0 0);
    clip-path: inset(100% 0 0 0);
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
    clip-path: inset(0 0 0 0);
  }
}
.fv-mainTxt__en {
  font-size: 28px;
  line-height: 1;
  font-weight: 300;
  margin-top: 20px;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .fv-mainTxt{
    width: max-content;
    margin: 0 auto;
  }
  .fv-mainTxt__ja{
    text-align: left;
    line-height: 1.7;
    font-size: 27px;
  }
  .fv-mainTxt__en {
    font-size: 12px;
    margin-top: 10px;
  }

.fv-subTxt__size-l{
  font-size: 18px;
  line-height: 1.4;
}

.fv-subTxt__size-s{
  margin-top: 13px;
  font-size: 14px;
  line-height: 1.5;
}

.fv-subTxt__en{
  font-size: 10px;
  margin-top: 20px;
}
}


/*============ about ============*/
.top-about {
  padding: 198px 0 171px;
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  width: 89.33%;
}
@media screen and (max-width: 768px) {
  .top-about {
    padding: 80px 0;
    width: 100%;
  }
}
.top-about::after {
  content: "";
  position: absolute;
  width: 32.45%;
  height: 100%;
  background-color: rgb(175, 26, 36);
  top: 0px;
  right: 2%;
  z-index: -1;
  max-width: 320px;
}
@media screen and (max-width: 1024px) {
  .top-about::after {
    display: none;
  }
}

.inner--top-about {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner--top-about {
    display: block;
    width: 89.33%;
  }
}

.top-about__side-l {
  width: 558px;
  margin-right: 7.1%;
}
@media screen and (max-width: 1024px) {
  .top-about__side-l {
    width: 100%;
    margin-right: 0;
  }
}

.top-about__side-r {
  width: calc(92.9% - 558px);
  max-width: 600px;
}
@media screen and (max-width: 1024px) {
  .top-about__side-r {
    width: 100%;
    max-width: unset;
    margin: 30px auto 0;
    position: relative;
  }
  .top-about__side-r img {
    margin: 0 auto;
    max-width: 450px;
    display: block;
  }
  .top-about__side-r::after {
    content: "";
    position: absolute;
    width: 100vw;
    height: 200px;
    top: unset;
    max-width: unset;
    background-color: rgb(175, 26, 36);
    bottom: -30px;
    left: -5.33vw;
    z-index: -1;
  }
}

.bl-btn--top-about {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-about {
    margin-top: 50px;
  }
}

/*============ service ============*/
.top-service {
  padding: 128px 0 142px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-service {
    padding: 80px 0;
  }
}

.top-service__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.inner--top-service {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .inner--top-service {
    display: block;
  }
}

.top-service__side-l {
  width: 518px;
  margin-right: 9%;
}
@media screen and (max-width: 768px) {
  .top-service__side-l {
    width: 100%;
    margin-right: 0;
  }
}

.normal-doc--top-service {
  margin: 41px 0 0;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .normal-doc--top-service {
    margin-top: 20px;
    width: 100%;
  }
}

.bl-btn--top-service {
  margin-top: 73px;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-service {
    margin-top: 20px;
  }
}

.top-service__side-r {
  width: calc(96.9% - 518px);
  margin-right: -5.9%;
  max-width: 580px;
}
@media screen and (max-width: 768px) {
  .top-service__side-r {
    width: 100%;
    margin: 35px auto 0;
    max-width: 450px;
  }
}

/*============ recruit ============*/
.top-recruit {
  padding: 73px 0 76px;
  position: relative;
  background: linear-gradient(180deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
}
@media screen and (max-width: 768px) {
  .top-recruit {
    padding: 80px 0;
  }
}

.top-recruit__side-l-img,
.top-recruit__side-r-img {
  width: 30%;
  height: 100%;
  position: absolute;
  top: 0;
}

.top-recruit__side-r-img img{
  object-position: left;
}
.top-recruit__side-l-img img{
  object-position: right;
}
@media screen and (max-width: 768px) {
  .top-recruit__side-l-img,
.top-recruit__side-r-img {
    display: none;
  }
}

.top-recruit__sp-img {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-recruit__sp-img {
    display: block;
    width: 100%;
    margin-top: 34px;
  }
}

.top-recruit__side-l-img {
  left: 0;
}
.top-recruit__side-l-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: right;
     object-position: right;
}

.top-recruit__side-r-img {
  right: 0;
}

.top-recruit__center-block {
  width: 642px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .top-recruit__center-block {
    width: 100%;
  }
}

.bl-subTtl--top-recruit {
  margin-top: 45px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .bl-subTtl--top-recruit {
    text-align: left;
  }
}

.normal-doc--top-recruit {
  margin: 55px auto 0;
  width: 80%;
}
@media screen and (max-width: 768px) {
  .normal-doc--top-recruit {
    width: 100%;
  }
}

.bl-btn--top-recruit {
  margin-top: 57px;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-recruit {
    margin-top: 30px;
  }
}

/*---------------------------
ABOUTページ
---------------------------*/
/*====== philosophy =======*/
.philosophy {
  margin-top: 188px;
}
@media screen and (max-width: 768px) {
  .philosophy {
    margin-top: 55px;
  }
}

.inner--philosphy {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.philosophy__side-l {
  width: 615px;
  margin-right: 8.9%;
}
@media screen and (max-width: 768px) {
  .philosophy__side-l {
    width: 100%;
    margin-right: 0;
  }
}

.philosophy__side-r {
  width: calc(95.48% - 615px);
  margin-right: -4.38%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .philosophy__side-r {
    width: 100%;
    margin-right: 0;
    margin-top: 30px;
    aspect-ratio: 1/1.14;
  }
}
.philosophy__side-r::after {
  content: "";
  position: absolute;
  width: 110%;
  height: 71.7%;
  background-color: rgba(224, 85, 94, 0.1);
  bottom: -24%;
  right: -21%;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .philosophy__side-r::after {
    right: -2.33%;
  }
}
@media screen and (max-width: 768px) {
  .philosophy__side-r::after {
    width: 85%;
    height: 72.5%;
    right: -5.7%;
    bottom: -5.25%;
  }
}

.bl-subTtl--philosophy {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .bl-subTtl--philosophy {
    margin-top: 75px;
  }
}

.normal-doc--philosophy {
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  .normal-doc--philosophy {
    margin-top: 22px;
  }
}

/*========= company ========*/
.company {
  margin-top: 135px;
}
a[target=_blank] {
	padding-right: 20px;
	background:url('../images/about/icon_blank.png') right center/11px auto no-repeat;
}
@media screen and (max-width: 768px) {
  .company {
    margin-top: 103px;
  }
}

.common-table--company {
  margin-top: 78px;
}
@media screen and (max-width: 768px) {
  .common-table--company {
    margin-top: 40px;
  }
}

/*======== history =========*/
.history {
  margin-top: 134px;
  padding: 124px 0 103px;
  background: linear-gradient(180deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
}
@media screen and (max-width: 768px) {
  .history {
    margin-top: 90.5px;
    padding: 62px 0 94px;
  }
}

.history__list--wrap {
  position: relative;
  padding-top: 100px;
  margin-top: -70px;
}
@media screen and (max-width: 768px) {
  .history__list--wrap {
    padding-top: 100px;
    margin-top: -65px;
  }
}
.history__list--wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 5px;
  background-color: #FFFFFF;
  top: 147px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .history__list--wrap::after {
    top: 132px;
  }
}

.history__list {
  transition-timing-function: linear;
}

.history-dot {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto;
}

.history-dot__year {
  font-size: 25px;
  color: #FFFFFF;
  text-align: center;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .history-dot__year {
    font-size: 17px;
  }
}

.history-dot__dot {
  width: 28px;
  height: 28px;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin: 11px auto 38px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history-dot__dot {
    width: 20px;
    height: 20px;
    margin: 8px auto 12px;
  }
}
.history-dot__dot::after {
  content: "";
  position: absolute;
  width: 3px;
  height: 45px;
  bottom: 5px;
  background-color: #FFFFFF;
  left: 50%;
  transform: translate(-50%, 100%);
}
@media screen and (max-width: 768px) {
  .history-dot__dot::after {
    height: 35px;
  }
}

.history-card {
  padding: 20px 6.7%;
  aspect-ratio: 1/1.4;
  background-color: #FFFFFF;
}
@media screen and (max-width:1440px) {
  .history-card {
    padding: 13px 7.2%;
    aspect-ratio: 1/1.6;
  }
}
@media screen and (max-width:1024px) {
  .history-card {
    padding: 13px 7.2%;
    aspect-ratio: 1/1.8;
  }
}
@media screen and (max-width:860px) {
  .history-card {
    padding: 13px 7.2%;
    aspect-ratio: 1/2.2;
  }
}
@media screen and (max-width: 768px) {
  .history-card {
    padding: 13px 7.2%;
    aspect-ratio: 1/1.6;
  }
}
.history-card__txt{
  font-size: 14px;
  margin-top: 30px;
}
.history-card__year {
  font-size: 95px;
  color: #AF1A24;
  letter-spacing: 0;
  line-height: 1;
  text-align: right;
  padding-bottom: 17.4px;
  border-bottom: 1px solid #AF1A24;
  font-weight: 600;
}
@media screen and (max-width: 1280px) {
  .history-card__year {
    font-size: 65px;
  }
}

.history-card__detail {
  margin-top: 23.6px;
}
@media screen and (max-width: 768px) {
  .history-card__detail {
    margin-top: 16px;
  }
}

.history-card__yearNum {
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .history-card__yearNum {
    font-size: 19px;
  }
}

.history-card__list {
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .history-card__list {
    margin-top: 17px;
  }
}

.history-card__item {
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
@media screen and (max-width: 768px) {
  .history-card__item {
    font-size: 14px;
  }
}

/* 矢印全体共通のデザイン */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 60px; /* スライダーの上に表示 */
  z-index: 10;
  width: 40px;
  height: 40px;
  background: unset;
  border-radius: 50%;
  color: #FFFFFF; /* 矢印の色（例: 赤） */
  border: 1px solid #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* 左矢印 */
.swiper-button-prev {
  right: calc(10% + 50px);
  left: unset;
  transform: translateX(-100%);
}
@media screen and (max-width: 768px) {
  .swiper-button-prev {
    right: calc(5% + 20px);
  }
}

/* 右矢印 */
.swiper-button-next {
  right: 10%;
}
@media screen and (max-width: 768px) {
  .swiper-button-next {
    right: 5%;
  }
}

/* Swiperデフォルトの矢印アイコンに対応 */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 18px;
  color: #FFFFFF; /* 矢印の色を指定 */
}

/*======== access =========*/
.access {
  margin-top: 180px;
  margin-bottom: 223px;
}
@media screen and (max-width: 768px) {
  .access {
    margin-top: 85px;
    margin-bottom: 85px;
  }
}

.inner--access {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .inner--access {
    display: block;
  }
}

.access__side-l {
  width: 420px;
  margin-right: 6.22%;
}
@media screen and (max-width: 768px) {
  .access__side-l {
    width: 100%;
    margin-right: 0;
  }
}

.access__side-r {
  width: calc(98.16% - 420px);
  margin-right: -4.38%;
  aspect-ratio: 1/0.66;
  position: relative;
}
@media screen and (max-width: 768px) {
  .access__side-r {
    width: 100%;
    margin-right: 0;
    margin-top: 40px;
    aspect-ratio: 1/0.828;
  }
}
.access__side-r::after {
  content: "";
  position: absolute;
  width: 93.6%;
  height: 79.5%;
  background-color: rgba(224, 85, 94, 0.1);
  bottom: -15.5%;
  right: -14%;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .access__side-r::after {
    right: -2.33%;
  }
}
.access__side-r iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.access__address-ttl {
  margin-top: 50px;
  font-size: 16px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .access__address-ttl {
    margin-top: 30px;
    font-size: 14px;
  }
}

.access__address {
  margin-top: 5px;
}

.access__list {
  margin-top: 45px;
  padding: 30px;
  background-color: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .access__list {
    margin-top: 31px;
    padding: 19px;
  }
}
.access__list .access__item:not(:last-of-type) {
  margin-bottom: 30px;
}

.access__item {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1.5;
}

/*---------------------------
serviceページ
---------------------------*/
.service {
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .service {
    margin-top: 68px;
    width: 100vw;
    overflow-x: hidden;
  }
}
.service.service--under {
  margin-bottom: 221px;
}
@media screen and (max-width: 768px) {
  .service.service--under {
    margin-bottom: 5px !important;
  }
}

.service-flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .service-flex {
    display: block;
  }
}

.service__side-l {
  width: 550px;
  margin-right: 7.8%;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .service__side-l {
    width: 100%;
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .service__side-l {
    margin-top: 0;
  }
}

.service__side-r {
  width: calc(92.2% - 550px);
}
@media screen and (max-width: 1024px) {
  .service__side-r {
    width: 100%;
  }
}

.service__underLint-ttl {
  font-size: 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 40px 5px max(10.4vw, (100vw - 1440px) / 2);
  margin-left: min(-10.4vw, (-100vw + 1440px) / 2);
  border-bottom: 2px solid #AF1A24;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {
  .service__underLint-ttl {
    padding: 0 18px 5px 6.67vw;
    margin-left: -6.67vw;
    font-size: 23px;
    margin-top: 20px;
    font-weight: 600;
  }
}
@media screen and (max-width: 768px) {
  .service__underLint-ttl {
    font-size: 18px;
  }
}

.bl-subTtl--service {
  color: #AF1A24;
  margin-top: 52px;
  font-size: 32px;
}
@media screen and (max-width: 768px) {
  .bl-subTtl--service {
    font-size: 20px;
    margin-top: 31px;
  }
}

.normal-doc--service {
  line-height: 1.5;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .normal-doc--service {
    margin-top: 17px;
  }
}

.service-explain {
  padding: 25px 30px;
  background-color: #F4F4F4;
  width: 416px;
  margin-top: 37px;
}
@media screen and (max-width: 1024px) {
  .service-explain {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service-explain {
    padding: 20px 24px;
    margin-top: 41px;
  }
}

.service-explain__ttl {
  font-size: 18px;
  color: #AF1A24;
  letter-spacing: 0.036em;
  line-height: 1.77;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .service-explain__ttl {
    font-size: 14px;
  }
}

.bl-ttl--service {
  margin-right: -9.9%;
}

.service__img {
  width: 100%;
  margin-top: 25px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .service__img {
    aspect-ratio: 1/0.78;
    margin-top: 30px;
  }
}
.service__img::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 76.8%;
  top: -14.3%;
  right: -29.9%;
  background-color: rgba(224, 85, 94, 0.1);
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .service__img::after {
    right: -13.9%;
  }
}
@media screen and (max-width: 1024px) {
  .service__img::after {
    height: 105%;
    width: 60.5%;
    top: -19%;
    right: -6.66vw;
    z-index: -1;
  }
}

.service-img-explain {
  font-size: 14px;
  letter-spacing: 0.028em;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .service-img-explain {
    text-align: right;
  }
}

.service-works {
  margin-top: 80px;
  padding: 53px 5%;
  background: linear-gradient(180deg, rgb(175, 26, 36) 0%, rgb(255, 150, 157) 100%);
}
@media screen and (max-width: 1024px) {
  .service-works {
    width: 100vw;
    margin-left: -6.66vw;
    margin-top: 80px;
    padding: 45px 5%;
  }
}

.service-works__ttl {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.048em;
  line-height: 1;
  text-align: center;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .service-works__ttl {
    font-size: 20px;
  }
}

@media screen and (max-width: 1440px) {
  .bl-ttl__bgEn--service {
    font-size: 100px;
  }
}
@media screen and (max-width: 768px) {
  .bl-ttl__bgEn--service {
    font-size: 60px;
  }
}
.service-works__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 2.1%;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .service-works__list {
    flex-direction: column;
    gap: 30px;
    margin-top: 32px;
  }
}

.service-works__item {
  width: 31.9%;
}
@media screen and (max-width: 768px) {
  .service-works__item {
    width: 100%;
  }
}

.service-works__img {
  width: 100%;
}

.service-works__explain {
  line-height: 1.5;
  color: #FFFFFF;
  margin-top: 10px;
}

/*=---------------------
recruitページ
----------------------*/
@media screen and (max-width: 768px) {
  .bl-ttl__bgEn--requirements {
    font-size: 49px;
  }
}

/*====== 募集要項 ======*/
.requirements {
  margin-top: 188px;
}
@media screen and (max-width: 768px) {
  .requirements {
    margin-top: 60px;
  }
}

.requirementsCate__item {
  color: #AF1A24;
}

.requirementsTabs {
  max-width: 1140px;
  width: 79.16%;
  margin: 95px auto 0;
}
@media screen and (max-width: 1280px) {
  .requirementsTabs {
    width: 89.33%;
  }
}
@media screen and (max-width: 1024px) {
  .requirementsTabs {
    width: 86.66%;
  }
}
@media screen and (max-width: 768px) {
  .requirementsTabs {
    margin: 44px auto 0;
  }
}

/*---タブ---*/
.requirementsCate__item {
  width: 197px;
  padding: 15px 0px;
  background-color: #FFFFFF;
  transition: all 0.5s;
  border: 2px solid #AF1A24;
  border-bottom: unset;
  text-align: center;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .requirementsCate__item {
    width: 120px;
    padding: 6px 0px;
    line-height: 1.21;
    height: 50px;
  }
}
.requirementsCate__item:not(:last-of-type) {
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  .requirementsCate__item:not(:last-of-type) {
    margin-right: 6px;
  }
}
@media screen and (max-width: 768px) {
  .requirementsCate__item:last-of-type {
    vertical-align: bottom;
  }
  .requirementsCate__item:last-of-type span {
    padding-top: 9px;
    display: block;
  }
}
.requirementsCate__item.current {
  background-color: #AF1A24;
  border: 2px solid #AF1A24;
  color: #FFFFFF;
}
@media screen and (min-width: 1023.9px) {
  .requirementsCate__item:hover {
    background-color: #AF1A24;
    border: 2px solid #AF1A24;
    color: #FFFFFF;
    transition: all 0.5s;
  }
}

input[name=tab_item] {
  display: none;
}

/*選択されているタブのコンテンツのみを表示*/
#field_work_staff:checked ~ #field_work_staff_content,
#office_work:checked ~ #office_work_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
#field_work_staff:checked,
#office_work:checked {
  background-color: #AF1A24;
  color: #fff;
}

/*---表部分---*/
.requirements-table__data {
  padding: 25px 5% 25px 13%;
}

.tab_content {
  width: calc(100vw - var(--scrollbar-width, 0px));
  margin-left: min(-10.42vw, (-100vw + 1140px) / 2);
  display: none;
  padding: 40px 40px 0;
  clear: both;
}
@media screen and (max-width: 1280px) {
  .tab_content {
    margin-left: -5.335vw;
  }
}
@media screen and (max-width: 1024px) {
  .tab_content {
    margin-left: -6.67vw;
  }
}
@media screen and (max-width: 768px) {
  .tab_content {
    padding: 42px 0 0;
  }
}

.requirements-table {
  max-width: 1140px;
  width: 79.16%;
  margin: 70px auto 0;
}
@media screen and (max-width: 1024px) {
  .requirements-table {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .requirements-table {
    width: 91.2%;
    margin: 0 auto;
  }
}

.card--requirements {
  border-top: 2px solid #AF1A24;
  margin-top: -2px;
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .card--requirements {
    padding-bottom: 51px;
    margin-top: 0;
  }
}

.requirements-img {
  width: 100%;
  margin-top: 135px;
}
@media screen and (max-width: 768px) {
  .requirements-img {
    margin-top: 77px;
  }
}

@media screen and (max-width: 768px) {
  .requirements-table__head {
    width: 85px;
    padding: 20px 5px;
    text-align: left;
  }
  .requirements-table__data {
    width: calc(100% - 85px);
    padding: 20px 3% 20px 8%;
  }
}
/*====== 選考フロー ======*/
.flow {
  padding-top: 150px;
  width: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .flow {
    margin-top: 85px;
  }
}

.flow__list {
  margin-top: 85px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow__list {
    flex-wrap: wrap;
    gap: 90px 1.5%;
  }
}
@media screen and (max-width: 768px) {
  .flow__list {
    gap: 95px;
    flex-direction: column;
    width: 77.7%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 560px) {
  .flow__list {
    gap: 55px;
  }
}
.flow__list::after {
  content: "";
  position: absolute;
  width: 50.6%;
  aspect-ratio: 1/0.65;
  background-color: rgba(224, 85, 94, 0.1);
  top: 0;
  right: -13.15%;
  transform: translateY(-50%);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .flow__list::after {
    right: -7.66%;
  }
}
@media screen and (max-width: 768px) {
  .flow__list::after {
    content: "";
    position: absolute;
    width: 77.9%;
    aspect-ratio: 1/1.367;
    background-color: rgba(224, 85, 94, 0.1);
    top: -3%;
    right: -23.15%;
    transform: translateY(-50%);
  }
}
.flow__list .flow__item:first-of-type {
  background-color: #D28086;
}
.flow__list .flow__item:first-of-type .flow-num {
  background-color: #D28086;
}
.flow__list .flow__item:first-of-type .flow-icon img {
  width: 88%;
}
.flow__list .flow__item:nth-of-type(2) {
  background-color: #C65D65;
}
.flow__list .flow__item:nth-of-type(2) .flow-num {
  background-color: #C65D65;
}
.flow__list .flow__item:nth-of-type(2) .flow-icon img {
  width: 82%;
}
.flow__list .flow__item:nth-of-type(3) {
  background-color: #BA3941;
}
.flow__list .flow__item:nth-of-type(3) .flow-num {
  background-color: #BA3941;
}
.flow__list .flow__item:nth-of-type(3) .flow-icon img {
  width: 100%;
}
.flow__list .flow__item:last-of-type {
  background-color: #AE1A24;
}
.flow__list .flow__item:last-of-type .flow-num {
  background-color: #AE1A24;
}
.flow__list .flow__item:last-of-type .flow-icon img {
  width: 83.1%;
}

.flow__item {
  position: relative;
  width: 23.875%;
  aspect-ratio: 1/1.36;
  box-shadow: inset 3px -3px 6px rgba(0, 0, 0, 0.16);
  padding: 3.35% 0 2.65%;
}
@media screen and (max-width: 1024px) {
  .flow__item {
    width: 47%;
  }
}
@media screen and (max-width: 768px) {
  .flow__item {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1/0.87;
    margin: 0 auto;
    padding: 20px;
  }
}

.flow-num {
  color: #FFFFFF;
  font-size: 2vw;
  font-weight: 700;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  padding-top: 6%;
  text-align: center;
  border-radius: 50%;
  width: 33.8%;
  aspect-ratio: 1/1;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: inset -1px 5px 5px rgba(0, 0, 0, 0.16);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .flow-num {
    font-size: 25px;
  }
}

.flow-ttl {
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow-ttl {
    font-size: 20px;
  }
}

.flow-icon {
  position: relative;
  width: 67.64%;
  aspect-ratio: 1/1;
  margin: 6.2% auto 0;
}
@media screen and (max-width: 768px) {
  .flow-icon {
    width: 39.7%;
  }
}
.flow-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
}

.flow-txt {
  margin: 11px auto 0;
  font-weight: 700;
  color: #FFFFFF;
  width: 75.7%;
  line-height: 1.375;
}
@media screen and (max-width: 768px) {
  .flow-txt {
    width: 94%;
    font-size: 16px;
    font-weight: 400;
  }
}

.entry {
  margin-top: 176px;
  padding: 54px 0;
  background-color: #F4F4F4;
}
@media screen and (max-width: 768px) {
  .entry {
    margin-top: 85px;
    padding: 30px 0;
  }
}

.inner--entry {
  background-color: #FFFFFF;
  padding: 65px 0 100px;
  border-radius: 0;
}
@media screen and (max-width: 768px) {
  .inner--entry {
    padding: 45px 0 50px;
  }
}

.entry-ttl__en {
  color: #AF1A24;
  font-weight: 700;
  line-height: 1;
  font-size: 39px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .entry-ttl__en {
    font-size: 36px;
  }
}

.entry-ttl__ja {
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  margin-top: 10px;
  letter-spacing: 0.028em;
}
@media screen and (max-width: 768px) {
  .entry-ttl__ja {
    font-weight: 600;
  }
}

.contactForm--entry {
  margin-top: 77px !important;
}
@media screen and (max-width: 768px) {
  .contactForm--entry {
    margin-top: 30px !important;
  }
}

.policy-card {
  margin-top: 105px;
  height: 266px;
  overflow: scroll;
  padding: 35px 6.3%;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 768px) {
  .policy-card {
    margin-top: 57px;
    height: 155px;
    padding: 17px;
  }
}

.policy-ttl {
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.policy-txt {
  margin-top: 27px;
  font-size: 12px;
  letter-spacing: 0;
  line-height: 1.3;
}

input[type=date] {
  padding: 10px 20px;
  background-color: #EBEBEB;
  color: #1A1A1A;
  width: 200px;
}
@media screen and (max-width: 1024px) {
  input[type=date] {
    padding: 12px 15px;
    font-size: 15px;
    height: 50px;
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.contact {
  margin-top: 74px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 45px;
  }
}

.contact-txt {
  text-align: center;
}

.contactForm {
  margin: 58px auto 150px;
  width: 82.7%;
}
@media screen and (max-width: 768px) {
  .contactForm {
    margin: 32px auto 90px;
    width: 100%;
    padding: 30px 15px;
  }
}

.formDl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 25px;
}
@media screen and (max-width: 1024px) {
  .formDl {
    display: block;
  }
}
.formDl.formDl-flexStart {
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .formDl.formDl-flexStart {
    display: block;
  }
}

.formDt {
  width: 280px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
  }
}

.formTtl {
  margin-right: 20px;
  font-weight: 400;
  color: #1A1A1A;
  text-align: right;
  font-size: 16px;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 8px;
  }
}

.formRequired {
  font-size: 12px;
  padding: 5px 10px;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 30px;
  background-color: #AF1A24;
  font-weight: 400;
}

.noRequired {
  font-size: 12px;
  padding: 5px 10px;
  line-height: 1;
  color: #FFFFFF;
  border-radius: 30px;
  background-color: #ACACAC;
  font-weight: 400;
}

.formDd {
  width: calc(100% - 280px);
  margin-left: 25px;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
    margin-left: 0;
    margin-top: 5px;
  }
}

.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

input[type=radio] {
  position: relative;
  width: 21px;
  height: 21px;
  background-color: #AF1A24;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  input[type=radio] {
    margin-right: 5px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #FFFFFF;
  content: "";
}

.radioBtn {
  margin-right: 25px;
  color: #1A1A1A;
}
.radioBtn:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 420px) {
  .radioBtn {
    margin-right: 13px;
  }
  .radioBtn:last-of-type {
    margin-right: 0;
  }
}

input[type=text],
input[type=email],
textarea {
  padding: 10px 20px;
  background-color: #EBEBEB;
  color: #1A1A1A;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 12px 15px;
    font-size: 15px;
  }
}

textarea {
  height: 217px;
}
@media screen and (max-width: 768px) {
  textarea {
    height: 170px;
  }
}

::-moz-placeholder {
  color: #A3AFAC;
  font-size: 16px;
}

::placeholder {
  color: #A3AFAC;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 15px;
  }
  ::placeholder {
    font-size: 15px;
  }
}

input[type=text].postCode {
  width: 165px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 15px;
    width: 120px;
  }
}

.prefectures {
  width: 165px !important;
}
@media screen and (max-width: 1024px) {
  .prefectures {
    padding: 5.3px 18px;
    font-size: 11px;
    width: 120px !important;
  }
}

.birtyday-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.birthday-input {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  margin-right: 33px;
}
@media screen and (max-width: 960px) {
  .birthday-input {
    margin-right: 8px;
  }
}

input[type=text].birthday {
  margin-right: 14px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday {
    margin-right: 13px;
  }
}

input[type=text].birthday-year {
  width: 125px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday-year {
    width: 88px;
  }
}

input[type=text].birthday-month,
input[type=text].birthday-date {
  width: 85px;
}
@media screen and (max-width: 960px) {
  input[type=text].birthday-month,
input[type=text].birthday-date {
    width: 56px;
  }
}

.selectbox {
  position: relative;
}
.selectbox::after {
  content: "";
  position: absolute;
  width: 9.4px;
  height: 9.4px;
  border-bottom: 2px solid #9B9A9A;
  border-right: 2px solid #9B9A9A;
  top: 50%;
  right: 17.5px;
  pointer-events: none;
  transform: translateY(-50%) rotate(45deg);
}

.formAdress__upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.restAddress {
  margin-top: 12px;
}

input[type=file] {
  color: #1A1A1A;
}

.fileTxt {
  margin-top: 11px;
  font-size: 12px;
  color: #1A1A1A;
}

.formDl__file {
  align-items: flex-start;
}

input[type=checkbox] {
  position: relative;
  width: 20px;
  height: 20px;
  border: 1px solid #0D0D67;
  vertical-align: -4px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
@media screen and (max-width: 768px) {
  input[type=checkbox] {
    margin-bottom: -3px;
  }
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 0px;
  left: 5px;
  transform: rotate(50deg);
  width: 8px;
  height: 15px;
  border-right: 1px solid #0D0D67;
  border-bottom: 1px solid #0D0D67;
  content: "";
}

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 30px;
  color: #1A1A1A;
}

.form--policyLink {
  text-decoration: underline;
}

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  transition: all 0.3s;
  pointer-events: all;
  color: #FFFFFF;
}

.submitBtn {
  width: 240px;
  padding: 17px 0;
  font-size: 24px;
  background-color: #AF1A24;
  color: #FFFFFF;
  line-height: 1;
  opacity: 1;
  transition: all 0.5s;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 18px;
    width: 160px;
    padding: 15px 0;
  }
}
.submitBtn:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

.submit-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.3%;
  margin-top: 121px;
}
@media screen and (max-width: 768px) {
  .submit-wrap {
    flex-direction: column;
    gap: 20px;
  }
}
.submit-wrap .submit {
  margin: 0;
}

.submitBtn--return {
  background-color: #A3A3A3;
}

.toTop-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 63px auto 125px;
  transition: all 0.3s;
  pointer-events: all;
  color: #FFFFFF;
}
.toTop-btn a {
  display: block;
  width: 240px;
  padding: 17px 0;
  font-size: 24px;
  background-color: #AF1A24;
  color: #FFFFFF;
  line-height: 1;
  opacity: 1;
  transition: all 0.5s;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .toTop-btn a {
    font-size: 18px;
    width: 160px;
    padding: 15px 0;
  }
}
.toTop-btn a:hover {
  opacity: 0.7;
  transition: all 0.5s;
}

.wpcf7-spinner{
display: none!important;
}
.error-page__content{
		padding: 150px 0;
		margin-top: 80px;
		background-color: #fff;
	  font-family: "Jost", sans-serif;
		position: relative;
		z-index: 3;
		color: #AF1A24;
	}
	
	.error-page__ttl{
	    font-size: 40px;
	    font-weight: 700;
	}
	@media screen and (max-width: 768px) {
		.error-page__content{
		margin-top: 50px;
	}
	
		.error-page__ttl{
			font-size: 30px;
			font-weight: 700;
		}
	}

