/* stylesheet */
@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;600&display=swap');

/* A Modern CSS Reset */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}html:focus-within{scroll-behavior:smooth}body{min-height:100vh;text-rendering:optimizeSpeed;line-height:1.5}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}@media(prefers-reduced-motion:reduce){html:focus-within{scroll-behavior:auto}*,*::before,*::after{animation-duration:.01ms !important;animation-iteration-count:1 !important;transition-duration:.01ms !important;scroll-behavior:auto !important}}

:root {
    --transition: all 0.3s ease;
    --margin: 3rem;
}

/*------------------------------------------------------
 Base (Mobile First)
------------------------------------------------------*/
body{
  color: #fff;
  width: 100%;
  line-height: 1.6em;
  -webkit-text-size-adjust: 100%;
  font-family: 'Noto Serif JP', serif, "Didot";
  background: linear-gradient(35deg, #000000, #3C3C3C);
  letter-spacing: 0.05rem;
  font-feature-settings: "palt";
}

html {
    scroll-behavior: smooth !important;
}

h1 {
  font-size: 2em;
}

h2 {
  font-size: 1.5em;
}

h3 {
  font-size: 1.17em;
}

h4 {
  font-size: 1.12em;
}

h5 {
  font-size: .83em;
}

h6 {
  font-size: .75em;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: bold;
  line-height: 1.6;
}

img{
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* clearfix */
.clearfix::before,
.clearfix::after {
  content: " ";
  display: table;
}

.clearfix::after {
  clear: both;
}

a {
    color: #fff;
    text-decoration: none;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fbf {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card{
	width:150px !important;
}

.wrap {
    max-width:1100px;
    margin: auto;
}

.swiper-container {
  width: 100%;
  max-width: 940px;
  height: 550px;
  margin: 0 auto;
}

.swiper-wrapper {
  width: 100%;
  height: 100%;
  max-height: 500px;
}

.swiper-slide {
  object-fit: cover;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

/* .swiper-slide:nth-of-type(1) {
  background-image: url(../images/top_slide_1.jpg);
}
.swiper-slide:nth-of-type(2) {
  background-image: url(../images/fv_2.jpg);
}
.swiper-slide:nth-of-type(3) {
  background-image: url(../images/fv_1.jpg);
} */

.slide-text {
  position: absolute;
  bottom: 8%;
  left: 3%;
  width: 40%;
}

.slide-text p:first-of-type {
  font-size: 1.9rem;
  line-height: 1.6;
}

.slide-text p:last-of-type {
  margin-top: 0.5rem;
}

.swiper-pagination {
  display: flex;
  flex-direction: column;
  
  gap: 10px;
  position: relative;
  left: -3%;
  transform: translateY(-275px) translateX(-30px);
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  width: 4px;
  height: 4px;
}

.swiper-pagination-bullet-active {
  background-color: #404040;
}


/* tone
================================================ */
section:not(.cta,.search) {
  padding: 6rem 0 0;
}

.cta {
  margin-top: 6rem;
}

.sec-title {
    font-size: 30px;
    font-weight: 500;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin: auto;
    margin-bottom: calc(var(--margin) * 1.5);
}

.sec-title:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -120px;
    transform: translate(0%, -50%);
    width: 100px;
    height: 2px;
    background-color: #fff;
    color: #fff;
}
.sec-title:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -120px;
    transform: translate(0%, -50%);
    width: 100px;
    height: 2px;
    background-color: #fff;
    color: #fff;
}

.searchBtnArea.fbf {
  justify-content: center;
  gap: 30px;
}

.searchBtnArea .btn {
  margin: 0;
}

.btn {
    background: linear-gradient(-35deg, #746547, #3A3324);
    width: 345px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.btn-nav {
    width: 166px;
    height: 50px;
    font-size: 14px;
}

/* header
================================================ */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: linear-gradient(35deg, #000000, #3C3C3C);
  z-index: 10;
}
.headerInner {
  height: 80px;
}

main {
  padding-top: 80px;
}

/* nav
================================================ */
.g-nav {
    font-size: 14px;
}

.g-nav ul {
    gap: 50px;
}

/* humb
================================================ */


/* fv
================================================ */
/* .fvInner {
  padding: 3rem 0;
} */

.fvImgArea {
  position: relative;
}

.fvP {
  position: absolute;
  bottom: 12%;
  left: 5%;
  font-size: 1.6rem;
  line-height: 1.8;
  text-shadow: 2px 2px 2px rgb(0 0 0 / 20%);
  font-weight: 600;
}

.fvImgArea img {
  width: 50%;
}

/* secondary
================================================ */
.secondaryContent {
  text-align: center;
  padding: 6rem 0;
}

.secondaryContent h2 {
  font-size: 1.9rem;
}

.secondaryContent p {
  margin-top: 2rem;
}

/* search
================================================ */
.search {
    background-color: #404040;
    text-align: center;
    padding: 3rem 0;
}

.searchBtnArea {
  margin: 3rem;
}

.searchMakerArea {
  max-width: 60%;
  margin: auto;
  flex-direction: column;
  gap: 3rem;
  justify-content: space-between;
  margin-top: 3rem;
}

.makerArea1,
.makerArea2 {
  gap: 3rem;
}

.makerLogo {
  width: 100px;

}

.makerLogo img{
  width: 100px;
  max-height: 100px;
  object-fit: contain;
}


/* strength
================================================ */

.strengthItem.fbf {
  align-items: flex-start;
  gap: 6rem;
  margin-top: 5rem;
}

.strengthItem:nth-of-type(even) {
  flex-direction: row-reverse;
}

.strengthImg {
  width: 500px;
  max-width: 100%;
}

.strengthTitle {
  font-size: 1.9rem;
}

.strengthText {
  margin-top: 3rem;
  display: block;
}

a.strengthText {
  text-decoration: underline;
}

/* info
================================================ */
.infoContainer.fbf {
  align-items: flex-start;
}

.infoTitle {
  font-size: 1.9rem;
}

.infoText {
  margin-top: 3rem;
}

.infoTextArea {
  width: 500px;
  max-width: 100%;
}

.infoTextArea .btn {
  margin-left: 0;
  margin-top: 3rem;
}

.infoImg {
  width: 500px;
  max-width: 100%;
}
/* sec-head
================================================ */
.sec-head{
  background: url(../images/top/bg-head.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  height: calc(100vh - 250px);
}
.sec-head::after{
  position: absolute;
  content: '';
  top: 0;
  width: 100%;
  height: 100%;
  background: #3c352fde;
  z-index: 0;
}
.sec-head .wrap{
  max-width: 100%;
}
.sec-head .head__ab{
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.sec-head .wrap .content{
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* padding: 5rem 0 2rem; */
  padding: 0;
  position: relative;
  z-index: 2;
}

.sec-head .wrap .content .content__head{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  justify-content: center;
  align-items: center;
}

.sec-head .wrap .content .content__head .content__logo{
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  align-items: center;
  gap: 0.5rem;
}

/* .sec-head .wrap .content .content__head img{
  max-width: 50%;
} */

.sec-head .wrap .content .content__head .content__logo span{
  font-size: 2.6vw;
}

.sec-head .wrap .content .content__head .content__txt p{
  font-size: 1.6vw;
  line-height: 1.7;
  white-space: nowrap;
  width: 100%;
  margin: 0 auto;
}

/* list__img
================================================ */
.list__img{
  background: #000;
}
.list__img .wrap{
  max-width: 1200px;
}
.list__img .wrap .list{
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding: 0.5rem;
}
.list__img .wrap .list .item img{
  margin: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* flow
================================================ */
.bg__flow{
  background-image: url(../images/top/bg-image.jpg);
  background-position: center;
  background-size: cover;
  position: relative;
}
.bg__flow::after{
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #3a332470;
  z-index: 1;
}
.flowGroup{
  padding: 5rem 0;
  position: relative;
  z-index: 2;
}

.flowContainer p {
  margin-top: 1rem;
}

.flowItem {
  pointer-events: none;
}
.bg{
  position: relative;
  /* background: #232323; */
}
.bg::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 1px;
  width: 0;
  height: 0;
  border-top: 200px solid transparent;
  border-bottom: 200px solid transparent;
  border-left: 22px solid #232324;
  transform: translateY(-50%);
}
.bg::after{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 98%;
  height: 100%;
  background: #232323;
  z-index: -1;
}
.group__img{
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  padding: 1rem;
  margin-bottom: 2rem;
}
.group__img video{
  width: 100%;
}
.group__img .item__img{
  display: flex;
  gap: 3.5rem;
}
.group__img .item__img .item{
  position: relative;
}
.group__img .item__img .item span{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3vw;
  text-align: center;
}
.group__img .item__img .item:hover{
  opacity: 0.8;
  transition: 0.5s ease;
}
/*gas station*/
.gasstation_title{
 margin-bottom:20px;
 }
 
 .sec-title_p{
 text-align:center;
 width:100%;
 margin-bottom:50px;
 }

.gasstation_column{
align-items:center !important;
gap:1rem !important;
width:95%;
}

.gasstation_Title{
font-size:1.5rem;
margin-bottom:30px;
}

.gasstation_detail{
font-size:1.2rem;
}

.gasstation_wrap{
margin-bottom:80px !important;
}

.summary_map_wrap{
text-align:center;
}

.summary_map{
max-width:1000px!important;
margin:0 auto;
}

/* option
================================================ */
.option .title-option{
  position: relative;
  padding: 0.5rem;
  text-align: center;
  font-weight: 700;
  font-size: 36px;
}
.option .title-option::after{
  position: absolute;
  content: '';
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
  width: 100%;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.option .service{
  font-size: 45px;
}
.option .content{
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.option .content .content__head{
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.option .content .content__head .img{
  display: flex;
  justify-content: center;
}

.option .content .content__head .img img{
  max-width: 400px;
}

.option .content .content__head .txt__location{
  font-size: 24px;
  font-weight: 700;
}

.option .content .content__head .description{
  font-size: 18px;
}

.option .content .content__body .list{
  display: flex;
  flex-direction: column;
}
.option .content .content__body .list .item{
  display: flex;
  gap: 5px;
  padding: 1.5rem 0.5rem;
  position: relative;
}
.option .content .content__body .list .item::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px dashed #fff;
}
.option .content .content__body .list .border::after{
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 2px solid #fff;
}
.option .content .content__body .list .item p, span{
  width: 100%;
  margin: 0;
  font-size: 18px;
}

.option .content .content__body .list .item .item__left{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.option .content .content__body .list .item .item__left .item__title .txt__location{
  font-size: 45px;
}

.option .content .content__body .list .item .item__right img{
  max-width: 200px;
}


/* Noc
================================================ */
.noc p{
  margin: 0;
  width: 100%;
}
.noc .title-noc{
  font-size: 45px;
}
.noc .content{
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  padding: 2rem 0.5rem;
}
.noc .content::after{
  position: absolute;
  content: '';
  width: 100%;
  bottom: 0;
  border-bottom: 1px solid #fff;
}
.noc .content .noc__head{
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.noc .content .noc__body{
  line-height: 2.5;
}


/* faq
================================================ */
.v2{
  margin-top: 2rem;
}
/* access
================================================ */

/* cta
================================================ */
.cta {
    background-color: #404040;
    text-align: center;
    padding: 6rem 0;
}

.cta h3 {
  font-size: 1.9rem;
}

.ctaBtnArea.fbf {
  justify-content: center;
  gap: 30px;
}

.ctaBtnArea.fbf .btn {
  margin: 0;
}

.ctaBtnArea {
  margin-top: 3rem;
}

.ctaText {
  margin-top: 3rem;
}

/* faq
================================================ */
.faqContainer {
  max-width: 700px;
  margin: auto;
}

.faqContainer:not(:first-of-type) {
  padding-top: 3rem;
}

.faqContainer h4 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}

.faqContainer {
  border-bottom: #fff 1px solid;
}

.question,
.answer {
  display: grid;
  grid-template-columns: 1fr 15fr 1fr;
  align-self: center;
}

.question span,
.answer span {
  align-self: center;
}

.question {
  cursor: pointer;
}

.q {
  width: 20px;
}

.toggle {
  width: 15px;
  height: 15px;
  transition: all 0.3s ease;
}

.question.is-active .toggle {
  transform: rotate(45deg);
}

.question {
  padding: 2rem 1rem;
  border-top: #fff 1px solid;
}

.answer {
  padding: 1rem 1rem 2rem;
}

.a {
  width: 20px;
}


.faqContainer .answer:last-of-type {
  border-bottom: #fff 1px solid;
}



/* footer
================================================ */
.footer-logo {
  width: 100px;
  display: inline-block;
}

.footer-info {
  margin-top: 3rem;
}

.footer-nav.fbf {
    align-items: flex-start;
    gap: 30px;
}

.footer-nav ul .f-nav-other {
    opacity: 50%;
    margin-top: 1rem;
}

.footer-nav ul .f-nav-other:hover {
    opacity: 100%;
    transition: var(--transition);
}

.footer-nav ul .f-nav-top {
    opacity: 100%;
    margin-bottom: 2rem;
}

.footerInner.fbf {
  padding: 6rem 0;
  align-items: flex-start;
}

footer p:has(small)  {
  text-align: center;
  font-size: 11px;

}

/*------------------------------------------------------
 PC
------------------------------------------------------*/
@media screen and (min-width:960px) {

  /* contents
  ================================================ */

}


.page-seachContainer {
  flex-wrap: wrap;
}

.page-searchItem {
  width: calc(100% / 2 - 5%);
  margin-top: 3rem;
}

.serchItemTitle {
  padding: 2rem 0 1rem;
  border-bottom: #fff 1px solid;
}

.searchItemContent p {
  margin-top: 1rem;
}

.searchItemTable {
  margin-top: 2rem;
  width: 100%;
  border: #ddd 0.5px solid;
  border-spacing: 0;
}

.searchItemTable td {
  border: #ddd 0.5px solid;
  padding: 3px 5px;
  margin: 0;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
}

.tableTitle td{
  font-size: 14px;
}

.searchItemLink {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
  width: 100%;
  margin-top: 2rem;
}

.archiveWrap {
  max-width: 690px;
  margin: auto;
}

.kick .sectionTitle {
  text-align: center;
}

.shopInfo.fbf {
  align-items: flex-start;
}

.shopInfoImg {
  width: 450px;
  max-width: 100%;
}

.sec-intro {
  text-align:center;
}

.taxiContainer {
  align-items: center;
  margin-top: 3rem;
}

.taxiContainer .sectionTitle {
  font-size: 1.9rem;
}

.taxiContainer p {
  margin-top: 3rem;
}

.taxiContainer .contentLeft,
.taxiContainer .contentRight {
  width: 500px;
  max-width: 100%;
}

.cancelContainer table{
  border-spacing: 0;
  border: #fff 1px solid;
  width: 100%;
}

.cancelContainer table td {
  text-align: center;
  align-self: center;
  padding: 1rem;
}

.cancelContainer table tr {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}

.cancelContainer .number {
  font-size: 1.4rem;
}

.cancelContainer .number td {

}

.cancelContainer p {
  margin-top: 1rem;
}


.kickRuleContainer.wrap {
  width: 650px;
  max-width: 100%;
}

.kickRuleContainer .link {
  text-align: center;
  margin-top: 3rem;
  display: block;
  text-decoration: underline;
  line-height: 1;
}

.line_icon {
  width: 24px;
  display: inline;
}

.kickContainer.fbf {
  align-items: flex-start;
}

.kickContainer .contentLeft {
  width: 550px;
  max-width: 100%;
}

.kickContainer .contentLeft p {
  margin-top: 1rem;
}

.kickContainer .contentRight {
  width: 470px;
  max-width: 100%;
}

.kickHowContainer {
  width: 650px;
  max-width: 100%;
}




.archiveContainer.fbf {
  flex-wrap: wrap;
  align-items: flex-start;
}

.newsItem {
  width: 500px;
  display: block;
  margin-top: 4rem;
  max-width: 100%;
}

.newsItem:first-of-type {
  width: 690px;
  margin: auto;
  margin-top: 0;
}

.mt-2 {
  margin-top: 2rem;
}

.mb-2 {
	margin-bottom: 2rem;
}

.date {
  margin-top: 2rem;
  font-weight: 400;
}

.title {
  margin-top: 1rem;
  font-size: 1.9rem;
  line-height: 1.6;
  padding-bottom: 1rem;
  border-bottom: #fff 1px solid;
}

.excerpt {
  margin-top: 1rem;
}

.singleContainer {
  width: 690px;
  max-width: 100%;
  margin: auto;
}


/* cars */

.searchItemTable tbody{
    display: grid;
    grid-template-columns: 1fr;
}

.searchItemTable tr{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

.searchItemTable td{
    width: 100%;
}

.sp {
  display: none;
}

.pagination {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.page-numbers {
  display: flex;
  flex-direction: row;
  width: 40px;
  height: 40px;
  justify-content: center;
  align-items: center;
  background-color: #746547;
}

.page-numbers.current {
  background: none;
}

.contactform {
  width: 100%;
  max-width: 650px;
}

.formText {
  text-align: center;
}


.contactform input,
.contactform textarea {
  padding: 0.5rem;
  max-width: 100%;
  width: 100%;
}

.formTitle {
  margin-top: 1rem;
}

.contactform input, .contactform textarea {
  background-color: #333;
  border: none;
  color: #fff;
  border: #ddd 1px solid;
}


input.wpcf7-submit {
  color: white;
  border: none;
  margin-top: 2rem;
  border-radius: 0;
  cursor: pointer;
}

.btn {
  opacity: 1;
  transition: all 0.3s ease;
}
.btn:hover {
  opacity: 0.7;
}

.mt-1 {
	margin-top: 1rem;
}

.mb-1 {
	margin-bottom: 1rem;
}


