@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&family=Zen+Maru+Gothic:wght@300;400;500;700;900&family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

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

body {
  font-size: max(0.93vw, 14px);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
  font-weight: 700;
  color: #3C3C3C;
  line-height: 2.22;
  font-feature-settings: "palt";
  letter-spacing: 0.2em;
}
@media screen and (max-width: 1024px) {
  body {
    line-height: 1.53;
    letter-spacing: 0.1em;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 13px;
  }
}

.inner {
  margin: 0 auto;
  width: 83.33%;
}
@media screen and (max-width: 1024px) {
  .inner {
    width: 93.33%;
  }
}

.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) {
  body {
    font-size: 15px;
  }
  .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: 13px;
  }
}
@media screen and (max-width: 768px) {
  .inner--size-s {
    width: 79.48%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.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;
}
.bl-btn a {
  display: block;
  width: max(13.28vw, 191px);
  padding: 16px 0;
  text-align: center;
  background-color: #FFFFFF;
  border: 2px solid #3C3C3C;
  color: #3C3C3C;
  transition: all 0.5s;
  line-height: 1;
}
.bl-btn a:hover {
  background-color: #016725;
  border: 2px solid #FFFFFF;
  color: #FFFFFF;
  transition: all 0.5s;
}

.bl-btn--size-s {
  width: max(9.8vw, 142px);
}

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

.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 {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.bl-ttl__en {
  font-size: max(1.56vw, 22px);
  color: #016725;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en {
    font-size: 13px;
  }
}

.bl-ttl__ja {
  margin-top: 20px;
  font-size: max(2.6vw, 37px);
  color: #3C3C3C;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__ja {
    font-size: 28px;
    margin-top: 5px;
  }
}

.bl-ttl--center {
  margin: 0 auto;
}

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

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

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

.bl-ttl__en--wh {
  color: #FFFFFF;
}

.bl-ttl__ja--wh {
  color: #FFFFFF;
}

/*---------------------------
ページ共通
---------------------------*/
.bg-gradient {
  background: linear-gradient(180deg, #FFFFFF 0%, #0D6725 100%);
}

.bg-gradient--pale {
  background: linear-gradient(180deg, #FFFFFF 0%, #CBDFD1 100%);
}

/*======== 無限ループ ========*/
.loop-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  white-space: nowrap;
}

.loop-slider__track {
  display: flex;
  -webkit-animation: scroll linear infinite;
          animation: scroll linear infinite;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.loop-slider__item {
  flex: 0 0 auto;
  padding: 0 2rem;
  font-size: 1.5rem;
  white-space: nowrap;
}

@-webkit-keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}
.subTtl {
  font-size: max(2.6vw, 37.5px);
  letter-spacing: 0.05em;
  line-height: 1.3;
}
@media screen and (max-width: 1024px) {
  .subTtl {
    font-size: 25px;
    line-height: 1.4;
  }
}

.subTtl--wh {
  color: #FFFFFF;
}

.normalDocs {
  font-family: "Zen Old Mincho", serif;
}

.normalDocs--wh {
  color: #FFFFFF;
}

/*============== お問い合わせ =============*/
.commonContact {
  padding: 123px 0 75px;
  width: 100%;
  position: relative;
  background-color: #016725;
}
@media screen and (max-width: 768px) {
  .commonContact {
    padding: 70px 0 80px;
  }
}

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

.commonContact__flex {
  width: 60%;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.4vw;
  position: relative;
  z-index: 1;
  margin-top: 66px;
}
@media screen and (max-width: 1280px) {
  .commonContact__flex {
    width: 80%;
  }
}
@media screen and (max-width: 1024px) {
  .commonContact__flex {
    width: 90%;
  }
}
@media screen and (max-width: 768px) {
  .commonContact__flex {
    width: 93.33%;
    display: block;
  }
}

.commonContact__side-l,
.commonContact__side-r {
  width: calc(50% - 0.7vw);
}

.commonContact__side-r {
	display: flex;
    flex-direction: column;
    align-items: normal;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .commonContact__side-l,
.commonContact__side-r {
    width: 100%;
  }
}

.commonContact__side-l {
  padding: 40px 0 45px;
  border: 1.5px solid #FFFFFF;
}
@media screen and (max-width: 768px) {
  .commonContact__side-l {
    padding: 50px 0 20px;
    border: 0.7px solid #FFFFFF;
  }
}
.commonContact__side-l .contacLink {
  display: block;
}

@media screen and (max-width: 768px) {
  .commonContact__side-r {
    margin-top: 15px;
  }
}
.commonContact-genre {
  font-size: max(1.14vw, 16.5px);
  text-align: center;
  color: #FFFFFF;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .commonContact-genre {
    font-size: 20px;
  }
}

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

@media screen and (max-width: 768px) {
  .commonContact__side-r .commonContactLink__flex {
    flex-direction: column-reverse;
    gap: 13px;
  }
}

.commonContactLink__icon {
  margin-right: 10px;
}

.commonContactLink__icon--tel {
  width: max(2.08vw, 30px);
}
@media screen and (max-width: 768px) {
  .commonContactLink__icon--tel {
    width: 40px;
  }
}

.commonContact-telNum {
  font-size: max(1.56vw, 22.5px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .commonContact-telNum {
    font-size: 30px;
    letter-spacing: 0.15em;
  }
}

.receptionHours {
  letter-spacing: 0.03em;
  color: #FFFFFF;
  text-align: center;
	font-weight: 500;
}
@media screen and (max-width: 768px) {
  .receptionHours {
    font-size: 16px;
    letter-spacing: 0;
  }
}

.extension-ttl {
  margin-top: 45px;
  font-size: max(1.14vw, 16.5px);
  color: #FFFFFF;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .extension-ttl {
    font-size: 20px;
    letter-spacing: 0.1em;
    margin-top: 30px;
  }
}

.extension-table {
  display: block;
  width: 51%;
  margin: 20px auto 0;
}
@media screen and (max-width: 768px) {
  .extension-table {
    width: 265px;
    margin: 17px auto 0;
  }
}

.extension-table__body,
.extension-table__row {
  width: 100%;
  display: block;
}

.extension-table__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.extension-table__head,
.extension-table__data {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0;
  line-height: 1.7;
  color: #FFFFFF;
  font-size: max(1.04vw, 15px);
}

.commonContactLink--mail {
  padding: 45px 0;
  display: block;
  border: 1.5px solid #FFFFFF;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .commonContactLink--mail {
    border: 0.7px solid #FFFFFF;
    padding: 30px 0 25px;
  }
}
.commonContactLink--mail:hover {
  background-color: #013312;
  transition: all 0.5s;
}

.commonContactLink__icon--mail {
  width: max(3.07vw, 45px);
}
@media screen and (max-width: 768px) {
  .commonContactLink__icon--mail {
    width: 37px;
  }
}

.qrCode__list {
  width: 80.17%;
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 17%;
}
@media screen and (max-width: 768px) {
  .qrCode__list {
    width: 88.57%;
    gap: 7.7%;
  }
}

.qrCode__item {
  width: 44%;
}
@media screen and (max-width: 768px) {
  .qrCode__item {
    width: 46.15%;
  }
}

.qrCode__img {
  width: 100%;
}

.qrCode__name {
  margin-top: 15px;
  font-size: max(1.04vw, 15px);
  color: #FFFFFF;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .qrCode__name {
    font-size: 16px;
  }
.qrCode__name {
  	font-weight: 500;
}
}

.commonContact-message {
  margin-top: 60px;
  text-align: center;
  font-size: max(1.4vw, 20px);
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .commonContact-message {
    font-size: 18px;
  }
}

/*============= 下層FV =============*/
.under-fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.under-fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bl-pageName {
  position: absolute;
  top: calc(100px + 6vh);
  left: 3.8vw;
}
@media screen and (max-width: 1024px) {
  .bl-pageName {
    top: calc(52px + 5vh);
    left: 5.12vw;
  }
}

.bl-pageName__ja {
  font-size: max(1.56vw, 22.5px);
  line-height: 1;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 1024px) {
  .bl-pageName__ja {
    font-size: 14px;
  }
}

.bl-pageName__en {
  font-size: max(75px, 5.2vw);
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .bl-pageName__en {
    font-size: 45px;
  }
}

.under-fv__appear-wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  opacity: 0;
  z-index: 3;
}
.under-fv__appear-wrap::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: -1;
}

.under-fv__txt-wrap {
  width: 91.66vw;
  display: flex;
  align-items: flex-start;
  padding-top: calc(100px + 6vh);
  padding-left: 3.8vw;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .under-fv__txt-wrap {
    width: 93.33%;
    padding-top: calc(52px + 5vh);
    padding-left: 5.12vw;
    display: block;
  }
}

.bl-pageName--appear {
  position: relative;
  top: 0;
  left: 0;
}

.bl-pageName__ja--appear,
.bl-pageName__en--appear {
  color: #fff;
}

.under-fv__txt-side-r {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .under-fv__txt-side-r {
    width: 100%;
    margin-top: 3vh;
  }
}

.subTtl--under-fv {
  font-size: 4.6vh;
}
@media screen and (max-width: 1024px) {
  .subTtl--under-fv {
    font-size: 23px;
  }
}

.normalDocs--under-fv {
  margin-top: 5.5vh;
  font-size: 1.66vh;
}
@media screen and (max-width: 1024px) {
  .normalDocs--under-fv {
    margin-top: 17px;
    font-size: 13px;
  }
}

.normalDocs_emphasis--under-fv {
  font-size: 2.31vh;
  color: #FFFFFF;
  margin-top: 4.9vh;
  line-height: 1.8;
  display: block;
}
@media screen and (max-width: 1024px) {
  .normalDocs_emphasis--under-fv {
    font-size: 16px;
    margin-top: 23px;
  }
}

.under-fv--adjustAppear {
  width: 100%;
  height: 100vh;
}

.linkAdjust {
  margin-top: -100px;
  padding-top: 100px;
}
@media screen and (max-width: 1024px) {
  .linkAdjust {
    margin-top: -52px;
    padding-top: 52px;
  }
}

/*============= 動きなし下層FV =============*/
.noMoveUnder-fv {
  width: 100%;
  height: auto;
  aspect-ratio: 1/0.38;
  position: relative;
}

.under-fv__bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.bl-pageName--noMoveUnder-fv {
  top: 50%;
  transform: translateY(-50%);
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 2.6vw;
  position: fixed;
  top: 0;
  left: 0;
  opacity: 1;
  z-index: 99999;
}
@media screen and (max-width: 1024px) {
  .head {
    height: 52px;
  }
}
.head::after {
  width: 100%;
  height: 100%;
  background-color: #FFFFFF;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.head__logo {
  width: 95.6px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 60px;
  }
}

.head.head__topPage .head__logo img {
  position: relative;
  transition: all 0.5s;
  transform: scale(1.68);
  transform-origin: left top;
}
@media screen and (max-width: 1024px) {
  .head.head__topPage .head__logo img {
    transform: scale(1.4);
    transform-origin: left top;
  }
}

.head__nav {
  width: calc(100% - 120px);
  height: 100px;
}
@media screen and (max-width: 1280px) {
  .head__nav {
    display: none;
  }
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}

.headNav-list__item {
  margin-right: 4.1%;
	position: relative;
}

.headNav-popUp{
	 width: max-content;
    position: absolute;
    top:50px;
    left: 50%;
    padding: 20px;
    border-radius: 20px;
    background-color: rgba(255, 255, 255, 0.7);
	backdrop-filter: blur(18px);           
  -webkit-backdrop-filter: blur(18px);   
	opacity:0;
	pointer-events: none;
	transition: all .3s;
	transform: translateX(-50%);
}
.headNav-list__item .headNav-popUp.popUp-appear{
	opacity: 1;
	pointer-events: all;
	transition: all .3s;
}
.headNav-list__item a {
  font-size: 16px;
  color: #3C3C3C;
  padding-right: 20px;
  position: relative;
}
.headNav-list__item .headNav-popUp a{
  font-size: 13px;
  padding-right: 0;
}

.headNav-list__item a::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-bottom: 1px solid #3C3C3C;
  border-right: 1px solid #3C3C3C;
  top: 35%;
  right: 0;
  transform: translateY(-50%) rotate(45deg);
}
.headNav-list__item .headNav-popUp a::after {
	display: none;
}
.headNav-list__item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #016725;
  bottom: 0;
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: all 0.5s;
}
.headNav-popUp {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: all 0.3s;
}

.headNav-list__item:hover .headNav-popUp {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.headNav-list__item a:hover::before {
  transform: scale(1, 1);
  transition: all 0.5s;
}
.headNav-list__item a.current-page {
  padding-right: 0;
}
.headNav-list__item a.current-page::after {
  display: none;
}
.headNav-list__item a.current-page::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100px;
  background-color: unset;
  border-bottom: 1px solid #016725;
  bottom: 0;
  left: 0;
  transform: scale(1, 1);
}

.headNav-list__item.headNav-list__item--contact {
  margin-right: 0;
}
.headNav-list__item.headNav-list__item--contact a {
  font-size: 14px;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-transform: uppercase;
  height: 100px;
  font-weight: 400;
  aspect-ratio: 1/1;
  background-color: #23AB39;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 0;
  letter-spacing: 0;
}
@media screen and (max-width: 1280px) {
  .headNav-list__item.headNav-list__item--contact a {
    position: fixed;
    top: 0;
    right: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__txt {
    font-size: 14px;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__icon {
    width: 30px;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__icon img {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .headNav-list__item.headNav-list__item--contact a {
    height: 52px;
    position: fixed;
    top: 0;
    right: 52px;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__txt {
    font-size: 10px;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__icon {
    width: 22px;
  }
  .headNav-list__item.headNav-list__item--contact a .headNav-list__item--contact__icon img {
    width: 100%;
    height: auto;
  }
}
.headNav-list__item.headNav-list__item--contact a::after {
  display: none;
}
.headNav-list__item.headNav-list__item--contact a::before {
  display: none;
}

/*========= ナビゲーションのためのCSS ===============*/
.burger-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: all 0.3s;
  background-color: #013312;
  pointer-events: none;
}

.burger-nav.panelactive {
  opacity: 1;
  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%);
  width: 83.3%;
}
@media screen and (max-width: 1280px) {
  .burger-nav .burger-nav__list {
    width: 100%;
    height: calc(100vh - 300px);
    overflow-y: auto;
  }
}

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

@media screen and (max-width: 1024px) {
.burger-nav .burger-nav__item a {
	width: calc(100% - 50px);
}

}
/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: relative;
  z-index: 9999; /*ボタンを最前面に*/
  top: 0;
  right: 0;
  cursor: pointer;
  width: 100px;
  height: 100px;
  background-color: #016725;
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    height: 52px;
    width: 52px;
  }
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 1px;
  background-color: #FFFFFF;
  width: 47px;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .openbtn1 span {
    width: 25px;
  }
}

.openbtn1 span:nth-of-type(1) {
  top: calc(50% - 7.35px);
}

.openbtn1 span:nth-of-type(2) {
  top: 50%;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .openbtn1 span:nth-of-type(2) {
    opacity: 1;
  }
}

.openbtn1 span:nth-of-type(3) {
  top: calc(50% + 7.35px);
}

.openbtn1.active span:nth-of-type(1) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-25deg);
  width: 47px;
}
@media screen and (max-width: 1024px) {
  .openbtn1.active span:nth-of-type(1) {
    width: 27px;
  }
}

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

.openbtn1.active span:nth-of-type(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
  width: 47px;
}
@media screen and (max-width: 1024px) {
  .openbtn1.active span:nth-of-type(3) {
    width: 27px;
  }
}

/**======== ハンバーガーメニュー中身 =========*/
.burger-nav__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

.burger-nav__listWrap {
  width: 83.3%;
  margin: 0 auto;
}

.burger-nav .burger-nav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: flex-start;
  gap: 9vh 10%;
  padding: 0 3%;
}
@media screen and (max-width: 1024px) {
  .burger-nav .burger-nav__list {
    display: block;
  }
}

.burger-nav__item {
  width: 33%;
}
@media screen and (max-width: 1024px) {
  .burger-nav__item {
    width: 100%;
    margin-bottom: 50px;
    position: relative;
  }
  .burger-nav__item::before {
    content: "";
    position: absolute;
    width: 18px;
    height: 1px;
    background-color: #FFFFFF;
    top: 28px;
    right: 0;
  }
  .burger-nav__item::after {
    transition: all 0.3s;
    content: "";
    position: absolute;
    width: 1px;
    height: 18px;
    background-color: #FFFFFF;
    top: 20px;
    right: 9px;
  }
  .burger-nav__item.active::after {
    transition: all 0.3s;
    transform: rotate(90deg);
  }
}

.burger-nav__pageName {
  padding-bottom: 3px;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  margin-bottom: 24px;
}
@media screen and (max-width: 1024px) {
  .burger-nav__pageName {
    padding-bottom: 10px;
  }
}

.burger-nav__pageName__en {
  font-size: max(0.78vw, 13px);
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .burger-nav__pageName__en {
    margin-bottom: 10px;
  }
}

.burger-nav__pageName__ja {
  font-size: max(1.5vw, 20px);
  letter-spacing: 0;
  line-height: 1;
}

.burger-nav-pageSec .burger-nav-pageSec__item:not(:last-of-type) {
  margin-bottom: 10px;
}

.burger-nav-pageSec--flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.burger-nav-pageSec--flex .burger-nav-pageSec__item {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .burger-nav-pageSec--flex .burger-nav-pageSec__item {
    width: 33%;
  }
.burger-nav-pageSec--flex .burger-nav-pageSec__item a{
  width: 100%;
}
}

.burger-nav-pageSec__item {
  width: 100%;
}
.burger-nav-pageSec__item a {
  font-size: max(0.98vw, 10px);
  padding-left: 0.93vw;
  position: relative;
  color: #FFFFFF;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (max-width: 1024px) {
  .burger-nav-pageSec__item a {
    padding-left: 6px;
  }
}
.burger-nav-pageSec__item a::after {
  content: "";
  position: absolute;
  width: 0.468vw;
  height: 0.468vw;
  background-color: #23AB39;
  border-radius: 50%;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .burger-nav-pageSec__item a::after {
    width: 6px;
    height: 6px;
    left: -2px;
  }
}

@media screen and (max-width: 1024px) {
  .burger-nav-pageSec {
    display: none;
  }
  .burger-nav__item.active .burger-nav-pageSec {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.burger-nav__item--about,
.burger-nav__item--news,
.burger-nav__item--recruit,
.burger-nav__item--contact {
  width: 27.87%;
}
@media screen and (max-width: 1024px) {
  .burger-nav__item--about,
.burger-nav__item--news,
.burger-nav__item--recruit,
.burger-nav__item--contact {
    width: 100%;
  }
}

.burger-nav__item--businessDetail,
.burger-nav__item--contact {
  width: 23.45%;
}
@media screen and (max-width: 1024px) {
  .burger-nav__item--businessDetail,
.burger-nav__item--contact {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .burger-nav__item--businessDetail .burger-nav-pageSec .burger-nav-pageSec__item {
    width: 100%;
  }
}
.burger-nav-pageSec--flex .burger-nav-pageSec__item--recruit:first-of-type {
  width: 65%;
}
.burger-nav-pageSec--flex .burger-nav-pageSec__item--recruit:nth-of-type(2) {
  width: 35%;
}
.burger-nav-pageSec--flex .burger-nav-pageSec__item--recruit:nth-last-of-type(2) {
  width: 100%;
}

.rightBottom-block {
  position: absolute;
  bottom: 12vh;
  right: 8.33vw;
  z-index: 9999;
}
@media screen and (max-width: 1024px) {
  .rightBottom-block {
    bottom: 7vh;
    right: 5.1vw;
  }
}

.policy-list {
  color: #FFFFFF;
  margin-bottom: 17px;
}

.policy-list__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
.policy-list__item a {
  font-size: 1.14vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.3;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .policy-list__item a {
    font-size: 14px;
  }
}

.copyright {
  font-weight: 300;
  font-size: 0.93;
  color: #FFFFFF;
}

.loop-slider--inMenu {
  position: absolute;
  bottom: 0;
}

.loop-slider__item--en {
  font-size: 4.68vw;
  letter-spacing: 0;
  line-height: 1;
  color: rgba(255, 255, 255, 0.46);
  font-weight: 300;
}
@media screen and (max-width: 1024px) {
  .loop-slider__item--en {
    font-size: 35px;
  }
}

/*---------------------------
フッター
---------------------------*/
.foot {
  color: #FFFFFF;
  background-color: #013312;
  padding: 100px 0 20px;
}

.foot-upper {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 6%;
}
@media screen and (max-width: 1024px) {
  .foot-upper {
    flex-wrap: wrap;
    gap: unset;
  }
}

.foot-logo {
  width: 21.6%;
}
@media screen and (max-width: 768px) {
  .foot-logo {
    width: 161px;
    margin-right: 24px;
  }
}

@media screen and (max-width: 1024px) {
  .foot-catchCopy {
    width: 100%;
    margin-top: 20px;
  }
}

.foot-catchCopy__en {
  font-size: 3.6vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 300;
  line-height: 1.03;
  letter-spacing: 0;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .foot-catchCopy__en {
    font-size: 30px;
    line-height: 1.2;
  }
}

.foot-catchCopy__ja {
  font-size: 1.26vw;
  font-family: "Zen Old Mincho", serif;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .foot-catchCopy__ja {
    font-size: 12px;
    margin-top: 8px;
  }
}

.foot-company {
  margin-top: 70px;
}
.foot-companyName{
	font-size: max(0.93vw, 17px);
}
@media screen and (max-width: 1024px) {
  .foot-company {
    margin-top: 0;
    font-size: 14px;
    letter-spacing: 0.03em;
    line-height: 1;
  }
	
.foot-companyName{
	font-size: 14px;
}
}

.company-info {
  margin-top: 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .company-info {
    margin-top: 40px;
    flex-direction: column;
    padding-bottom: 30px;
    border-bottom: 0.7px solid #FFFFFF;
    gap: 30px;
  }
}
.company-info .company-info__item:first-of-type {
  margin-top: -1.86vw;
}
@media screen and (max-width: 1024px) {
  .company-info .company-info__item:first-of-type {
    margin-top: 0;
  }
}

.company-info__item {
  font-size: 0.93vw;
  letter-spacing: 0.2em;
  line-height: 1.77;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .company-info__item {
    font-size: 12px;
    letter-spacing: 0.1em;
    line-height: 1.5;
  }
}

.foot-nav {
  margin-top: 73px;
}
@media screen and (max-width: 1024px) {
  .foot-nav {
    margin-top: 30px;
  }
}

.foot-nav__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .foot-nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 30px 5%;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav__list {
    flex-direction: column;
    gap: 40px;
  }
}

.foot-nav__item {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .foot-nav__item {
    width: 29%;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav__item {
    width: 100%;
  }
}

.foot-nav__pageName {
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .foot-nav__pageName {
    margin-bottom: 13px;
  }
}

.foot-nav__pageName__en {
  font-size: 0.78vw;
  margin-bottom: 10px;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.075em;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .foot-nav__pageName__en {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav__pageName__en {
    font-size: 11px;
  }
}

.foot-nav__pageName__ja {
  font-size: 1.09vw;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .foot-nav__pageName__ja {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav__pageName__ja {
    font-size: 14px;
  }
}

.foot-nav-pageSec__item a {
  font-size: 0.93vw;
  letter-spacing: 0.2em;
  line-height: 1.77;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .foot-nav-pageSec__item a {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .foot-nav-pageSec__item a {
    font-size: 12px;
  }
}

.foot-rightBottom-block {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-left: auto;
  margin-right: 0;
}

.foot-policy-list {
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .foot-policy-list {
    margin-bottom: 15px;
  }
}

.footpolicy-list__item {
  font-size: 1.14vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0.075em;
  line-height: 2;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footpolicy-list__item {
    font-size: 14px;
  }
}

.footcopyright {
  font-size: 0.93vw;
  letter-spacing: 0.075em;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1;
  font-weight: 300;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .footcopyright {
    font-size: 11px;
  }
}

/*
    </div>


          <div class="foot-rightBottom-block">
            <ul class="foot-policy-list">
              <li class="footpolicy-list__item">
                <a href="privacy-policy.html">Privacy Policy</a>
              </li>
              <li class="footpolicy-list__item">
                <a href="site-policy.html">Site Policy</a>
              </li>
            </ul>
            <div class="footcopyright"
            */
/*---------------------------
TOPページ
---------------------------*/
.fv {
  width: 100%;
  height: calc(100vh - 100px);
  position: relative;
  top: 100px;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .fv {
    height: calc(100vh - 52px);
    top: 52px;
  }
}

.fv-movie {
  width: 91.66%;
  height: 74vh;
  position: absolute;
  right: 0;
}
@media screen and (max-width: 1280px) {
  .fv-movie {
    height: 79vh;
  }
}
.fv-movie img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv-movie video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.fv-movie::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
}

.playBtn {
  width: 12.23vw;
  height: auto;
  position: absolute;
  top: 50%;
  left: 4.42%;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .playBtn {
    width: 26.93vw;
    bottom: 20px;
    left: 20px;
    transform: unset;
    top: unset;
  }
}

.fv-txt {
  position: absolute;
  top: 50%;
  right: 9.09%;
  transform: translateY(-50%);
  z-index: 3;
}

.fv-txt__en {
  font-size: 5.05vw;
  line-height: 1.03;
  letter-spacing: 0;
  font-weight: 300;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #FFFFFF;
  text-transform: uppercase;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .fv-txt__en {
    font-size: 44px;
  }
}

.fv-txt__ja {
  font-family: "Zen Old Mincho", serif;
  color: #FFFFFF;
  font-size: 1.56vw;
  text-align: right;
  margin-top: 10px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .fv-txt__ja {
    font-size: 16px;
  }
}

.fv-copyRight {
  position: absolute;
  top: 50%;
  left: 3.17vw;
  color: #3C3C3C;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  font-size: 0.98vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .fv-copyRight {
    font-size: 11px;
    left: 2.67vw;
  }
}

/*======= about us ======*/
.top-about {
  padding: 140px 0 134px;
  background-color: #016725;
  position: relative;
  margin-top: -140px;
}
@media screen and (max-width: 1024px) {
  .top-about {
    padding: 120px 0 100px;
    margin-top: -120px;
  }
}

.top-about__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.inner--top-about {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .inner--top-about {
    flex-direction: column-reverse;
    width: 88%;
    margin-left: 8.6%;
    margin-right: auto;
  }
}

.top-about__side-l {
  width: 50%;
  position: relative;
  padding-left: 6.125%;
}
@media screen and (max-width: 1024px) {
  .top-about__side-l {
    width: 100%;
  }
}

.bl-ttl--top-about {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .bl-ttl--top-about {
    position: relative;
  }
}

.bl-ttl__en--top-about {
  writing-mode: vertical-lr;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en--top-about {
    writing-mode: unset;
  }
}

.normalDocs--top-about {
  margin-top: 42px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--top-about {
    margin-top: 17px;
  }
}

.top-about__side-r {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .top-about__side-r {
    width: 100%;
  }
}

.top-about__images {
  width: 100%;
  aspect-ratio: 1/1.035;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-about__images {
    aspect-ratio: 1/0.86;
    margin-bottom: 45px;
  }
}
.top-about__images .top-about__image:first-of-type {
  width: 45.75%;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .top-about__images .top-about__image:first-of-type {
    width: 42.42%;
  }
}
.top-about__images .top-about__image:nth-of-type(2) {
  width: 52%;
  top: 0;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .top-about__images .top-about__image:nth-of-type(2) {
    width: 53%;
    top: unset;
    bottom: 0;
  }
}

.top-about__image {
  position: absolute;
}

.bl-btn--top-about {
  margin-top: 82px;
}
@media screen and (max-width: 1024px) {
  .bl-btn--top-about {
    margin-top: 30px;
  }
}

/*========== 事業内容 ==========*/
.top-business {
  padding-top: 164px;
}
@media screen and (max-width: 1024px) {
  .top-business {
    padding-top: 80px;
  }
}

.inner--top-business {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.top-business__side-l {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.normalDocs--top-business {
  margin-top: 25px;
  width: 81%;
}
@media screen and (max-width: 1024px) {
  .normalDocs--top-business {
    width: 100%;
  }
}

.top-business__list {
  display: flex;
  align-items: stretch;
  justify-content: center;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .top-business__list {
    justify-content: unset;
  }
}
.top-business__list .top-business__item {
  padding-top: 0 !important;
}
@media screen and (max-width: 1024px) {
  .top-business__list .top-business__item.swiper-slide {
    padding: 0 10px;
  }
}
.top-business__list .top-business__item:not(:last-of-type) {
  border-right: 1px solid #FFFFFF;
}

@media screen and (max-width: 1024px) {
  .top-business .swiper-slide-duplicate {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  .top-business .swiper-button-prev,
.top-business .swiper-button-next {
    width: 40px;
    height: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .top-business .swiper-button-prev img,
.top-business .swiper-button-next img {
    width: 100%;
    height: auto;
    display: block;
  }
  .top-business .swiper-button-prev {
    left: 10px;
    transform: translate(50%, -50%);
  }
  .top-business .swiper-button-next {
    right: 10px;
    transform: translate(-50%, -50%);
  }
  .top-business .swiper-button-prev::after,
.top-business .swiper-button-next::after {
    display: none;
  }
}
.top-business__item {
  width: 33.333%;
}
@media screen and (max-width: 1024px) {
  .top-business__item {
    width: auto;
    flex-shrink: 0;
  }
}

.top-business__img {
  width: 100%;
  aspect-ratio: 1/0.65;
}

.top-business__card {
  padding: 47px 11.71% 65px;
  background-color: #016725;
}

.top-business__ttl {
  font-size: max(1.97vw, 28px);
  color: #FFFFFF;
  font-family: "Zen Old Mincho", serif;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .top-business__ttl {
    font-size: 22px;
  }
}

.normalDocs--top-business__inCard {
  margin-top: 30px;
  width: 100%;
  color: #FFFFFF;
  line-height: 1.77;
}

.bl-btn--top-business {
  margin-top: 100px;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .bl-btn--top-business {
    margin-top: 30px;
    margin-right: auto;
  }
}

/*========== 採用情報 ==========*/
.top-recruit {
  width: 100%;
  height: calc(100vh - 100px);
  position: -webkit-sticky;
  position: sticky;
  overflow: hidden;
  top: 100px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .top-recruit {
    aspect-ratio: unset;
    height: calc(100vh - 52px);
    top: 52px;
    margin-top: 80px;
  }
}

.top-recruit-fixed-wrap {
  position: relative;
}

.top-recruit-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -ms-filter: blur(0);
  filter: blur(0);
}

.top-recruit__appearBox {
  opacity: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.top-recruit__appearBox::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.65);
  z-index: -1;
}

.inner--top-recruit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 1024px) {
  .inner--top-recruit {
    display: block;
  }
}

.top-recruit__side-l {
  width: 46.18%;
}
@media screen and (max-width: 1024px) {
  .top-recruit__side-l {
    width: 100%;
  }
}

.top-recruit__img {
  width: 46.6%;
}
@media screen and (max-width: 1024px) {
  .top-recruit__img {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 17px;
  }
}

.normalDocs--top-recruit {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--top-recruit {
    margin-top: 20px;
  }
}

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

.adjustBlur {
  width: 100%;
  height: calc(100vh - 100px);
}
@media screen and (max-width: 1024px) {
  .adjustBlur {
    height: calc(100vh - 52px);
  }
}

/*========== お知らせ ==========*/
.top-news {
  padding-top: 230px;
  background-color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 768px) {
  .top-news {
    padding-top: 80px;
  }
}

.inner--top-news {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3%;
}
@media screen and (max-width: 1024px) {
  .inner--top-news {
    flex-direction: column;
    gap: 30px;
  }
}

.bl-ttl--top-news {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  .bl-ttl--top-news {
    width: 100%;
  }
}

.top-news__side-r {
  width: 80%;
}
@media screen and (max-width: 1024px) {
  .top-news__side-r {
    width: 100%;
  }
}

.news__list .news__item:last-of-type {
  border-bottom: 0.7px solid #707070;
}
@media screen and (max-width: 1024px) {
  .news__list .news__item:first-of-type {
    border-top: unset;
  }
}

.news__item {
  border-top: 0.7px solid #707070;
}
.news__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3.15%;
  position: relative;
  padding: 3% 0;
}
@media screen and (max-width: 1024px) {
  .news__item a {
    display: block;
    gap: unset;
    padding: 30px 0 20px;
  }
}
.news__item a:hover .arrow {
  opacity: 0;
  transition: all 0.5s;
}
.news__item a:hover .arrow--hover {
  opacity: 1;
  transition: all 0.5s;
}
.news__item a:hover .news__txtBox {
  left: 10px;
  transition: all 0.5s;
}

.news-thumbnail {
  width: 25%;
}
@media screen and (max-width: 1024px) {
  .news-thumbnail {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.news__txtBox {
  width: 70%;
  position: relative;
  left: 0;
  transition: all 0.5s;
  padding-right: 15%;
}
@media screen and (max-width: 1024px) {
  .news__txtBox {
    width: 100%;
    padding-right: 50px;
  }
}

.news-date {
  font-size: max(1.3vw, 18px);
  color: #016725;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .news-date {
    font-size: 14px;
    margin-top: 15px;
  }
}

.news-txt {
  font-size: max(1.3vw, 18px);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  .news-txt {
    font-size: 14px;
  }
}

.news__arrow {
  position: absolute;
  width: clamp(55px, 4.29%, 41.25px);
  height: auto;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .news__arrow {
    width: 31px;
  }
}

.arrow,
.arrow--hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
}

.arrow {
  opacity: 1;
  transition: all 0.5s;
}

.arrow--hover {
  opacity: 0;
  transition: all 0.5s;
}

.bl-btn--top-news {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .bl-btn--top-news {
    margin-top: 30px;
    margin-right: 0;
    margin-left: auto;
  }
}

/*========= アクセスマップ ========*/
.top-access {
  margin-top: 200px;
}
@media screen and (max-width: 1024px) {
  .top-access {
    margin-top: 120px;
  }
}

.normalDocs--top-access {
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--top-access {
    margin-top: 17px;
  }
}

.top-access__mainInfo {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.25%;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .top-access__mainInfo {
    display: block;
  }
}

.top-access__map {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .top-access__map {
    width: 100%;
    margin-top: 50px;
    margin: 50px auto 0;
    max-width: 450px;
  }
}
.top-access__map iframe {
  width: 100%;
  aspect-ratio: 1/0.72;
}
@media screen and (max-width: 1024px) {
  .top-access__map iframe {
    aspect-ratio: 1/0.628;
  }
}

.top-access__address {
  width: 45.75%;
}
@media screen and (max-width: 1024px) {
  .top-access__address {
    width: 100%;
    max-width: 450px;
    margin: 15px auto 0;
  }
}

.top-access__companyName {
  font-size: max(22.5px, 1.56vw);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  .top-access__companyName {
    font-size: 16px;
  }
}

.top-access-table,
.top-access-table__body {
  display: block;
  width: 100%;
}

.top-access-table__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 0.7px solid #707070;
}
@media screen and (max-width: 1024px) {
  .top-access-table__row {
    display: block;
  }
}

.top-access-table__head {
  width: 20.5%;
  font-family: "Zen Old Mincho", serif;
  padding: 20px 0 0;
}
@media screen and (max-width: 1024px) {
  .top-access-table__head {
    display: block;
    padding: 10px 0 0;
    width: 100%;
  }
}

.top-access-table__data {
  width: 79.5%;
  font-weight: 400;
  font-family: "Zen Old Mincho", serif;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .top-access-table__data {
    display: block;
    padding: 5px 0 20px;
    width: 100%;
  }
}

.googlemapLink {
  margin-top: 15px;
  width: max(16%, 100px);
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .googlemapLink {
    margin-top: 10px;
    width: 22.57%;
  }
}

.bl-btn--top-access {
  margin-top: 55px;
}
@media screen and (max-width: 1024px) {
  .bl-btn--top-access {
    margin: 40px auto 0;
  }
}

/*========== clearance ==========*/
.top-clearance {
  margin-top: 200px;
  margin-bottom: 200px;
  width: 100%;
  overflow-x: hidden;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .top-clearance {
    margin-top: 16px;
    margin-bottom: 80px;
  }
}

.loop-slider--top-clearance {
  position: absolute;
  top: 32%;
}
@media screen and (max-width: 1024px) {
  .loop-slider--top-clearance {
    top: 48%;
  }
}

.loop-slider__item--top-clearance {
  color: #016725;
  font-size: 10.41vw;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .loop-slider__item--top-clearance {
    font-size: 57px;
  }
}

.top-clearanceSlider {
  width: 338%;
  aspect-ratio: 1/0.135;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-clearanceSlider {
    width: 735.96%;
    margin: 64px auto 0 -5.2vw;
  }
}
.top-clearanceSlider .top-clearanceSlider__block {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 100%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
  height: 100%;
  width: 50%;
  display: block;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    -webkit-animation: infinity-scroll-left 30s infinite linear 0.5s both 0.001s;
    animation: infinity-scroll-left 30s infinite linear 0.5s both 0.001s;
  }
}
.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item {
  height: auto;
  position: absolute;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:first-of-type {
  width: 11.6% !important;
  top: 0;
  left: 6.6%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:nth-of-type(2) {
  width: 10.12% !important;
  bottom: 0;
  left: 25.48%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:nth-of-type(3) {
  width: 9.78% !important;
  top: 9.8%;
  left: 41.88%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:nth-of-type(4) {
  width: 11.15% !important;
  bottom: 15.98%;
  left: 58.51%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:nth-of-type(5) {
  width: 8.33% !important;
  bottom: 0;
  left: 70.48%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item:nth-of-type(6) {
  width: 14.63% !important;
  top: 0;
  left: 81.25%;
}

.top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list .top-clearanceSlider__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  -webkit-animation: infinity-scroll-left 40s infinite linear 0.5s both;
          animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: 16.6666666667vw;
}

.scroll-infinity__item > img {
  width: 100%;
  height: auto;
}

/*

@media screen and (max-width: 768px) {
    .top-clearanceSlider .top-clearanceSlider__block .top-clearanceSlider__list {
        animation: none;
    }
}*/
/*---------------------------
ABOUTページ
---------------------------*/
/*========== 代表メッセージ ==========*/
.message {
  padding: 180px 0 120px;
  background-color: #013312;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .message {
    padding: 120px 0;
  }
}

@media screen and (max-width: 768px) {
  .under-fv__txt-side-r--pageAbout {
    margin-top: 1.5vh;
  }
  .normalDocs--pageAbout {
    margin-top: 10px;
  }
  .normalDocs_emphasis--pageAbout {
    font-size: 16px;
    margin-top: 15px;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.message__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.message__bg::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.68);
}

.inner--message {
  position: relative;
  z-index: 3;
}

.message__flex-wrap {
  margin-top: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .message__flex-wrap {
    display: block;
    margin-top: 17px;
  }
}

.message__side-l {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .message__side-l {
    width: 100%;
    max-width: 450px;
    margin: 30px auto 0;
  }
}

.message__side-r {
  width: 50%;
}
@media screen and (max-width: 1024px) {
  .message__side-r {
    width: 100%;
    margin-top: 30px;
  }
}

.normalDocs--messasge {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--messasge {
    margin-top: 17px;
  }
}

.message-sign {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: 50px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .message-sign {
    margin-top: 25px;
  }
}

.message-sign__head {
  font-size: max(1.3vw, 18px);
  margin-right: 40px;
  letter-spacing: 0.025em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .message-sign__head {
    font-size: 13px;
    margin-right: 20px;
  }
}

.message-sign__name {
  font-size: max(1.8vw, 26px);
  letter-spacing: 0.025em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .message-sign__name {
    font-size: 20px;
  }
}

/*========== 経営方針 ==========*/
.about {
  padding: 150px 0;
}
@media screen and (max-width: 1024px) {
  .about {
    padding: 80px 0;
  }
}

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

.about__side-l {
  width: 65.5%;
}
@media screen and (max-width: 1024px) {
  .about__side-l {
    width: 100%;
  }
}

.about__side-r {
  width: 34.5%;
}
@media screen and (max-width: 1024px) {
  .about__side-r {
    display: none;
  }
}

.about-info .about-info__item:not(:first-of-type) {
  margin-top: 150px;
}
@media screen and (max-width: 1024px) {
  .about-info .about-info__item:not(:first-of-type) {
    margin-top: 50px;
  }
}

.about-info__item {
  width: 100%;
  aspect-ratio: 1/0.77;
}
@media screen and (max-width: 1024px) {
  .about-info__item {
    aspect-ratio: unset;
  }
}

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

.about-info__num {
  font-size: max(5.2vw, 75px);
  color: #016725;
  margin-right: 40px;
  letter-spacing: 0;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .about-info__num {
    font-size: 56px;
    margin-right: 15px;
  }
}

@media screen and (max-width: 1024px) {
  .about-info__img {
    width: 100%;
    max-width: 450px;
    margin: 17px auto 0;
  }
}
.about-info__ttl {
  font-size: max(2.6vw, 37.5px);
  letter-spacing: 0.05em;
  line-height: 1;
  padding-top: 1.4vw;
}
@media screen and (max-width: 768px) {
  .about-info__ttl {
    font-size: 27px;
    padding-top: 15px;
  }
}

.subTtl--about {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .subTtl--about {
    margin-top: 20px;
    font-size: 22px;
  }
}

.normalDocs--about {
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--about {
    margin-top: 18px;
  }
}

.about-img {
  width: 100%;
  aspect-ratio: 1/1.468;
  position: relative;
}

.about-img__item {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.about-info__fan-shape-wrap {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .about-info__fan-shape-wrap {
    display: block;
  }
}

.about-info__fan-shape {
  width: 37.4%;
}
@media screen and (max-width: 768px) {
  .about-info__fan-shape {
    width: 69.7%;
    max-width: 450px;
    margin: 25px auto 0;
  }
}

.about-img__item--policy {
  z-index: 3;
}

.about-img__item--attitude {
  z-index: 2;
}

.about-img__item--fanShape {
  z-index: 1;
}

/*========== 会社概要 ==========*/
.overview {
  padding: 200px 0;
  position: relative;
  background-color: #016725;
}
@media screen and (max-width: 1024px) {
  .overview {
    padding: 80px 0;
  }
}

.overview-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.inner--overview {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 17%;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .inner--overview {
    display: block;
  }
}

.overview__side-r {
  width: auto;
}
@media screen and (max-width: 1024px) {
  .overview__side-r {
    width: 100%;
  }
}

.overview-table,
.overview-table__body {
  width: 100%;
  display: block;
}

@media screen and (max-width: 1024px) {
  .overview-table {
    margin-top: 27px;
    border-top: 1px solid #fff;
  }
}
.overview-table__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
  .overview-table__row {
    display: block;
  }
}

.overview-table__head {
  display: block;
  width: max(11.61vw, 170px);
  font-size: max(1.14vw, 16.5px);
  color: #FFFFFF;
  line-height: 1.6;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .overview-table__head {
    width: 100%;
    padding: 10px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .overview-table__head {
    font-size: 14px;
  }
}

.overview-table__data {
  display: block;
  width: min(100% - 11.61vw, 100% - 170px);
  font-size: max(1.14vw, 16.5px);
  color: #FFFFFF;
  line-height: 1.6;
  font-weight: 500;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .overview-table__data {
    width: 100%;
    padding: 5px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .overview-table__data {
    font-size: 14px;
  }
}

/*========== access ==========*/
.access {
  padding: 200px 0;
}
@media screen and (max-width: 1024px) {
  .access {
    padding: 80px 0;
  }
}

.access__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 100px 12%;
  margin-top: 60px;
}
@media screen and (max-width: 1024px) {
  .access__list {
    flex-direction: column;
    margin-top: 17px;
    gap: 50px;
  }
}

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

.access__map {
  width: 100%;
  aspect-ratio: 1/0.58;
}
@media screen and (max-width: 1024px) {
  .access__map {
    max-width: 450px;
    aspect-ratio: 1/0.659;
    margin: 0 auto;
  }
}
.access__map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.access__name {
  font-family: "Zen Old Mincho", serif;
  font-size: max(1.56vw, 22.5px);
  margin-top: 30px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .access__name {
    font-size: 18px;
    margin-top: 13px;
  }
}

.access-table {
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .access-table {
    margin-top: 14px;
  }
}

.access-table,
.access-table__body {
  width: 100%;
  display: block;
}

.access-table__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 0.7px solid rgba(112, 112, 112, 0.7);
	line-height: 1.7;
}
@media screen and (max-width: 1024px) {
  .access-table__row {
    display: block;
	line-height: 2.22;
  }
}

.access-table__head {
  width: 25%;
  display: block;
  font-family: "Zen Old Mincho", serif;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .access-table__head {
    width: 100%;
    padding: 10px 0 0;
  }
}

.access-table__data {
  width: 75%;
  display: block;
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  padding: 20px 0;
}
@media screen and (max-width: 1024px) {
  .access-table__data {
    width: 100%;
    padding: 5px 0 10px;
  }
}

.googlemap-icon {
  width: max(6.56vw, 90px);
  margin-right: 0;
  margin-left: auto;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .googlemap-icon {
    width: 22.57%;
    margin-top: 10px;
  }
}

/*========== 沿革 ==========*/
.history {
  padding-top: 177px;
  border-top: 10px solid #016725;
  border-bottom: 10px solid #016725;
}
@media screen and (max-width: 1024px) {
  .history {
    padding-top: 80px;
    border-top: 5px solid #016725;
    border-bottom: 5px solid #016725;
  }
}

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

.normalDocs--hiestory {
  margin-top: 30px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--hiestory {
    margin-top: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .inner--history {
    position: relative;
  }
}
.history-upper__side-r {
  width: 20%;
  opacity: 0.45;
}
@media screen and (max-width: 1024px) {
  .history-upper__side-r {
    width: 38.5%;
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 150px;
  }
}
.history-upper__side-r img {
  display: block;
  width: 100%;
  height: auto;
}

.history-index {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .history-index {
    margin-top: 25px;
  }
}

.history-index__ttl {
  font-size: max(1.56vw, 22.5px);
  letter-spacing: 0;
  color: #016725;
  margin-right: 30px;
  opacity: 0.47;
}
@media screen and (max-width: 768px) {
  .history-index__ttl {
    font-size: 13px;
  }
}

.pc-tab1024--history-index {
  width: min(100% - 91px, 100% - 4.1vw - 30px);
}

.history-index__list {
  width: min(100% - 91px, 100% - 4.1vw - 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .history-index__list {
    width: 52.8%;
    position: relative;
    margin-top: 10px;
    display: block;
    padding: 10px 20px;
    border: 1px solid #3C3C3C;
  }
  .history-index__list::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 0.83vw solid transparent;
    border-left: 0.83vw solid transparent;
    border-top: 1.45vw solid #016725;
    border-bottom: 0;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
  }
}
@media screen and (max-width: 1024px) and (max-width: 1024px) {
  .history-index__list::after {
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 16px solid #016725;
  }
}
.history-index__list button {
  width: 15%;
  background-color: #FFFFFF;
  display: block;
  padding: 15px;
  text-align: center;
  letter-spacing: 0.03em;
  line-height: 1;
  border: 1px solid #3C3C3C;
  transition: all 0.5s;
  cursor: pointer;
}
.history-index__list button:hover {
  transition: all 0.5s;
  color: #FFFFFF;
  border: 1px solid #FFFFFF;
  background-color: #016725;
}

.history .slider-wrapper {
  padding: 80px 0;
  background-color: #CCE2D4;
  margin-top: 55px;
}
@media screen and (max-width: 1024px) {
  .history .slider-wrapper {
    padding: 45px 0;
    margin-top: 30px;
  }
}
.history .swiper-slide {
  position: relative;
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .history .swiper-slide {
    padding-top: 100px;
  }
}
.history .swiper-slide::after {
  width: 1px;
  height: calc(100% - 150px);
  background-color: #707070;
  content: "";
  position: absolute;
  right: -50px;
  bottom: 0;
}
@media screen and (max-width: 1024px) {
  .history .swiper-slide::after {
    display: none;
  }
}
.history .swiper-button-prev,
.history .swiper-button-next {
  width: 25px;
  height: 25px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .history .swiper-button-prev,
.history .swiper-button-next {
    width: 31px;
    height: 30px;
  }
}
.history .swiper-button-prev.custom-arrow {
  background-image: url("../../assets/images/about/arrow-left.png");
}
@media screen and (max-width: 1024px) {
  .history .swiper-button-prev.custom-arrow {
    background-image: url("../../assets/images/top/arrow-left.png");
  }
}
.history .swiper-button-next.custom-arrow {
  background-image: url("../../assets/images/about/arrow-right.png");
}
@media screen and (max-width: 1024px) {
  .history .swiper-button-next.custom-arrow {
    background-image: url("../../assets/images/top/arrow-right.png");
  }
}
.history .swiper-button-prev::after,
.history .swiper-button-next::after {
  display: none;
}
.history .slide-counter {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 70px auto 0;
}
.history #current-slide {
  font-size: max(2.6vw, 37px);
  color: #016725;
  opacity: 0.45;
}
@media screen and (max-width: 768px) {
  .history #current-slide {
    font-size: 25px;
  }
}
.history #total-slides {
  font-size: max(2.6vw, 37px);
  color: #016725;
  opacity: 0.45;
}
@media screen and (max-width: 768px) {
  .history #total-slides {
    font-size: 25px;
  }
}
.history .slide-counter {
  font-size: max(2.6vw, 37px);
  color: #016725;
  opacity: 0.45;
}
@media screen and (max-width: 768px) {
  .history .slide-counter {
    font-size: 25px;
  }
}
.history .slider-arrows {
  position: relative;
  width: 30%;
  /* margin: -4vw auto 0; */
  top: -2.3vw;
  left: 50%;
  transform: translate(-50%, -50%);

}

.genre-heading {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  left: 0;
  padding-bottom: 8px;
  border-bottom: 1px solid #23AB39;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (max-width: 1024px) {
  .genre-heading {
    margin-left: -5.1%;
  }
.history .slider-arrows {
	    position: relative;
    width: 59%;
    /* margin: -4vw auto 0; */
    top: -3.3vw;
    left: 50%;
    transform: translate(-50%, -50%);
	}	
}

.genre-heading__sharp {
  font-size: max(75px, 5.2vw);
  letter-spacing: 0;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #016725;
  opacity: 0.47;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .genre-heading__sharp {
    font-size: 60px;
    margin-right: 10px;
  }
}

.genre-heading__name {
  font-size: max(2.6vw, 37px);
  color: #3C3C3C;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .genre-heading__name {
    font-size: 22px;
  }
}

.history__year {
  font-size: max(4.68vw, 67.5px);
  text-align: center;
  color: #016725;
  font-weight: 700;
  line-height: 0.9;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 768px) {
  .history__year {
    font-size: 68px;
  }
}

.history__img {
  width: 100%;
  aspect-ratio: 1/0.66;
}

@media screen and (max-width: 1024px) {
  .inner--history-slider {
    width: 100%;
  }
}
.history__explain {
  font-size: max(1.14vw, 16px);
  margin-top: 20px;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .history__explain {
    font-size: 14px;
    text-align: left;
  }
}

.history__explain--textSide-left {
  text-align: left;
}

/*=========== strength ===========*/
.strength {
  padding: 200px 0 100px;
}
@media screen and (max-width: 1024px) {
  .strength {
    padding: 80px 0;
  }
}

@media screen and (max-width: 768px) {
  .subTtl--strength {
    margin-top: 20px;
  }
}
.normalDocs--strength {
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .normalDocs--strength {
    margin-top: 17px;
  }
}

.loop-slider--strength {
  margin-top: 60px;
  border-top: 0.7px solid rgba(112, 112, 112, 0.3);
  padding-top: 0.7%;
  border-bottom: 0.7px solid rgba(112, 112, 112, 0.3);
}
@media screen and (max-width: 1024px) {
  .loop-slider--strength {
    margin-top: 30px;
    width: 100vw;
    margin-left: -6.67vw;
  }
}
.loop-slider--strength .loop-slider__item--en {
  color: #016725;
  line-height: 0.65;
  opacity: 0.12;
}

.strength-wrap {
  margin-top: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .strength-wrap {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
}

.strength-txt {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .strength-txt {
    width: 100%;
  }
}

@media screen and (max-width: 1024px) {
  .normalDocs--strength {
    margin-top: 17px;
  }
}

.normalDocs--strength-explain {
  margin-top: 20px;
}

.strength-img {
  width: 35.8%;
}
@media screen and (max-width: 1024px) {
  .strength-img {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

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

.difference__list {
  margin-top: 25px;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 40px 1.6%;
}
@media screen and (max-width: 768px) {
  .difference__list {
    margin-top: 17px;
    flex-direction: column;
    gap: 50px;
  }
}

.difference__item {
  width: 31.9%;
  background-color: #016725;
}
@media screen and (max-width: 1024px) {
  .difference__item {
    width: 100%;
  }
}

.difference__img {
  width: 100%;
  aspect-ratio: 1/0.653;
}
@media screen and (max-width: 1024px) {
  .difference__img {
    aspect-ratio: 1/0.533;
  }
}

.difference__ttl {
  display: flex;
  align-items: center;
  padding: 20px 0 0;
  font-size: max(1.97vw, 28.5px);
  color: #FFFFFF;
  width: 76.6%;
  line-height: 1.38;
  margin: 0 auto;
}
.businessProcess__block.businessProcess__block--width-bar{
	z-index: 99;
}
@media screen and (max-width: 1024px) {
  .difference__ttl {
    padding: 30px 0 0;
    text-align: center;
    justify-content: center;
    width: 86.57%;
  }
}
@media screen and (max-width: 768px) {
  .difference__ttl {
    font-size: 22px;
  }
}

.difference__explain {
  width: 76.6%;
  margin: 5px auto 0;
  color: #FFFFFF;
  padding-bottom: 30px;
  font-family: "Zen Old Mincho", serif;
	font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .difference__explain {
    width: 86.57%;
    padding-bottom: 50px;
    margin: 18px auto 0;
  }
}

/*---------------------------
SERVICEページ
---------------------------*/
@media screen and (max-width: 768px) {
  .bl-ttl__ja--pageService {
    line-height: 1.4;
  }
}
/*========== 通関サービス ==========*/
.process {
  padding-top: 200px;
  background-color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .process {
    padding-top: 80px;
  }
	.process.process--clearance{
		padding-top: 0;
	}
}

.process__main-img {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .process__main-img {
    margin-top: 17px;
    aspect-ratio: 1/0.64;
  }
}

@media screen and (max-width: 768px) {
  .inner--clearance {
    width: 86.66%;
    margin: 0 auto;
    overflow-x: scroll;
    padding-top: 40px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    overflow-x: scroll;
    overflow-y: hidden;
    margin-top: 80px;
  }
}
.businessProcess {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.71;
}
@media screen and (max-width: 768px) {
  .businessProcess {
    width: 681px;
  }
	.businessProcess--clearance{
		aspect-ratio: 1 / 0.84;
}
	.businessProcess--clearance .businessProcess__bg img{
	object-fit: contain;
	}
}

.businessProcess__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.businessProcess__bg img {
  -o-object-fit: cover;
     object-fit: cover;
}

.processAnnotation {
  position: absolute;
  top: -15px;
  right: 0;
  transform: translateY(-100%);
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .processAnnotation {
    top: unset;
    bottom: 13px;
    left: 3.59%;
    z-index: 9;
    right: unset;
    transform: unset;
  }
}

.processAnnotation__ttl {
  font-size: 0.88vw;
  color: #016725;
  line-height: 1;
  padding: 8px 30px;
  border: 0.208vw solid #016725;
  background-color: #DEEAE0;
  letter-spacing: 0.03em;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .processAnnotation__ttl {
    font-size: 11px;
    border: 1px solid #016725;
    margin-right: 8px;
  }
}

.processAnnotation__txt {
  font-size: 0.88vw;
  color: #016725;
  letter-spacing: 0.03em;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .processAnnotation__txt {
    font-size: 11px;
  }
}

.businessProcess-ttl {
  font-size: 2.6vw;
  line-height: 1;
  letter-spacing: 0.05em;
  padding: 20px 30px;
  background-color: #FFFFFF;
  border: 0.208vw solid #016725;
  position: absolute;
  top: 0;
  left: 3.8%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .businessProcess-ttl {
    font-size: 22px;
    padding: 8px 14px;
    border: 1px solid #016725;
  }
}

.businessProcess__block {
  position: absolute;
  z-index: 9;
}

.businessProcess-icon img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.businessProcess-icon--circle {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
  border: 1px solid #707070;
  background-color: #FFFFFF;
  border-radius: 50%;
}

.businessProcess--bg-paleGreen {
  background-color: #DEEAE0;
}

.businessProcess__block--upper {
  top: 16%;
  width: 12.6%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--upper {
    top: 21.4%;
  }
}

.businessProcess-bar {
  z-index: 99;
}

.businessProcess-name {
  font-size: 1.3vw;
  text-align: center;
  margin-top: 0.833vw;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .businessProcess-name {
    font-size: 13px;
    line-height: 1.38;
  }
}

.businessProcess__hoverImg {
  position: absolute;
  width: 43.312%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .businessProcess__hoverImg {
    width: 93.33vw;
  }
}

.hover-img {
  opacity: 0;
  transition: all 0.5s;
  transform: scale(0);
  transform-origin: center bottom;
}
.hover-img.businessProcess__hoverImg--wareHouse {
  transform-origin: right top;
}
.hover-img.businessProcess__hoverImg--wareHouse.show {
  transform-origin: right top;
}
.hover-img.businessProcess__hoverImg--check {
  transform-origin: left center;
}
.hover-img.businessProcess__hoverImg--check.show {
  transform-origin: left center;
}

.hover-img.show {
  transition: all 0.5s;
  opacity: 1;
  transform: scale(1);
  transform-origin: center bottom;
}

.businessProcess__hoverImg--wareHouse {
  top: 32.48%;
  left: 29.93%;
}

.businessProcess__hoverImg--ourCompany {
  top: 34.85%;
  left: 28.81%;
}

.businessProcess__block--num1 {
  left: 3.875%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num1 {
    left: 3.03%;
  }
}
.businessProcess__block--num1 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 66%;
  height: auto;
}

.businessProcess-name__txt {
  font-size: 1.3vw;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .businessProcess-name__txt {
    font-size: 13px;
    letter-spacing: 0;
  }
}

.businessProcess-name--noBorder {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.businessProcess__block--num2 {
  top: 15.05%;
  left: 17.8%;
  width: 24.75%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num2 {
    left: 15.4%;
    top: 20.55%;
    width: 22.86%;
  }
}
.businessProcess__block--num2 .businessProcess-icon {
  width: 68.43%;
  aspect-ratio: 1/0.42;
  border: unset;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num2 .businessProcess-icon {
    width: 67.91%;
  }
}
.businessProcess__block--num2 .businessProcess-icon img {
  width: 100%;
  height: auto;
}
.businessProcess__block--num2 .businessProcess-bar {
  position: relative;
  transform: translateY(-70%);
}
.businessProcess__block--num2 .businessProcess-name--between {
  margin: 0 auto;
  width: 67.92%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num2 .businessProcess-name--between {
    width: 73.92%;
  }
}
.businessProcess__block--num2 .businessProcess-name--between .businessProcess-name__img {
  width: 27.13%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num2 .businessProcess-name--between .businessProcess-name__img {
    width: 24.48%;
    margin-right: 10px;
  }
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num2 .businessProcess-name--between {
    padding: 7px 10px;
    border: 1px solid #016725;
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translate(-50%, -100%);
  }
}

.businessProcess__block--num3 {
  left: 42.2%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num3 {
    left: 253px;
  }
}
.businessProcess__block--num3 .businessProcess-icon img {
  width: 62.87%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}

.businessProcess__block--num4 {
  top: 6.746%;
  left: 52.37%;
  width: 13.56%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num4 {
    width: 95.24px;
    top: 61.5px;
    left: 320.8px;
	 aspect-ratio: 1/0.958
  }
}
.businessProcess__block--num4 .businessProcess-name--between {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.208vw solid #016725;
  aspect-ratio: 1/0.3824;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num4 .businessProcess-name--between {
    border: 1px solid #016725;
  }
}
.businessProcess__block--num4 .businessProcess-name--between .businessProcess-name__img {
  width: 27.13%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num4 .businessProcess-name--between .businessProcess-name__img {
    width: 28px;
    margin-right: 10px;
  }
}
.businessProcess__block--num4 .businessProcess-bar {
  position: absolute;
  width: 59.67%;
  top: 87.5%;
  left: 50%;
  transform: translate(-50%, -34%);
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num4 .businessProcess-bar {
    width: 59.6px;
    top: 92.5px;
  }
}

.businessProcess-name--bg-paleGreen,
.businessProcess-name__txt--bg-paleGreen {
  color: #016725;
  background-color: #DEEAE0;
}

.businessProcess__block--num5 {
  left: 62.93%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num5 {
    left: 395.5px;
  }
}
.businessProcess__block--num5 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59.9%;
  height: auto;
}

.businessProcess__block--num6 {
top: 6.746%;
    left: 71%;
    width: 18.31%;
    aspect-ratio: 1 / 0.729;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num6 {
    width: 137.22px;
    top: 58.5px;
    left: 453.1px;
    aspect-ratio: 1 / 0.709;
  }
}
.businessProcess__block--num6 .businessProcess-name--between {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.2832;
  border: 0.208vw solid #016725;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num6 .businessProcess-name--between {
    border: 1px solid #016725;
  }
}
.businessProcess__block--num6 .businessProcess-name--between .businessProcess-name__img {
  width: 21.8%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num6 .businessProcess-name--between .businessProcess-name__img {
    margin-right: 10px;
  }
}
.businessProcess__block--num6 .businessProcess-bar {
  position: absolute;
  width: 44.19%;
  top: 87.5%;
  left: 50%;
  transform: translate(-50%, -34%);
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num6 .businessProcess-bar {
    width: 80.69px;
    top: 95px;
  }
}

.businessProcess__block--num7 {
  left: 83.625%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num7 {
    left: 555px;
  }
}
.businessProcess__block--num7 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63.36%;
  height: auto;
}

.businessProcess__block--num8 {
  bottom: 21%;
  left: 13.5%;
  width: 24.75%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num8 {
    bottom: 160.5px;
    left: 91px;
    width: 140px;
  }
}
.businessProcess__block--num8 .businessProcess-name--between {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.371;
  border: 0.208vw solid #016725;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num8 .businessProcess-name--between {
    border: 1px solid #016725;
  }
}
.businessProcess__block--num8 .businessProcess-name--between .businessProcess-name__img {
  width: 22.6%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num8 .businessProcess-name--between .businessProcess-name__img {
    margin-right: 10px;
  }
}

.businessProcess__block--num9 {
  bottom: 5.54%;
  left: 41.93%;
  width: 12.6%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num9 {
    bottom: 67px;
    left: 251px;
    width: 78px;
  }
}
.businessProcess__block--num9 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 59.9%;
  height: auto;
}

.businessProcess__block--num10 {
  bottom: 28.1%;
  left: 41.93%;
  width: 12.6%;
  aspect-ratio: 1/1.574;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num10 {
    bottom: 178px;
    left: 253px;
    width: 77px;
  }
}
.businessProcess__block--num10 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 67.8%;
  height: auto;
}
.businessProcess__block--num10 .businessProcess-bar {
  width: 13.86%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num10 .businessProcess-bar {
    width: 10.62px;
    bottom: -12px;
  }
}

.businessProcess__block--num11 {
  bottom: 29.313%;
  left: 53.87%;
  width: 22.56%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num11 {
    bottom: 241px;
    left: 338.3px;
    width: 168px;
  }
}
.businessProcess__block--num11 .businessProcess-name--between {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.2299;
  border: 0.208vw solid #016725;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num11 .businessProcess-name--between {
    border: 1px solid #016725;
  }
}
.businessProcess__block--num11 .businessProcess-name--between .businessProcess-name__img {
  width: 17.7%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num11 .businessProcess-name--between .businessProcess-name__img {
    width: 22px;
    margin-right: 10px;
  }
}

.businessProcess__block--num12 {
  bottom: 7.57%;
  left: 71.62%;
  width: 18.56%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num12 {
    bottom: 160.5px;
    left: 437px;
    width: 132.5px;
  }
}
.businessProcess__block--num12 .businessProcess-name--between {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/0.279;
  border: 0.208vw solid #016725;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num12 .businessProcess-name--between {
    border: 1px solid #016725;
  }
}
.businessProcess__block--num12 .businessProcess-name--between .businessProcess-name__img {
  width: 21.54%;
  margin-right: 0.5vw;
}
@media screen and (max-width: 768px) {
  .businessProcess__block--num12 .businessProcess-name--between .businessProcess-name__img {
    width: 22px;
    margin-right: 10px;
  }
}

.businessProcess-block--left-bar {
  width: 32.34%;
  bottom: 18.22%;
  left: 10.21%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--left-bar {
    width: 196.26px;
    bottom: 119px;
    left: 58.5px;
  }
}

.businessProcess-block--right-bar {
  width: 34.06%;
  bottom: 18.22%;
  left: 55.875%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--right-bar {
    width: 266px;
    bottom: 121px;
    left: 335.5px;
  }
}

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

.service-explain__side-l {
  width: 44.43%;
}
@media screen and (max-width: 1024px) {
  .service-explain__side-l {
    width: 100%;
  }
}

.service-explain__side-r {
  width: 49.25%;
  position: relative;
  aspect-ratio: 1/0.407;
}
@media screen and (max-width: 1024px) {
  .service-explain__side-r {
    width: 100%;
    margin-top: 44px;
  }
}

.normalDocs--service-explain {
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .normalDocs--service-explain {
    margin-top: 17px;
  }
}

.features-border {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.features-border img {
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1024px) {
  .features-border img {
    height: auto;
  }
}

@media screen and (max-width: 1024px) {
  .features-border--wareHouse,
.features-border--ec {
    aspect-ratio: 1/0.62;
  }
  .features-border--logi {
    aspect-ratio: 1/0.73;
  }
}
.features-ttl {
  font-size: max(1.822vw, 25px);
  background-color: #F7F5F6;
  padding: 5px 1.56vw;
  letter-spacing: 0.025em;
  line-height: 1;
  position: absolute;
  top: 0;
  left: 6.34%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .features-ttl {
    font-size: 22px;
    padding: 5px 7px;
  }
}

.features-list {
  position: absolute;
  width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.features-list__item {
  font-size: max(0.9vw, 11px);
  padding-left: max(0.93vw, 14px);
  position: relative;
}
.features-list__item::after {
  content: "・";
  font-size: max(0.93vw, 11px);
  position: absolute;
  top: 0;
  left: 0;
}

.businessProcess__color-bg {
  padding-top: 357px;
  margin-top: -160px;
  background-color: #F7F5F6;
  padding-bottom: 170px;
}
@media screen and (max-width: 768px) {
  .businessProcess__color-bg {
    padding-top: 100px;
  }
}

/*======= 倉庫(保税倉庫) ＆ 物流フルフィルメント =======*/
.businessProcess--logi {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.319;
}
@media screen and (max-width: 768px) {
  .businessProcess--logi {
    width: 681px;
    aspect-ratio: 1/0.4258;
  }
}

.businessProcess-block--logiUpper {
  top: 24.26%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiUpper {
    top: 55px;
  }
}
.businessProcess-block--logiUpper .businessProcess-name__txt {
  display: flex;
  align-items: center;
  justify-content: center;
}
.businessProcess-block--logiUpper .businessProcess-icon--circle {
  margin-top: 5.44%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiUpper .businessProcess-icon--circle {
    margin-top: 13px;
  }
}
.businessProcess-block--logiUpper .businessProcess-name__txt--bg-paleGreen {
  margin: 0 auto;
}

.businessProcess-block--logiNum1 {
  left: 3.25%;
  width: 12.5%;
	z-index: 99!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum1 {
    width: 77px;
    left: 20px;
  }
}
.businessProcess-block--logiNum1 .businessProcess-name__txt {
  width: 54.95%;
  aspect-ratio: 1/0.54;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum1 .businessProcess-name__txt {
    width: 53px;
    border: 1px solid #016725;
  }
}
.businessProcess-block--logiNum1 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72.5%;
  height: auto;
}
.businessProcess-block--logiNum1 .businessProcess-icon .businessProcess-bar {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -4.35%;
  width: 64.7%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum1 .businessProcess-icon .businessProcess-bar {
    right: -7px;
    width: 41.3px;
  }
}
.businessProcess-block--logiNum1 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}

.businessProcess-block--logiNum2 {
  left: 23.8%;
  width: 12.5%;
	z-index: 98!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum2 {
    left: 129.5px;
    width: 102.53px;
  }
}
.businessProcess-block--logiNum2 .businessProcess-name__txt {
  width: 100%;
  aspect-ratio: 1/0.29;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum2 .businessProcess-name__txt {
    border: 1px solid #016725;
  }
}
.businessProcess-block--logiNum2 .businessProcess-icon {
  width: 99.01%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum2 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--logiNum2 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53.96%;
  height: auto;
}
.businessProcess-block--logiNum2 .businessProcess-icon .businessProcess-bar {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -4.35%;
  width: 64.7%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum2 .businessProcess-icon .businessProcess-bar {
    right: -12px;
    width: 70px;
  }
}
.businessProcess-block--logiNum2 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}

.businessProcess-block--logiNum3 {
  left: 40.06%;
  width: 20%;
	z-index: 97!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum3 {
    width: 169.7px;
    left: 253.6px;
  }
}
.businessProcess-block--logiNum3 .businessProcess-name__txt {
  width: 100%;
  aspect-ratio: 1/0.1875;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum3 .businessProcess-name__txt {
    border: 1px solid #016725;
  }
}
.businessProcess-block--logiNum3 .businessProcess-icon {
  width: 61.52%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum3 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--logiNum3 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57.92%;
  height: auto;
}
.businessProcess-block--logiNum3 .businessProcess-icon .businessProcess-bar {
  position: absolute;
  top: 44%;
  transform: translate(100%, -50%);
  right: -4.35%;
  width: 64.69%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum3 .businessProcess-icon .businessProcess-bar {
    width: 74px;
    right: -9px;
  }
}
.businessProcess-block--logiNum3 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}

.businessProcess-block--logiNum4 {
  left: 63.68%;
  width: 12.5%;
	z-index: 96!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum4 {
    width: 130px;
    left: 431px;
  }
}
.businessProcess-block--logiNum4 .businessProcess-name__txt {
  width: 93.06%;
  aspect-ratio: 1/0.319;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum4 .businessProcess-name__txt {
    border: 1px solid #016725;
    width: 90px;
  }
}
.businessProcess-block--logiNum4 .businessProcess-icon {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum4 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--logiNum4 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52.97%;
  height: auto;
}
.businessProcess-block--logiNum4 .businessProcess-icon .businessProcess-bar {
  position: absolute;
  top: 50%;
  transform: translate(100%, -50%);
  right: -4.35%;
  width: 64.7%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum4 .businessProcess-icon .businessProcess-bar {
    width: 39.31px;
    right: -8px;
  }
}
.businessProcess-block--logiNum4 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}
.businessProcess-block--logiNum4 .businessProcess-name {
  color: #016725;
  line-height: 1.3;
}
.businessProcess-block--logiNum4 .businessProcess-name span {
  font-size: 1.14vw;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum4 .businessProcess-name span {
    font-size: 12px;
  }
}

.businessProcess-block--logiNum5 {
  left: 83.625%;
  width: 12.5%;
	z-index: 95!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum5 {
    width: 78px;
    left: 579px;
  }
}
.businessProcess-block--logiNum5 .businessProcess-name__txt {
  width: 54.95%;
  aspect-ratio: 1/0.54;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--logiNum5 .businessProcess-name__txt {
    border: 1px solid #016725;
    width: 53px;
  }
}
.businessProcess-block--logiNum5 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72.5%;
  height: auto;
}

.service-explain__side-r--logi {
  aspect-ratio: 1/0.47;
}
@media screen and (max-width: 1024px) {
  .service-explain__side-r--logi {
    margin-top: 44px;
  }
}

.alignment-wrap {
  margin-top: 70px;
}
@media screen and (max-width: 768px) {
  .alignment-wrap {
    margin-top: 33px;
  }
}

.alignment-ttl {
  font-size: max(1.823vw, 26px);
}

.alignment-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 0.83vw 1%;
}
@media screen and (max-width: 768px) {
  .alignment-list {
    gap: 5px 9px;
    margin-top: 15px;
  }
}
.alignment-list .alignment-list__item img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: auto;
}
.alignment-list .alignment-list__item:first-of-type img {
  width: 60.5%;
}
.alignment-list .alignment-list__item:nth-of-type(2) img {
  width: 66.44%;
}
.alignment-list .alignment-list__item:nth-of-type(3) img {
  width: 70.03%;
}
.alignment-list .alignment-list__item:nth-of-type(4) img {
  width: 73.28%;
}
.alignment-list .alignment-list__item:nth-of-type(5) img {
  width: 56.67%;
}
.alignment-list .alignment-list__item:nth-of-type(6) {
  width: 28.81%;
  aspect-ratio: 1/0.299;
}
@media screen and (max-width: 768px) {
  .alignment-list .alignment-list__item:nth-of-type(6) {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}
.alignment-list .alignment-list__item:nth-of-type(6) img {
  width: 80.91%;
}
.alignment-list .alignment-list__item:nth-of-type(7) {
  width: 28.81%;
  aspect-ratio: 1/0.299;
}
@media screen and (max-width: 768px) {
  .alignment-list .alignment-list__item:nth-of-type(7) {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}
.alignment-list .alignment-list__item:nth-of-type(7) img {
  width: 85.46%;
}

.alignment-list__item {
  width: 19.18%;
  aspect-ratio: 1/0.449;
  position: relative;
  border: 1px solid #016725;
}
@media screen and (max-width: 768px) {
  .alignment-list__item {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}

.businessProcess__hoverImg--management {
  top: -46.96%;
  left: 28.56%;
}

/*========== EC物流・返品対応 ==========*/
/*== EC物流 ==*/
.businessProcess--ec {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.473;
}
@media screen and (max-width: 768px) {
  .businessProcess--ec {
    width: 681px;
    aspect-ratio: 1/0.602;
  }
}

.businessProcess-block--ecNum1 {
  left: 3.875%;
  top: 22.32%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum1 {
    left: 20px;
    top: 98px;
  }
}
.businessProcess-block--ecNum1 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 62.87%;
  height: auto;
}

.businessProcess-block--ecNum2 {
  width: 66.46%;
  left: 17.78%;
  top: 33.68%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum2 {
    width: 473px;
    left: 110px;
    top: 136px;
  }
}
.businessProcess-block--ecNum2 .businessProcess-icon {
  width: 18.65%;
  position: absolute;
  bottom: 35%;
  left: 3.12%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum2 .businessProcess-icon {
    width: 75px;
  }
}
.businessProcess-block--ecNum2 .businessProcess-name__txt {
  position: absolute;
  bottom: 301.7%;
  left: 25.22%;
  width: 10.44%;
  border: 0.208vw solid #016725;
  aspect-ratio: 1/0.54;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum2 .businessProcess-name__txt {
    left: 7%;
    width: 53px;
  }
}
.businessProcess-block--ecNum2 .businessProcess-explain {
  position: absolute;
  font-size: 1.04vw;
  letter-spacing: 0.03em;
  line-height: 1.6;
  width: 58.3%;
  bottom: 83%;
  left: 25.22%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum2 .businessProcess-explain {
    position: absolute;
    font-size: 12px;
    letter-spacing: 0.03em;
    line-height: 1.6;
    width: 282px;
    bottom: 136%;
    left: 25.22%;
  }
}
.businessProcess-block--ecNum2 .businessProcess-bar {
  width: 100%;
  position: relative;
  z-index: 3;
}

.businessProcess-block--ecNum3 {
  left: 83.625%;
  top: 22.32%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum3 {
    top: 98px;
    left: 580px;
  }
}
.businessProcess-block--ecNum3 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63.36%;
  height: auto;
}

.businessProcess-block--ecNum4 {
  left: 39.3%;
  top: 58.25%;
  width: 12.65%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum4 {
    width: 77px;
    left: 253px;
    top: 235px;
  }
}
.businessProcess-block--ecNum4 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57.9%;
  height: auto;
}

.businessProcess-block--ecNum5 {
  width: 38.25%;
  left: 52.56%;
  top: 55.87%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum5 {
    width: 303px;
    left: 330px;
    top: 214px;
  }
}
.businessProcess-block--ecNum5 .businessProcess-icon {
  width: 26.69%;
  position: absolute;
  bottom: 0;
  left: 4.21%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum5 .businessProcess-icon {
    width: 66px;
    left: 13px;
  }
}
.businessProcess-block--ecNum5 .businessProcess-name__txt {
  position: absolute;
  bottom: 76.66%;
  left: 35.21%;
  width: 18.13%;
  aspect-ratio: 1/0.54;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum5 .businessProcess-name__txt {
    width: 53px;
    left: 26px;
    bottom: 51px;
    border: 1px solid #016725;
  }
}
.businessProcess-block--ecNum5 .businessProcess-explain {
  position: absolute;
  font-size: 1.04vw;
  letter-spacing: 0.03em;
  line-height: 1.6;
  width: 54.73%;
  bottom: 18.75%;
  left: 35.21%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ecNum5 .businessProcess-explain {
    width: 125px;
    left: 93px;
    bottom: 23px;
    font-size: 12px;
  }
}
.businessProcess-block--ecNum5 .businessProcess-bar {
  width: 100%;
  position: relative;
  z-index: 3;
}

.businessProcess-block--ec-left-bar {
  width: 5.12%;
  top: 37.53%;
  left: 34.3%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--ec-left-bar {
    width: 35px;
    top: 151px;
    left: 221px;
  }
}

.businessProcess__hoverImg--ownWarehouse {
  top: 4.359%;
  left: 28.43%;
}

/*== 返品対応 ==*/
.businessProcess--return {
  margin-top: 100px;
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.516;
}
@media screen and (max-width: 768px) {
  .businessProcess--return {
    width: 726px;
    aspect-ratio: 1/0.564;
  }
}

.businessProcess-block--returnUpper {
  top: calc(14.04% - 0.833vw);
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnUpper {
    top: 55px;
  }
}

.businessProcess-block--returnNum1 {
  left: 3.5%;
  width: 13.05%;
	z-index: 99!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum1 {
    width: 78px;
    left: 20px;
  }
}
.businessProcess-block--returnNum1 .businessProcess-name__txt {
  width: 54.95%;
  margin: 0 auto;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum1 .businessProcess-name__txt {
    width: 53px;
    border: 1px solid #016725;
  }
}
.businessProcess-block--returnNum1 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52.97%;
  height: auto;
}
.businessProcess-block--returnNum1 .businessProcess-icon .businessProcess-bar {
  width: 77.079%;
  position: absolute;
  top: 50%;
  right: -3.2%;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum1 .businessProcess-icon .businessProcess-bar {
    width: 56px;
    right: -6px;
  }
}
.businessProcess-block--returnNum1 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}

.businessProcess-block--return .businessProcess-icon--circle {
  margin-top: 5.44%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--return .businessProcess-icon--circle {
    margin-top: 12.8px;
  }
}

.businessProcess-block--returnNum2 {
  width: 16.68%;
  left: 24.26%;
	z-index: 98!important;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum2 {
    width: 150px;
    left: 118.2px;
  }
}
.businessProcess-block--returnNum2 .businessProcess-name__txt {
  width: 76.4%;
  margin: 0 auto;
  color: #016725;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum2 .businessProcess-name__txt {
    width: 104px;
    border: 1px solid #016725;
  }
}
.businessProcess-block--returnNum2 .businessProcess-icon {
  width: 75.65%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum2 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--returnNum2 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 57.92%;
  height: auto;
}
.businessProcess-block--returnNum2 .businessProcess-icon .businessProcess-bar {
  width: 101.96%;
  position: absolute;
  top: 50%;
  right: -3.2%;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum2 .businessProcess-icon .businessProcess-bar {
    width: 132px;
    right: -6.3px;
  }
}
.businessProcess-block--returnNum2 .businessProcess-icon .businessProcess-bar img {
  width: 100%;
}
.businessProcess-block--returnNum2 .businessProcess-name span {
  font-size: 1.14vw;
  color: #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum2 .businessProcess-name span {
    font-size: 13px;
  }
}

.businessProcess-block--returnNum3 {
  width: 15.375%;
  left: 50.16%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum3 {
    width: 130px;
    left: 344px;
  }
}
.businessProcess-block--returnNum3 .businessProcess-name__txt {
  width: 100%;
  margin: 0 auto;
  color: #016725;
  border: 0.208vw solid #016725;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum3 .businessProcess-name__txt {
    border: 1px solid #016725;
  }
}
.businessProcess-block--returnNum3 .businessProcess-icon {
  width: 82.11%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum3 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--returnNum3 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52.97%;
  height: auto;
}

.businessProcess-block--returnNum4 {
  width: 18.87%;
  aspect-ratio: 1/0.609;
  position: absolute;
  left: 64.93%;
  top: 14%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum4 {
    width: 148.11px;
    top: 55px;
    left: 455px;
  }
}
.businessProcess-block--returnNum4 .businessProcess-name__txt {
  width: 36.75%;
  aspect-ratio: 1/0.54;
  top: 0;
  position: absolute;
  left: 18.5%;
  border: 0.208vw solid #016725;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum4 .businessProcess-name__txt {
    width: 68.22px;
    border: 1px solid #016725;
    aspect-ratio: 1/0.36;
  }
}
.businessProcess-block--returnNum4 .businessProcess-icon {
  width: 44.1%;
  position: absolute;
  bottom: 8%;
  left: 18.5%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum4 .businessProcess-icon {
    width: 66px;
  }
}
.businessProcess-block--returnNum4 .businessProcess-bar {
  width: 100%;
  bottom: 0;
  left: 0;
  position: absolute;
}

.businessProcess-block--returnNum5 {
  left: 83.25%;
  top: 19.91%;
  width: 12.65%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum5 {
    left: 599px;
    top: 79px;
    width: 104px;
  }
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum5 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--returnNum5 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 63.36%;
  height: auto;
}
.businessProcess-block--returnNum5 .businessProcess-name {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum5 .businessProcess-name {
    margin-left: 0;
  }
}
.businessProcess-block--returnNum5 .channel-list {
  font-size: 1.04vw;
  text-align: left;
  display: block;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum5 .channel-list {
    font-size: 12px;
  }
}

.businessProcess-block--returnNum6 {
  width: 12.625%;
  left: 51.76%;
  top: 58.59%;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum6 {
    width: 93.94px;
    left: 364px;
    top: 217px;
  }
}
.businessProcess-block--returnNum6 .businessProcess-name__txt {
  width: 94.55%;
  margin: 0 auto;
  color: #016725;
  border: 0.208vw solid #016725;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum6 .businessProcess-name__txt {
    border: 1px solid #016725;
    width: 100%;
  }
}
.businessProcess-block--returnNum6 .businessProcess-icon {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--returnNum6 .businessProcess-icon {
    width: 78px;
  }
}
.businessProcess-block--returnNum6 .businessProcess-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 53.96%;
  height: auto;
}

.businessProcess-block--return-left-bar {
  width: 10.01%;
  top: 33.39%;
  left: 42.2%;
	z-index: 99;
}
@media screen and (max-width: 768px) {
  .businessProcess-block--return-left-bar {
    width: 85px;
    top: 136px;
    left: 283.7px;
  }
}

.alignment-list--ec .alignment-list__item:first-of-type {
  width: 19.18%;
  aspect-ratio: 1/0.449;
}
@media screen and (max-width: 768px) {
  .alignment-list--ec .alignment-list__item:first-of-type {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}
.alignment-list--ec .alignment-list__item:first-of-type img {
  width: 65.79%;
}
.alignment-list--ec .alignment-list__item:nth-of-type(2) {
  width: 26.93%;
  aspect-ratio: 1/0.32;
}
@media screen and (max-width: 768px) {
  .alignment-list--ec .alignment-list__item:nth-of-type(2) {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}
.alignment-list--ec .alignment-list__item:nth-of-type(2) img {
  width: 74.9%;
}
.alignment-list--ec .alignment-list__item:last-of-type(7) {
  width: 25.25%;
  aspect-ratio: 1/0.34;
}
@media screen and (max-width: 768px) {
  .alignment-list--ec .alignment-list__item:last-of-type(7) {
    width: calc(50% - 4.5px);
    aspect-ratio: 1/0.36;
  }
}
.alignment-list--ec .alignment-list__item:last-of-type(7) img {
  width: 80.69%;
}

.businessProcess__hoverImg--check {
  top: 7.38%;
  left: 33.83%;
}

.businessProcess__block--hover .businessProcess-icon dotlottie-player {
  position: absolute;
  width: 150%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

/*============== flow =============*/
.flow {
  padding: 171px 0 230px;
}

@media screen and (max-width: 1024px) {
  .inner--flow {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}
.flow__arrow {
  margin-top: 55px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .flow__arrow {
    width: 22.5%;
    margin-top: 33px;
  }
}

.flow-list {
  margin-top: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .flow-list {
    margin-top: 0;
    flex-direction: column;
    width: 77.5%;
  }
}
.flow-list .flow-list__item:first-of-type img {
  width: 69.09%;
}
.flow-list .flow-list__item:nth-of-type(2) img {
  width: 100%;
}
.flow-list .flow-list__item:nth-of-type(3) img {
  width: 69.09%;
}
.flow-list .flow-list__item:nth-of-type(4) img {
  width: 93.63%;
}
.flow-list .flow-list__item:nth-of-type(5) img {
  width: 81.81%;
}
@media screen and (max-width: 1024px) {
  .flow-list .flow-list__item:last-of-type {
    margin-bottom: 0;
  }
}
.flow-list .flow-list__item:last-of-type img {
  width: 75.45%;
}

.flow-list__item {
  width: 16.66%;
}
@media screen and (max-width: 1024px) {
  .flow-list__item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 10px;
    width: 100%;
    margin-top: 9%;
  }
}
.flow-list__item .flow-icon {
  margin: 0 auto;
  width: 41.25%;
  aspect-ratio: 1/1;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow-list__item .flow-icon {
    width: 19.25%;
  }
}
.flow-list__item .flow-icon img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
}

.flow-txt {
  font-size: max(1.56vw, 22.5px);
  text-align: center;
  line-height: 1.57;
  margin-top: 10px;
}
@media screen and (max-width: 1024px) {
  .flow-txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 1024px) {
  .flow-txt {
    width: 100%;
    text-align: left;
    padding-left: 10%;
    font-size: 18px;
  }
}
.flow-txt.flow-txt--dot {
  line-height: 0.9;
}

.flow-explain {
  font-size: max(1.56vw, 22.5px);
  text-align: center;
  line-height: 1.57;
  margin-top: 150px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .flow-explain {
    font-size: 20px;
    width: 100%;
    margin-top: 100px;
  }
}

.flow-explain__logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.1;
  width: 32.375%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .flow-explain__logo {
    width: 72%;
  }
}

.scroll-btn,
.scrollbar {
  display: none;
}

@media screen and (max-width: 768px) {
  .scroll-container,
.scroll-container--logi,
.scroll-container--ec,
.scroll-container--return {
    position: relative;
  }
  .scroll-btn {
    display: block;
    position: absolute;
    cursor: pointer;
  }
  .scroll-left,
.scroll-left--logi,
.scroll-left--ec,
.scroll-left--return {
    right: 28%;
    top: unset;
    transform: unset;
    transform: translateY(100%);
    bottom: -20px;
    width: 8%;
    background-color: unset;
    height: auto;
    padding: 0;
    font-size: unset;
    z-index: 99;
  }
  .scroll-right,
.scroll-right--logi,
.scroll-right--ec,
.scroll-right--return {
    right: 0;
    right: 7%;
    top: unset;
    transform: unset;
    bottom: -20px;
    z-index: 99;
    width: 8%;
    background-color: unset;
    height: auto;
    padding: 0;
    font-size: unset;
    transform: translateY(100%);
  }
  .inner--scroll,
.inner--scroll--logi,
.inner--scroll--ec,
.inner--scroll--return {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE, Edge（旧） */
    overflow: auto; /* スクロール可能にする */
  }
  /* Chrome, Safari, Edge（新）用 */
  .inner--scroll::-webkit-scrollbar,
.inner--scroll--logi::-webkit-scrollbar,
.inner--scroll--ec::-webkit-scrollbar,
.inner--scroll--return::-webkit-scrollbar {
    display: none;
  }
  .scrollbar,
.scrollbar--logi,
.scrollbar--ec,
.scrollbar--return {
    display: block;
    position: absolute;
    bottom: -8%;
    left: 6.66%;
    right: 0;
    height: 10px;
    background: #fff;
    cursor: pointer;
    z-index: 99;
    overflow: hidden;
    width: 50%;
    border: 1px solid #3C3C3C;
  }
  /* 擬似要素で「つまみ（thumb）」を作る */
  .scrollbar::before,
.scrollbar--logi::before,
.scrollbar--ec::before {
    content: "";
    position: absolute;
    z-index: 99;
    top: 0;
    left: var(--thumb-left, 0px);
    width: var(--thumb-width, 40px);
    height: 100%;
    background: #DEEAE0;
    /* border-radius: 4px; */
    transition: left 0.1s;
    border: 1px solid #016725;
  }
}
/*========================
recruit
========================*/
/*========= 社員インタビュー =========*/
.interview-accordion-container {
  margin: 0 auto;
  width: 100%;
  padding-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .interview-accordion-container {
    padding-bottom: 35px;
  }
}

.interview {
  position: relative;
  margin-top: 150px;
}
@media screen and (max-width: 768px) {
  .interview {
    margin-top: 80px;
  }
}
.interview.interview01 {
  margin-top: 200px;
}
@media screen and (max-width: 768px) {
  .interview.interview01 {
    margin-top: 80px;
  }
}
.interview.interview01 .interview-wrap {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .interview.interview01 .interview-wrap {
    margin-top: 17px;
  }
}

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

.interview-img {
  width: 43.68%;
  position: -webkit-sticky;
  position: sticky;
  top: 120px;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .interview-img {
    width: 35.68%;
  }
}
@media screen and (max-width: 768px) {
  .interview-img {
    width: 100%;
    position: relative;
    top: 0;
  }
}

.interview-accordion-container {
  width: 50.18%;
  border-bottom: 5px solid #016725;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .interview-accordion-container {
    width: 100%;
    border-bottom: 3px solid #016725;
    margin-top: 19px;
  }
}

.interview-accordion-title {
  cursor: pointer;
  position: relative;
  line-height: 1.57;
}

.interview-ttl {
  margin-top: 30px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: max(1.82vw, 26px);
}
@media screen and (max-width: 768px) {
  .interview-ttl {
    margin-top: 15px;
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.025em;
  }
}

.interview-accordion-title:before {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 2px;
  width: 20px;
  background: #016725;
  transform: rotate(90deg);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .interview-accordion-title:before {
    width: 20px;
    bottom: 0;
    right: 5.33vw;
    left: unset;
  }
}

.interview-accordion-title:after {
  position: absolute;
  content: "";
  bottom: 0;
  right: 0;
  height: 2px;
  width: 20px;
  background: #016725;
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .interview-accordion-title:after {
    width: 20px;
    bottom: 0;
    right: 5.33vw;
    left: unset;
  }
}

.interview-accordion-title.open:before {
  transform: rotate(180deg);
}

.interview-accordion-title.open:after {
  opacity: 0;
}

.interview-name {
  font-size: max(1.56vw, 22px);
  margin: 50px 0 10px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .interview-name {
    font-size: 20px;
    margin: 10px 0;
  }
}

.interview-personal-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.interview-personal-info__year {
  padding-right: 17px;
  margin-right: 17px;
  position: relative;
  font-family: "Zen Old Mincho", serif;
}
.interview-personal-info__year::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 29px;
  background-color: #3C3C3C;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .interview-personal-info__year::after {
    height: 18px;
  }
}

.interview-personal-info__affilliation {
  font-family: "Zen Old Mincho", serif;
}

.interview-accordion-text {
  display: none;
}

.interview-accordion-faq__ttl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.interview-accordion-faq__ttl__num {
  font-size: max(3.64vw, 50px);
  color: #016725;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  line-height: 0.9;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .interview-accordion-faq__ttl__num {
    font-size: 60px;
  }
}

.interview-accordion-faq__ttl__txt {
  font-size: max(1.56vw, 22px);
  line-height: 1.8;
  letter-spacing: 0.025em;
  margin-top: 0.8vw;
}
@media screen and (max-width: 1024px) {
  .interview-accordion-faq__ttl__txt {
    font-size: 20px;
    line-height: 1.3;
    margin-top: 16px;
  }
}

.interview-accordion-faq__answer {
  line-height: 2.22;
  font-family: "Zen Old Mincho", serif;
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .interview-accordion-faq__answer {
    line-height: 1.53;
    letter-spacing: 0.1em;
  }
}

.interview-accordion-txt .interview-accordion-faq {
  margin-top: 120px;
}
@media screen and (max-width: 1024px) {
  .interview-accordion-txt .interview-accordion-faq {
    margin-top: 36px;
  }
}

/*========= 福利厚生 =========*/
.welfare {
  padding: 200px 0;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .welfare {
    padding: 100px 0 88px;
  }
}
.welfare::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0.42;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 10%, #0D6725 100%);
  z-index: -1;
}

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

.welfare-heading__side-l {
  width: 55.62%;
}
@media screen and (max-width: 1024px) {
  .welfare-heading__side-l {
    width: 58%;
  }
}
@media screen and (max-width: 768px) {
  .welfare-heading__side-l {
    width: 100%;
  }
}

.welfare-heading__side-r {
  width: 40.75%;
}
@media screen and (max-width: 768px) {
  .welfare-heading__side-r {
    width: 100%;
    margin-top: 17px;
  }
}

.subTtl--welfare {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .subTtl--welfare {
    margin: 30px auto 0;
    width: 88.5%;
  }
}

.normalDocs--welfare-heading {
  margin-top: 15px;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 1024px) {
  .normalDocs--welfare-heading {
    margin: 8px auto 0;
    width: 88.5%;
  }
}

.welfare__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 1.66%;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .welfare__list {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .welfare__list {
    flex-direction: column;
    gap: 40px;
  }
}

.welfare__item {
  width: 31.89%;
}
@media screen and (max-width: 1024px) {
  .welfare__item {
    width: 49.17%;
  }
}
@media screen and (max-width: 768px) {
  .welfare__item {
    width: 100%;
  }
}

.welfare-img {
  width: 100%;
  aspect-ratio: 1/0.65;
}

.welfare-ttl {
  font-size: max(1.97vw, 26px);
  letter-spacing: 0.075em;
  line-height: 1.3;
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .welfare-ttl {
    font-size: 22px;
    letter-spacing: 0.05em;
    margin-top: 20px;
  }
}

.welfare-explain {
  font-family: "Zen Old Mincho", serif;
  width: 84.54%;
  margin: 5px auto 0;
}
@media screen and (max-width: 768px) {
  .welfare-explain {
    width: 100%;
  }
}

/*========= 募集要項 =========*/
.guideline {
  padding: 200px 0;
}
@media screen and (max-width: 768px) {
  .guideline {
    padding: 80px 0;
  }
}

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

.guideline__side-l {
  width: 20%;
	min-width: 253px;
}
@media screen and (max-width: 768px) {
  .guideline__side-l {
    width: 100%;
	  min-width: unset;
  }
}

.guidelineCategory-wrap {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .guidelineCategory-wrap {
    margin-top: 37px;
  }
}

.guidelineCategory-ttl {
  font-size: max(1.3vw, 18px);
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #016725;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .guidelineCategory-ttl {
    font-size: 14px;
  }
}

.categorySelect {
  position: relative;
  margin-top: 10px;
}
.categorySelect::after {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
border-right: min(0.83vw, 11px) solid transparent;
    border-left: min(0.83vw, 11px) solid transparent;
    border-top: min(1.45vw, 19px) solid #016725;
  border-bottom: 0;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .categorySelect::after {
    border-right: 9px solid transparent;
    border-left: 9px solid transparent;
    border-top: 16px solid #016725;
	  right: 15px;
  }
}
@media screen and (max-width: 768px) {
  .categorySelect {
    width: 226px;
  }
}

.guidelineCategory {
  width: 100%;
  border: 2px solid #3C3C3C;
  padding: 0 20px;
  font-size: max(1.14vw, 16px);
}
@media screen and (max-width: 768px) {
  .guidelineCategory {
    font-size: 14px;
    border: 1px solid #3C3C3C;
    padding: 10px 20px;
  }
}

.guideline__side-r {
  width: 70%;
	max-width:calc(90% - 253px);
}
@media screen and (max-width: 768px) {
  .guideline__side-r {
    width: 100%;
	  max-width: unset;
  }
}

.guidelineTable {
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .guidelineTable {
    margin-top: 20px;
    border-top: 1px solid #016725;
  }
}
.guidelineTable tbody {
  display: block;
  width: 100%;
}

.guidelineTable__tr {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  border-bottom: 1px solid #016725;
}
@media screen and (max-width: 768px) {
  .guidelineTable__tr {
    display: block;
  }
}

.guidelineTable__th {
  width: 21.14%;
  font-size: max(1.14vw, 14px);
  letter-spacing: 0;
  line-height: 1.6;
  padding: 12px 0;
	min-width:100px;
}
@media screen and (max-width: 768px) {
  .guidelineTable__th {
    width: 100%;
    padding: 15px 0 0;
    display: block;
	  min-width: unset;
  }
}

.guidelineTable__td {
  width: 78.86%;
  font-size: max(1.14vw, 14px);
  letter-spacing: 0;
  line-height: 1.6;
  padding: 12px 0;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .guidelineTable__td {
    width: 100%;
    padding: 5px 0 15px;
    line-height: 1.4;
    display: block;
  }
}
.indeed-banner{
	width: 130px;
    margin-top: 10px;
}   
/*=======================
News
=======================*/
.allNews {
  margin-top: 120px;
}
@media screen and (max-width: 768px) {
  .allNews {
    margin-top: 50px;
  }
}

.pageNation {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 3.6%;
  margin-top: 100px;
  margin-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .pageNation {
    margin-top: 50px;
    margin-bottom: 80px;
    gap: 4%;
  }
}

.pageNum a {
  font-size: max(1.56vw, 22px);
  color: #016725;
  font-family: "Zen Kaku Gothic New", sans-serif;
  letter-spacing: 0;
  line-height: 1;
  display: block;
  padding: 13px 10px;
  border: 1px solid #016725;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .pageNum a {
    font-size: 15px;
  }
}
.pageNum a:hover {
  color: #FFFFFF;
  background-color: #016725;
  transition: all 0.5s;
}
.pageNum.pageNum--current a {
  color: #FFFFFF;
  background-color: #016725;
}

.newsDetail {
  padding: 130px 0 170px;
}
@media screen and (max-width: 1024px) {
  .newsDetail {
    padding: 100px 0;
  }
}
@media screen and (max-width: 768px) {
  .newsDetail {
    padding: 80px 0;
  }
}

.newsDetail-wrap {
  width: 67.56%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .newsDetail-wrap {
    width: 80%;
  }
}
@media screen and (max-width: 768px) {
  .newsDetail-wrap {
    width: 100%;
  }
}

.newsDetail__ttl {
  padding-bottom: 5px;
  border-bottom: 1px solid #016725;
  font-size: max(1.56vw, 22px);
}
@media screen and (max-width: 768px) {
  .newsDetail__ttl {
    font-size: 18px;
  }
}

.news-txt--newsDetail {
  font-size: max(1.82vw, 26px);
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media screen and (max-width: 768px) {
  .news-txt--newsDetail {
    font-size: 13px;
    font-family: "Zen Old Mincho", serif;
  }
}

.newsDetail-img {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .newsDetail-img {
    margin-top: 25px;
  }
}

.newsDetail-txt {
  margin-top: 45px;
  font-size: max(1.14vw, 16px);
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 768px) {
  .newsDetail-txt {
    margin-top: 30px;
    font-size: 13px;
  }
}

.news-pageLink {
  margin-top: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3.09%;
}
@media screen and (max-width: 768px) {
  .news-pageLink {
    margin-top: 80px;
    gap: 11%;
  }
}

.newsDetail-prev,
.newsDetail-next {
  width: 3.43%;
}
@media screen and (max-width: 768px) {
  .newsDetail-prev,
.newsDetail-next {
    width: 43px;
  }
}

.newsDetail-all {
  width: 16%;
}
@media screen and (max-width: 768px) {
  .newsDetail-all {
    width: 41.14%;
  }
}
.newsDetail-all a {
  display: block;
  line-height: 1;
  text-align: center;
  width: 100%;
  padding: 6.3% 0;
  color: #3C3C3C;
  border: 1px solid #3C3C3C;
  transition: all 0.5s;
}
.newsDetail-all a:hover {
  color: #FFFFFF;
  background-color: #016725;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .newsDetail-all a {
    padding: 13px 0;
  }
}

/*---------------------------
CONTACTページ
---------------------------*/
.contactForm {
  margin: 0 auto 60px;
  width: 82.7%;
  background-color: #F0F0F0;
  border-radius: 20px;
  padding: 80px 50px 55px 24px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 30px 25px;
  }
}

.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: 250px;
  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: #3C3C3C;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 10px;
    font-size: 12px;
  }
}

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

.noRequired {
  width: 43px;
}

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

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

input[type=radio] {
  position: relative;
  width: 14px;
  height: 14px;
  background-color: #FFFFFF;
  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] {
    width: 10px;
    height: 10px;
    margin-right: 5px;
  }
}

input[type=radio]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 7.5px;
  height: 7.5px;
  border-radius: 50%;
  background: #000;
  content: "";
}
@media screen and (max-width: 768px) {
  input[type=radio]:checked:before {
    width: 5px;
    height: 5px;
  }
}

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

@media screen and (max-width: 1024px) {
  .radioBtn-wrap__contactMethod {
    display: block;
  }
}
input[type=text],
input[type=email],
textarea {
  padding: 13px 30px;
  background-color: #FFFFFF;
  color: #3C3C3C;
  width: 100%;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5.3px 18px;
    font-size: 11px;
  }
}

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

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

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

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 {
  padding: 13px 30px;
  background-color: #FFFFFF;
  border-radius: 30px;
  color: #3C3C3C;
  width: 165px;
}
@media screen and (max-width: 1024px) {
  .prefectures {
    padding: 5.3px 18px;
    font-size: 11px;
    width: 120px;
  }
}

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

.formDl--addressWrap {
  align-items: flex-start;
}
.formDl--addressWrap .formTtl {
  margin-top: 15px;
}

input[type=file] {
  color: #3C3C3C;
}

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

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

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 2px solid #016725;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type=checkbox]:checked:before {
  position: absolute;
  top: 4px;
  left: 6px;
  transform: rotate(50deg);
  width: 4px;
  height: 8px;
  border-right: 2px solid #016725;
  border-bottom: 2px solid #016725;
  content: "";
}

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

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

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  transition: all 0.3s;
  pointer-events: all;
}
.submit::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  border-radius: 50px;
  background-color: #016725;
  top: 0;
  right: 0;
  transition: all 0.5s;
  pointer-events: none;
}

.submitBtn {
  width: 276px;
  padding: 19.5px 0 19.5px 50px;
  font-size: 20px;
  color: #016725;
  border: 2px solid #016725;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 50px;
  line-height: 1.3;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 11px;
    width: 180px;
    padding: 10px 0 10px 25px;
  }
}

.faq {
  padding-top: 180px;
  padding-bottom: 80px;
}

.faq_wrap {
  margin-top: 66px;
}

.faq-acc {
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.faq-acc input {
  display: none;
}

.faq-acc label {
  display: flex;
  align-items: center;
  color: #fff;
  padding: 18px 30px;
  cursor: pointer;
  font-weight: bold;
  font-size: max(0.13vw, 18.75px);
  position: relative;
  background-color: #016725;
}

.faq-acc label::before, .faq-acc label::after {
  content: "";
  background-color: #fff;
  display: block;
  width: 23px;
  height: 1px;
  position: absolute;
  right: 50px;
  transform: rotate(0deg);
  transition: 0.3s;
}

.faq-acc label::after {
  transform: rotate(90deg);
}

.faq-acc .faq-acc-content {
  max-height: 0;
  overflow: hidden;
  background: transparent;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0px 10% 0 30px;
  font-size: 18px;
  letter-spacing: 0.025em;
  display: flex;
  align-items: flex-start;
}

.faq-acc .faq-acc-content p {
  font-family: "Zen Old Mincho", serif;
  font-size: max(0.1vw, 15px);
  font-weight: 400;
}

.faq-acc input:checked + label + .faq-acc-content {
  max-height: 300px; /* 内容の高さに応じて調整 */
  padding: 30px 10% 30px 30px;
}

.faq-acc input:checked + label::after {
  transform: rotate(0deg);
  width: 28px;
  transition: 0.3s;
}

.faq-acc input:checked + label::before {
  width: 29px;
  transition: 0.3s;
}

.faq_q,
.faq_a {
  font-size: max(0.31vw, 44.25px);
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  display: inline-flex;
  margin-right: 0.8em;
  line-height: 1;
  margin-top: -11px;
  letter-spacing: 0.25em;
}

.form {
  padding-top: 170px;
  padding-bottom: 170px;
  background: linear-gradient(180deg, #FFFFFF 0%, #0D6725 180%);
}

.form .bl-ttl {
  text-align: center;
  color: #014498;
  font-weight: 500;
}

.form .bl-ttl::after {
  margin: 30px auto 0;
  background-color: #014498;
}

.entry-thanks,
.entry-confirm {
  padding-top: 80px;
  padding-bottom: 80px;
}

.entry-thanks_txt {
  font-size: 15px;
  margin: 30px 0 50px;
  color: #1c1c1c;
}

.entry-thanks .submit .submit-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit .wpcf7-spinner {
  display: none;
}

.submit .submit-btn.wpcf7-previous {
  margin: 20px auto;
  background-color: #999;
}

.entry-confirm .form_section {
  max-width: 1000px;
}

.form-date p br,
.form-address p br {
  display: none;
}

.entry-confirm .flex-top dt {
  padding-top: 0;
}

.entry-confirm .flex-top .caution {
  top: 9px;
}

/*-------form_section-------*/
.form_section {
  max-width: 1420px;
  width: 100%;
  margin: 0 auto;
  padding-top: 58px;
  color: #1C1C1C;
}
.form_section--confirm .wpcf7 {
	width: max-content!important;
	margin: 0 auto;	
}
.submit .submit-btn.wpcf7-previous{
background-color: #fff;
}
input[type=radio] {
  width: 16px;
  height: 16px;
  vertical-align: -4px;
  border: none;
  background-color: #DBDBDB;
}

form dl {
  display: flex;
  align-items: flex-start;
  padding: 0 0 32px;
  justify-content: flex-start;
}

form dl.flex-top {
  align-items: flex-start;
}

.custom-select {
  position: relative;
  display: inline-block;
}

.custom-select input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 245px;
  font-size: 16px;
  border: none;
  background-color: #fff;
}

.custom-select::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 12px;
  pointer-events: none;
  width: 10px;
  height: 5px;
  background-image: url("../images/down_ico.png");
  background-repeat: no-repeat;
  background-size: contain;
}

@media screen and (max-width: 1440px) {
  .custom-select select {
    padding: 17px 40px 16px 30px;
  }
  .custom-select::after {
    top: 24px;
  }
	
	
}
@media screen and (max-width: 768px) {
  .custom-select input {
    font-size: 12px;
    width: 150px;
  }
  .custom-select::after {
    top: 17px;
  }
.form_section--confirm .wpcf7 {
	width: 100%!important;;
}
}
.flex-top dt {
  padding-top: 5px;
}

.form-file dd {
  padding-top: 15px;
}

.flex-top .caution {
  top: 22px;
}

form dl dt {
  width: 300px;
  padding-right: 115px;
  font-size: max(0.11vw, 16.6px);
  text-align: right;
  position: relative;
  letter-spacing: 0.05em;
  margin-top: max(0.5vw, 8.25px);
}

.form_section--confirm form  dl dt{
	margin-top:0!important;
 }
.caution {
  color: #fff;
  background-color: #1c1c1c;
  font-size: max(0.078vw, 11.25px);
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 5px;
  right: 32px;
  line-height: 1;
  padding: 5px 10px;
}

form dl dd {
  width: calc(100% - 385px);
  font-size: max(0.11vw, 16.6px);
  display: flex;
  flex-wrap: wrap;
}

form dl.radio_dl dd > p {
  width: 25%;
}

form dl dd > p {
  width: 100%;
  margin-bottom: 10px;
}

form dl dd input, form dl dd textarea, form dl dd select {
  width: 100%;
  padding: 17px 18px;
  background-color: #fff;
  border: none;
  font-size: 16px;
  border-radius: 0px;
}

form dl dd input::-moz-placeholder, form dl dd textarea::-moz-placeholder {
  color: #A3AFAC;
}

form dl dd input::placeholder, form dl dd textarea::placeholder {
  color: #A3AFAC;
}

input[type=radio] {
  display: none;
}

.form-address {
  display: flex;
  flex-wrap: wrap;
  position: relative;
}

.form-address_ico {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 14px;
  z-index: 1;
  color: #A3AFAC;
  font-weight: 400;
}

.form-address p:last-of-type {
  width: 100%;
}

.form-date p {
  display: flex;
  align-items: center;
}

.radio {
  margin-top: max(0.5vw, 8.25px);
}

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

.radio label::before,
.radio label::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute;
  transform: translateY(-50%);
  top: 50%;
}

.radio label::before {
  background-color: transparent;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  left: 5px;
  border: 1px solid #707070;
}

.radio label::after {
  background-color: #016725;
  border-radius: 50%;
  opacity: 0;
  width: 10px;
  height: 10px;
  left: 8px;
}

label.checked::after {
  opacity: 1;
}

.radio .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}

.contact-method dd {
  display: block;
}

.address-form {
  margin-top: 13px;
}

form dl dd input.post-number {
  width: 213px;
  margin-right: 13px;
  padding-left: 40px;
}

form dl dd.form-address p {
  width: 213px;
  margin-right: 20px;
  position: relative;
}

.prefecture {
  width: 245px;
}

form dl dd input[type=file] {
  background-color: transparent;
  padding-left: 0;
  padding-top: 0;
}

.file_subtxt {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  letter-spacing: 0.03em;
}

.privacy-wrap {
  margin: 50px auto 41px;
  width: 363px;
  display: flex;
}

.privacy-wrap .wpcf7-list-item{
margin-left: 0!important;
}

/*
.privacy-wrap .wpcf7-list-item-label {
  display: none;
}
*/
.privacy-wrap input {
  width: 20px;
  height: 20px;
  border: 2px solid #016725;
  vertical-align: -3px;
  margin-right: 10px;
}

.privacy-wrap span{
	  font-size: 20px;
}

.privacy-wrap p{
  font-size: 22px;
  display: flex;
  letter-spacing: 0.03em;
}

.privacy-wrap a {
  text-decoration: underline;
}

.privacy-wrap a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.input-year {
  width: 160px;
  margin-right: 10px;
}

.input-date {
  width: 92px;
  margin: 0 10px;
}

.submit {
  text-align: center;
}

.submit .submit-btn {
  width: 255px;
  height: 52px;
  border: 2px solid #3C3C3C;
  background-color: #fff;
  font-size: 19px;
  margin: 0 auto;
  transition: 0.3s;
}

.submit .submit-btn:hover {
  transition: 0.3s;
  opacity: 0.8;
}

.thanks_top {
  display: block;
  font-size: 1.7rem;
  width: 138px;
  height: 37px;
  line-height: 37px;
  background-color: #26499D;
  border-radius: 14px;
  border: none;
  color: #fff;
  cursor: pointer;
  transition: 0.3s;
  margin: 50px auto 0;
}

.yoko {
  margin-top: 0;
}


.thanks {
  padding: 182px 0 240px;
}
@media screen and (max-width: 768px) {
  .thanks {
    padding: 70px 0 80px;
  }
	
.privacy-wrap {
  width: 100%;
}
.form-address_ico {
  left: 4px;
}
form dl dd.form-address p {
  width: 110px;
}
}

.normalDocs--thanks {
  margin-top: 80px;
  font-size: max(1.14vw, 16.5px);
  text-align: center;
  font-family: "Yu Gothic", "游ゴシック", YuGothic, "游ゴシック体", sans-serif;
}
@media screen and (max-width: 768px) {
  .normalDocs--thanks {
    margin-top: 40px;
    font-size: 14px;
  }
}

.bl-btn--thanks {
  margin-top: 100px;
}
@media screen and (max-width: 768px) {
  .bl-btn--thanks {
    margin-top: 50px;
  }
}
.bl-btn--center{
margin-left: auto;
margin-right: auto;
}
.policy-box {
  padding-bottom: 200px;
}
@media screen and (max-width: 1024px) {
  .policy-box {
    padding-bottom: 80px;
  }
}

.privacy-policy {
  padding-top: 150px;
}
@media screen and (max-width: 1024px) {
  .privacy-policy {
    padding-top: 75px;
  }
}

/*------------------------------------------------
* header(SP)
*--------------------------------------------------*/
@media screen and (max-width: 768px) {
  .entry-thanks_txt {
    font-size: 14px;
  }
  .lottie {
    display: none;
  }
  form dl {
    padding: 5px 10px;
    display: block;
  }
  form dl dt, form dl dd {
    width: 100%;
    padding-right: 0px;
    -moz-text-align-last: left;
    text-align-last: left;
    font-size: 14px;
  }
  form dl dt {
    margin-bottom: 10px;
  }
  form dl dt p {
    text-align: left;
  }
  .caution {
    font-size: 10px;
    position: static;
    padding: 3px 11px;
    margin-left: 10px;
    border-radius: 3px;
    vertical-align: 1px;
  }
  .radio label {
    display: inline-block;
  }
  .submit .bl-btn {
    height: 44px;
    line-height: 44px;
    font-size: 15px;
    max-width: 300px;
  }
  .faq-acc label {
    font-size: 14px;
    padding: 15px 16px;
    padding-right: 40px;
  }
  .faq_q, .faq_a {
    font-size: 27px;
    margin-top: -6px;
    margin-right: 10px;
  }
  .faq_a {
    margin-top: 0;
  }
  .faq-acc label::before, .faq-acc label::after {
    width: 14px;
    right: 15px;
  }
  .faq-acc input:checked + label::after,
.faq-acc input:checked + label::before {
    width: 18px;
  }
  .faq-acc {
    margin-bottom: 30px;
  }
  .faq-acc .faq-acc-content {
    padding: 0 16px;
  }
  .faq-acc input:checked + label + .faq-acc-content {
    padding: 15px 16px;
    max-height: 450px;
  }
  .faq-acc .faq-acc-content p {
    font-size: 12px;
  }
  .faq {
    padding-top: 79px;
    padding-bottom: 58px;
  }
  .form {
    padding-top: 40px;
  }
  form dl.radio_dl dd > p {
    width: 50%;
  }
  input[type=text], input[type=email], textarea {
    font-size: 14px;
  }
  .privacy-wrap {
    justify-content: center;
  }
  .privacy-wrap p {
    font-size: 14px;
  }
  .privacy-wrap span{
    font-size: 14px;
  }
  .privacy-wrap input {
    width: 16px;
    height: 16px;
  }
  input[type=checkbox]:checked:before {
    top: 2px;
    left: 4px;
  }
}
.policy {
  padding-left: 5.3%;
  padding-right: calc(100px + 5%);
  font-size: 20px;
  padding-bottom: 10%;
}

.policy_wrap {
  background-color: #C1DAF8;
  padding: 5% 5% 10%;
  color: #1C1C1C;
}

.policy-box p {
  margin-top: 50px;
  font-weight: 400;
  color: #1C1C1C;
}
.policy-box p span {
  color: #23AB39;
}

.enactment {
  text-align: right;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .enactment {
    margin-top: 10px;
  }
}

.site-policy {
  margin-top: 100px;
}
.site-policy p {
  color: #1C1C1C;
}

.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: #0A3165;
	}
	
	.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;
		}
	}

.wpcf7-list-item{
	margin: 0 0px 6px 1em!important;
}

.lity{
z-index: 9999999;
}

	@media screen and (max-width: 768px) {
.lity-iframe-container{
	    max-height: 100%!important;
    top: 50%!important;
    position: absolute!important;
    transform: translateY(-50%)!important;
	padding-top: 100%!important;
}
}