@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@font-face {
  font-family: "josefin";
  src: url("../../assets/fonts/JosefinSans-Regular.ttf") format("truetype");
  font-weight: 400;
}
@font-face {
  font-family: "josefin";
  src: url("../../assets/fonts/JosefinSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
}
@font-face {
  font-family: "zen";
  src: url("../../assets/fonts/ZenOldMincho-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "zen";
  src: url("../../assets/fonts/ZenOldMincho-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "zen";
  src: url("../../assets/fonts/ZenOldMincho-Regular.ttf") format("truetype");
  font-weight: 400;
}
/*-----------------
基本設定
------------------*/
html {
  width: 100%;
  overflow-x: hidden;
}

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

body {
  font-size: 15px;
  font-family: "zen", serif;
  font-weight: 700;
  color: #FFFFFF;
  line-height: 2;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  overflow: hidden;
}

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

.oneSide-margin {
  width: min(89.93vw, 1440px + (100vw - 1440px) / 2);
}
@media screen and (max-width: 1024px) {
  .oneSide-margin {
    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) {
  .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: 12px;
  }
  .inner {
    width: 89.333%;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.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-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-largeTitle {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.bl-largeTitle-ja {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-largeTitle-ja {
    font-size: 23px;
  }
}

.bl-largeTitle-en {
  font-size: 75px;
  letter-spacing: 0.05em;
  font-family: "josefin", sans-serif;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-largeTitle-en {
    font-size: 30px;
  }
}

.bl-largeTitle__smallEn .bl-largeTitle-ja {
  font-size: 40px;
  line-height: 1.25;
}
@media screen and (max-width: 768px) {
  .bl-largeTitle__smallEn .bl-largeTitle-ja {
    font-size: 23px;
  }
}
.bl-largeTitle__smallEn .bl-largeTitle-en {
  font-size: 50px;
  line-height: 1;
  margin-bottom: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 30px;
}
@media screen and (max-width: 768px) {
  .bl-largeTitle__smallEn .bl-largeTitle-en {
    font-size: 30px;
    margin-bottom: 5px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-right: 10px;
  }
}

.bl-mediumTitle__recruit {
  padding-top: 31px;
  padding-left: 42px;
}

/* 中見出し 英語（小）＋日本語（大） */
.bl-mediumTitle-ja {
  font-size: 40px;
  letter-spacing: 0;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .bl-mediumTitle-ja {
    font-size: 23px;
  }
}

.bl-mediumTitle-en {
  font-size: 17px;
  letter-spacing: 0.1em;
  font-family: "josefin", sans-serif;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 15px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .bl-mediumTitle-en {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

/* 小見出し */
.bl-smallTitle {
  font-size: 23px;
  letter-spacing: 0.05em;
}

.bl-deco {
  position: relative;
}

.bl-deco__brackets-leftTop::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 98px;
  background-color: #A70000;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .bl-deco__brackets-leftTop::before {
    height: 51px;
    width: 2px;
  }
}
.bl-deco__brackets-leftTop::after {
  content: "";
  position: absolute;
  width: 144px;
  height: 3px;
  background-color: #A70000;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .bl-deco__brackets-leftTop::after {
    width: 76px;
    height: 2px;
  }
}

.bl-deco__brackets-leftTop-s::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 65.05px;
  background-color: #A70000;
  top: 0;
  left: 0;
}
.bl-deco__brackets-leftTop-s::after {
  content: "";
  position: absolute;
  width: 95.59px;
  height: 3px;
  background-color: #A70000;
  top: 0;
  left: 0;
}

.bl-deco__brackets-leftBottom::before {
  content: "";
  position: absolute;
  width: 3px;
  height: 98px;
  background-color: #A70000;
  bottom: 0;
  left: 0;
}
.bl-deco__brackets-leftBottom::after {
  content: "";
  position: absolute;
  width: 144px;
  height: 3px;
  background-color: #A70000;
  bottom: 0;
  left: 0;
}

.bl-deco__barUnder::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 4px;
  background-color: #A70000;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .bl-deco__barUnder::before {
    width: 81px;
    height: 2px;
  }
}

.bl-deco__barCenter-low::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 4cqi;
  background-color: #A70000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}

.bl-deco__barCenter-column::before {
  content: "";
  position: absolute;
  height: 62px;
  width: 5px;
  background-color: #A70000;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}
@media screen and (max-width: 768px) {
  .bl-deco__barCenter-column::before {
    width: 2px;
    height: 47px;
  }
}

.bl-deco__barRight::before {
  content: "";
  position: absolute;
  width: 292px;
  height: 4px;
  background-color: #A70000;
  top: calc(50% - 3px);
  right: 0;
  transform: translate(100%, -50%);
}
@media screen and (max-width: 768px) {
  .bl-deco__barRight::before {
    width: 81px;
    height: 2px;
  }
}

/*---------------------------
ヘッダー
---------------------------*/
.head {
  position: fixed;
  top: 45px;
  left: 0;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
}
@media screen and (max-width: 1024px) {
  .head {
    top: 0;
  }
}

.head__topPage {
  -webkit-animation-name: loadingHeaderAnime;
          animation-name: loadingHeaderAnime;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  transform: translateY(calc(-100% - 45px));
}
@media screen and (max-width: 1024px) {
  .head__topPage {
    top: 0;
    transform: unset;
    z-index: 99;
  }
}

@-webkit-keyframes loadingHeaderAnime {
  0% {
    transform: translateY(calc(-100% - 45px));
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes loadingHeaderAnime {
  0% {
    transform: translateY(calc(-100% - 45px));
  }
  100% {
    transform: translateY(0);
  }
}
.head__logo {
  width: 15.56vw;
  max-width: 300px;
  margin-top: 0;
  margin-left: 46px;

}

.head__logo a{
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 45%;
    margin-left: 12px;
    margin-top: 20px;
  }
}

.head__nav {
  width: 63%;
  margin-right: 43px;
}

.headNav-list {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.headNav-list__item a {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 12px;
  font-size: 16px;
  font-family: "josefin", sans-serif;
  line-height: 1;
  color: #FFFFFF;
  font-weight: 600;
  text-transform: uppercase;
}
.headNav-list__item a::after {
  content: "";
  position: absolute;
  width: 46px;
  height: 4px;
  background-color: #A70000;
  top: 0;
  left: 50%;
  transform: translateX(-50%) scale(0);
}

.headNav-list__item.currentLocation a::after {
  transform: translateX(-50%) scale(1);
}

.headNav-list__item_contact {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 80px;
}
.headNav-list__item_contact a {
  line-height: 1;
  display: block;
  padding: 10px 30px 5px;
  background-color: #A70000;
  border-radius: 80px;
  transition: all 0.3s;
}
.headNav-list__item_contact a:hover {
  background-color: #B1B1B1;
  transition: all 0.3s;
}

#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-image: url(../../assets/images/main-bg.webp);
  background-repeat: repeat-y;
  background-size: auto;
  transition: all 0.3s;
  pointer-events: none;
}

/*アクティブクラスがついたら透過なしにして最前面へ*/
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  top: 0;
  left: 0;
  pointer-events: all;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: calc(100vh + 45px);
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#g-nav.panelactive ul {
  display: block;
}

/*リストのレイアウト設定*/
#g-nav li {
  list-style: none;
  text-align: center;
}

#g-nav li a {
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

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

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

.openbtn1 span:nth-of-type(1) {
  top: 0;
}

.openbtn1 span:nth-of-type(2) {
  top: 11.5px;
}

.openbtn1 span:nth-of-type(3) {
  top: 23px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 10px;
  left: 0;
  transform: rotate(-45deg);
  width: 100%;
}

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

.openbtn1.active span:nth-of-type(3) {
  top: 10px;
  left: 0;
  transform: rotate(45deg);
  width: 100%;
}

.burgerNav-list__item {
  margin-bottom: 50px;
}
.burgerNav-list__item a {
  font-family: "josefin", sans-serif;
  font-weight: 600;
  font-size: 16px;
}

.burgerNav-list__item_contact {
  margin-bottom: 0;
}
.burgerNav-list__item_contact a {
  padding: 7.5px 17px;
  display: block;
  background-color: #A70000;
}

.burger-copy {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}

/*---------------------------
フッター
---------------------------*/
.foot {
  padding-bottom: 20px;
  padding-top: 14px;
  background-image: url(../../assets/images/pale-color-bg.webp);
  background-repeat: repeat-y;
  background-size: auto;
  background-position: left;
}
@media screen and (max-width: 768px) {
  .foot {
    padding-bottom: 11px;
    padding-top: 0;
  }
}

.foot.foot-noBg {
  background-image: unset;
}

.foot-logo {
  width: 15.56vw;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
  padding-top: 40px;
}

.foot-logo a{
  display: block;
  width: 100%;
  height:  100%;
}
@media screen and (max-width: 1024px) {
  .foot-logo {
    width: 45%;
    margin: 0 auto;
    padding-top: 20px;
  }
}

/*.foot-logo {
  font-size: 41px;
  padding-top: 30px;
  position: relative;
  text-align: center;
  font-weight: 700;
  font-family: "josefin", sans-serif;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .foot-logo {
    font-size: 18px;
  }
}*/
.foot-logo::after {
  content: "";
  position: absolute;
  width: 116px;
  height: 4px;
  background-color: #A70000;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .foot-logo::after {
    width: 57px;
    height: 2px;
  }
}

.foot-address {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 56px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .foot-address {
    margin-top: 17px;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.66;
    margin-bottom: 22px;
    text-align: center;
  }
}

.copy {
  font-size: 9px;
  font-weight: 600;
  text-align: center;
  font-family: "josefin", sans-serif;
  text-transform: uppercase;
  text-align: center;
}

/*---------------------------
TOPページ
---------------------------*/
.bg-wrap {
  background-image: url(../../assets/images/main-bg.webp);
  background-repeat: repeat-y;
  background-size: auto;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .bg-wrap {
    background-image: url(../../assets/images/main-bg_sp.webp);
  }
}

.fv {
  width: 100%;
  height: 100vh;
  position: relative;
}

.loadingBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../../assets/images/main-bg.webp);
  background-size: cover;
  -webkit-animation-name: loadingBgAnime;
          animation-name: loadingBgAnime;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  opacity: 1;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .loadingBg {
    background-image: url(../../assets/images/main-bg_sp.webp);
  }
}

@-webkit-keyframes loadingBgAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes loadingBgAnime {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    pointer-events: none;
  }
}
.fv-img {
  width: 50%;
  height: 100vh;
  -webkit-animation-name: loadingImageAnime;
          animation-name: loadingImageAnime;
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  opacity: 0;
}
@media screen and (max-width: 1024px) {
  .fv-img {
    width: 100%;
    height: 50vh;
    top: 0;
    position: absolute;
    left: 0;
  }
}

@-webkit-keyframes loadingImageAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loadingImageAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fv-clear {
  width: 50%;
  height: 100vh;
}

.fv-centerTxt {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  font-size: 50px;
  text-align: center;
  line-height: 1.2;
  font-weight: 400;
  font-family: "josefin", sans-serif;
  color: #FFFFFF;
  -webkit-animation-name: loadingCenterTxtAnime;
          animation-name: loadingCenterTxtAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
  opacity: 0;
  z-index: 101;
}
@media screen and (max-width: 1024px) {
  .fv-centerTxt {
    font-size: 30px;
  }
}

@-webkit-keyframes loadingCenterTxtAnime {
  0% {
    position: fixed;
    opacity: 0;
    z-index: 101;
  }
  80% {
    position: fixed;
    z-index: 101;
  }
  100% {
    position: absolute;
    opacity: 1;
    z-index: 98;
  }
}

@keyframes loadingCenterTxtAnime {
  0% {
    position: fixed;
    opacity: 0;
    z-index: 101;
  }
  80% {
    position: fixed;
    z-index: 101;
  }
  100% {
    position: absolute;
    opacity: 1;
    z-index: 98;
  }
}
.fv-loadingTxt-wrap {
  position: absolute;
  top: 0;
  right: 0;
  flex-direction: row-reverse;
  align-items: flex-start;
}
@media screen and (max-width: 1024px) {
  .fv-loadingTxt-wrap {
    top: unset;
    bottom: 0;
    right: 6.66vw;
  }
}

.fv-loadingTxt {
  writing-mode: vertical-lr;
  font-size: 10vh;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.1em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .fv-loadingTxt {
    font-size: 3.9vh;
    letter-spacing: 0.2em;
    line-height: 1.7;
  }
}

.fv-loadingTxt__right {
  transform: translateY(100%);
  -webkit-animation-name: loadingRightTxtAnime;
          animation-name: loadingRightTxtAnime;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
}

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

@keyframes loadingRightTxtAnime {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
.fv-loadingTxt__left {
  margin-top: 80px;
  transform: translateY(calc(-100% - 49px));
  -webkit-animation-name: loadingLeftTxtAnime;
          animation-name: loadingLeftTxtAnime;
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-timing-function: ease-in;
}
@media screen and (max-width: 1024px) {
  .fv-loadingTxt__left {
    -webkit-animation-name: loadingRightTxtAnime;
            animation-name: loadingRightTxtAnime;
  }
}

@-webkit-keyframes loadingLeftTxtAnime {
  0% {
    transform: translateY(calc(-100% - 49px));
  }
  100% {
    transform: translateY(0);
  }
}

@keyframes loadingLeftTxtAnime {
  0% {
    transform: translateY(calc(-100% - 49px));
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes loadingLeftTxtAnime {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }
  @keyframes loadingLeftTxtAnime {
    0% {
      transform: translateY(100%);
    }
    100% {
      transform: translateY(0);
    }
  }
}
.fv-img .pc-tab1280 {
  width: 100%;
  height: 100%;
}
.fv-img .tab1024-sp {
  width: 100%;
  height: 100%;
}

/*---------------------------
ABOUT
---------------------------*/
.about {
  padding-top: 130px;
}
@media screen and (max-width: 1024px) {
  .about {
    padding-top: 85px;
  }
}

.bl-deco__message {
  padding-left: 44px;
  padding-bottom: 33px;
  margin-left: max(10.07vw, (100vw - 1440px) / 2);
}
@media screen and (max-width: 1024px) {
  .bl-deco__message {
    padding-left: 24px;
    padding-bottom: 25px;
    margin-left: 0;
  }
}

.message-img {
  margin-top: 53px;
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .message-img {
    width: 100%;
    margin-top: 47px;
  }
}

.about-wrap {
  display: flex;
  padding-left: max(10.07vw, (100vw - 1440px) / 2);
}
@media screen and (max-width: 1024px) {
  .about-wrap {
    display: block;
    padding-left: 0;
  }
}

.about-ttl {
  width: calc(62.17% - 82px);
}
@media screen and (max-width: 1024px) {
  .about-ttl {
    width: 100%;
  }
}

.about-content {
  /*width: 37.83%;
  margin-left: 82px;
  padding-bottom: 56px;
  height: fit-content;
  margin-top: 70px;*/
  width: 40.83%;
  margin-left: 152px;
  padding-bottom: 56px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .about-content {
    width: 100%;
    margin-left: 0;
    margin-top: 51px;
    padding: 0 10px 45px;
  }
}

@media screen and (max-width: 1024px) {
  .oneSide-margin__message {
    width: 86.66%;
    margin: 0 auto;
  }
}
.message-name {
  display: block;
  margin-top: 100px;
  /* text-align: right; */
  font-size: 20px;
}

/*---------------------------
SERVICE
---------------------------*/
.service {
  padding-top: 107px;
  padding-bottom: 130px;
}

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

.serviceList {
  margin-top: 35px;
  align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .serviceList {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .serviceList .serviceList__item:not(:last-of-type) {
    margin-bottom: 100px;
  }
}

.service-overview {
  padding-top: 35px;
}
@media screen and (max-width: 768px) {
  .service-overview {
    padding: 35px 10px 0;
  }
}

.bl-deco__serviceList {
  padding-top: 13.5px;
  padding-left: 18px;
}
@media screen and (max-width: 1024px) {
  .bl-deco__serviceList {
    width: 87%;
    padding-left: 19px;
    padding-top: 19px;
    margin: 0 auto;
  }
}

.serviceList__item {
  width: calc(33% - 28.3px);
  position: relative;
}
@media screen and (max-width: 1024px) {
  .serviceList__item {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}
.serviceList__item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #B1B1B1;
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .serviceList__item::after {
    display: none;
  }
}

.serviceImg {
  position: relative;
  width: 100%;
  aspect-ratio: 1/0.9;
}
@media screen and (max-width: 1024px) {
  .serviceImg {
    width: 100%;
  }
}

.serviceNum {
  position: absolute;
  font-size: 16px;
  font-family: "josefin", sans-serif;
  font-weight: 600;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .serviceNum {
    font-weight: 400;
    font-size: 15px;
  }
}

.serviceList-ttl {
  margin-top: 42px;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
  padding-left: 18px;
}
@media screen and (max-width: 1225px) {
  .serviceList-ttl {
    font-size: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .serviceList-ttl {
    margin: 65px auto 20px;
    font-size: 18px;
    width: 87%;
  }
}

.serviceList-txt {
  font-size: 14px;
  padding-bottom: 55px;
  padding-left: 19px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .serviceList-txt {
    font-size: 12px;
    padding: 0px 10px 0px 19px;
    width: 87%;
    margin: 0 auto;
  }
}

/*---------------------------
RECRUIT
---------------------------*/
.recruit {
  padding: 130px 0;
  width: 100%;
  background-image: url(../../assets/images/pale-color-bg.webp);
  background-repeat: repeat-y;
  background-size: auto;
}
@media screen and (max-width: 1024px) {
  .recruit {
    padding: 90px 0 130px;
  }
}

@media screen and (max-width: 1024px) {
  .oneSide-margin__recruit {
    width: 86.666%;
    margin: 0 auto;
  }
}
.recruitContainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 64px;
}
@media screen and (max-width: 1024px) {
  .recruitContainer {
    display: block;
    padding-left: 0;
  }
}

.recruit-content {
  width: 540px;
  padding-right: 60px;
}
@media screen and (max-width: 1024px) {
  .recruit-content {
    width: 100%;
    padding-right: 0;
  }
}

.recruit-txt {
  margin-top: 52px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .recruit-txt {
    margin: 41px auto 49px;
  }
}

.recruit-img {
  width: calc(100% - 540px);
}
@media screen and (max-width: 1024px) {
  .recruit-img {
    width: 93.333vw;
    margin-right: -6.667vw;
  }
}

.recruit-name {
  text-align: right;
  padding-right: 20px;
}

.recruit-inner {
  padding-left: 60px;
  padding-top: 150px;
}
@media screen and (max-width: 1024px) {
  .recruit-inner {
    padding-left: 0;
    padding-top: 55px;
  }
}

.recruit-underContent {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .recruit-underContent {
    display: block;
  }
}

.bl-mediumTitle__recruit {
  width: 320px;
  margin-right: 90px;
}
@media screen and (max-width: 1024px) {
  .bl-mediumTitle__recruit {
    width: 100%;
    margin-right: 0;
    padding-top: 31px;
    padding-left: 24px;
  }
}

.recruit-underContent__right {
  width: calc(100% - 410px);
}
@media screen and (max-width: 1024px) {
  .recruit-underContent__right {
    width: 89.23%;
    margin: 70px auto 0;
  }
}

@media screen and (max-width: 1024px) {
  .idealList {
    margin-bottom: 132px;
  }
}
.idealList .idealList__item:not(:last-of-type) {
  margin-bottom: 76px;
}
@media screen and (max-width: 1024px) {
  .idealList .idealList__item:not(:last-of-type) {
    margin-bottom: 87px;
  }
}
.idealList .idealTtl {
  font-size: 25px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  margin-bottom: 14px;
}
@media screen and (max-width: 1024px) {
  .idealList .idealTtl {
    font-size: 18px;
    line-height: 1.38;
    padding: 0 11px 10px;
    margin-bottom: 33px;
  }
}
.idealList .idealTtl::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: #B13535;
  left: 0;
  bottom: 0;
}
.idealList .idealNum {
  font-size: 30px;
  font-family: "josefin", sans-serif;
  color: #A70000;
  margin-right: 23px;
  padding-top: 8px;
}
.idealList .idealTxt {
  letter-spacing: 0.05em;
  padding: 0 10px;
}

@media screen and (max-width: 1024px) {
  .recruit-underContent__application {
    width: 100%;
    margin: 42px auto 0;
  }
}

.recruit-table {
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .recruit-table {
    padding: 20px 0 28px;
  }
}
@media screen and (max-width: 1024px) {
  .recruit-table .recruit-tr:last-of-type .recruit-td::after {
    display: none;
  }
  .recruit-table .recruit-tr:last-of-type .recruit-td::before {
    display: none;
  }
}
.recruit-table .recruit-tr:last-of-type .recruit-th {
  border-bottom: unset;
}
.recruit-table .recruit-tr:last-of-type .recruit-td {
  border-bottom: none;
}

.recruit-th {
  font-size: 15px;
  text-align: center;
  color: #00022B;
  padding: 18px 0 25px;
  width: 164px;
  border-bottom: 1px solid #A70000;
}
@media screen and (max-width: 1024px) {
  .recruit-th {
    width: 100%;
    display: block;
    text-align: left;
    border-bottom: unset;
    padding: 17px 0 5px 30px;
    font-size: 12px;
  }
}

.recruit-td {
  padding: 18px 24px 25px;
  color: #1C1C1C;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.21;
  border-bottom: 1px solid #DCDCDC;
  font-weight: 400;
  vertical-align: middle;
}
@media screen and (max-width: 1024px) {
  .recruit-td {
    width: 100%;
    display: block;
    padding: 0 30px 20px 30px;
    border-bottom: 0;
    position: relative;
    font-size: 12px;
    line-height: 1.41;
  }
  .recruit-td::before {
    position: absolute;
    content: "";
    width: 36.8%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: #A70000;
  }
  .recruit-td::after {
    position: absolute;
    content: "";
    width: 63.2%;
    height: 1px;
    bottom: 0;
    right: 0;
    background-color: #DCDCDC;
  }
}

.recruit-smallTxt {
  font-size: 10px;
}

.contactLink {
  color: #A70000;
  text-decoration: underline;
}

/*------------------------
PARTNER
-------------------------*/
.partner {
  padding: 80px 0 55px;
  background-image: url(../../assets/images/pertner.webp);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .partner {
    padding: 57px 0 70px;
    background-image: url(../../assets/images/pertner_sp.webp);
  }
}

.partner-inner {
  width: 750px;
}
@media screen and (max-width: 768px) {
  .partner-inner {
    width: 86.6666%;
    margin: 0 auto;
  }
}

.partner-head {
  color: #00022B;
  padding: 10px 30px;
  line-height: 1;
  font-size: 25px;
  margin: 35px auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  letter-spacing: 0.05em;
  background-color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .partner-head {
    width: 100%;
    font-size: 18px;
    line-height: 1.388;
    padding: 5px 20px;
    text-align: center;
    margin: 38px auto 27px;
  }
}

.partner-txt {
  letter-spacing: 0.05em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .partner-txt {
    line-height: 2.08;
  }
}

.partner-merit {
  font-size: 30px;
  letter-spacing: 0;
  width: 260px;
  position: relative;
  padding: 0 21px;
  margin: 50px auto 25px;
}
@media screen and (max-width: 768px) {
  .partner-merit {
    font-size: 18px;
    width: 160px;
    padding: 0 12px;
    margin: 35px auto 37px;
    text-align: center;
  }
}
.partner-merit::before {
  content: "";
  position: absolute;
  width: min(23.96vw, 236px);
  height: 1px;
  background-color: #A70000;
  left: 0;
  top: 50%;
  transform: translate(-100%, -50%);
}
.partner-merit::after {
  content: "";
  position: absolute;
  width: min(23.96vw, 236px);
  height: 1px;
  background-color: #A70000;
  right: 0;
  top: 50%;
  transform: translate(100%, -50%);
}

.meritList {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .meritList {
    display: block;
  }
}
.meritList .meritList__item {
  width: calc(33% - 14.66px);
  padding: 30px 10px;
  background-color: rgba(255, 255, 255, 0.55);
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .meritList .meritList__item {
    width: 77.53%;
    margin: 0 auto;
  }
}
.meritList .meritList__item:not(:last-of-type) {
  margin-right: 22px;
}
@media screen and (max-width: 768px) {
  .meritList .meritList__item:not(:last-of-type) {
    margin: 0 auto 22px;
  }
}
@media screen and (max-width: 768px) {
  .meritList .meritList__item {
    padding: 30px 10px 30px 35px;
  }
}

.meritNum {
  color: #A70000;
  font-family: "josefin", sans-serif;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .meritNum {
    font-size: 13px;
    text-align: left;
  }
}

.meritContent {
  font-size: 25px;
  text-align: center;
  line-height: 1.2;
  color: #00022B;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .meritContent {
    font-size: 18px;
    text-align: left;
  }
}

.patner-contactTxt {
  text-align: center;
  font-size: 25px;
  letter-spacing: 0;
  margin-top: 46.6px;
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .patner-contactTxt {
    font-size: 12px;
    line-height: 2;
    margin-top: 40px;
  }
}

/*------------------------
COMPANY
-------------------------*/
.company {
  padding-top: 147px;
}

@media screen and (max-width: 1024px) {
  .company .bl-flex {
    display: block;
  }
}
.bl-largeTitle__company {
  padding-bottom: 35px;
}

.company-table {
  width: 690px;
  margin: 42.8px 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .company-table {
    width: 82.1%;
    margin: 50px auto 64px;
  }
}

.company-tr {
  border-bottom: 1px solid #FFFFFF;
}

.company-th {
  padding: 20px 38px;
  font-size: 17px;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .company-th {
    width: 100%;
    display: block;
    font-size: 12px;
    padding: 17.5px 15px 0;
  }
}

.company-td {
  padding: 20px 70px;
  font-size: 17px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .company-td {
    width: 100%;
    display: block;
    font-size: 12px;
    padding: 5px 5px 17.5px 15px;
  }
}

/*------------------------
ACCESS
-------------------------*/
.access {
  padding-top: 156px;
}
@media screen and (max-width: 1024px) {
  .access {
    padding-top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .access .bl-flex {
    flex-direction: column-reverse;
  }
  .access .oneSide-margin {
    width: 86.66%;
    margin: 0 auto;
  }
}
.access-left {
  width: 380px;
  margin-right: 70px;
}
@media screen and (max-width: 1024px) {
  .access-left {
    width: 100%;
    margin-top: 115px;
    margin-right: 0;
  }
}

.bl-largeTitle__access {
  padding-bottom: 35px;
}

.access-companyName {
  margin-top: 53px;
  font-size: 25px;
  letter-spacing: 0.05em;
  line-height: 1.76;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .access-companyName {
    font-size: 18px;
    margin-top: 26px;
  }
}

.acccess-address {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 1.76;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .acccess-address {
    font-size: 12px;
  }
}

.access-img {
  width: calc(100% - 450px);
}
@media screen and (max-width: 1024px) {
  .access-img {
    width: 93.333vw;
    margin-right: -6.667vw;
  }
}

.accessmap {
  width: 100%;
  aspect-ratio: 1/0.3125;
  margin-top: 78px;
}
@media screen and (max-width: 1024px) {
  .accessmap {
    margin-top: 33.9px;
  }
}

/*---------------------------
CONTACT
---------------------------*/
.contact {
  padding: 111px 0 75px;
  width: 100%;
  background-image: url(../../assets/images/pale-color-bg.webp);
  background-repeat: repeat-y;
  background-size: auto;
}
@media screen and (max-width: 768px) {
  .contact {
    padding: 100px 0 55px;
  }
}
.contact .bl-largeTitle__smallEn .textCenter {
  padding-right: 0;
  margin-bottom: 5px;
}

.contact-txt {
  margin-top: 20px;
  letter-spacing: 0.05em;
  padding-bottom: 55px;
  position: relative;
  z-index: 9;
}

.contactForm {
  margin: 0 auto;
  width: 75.43%;
  background-color: #F0F0F0;
  padding: 65px 55px 60px 25px;
  font-weight: 400;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 86.666%;
    padding: 70px 35px 30px;
  }
}

.formDl {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 24px;
}
@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: 270px;
  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: 16px;
  font-weight: 400;
  color: #1C1C1C;
  text-align: right;
  font-size: 14px;
}
@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: #A70000;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .formRequired {
    padding: 3px 10px;
  }
}

.noRequired {
  width: 43px;
}

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

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

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: 5px;
}
@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: #A70000;
  content: "";
}
@media screen and (max-width: 768px) {
  input[type=radio]:checked:before {
    width: 5px;
    height: 5px;
  }
}

.radioBtn {
  margin-right: 15px;
  color: #1C1C1C;
}
.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;
  border-radius: 5px;
  color: #1C1C1C;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5.3px 18px;
    font-size: 11px;
    border-radius: 0;
  }
}

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

::-moz-placeholder {
  color: #A3AFAC;
  font-weight: 400;
  letter-spacing: 0.05em;
}

::placeholder {
  color: #A3AFAC;
  font-weight: 400;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 11px;
  }
  ::placeholder {
    font-size: 11px;
  }
}

input[type=text].postCode {
  width: 167px;
  margin-right: 18px;
}
@media screen and (max-width: 768px) {
  input[type=text].postCode {
    margin-right: 10px;
    width: 42.43%;
  }
}

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

.prefectures,
.kind {
  padding: 13px 30px;
  background-color: #FFFFFF;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  .prefectures,
.kind {
    padding: 5.3px 18px;
    font-size: 11px;
    border-radius: 0;
  }
}

.kind {
  width: 291px;
}
@media screen and (max-width: 768px) {
  .kind {
    width: 75%;
  }
}

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

.selectbox__noselect::after {
  display: none;
}

.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;
}
@media screen and (max-width: 768px) {
  .formDl--addressWrap .selectbox {
    width: calc(57.57% - 10px);
  }
}

input[type=file] {
  color: #1C1C1C;
}
@media screen and (max-width: 768px) {
  input[type=file] {
    font-size: 10px;
  }
}

.fileTxt {
  margin-top: 11px;
  font-size: 12px;
  color: #1C1C1C;
}
@media screen and (max-width: 768px) {
  .fileTxt {
    font-size: 10px;
  }
}

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

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

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

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

@media screen and (max-width: 1024px) {
  .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;
  border-radius: 50px;
}
@media screen and (max-width: 768px) {
  .submit {
    border-radius: 0;
  }
}
.submit::after {
  content: "";
  position: absolute;
  width: 0;
  height: 100%;
  border-radius: 50px;
  background-color: #AB9B65;
  top: 0;
  right: 0;
  transition: all 0.5s;
  pointer-events: none;
}
.submit::before {
  content: "確認して送信";
  color: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50px;
  font-size: 20px;
  opacity: 0;
  transform: translateY(-50%);
  transition: all 0.5s;
  z-index: 9;
  pointer-events: none;
}

.submitBtn {
  width: 195px;
  padding: 11.5px 0;
  text-align: center;
  font-size: 18px;
  color: #FFFFFF;
  background-color: #A70000;
  border-radius: 50px;
  line-height: 1;
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .submitBtn {
    font-size: 11px;
    width: 89px;
    padding: 10px 0;
    border-radius: 0;
  }
}

.policy-bx {
  width: 64%;
  margin: 45px auto 0;
  background-color: #FFFFFF;
  border: 1px solid #C7C7C7;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.16);
  height: 119px;
  overflow-y: scroll;
  padding: 15.5px 59px 15.5px 35px;
  color: #1C1C1C;
}
@media screen and (max-width: 768px) {
  .policy-bx {
    display: none;
  }
}

.policy-ttl {
  font-size: 14px;
  margin-bottom: 8px;
  line-height: 1.4;
  font-weight: 400;
}

.policy-txt {
  font-size: 12px;
  letter-spacing: -0.05em;
  line-height: 1.25;
  font-weight: 400;
}

select {
  color: #A3AFAC;
}

option {
  color: #1C1C1C;
}

@media screen and (max-width: 1024px) {
  .to-policyPage {
    color: #0069D1;
    text-decoration: underline;
  }
}
.bl-largeTitle__thanks {
  padding: 200px 0 100px;
}

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

.thanks-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 0;
  padding-bottom: 100px;
}
.thanks-btn a {
  display: block;
  padding: 10px 50px;
  text-align: center;
  background-color: #A70000;
  border-radius: 80px;
  transition: all 0.3s;
}
.thanks-btn a:hover {
  background-color: #B1B1B1;
  transition: all 0.3s;
}

.policy {
  padding: 200px 0 100px;
}
@media screen and (max-width: 1024px) {
  .policy {
    padding: 200px 0 50px;
  }
}

.bl-mediumTitle__policy {
  padding-bottom: 30px;
}

.policy-inner {
  width: 85%;
  margin: 80px auto;
}
@media screen and (max-width: 1024px) {
  .policy-inner {
    width: 100%;
    margin: 45px auto 0;
  }
}

.pagePolicy-txt {
  padding: 50px 30px;
  background-color: #FFFFFF;
  color: #00022B;
}
@media screen and (max-width: 1024px) {
  .pagePolicy-txt {
    padding: 35px 12px;
  }
}

/*---------------------------
ABOUTページ
---------------------------*/
/*# sourceMappingURL=style.css.map */