@charset "UTF-8";
/*-----------------
基本設定
------------------*/
html {
  scroll-behavior: smooth;
}

body{
  width: 100vw;
  height: auto;
  overflow-x: hidden;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body {
  font-size: 18px;
  font-family: YuMincho, "Hiragino Mincho ProN", serif;
  font-weight: 400;
  color: #171717;
  line-height: 1.94;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  background-color: #EFEFEF;
}

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

.oneSide-margin {
  width: min(89.58vw, 1440px + (100vw - 1440px) / 2);
}
@media screen and (max-width: 1024px) {
  .oneSide-margin {
    width: 100%;
  }
}

.oneSide-margin--side-l {
  margin: 0 auto 0 0;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--side-l {
    margin: 0 auto;
  }
}

.oneSide-margin--side-r {
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1024px) {
  .oneSide-margin--side-r {
    margin: 0 auto;
  }
}

.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;
  }
}
@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: 16px;
  }
  .inner {
    width: 89.333%;
  }
}
@media screen and (max-width: 1024px) {
  section {
    width: 100%;
    overflow: hidden;
  }
}
/*==================================
ふわっ
===================================*/
/* その場で */
.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-ttl {
  font-size: 35px;
  line-height: 1.71;
  position: relative;
}
@media screen and (max-width: 768px) {
  .bl-ttl {
    font-size: 28px;
    font-weight: 700;
  }
}

.bl-ttl__red {
  color: #A02525;
}

.bl-ttl__enImg {
  position: absolute;
  z-index: -1;
}

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

.head__logo {
  position: relative;
  top: 0;
  transform: translateY(-320%);
  width: 20%;
  padding-left: 4.8vw;
  max-width: 288px;
  -webkit-animation-name: headLogoAnime;
          animation-name: headLogoAnime;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  .head__logo {
    width: auto;
    height: 36px;
    padding-left: 5.33vw;
    -webkit-animation: unset;
            animation: unset;
    top: 50%;
    transform: translateY(-100%);
  }
  .head__logo img {
    width: auto;
  }
}

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

@keyframes headLogoAnime {
  0% {
    transform: translateY(-320%);
  }
  100% {
    transform: translateY(-80%);
  }
}
.head__nav {
  position: relative;
  top: 0;
  transform: translateY(-100%);
  -webkit-animation-name: headNavAnime;
          animation-name: headNavAnime;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

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

@keyframes headNavAnime {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
.headNav-list {
  padding-top: 83px;
  padding-right: 7.22vw;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.headNav-list .headNav-list__item:not(:last-of-type) {
  margin-right: 35px;
}
.headNav-list .headNav-list__item a {
  text-orientation: upright;
  writing-mode: vertical-rl;
  line-height: 1;
  position: relative;
}
.headNav-list .headNav-list__item a::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 62px;
  background-color: #A02525;
  top: -21px;
  left: 50%;
  transform: translate(-50%, -100%) scale(1, 0);
  transform-origin: top left;
  transition: all 0.5s;
}
.headNav-list .headNav-list__item a:hover::after {
  transform: translate(-50%, -100%) scale(1, 1);
  transition: all 0.5s;
}
.headNav-list .headNav-list__item a.current::after {
  transform: translate(-50%, -100%) scale(1, 1);
  transition: all 0.5s;
}

/*-------- 固定ヘッダー --------*/
.head--fixed {
  height: 72px;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  width: 100%;
  z-index: 99;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.5s;
}
.head--fixed.is-fixed {
  transform: translateY(0);
  opacity: 1;
  transition: all 0.5s;
}

.head__logo--fixed {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 13.6%;
  max-width: 170px;
}

.headNav-list--fixed {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.headNav-list--fixed .headNav-list__item--fixed {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 3.47vw;
  position: relative;
}
.headNav-list--fixed .headNav-list__item--fixed::after {
  position: absolute;
  content: "";
  width: 70px;
  height: 5px;
  background-color: #A02525;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scale(0, 1);
  transform-origin: left top;
  transition: all 0.5s;
}
.headNav-list--fixed .headNav-list__item--fixed.currentLocation::after {
  transform: translateX(-50%) scale(1, 1);
  transition: all 0.5s;
}
.headNav-list--fixed .headNav-list__item--fixed:hover::after {
  transform: translateX(-50%) scale(1, 1);
  transition: all 0.5s;
}
.headNav-list--fixed .headNav-list__item--fixed a {
  font-size: 16px;
  letter-spacing: 0;
  line-height: 72px;
}

/*------ ハンバーガーメニュー -----*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100vh;
  background: rgba(255, 255, 255, 0.95);
  transition: all 0.3s;
}

#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
  left: 0;
  transition: all 0.3s;
  padding-top: 97px;
  padding-bottom: 53px;
  overflow: scroll;
}

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

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

#g-nav.panelactive .burgerNav-list {
  display: block;
  padding-bottom: 34.5px;
  margin-bottom: 25.5px;
  position: relative;
}
#g-nav.panelactive .burgerNav-list::after {
  content: "";
  position: absolute;
  width: 109px;
  height: 2px;
  background-color: #A02525;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
#g-nav.panelactive .burgerNav-list .burgerNav-list__item:not(:last-child) {
  margin-bottom: 30px;
}

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

#g-nav .burgerNav-list__item a {
  text-decoration: none;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 17px;
  line-height: 1;
}

.openbtn1 {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 73px;
  height: 72px;
  background-color: #FFFFFF;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  transition: all 0.3s;
}

.openbtn1.active {
  background-color: unset;
  box-shadow: unset;
  right: 50%;
  transform: translateX(50%);
  transition: all 0.3s;
}

.openbtn1 span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 50%;
  height: 2px;
  background-color: #A02525;
  width: 30px;
  transform: translateX(-50%);
}

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

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

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

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

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

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

.burgerBottom__logo {
  width: 61.8%;
  margin: 0 auto;
  max-width: 250px;
}

.burgerBottom__address {
  text-align: center;
  font-size: 15px;
  letter-spacing: 0em;
  margin: 25px 0 20px;
  line-height: 1;
}

.burgerBottom__telNum {
  font-size: 15px;
  letter-spacing: 0em;
  line-height: 1;
  text-align: center;
}

/*---------------------------
TOPページ
---------------------------*/
/*------- ローディング --------*/
#splash {
  width: 100vw;
  height: 100vh;
  background-color: #EFEFEF;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
}

.splash_txt {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  -webkit-animation-name: splashTxtAnime;
          animation-name: splashTxtAnime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transition-property: transform;
}
@media screen and (max-width: 1024px) {
  .splash_txt {
    top: 30%;
  }
}
.splash_txt .splash_txt__block {
  line-height: 1;
  font-size: 2.63vw;
  padding: 10px 28px 10px 50px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .splash_txt .splash_txt__block {
    font-size: 5vw;
  }
}
.splash_txt .splash_txt__block:first-of-type {
  margin-bottom: 8px;
}

@-webkit-keyframes splashTxtAnime {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}

@keyframes splashTxtAnime {
  0% {
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    transform: translate(0, -50%);
    opacity: 1;
  }
}
.splash_txt__block {
  line-height: 1;
  font-size: 2.63vw;
  padding: 10px 28px 10px 50px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #FFFFFF;
}

#splash_logo {
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  max-height: 35%;
  /*
  height: calc((100vh - 285px) * 0.35);
  width: unset;
  position: absolute;*/
  bottom: 0;
  right: 0;
  -webkit-animation-name: splashLogoAnime;
          animation-name: splashLogoAnime;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  opacity: 0;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {

  #splash_logo {
    width: 71.6%;
    height: fit-content;
    max-height: unset;
    top: 72.44vh;
    transform: translateY(-100%);
  }
  #splash_logo img{
    aspect-ratio: 1 / 0.518;
    width: 100%;
    height: fit-content;
    object-fit: contain;
  }

}

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

@keyframes splashLogoAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*------- fv --------*/
.fv {
  width: 100vw;
  height: calc(100vh - 285px);
  position: relative;
  margin-top: 35px;
}
@media screen and (max-width: 1024px) {
  .fv {
    height: 72.44vh;
    margin-top: 0;
  }
}

.fv-img {
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-animation-name: fvImgAnime;
          animation-name: fvImgAnime;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  transform: translateY(100%);
  opacity: 0;
}
.fv-img img{
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-img {
    height: 78.38%;
  }
  .fv-img img{
    object-position:bottom;
  }
}

@-webkit-keyframes fvImgAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes fvImgAnime {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.fv-txt {
  position: absolute;
  left: 6.944vw;
  top: max(-11.11vh, -100px);
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: row-reverse;
  -webkit-animation-name: fvTxtAnime;
          animation-name: fvTxtAnime;
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
@media screen and (max-width: 1024px) {
  .fv-txt {
    top: -10%;
    letter-spacing: 8vw;
  }
}
.fv-txt .fv-txt__block {
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: min(4.11vh , 38px);
  line-height: 1;
  padding: 25px 20px 34px;
  background-color: #FFFFFF;
  font-feature-settings: initial;
}
@media screen and (max-width: 1024px) {
  .fv-txt .fv-txt__block {
    font-size: 2.7vh;
    padding: 15px 14px 24px;
    letter-spacing: 0.15em;
  }
}
.fv-txt .fv-txt__block:not(:last-of-type) {
  margin-left: 15px;
}

@-webkit-keyframes fvTxtAnime {
  0% {
    top: max(-16.66vh, -150px);
  }
  100% {
    top: max(-11.11vh, -100px);
  }
}

@keyframes fvTxtAnime {
  0% {
    top: max(-16.66vh, -150px);
  }
  100% {
    top: max(-11.11vh, -100px);
  }
}
@media screen and (max-width: 1024px) {
  @-webkit-keyframes fvTxtAnime {
    0% {
      top: -10%;
    }
    100% {
      top: 10.88vh;
    }
  }
  @keyframes fvTxtAnime {
    0% {
      top: -10%;
    }
    100% {
      top: 10.88vh;
    }
  }
}
.fv-txtImg {
  height: auto;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 85%;
  max-height: 35%;
}
.fv-txtImg img{
  aspect-ratio: 1 / 0.13;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fv-txtImg {
    width: 71.6%;
    height: unset;
    max-height: unset;
  }
  .fv-txtImg img{
    aspect-ratio: 1 / 0.518;
    width: 100%;
    object-fit: cover;
  }
}

.fv-contactLabel {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  padding: 22.5px 15px 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #A02525;
  top: 50%;
  right: 0;
  border-radius: 10px 0 0 10px;
  transform: translateY(-50%);
  z-index: 9;
}
@media screen and (max-width: 1024px) {
  .fv-contactLabel {
    top: 50svh;
    padding: 17px 7px 20px;
    opacity: 0;
    transition: all .6s;
    transform: translateY(-50%);
  }
  .fv-contactLabel.is-appear{
    opacity:1;
    transition: all .6s;
    
  }
}

.fv-contactIcon {
  width: 20px;
  height: 20px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .fv-contactIcon {
    width: 15px;
    height: 15px;
  }
}
.fv-contactIcon img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.fv-contactTxt {
  writing-mode: vertical-lr;
  margin-top: 10px;
  color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .fv-contactTxt {
    font-size: 15px;
  }
}

/*------- about --------*/
.about {
  padding-top: 176px;
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .about {
    padding-top: 75px;
  }
}

@media screen and (max-width: 1024px) {
  .bl-ttl--about {
    width: 89.333%;
    margin: 0 auto;
  }
}
.about-flexWrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .about-flexWrap {
    display: block;
  }
}

.about__side-l {
  width: 47.59%;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .about__side-l {
    width: 100%;
    margin-top: 32px;
  }
}

.about__side-r {
  width: 45.8%;
}
@media screen and (max-width: 1024px) {
  .about__side-r {
    width: 89.333%;
    margin: 0 auto;
  }
}

.bl-ttl__enImg--about {
  width: 148%;
  bottom: 36px;
  right: -25.3%;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--about {
    width: 82.56%;
    bottom: -40px;
    right: 0;
    z-index: 3;
  }
}

.pageTXt {
  margin-top: 42px;
}
@media screen and (max-width: 1024px) {
  .pageTXt {
    margin-top: 57px;
  }
}


/*------- message --------*/
.message{
  padding-top:189px;
}

.bl-ttl--message{
  width: fit-content;
  margin: 0 auto 100px;
}

.bl-ttl__enImg--message{
  width: 420%;
  left: 50%;
  transform: translate(-50% , 0);
  bottom: 19px;
}

.bl-ttl__enImg--message img{
  height: auto;
}

.message-wrap{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 3.2%;
}

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

.message__img{
  width: 29.5%;
}

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

.message__side-r{
  width: 61%;
}
@media screen and (max-width: 1024px) {
  .message__side-r{
    width: 100%;
    max-width: 450px;
    margin: 50px auto 0;
  }
}
.message__txt{
  font-size: 16px;
  letter-spacing: .1em;
  line-height: 1.77;
}
@media screen and (max-width: 1024px) {
  .message__txt{
    font-size: 16px;
  }
}
.message__sign{
  margin-top: 30px;
  font-size: 20px;
  letter-spacing: .1em;
  text-align: right;
}
@media screen and (max-width: 1024px) {

.message__sign{
  margin-top: 50px;
  font-size: 18px;
}
}
/*------- choose --------*/
.choose {
  padding-top: 241px;
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .choose {
    padding-top: 116px;
  }
}

.bl-ttl__enImg--choose {
  bottom: 0;
  width: 126.3%;
  left: -13.21%;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--choose {
    width: 94.66%;
    left: 0;
    top: 50%;
    bottom: unset;
    transform: translateY(-50%);
  }
}

.chooseList {
  margin-top: 80px;
  padding-left: 38px;
  padding-right: 38px;
}
@media screen and (max-width: 1024px) {
  .chooseList {
    margin-top: 79px;
    padding: 0;
  }
}
.chooseList .chooseList__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .chooseList .chooseList__item {
    display: block;
  }
}
.chooseList .chooseList__item:not(:last-of-type) {
  margin-bottom: 40px;
}
@media screen and (max-width: 1024px) {
  .chooseList .chooseList__item:not(:last-of-type) {
    margin-bottom: 50px;
  }
}
.chooseList .chooseList__item:nth-of-type(even) {
  flex-direction: row-reverse;
}
.chooseList .chooseList__item:nth-of-type(even) .choose__reasonTtl::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background-color: #171717;
  right: 8px;
  left: unset;
  bottom: -26px;
  transform: translateX(100%) rotate(35deg);
}
@media screen and (max-width: 1024px) {
  .chooseList .chooseList__item:nth-of-type(even) .choose__reasonTtl::after {
    display: none;
  }
}

.choose__img {
  width: 34.3%;
}
@media screen and (max-width: 1024px) {
  .choose__img {
    width: 105.7%;
    margin-right: -5.12%;
    margin-top: 21px;
  }
}

.choose__reasonTxt-wrap {
  width: calc(65.7% - 44.5px);
  padding-left: 25px;
}
@media screen and (max-width: 1024px) {
  .choose__reasonTxt-wrap {
    width: 100%;
    letter-spacing: 0;
    padding-left: 0;
  }
}

.choose__reasonTtl {
  font-size: 25px;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  letter-spacing: 0;
  padding-bottom: 13px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .choose__reasonTtl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    padding-left: 5.33vw;
    margin-left: -5.33vw;
    padding-right: 15px;
    line-height: 1.27;
  }
}
@media screen and (max-width: 768px) {
  .choose__reasonTtl {
    font-size: 22px;
  }
}
.choose__reasonTtl::before {
  content: "";
  position: absolute;
  width: calc(100% + 25px);
  height: 1px;
  background-color: #171717;
  bottom: 0;
  left: -25px;
}
.choose__reasonTtl::after {
  content: "";
  position: absolute;
  width: 90px;
  height: 1px;
  background-color: #171717;
  left: -17px;
  bottom: -26px;
  transform: translateX(-100%) rotate(-35deg);
}
@media screen and (max-width: 1024px) {
  .choose__reasonTtl::after {
    display: none;
  }
}

.chooseNum {
  font-size: 30px;
  color: #A02525;
  display: block;
  margin-right: 10px;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .chooseNum {
    font-size: 25px;
    margin-right: 17px;
  }
}

.choose__reasonTxt {
  letter-spacing: 0;
  text-align: justify;
  padding-right: 25px;
  padding-top: 20px;
}
@media screen and (max-width: 1024px) {
  .choose__reasonTxt {
    padding: 0;
    margin-top: 26px;
  }
}

/*------- service --------*/
.service {
  padding-top: 227px;
  width: 100vw;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  .service {
    padding-top: 113px;
  }
}

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

.bl-ttl__enImg--service {
  width: 153%;
  left: 58px;
  top: -87px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  z-index: -1;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--service {
    width: 75.8%;
    left: unset;
    right: 0;
    bottom: -57px;
    top: unset;
    z-index: 3;
  }
  .bl-ttl__enImg--service img {
    height: auto;
  }
}

.serviceHeading__side-l {
  width: 32.09%;
  min-width: 441px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .serviceHeading__side-l {
    width: 89.33%;
    margin: 57px auto 0;
    min-width: unset;
  }
}

.serviceImg {
  width: 57.9%;
  margin-left: 30px;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 1024px) {
  .serviceImg {
    width: 100%;
    margin-left: unset;
  }
}

.serviceTxt {
  margin-top: 45px;
}
@media screen and (max-width: 1024px) {
  .serviceTxt {
    margin-top: 20px;
    letter-spacing: 0.05em;
  }
}

.serviceList {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 91px;
}
@media screen and (max-width: 768px) {
  .serviceList {
    display: block;
    width: 100%;
    margin: 46px auto 0;
  }
}
.serviceList .serviceList__item {
  padding: 32px 12px 12px;
  width: calc(33% - 11.33px);
  background-color: #FFFFFF;
  margin-bottom: 15px;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .serviceList .serviceList__item {
    width: calc(50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .serviceList .serviceList__item {
    width: 100%;
    margin: 0 auto 20px;
  }
}
.serviceList .serviceList__item:not(:nth-of-type(3n)) {
  margin-right: 17px;
}
@media screen and (max-width: 1024px) {
  .serviceList .serviceList__item:not(:nth-of-type(3n)) {
    margin-right: 0;
  }
}
@media screen and (max-width: 1024px) {
  .serviceList .serviceList__item:nth-of-type(odd) {
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .serviceList .serviceList__item:nth-of-type(odd) {
    margin-right: 0;
  }
}
.serviceList .serviceList__item:first-of-type .serviceList__icon__adjust img {
  width: 89.9%;
}
.serviceList .serviceList__item:nth-child(2) .serviceList__icon__adjust img {
  width: 83.7%;
}
.serviceList .serviceList__item:nth-child(3) .serviceList__icon__adjust img {
  width: 100%;
}
.serviceList .serviceList__item:nth-child(4) .serviceList__icon__adjust img {
  width: 93%;
}
.serviceList .serviceList__item:nth-child(5) .serviceList__icon__adjust img {
  width: 96.8%;
}
.serviceList .serviceList__item:last-of-type .serviceList__icon__adjust img {
  width: 96.8%;
}

.serviceList__ttl {
  font-size: 25px;
  color: #FFFFFF;
  line-height: 1;
  letter-spacing: 0;
  padding: 8px 0;
  width: 77.77%;
  border-radius: 21px;
  background-color: #A02525;
  text-align: center;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .serviceList__ttl {
    padding: 8px 10px;
    width: 90%;
  }
}

.serviceList__ttl--font-s {
  font-size: 20px;
}

.serviceList__icon {
  width: 34.95%;
  margin: 43px auto;
}
@media screen and (max-width: 1024px) {
  .serviceList__icon {
    margin: 24px auto;
  }
}
.serviceList__icon .serviceList__icon__adjust {
  width: 100%;
  aspect-ratio: 1/1;
  position: relative;
}
.serviceList__icon .serviceList__icon__adjust img {
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.serviceDetail-list {
  padding: 30px 25px;
  background-color: #EFEFEF;
  border-radius: 0 0 10px 10px;
}

.serviceDetail-list__item {
  padding-left: 20px;
  position: relative;
}
.serviceDetail-list__item::after {
  position: absolute;
  content: "・";
  font-size: 20px;
  left: 0;
  top: 0;
}

.service-conclusion {
  margin-top: 54px;
  font-size: 45px;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service-conclusion {
    font-size: 25px;
    margin-top: 25px;
    font-weight: 700;
  }
}

/*------- works --------*/
.works {
  margin-top: 124px;
  padding: 265px 0 104px;
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .works {
    margin-top: 61px;
    padding: 89px 0 56px;
  }
}

.bl-ttl--works {
  text-align: center;
  z-index: 3;
}

.bl-ttl__enImg--works {
  width: 53.59%;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--works {
    width: 66.4%;
    bottom: 21px;
  }
}

@-webkit-keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.scroll-infinity__wrap {
  display: flex;
  overflow: hidden;
  margin-top: 72px;
}
@media screen and (max-width: 1024px) {
  .scroll-infinity__wrap {
    margin-top: 37px;
  }
}

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

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

.scroll-infinity__item {
  width: 31.25vw;
  margin-right: 30px;
}
@media screen and (max-width: 1024px) {
  .scroll-infinity__item {
    margin-right: 20px;
    width: 66.6666666667vw;
  }
}

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

/*------- voice --------*/
.voice {
  padding-top: 189px;
  width: 87.84%;
  max-width: 1265px;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .voice {
    padding-top: 105px;
    width: 89.33%;
    max-width: unset;
    overflow: visible;
  }
}

.bl-ttl--voice {
  text-align: center;
  z-index: 3;
}

.bl-ttl__enImg--voice {
  width: 40.39%;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--voice {
    bottom: 15px;
    width: 61.14%;
  }
}

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

.slider__item {
  padding: 62px 68px;
  background-color: #FFFFFF;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .slider__item {
    padding: 21px 20px 27px;
  }
}

.categoryIcon {
  position: absolute;
  font-size: 25px;
  letter-spacing: 0.05em;
  color: #FFFFFF;
  background-color: #A02525;
  line-height: 1;
  padding: 6px 16px;
  top: 34px;
  right: 70px;
}
@media screen and (max-width: 1024px) {
  .categoryIcon {
    position: static;
    padding: 5px 12px;
    top: unset;
    right: unset;
    margin: 18px auto 21px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media screen and (max-width: 768px) {
  .categoryIcon {
    font-size: 20px;
  }
}

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

.slider__img {
  width: 40.3%;
}
@media screen and (max-width: 1024px) {
  .slider__img {
    width: 75.8%;
    margin: 0 auto;
  }
}

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


.voice-info{
  font-size: 16px;
  letter-spacing: .05em;
  line-height: 1;
  margin-bottom: 10px;
  font-weight: 600;
}


.voice-ttl {
  font-size: 35px;
  line-height: 1.42;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid #171717;
  font-weight: 600;
}
@media screen and (max-width: 1024px) {

  .voice-ttl {
    font-size: 24px;
    margin-bottom: 22px;
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px 20px;
    font-weight: 700;
  }
}

.voice-txt {
  line-height: 1.55;
}

@media screen and (max-width: 1024px) {
  #cb,
#cb02 {
    display: none;
  }
  .more_btn {
    display: block;
    margin: 45px auto 0;
    border: 1px solid #171717;
    border-radius: 20px;
    cursor: pointer;
    position: relative;
    width: 80%;
    height: 35px;
  }
  #cb ~ .more_btn::before,
#cb02 ~ .more_btn::before {
    content: "もっと見る";
    font-size: 19px;
    line-height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cb ~ .more_btn::after,
#cb02 ~ .more_btn::after {
    content: "＋";
    font-size: 20px;
    color: #A02525;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 3px;
    transition: all 0.5s;
  }
  #cb:checked ~ .more_btn::before,
#cb02:checked ~ .more_btn::before {
    content: "閉じる";
    font-size: 19px;
    line-height: 35px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #cb:checked ~ .more_btn::after,
#cb02:checked ~ .more_btn::after {
    content: "−";
    font-size: 20px;
    color: #A02525;
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    right: 3px;
    transition: all 0.5s;
  }
  .more_wrap {
    display: none;
    transition: all 0.5s;
  }
  #cb:checked ~ .more_wrap,
#cb02:checked ~ .more_wrap {
    display: block;
    transition: all 0.5s;
  }
}
.slide-arrow {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #FFFFFF;
  border-radius: 50%;
  z-index: 3;
}
@media screen and (max-width: 1024px) {
  .slide-arrow {
    top: unset;
    transform: unset;
    bottom: -115px;
  }
}

.prev-arrow {
  left: -38px;
}
@media screen and (max-width: 1024px) {
  .prev-arrow {
    left: calc(50% - 6px);
    transform: translateX(-100%);
  }
}
.prev-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% + 3px);
  transform: translate(-50%, -50%) rotate(45deg);
  width: 18px;
  height: 18px;
  border-bottom: 3px solid #A02525;
  border-left: 3px solid #A02525;
}

.next-arrow {
  right: -38px;
}
@media screen and (max-width: 1024px) {
  .next-arrow {
    right: calc(50% - 6px);
    transform: translateX(100%);
  }
}
.next-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - 3px);
  transform: translate(-50%, -50%) rotate(-45deg);
  width: 18px;
  height: 18px;
  border-bottom: 3px solid #A02525;
  border-right: 3px solid #A02525;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
}

/*------- outline --------*/
.outline {
  padding-top: 269px;
  padding-bottom: 210.6px;
}
@media screen and (max-width: 1024px) {
  .outline {
    padding-top: 150px;
    padding-bottom: 111.2px;
  }
}

.bl-ttl--outline {
  text-align: center;
  z-index: 3;
}

.bl-ttl__enImg--outline {
  width: 64.6%;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--outline {
    width: 82.33%;
    bottom: 20px;
  }
}

.outlineTable {
  width: 64.6%;
  margin: 66.5px auto 0;
}
@media screen and (max-width: 1024px) {
  .outlineTable {
    width: 100vw;
    padding: 0;
    margin: 34px auto 0;
    margin-left: -5.33vw;
  }
}

.outlineTable__tr {
  border-bottom: 1px solid #777490;
}

.outlineTable__th {
  padding: 10px 24px;
  width: 157px;
  line-height: 1.66;
}
@media screen and (max-width: 1024px) {
  .outlineTable__th {
    display: block;
    width: 100%;
    font-size: 16px;
    line-height: 1.25;
    padding: 20px 5.33vw 12px;
    letter-spacing: 0;
    font-weight: 500;
  }
}

.outlineTable__td {
  padding: 10px 24px;
  width: calc(100% - 157px);
  line-height: 1.66;
}
@media screen and (max-width: 1024px) {
  .outlineTable__td {
    display: block;
    width: 100%;
    padding: 0 5.33vw 20px;
    font-size: 15px;
    letter-spacing: 0.1em;
    font-weight: 500;
    line-height: 1.25;
  }
}

/*------- access --------*/
.access {
  background-color: #FFFFFF;
}
@media screen and (max-width: 1024px) {
  .access {
    padding: 84px 0 36px;
  }
}

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

.bl-ttl--access {
  text-align: left;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .bl-ttl--access {
    margin-left: 5.33vw;
  }
}

.access__side-l {
  width: 50%;
  padding-left: 10.4vw;
}
@media screen and (max-width: 1024px) {
  .access__side-l {
    width: 100%;
    padding-left: 0;
  }
}

.bl-ttl__enImg--access {
  width: 86.6%;
  bottom: 10px;
  left: -10.4vw;
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--access {
    width: 68.7%;
    bottom: 15px;
    left: 0;
  }
}

.access__companyName {
  position: relative;
  font-size: 24px;
  letter-spacing: 0em;
  margin-top: 116px;
}
@media screen and (max-width: 1024px) {
  .access__companyName {
    margin-top: 31px;
    margin-left: 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .access__companyName {
    font-size: 24px;
  }
}
/*.access__companyName::before {
  content: "";
  position: absolute;
  width: 35px;
  height: 35px;
  background-color: #171717;
  border-radius: 50%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}*/

.access__address {
  margin-top: 15px;
}
@media screen and (max-width: 1024px) {
  .access__address {
    padding: 0 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .access__address {
    font-size: 17px;
    line-height: 1.2;
  }
}

.access__telNum {
  letter-spacing: 0;
}
@media screen and (max-width: 1024px) {
  .access__telNum {
    padding: 0 5.33vw;
  }
}
@media screen and (max-width: 768px) {
  .access__telNum {
    font-size: 17px;
    line-height: 1.2;
  }
}

.access__side-r {
  width: 50%;
  aspect-ratio: 1/0.63;
}
.access__side-r iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 1024px) {
  .access__side-r {
    width: 100%;
    aspect-ratio: 1/1.02;
    margin-top: 21px;
  }
}

/*------- contact --------*/
.contact {
  padding: 177.6px 0 77px;
}
@media screen and (max-width: 1024px) {
  .contact {
    padding: 120px 0 55px;
  }
}

.bl-ttl--contact {
  text-align: center;
  z-index: 3;
}

.bl-ttl__enImg--contact {
  width: 69.56%;
  bottom: 7px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .bl-ttl__enImg--contact {
    width: 96%;
    bottom: 15px;
  }
}

.contactTxt {
  margin: 26px auto 21px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .contactTxt {
    margin: 22px auto;
  }
}

.contact__telBlock {
  width: 61.66%;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
  .contact__telBlock {
    width: 100%;
  }
}
.contact__telBlock a {
  display: block;
  padding: 34px 0 42px;
  background-color: #FFFFFF;
  border-radius: 10px;
}
@media screen and (max-width: 1024px) {
  .contact__telBlock a {
    padding: 27px 0 20px;
  }
}

.telBlock-txt {
  text-align: center;
  font-size: 20px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .telBlock-txt {
    font-size: 18px;
  }
}

.telBlock-telNum-wrap {
  width: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 13px;
  border-bottom: 1px solid #F4F0EA;
  margin: 30px auto 15px;
}
@media screen and (max-width: 1024px) {
  .telBlock-telNum-wrap {
    width: 100%;
    padding-bottom: 20px;
    margin: 15px auto;
  }
}

.telBlock-telIcon {
  width: 39px;
  height: 39px;
  margin-right: 36px;
}
@media screen and (max-width: 768px) {
  .telBlock-telIcon {
    width: 27px;
    height: 26px;
    margin-right: 25px;
  }
}

.telBlock-telNum {
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1024px) {
  .telBlock-telNum {
    font-size: 30px;
  }
}

.telBlock-time {
  text-align: center;
  font-weight: 900;
  font-size: 22px;
}
@media screen and (max-width: 1024px) {
  .telBlock-time {
    font-size: 18px;
  }
}

.contact__faxBlock {
  padding: 37px 0 34px;
  background-color: #E2E2E2;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 61.66%;
  margin: 13px auto 0;
}
@media screen and (max-width: 1024px) {
  .contact__faxBlock {
    padding: 29px 0 15px;
    width: 100%;
    display: block;
  }
}

.faxBlock-txt {
  letter-spacing: 0.05em;
  margin-right: 80px;
}
@media screen and (max-width: 1024px) {
  .faxBlock-txt {
    margin-right: 0;
    font-size: 18px;
    text-align: center;
    line-height: 1;
  }
}

.faxBlock-faxNum-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 9px;
  border-bottom: 1px solid #F4F0EA;
}
@media screen and (max-width: 1024px) {
  .faxBlock-faxNum-wrap {
    padding-bottom: 14px;
    justify-content: center;
    margin: 15px auto;
  }
}

.faxBlock-faxIcon {
  width: 31px;
  margin-right: 24px;
}

.faxBlock-faxNum {
  font-size: 33px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media screen and (max-width: 1024px) {
  .faxBlock-faxNum {
    font-size: 30px;
  }
}

.faxBlock-time {
  font-size: 15px;
  text-align: center;
  font-weight: 900;
}
@media screen and (max-width: 1024px) {
  .faxBlock-time {
    font-size: 18px;
  }
}

/*----- CONTACTフォーム -----*/
.conractForm {
  padding: 66px 0 90px;
  background-color: #FFFFFF;
  width: 78.59%;
  margin: 113px auto 0;
  border-radius: 10px;
  position: relative;
}
.conractForm::after {
  position: absolute;
  content: "";
  width: 103%;
  height: 1px;
  background-color: #6B767E;
  top: -56.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1024px) {
  .conractForm::after {
    display: none;
  }
}
.conractForm.contactForm--under::after {
  display: none;
}
@media screen and (max-width: 1024px) {
  .conractForm {
    width: 100%;
    margin: 68px auto 0;
    padding: 43px 23px 40px;
  }
}

.contactForm-ttl {
  font-size: 35px;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .contactForm-ttl {
    font-size: 18px;
  }
}

.contactForm-txt {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-align: center;
  margin: 30px auto 20px;
}
@media screen and (max-width: 1024px) {
  .contactForm-txt {
    text-align: left;
    margin: 27px auto 20px;
  }
}

.annotation {
  font-size: 15px;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px;
  border: 1px solid #171717;
  margin: 0 auto;
}

.contactForm-block {
  width: 67.6px;
  min-width: 600px;
  margin: 43px auto 0;
}
@media screen and (max-width: 1024px) {
  .contactForm-block {
    width: 100%;
    min-width: unset;
    margin: 41px auto 0;
  }
}

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

.formDt {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 176px;
  margin-top: 5px;
}
@media screen and (max-width: 1024px) {
  .formDt {
    width: 100%;
    margin-top: 0;
  }
}

.formTtl {
  font-size: 14px;
  color: #171717;
}

.formRequired {
  font-size: 14px;
  line-height: 1;
}

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

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

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

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

.radioBtn {
  margin-right: 16px;
  color: #171717;
  font-size: 12px;
}
@media screen and (max-width: 1024px) {
  .radioBtn {
    font-size: 14px;
  }
}
.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: 8px 13px;
  background-color: #EFEFEF;
  border-radius: 3px;
  color: #171717;
  font-size: 12px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  input[type=text],
input[type=email],
textarea {
    padding: 5.3px 18px;
    font-size: 11px;
  }
}

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

::-moz-placeholder {
  color: #191919;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}

::placeholder {
  color: #191919;
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  ::-moz-placeholder {
    font-size: 11px;
  }
  ::placeholder {
    font-size: 11px;
  }
}

.privacy-policy {
  width: 100%;
  height: 266px;
  overflow-y: scroll;
  background-color: #EFEFEF;
  border: 1px solid #C7C7C7;
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.16);
  padding: 34px 10% 15px;
}
@media screen and (max-width: 1024px) {
  .privacy-policy {
    height: 242px;
    padding: 23px 28px 23px 14px;
  }
}

.policyTtl {
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 27px;
}
@media screen and (max-width: 1024px) {
  .policyTtl {
    margin-bottom: 20px;
  }
}

.policyTxt {
  font-size: 12px;
  line-height: 1.66;
}

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

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

.privacy-wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 50px auto 30px;
  color: #171717;
}
@media screen and (max-width: 768px) {
  .privacy-wrap {
    font-size: 12px;
    margin: 30px auto;
  }
}

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

.submitBtn {
  width: 167px;
  padding: 11.5px 0;
  text-align: center;
  font-size: 15px;
  color: #FFFFFF;
  border-radius: 20px;
  line-height: 1;
  background-color: #A02525;
  transition: all 0.5s;
}
.submitBtn:hover {
  background-color: #838383;
  transition: all 0.5s;
}

.submit:hover {
  top: 3px;
  transition: all 0.3s;
}
.submit:hover::after {
  width: 100%;
  transition: all 0.5s;
}
.submit:hover::before {
  opacity: 1;
  transition: all 0.5s;
}

/*----- TOPへ戻る -----*/
.toTop {
  position: fixed;
  bottom: 25px;
  right: 5.07vw;
  opacity: 0;
  pointer-events: none;
  transition: all 0.5s;
}
@media screen and (max-width: 1024px) {
  .toTop {
    display: none;
  }
}
.toTop a {
  display: block;
  width: 100%;
  height: 100%;
}
.toTop.is-appear {
  opacity: 1;
  pointer-events: all;
  transition: all 0.5s;
}

.toTop__btn {
  width: 53px;
  height: 54px;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
}
.toTop__btn::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 16px;
  background-color: #A02525;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.toTop__btn::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-top: 2px solid #A02525;
  border-left: 2px solid #A02525;
  transform: translateX(-50%) rotate(45deg);
  top: 20px;
  left: 50%;
}

.toTop__txt {
  margin-top: 2px;
  font-size: 15px;
  text-align: center;
}

.thanks-link {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 53px auto 0;
}
.thanks-link a {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 11.5px 55px;
  background-color: #A02525;
  color: #FFFFFF;
  font-size: 15px;
  border-radius: 30px;
  line-height: 1;
  transition: all 0.5s;
}
.thanks-link a:hover {
  background-color: #838383;
  transition: all 0.5s;
}

.contactForm--under {
  margin: 170px auto 220px;
}

@media screen and (max-width: 1024px) {
  .contactForm-txt--under {
    text-align: center;
  }
}

.submitWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .submitWrap {
    display: block;
  }
}
@media screen and (max-width: 1024px) {
  .submitWrap .submit {
    margin: 0 auto;
    width: 200px;
  }
}
.submitWrap .submit:first-of-type {
  margin-right: 20px;
}
@media screen and (max-width: 1024px) {
  .submitWrap .submit:first-of-type {
    margin-right: auto;
    margin: 0 auto 15px;
  }
}

/*---------------------------
フッター
---------------------------*/
.foot {
  width: 91.66%;
  margin: 0 auto;
  max-width: 1320px;
  padding: 30px 0;
  border-top: 3px solid #FFFFFF;
  border-radius: 2px;
}
@media screen and (max-width: 1024px) {
  .foot {
    width: 100%;
    max-width: unset;
    padding: 32px 0 18px;
    border-top: 2px solid #FFFFFF;
  }
}

.footLogo {
  width: 16.43%;
  margin: 0 auto 21px;
  max-width: 217px;
}
@media screen and (max-width: 1024px) {
  .footLogo {
    width: 55.6%;
    margin: 0 auto 16px;
  }
}

.copyright {
  font-size: 12px;
  text-align: center;
  letter-spacing: 0;
  display: block;
  line-height: 1;
}
/*# sourceMappingURL=style.css.map */