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

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

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
  color: #0A0A0A;
  line-height: 1.94;
  font-feature-settings: "palt";
  letter-spacing: 0em;
  background-color: #EFEFEF;
}

.inner {
  max-width: 1170px;
  margin: 0 auto;
  width: 81.25%;
}

.oneSide-margin {
  width: min(90.625vw, 1440px + (100vw - 1440px) / 2);
}

.textCenter {
  text-align: center;
}

.en,
.num {
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
}

.txtOrange {
  color: #D8653A;
}

.txtWhite {
  color: #FFFFFF;
}

.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;
  }
  body {
    font-size: 16px;
  }
  .inner {
    width: 89.333%;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
  body {
    font-size: 14px;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.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;
}

.fadeDown {
  -webkit-animation-name: fadeDownAnime;
          animation-name: fadeDownAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*=================================
  ボンッ、ヒュッ
===================================*/
/* 拡大 */
.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 {
  position: relative;
}
.bl-btn .bl-btn__arrow {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.bl-btn .bl-btn__arrow::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  background-color: #D8653A;
  border-radius: 50%;
  transition: all 0.5s;
}
.bl-btn .bl-btn__arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transition: all 0.5s;
}
.bl-btn a:hover .bl-btn__arrow::before {
  background-color: #2E7BE3;
  transition: all 0.5s;
}

.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--center {
  margin: 0 auto;
}

.bl-ttl__en {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 17px;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  text-transform: uppercase;
  color: #D8653A;
  position: relative;
  padding-left: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
}
.bl-ttl__en::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #D8653A;
}
.bl-ttl__en--white {
  color: #FFFFFF;
}
.bl-ttl__en--white::after {
  background-color: #FFFFFF;
}

.bl-ttl__en--center {
  text-align: center;
  margin: 0 auto;
}

.bl-ttl__ja {
  font-size: 43px;
  font-weight: 700;
  margin-top: 10px;
  color: #0A0A0A;
  line-height: 1.22;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .bl-ttl__ja {
    font-size: 30px;
    line-height: 1.57;
    margin-top: 0;
  }
}

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

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

.page-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.page-ttl__en {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 17px;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  color: #FFFFFF;
  text-transform: uppercase;
  position: relative;
  padding-left: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0 auto;
}
.page-ttl__en::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .page-ttl__en {
    font-size: 15px;
  }
}

.page-ttl__ja {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  font-size: 49px;
  font-weight: 800;
  margin-top: 15px;
  color: #FFFFFF;
  line-height: 1.22;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1280px) {
  .page-ttl__ja {
    font-size: 40px;
  }
}
@media screen and (max-width: 768px) {
  .page-ttl__ja {
    font-size: 25px;
  }
}

.page-ttl__en--entry{
  padding-right: 30px;
}
/*---------------------------
ヘッダー
---------------------------*/
.head {
  width: 100%;
  height: 89px;
  background-color: #FFFFFF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
.head::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 89px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .head{
    height: 60px;
  }
  .head::after {
    display: none;
  }
}

.head--pageTop {
  top: -100%;
  height: 96px;
  transition: all 2.5s;
  background-image: linear-gradient(150deg, rgba(216, 101, 58, 0.9) 10%, rgb(211, 200, 65) 60%, rgb(211, 201, 66) 72%, rgb(82, 106, 240));
  background-color: #fff;
}
.head--pageTop.is-appear {
  top: 0;
  transition: all 2.5s;
}
.head--pageTop::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 89px;
  background-color: #FFFFFF;
  display: block;
}

.headLogo {
  position: fixed;
  top: 24px;
  left: 32px;
}
.headLogo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .headLogo a {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .headLogo {
    top: 18px;
  }
}

.headLogo__ja {
  font-size: 28px;
  margin-right: 26px;
  line-height: 1;
  color: #D8653A;
  font-weight: 800;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .headLogo__ja {
    font-size: 15px;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.headLogo__en {
  font-size: 18px;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  color: #D8653A;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .headLogo__en {
    font-size: 12px;
  }
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  right: -100%;
  width: 43.19%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  transition: all 0.3s;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  #g-nav {
    width: 100%;
  }
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  pointer-events: all;
  right: 0;
}

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 43.19%;
  height: 100vh;
  overflow: auto;
  top: 0;
  right: 0;
  -webkit-overflow-scrolling: touch;
}
@media screen and (max-width: 1024px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

#g-nav .burgerNav-wrap {
  opacity: 0;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 180px 0;
  transition: all 0.5s;
  pointer-events: none;
  width: 280px;
}
@media screen and (max-width: 1024px) {
  #g-nav .burgerNav-wrap {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

#g-nav.panelactive .burgerNav-wrap {
  opacity: 1;
  transition: all 0.5s;
  pointer-events: all;
}

#g-nav .burgerNav-list__item {
  text-align: center;
}

#g-nav .burgerNav-list__item a {
  font-size: 22px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 44px;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  #g-nav .burgerNav-list__item a {
    font-size: 18px;
    margin-bottom: 33px;
  }
}

@media screen and (max-width: 1024px) {
  #g-nav .burgerNav-list__item:last-of-type a {
    margin-bottom: 66px;
  }
}
.burgerNav-list__item:last-of-type a {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
}
.burgerNav-list__item:last-of-type a img {
  display: block;
  width: 15px;
  height: 15px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
  margin-left: 41px;
}
@media screen and (max-width: 1024px) {
  .burgerNav-list__item:last-of-type a img {
    margin-left: 47px;
    width: 16px;
    height: 16px;
  }
}
.burgerNav-list__item:last-of-type a::after {
  content: "";
  position: absolute;
  width: 38px;
  height: 38px;
  background-color: #D8653A;
  border-radius: 50%;
  top: 50%;
  right: 53px;
  transform: translateY(-50%);
  z-index: -1;
}
.burger-companyName {
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding-top: 44px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .burger-companyName {
    padding-top: 50px;
  }
}
.burger-companyName::before {
  content: "";
  content: "";
  position: absolute;
  width: 176px;
  height: 1px;
  background-color: #0A0A0A;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.burger-address {
  font-size: 14px;
  font-weight: 800;
  margin-top: 13px;
  line-height: 1.42;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 12px;
  right: 28px;
  cursor: pointer;
  width: 65px;
  background-color: #D8653A;
  height: 65px;
  border-radius: 50%;
}
@media screen and (max-width: 1024px) {
  .openbtn1 {
    width: 48px;
    height: 48px;
    top: 6px;
    right: 15px;
  }
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  border-radius: 2px;
  background-color: #FFFFFF;
  transform: translate(-50%, -50%);
}

.openbtn1 span:nth-of-type(1) {
  width: 29.79px;
  top: calc(50% - 4px);
}
@media screen and (max-width: 1024px) {
  .openbtn1 span:nth-of-type(1) {
    width: 21px;
    top: calc(50% - 3px);
  }
}

.openbtn1 span:nth-of-type(2) {
  width: 20.9px;
  top: calc(50% + 4px);
  left: calc(50% - 4px);
}
@media screen and (max-width: 1024px) {
  .openbtn1 span:nth-of-type(2) {
    width: 15px;
    top: calc(50% + 3px);
    left: calc(50% - 3px);
  }
}

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

.openbtn1.active span:nth-of-type(2) {
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(45deg);
  width: 29.79px;
}
@media screen and (max-width: 1024px) {
  .openbtn1.active span:nth-of-type(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 21px;
  }
}

/*---------------------------
フッター
---------------------------*/
.footWrap {
  padding: 47px 0 55px;
  background-color: #FFFFFF;
}

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

.footWrap__side-l {
  padding-left: 4.5%;
}
@media screen and (max-width: 1024px) {
  .footWrap__side-l {
    padding-left: 0;
  }
}

.footLogo__size-s {
  font-size: 12px;
  font-weight: 800;
}

.footLogo__size-l {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: #D8653A;
  line-height: 1.25;
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .footLogo__size-l {
    font-size: 23px;
    margin-bottom: 5px;
  }
}

.footAddress {
  font-size: 12px;
  font-weight: 800;
  line-height: 1.41;
}

.footWrap__side-r {
  padding-right: 10%;
}
@media screen and (max-width: 1024px) {
  .footWrap__side-r {
    padding-right: 0;
  }
}

.footInfo a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 12px;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .footInfo a {
    margin-top: 59px;
    margin-bottom: 16px;
  }
}
.footInfo a .footInfo-img {
  margin-left: 8px;
  width: 9px;
  height: 9px;
  position: relative;
}
.footInfo a .footInfo-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.footInfo a .footInfo-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 17px;
  height: 17px;
  background-color: #D8653A;
  border-radius: 50%;
  transition: all 0.5s;
}
.footInfo a .footInfo-img:hover::after {
  background-color: #2E7BE3;
  transition: all 0.5s;
}

.footNav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 480px;
}
@media screen and (max-width: 1024px) {
  .footNav {
    display: block;
    width: 100%;
  }
}

.footNav__item {
  width: 150px;
}
@media screen and (max-width: 1024px) {
  .footNav__item {
    width: 100%;
    margin-bottom: 10px;
  }
}
.footNav__item a {
  font-size: 12px;
  letter-spacing: 0;
  font-weight: 500;
}
.footNav__item:first-of-type {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .footNav__item:first-of-type {
    margin-right: 0;
  }
}
.footNav__item:nth-of-type(4) {
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .footNav__item:nth-of-type(4) {
    margin-right: 0;
  }
}

.copy {
  font-size: 11px;
  text-transform: uppercase;
  line-height: 1;
  background-color: #EFEFEF;
  padding: 21px 0;
  text-align: center;
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .copy {
    padding: 18px 0;
  }
}

/*---------------------------
ページ共通
---------------------------*/
/*----- 背景グラデーション -----*/
.bg-gradient {
  background-image: linear-gradient(150deg, rgba(216, 101, 58, 0.9) 10%, rgb(204, 240, 82));
  background-color: #fff;
}

.bg-gradient--blue {
  background-image: linear-gradient(150deg, rgba(216, 101, 58, 0.9) 10%, rgb(211, 200, 65) 60%, rgb(211, 201, 66) 72%, rgb(82, 106, 240));
  background-color: #fff;
}

/*----- テキスト色 -----*/
.txtWhite {
  color: #FFFFFF;
}

.txtOrange {
  color: #D8653A;
}

/*----- 下層ページfv -----*/
.underFv {
  margin-top: 89px;
  background-image: linear-gradient(150deg, rgba(216, 101, 58, 0.9) 10%, rgb(211, 200, 65) 60%, rgb(211, 201, 66) 72%, rgb(82, 106, 240));
  background-color: #fff;
  padding: 24px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .underFv {
    margin-top: 60px;
    padding: 12px 9px;
  }
  .underFv-img{
    width: 100%;
    aspect-ratio: 1 / .6;
    border-radius: 10px;
    overflow: hidden;
  }
}

.underFv__img {
  width: 100%;
  aspect-ratio: 1/0.32;
}
.underFv__img img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}

/*----- 下層ページサイドメニュー -----*/
.stickyContainer {
  position: relative;
  padding-top: 72px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.stickyContainer--policy{
  display: block;
}

.stickyItem {
  position: -webkit-sticky;
  position: sticky;
  top: 164px;
  left: 0;
  width: 276px;
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .stickyItem {
    display: none;
  }
}

.sideNav-ttl {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.1em;
  margin-bottom: 17px;
  line-height: 1;
}

.sideNav .sideNav__item a {
  font-size: 15px;
  line-height: 2;
  position: relative;
  left: -14px;
  padding-left: 14px;
  transition: all 0.5s;
}
.sideNav .sideNav__item a::before {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  background-color: #D8653A;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  opacity: 0;
  transition: all 0.5s;
}
.sideNav .sideNav__item a.current {
  left: 0;
  transition: all 0.5s;
}
.sideNav .sideNav__item a.current::before {
  opacity: 1;
  transition: all 0.5s;
}

.underContent {
  width: calc(100% - 276px);
}
@media screen and (max-width: 1024px) {
  .underContent {
    width: 100%;
  }
}

.underContent--policy{
  width: 100%;
}

/*----- 固定エントリーボタン -----*/
.entryBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: fixed;
  bottom: 50px;
  right: 28px;
  z-index: 999;
}
.entryBtn .entryBtn-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 40px;
  border-radius: 50px;
}
@media screen and (max-width: 1024px) {
  .entryBtn .entryBtn-link {
    padding: 15px 28px;
  }
}
@media screen and (max-width: 1024px) {
  .entryBtn {
    bottom: 20px;
    right: 20px;
  }
}

.entryBtn__en {
  font-size: 27px;
  color: #FFFFFF;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  text-transform: uppercase;
  margin-right: 49px;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .entryBtn__en {
    font-size: 18px;
    margin-right: 35px;
  }
}

.entryBtn__ja {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .entryBtn__ja {
    font-size: 11px;
  }
}

/*----- インタビュー名前、肩書き -----*/
@media screen and (max-width: 1024px) {
  .interviewName {
    margin-top: 10px;
  }
}
.interviewName__name,
.interviewName__ttl {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.66;
  color: #FFFFFF;
}

.interviewName__name {
  position: relative;
  padding-right: 24px;
  margin-right: 24px;
}
.interviewName__name::after {
  content: "";
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 13px;
  background-color: #FFFFFF;
}

/*----- ページ下部エントリー -----*/
.entrySec {
  padding: 70px;
}
@media screen and (max-width: 1024px) {
  .entrySec {
    padding: 72px 0;
  }
}

.entryBlock {
  border-radius: 10px;
}
.entryBlock a {
  padding: 67px 26% 82px 86px;
  border-radius: 10px;
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .entryBlock a {
    padding: 72px 34px 182px;
  }
}
.entryBlock a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 12%;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  background-color: #FFFFFF;
  border-radius: 50%;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .entryBlock a::before {
    bottom: 49px;
    top: unset;
    transform: translateX(-50%);
    left: 50%;
    width: 69px;
    height: 69px;
    right: unset;
  }
}
.entryBlock a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(12% + 16px);
  transform: translateY(-50%) rotate(-45deg);
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #D8653A;
  border-right: 2px solid #D8653A;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .entryBlock a::after {
    bottom: 76px;
    top: unset;
    transform: translateX(-50%) rotate(-45deg);
    left: calc(50% - 2px);
    right: unset;
    width: 14px;
    height: 14px;
  }
}
.entryBlock a:hover::before {
  background-color: #2E7BE3;
  transition: all 0.5s;
}
.entryBlock a:hover::after {
  border-bottom: 2px solid #FFFFFF;
  border-right: 2px solid #FFFFFF;
  transition: all 0.5s;
}

.entryBlock-ttl .entryBlock-ttl__en {
  font-size: 82px;
  letter-spacing: 0.05em;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .entryBlock-ttl .entryBlock-ttl__en {
    font-size: 60px;
    text-align: center;
  }
}
.entryBlock-ttl .entryBlock-ttl__ja {
  margin: 25px 0;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .entryBlock-ttl .entryBlock-ttl__ja {
    font-size: 18px;
    text-align: center;
  }
}

.entryBlock-txt {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .entryBlock-txt {
    text-align: center;
  }
}

.entryBlock-txtImg {
  position: absolute;
  width: 51.9%;
  right: 0;
  bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .entryBlock-txtImg {
    width: 100%;
    bottom: 78px;
  }
}

/*----- 左線テキスト -----*/
.leftLine-txt {
  padding-left: 20px;
  position: relative;
  font-size: 25px;
  font-weight: 800;
  list-style: none;
}
.leftLine-txt::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 100%;
  background-color: #D8653A;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 1024px) {
  .leftLine-txt {
    font-size: 20px;
    line-height: 1.25;
  }
}

/*----- グラデーション背景見出し -----*/
.bg-gradientTtl {
  font-size: 25px;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  padding: 10px 16px;
  border-radius: 10px;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .bg-gradientTtl {
    font-size: 20px;
    line-height: 1.25;
    border-radius: 5px;
  }
}

/*----- ヘッダー分調整 -----*/
.headerAdjust-link {
  padding-top: 100px;
  margin-top: -100px;
}
/*----- 背景all白 -----*/
.allBg-white {
  position: relative;
  padding: 100px 0;
}
@media screen and (max-width: 1024px) {
  .allBg-white {
    padding: 70px 0;
  }
}
.allBg-white::after {
  position: absolute;
  content: "";
  width: 100vw;
  height: 100%;
  background-color: #FFFFFF;
  top: 0;
  left: min(-9.2vw - 276px, (100vw - 1170px) / -2 - 276px);
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .allBg-white::after {
    left: -5.33vw;
  }
}

.allBg-white--policy::after{
  left: 0;
}
@media screen and (max-width: 1024px) {
  .allBg-white--policy::after{
    left: 0;
  }
}

/*------ クリックなし ------*/
.pointerNone {
  pointer-events: none;
}

.changeSize-img {
  overflow: hidden;
  border-radius: 30px;
}
.changeSize-img img {
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1.4);
  transition: all 1s;
}
.changeSize-img.is-changeSize img {
  transform: scale(1.2);
  transition: all 1s;
}

.underCopy {
  position: fixed;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .underCopy {
    display: none;
  }
}

.underCopy__copyright {
  font-size: 11px;
  line-height: 1;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  color: #FFFFFF;
}

/*---------------------------
TOPページ
---------------------------*/
/*------- ローディング -------*/
#splash {
  width: 100%;
  height: 100vh;
  position: relative;
  background-color: unset;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  background-color: #FFFFFF;
}

#splashTxt {
  position: absolute;
  top: 50%;
  left: 5.7vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #splash {
    height: 100vh;
  }
  #splashTxt {
    top: unset;
    left: 6.66vw;
    transform: unset;
    bottom: calc(50px + 15vh);
    z-index: 9;
  }
}

.splashTxt__en__block {
  font-size: 5.69vw;
  color: #FFFFFF;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.08vw;
  display: block;
  position: relative;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .splashTxt__en__block {
    font-size: clamp(46px, 12.26vw , 53px);
    margin-bottom: 5px;
  }
}

.splashTxt__en__block01 {
  top: 100px;
  -webkit-animation-name: splashTxt01Anime;
          animation-name: splashTxt01Anime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.splashTxt__en__block02 {
  top: 150px;
  -webkit-animation-name: splashTxt02Anime;
          animation-name: splashTxt02Anime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.splashTxt__en__block03 {
  top: 312px;
  -webkit-animation-name: splashTxt03Anime;
          animation-name: splashTxt03Anime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

.splashTxt__ja {
  position: relative;
  font-size: 1.52vw;
  color: #FFFFFF;
  font-weight: 800;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  line-height: 1;
  letter-spacing: 0.2em;
  top: 500px;
  -webkit-animation-name: splashTxt04Anime;
          animation-name: splashTxt04Anime;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  .splashTxt__ja {
    font-size: 15px;
  }
}

@-webkit-keyframes splashTxt01Anime {
  0% {
    opacity: 0;
    top: 100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}

@keyframes splashTxt01Anime {
  0% {
    opacity: 0;
    top: 100px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes splashTxt02Anime {
  0% {
    opacity: 0;
    top: 150px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes splashTxt02Anime {
  0% {
    opacity: 0;
    top: 150px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes splashTxt03Anime {
  0% {
    opacity: 0;
    top: 312px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes splashTxt03Anime {
  0% {
    opacity: 0;
    top: 312px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@-webkit-keyframes splashTxt04Anime {
  0% {
    opacity: 0;
    top: 500px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
@keyframes splashTxt04Anime {
  0% {
    opacity: 0;
    top: 500px;
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
/*---------- fv ----------*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

.fvTxt {
  position: absolute;
  top: 50%;
  left: 5.7vw;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .fv {
    height: 100vh;
  }
  
  .fvTxt {
    top: unset;
    left: 6.66vw;
    transform: unset;
    bottom: calc(50px + 15vh);
    z-index: 9;
  }
}

.fvTxt__en__block {
  font-size: 5.69vw;
  color: #0A0A0A;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1.08vw;
  display: block;
  position: relative;
  line-height: 1;
  top: 0;
}
@media screen and (max-width: 768px) {
  .fvTxt__en__block {
    font-size: clamp(46px, 12.26vw , 53px);
    margin-bottom: 5px;
  }
}

.fvTxt__ja {
  position: relative;
  font-size: 1.52vw;
  font-weight: 800;
  line-height: 1;
  color: #D8653A;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .fvTxt__ja {
    font-size: 15px;
  }
}

.fvImg {
  width: 50%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  .fvImg {
    width: 89%;
    height: 66.8vh;
  }
}
.fvImg .fvImg__item {
  height: 33.333%;
  width: 100%;
  position: relative;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.fvImg .fvImg__item img {
  height: 100%;
  width: 100%;
}
.fvImg .fvImg__item:first-of-type {
  right: -30%;
  -webkit-animation-name: fvImg01Anime;
          animation-name: fvImg01Anime;
}
.fvImg .fvImg__item:nth-of-type(2) {
  right: -60%;
  -webkit-animation-name: fvImg02Anime;
          animation-name: fvImg02Anime;
}
.fvImg .fvImg__item:last-of-type {
  right: -90%;
  -webkit-animation-name: fvImg03Anime;
          animation-name: fvImg03Anime;
}

@-webkit-keyframes fvImg01Anime {
  0% {
    right: -30%;
  }
  100% {
    right: 0;
  }
}

@keyframes fvImg01Anime {
  0% {
    right: -30%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes fvImg02Anime {
  0% {
    right: -60%;
  }
  100% {
    right: 0;
  }
}
@keyframes fvImg02Anime {
  0% {
    right: -60%;
  }
  100% {
    right: 0;
  }
}
@-webkit-keyframes fvImg03Anime {
  0% {
    right: -90%;
  }
  100% {
    right: 0;
  }
}
@keyframes fvImg03Anime {
  0% {
    right: -90%;
  }
  100% {
    right: 0;
  }
}
.scrollGuide {
  position: absolute;
  bottom: -130px;
  transform: unset;
  left: -50px;
  width: 288px;
  height: 288px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .scrollGuide {
    right: -110px;
    left: unset;
  }
}

.scrollGuide__txt {
  color: #D8653A;
  writing-mode: vertical-lr;
  text-transform: uppercase;
  margin-bottom: -100px;
  font-size: 13px;
}

/*---------- メッセージ ----------*/
.topMessage {
  padding: 135px 0 92px;
  background-image: url(../../assets/images/top/message.webp);
  background-position: center;
  background-size: cover;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topMessage {
    background-image: url(../../assets/images/top/sp_message.webp);
    padding: 107px 0 79px;
  }
}

.messageSign {
  position: absolute;
  left: 0;
  top: 73px;
  width: 44.9%;
}
@media screen and (max-width: 1024px) {
  .messageSign {
    width: 77.6vw;
    top: 53px;
  }
}

.inner--topMessage {
  padding: 0 4.7vw;
}
@media screen and (max-width: 1024px) {
  .inner--topMessage {
    padding: 0;
  }
}

.topMessage__txt {
  margin-top: 20px;
  font-weight: 400;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  line-height: 2;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .topMessage__txt {
    font-size: 14px;
  }
}

.bl-ttl__en--topMessage {
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

/*---------- 金谷自動車工業について ----------*/
.topAbout {
  padding: 112px 0 131px;
  font-weight: 400;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topAbout {
    padding: 84px 0 113px;
  }
}

.topAbout-list {
  margin-top: 46px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .topAbout-list {
    display: block;
    margin-top: 25px;
  }
}

.bl-ttl--aboutUs {
  position: relative;
}

.topAbout-aboutUs-txt {
  position: absolute;
  width: 38.68vw;
  top: 52px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .topAbout-aboutUs-txt {
    width: 73.33vw;
    top: 30px;
    left: 0;
    right: unset;
  }
}

.topAbout-list__item {
  width: calc(50% - 15px);
  background-color: #FFFFFF;
  border-radius: 30px;
  box-shadow: 5px 5px 0 #AFAFAF;
}
.topAbout-list__item a {
  display: block;
  padding: 34px 53px 58px;
}

.topAbout-list__item a:hover .topAbout-img img {
  transform: scale(1);
  transition: all .5s;
}

@media screen and (max-width: 1024px) {
  .topAbout-list__item a {
    padding: 14px 20px 40px;
  }
}
@media screen and (max-width: 1024px) {
  .topAbout-list__item {
    margin: 0 auto;
    width: 100%;
    max-width: 470px;
  }
  .topAbout-list__item:not(:last-of-type) {
    margin-bottom: 30px;
  }
}

.topAbout-img {
  width: 100%;
  aspect-ratio: 1/0.66;
  position: relative;
}
.topAbout-img img {
  border-radius: 30px;
}

.topAbout-ttl {
  font-size: 25px;
  font-weight: 800;
  padding-right: 55px;
  margin: 28px 0;
}
@media screen and (max-width: 1024px) {
  .topAbout-ttl {
    font-size: 23px;
    margin: 17px 0 5px;
    width: 100% !important;
    padding-right: 0;
    padding-left: 7px;
  }
}

.topAbout-txt {
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .topAbout-txt {
    letter-spacing: 0.1em;
    padding: 0 7px;
    text-align: justify;
}
}
.topAbout-txtImg {
  position: absolute;
}
.topAbout-txtImg--company {
  bottom: -13px;
  right: -13px;
  width: 65.9%;
}

.topAbout-txtImg--culture {
  top: -23px;
  left: -6px;
  width: 52.2%;
}

/*---------- 社員インタビュー ----------*/
.topInterview {
  padding: 69px 0 111px;
  background-image: url(../../assets/images/top/interview-bg.webp);
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .topInterview {
    background-image: url(../../assets/images/top/sp_interview-bg.webp);
    padding: 107px 0 109px;
  }
}

.topIntervier-txtImg {
  position: absolute;
  top: 91px;
  left: 97px;
  width: 33.8vw;
}
@media screen and (max-width: 1024px) {
.topIntervier-txtImg {
  top: 65px;
  left: 0;
  width: 81.33vw;
}
}
.topInterview-list {
  margin-top: 43px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 31px;
}
@media screen and (max-width: 1024px) {
  .topInterview-list {
    margin-top: 37px;
    display: block;
  }
}

.topInterview-list__item {
  width: 29.3%;
}
@media screen and (max-width: 1024px) {
  .topInterview-list__item {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
  .topInterview-list__item:not(:last-of-type) {
    margin-bottom: 74px;
  }
}

.topInterview-img {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.topInterview-ttl {
  margin: 24px 0 15px;
  color: #FFFFFF;
  font-weight: 800;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.25;
}

.interviewName {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100% !important;
}

/*----- 代表挨拶 -----*/
.companyMessage-img {
  margin: 21px 0 30px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .companyMessage-img {
    margin: 20px 0;
  }
}

.companyMessage-sign {
  margin-top: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 1024px) {
  .companyMessage-sign {
    margin-top: 20px;
  }
}

.companyMessage-sign__ttl {
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 5px;
}
@media screen and (max-width: 1024px) {
  .companyMessage-sign__ttl {
    font-size: 14px;
  }
}

.companyMessage-sign__name {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 1;
}

/*----- 大切にしていること -----*/
.companyPhilosophy {
  padding-top: 111px;
}
@media screen and (max-width: 1024px) {
  .companyPhilosophy {
    padding-top: 78px;
  }
}

.philosophyList {
  margin-top: 34px;
}
.philosophyList .philosophyList__item {
  padding: 49px 48px;
  position: relative;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.philosophyList .philosophyList__item:not(:last-of-type) {
  margin-bottom: 48px;
}
@media screen and (max-width: 1024px) {
  .philosophyList .philosophyList__item {
    padding: 53px 23px 30px;
  }
}

.philosophyNum {
  position: absolute;
  top: -70px;
  left: 0;
  font-size: 119px;
  color: #D8653A;
  opacity: 0.27;
}
@media screen and (max-width: 1024px) {
  .philosophyNum {
    font-size: 90px;
    top: -55px;
  }
}

.philosophyTtl {
  font-size: 25px;
  letter-spacing: 0.1em;
  line-height: 2.04;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .philosophyTtl {
    font-size: 23px;
    line-height: 1.52;
  }
}

.philosophyTxt {
  margin-top: 20px;
}

/*----- ここで得られるもの -----*/
.companyFeature {
  padding: 192px 0 164px;
}
@media screen and (max-width: 1024px) {
  .companyFeature {
    padding: 115px 0 86px;
  }
}

.featureList {
  margin-top: 57px;
}
@media screen and (max-width: 1024px) {
  .featureList {
    margin-top: 33px;
  }
}
.featureList .featureList__item {
  padding-left: 19px;
}
@media screen and (max-width: 1024px) {
  .featureList .featureList__item {
    padding-left: 0;
  }
}
.featureList .featureList__item:not(:last-of-type) {
  padding-bottom: 41px;
  margin-bottom: 43px;
  border-bottom: 4px solid #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .featureList .featureList__item:not(:last-of-type) {
    padding-bottom: 30px;
  }
}

.feature-ttl {
  font-size: 25px;
  letter-spacing: 0.1em;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (max-width: 1024px) {
  .feature-ttl {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 1.25;
  }
}

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

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

.featureTxt {
  width: 55%;
}
@media screen and (max-width: 1024px) {
  .featureTxt {
    margin-top: 18px;
    width: 100%;
  }
}

/*----- 求める人物像 -----*/
.personalList {
  margin-top: 50px;
}
.personalList .personalList__item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .personalList .personalList__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
@media screen and (max-width: 1024px) {
  .personalList {
    margin-top: 20px;
  }
}

.personalTxt {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .personalTxt {
    margin-top: 14px;
  }
}

/*----- 会社概要 -----*/
.companyOverview {
  padding: 125px 0 115px;
}
@media screen and (max-width: 1024px) {
  .companyOverview {
    padding: 70px 0;
  }
}

.overviewTable {
  width: 100%;
  margin-top: 35px;
  border-collapse: collapse;
}
@media screen and (max-width: 1024px) {
  .overviewTable {
    margin-top: 21px;
  }
}
.overviewTable .overviewTable__row {
  border-bottom: 4px solid #FFFFFF;
}
.overviewTable .overviewTable__row:first-of-type {
  border-top: 4px solid #FFFFFF;
}

.overviewTable__head {
  padding: 22px 34px;
  width: 200px;
  font-size: 17px;
  letter-spacing: 0.1em;
  line-height: 1.41;
}
@media screen and (max-width: 1024px) {
  .overviewTable__head {
    font-size: 14px;
    padding: 23px 32px 23px 0;
    width: 112px;
  }
}

.overviewTable__data {
  padding: 22px 34px;
  width: calc(100% - 200px);
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media screen and (max-width: 1024px) {
  .overviewTable__data {
    padding: 23px 22px 23px 12px;
    width: calc(100% - 112px);
    font-size: 14px;
  }
}

/*----- 業務内容 -----*/
.businessList {
  margin-top: 20px;
}
.businessList .businessList__item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 15px 32px 15px 18px;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.16);
  border-radius: 10px;
}
.businessList .businessList__item:not(:last-of-type) {
  margin-bottom: 30px;
}
@media screen and (max-width: 1024px) {
  .businessList .businessList__item {
    display: block;
    padding: 16px 17px 22px;
  }
}

.businessImg {
  width: 38.36%;
  margin-right: 44px;
}
@media screen and (max-width: 1024px) {
  .businessImg {
    width: 100%;
    aspect-ratio: 1 / 0.59;
    border-radius: 20px;
    overflow: hidden;
  }
}

.businessTxt-block {
  width: calc(61.64% - 44px);
}
@media screen and (max-width: 1024px) {
  .businessTxt-block {
    width: 100%;
  }
}

.businessTtl {
  letter-spacing: 0.05em;
  margin-bottom: 29px;
  font-size: 25px;
  line-height: 1.4;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .businessTtl {
    margin: 13px 0 10px;
  }
}
@media screen and (max-width: 768px) {
  .businessTtl {
    font-size: 20px;
  }
}

/*----- キャリアアップについて -----*/
.cultureCareer {
  padding: 190px 0 100px;
}
@media screen and (max-width: 1024px) {
  .cultureCareer {
    padding: 70px 0;
  }
}

.about-careerUp {
  margin-top: 30px;
  margin-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .about-careerUp {
    margin-top: 15px;
    margin-bottom: 42px;
  }
}

.careerTtl {
  letter-spacing: 0.1em;
}

.careerList .careerList__item {
  padding-left: 20px;
  padding-right: 20px;
}
.careerList .careerList__item:not(:last-of-type) {
  padding-bottom: 72px;
  margin-bottom: 72px;
  border-bottom: 4px solid #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .careerList .careerList__item:not(:last-of-type) {
    padding-bottom: 44px;
    margin-bottom: 44px;
  }
}
@media screen and (max-width: 1024px) {
  .careerList .careerList__item {
    padding-left: 0;
    padding-right: 0;
  }
}

.careerList__flex-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .careerList__flex-wrap {
    display: block;
    margin-top: 15px;
  }
}

.career-skillTxt {
  width: 46.5%;
}
@media screen and (max-width: 1024px) {
  .career-skillTxt {
    width: 100%;
  }
}

.career-skillImg {
  width: 42.1%;
}
@media screen and (max-width: 1024px) {
  .career-skillImg {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.career-supportTxt {
  margin: 28px 0 23px;
}
@media screen and (max-width: 1024px) {
  .career-supportTxt {
    margin: 25px 0 31px;
  }
}

.careerExample {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 27px 0 36px;
}
@media screen and (max-width: 1024px) {
  .careerExample {
    padding: 20px 0 35px;
  }
}

.careerExample__txt {
  font-size: 29px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1;
  padding-bottom: 25px;
  border-bottom: 4px solid #EFEFEF;
  margin-bottom: 35px;
  padding-left: 44px;
}
@media screen and (max-width: 1024px) {
  .careerExample__txt {
    font-size: 20px;
    margin-bottom: 17px;
    text-align: center;
    padding: 0 25px 20px;
    letter-spacing: 0em;
    line-height: 1.25;
  }
}

.exampleList {
  padding-left: 51px;
  padding-right: 30px;
}
@media screen and (max-width: 1024px) {
  .exampleList {
    padding-left: 10px;
    padding-right: 35px;
  }
}
.exampleList .exampleList__item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .exampleList .exampleList__item {
    display: block;
  }
}
.exampleList .exampleList__item:not(:last-of-type) {
  padding-bottom: 55px;
}
@media screen and (max-width: 1024px) {
  .exampleList .exampleList__item:not(:last-of-type) {
    padding-bottom: 26px;
  }
}
.exampleList .exampleList__item:not(:last-of-type)::after {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  top: 0;
  left: 60px;
  background-image: linear-gradient(to bottom, #707070 3px, transparent 3px);
  background-size: 3px 8px;
  background-repeat: repeat-y;
  background-position: left bottom;
}
@media screen and (max-width: 1024px) {
  .exampleList .exampleList__item:not(:last-of-type)::after {
    left: 12px;
    background-size: 3px 6px;
  }
}
.exampleList .exampleList__item:first-of-type .year {
  background-color: #2E7BE3;
}
.exampleList .exampleList__item:nth-of-type(2) .year {
  background-color: #409127;
}
.exampleList .exampleList__item:last-of-type .year {
  background-color: #D8653A;
}

.year {
  font-size: 25px;
  font-weight: 800;
  color: #FFFFFF;
  line-height: 1;
  text-align: center;
  padding: 7.5px;
  width: 123px;
  position: relative;
  z-index: 1;
  border-radius: 10px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .year {
    font-size: 17px;
    letter-spacing: 0.1em;
    padding: 12px 20px;
    width: 93px;
  }
}

.exampleList__txtWrap {
  width: calc(100% - 150px);
}
@media screen and (max-width: 1024px) {
  .exampleList__txtWrap {
    width: 100%;
    padding-left: 47px;
  }
}

.exampleList__ttl {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 3px;
  margin-top: -4px;
}
@media screen and (max-width: 1024px) {
  .exampleList__ttl {
    font-size: 20px;
    line-height: 1.25;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.career-boostImg {
  width: 38.9%;
}
@media screen and (max-width: 1024px) {
  .career-boostImg {
    width: 100%;
    margin-bottom: 26px;
  }
}

.career-boostTxt {
  width: 52.9%;
}
@media screen and (max-width: 1024px) {
  .career-boostTxt {
    width: 100%;
  }
}

/*----- 福利厚生 -----*/
.welfareList {
  margin-top: 50px;
}
@media screen and (max-width: 1024px) {
  .welfareList {
    margin-top: 20px;
  }
}
.welfareList .welfareList__item:not(:last-of-type) {
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .welfareList .welfareList__item:not(:last-of-type) {
    margin-bottom: 25px;
  }
}

.welfareTxt {
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .welfareTxt {
    margin-top: 10px;
  }
}

/*-------------------------
interview
-------------------------*/
.interviewTtl-wrap {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
  .interviewTtl-wrap {
    display: block;
  }
}

.bl-ttl__en--interview {
  margin-right: 81px;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  width: 277px;
}
.bl-ttl__en--interview::before {
  content: "";
  position: absolute;
  width: 39px;
  height: 1px;
  background-color: #D8653A;
  right: -14.5px;
  top: 50%;
  transform: translate(100%, 50%);
}
@media screen and (max-width: 1024px) {
  .bl-ttl__en--interview::before {
    display: none;
  }
}

@media screen and (max-width: 1024px) {
  .interviewTtl__txt--interview {
    font-size: 20px !important;
    line-height: 1.25;
  }
}
.interviewName--interview .interviewName__name {
  color: #0A0A0A;
}
.interviewName--interview .interviewName__name::after {
  background-color: #0A0A0A;
}
.interviewName--interview .interviewName__ttl {
  color: #0A0A0A;
}

.pageInterview-img {
  margin: 35px 0 30px;
}
@media screen and (max-width: 1024px) {
  .pageInterview-img {
    margin: 15px 0 30px;
  }
}
.interviewTtl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 10px;
  margin-bottom: 20px;
  position: relative;
}
.interviewTtl::after {
  width: 100%;
  height: 4px;
  background-color: #FFFFFF;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .interviewTtl {
    align-items: flex-start;
  }
}

.interviewTtl__num {
  font-size: 43px;
  color: #D8653A;
  line-height: 1;
  margin-right: 20px;
}

.interviewTtl__num--square{
  position: relative;
  width: 23px;
}

.interviewTtl__num--square::before{
  position: absolute;
  content: '';
  width: 7px;
  height: 26px;
  background-color: #D8653A;
  transform: translateY(-50%) skew(-25deg);
  top: 3px;
  left: 12px;
}

.interviewTtl__num--square::after{
  position: absolute;
  content: '';
  width: 7px;
  height: 26px;
  background-color: #D8653A;
  transform: translateY(-50%) skew(-25deg);
  top: 3px;
  left: 20px;
}
@media screen and (max-width: 1024px) {
  .interviewTtl__num {
    font-size: 30px;
  }
  .interviewTtl__num--square{
    width: 15px;
  }
  .interviewTtl__num--square::before{
    width: 5px;
    height: 24px;
    top: 15px;
    left: 9px;
  }
  
  .interviewTtl__num--square::after{
    width: 5px;
    height: 24px;
    top: 15px;
    left: 17px;
  }
}

@media screen and (max-width: 1024px) {
  .bl-ttl__ja--interview {
    font-size: 25px;
    margin: 10px 0;
    max-width: 89.333vw;
  }
}
.interviewTtl__txt {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pageInterview-list .pageInterview-list__item:not(:last-of-type) {
  margin-bottom: 41px;
}

.interview02,
.interview03 {
  padding-top: 125px;
}

.interview03 {
  margin-bottom: 70px;
}

/*-------------------
エントリー
-------------------*/
.applicationTable {
  margin-top: 40px;
}
.applicationTable .applicationTale__tr:first-of-type {
  border-top: 4px solid #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .applicationTable {
    margin-top: 25px;
  }
}

.applicationTale__tr {
  border-bottom: 4px solid #FFFFFF;
}

.applicationTale__th {
  padding: 20px 34px;
  width: 227px;
  font-size: 17px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .applicationTale__th {
    width: 100%;
    padding: 20px 0 0 0;
    font-size: 16px;
    font-weight: 700;
    display: block;
  }
}

.applicationTale__td {
  padding: 20px 30px;
  width: calc(100% - 227px);
  font-size: 15px;
  font-weight: 400;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .applicationTale__td {
    width: 100%;
    padding: 0 0 20px 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0;
    display: block;
  }
}

.faq {
  padding-top: 120px;
  padding-bottom: 151px;
}
@media screen and (max-width: 1024px) {
  .faq {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

.accordion-content {
  display: none;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .accordion-content {
    padding: 25px 15px 0;
  }
}

.accordion-header {
  background-color: #FFF;
  border-radius: 10px;
  box-shadow: 0, 0, 6px rgba(0, 0, 0, 0.16);
  padding: 16px 30px;
  margin: 36px 0 0;
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 800;
}
@media screen and (max-width: 1024px) {
  .accordion-header {
    font-size: 16px;
    padding: 22px 47px 22px 13px;
    margin: 25px 0 0;
  }
}

.accordion-header::before,
.accordion-header::after {
  position: absolute;
  content: "";
  top: 1px;
  right: 20px;
  bottom: 0;
  width: 17px;
  height: 3px;
  margin: auto;
  background: #D8653A;
}

.accordion-header::after {
  transform: rotate(0);
  transition: transform 0.3s;
}

.accordion-header::before {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

.accordion-header.active::after {
  transform: rotate(-40deg);
}

.accordion-header.active::before {
  transform: rotate(40deg);
}

.accordion-content {
  padding: 12px 30px 10px;
}

.accordion-header span,
.accordion-content span {
  padding-left: 58px;
  position: relative;
  display: block;
}
@media screen and (max-width: 1024px) {
  .accordion-header span,
.accordion-content span {
    padding-left: 28px;
    line-height: 1.5;
  }
}

.accordion-header span::before {
  position: absolute;
  content: "Q";
  top: -12px;
  left: 0;
  color: #D8653A;
  font-size: 30px;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .accordion-header span::before {
    font-size: 25px;
    top: -5px;
  }
}

.accordion-content span::before {
  position: absolute;
  content: "A";
  top: -12px;
  left: 0;
  color: #2E7BE3;
  font-size: 30px;
  font-family: "Cabin", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-variation-settings: "wdth" 100;
  font-style: italic;
}
@media screen and (max-width: 1024px) {
  .accordion-content span::before {
    font-size: 25px;
    top: -5px;
  }
}

/*----- エントリーフォーム -----*/
.contactForm {
  width: 81.47%;
  margin: 45px auto 100px 0;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 100%;
    margin: 39px 0 35px;
  }
}

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

.formDt {
  width: 215px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 8px;
  }
}

.formTtl {
  font-weight: 700;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    margin-right: 11px;
    font-size: 18px;
  }
}

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

.formDd {
  width: calc(100% - 215px);
  margin-left: 30px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .formDd {
    width: 100%;
    margin-left: 0;
  }
}

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

.formYear {
  width: max-width !important;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.formYear__input {
  width: 79px !important;
  margin-right: 9px;
}

.formMonth {
  width: max-width !important;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.formMonth__input {
  width: 60px !important;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
  .formMonth__input {
    width: 44px !important;
  }
}

.formDate {
  width: max-width !important;
  margin-right: 10px;
  display: flex;
  align-items: center;
}

.formDate__input {
  width: 60px !important;
}
@media screen and (max-width: 1024px) {
  .formDate__input {
    width: 44px !important;
  }
}

/*----- ラジオボタン ----*/
.radioBtn-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

input[type=radio] {
  position: relative;
  width: 19px;
  height: 19px;
  background-color: #F4F0E9;
  border-radius: 50%;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin-right: 10px;
}

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

input[type=radio]:checked:before {
  background: #D8653A;
}

.radioBtn {
  margin-right: 25px;
  color: #0A0A0A;
}
.radioBtn:last-of-type {
  margin-right: 0;
}

/*----- ラジオボタン ここまで ----*/
input[type=text],
input[type=email],
textarea {
  font-size: 14px;
  padding: 10px 18px;
  background-color: #EFEFEF;
  border-radius: 5px;
  color: #0A0A0A;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5px 15px;
  }
}

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

/*----- 住所入力欄 ----*/
.postCode {
  margin-right: 18px;
  position: relative;
}

.postCode-input {
  width: 131px;
  padding-left: 35px !important;
}

.postCode-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  z-index: 1;
}

.prefecture-input {
  padding: 13px 30px;
}

.prefectures {
  color: #0A0A0A;
  width: 165px;
}
@media screen and (max-width: 1024px) {
  .prefectures {
    font-size: 11px;
    width: 120px;
  }
}

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

/*----- 住所入力欄 ここまで ----*/
/*----- プライバシーポリシー ----*/
.policy-box {
  width: 100%;
  height: 227px;
  background-color: #EFEFEF;
  border-radius: 5px;
  overflow-y: auto;
  box-shadow: inset 0 3px 6px rgba(0, 0, 0, 0.16);
  padding: 33px 35px;
  margin-top: 47px;
}
@media screen and (max-width: 1024px) {
  .policy-box {
    height: 246px;
    padding: 27px 25px;
    margin-top: 38px;
  }
}

.policy-box__txt {
  font-size: 12px;
  line-height: 1.41;
}

/*----- プライバシーポリシー ここまで ----*/
.privacy-wrap label {
  margin-left: 13px;
}

input[type=checkbox] {
  position: relative;
  width: 14px;
  height: 14px;
  border: 1px solid #707070;
  background-color: #EFEBE7;
  vertical-align: -2px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 2px;
}

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

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 46px auto 41px;
  color: #0A0A0A;
  font-size: 12px;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

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

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  overflow: hidden;
}

.submitBtn {
  padding: 20px 65px;
  font-size: 17px;
  color: #FFFFFF;
  font-weight: 700;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  border-radius: 33px;
  line-height: 1;
  background-image: linear-gradient(150deg, rgba(216, 101, 58, 0.9) 10%, rgb(211, 200, 65) 60%, rgb(211, 201, 66) 72%, rgb(82, 106, 240));
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 17px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding: 20px 65px;
  }
}

.confirmBox {
  width: 100%;
}

.formDd--confirm {
  margin-left: 53px;
}

.postCode-icon--confirm {
  left: 0;
}

.postCode--confirm {
  padding-left: 30px;
}

.confirmBlock {
  margin: 46px 0 53px;
}

.confirm-submit {
  margin-top: 82px;
}

.thanksTxt {
  font-size: 15px;
  margin: 35px 0 71.3px;
}

.to-topPage {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.to-topPage a {
  display: block;
  font-size: 17px;
  padding: 20px 101px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
  color: #FFFFFF;
  background-color: #D8653A;
  border-radius: 33px;
}

/*-------------------------
プライバシーポリシー
--------------------------*/
.policyTxt {
  margin-top: 50px;
}
/*# sourceMappingURL=style.css.map */