@charset "UTF-8";
/*----------------
フォント読み込み 
----------------*/
@font-face {
  src: url("../../assets/fonts/Marcellus-Regular.ttf") format("truetype");
  font-family: "Marcellus", serif;
  font-weight: 400;
  font-style: normal;
}
@font-face {
  src: url("../../assets/fonts/ZenOldMincho-Bold.ttf") format("truetype");
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: normal;
}
@font-face {
  src: url("../../assets/fonts/ZenOldMincho-SemiBold.ttf") format("truetype");
  font-family: "Zen Old Mincho", serif;
  font-weight: 600;
  font-style: normal;
}
@font-face {
  src: url("../../assets/fonts/ZenOldMincho-Medium.ttf") format("truetype");
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: normal;
}
@font-face {
  src: url("../../assets/fonts/ZenOldMincho-Regular.ttf") format("truetype");
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@import url('https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap');

/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

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

body {
  font-size: max(0.93vw , 14px);
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  color: #fff;
  line-height: 1.56;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background-color: #334373;
}

body.pageUnder{
  background-color: #fff;
}

.inner {
  margin: 0 auto;
  width: 84.37%;
}

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

.bg-gradient {
  background-image: linear-gradient(90deg, rgb(230, 228, 217), rgb(255, 255, 255) 54%, rgb(219, 215, 201));
}

.textCenter {
  text-align: center;
}

.en,
.num {
  font-family: "Marcellus", serif;
  font-style: normal;
}

.only-pc {
  display: block;
}

.pc-tab1280 {
  display: block;
}

.pc-tab1024 {
  display: block;
}

.tab1280 {
  display: none;
}

.tab1280-tab1024 {
  display: none;
}

.tab1280-sp {
  display: none;
}

.tab1024 {
  display: none;
}

.tab1024-sp {
  display: none;
}

.only-sp {
  display: none;
}

@media screen and (max-width: 1280px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: block;
  }
  .pc-tab1024 {
    display: block;
  }
  .tab1280 {
    display: block;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: none;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 89.333%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1024px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: block;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: block;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: block;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: none;
  }
  .inner {
    width: 86.66%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .only-pc {
    display: none;
  }
  .pc-tab1280 {
    display: none;
  }
  .pc-tab1024 {
    display: none;
  }
  .only-tab1280 {
    display: none;
  }
  .tab1280-tab1024 {
    display: none;
  }
  .tab1280-sp {
    display: block;
  }
  .only-tab1024 {
    display: none;
  }
  .tab1024-sp {
    display: block;
  }
  .only-sp {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
  .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;
}


.under500 {
  display: none;
}

.upper500 {
  display: block;
}

@media screen and (max-width: 499.9px) {
  .under500 {
    display: block;
  }
  .upper500 {
    display: none;
  }
}
.l-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

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

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

.bl-btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.bl-btn a {
  font-size: max(1.04vw , 14px);
  font-weight: 700;
  line-height: 1;
  display: block;
  padding: 15px 26.5px;
  background-color: #BEA371;
  border-radius: 50px;
  transition: all 0.5s;
  color: #fff;
    border: 1px solid #BEA371;
}

@media screen and (min-width: 1023.9px) {
  .bl-btn a:hover {
    background-color: #070707;
    border: 1px solid #070707;
    transition: all 0.5s;
    color: #FFFFFF;
  }
}

.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;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 33px;
}
.bl-ttl--column {
  flex-direction: column;
  gap: 20px;
}
.bl-ttl--center {
  margin: 0 auto;
}

.bl-ttl__en {
  font-size: 45px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-style: normal;
  color: #BEA371;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1;
}

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

.bl-ttl__ja {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  color: #fff;
  top: 50%;
  font-size: 16px;
  line-height: 1;
  font-weight: 700;
}

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

.bl-ttl__ja--left {
  left: 27px;
  transform: translateY(-50%);
}

.bl-subTtl {
  font-size: 41px;
  margin-top: -76px;
  position: relative;
  letter-spacing: 0;
}

@media screen and (max-width: 1024px) {
  .bl-ttl {
  display: block;
  margin: 0 auto;
  width: max-content;
}

.bl-ttl__en {
  font-size: 30px;
  text-align: center;
}

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

.bl-ttl__ja {
  font-size: 13px;
  margin: 8px auto;
  text-align: center;
}

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

/*---------------------------
ヘッダー
---------------------------*/
.head {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #FFFFFF;
  width: 100%;
  height: 79px;
  padding: 0 31px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transform: translateY(-100%);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}

.head--under{
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  background-color: #FFFFFF;
  width: 100%;
  height: 79px;
  padding: 0 31px 0 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.5s;
}
@media screen and (max-width: 768px) {
  .head {
    height: 50px;
  }

  .head--under{
      height: 50px;
  }
}
.head.is-appear {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
  transition: all 0.5s;
}
.head.fixed {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.head__logo {
  width: 15.69%;
  height: auto;
}
.head__logo img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: 30%;
    max-width: 200px;
    position: absolute;
    z-index: 9999;
  }
}
@media screen and (max-width: 768px) {
  .head__logo {
    max-width: 160px;
  }
}

.headNav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.headNav-list .headNav-list__item:not(:last-of-type) {
  margin-right: 30px;
}

@media screen and (min-width: 1800px) {

.headNav-list .headNav-list__item:not(:last-of-type) {
  margin-right: 47px;
}

}

@media screen and (max-width: 1280px) {
  .headNav-list .headNav-list__item:not(:last-of-type) {
    margin-right: 15px;
  }

}

.headNav-list .headNav-list__item:not(:last-of-type) a {
  line-height: 79px;
  position: relative;
  display: block;
  padding: 0 5px;
}
.headNav-list .headNav-list__item:not(:last-of-type) a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 6px;
  background-color: #BEA371;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.5s;
  bottom: 0;
  left: 0;
}
@media screen and (min-width: 1023.9px) {
  .headNav-list .headNav-list__item:not(:last-of-type) a:hover::after {
    transform: scale(1, 1);
    transition: all 0.5s;
  }
}
.headNav-list .headNav-list__item a {
  font-size: max(0.88vw , 13px);
  font-weight: 700;
  color: #070707;
}


.headNav-list .headNav-list__item a.head__contact {
  line-height: 1;
  display: block;
  padding: 10px 26.5px;
  border: 1px solid #BEA371;
  border-radius: 50px;
  transition: all 0.5s;
}
@media screen and (min-width: 1023.9px) {
  .headNav-list .headNav-list__item a.head__contact:hover {
    background-color: #070707;
    border: 1px solid #070707;
    transition: all 0.5s;
    color: #FFFFFF;
  }
}

/*----- ハンバーガーメニュー -----*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(90deg, rgb(230, 228, 217), rgb(255, 255, 255) 54%, rgb(219, 215, 201));
  transition: all 0.3s;
  pointer-events: none;
}

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

#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#g-nav .burgerNav-list {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

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

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

#g-nav .burgerNav-list__item a {
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
  margin: 0 auto;
  font-size: 16px;
  color: #070707;
}

/*========= ボタンのためのCSS ===============*/
.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 14px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .openbtn1 {
    top: 0px;
    right: 10px;
  }
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 2px;
  background-color: #070707;
  width: 60%;
}

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

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

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

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 50%;
}

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

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 50%;
}

.burgerNav-list__item--contact {
  margin-top: 20px;
  line-height: 1;
  display: block;
  padding: 10px 26.5px;
  border: 1px solid #BEA371;
  border-radius: 50px;
  transition: all 0.5s;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.11);
}

/*---------------------------
フッター
---------------------------*/
.foot {
  padding: 90px 0 16px;
  position: relative;
  overflow: hidden;
  background-color: #334373;
}

.foot__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 1024px) {
.foot__main {
  flex-direction: column;
  justify-content: center;
  gap: 30px;
}
}
.foot__side-l{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 1024px) {
.foot__side-l{
  justify-content: center;
}
}


.foot__logo {
  width: 167px;
  height: 167px;
  margin-right: 15px;
}
@media screen and (max-width: 1024px) {
  .foot__logo {
    width: 20%;
    height: auto;
  }
}

@media screen and (max-width: 768px) {
  .foot__logo {
    height: auto;
  margin-right: 0;
  }
.foot__side-l{
  justify-content: space-between;
}
}

.foot__txt {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
  z-index: 1;
}

.foot__companyName {
  font-size: 26px;
  line-height: 1;
  margin-bottom: 17px;
}
@media screen and (max-width: 768px) {
  .foot__companyName {
    font-size: 20px;
  }
}


.foot__side-r{
  width: 40%;
  height: auto;
  min-width: 160px;
}


.banner-wrap{
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}


.banner-wrap a{
  display: block;
  width: calc(50% - 10px);
}
.banner-wrap a:first-of-type{
  width: calc(45% - 10px);
}
/*
@media screen and (max-width: 1280px) {

  .foot__side-r{
    width: 30%;
  }
}
  */


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

  .foot__side-r{
        width: 100%;
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
        margin-top: 30px;
  }
.banner-wrap{
  gap: 10px;
}


.banner-wrap a{
  width: calc(50% - 5px);
}
}
.foot__side-r img{
  width: 100%;
  height: auto;
  object-fit: cover;
}

.foot__bottom {
  margin-top: 51px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: calc(8% - 45px);
}

@media screen and (max-width: 768px) {
  .foot__bottom {
    margin-top: 10px;
  }
}

.footLink {
  margin-right: 40px;
}
.footLink a {
  font-size: 12px;
  letter-spacing: 0;
  line-height: 30px;
}

.copy {
  font-size: 12px;
  letter-spacing: 0;
  margin-right: 45px;
}

.foot__decoTxt {
  position: absolute;
  font-size: 19.47vw;
  bottom: 0px;
  left: 50%;
  transform: translate(-50%, 32%);
  font-family: "Marcellus", serif;
  font-style: normal;
  color: rgba(255,255,255,.15);
  text-transform: uppercase;
  opacity: 0.22;
  letter-spacing: 0;
  z-index: 999999;
  white-space: nowrap;
  z-index: 0;
  pointer-events: none;
}
@media screen and (max-width: 1024px) {
  .foot__decoTxt {
    font-size: 21vw;
  }
}

/*---------------------------
ページ共通
---------------------------*/
.linkAdjust{
  padding-top: 80px;
  margin-top: -80px;
}
.linkAdjust--track-record{
  padding-top:20px;
  margin-top: -20px;
}
.breadcrumb {
  padding: 100px 40px 0;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    padding: 80px 20px 0;
  }.linkAdjust{
  padding-top: 50px;
  margin-top: -50px;
}
}
.breadcrumb .breadcrumb__item {
  position: relative;
}
.breadcrumb .breadcrumb__item:not(:last-of-type) {
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .breadcrumb .breadcrumb__item:not(:last-of-type) {
    margin-right: 20px;
  }
}
.breadcrumb .breadcrumb__item:not(:last-of-type)::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border-right: 1px solid #070707;
  border-bottom: 1px solid #070707;
  top: 57%;
  right: -17px;
  transform: translate(0, -50%) rotate(-45deg);
}
@media screen and (max-width: 1024px) {
  .breadcrumb .breadcrumb__item:not(:last-of-type)::after {
    right: -10px;
  }
}
.breadcrumb .breadcrumb__item a {
  font-size: 13px;
  color: #070707;
}
.breadcrumb .breadcrumb__item.current {
  font-size: 13px;
  color: #918D8D;
}

.under-section {
  background-color: #FFFFFF;
  padding: 75px 0 150px;
}
@media screen and (max-width: 1024px) {
  .under-section {
    padding: 75px 0 80px;
  }
}



.overviewTxt{
  font-size: max(1.82vw , 26px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.3;
}

.normalDocs{
  letter-spacing: 0;
  line-height: 1.94;
}

/*---------------------------
TOPページ
---------------------------*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 999;
}

#splash-txt {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.08);
  -webkit-animation-name: loadingAnime;
          animation-name: loadingAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  opacity: 0;
}

@-webkit-keyframes loadingAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

@keyframes loadingAnime {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.splash-txt__wrap {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.splash-txt__en {
  color: #FFFFFF;
  font-size: 45px;
  text-transform: uppercase;
  font-weight: 500;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 768px) {
  .splash-txt__en {
    font-size: 35px;
    line-height: 1.3;
  }
}

.splash-txt__ja {
  color: #FFFFFF;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .splash-txt__ja {
    font-size: 18px;
  }
}

/*---------------------------
fv
----------------------------*/
.fv {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.fv::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .fv {
    height: 100vh;
  }
}

.lottieWrap {
  position: fixed;
  bottom: 0px;
  right: -30px;
  z-index: 99;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .lottieWrap {
    right: -35px;
  }
}

.scroll-prompt {
  font-size: 13px;
  line-height: 1;
  letter-spacing: 0;
  writing-mode: vertical-lr;
  color: #FFFFFF;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
  text-transform: uppercase;
  font-weight: 700;
  position: relative;
  right: -40px;
  top: 10px;
}
@media screen and (max-width: 1024px) {
  .scroll-prompt {
    font-size: 12px;
  }
}

#lottie {
  width: 110px;
  height: 110px;
}
@media screen and (max-width: 768px) {
  #lottie {
    width: 90px;
    height: 90px;
  }
}

.fv-logo {
  width: 10.7%;
  position: absolute;
  top: 29px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .fv-logo {
    width: 25%;
    max-width: 100px;
  }
}

.fv-txt {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9;
}

.fv-txt__wrap {
  position: absolute;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  height: -webkit-max-content;
  height: -moz-max-content;
  height: max-content;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.fv-txt__en {
  color: #FFFFFF;
  font-size: 45px;
  font-weight: 500;
  text-transform: uppercase;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
}
@media screen and (max-width: 768px) {
  .fv-txt__en {
    font-size: 35px;
    line-height: 1.3;
  }
}

.fv-txt__ja {
  color: #FFFFFF;
  text-shadow: 0 3px 6px rgba(0, 0, 0, 0.85);
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .fv-txt__ja {
    font-size: 18px;
  }
}

.fv-slideWrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-slideWrap {
    flex-direction: column;
    display: block;
  }
}

.slider01,
.slider02 {
  width: 50%;
  height: 100vh;
  visibility: visible;
}
@media screen and (max-width: 1024px) {
  .slider01,
.slider02 {
    width: 100%;
    height: 50vh;
    overflow: hidden;
  }
}

.slider01 img {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 1024px) {
  .slider01 img {
    width: 100%;
    height: 50vh !important;
  }
}
.slider01 .slick-slide {
  transform: rotateX(180deg);
}
@media screen and (max-width: 1024px) {
  .slider01 .slick-slide {
    transform: unset;
  }
}
.slider01 .slick-list {
  transform: rotateX(180deg);
}
@media screen and (max-width: 1024px) {
  .slider01 .slick-list {
    transform: unset;
  }
}

.slick-slide img {
  display: block;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 1024px) {
  .slick-slide img {
    height: 50vh !important;
  }
}

.slider02 img {
  width: 100%;
  height: 100vh !important;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 1024px) {
  .slider02 img {
    height: 50vh !important;
    -o-object-position: center;
       object-position: center;
  }
}
.slider02 .splide__list {
  display: flex;
  flex-direction: column-reverse;
  align-items: normal;
  justify-content: left;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1024px) {
  .slider02 .splide__list {
    height: 50vh !important;
  }
}

.splide__track {
  height: 100vh !important;
}
@media screen and (max-width: 1024px) {
  .splide__track {
    height: 50vh !important;
  }
}

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

.slider01 {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation-name: leftImagesAnime;
          animation-name: leftImagesAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  transform: translateY(-100%);
  height: 50vh !important;
}
@media screen and (max-width: 1024px) {
  .slider01 {
    transform: translate(-100%, 0);
  }
}

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

@keyframes leftImagesAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes leftImagesAnime {
    0% {
      transform: translate(-100%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  @keyframes leftImagesAnime {
    0% {
      transform: translate(-100%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
}
.slider02 {
  position: absolute;
  top: unset;
  bottom: 0;
  right: 0;
  -webkit-animation-name: rightImagesAnime;
          animation-name: rightImagesAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  transform: translateY(100%);
}
@media screen and (max-width: 1024px) {
  .slider02 {
    transform: translate(100%, 0);
  }
}

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

@keyframes rightImagesAnime {
  0% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes rightImagesAnime {
    0% {
      transform: translate(100%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
  @keyframes rightImagesAnime {
    0% {
      transform: translate(100%, 0);
    }
    100% {
      transform: translate(0, 0);
    }
  }
}
.slick-list {
  height: 100vh !important;
}
@media screen and (max-width: 1024px) {
  .slick-list {
    height: 50vh !important;
  }
}

.slick-track {
  height: 100vh !important;
}
@media screen and (max-width: 1024px) {
  .slick-track {
    height: 50vh !important;
  }
}

/*---------------------------
私たちについて
----------------------------*/
.about{
  margin: 200px 0 158px;
}
.inner--about{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row-reverse;
}


.about__side-r{
  width: 48%;
}

.about__img{
  width: 45%;
}

.overviewTxt--about{
  margin-top: 35px;
}

.normalDocs--about{
  margin-top: 55px;
}

.about-sign{
  margin-top: 25px;
}

.about-sign__companyName{
  font-size: max(1.04em , 15px);
  text-align: right;
  letter-spacing: 0;
}

.about-sign__name{
  letter-spacing: 0;
  font-size: max(1.3em , 18.5px);
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .about{
    margin: 100px 0 120px;
  }
  .inner--about{
    display: block;
  }
  .about__side-r{
    width: 100%;
  }

  .about__img{
    width: 100%;
    aspect-ratio: 1  / 0.5;
    margin-top: 35px;
  }

  .normalDocs--about{
    margin-top: 35px;
  }

}
@media screen and (max-width: 769px) {
  .overviewTxt--about{
    font-size: 20px;
    line-height: 1.5;
  }
}
/*---------------------------
事業紹介
----------------------------*/
.business{
  padding: 177px 0 200px;
  background-color: #E3E3E3;
}

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

.bl-ttl__ja--business{
  color: #181819;
}

.business__overview{
  width: 48.7%;
  letter-spacing: .05em;
  color: #181819;
}

@media screen and (max-width: 1024px) {
.business__upper{
  display: block;
}.business{
  padding: 60px 0;
}


.business__overview{
  width: 100%;
  margin-top: 35px;
}
}
.business__content{
  margin-top: 41px;
}

.business__list{
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 4.5%;
}

.business__item{
  width: 30%;
}

.business-img{
  width: 100%;
}

.business-ttl{
  margin-top: 23px;
  font-size: max(1.66vw , 24px);
  letter-spacing: 0;
  line-height: 1.46;
  color: #334373;
}


.normalDocs--business{
  color: #181819;
  margin-top: 23px;
  letter-spacing: .05em;
  line-height: 1.9;
}


@media screen and (max-width: 769px) {
  .business__list{
    flex-direction: column;
    gap: 50px;
  }
  .business__item{
    width: 100%;
  }
  .business-img{
    max-width: 450px;
    margin: 0 auto;
  }
  .business-ttl{
    max-width: 450px;
    margin: 25px auto 0;
    font-size: 20px;
  }


  .normalDocs--business{
    max-width: 450px;
    margin: 10px auto;
  }


}
/*---------------------------
メンバー紹介
----------------------------*/
.member{
  margin-top: 150px;
}

.member__list{
  margin-top: 85px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px 3.2%;
}

.member__item{
  width: 48.4%;
  background-color: #fff;
  padding-bottom: 47px;
  color: #181819;
  font-weight: 700;
}

.member-upper{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.member-img{
  width: 46.4%;
}

.member-info{
    width: max-content;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
}

.member-position{
  font-size: max(1.09vw , 15.5px);
  line-height: 1;
  letter-spacing: 0;

}

.member-name{
  font-size: max(2.08vw , 30px);
  letter-spacing: 0;
  line-height: 1;
  margin-top: 10px;
}

.member-name-en{
  font-size: max(1.09vw , 15.5px);
  line-height: 1;
  letter-spacing: 0;
  margin-top: 10px;
}

.member-overview{
  width: 85.8%;
  margin: 50px auto 0;
  font-size: max(1.56vw , 22.5px);
  letter-spacing: 0;
}

.member-comment{
  margin: 30px auto 0;
  width: 85.8%;
  font-size: max(0.83vw , 14px);
}

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

  .member{
    margin-top: 100px;
  }

  .member__list{
    margin-top: 50px;
    flex-direction: column;
    gap: 35px;
  }

  .member__item{
    width: 100%;
    padding-bottom: 30px;
  }

  .member-img{
    width: 50%;
  }

  .member-position{
    font-size: 13px;
    line-height: 1;
    letter-spacing: 0;

  }

  .member-name{
    font-size: 23px;
  }

  .member-name-en{
    font-size: 13px;
  }

  .member-overview{
    margin: 35px auto 0;
    font-size: 20px;
  }

  .member-comment{
    margin: 20px auto 0;
    font-size: 14px;
  }

}
/*---------------------------
取扱実績
----------------------------*/
.track-record{
  margin-top: 140px;
}

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


.track-record__content{
  width: 83.6%;
  padding: 75px 7.2%;
  background-color: #E3E3E3;
  color: #181819;
  margin-top: 88px;
}

.track-record-txt-wrap{
  width: 50.34%;
}

.overviewTxt--track-record{
  margin-top: 59px;
}

.normalDocs--track-record{
  margin-top: 58px;
}

.bl-ttl__ja--track-record{
  color: #181819;
}

.track-record__img{
  width: 50%;
  margin-left: -33.64%;
}


.bl-btn--track-record{
  margin-top: 58px;
}


@media screen and (max-width: 1280px) {
.track-record{
  margin-top: 150px;
}

.inner--track-record{
  display: block;
}

.track-record__content{
  width: 100%;
  margin-top: 0;
}

.track-record-txt-wrap{
  width: 100%;
}

.overviewTxt--track-record{
  margin-top: 59px;
  font-size: 20px;
  line-height: 1.5;
}

.normalDocs--track-record{
  margin-top: 58px;
}

.bl-ttl__ja--track-record{
  color: #181819;
}

.track-record__img{
  width: 100%;
  margin: 50px auto 0;
  aspect-ratio: 1 / 0.5;
}

}

@media screen and (max-width: 769px) {
.track-record{
  margin-top: 100px;
}

.track-record__content{
  padding: 50px 7.2%;
  margin-top: 30px;
}

.overviewTxt--track-record{
  margin-top: 35px;
}

.normalDocs--track-record{
  margin-top: 35px;
}

.bl-ttl__ja--track-record{
  color: #181819;
}

.track-record__img{
  margin: 35px auto 0;
  aspect-ratio: 1 / 0.5;
}

}
/*---------------------------
会社概要
----------------------------*/
.company {
  margin-top: 170px;
}
@media screen and (max-width: 1024px) {
  .company {
    margin-top: 100px;
  }
}

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

.pc-tab1280__companyImg {
  width: 45.7%;
}
@media screen and (max-width: 1024px) {
  .pc-tab1280__companyImg {
    width: 100%;
    max-width: 450px;
    margin: 0 auto;
  }
}

.companyImg {
  width: 100%;
  aspect-ratio: 1/1.22;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {

  .companyImg {
    margin: 50px auto 0;
    aspect-ratio: 1 / 0.5;
    overflow: hidden;
  }  
  .companyImg img {
    object-position: center;
  }
}
.companyImg img {
  transform: scale(1.2);
  transition: all 1.5s;
  transform-origin: center;
}
.companyImg img.size-down {
  transform: scale(1);
  transform-origin: center;
  transition: all 1.5s;
}

.companyTxt-wrap {
  width: 46.38%;
}
@media screen and (max-width: 1024px) {
  .companyTxt-wrap {
    width: 100%;
  }
}

.companyTable {
  margin-top: 80px;
  border-top: 1px solid #BEBCBC;
  display: block;
  width: 100%;
}
.companyTable tbody{
  display: block;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .companyTable {
    width: 100%;
    margin: 80px auto 0;
  }
}

.companyTable__row {
  border-bottom: 1px solid #BEBCBC;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
}

.companyTable__head {
  padding: 25px 0;
  display: block;
  width: max(30% , 170px);
  font-size: max(1.14vw , 16px);
}
@media screen and (max-width: 768px) {
  .companyTable__head {
    width: 140px;
    font-size: 14px;
  }
}

.companyTable__data {
  display: block;
  padding: 25px 13px;
  font-size: max(1.14vw , 16px);
  width: min(70% , calc(100% - 170px));
}
@media screen and (max-width: 1024px) {
  .companyTable__data {
    width: calc(100% - 140px);
    font-size: 14px;
    padding: 25px 5px;
  }
}

/*---------------------------
TOPお問い合わせ
----------------------------*/

.contact {
  padding: 120px 0 100px;
  background-color: #fff;
  color: #070707;
  margin-top: 150px;
}

@media screen and (max-width: 1024px) {
  .contact {
    padding: 80px 0;
  }
}
.bl-ttl__ja--contact{
  color: #070707;
  text-align: left;
  width: 100%;
}

.inner--contact{
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact__overview{
  width: 50%;
}

.contact-overviewContent{
  width: max-content;
  margin: 0 auto;
}

.normalDocs--contact{
  margin-top: 40px;
}

.contact__links{
  width: 50%;
}

.contact-linksContent{
  width: max-content;
  margin: 0 auto;
}

.contact-linksContent .contact-linkBlock:not(:first-of-type){
  margin-top: 45px;
}
.contact-methodName{
  font-size: max(1.09vw , 15px);
  text-align: center;
}

.bl-btn--contactMethod{
  width: max(21.6vw , 311px);
  margin: 15px auto 0;
} 

.bl-btn--contactMethod a{
  font-size:  max(1.4vw , 20px);
  color: #070707;
}

.bl-btn--contactMethod.bl-btn--contactForm a{
  padding: max(1.95vw , 28px) 0;
  background-color: #fff;
  border: 1px solid #BEA371;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.11);
  transition: all .5s;
}

.bl-btn--contactMethod.bl-btn--contactForm a:hover{
  background-color: #070707;
  color: #fff;
  border: 1px solid #070707;
  transition: all .5s;
}

.bl-btn--contactForm a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.9%;
}
.contact-methodName__icon{
  width: 8.58%;
}

.bl-btn--contactForm a .contact-methodName__txt{
  font-size:  max(1.14vw , 16px);
}



.bl-btn--contactMethod.bl-btn--tel a{
  padding: max(1.97vw , 28.5px) 0;
  background-color: #ECEDF0;
  color: #070707;
  text-align: center;
  transition: all .5s;
}

.bl-btn--contactMethod.bl-btn--tel a:hover{
  background-color: #070707;
  color: #fff;
  border: unset;
  transition: all .5s;
}

.contact-receptionHours{
  font-size: max(1.09vw , 15px);
  text-align: center;
}

.contact-receptionHours__holiday{
  display: block;
  text-align: center;
  font-size: max(0.88vw , 13px);
}


@media screen and (max-width: 1024px) {
  .inner--contact{
    flex-direction: column;
    gap: 80px;
  }
.bl-ttl__ja--contact{
  text-align: center;
}
  .contact__overview{
  width: 100%;
  text-align: center;
}
.contact-overviewContent{
  width: 100%;
  margin: 0 auto;
}

.normalDocs--contact{
  margin-top: 40px;
}

.contact__links{
  width: 100%;
}

.contact-linksContent{
  width: max-content;
  margin: 0 auto;
}

.contact-linksContent .contact-linkBlock:not(:first-of-type){
  margin-top: 45px;
}
.contact-methodName{
  font-size: max(1.09vw , 15px);
  text-align: center;
}

.bl-btn--contactMethod{
  width: max(21.6vw , 311px);
  margin: 15px auto 0;
} 

.bl-btn--contactMethod a{
  font-size:  max(1.4vw , 20px);
  color: #070707;
}

.bl-btn--contactMethod.bl-btn--contactForm a{
  padding: max(1.95vw , 28px) 0;
  background-color: #fff;
  border: 1px solid #BEA371;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.11);
  transition: all .5s;
}

.bl-btn--contactMethod.bl-btn--contactForm a:hover{
  background-color: #070707;
  color: #fff;
  border: 1px solid #070707;
  transition: all .5s;
}

.bl-btn--contactForm a{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5.9%;
}
.contact-methodName__icon{
  width: 8.58%;
}

.bl-btn--contactForm a .contact-methodName__txt{
  font-size:  max(1.14vw , 16px);
}



.bl-btn--contactMethod.bl-btn--tel a{
  padding: max(1.97vw , 28.5px) 0;
  background-color: #ECEDF0;
  color: #070707;
  text-align: center;
  transition: all .5s;
}

.bl-btn--contactMethod.bl-btn--tel a:hover{
  background-color: #070707;
  color: #fff;
  border: unset;
  transition: all .5s;
}

.contact-receptionHours{
  font-size: max(1.09vw , 15px);
  text-align: center;
}

.contact-receptionHours__holiday{
  display: block;
  text-align: center;
  font-size: max(0.88vw , 13px);
}


}
/*---------------------------
お問い合わせ
----------------------------*/

.contactBox{
  margin-top: 140px;
  margin-bottom: 145px;
}

.bl-ttl__ja--contactBox{
  color: #070707;
}
.contactForm {
  width: 636px;
  margin: 100px auto 0;
  position: relative;
  left: -60px;
}
@media screen and (max-width: 1024px) {
  .contactForm {
    width: 89.333%;
    left: 0;
    top: 0;
    margin: 80px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .contactForm {
    padding: 30px 0;
    margin-top: 30px;
    width: 100%;
  }
}

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

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

.formTtl {
  color: #070707;
  text-align: right;
}
@media screen and (max-width: 1024px) {
  .formTtl {
    text-align: left;
  }
}

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

input[type=text],
input[type=email],
textarea {
  padding: 10px 20px;
  background-color: #ECEDF0;
  color: #070707;
  width: 100%;
  border-radius: 5px;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    font-size: 14px;
  }
}

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

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

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

.privacy-wrap {
  font-size: 14px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 45px;
  color: #070707;
  position: relative;
  right: -110px;
}
@media screen and (max-width: 1024px) {
  .privacy-wrap {
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .privacy-wrap {
    font-size: 12px;
  }
}

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

.submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.submit .submitBtn {
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding: 10px 26.5px;
  border: 1px solid #BEA371;
  border-radius: 50px;
  transition: all 0.5s;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.11);
  position: relative;
  right: -100px;
  color: #070707;
}
@media screen and (min-width: 1023.9px) {
  .submit .submitBtn:hover {
    background-color: #070707;
    border: 1px solid #070707;
    transition: all 0.5s;
    color: #FFFFFF;
  }
}
@media screen and (max-width: 1024px) {
  .submit .submitBtn {
    right: 0;
  }
}

/*---------------------------
thanksページ
---------------------------*/
.thanksTxt {
  margin: 56px auto 53px;
  color: #070707;
  width: max-content;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .thanksTxt {
    margin: 50px auto 53px;
  }
}
.bl-btn--thanks {
  margin-left: auto;
  margin-right: auto;
}

.bl-btn--thanks a{
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  display: block;
  padding: 10px 26.5px;
  background-color: #fff;
  border: 1px solid #BEA371;
  border-radius: 50px;
  transition: all 0.5s;
  box-shadow: 0 3px 2px rgba(0, 0, 0, 0.11);
  color: #070707;
  transition: all 0.5s;
}

.bl-btn--thanks a:hover{
  background-color: #070707;
  border: 1px solid #707070;
  color: #FFF;
}
/*---------------------------
プライバシーポリシーページ
---------------------------*/
.policyTxt {
  font-size: 12px;
  line-height: 1.66;
  width: 63.47%;
  margin: 50px auto;
  color: #070707;
}
@media screen and (max-width: 1024px) {
  .policyTxt {
    width: 89.33%;
  }
}

@media screen and (max-width: 768px) {
  .bl-ttl__en--policy {
    font-size: 32px;
  }
}
/*# sourceMappingURL=style.css.map */

.access{
  margin-top: 173px;
  position: relative;
  padding: 125px 3.38%;
}

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

.access-bg::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,.75);
}

.access-wrap{
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6.1%;
}

.access__side-l{
  min-width: 472px;
  width: 39%;
}

.accessTable{
  margin-top: 66px;
  width: 100%;
  display: block;
}

.accessTable__body{
  width: 100%;
  display: block;
  border-top: 1px solid #fff;
}


.accessTable__row{
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  width: 100%;
  border-bottom: 1px solid #fff;
}

.accessTable__head{
  width: 42.22%;
  padding: 15px 0;
  font-size: max(1.14vw , 16.5px);
}

.accessTable__data{
  width: 57.78%;
  padding: 15px 15px 15px 22px;
  font-size: max(1.14vw , 16.5px);
}

.googleMap-link{
  margin: 15px 0 0 auto;
  width: 20%;
}

.access__side-r{
  width: 54.9%;
  max-width: calc(93.9% - 472px);
  aspect-ratio: 1 / 0.61;
}


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

.access-wrap{
  display: block;
}

.access__side-l{
  min-width: unset;
  width: 100%;
}

.access__side-r{
  margin-top: 50px;
  width: 100%;
  max-width: unset;
  aspect-ratio: 1 / 0.5;
}

}

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

.access{
  margin-top: 100px;
  padding: 50px 3.33%;
}

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

.accessTable{
  margin-top: 20px;
}
.accessTable__head{
  font-size: 13px;
}

.accessTable__data{
  font-size: 13px;
}

.googleMap-link{
  width: 30%;
  max-width: 120px;
}
}

.inner--track-record--media{
  flex-direction: row-reverse;
}
.track-record__content--media{
  margin-left: auto;
  margin-right: 0;
  margin-top: 3vw;
}

@media screen and (max-width: 1280px) {
  .track-record__content--media{
    margin-top: 0;
  }
}
.track-record-txt-wrap--media{
  margin-left: auto;
  margin-right: 0;
}

.track-record__img--media{
  width: 50%;
  margin-left: unset;
  margin-right: -33.64%;
  position: relative;
}




.selectbox{
    position: relative;
    display: block;
}


.selectbox::after{
    content: '';
    position: absolute;
    top: calc(50% + 3px);
    right: 17.5px;
    pointer-events: none;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 16px solid #334373;
    border-bottom: 0;
}

.prefectures{
    padding: 10px 20px;
    background-color: #ECEDF0;
    color: #070707;
    width: 100%;
    border-radius: 5px;
}


.reservation-date{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #070707;
  gap: 25px;
}

.reservation-date__block{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
}

.reservation-date__block--year{
  width: 145px;
}

.reservation-date__block--month{
  width: 90px;
}

.reservation-date__block--date{
  width: 90px;
}


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

.reservation-date{
  gap: 5px;
}

.reservation-date__block--year{
  width: 110px;
}

.reservation-date__block--month{
  width: 80px;
}

.reservation-date__block--date{
  width: 80px;
}


}

#pdfButtonArea{
  width: max-content;
  margin-left: auto;
  margin-right: 0;
}
.reservation-txt{
  color: #070707;
  margin-top: 40px;
  text-align: center;
}

#pdfButton{
  color: #070707;
  margin: -10px 0 25px auto;
  display: block;
  border-bottom: 1px solid #070707;
}

#vrLink{
    color: #070707;
    margin: -20px 0 25px auto;
    border-bottom: 1px solid #070707;
    width: max-content;
    position: relative;
    top: -15px;
}
.select-building {
    padding: 10px 20px;
    background-color: #ECEDF0;
    color: #070707;
    width: 100%;
    border-radius: 5px;
}

::placeholder{
    color: #A3AFAC;
}

input[type=text].postCode{
    width: 165px;
    margin-right: 18px;
}

.prefectures{
    padding: 13px 30px;
    border-radius: 30px;
    width: 165px;
}

.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) {

  input[type=text].postCode{
        margin-right: 15px;
        width: 120px;
  }

  input[type=text].prefectures{
        width: 120px;
  }

}


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

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

@media screen and (max-width: 768px) {
  input[type="radio"] {
        width: 10px;
        height: 10px;
        margin-right: 5px;
    }
}

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

@media screen and (max-width: 768px) {
  input[type="radio"]:checked:before {
      width: 5px;
      height: 5px;
  }
}

.radioBtn{
    margin-right: 25px;
    color: #070707;
}

.radioBtn:last-of-type{
  margin-right: 0;
}


.downloadList{
  margin: 50px auto 0 200px;
  width: max-content;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

@media screen and (max-width: 1024px) {
  .downloadList{
    margin-left: 0;
    width: 100%;
  }
}

.download__item a{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.pdf-icon{
  width: 42px;
}
@media screen and (max-width: 768px) {
  .pdf-icon{
    width: 30px;
  }
  .download__item a{
    gap: 10px;
  }
}

.pdf-explainTxt{
  color: #002AD5;
  font-size: 14px;
}

@media screen and (max-width: 768px) {
.pdf-explainTxt{
    width: calc(100% - 40px);
  }
}
.downLoadBtn-on{
  display: none;
}
.download__item:not(:first-of-type){
  margin-top: 20px;
}

.select-building--time{
  margin-top: 20px;
  width: 200px;
}

.selectbox--time{
  width: 200px;
}
.selectbox--time::after{
  top: calc(50% + 10px);
}
