@charset "UTF-8";
/* サイズ自動調整
------------------------------------------*/
/* ベース
------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: var(--font-size);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.25;
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
@media screen and (max-width: 768px) {
  html {
    font-size: clamp(0.9375rem, 1.0416666667vw, 0.9375rem);
  }
}
@media screen and (max-width: 600px) {
  html {
    font-size: clamp(0.875rem, 0.9722222222vw, 0.875rem);
  }
}

body {
  margin: 0;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-feature-settings: "palt";
}

/* トヨペット ベース
**********************/
:root {
  --font-size: clamp(0.938rem, 0.795rem + 0.3vw, 1.063rem);
  /* --color-accent: #049A55; */
  --color-accent: #005952;
  --color-accent2: #ea601f;
  --color-accent-sub: #edfcf6;
  --color-accent2-sub: #fcffe3;
  --color-black30: rgb(0, 0, 0, 0.3);
  --color-black20: rgb(0, 0, 0, 0.2);
  --color-border-orange: #f4c071;
  --color-gradient-orange: linear-gradient(
    90deg,
    #ffeeb0 0%,
    #fff5e2 50%,
    #ffeeb0 100%
  );
  --color-logo: #666666;
  --background-color-1: linear-gradient(
    90deg,
    #9847ff 0%,
    #bd00ff 50.52%,
    #ff78e1 100%
  );
  --background-color-2: linear-gradient(
    90deg,
    #ff78e1 100%,
    #bd00ff 50.52%,
    #9847ff 0%
  );
  --hover: 0.7;
  /* カラー */
  --color-cafe: #6e3f0d;
  --font-cafe: "Zen Kaku Gothic New", system-ui;
}

/* 見出し
------------------------------------------*/
.c-heading_03 {
  display: inline-block;
  margin-block: clamp(1.25rem, 1.3888888889vw, 1.25rem) clamp(0.625rem, 0.6944444444vw, 0.625rem);
  padding: clamp(0.1875rem, 0.2083333333vw, 0.1875rem) clamp(1.875rem, 2.0833333333vw, 1.875rem);
  background-color: var(--color-cafe);
  color: #fff;
  font-size: clamp(1.125rem, 1.25vw, 1.125rem);
  border-radius: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}

/* 余白
------------------------------------------*/
body {
  background: url("../images/bg.jpg");
  background-repeat: round;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: 2%;
}

/* 共通
------------------------------------------*/
.flex {
  display: flex;
  flex-wrap: wrap;
}

.shop-title {
  margin: 0 0 20px 0;
  color: var(--color-cafe);
  font-family: var(--font-cafe);
  font-weight: 500;
  font-style: normal;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  gap: clamp(0.625rem, 0.6944444444vw, 0.625rem);
}

.center {
  text-align: center;
}

section {
  margin-bottom: 80px;
}

#triangle {
  overflow-x: hidden;
}
#triangle img {
  max-width: 100%;
}

/* MV
------------------------------------------*/
#mv {
  position: relative;
}

.mv_img {
  display: grid;
  grid-template-columns: 0.25fr 0.5fr 0.25fr;
  gap: clamp(1.25rem, 1.3888888889vw, 1.25rem);
  justify-content: center;
  align-items: center;
  flex-direction: row;
  padding: 80px 0 0 0;
  background: url(../images/mv_atama.jpg);
}
@media screen and (max-width: 768px) {
  .mv_img {
    display: flex;
    flex-direction: column;
    padding: 10px 0;
  }
}

#mv .mv-ttl {
  z-index: 100;
}

#mv .mv-ttl img {
  width: 100%;
  max-width: 60vw;
}

#mv .mv-shop {
  display: grid;
  gap: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  #mv .mv-shop {
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(0.3125rem, 0.3472222222vw, 0.3125rem);
  }
}

/* 概要
------------------------------------------*/
#shop-info .flex {
  gap: clamp(3.125rem, 3.4722222222vw, 3.125rem);
}

.c-roundCont {
  background-color: #fffac4;
  font-family: var(--font-cafe);
  color: var(--color-cafe);
}
.c-roundCont._white {
  background-color: #fff;
}

.text {
  font-size: 1rem;
}
.text._md {
  font-size: clamp(1.25rem, 1.3888888889vw, 1.25rem);
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .text._md {
    font-size: clamp(1rem, 1.1111111111vw, 1rem);
  }
}
@media screen and (max-width: 600px) {
  .text._md {
    font-size: clamp(0.875rem, 0.9722222222vw, 0.875rem);
  }
}

.c-roundCont,
#shop-info .flex .col-1,
#shop-info .flex .col-2,
.list-wrap {
  padding: clamp(3.75rem, 4.1666666667vw, 3.75rem) clamp(1.25rem, 1.3888888889vw, 1.25rem);
  border-radius: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}
.c-roundCont:has(._ribbon),
#shop-info .flex .col-1:has(._ribbon),
#shop-info .flex .col-2:has(._ribbon),
.list-wrap:has(._ribbon) {
  padding-top: 0;
}

.c-roundCont,
#shop-info .flex .col-1,
#shop-info .flex .col-2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

#shop-info .flex .col-2 {
  flex-direction: column;
  background-color: #fede84;
}

#shop-info .flex .col-2 .img {
  align-items: center;
  flex-direction: column;
}

#shop-info .flex img.campain-01 {
  max-width: 200px;
  width: 100%;
}

#shop-info .flex img.campain-02 {
  max-width: 580px;
  width: 100%;
}

#shop-info .flex .campain-03 {
  max-width: 600px;
}

#shop-info .design.left,
#reserve .design.left {
  top: -50px;
  left: 0;
}

#shop-info .design.left img {
  width: clamp(15.625rem, 17.3611111111vw, 15.625rem);
}
@media screen and (max-width: 768px) {
  #shop-info .design.left img {
    width: clamp(6.25rem, 6.9444444444vw, 6.25rem);
  }
}

@media screen and (max-width: 768px) {
  #shop-info .design.right img {
    width: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  }
}

#shop-info .design.right,
#reserve .design.right {
  bottom: -50px;
  right: 0;
}

.chusyaku {
  font-size: clamp(0.875rem, 0.9722222222vw, 0.875rem);
  line-height: 1.5;
}
@media screen and (max-width: 600px) {
  .chusyaku {
    font-size: clamp(0.75rem, 0.8333333333vw, 0.75rem);
  }
}

/* 写真 */
#shop-info .design.photo {
  width: 80%;
  max-width: 420px;
}

#shop-info .design.photo.right,
#reserve .design.photo.right {
  bottom: auto;
  right: -5%;
  top: -10%;
}

#shop-info .design.photo.left,
#reserve .design.photo.left {
  top: auto;
  left: -5%;
  bottom: -10%;
}

/* 予約方法
------------------------------------------*/
.c-title {
  font-size: clamp(2.1875rem, 2.4305555556vw, 2.1875rem);
  margin-bottom: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .c-title {
    font-size: clamp(1.5625rem, 1.7361111111vw, 1.5625rem);
  }
}
.c-title._ribbon {
  display: inline-block;
  position: relative;
  height: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  text-align: center;
  box-sizing: border-box;
  top: clamp(-1.875rem, -2.0833333333vw, -1.875rem);
  margin-bottom: 0;
  min-width: clamp(31.25rem, 34.7222222222vw, 31.25rem);
}
@media screen and (max-width: 768px) {
  .c-title._ribbon {
    min-width: auto;
  }
}
.c-title._ribbon::before {
  content: "";
  position: absolute;
  width: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  bottom: clamp(-0.9375rem, -1.0416666667vw, -0.9375rem);
  left: clamp(-2.1875rem, -2.4305555556vw, -2.1875rem);
  z-index: -2;
  border: 20px solid #b1783b;
  border-left-color: transparent; /*山形に切り抜き*/
}
.c-title._ribbon::after {
  content: "";
  position: absolute;
  width: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  bottom: clamp(-0.9375rem, -1.0416666667vw, -0.9375rem);
  right: clamp(-2.1875rem, -2.4305555556vw, -2.1875rem);
  z-index: -2;
  border: 20px solid #b1783b;
  border-right-color: transparent; /*山形に切り抜き*/
}
.c-title._ribbon .c-title__text {
  width: 100%;
  display: inline-block;
  position: relative;
  margin: 0;
  padding: clamp(0.3125rem, 0.3472222222vw, 0.3125rem) clamp(1.25rem, 1.3888888889vw, 1.25rem);
  line-height: clamp(2.8125rem, 3.125vw, 2.8125rem);
  color: #fff;
  background: var(--color-cafe); /*真ん中の背景色*/
}
.c-title._ribbon .c-title__text::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-right: solid 15px #350e01; /*左の折り返し部分*/
}
.c-title._ribbon .c-title__text::after {
  position: absolute;
  content: "";
  top: 100%;
  right: 0;
  border: none;
  border-bottom: solid 10px transparent;
  border-left: solid 15px #350e01; /*右の折り返し部分*/
}

.reserve-cont {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reserve-cont .text._md {
    font-size: clamp(1.0625rem, 1.1805555556vw, 1.0625rem);
  }
}
.reserve-cont__title {
  margin-top: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  margin-bottom: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  font-family: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  font-weight: 700;
}
.reserve-cont__text {
  width: 100%;
  line-height: 1.5;
  padding: clamp(1.25rem, 1.3888888889vw, 1.25rem);
  background-color: #fff;
  border-radius: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .reserve-cont__text {
    padding-inline: clamp(0.3125rem, 0.3472222222vw, 0.3125rem);
  }
}
.reserve-cont__text-str {
  position: relative;
  font-size: clamp(1.375rem, 1.5277777778vw, 1.375rem);
  font-weight: 700;
  display: inline;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .reserve-cont__text-str {
    font-size: clamp(1.0625rem, 1.1805555556vw, 1.0625rem);
    display: inline-block;
  }
}
.reserve-cont__text-str::before {
  content: "";
  display: inline;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: clamp(0.5rem, 0.5555555556vw, 0.5rem);
  background-color: var(--color-border-orange);
  z-index: -1;
}
.reserve-cont__note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(5rem, 5.5555555556vw, 5rem);
  margin-top: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .reserve-cont__note {
    display: block;
  }
}
.reserve-cont__note-list {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-content: center;
  flex-wrap: wrap;
  font-size: clamp(0.9375rem, 1.0416666667vw, 0.9375rem);
  line-height: 1.75;
  margin-top: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  list-style-type: none;
}
.reserve-cont__note-list__item {
  text-indent: clamp(-0.625rem, -0.6944444444vw, -0.625rem);
  margin-left: clamp(0.625rem, 0.6944444444vw, 0.625rem);
}
.reserve-cont__note-list__item::before {
  content: "";
  width: 5px;
  height: 5px;
  background-color: currentColor;
  display: inline-block;
  border-radius: 20px;
  margin-right: clamp(0.3125rem, 0.3472222222vw, 0.3125rem);
  translate: 0 -50%;
}

/* 店舗
------------------------------------------*/
section#shop-list {
  position: relative;
}

#shop-list .title img {
  max-width: clamp(37.5rem, 41.6666666667vw, 37.5rem);
}
@media screen and (max-width: 768px) {
  #shop-list .title img {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  #shop-list .title img {
    width: 80%;
  }
}

#shop-list .title {
  margin: 0 auto;
  width: 100%;
  position: absolute;
  left: 0;
  top: clamp(-3.125rem, -3.4722222222vw, -3.125rem);
}

.list-wrap {
  display: grid;
  justify-items: center;
  gap: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  background-color: #fff;
}

.list-cont_limit {
  padding: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  text-align: center;
  background-color: #fffac4;
  border-radius: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  font-family: var(--font-cafe);
  color: var(--color-cafe);
  margin-block: clamp(0.625rem, 0.6944444444vw, 0.625rem) clamp(1.25rem, 1.3888888889vw, 1.25rem);
}
.list-cont_limit:last-child {
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .list-cont_limit {
    padding: clamp(0.625rem, 0.6944444444vw, 0.625rem);
  }
}
@media screen and (max-width: 600px) {
  .list-cont_limit {
    padding-block: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  }
}
.list-cont_limit__header {
  font-size: clamp(1.25rem, 1.3888888889vw, 1.25rem);
}
.list-cont_limit__header-shop {
  font-size: clamp(1.625rem, 1.8055555556vw, 1.625rem);
  display: block;
}
.list-cont_limit__date {
  font-size: clamp(2.625rem, 2.9166666667vw, 2.625rem);
  font-weight: 600;
  letter-spacing: 1.5;
}
@media screen and (max-width: 768px) {
  .list-cont_limit__date {
    font-size: clamp(1.5rem, 1.6666666667vw, 1.5rem);
  }
}
.list-cont_limit__date-small {
  font-size: clamp(1.875rem, 2.0833333333vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .list-cont_limit__date-small {
    font-size: 1rem;
  }
}
.list-cont_limit__note {
  font-size: clamp(0.875rem, 0.9722222222vw, 0.875rem);
  margin-top: clamp(0.625rem, 0.6944444444vw, 0.625rem);
}

.list-cont_limit__tel {
  max-width: clamp(21.875rem, 24.3055555556vw, 21.875rem);
  margin-inline: auto;
  background-color: var(--color-border-orange);
  border-radius: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  padding: clamp(0.625rem, 0.6944444444vw, 0.625rem) clamp(1.25rem, 1.3888888889vw, 1.25rem);
  display: grid;
  align-items: center;
  grid-template-columns: clamp(2.5rem, 2.7777777778vw, 2.5rem) auto;
  font-size: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  font-weight: 600;
  text-decoration: none;
  color: currentColor;
}
@media screen and (max-width: 768px) {
  .list-cont_limit__tel {
    max-width: auto;
    font-size: clamp(1.375rem, 1.5277777778vw, 1.375rem);
  }
}
@media screen and (max-width: 600px) {
  .list-cont_limit__tel {
    margin-bottom: 0;
  }
}
@media (hover: hover) {
  .list-cont_limit__tel {
    transition: 0.3s ease;
  }
  .list-cont_limit__tel:hover {
    opacity: 0.75;
  }
}

.list-cont.fadeIn.is-active {
  animation: shopAnim 1s ease-out forwards;
}

.limit-cont__place {
  margin-top: clamp(0.625rem, 0.6944444444vw, 0.625rem);
}

@keyframes shopAnim {
  from {
    opacity: 0;
    transform: translateY(3%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 試乗車種
------------------------------------------*/
#car .container {
  max-width: calc(var(--max-width) * 1.15);
}

.cars-cont {
  position: relative;
}

.cars-01,
.cars-02,
.cars-03,
.cars-04 {
  position: relative;
  width: 45%;
  opacity: 0;
}

.cars-02 {
  position: absolute;
  bottom: 45%;
  width: 55%;
}

.cars-03 {
  width: 40%;
  margin-right: auto;
}

.cars-04 {
  width: 55%;
  margin-left: auto;
}

#car .flex {
  gap: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  align-items: flex-end;
}

#car .flex .right {
  right: 0;
  margin-left: auto;
  order: 2;
}

#goal {
  font-family: var(--font-cafe);
}

#goal h1 {
  color: var(--color-cafe);
  font-size: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  animation: 1s ease textAnim forwards;
}
@media screen and (max-width: 768px) {
  #goal h1 {
    font-size: clamp(1.25rem, 1.3888888889vw, 1.25rem);
  }
}

#goal a {
  position: relative;
  width: 100%;
  max-width: 700px;
  height: 120px;
}

#reserve .design.photo {
  max-width: 300px;
}

/* アニメーション
------------------------------------------*/
.fadeIn {
  opacity: 0;
}

.fadeIn.is-active {
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0);
  }
  to {
    opacity: 1;
  }
  40%, 70% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
}
/* ゴール */
#goal .btn-wrap {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
}
#goal .btn-wrap .btn {
  margin-top: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  width: 100%;
  font-size: clamp(1.5625rem, 1.7361111111vw, 1.5625rem);
  text-decoration: none;
  background-color: #005950;
  color: #fff;
  padding-block: clamp(1.25rem, 1.3888888889vw, 1.25rem);
  border-radius: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

#goal a:hover .btn-wrap .btn {
  -webkit-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

/* SP
------------------------------------------*/
#car .fadeIn.is-active,
#mv .fadeIn.is-active {
  opacity: 1;
  animation: none;
}

.fadeIn.is-active .left {
  animation: slideInLeft 1s ease forwards;
}

.fadeIn.is-active .right {
  animation: slideInRight 1s ease forwards;
}

/* 装飾 */
.design {
  position: absolute;
  display: flex;
  opacity: 0;
  z-index: 100;
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0%);
  }
}
#mv .fadeIn.is-active #mv-ttl {
  opacity: 0;
  animation: fadeIn 1s ease forwards;
  animation-delay: 1s;
}

.fadeIn.is-active .delay-01 {
  animation-delay: 0.5s;
}

.fadeIn.is-active .delay-02 {
  animation-delay: 1s;
}

.fadeIn.is-active .delay-03 {
  animation-delay: 1.5s;
}

.fadeIn.is-active .delay-04 {
  animation-delay: 2s;
}

/* ipad
------------------------------------------*/
@media screen and (min-width: 1000px) {
  :root {
    --width: 1440;
    --max-width: 1280px;
  }
  .sp {
    display: none;
  }
  .list-wrap {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 1200px) {
  :root {
    --width: 1200;
    --max-width: 1040px;
  }
  .container {
    padding-inline: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  }
  #shop-info .design.photo {
    width: 300px;
  }
  #shop-info .design.photo.left,
  #reserve .design.photo.left {
    bottom: -20%;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --width: 1000;
    --max-width: 960px;
  }
  .container {
    padding: 0 clamp(3.125rem, 3.4722222222vw, 3.125rem);
  }
  #car .flex .right {
    order: inherit;
  }
  .cars-01,
  .cars-02,
  .cars-03,
  .cars-04 {
    width: 80%;
  }
  .cars-02 {
    width: 100%;
    position: relative;
  }
  .cars-03 {
    width: 100%;
    margin-right: 0;
    margin-top: clamp(3.125rem, 3.4722222222vw, 3.125rem);
  }
  .cars-04 {
    width: 100%;
    margin-left: 0;
  }
}
/* SP
------------------------------------------*/
@media screen and (max-width: 768px) {
  #shop-info .design.photo.right,
  #shop-info .design.photo.left,
  #reserve .design.photo.right,
  #reserve .design.photo.left {
    display: none;
  }
}
@media screen and (max-width: 599px) {
  :root {
    --width: 600;
    --max-width: 590px;
  }
  .pc {
    display: none;
  }
  .container {
    padding: 0 clamp(1.25rem, 1.3888888889vw, 1.25rem);
  }
  .design {
    width: auto;
  }
  .design img {
    width: 50%;
  }
  #shop-info .flex {
    gap: clamp(6.25rem, 6.9444444444vw, 6.25rem);
  }
  #shop-info .design.right,
  #reserve .design.right {
    justify-content: flex-end;
  }
  #shop-info .flex .col-2 .img {
    gap: clamp(1.875rem, 2.0833333333vw, 1.875rem);
  }
  .list-wrap {
    padding: clamp(5.625rem, 6.25vw, 5.625rem) clamp(0.625rem, 0.6944444444vw, 0.625rem) 10% clamp(0.625rem, 0.6944444444vw, 0.625rem);
  }
  #mv .mv-ttl img {
    max-width: 100%;
  }
  #shop-list .title {
    top: -30px;
    left: 0;
  }
  #goal a {
    font-size: 1.25rem;
    padding: 5%;
  }
  #shop-info .design.photo.left,
  #reserve .design.photo.left {
    display: flex;
  }
  #shop-info .design.photo.left,
  #reserve .design.photo.left {
    bottom: -20%;
    left: -10%;
  }
}

/*# sourceMappingURL=style.css.map */
