/* # =================================================================
   # フォント
   # ================================================================= */

/* # =================================================================
   # 変数
   # ================================================================= */
:root {
  --body: #3c4357;
  --sec: #718493;
  --light: #bcccd9;
  --intv: min(23vw,180px);
  /*--ease: cubic-bezier(.04,.44,.43,.99);*/
}
/* # =================================================================
   # 共通要素
   # ================================================================= */
html {
	font-size: 62.5%;
}
body {
  font-family: "Noto Sans", -apple-system, BlinkMacSystemFont, HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", sans-serif;
	font-size: clamp(1.6rem,1.8vw,2.2rem);
	color: var(--body);
    line-height: 1.4;
  position: relative;
  min-height: 100svh;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}
a, button {
	color: inherit;
	transition: all .25s;
	text-decoration: none;
}
h1, h2, h3 {
  font-weight: 400;
}
p {
  line-height: 1.8;
}
p:not(:last-child) {
  margin-bottom: 1.5em;
}
*::before, *::after {
    position: absolute;
    transition: all 0.25s;
}





header {
    position: fixed;
    top: 0;
    width: 100%;
  height: 80px;
  background: rgba(255,255,255,0.7);
  backdrop-filter: blur(5px);
    transition: all 0.8s cubic-bezier(.51,.18,.25,1) 0s;
    z-index: 2;
}
header.hide:not(.open) {
  transform: translateY(-101%);
}
/*header.bgWh {
  color: var(--body);
  background: rgba(255,255,255,0.5);
}*/
@media screen and (max-width: 600px) {
  header {
    height: 60px;
  }
}
header .hdContainer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  padding: 0 min(4vw,50px);
}
.siteTtl {
  font-size: clamp(1.6rem,2.3vw,3.5rem);
}
.gnavi {
  font-size: clamp(1.4rem,1.5vw,2rem);
}
header .hdnavLink {
  display: flex;
  flex-wrap: wrap;
  text-transform: uppercase;
  gap: 0.8em min(2.6vw,50px);
}
.hdnavLink a {
  position: relative;
}
.hdnavLink a::after {
  content: "";
  background: var(--light);
  width: 0;
  height: 4px;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
}
.hdnavLink a:hover::after {
  width: 100%;
}
@media screen and (max-width: 820px) {
  header .hdContainer {
    padding: 0 20px;
  }
  .gnavi {
    position: absolute;
    top: 0;
    right: -101%;
    width: 100%;
    height: 100vh;
    color: #FFF;
    background: rgba(60, 68, 88, 1);
    font-size: 2.6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px 0px;
    overflow-y: auto;
    opacity: 0.3;
    transition: right 0.6s cubic-bezier(.51,.18,.25,1) 0s , opacity 0.4s cubic-bezier(.51,.18,.25,1) 0s;
  }
  .open .gnavi {
    right: 0;
    opacity: 1;
  }
  .hdnavLink li {
    width: 100%;
  }
}

.toggle {
    display: none;
    position: relative;
    top: 0;
    width: 40px;
  height: 40px;
    z-index: 25;
}
@media screen and (max-width: 820px) {
  .toggle {
    display: block;
  }
}
.toggle span {
  position: absolute;
  top: 19px;
  right: 50%;
  transform: translateX(50%);
  width: 32px;
  height: 2px;
  background-color: var(--body);
  transition: all 0.25s;
}
.toggle::before, .toggle::after {
    content: "";
    
    height: 2px;
    right: calc(50% - 16px);
    background-color: var(--body);
}
.toggle::before {
    top: 10px;
  width: 32px;
}
.toggle::after {
    top: 28px;
  width: 32px;
}
.open .toggle::before {
  background-color: var(--light);
  top: 20px;
  transform: rotate(45deg);
}
.open .toggle::after {
  background-color: var(--light);
  top: 20px;
  transform: rotate(135deg);
  width: 32px;
}
.open .toggle span {
  background-color: var(--light);
  width: 0;
}





.container {
    width: min(86vw, 1550px);
	/*max-width: 1400px;*/
	margin-left: auto;
	margin-right: auto;
}
.scMa {
    margin-top: var(--intv);
    margin-bottom: var(--intv);
}
.relative {
    position: relative;
}
.spInline {
    display: none;
}
.txtCenterLg, .txtCenter { text-align: center; }
@media screen and (max-width: 600px) {
  .spNone { display: none!important; }
  .spInline { display: inline!important; }
  .txtCenterLg { text-align: left; }
}
.bold {
  font-weight: 700;
}


footer {
  background: var(--body);
  position: sticky;
  top: 100svh;
  padding: 30px 0;
}
.copyright {
  text-align: center;
  color: var(--light);
  font-size: clamp(1rem, 1vw, 1.2rem);
  font-weight: 300;
  letter-spacing: 0.05em;
}

/* # =================================================================
   # トップページ
   # ================================================================= */
.topMv {
  position: relative;
  height: 100svh;
  max-height: 100vh;
  background: #333;
}
.topMv video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mvTxt {
  position: absolute;
  bottom: 50%;
  left: 10%;
  transform: translateY(50%);
}
@media screen and (max-width: 600px) {
  .topMv {
    /*height: 80svh;*/
  }
  .mvTxt {
    width: 100%;
    bottom: 8%;
    left: 0;
    transform: translateY(0);
    padding: 0 7%;
  }
}
.mvTxt h1 {
  font-size: clamp(3rem,4vw,4.8rem);
  font-feature-settings: "palt";
  line-height: 1.4;
  margin-bottom: 0.8em;
}
.mvTxt p {
  color: var(--sec);
  font-size: clamp(1.4rem,2vw,2.4rem);
}
#scTopService {
  padding-top: min(20vw,150px);
}
.scTtl {
  text-align: center;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
  font-variation-settings:
    "wdth" 100;
  text-transform: uppercase;
  font-size: clamp(2.8rem,3.8vw,4.5rem);
  letter-spacing: 0.05em;
  line-height: 1;
  margin-bottom: min(8vw,50px);
}
#scTopService p {

}
#scTopServic {
  margin: 150px 0;
}
#scTopTransfer {
  margin: var(--intv) 0;
}
.transferOverview {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  grid-row-gap: 40px;
}
.transferOverview .block {
  width: 47.5%;
}
.transferOverview .img {
  text-align: center;
  width: 94%;
  margin: 0 auto min(5vw,40px);
}
.transferOverview .block h3 {
  text-align: center;
  font-size: clamp(2rem,2.5vw,3rem);
  margin-bottom: 0.5em;
}
@media screen and (max-width: 600px) {
  .transferOverview .block {
    width: 100%;
  }
  .transferOverview .img {
    width: 85%;
  }
}

#scTopTourism {
  margin: var(--intv) 0 0;
}
#scTopTourism .img {
  text-align: center;
  width: min(100%,830px);
  margin: 0 auto min(5vw,40px);
}
#scTopTourism h3 {
  text-align: center;
  font-size: clamp(2rem, 2.5vw, 3rem);
    margin-bottom: 0.5em;
}
#scTopTourism p {

}

#scTopFee {
  
}
#scTopVehicle {
  padding: var(--intv) 0 0;
}
#scTopVehicle .img {
  text-align: center;
  width: min(100%,1000px);
  margin: 0 auto min(6vw,30px);
}
#scTopVehicle .carModel {
  text-align: center;
  font-size: clamp(2.4rem,3.3vw,4rem);
  margin-bottom: 0.2em;
}
#scTopVehicle .carModel + div {
  text-align: center;
}
.carSpec {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: clamp(1.6rem,1.5vw,1.8rem);
  margin: min(10vw,50px) auto 0;
}
.carSpec li {
  width: 18%;
}
.carSpec .spacImg {
  margin-bottom: 10px;
}
@media screen and (max-width: 1024px) {
  .carSpec {
    justify-content: center;
    gap: min(3.8vw,35px) 5%;
  }
  .carSpec li {
    width: 30%;
  }
}
@media screen and (max-width: 600px) {
  .carSpec li {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .carSpec .spacImg {
    width: 43%;
    margin-bottom: 0;
  }
  .carSpec .txt {
    width: 52%;
  }
}

#scTopFlow {
  padding: var(--intv) 0 0;
}
#scTopFlow .flow {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.flow ul {
  
}
.flow li {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  position: relative;
  font-size: clamp(1.8rem,2.5vw,3rem);
}
.flow li:not(:last-child) {
  margin-bottom: 90px;
}
.flow li:not(:last-child)::after {
  content: "";
  background: var(--light);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  bottom: -54px;
  left: 18px;
}
.flow li .flowNum {
  color: #FFF;
  background: var(--body);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  font-size: 1.16em;
}
.flow li div {
  width: calc(100% - 55px);
  padding-left: 1em;
}
.flow li div span {
  font-size: 0.66em;
  margin-left: 1em;
}
@media screen and (max-width: 1024px) {
  .flow li:not(:last-child) {
    margin-bottom: 40px;
    min-height: 3em;
  }
  .flow li:not(:last-child)::after {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    bottom: -15px;
    left: 12px;
  }
  .flow li .flowNum {
    width: 34px;
    height: 34px;
  }
  .flow li div {
    width: calc(100% - 34px);
    padding-left: 0.7em;
  }
}

#scTopContact {
  padding: var(--intv) 0;
}
#scTopContact .app {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 100px;
  margin-bottom: min(10vw,80px);
}
#scTopContact .app .block {
  width: 350px;
}
#scTopContact .app .btnAppLink {
  display: none;
}
#scTopContact .app .qr {
  background: #edf3f8;
  padding: 30px;
  margin-bottom: 10px;
}
#scTopContact .appName {
  text-align: center;
  font-size: clamp(2.8rem,3.8vw,4.5rem);
}
@media screen and (max-width: 1024px) {
  #scTopContact .app {
    gap: 0 15px;
  }
  #scTopContact .app .block {
    width: 44%;
  }
  #scTopContact .app .pc {
    display: none;
  }
  #scTopContact .app .btnAppLink {
    display: block;
    text-align: center;
    letter-spacing: 0.05em;
    color: #FFF;
    background: var(--body);
    border: 1px solid var(--body);
    border-radius: 30px;
    padding: 10px 0;
  }
}
#scTopContact h3 {
  text-align: center;
  font-size: clamp(2.8rem,3.8vw,4.5rem);
  margin-bottom: 0.2em;
}
.requiredInfo {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  font-size: clamp(1.6rem, 2.5vw, 3rem);
  font-weight: 700;
  margin: min(5vw,50px) 0 0;
}
.requiredInfo li {
  position: relative;
  padding-left: 1.2em;
}
.requiredInfo li:not(:last-child) {
  margin-bottom: 1em;
}
.requiredInfo li::before {
  content: "・";
  left: 0;
}
.requiredInfo li span {
  font-weight: 400;
  font-feature-settings: "palt";
}

#scTopSns {
  padding: 0 0 var(--intv);
}
#scTopSns .snsGroup {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
  gap: 20px 60px;
}
#scTopSns .snsGroup li {
  width: 18%;
}
.snsGroup h3 {
  font-family: "Roboto", sans-serif;
  font-size: clamp(2rem, 2.5vw, 3rem);
  letter-spacing: 0.03em;
  margin-bottom: 0.5em;
}
.snsGroup .qr {
  width: min(100%,220px);
  background: #edf3f8;
  padding: 18px;
  margin: 0 auto 20px;
}
.btnSns {
  display: flex;
  align-items: center;
  justify-content: center;
  column-gap: 0.2em;
  width: min(100%,200px);
  text-align: center;
  letter-spacing: 0.05em;
  color: #FFF;
  background: var(--body);
  border-radius: 30px;
  padding: 8px 0;
  margin: 0 auto;
}
.btnSns:hover {
  background: var(--light);
}
.btnSns img {
  height: 24px;
}
@media screen and (max-width: 1024px) {
  #scTopSns .snsGroup {
    gap: 16px 3%;
  }
  #scTopSns .snsGroup li {
    width: min(22%,180px);
  }
  .snsGroup h3 {
    display: none;
  }
  .snsGroup .qr {
    display: none;
  }
  .btnSns img {
    height: 18px;
  }
}
@media screen and (max-width: 600px) {
  #scTopSns .snsGroup {
    gap: 16px 40%;
  }
  #scTopSns .snsGroup li {
    width: min(60%,180px);
  }
}


/* モーダル */
.modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  text-align: center;
  width: min(90%,460px);
  border-radius: 20px;
  color: #FFF;
  background-color: rgba(60,68,88,0.9);
  font-size: clamp(1.8rem,1.6vw,2.2rem);
  padding: 30px;
  transform: translate(-50%,-50%);
  z-index: 10;
}
.modal ul {
  width: min(100%,240px);
  margin: 20px auto;
}
.modal li {
  border: 2px solid #edf3f8;
  border-radius: 15px;
}
.modal li:not(:last-child) {
  margin-bottom: 0.8em;
}
.modal li a, .btnSelectEng {
  display: block;
  width: 100%;
  padding: 10px;
}
.modal li a:hover , .btnSelectEng:hover{
  background: rgba(255,255,255,0.3);
}
.modalClose {
  text-transform: uppercase;
  position: relative;
  padding-left: 1.3em;
}
.modalClose::before, .modalClose::after {
  content: "";
  width: 1em;
  height: 2px;
  top: 50%;
  left: 0;
  background: #edf3f8;
}
.modalClose::before {
  transform: rotate(45deg);
}
.modalClose::after {
  transform: rotate(-45deg);
}
.modalBack {
  display: none;
  position: absolute;
  background: rgba(255,255,255,0.5);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5;
  /*animation: modalBack 0.3s linear 0s forwards;*/
}
@keyframes modalBack {
  0% { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes modalBack {
  0% { opacity: 0; }
	100% { opacity: 1; }
} 



/* # =================================================================
   # 404
   # ================================================================= */
.btnContainer {
  margin-top: min(8vw,50px);
}
.btnBorder {
  display: grid;
  place-content: center;
  width: 300px;
  height: 50px;
  border: 1px solid var(--body);
  border-radius: 30px;
  margin: 0 auto;
}
.btnBorder:hover {
  color: #FFF;
  background: var(--body);
}


