@charset "utf-8";

body {
  background: url(../top-img/top-bg.png);
}

main {
  width: 100%;
  max-width: 1400px;
  padding-top: 5px;
}

/*----ローディング画面のCSS----*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  background: url(../top-img/top-bg.png) no-repeat center/100%;
  z-index: 9999999;
  text-align: center;
  color: #7c4040;
}

#splash-logo {
  position: absolute;
  top: 40%;
  left: 60%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定 */
#splash-logo img {
  width: 20%;
}

#splash p {
  font-size: 40px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.red-shoe {
  animation: rotation 1s ease-out infinite;
  /* 2コマで終わらせて次へ */
  animation-timing-function: steps(2, end);
}

@keyframes rotation {
  0% {
    transform: rotate(-15deg);
  }
  100% {
    transform: rotate(15deg);
  }
}

/* テキストタイピング */
.TextTyping span {
  display: none;
}

/*文字列後ろの線の設定*/
.TextTyping::after {
  content: "|";
  animation: typinganime 0.8s ease infinite;
}

@keyframes typinganime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* ----画面遷移のためのCSS---- */

body {
  background: url(../top-img/top-bg.png); /*遷移アニメーションと同じ色を指定*/
}

body.appear {
  background: url(../top-img/top-bg.png);
  /*画面を開いた後の背景色を指定*/
}

/*画面遷移アニメーション*/
.splashbg1,
.splashbg2 {
  display: none;
}

/*bodyにappearクラスがついたら出現*/
body.appear .splashbg1,
body.appear .splashbg2 {
  display: block;
}

/*上に消えるエリア*/
body.appear .splashbg1 {
  animation-name: PageAnime;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  bottom: 50%;
  left: 0;
  transform: scaleY(1);
  background: url(../top-img/top-bg.png);
  /*伸びる背景色の設定*/
}

@keyframes PageAnime {
  0% {
    transform-origin: top;
    transform: scaleY(1);
  }

  100% {
    transform-origin: top;
    transform: scaleY(0);
  }
}

/*下に消えるエリア*/
body.appear .splashbg2 {
  animation-name: PageAnime2;
  animation-duration: 1.4s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 50%;
  left: 0;
  transform: scaleY(1);
  background: url(../top-img/top-bg.png);
  /*伸びる背景色の設定*/
}

@keyframes PageAnime2 {
  0% {
    transform-origin: bottom;
    transform: scaleY(1);
  }
  100% {
    transform-origin: bottom;
    transform: scaleY(0);
  }
}

/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.top-fv {
  position: relative;
}

.woman {
  width: 11%;
  position: absolute;
  bottom: 4%;
  right: 29%;
  animation: rotation 1s ease-out infinite;
  animation-timing-function: steps(2, end);
}

.scrolldown2 {
  /* .top-fvに対して */
  position: absolute;
  bottom: -30px;
  left: 50%;
}

/*Scrollテキストの描写*/
.scrolldown2 span {
  /*描画位置*/
  position: absolute;
  left: 10px;
  bottom: 14px;
  /*テキストの形状*/
  color: #5c3f00;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}

/* 丸の描写 */
.scrolldown2:before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -4px;
  /*丸の形状*/
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #5c3f00;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite,
    cirlemovehide 1.6s ease-out infinite;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 45px;
  }
  100% {
    bottom: -5px;
  }
}

/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

/* 線の描写 */
.scrolldown2:after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: 0;
  /*線の形状*/
  width: 2px;
  height: 60px;
  background: #5c3f00;
}

.sns {
  text-align: center;
  height: 140px;
  padding-top: 90px;
}

.sns img {
  width: 21px;
  margin: 0 15px;
}

.sns .facebook {
  width: 16px;
}

.catch-copy {
  height: 1000px;
  background-attachment: fixed;
  background-size: 100%;
  background-repeat: no-repeat;
  display: flex;
  justify-content: space-around;
}

.catch-copy p {
  writing-mode: vertical-rl;
  color: #f2f6df;
  margin-top: 10%;
  font-size: 30px;
}

.catch-copy p:nth-of-type(1) {
  margin-top: 40%;
}

/* 太陽エリア */
.sun {
  width: 210px;
  height: 210px;
  background: url(../top-img/yuuhi-bg.png) no-repeat top/cover;
  border-radius: 50%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
}

.sun p {
  position: absolute;
  top: 21%;
  right: 0;
  left: 0;
  color: #f2f6df;
  font-size: 17px;
  line-height: 1.8;
}

.nagasaki {
  position: relative;
}

/* あしあと */
.right .stepsTrigger {
  opacity: 0;
  transform: rotate(45deg);
  position: absolute;
  top: 25%;
  right: 8%;
}

.steps {
  width: 200px; /*1フレーム分の横幅*/
  height: 200px; /*1フレーム分の縦幅*/
  background: url("../top-img/steps1.png") no-repeat;
  /*背景画像の読み込み*/
  animation: stepsline 1s steps(5) forwards;
  /*stepsline→アニメーション名
  1s→アニメーションをする時間
  step→（）の中には、アニメーション制作コマ数-1の値を入れる（例：6コマ-1コマ=5コマ
  forwards→最後の形を維持*/
}

@keyframes stepsline {
  0% {
    opacity: 0;
    background-position: 0 0;
  }
  100% {
    opacity: 1;
    background-position: -1000px 0; /*アニメーション制作コマ数から1コマ分引いた横幅を指定。
    （例：今回は1フレーム横幅200pxで制作しているので全体の1200px-200px=1000px⇒-1000px）を指定。*/
  }
}

.left .steps {
  width: 200px; /*1フレーム分の横幅*/
  height: 200px; /*1フレーム分の縦幅*/
  background: url("../top-img/cat.png") no-repeat;
  /*背景画像の読み込み*/
  animation: stepsleft 1s steps(5) forwards;
  opacity: 0;
  /* scale(1,-1)で上下反転 */
  transform: rotate(80deg) scale(1, -1);
  position: absolute;
  left: 10%;
  bottom: 25%;
}

@keyframes stepsleft {
  0% {
    opacity: 0;
    background-position: 0 0;
  }
  100% {
    opacity: 1;
    background-position: -1000px 0; 
  }
}

/* 路面電車エリア */
.scroll-infinity__wrap ul li {
  margin: 0 2% -2%;
}

/* 右から左 */
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.scroll-infinity__wrap {
  /* 路面電車を下に配置 */
  padding-top: 40%;
  display: flex;
  overflow: hidden;
}

.scroll-infinity__list {
  display: flex;
  list-style: none;
  padding: 0;
}

.scroll-infinity__list--left {
  animation: infinity-scroll-left 20s infinite linear 0.5s both;
}

.scroll-infinity__item {
  width: calc(100vw / 6);
}

.scroll-infinity__item > img {
  width: 100%;
}

/* スクロールに合わせて画像表示 */
.ag {
  height: 1000px;
  position: relative;
  text-align: center;
  max-width: 1400px;
  background: url(../img/yuuhi_03.png) no-repeat center/cover;
}

.bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 0;
  overflow: hidden;
  width: 100%;
  height: 0;
  /*初期状態では画像は隠れている */
  transition: height 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  /*高さの遷移*/
}

.bg img {
  width: 100%;
  max-height: 100vh;
  object-fit: contain;
  object-position: top;
}

/* 女性２人 */
.ag .girls {
  position: absolute;
  top: 42%;
  right: 44%;
  width: 100px;
}

.ag .girls img {
  width: 48%;
}

.ag .girls .comment {
  position: relative;
}

.conversation {
  position: absolute;
  top: -90px;
  right: -80px;
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 100%;
  font-size: 15px;
  background: #ebc89d;
  border: solid 2px #5c3f00;
  border-radius: 5px;
  display: none;
}

.conversation:before {
  content: "";
  position: absolute;
  top: 58%;
  /* left: -15%; */
  left: -16px;
  margin-top: -12px;
  border: 9px solid transparent;
  border-right: 9px solid #ebc89d;
  z-index: 2;
}

.conversation:after {
  content: "";
  position: absolute;
  top: 60%;
  /* left: -20.2%; */
  left: -22px;
  margin-top: -14px;
  border: 10px solid transparent;
  border-right: 12px solid #5c3f00;
  z-index: 1;
}

.girls:hover .conversation {
  display: block;
}

/* 赤いチェックワンピの女性 */
.ag .red-woman2 {
  display: flex;
  position: absolute;
  bottom: 1%;
  left: 28%;
}

.red-woman2 img {
  width: 21%;
}

.conversation2 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 3em -80px;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 37%;
  font-size: 15px;
  background: #ebc89d;
  border: solid 2px #5c3f00;
  border-radius: 5px;
  display: none;
  z-index: 1;
}

.conversation2:before {
  content: "";
  position: absolute;
  top: 59%;
  left: -16px;
  margin-top: -12px;
  border: 9px solid transparent;
  border-right: 9px solid #ebc89d;
  z-index: 3;
}

.conversation2:after {
  content: "";
  position: absolute;
  top: 59%;
  left: -22px;
  margin-top: -14px;
  border: 10px solid transparent;
  border-right: 12px solid #5c3f00;
  z-index: 2;
}

.red-woman2:hover .conversation2 {
  display: block;
}

/* 青いワンピースの女性 */
.ag .blue-woman {
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  bottom: 3%;
  right: 26%;
}

.blue-woman img {
  width: 22%;
}

.conversation3 {
  position: relative;
  display: inline-block;
  margin: 1.5em -60px 2.8em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 40%;
  font-size: 16px;
  background: #ebc89d;
  border: solid 2px #5c3f00;
  border-radius: 5px;
  display: none;
}

.conversation3:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -18px;
  margin-top: -12px;
  border: 11px solid transparent;
  border-left: 9px solid #ebc89d;
  z-index: 2;
}

.conversation3:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -14px;
  border: 13px solid transparent;
  border-left: 12px solid #5c3f00;
  z-index: 1;
}

.blue-woman:hover .conversation3 {
  display: block;
}

.kissa-sr {
  position: absolute;
  right: 10%;
  bottom: 10%;
  width: 20%;
}

.kissa-sr .comment {
  display: flex;
  flex-direction: column-reverse;
}

.kissa-sr .comment img {
  width: 60%;
  margin-right: 28%;
}

.ag .kissa-sr .comment {
  position: relative;
}

.conversation4 {
  position: relative;
  display: inline-block;
  margin: 1.5em 0;
  padding: 7px 10px;
  min-width: 120px;
  max-width: 72%;
  font-size: 16px;
  background: #ebc89d;
  border: solid 2.7px #5c3f00;
  border-radius: 5px;
  display: none;
}

.conversation4:before {
  content: "";
  position: absolute;
  bottom: -22px;
  left: 50%;
  margin-left: -15px;
  border: 12px solid transparent;
  border-top: 12px solid #ebc89d;
  z-index: 2;
}

.conversation4:after {
  content: "";
  position: absolute;
  bottom: -28px;
  left: 50%;
  margin-left: -17px;
  border: 14px solid transparent;
  border-top: 14px solid #5c3f00;
  z-index: 1;
}

.kissa-sr:hover .conversation4 {
  display: block;
}
.conversation4 p {
  margin: 0;
  padding: 0;
}

.kissa-sr:hover .conversation4 {
  display: block;
}

.ag-comment{
  position: absolute;
  top: 50%;
  left: 7%;
  background-color: #ffffff4D;
  border-radius: 5px;
  padding: 5px 10px;
  animation-delay: 2s;
}

.fadeUp{
  animation: fadeUp 2s forwards;
  opacity: 0;
}

@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(50px);
  }

  to{
    opacity: 1;
    transform: translateY(0);
  }
}

.move {
  animation: rotation 1s ease-out infinite;
  animation-timing-function: steps(2, end);
}

@keyframes rotation {
  0% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(10deg);
  }
}
.move2 {
  animation: rotation2 1s ease-out infinite;
  animation-timing-function: steps(2, end);
}

@keyframes rotation2 {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}

.move3 {
  animation: rotation3 1s ease-out infinite;
  animation-timing-function: steps(2, end);
}

@keyframes rotation3 {
  0% {
    transform: rotate(2deg);
  }
  100% {
    transform: rotate(-2deg);
  }
}

/* アクセス部分 */
.access {
  position: relative;
}

.access h2 {
  font-family: "Aoboshi One", serif;
  font-weight: 500;
  font-size: 40px;
  position: absolute;
  top: 43%;
  left: 44%;
}

.google-map iframe {
  width: 370px;
  height: 300px;
}

.map {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  margin: 150px 0.01% 0 0;
}

.address {
  margin-right: 7.5%;
}

.address p:nth-of-type(2) {
  padding-bottom: 15px;
}

.address p:nth-last-of-type(3),
.address p:nth-of-type(4),
.address p:nth-of-type(5) {
  padding-left: 15px;
}

.map-info {
  margin-left: 7.5%;
}

.map-info p span {
  margin-left: 15px;
}

.map-info p:nth-of-type(1) {
  padding-bottom: 35px;
}

/* 店内の様子 */
.shop-info .door {
  width: 200px;
  aspect-ratio: 1/1.25;
  object-fit: contain;
}

.shop-info .door2 {
  padding-left: 10%;
}

.shop-info .shop {
  width: 250px;
}

.shop-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 180px 0.04% 0 0.07%;
}

.shop-info dl {
  margin: 0 11.25%;
}

/* ２つのメニュー */
.two-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  margin-top: 100px;
}

.moyou1 {
  background: url(../top-img/left.png) no-repeat center/100%;
  width: 400px;
  height: 503px;
  position: relative;
  text-align: center;
}

.kissa-menu {
  background-color: #f2f6df;
  border-radius: 50%;
  width: 330px;
  height: 330px;
  text-align: center;
  position: relative;
  position: absolute;
  top: 17%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.kissa-menu:hover {
  transform: scale(0.9);
  transition-duration: 0.5s;
}

.kissa-menu h2 {
  font-weight: normal;
  position: absolute;
  top: 25%;
  right: 0;
  left: 0;
  line-height: 2;
}

.kissa-menu p {
  position: absolute;
  top: 60%;
  right: 0;
  left: 6%;
  line-height: 1.7;
}

.kissa-menu p span {
  margin-right: 15px;
}

.moyou2 {
  background: url(../top-img/right.png) no-repeat center/100%;
  width: 400px;
  height: 503px;
  position: relative;
}

.stained-menu {
  background-color: #f2f6df;
  border-radius: 50%;
  width: 330px;
  height: 330px;
  text-align: center;
  position: relative;
  position: absolute;
  top: 17%;
  right: 0;
  left: 0;
  margin: 0 auto;
}

.stained-menu:hover {
  transform: scale(0.9);
  transition-duration: 0.5s;
}

.stained-menu h2 {
  font-weight: normal;
  position: absolute;
  top: 25%;
  right: 0;
  left: 0;
  line-height: 2;
}

.stained-menu p {
  position: absolute;
  top: 60%;
  right: 0;
  left: 0;
  line-height: 1.7;
}


  .group{
    opacity: 0;
  }
  
  
  .fadeUp {
  animation-name:fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode:forwards;
  opacity: 0;
  }
  @keyframes fadeUpAnime{
    from {
      opacity: 0;
    transform: translateY(100px);
    }
  
    to {
      opacity: 1;
    transform: translateY(0);
    }
  }

  .delay-time02{
    animation-delay: 0.2s;
}
  

@media (max-width: 1779px) {
  .ag {
    height: 1000px;
  }

  .ag .girls {
    position: absolute;
    top: 48%;
    right: 44%;
    width: 100px;
  }

  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 25%;
  }

  .red-woman2 img {
    width: 23%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 3%;
    right: 29%;
  }

  .blue-woman img {
    width: 23%;
  }
}

@media (max-width: 1744px) {
  .ag {
    height: 900px;
  }

  .ag .girls {
    position: absolute;
    top: 47%;
    right: 44%;
    width: 100px;
  }

  .ag .girls img {
    width: 43%;
  }

  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 25%;
  }

  .red-woman2 img {
    width: 21%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 3%;
    right: 29%;
  }

  .blue-woman img {
    width: 21%;
  }
}

@media (max-width: 1650px) {
  /* 女性２人 */
  .ag .girls {
    position: absolute;
    top: 47%;
    right: 43%;
    width: 100px;
  }

  .ag .girls img {
    width: 43%;
  }
}

@media (max-width: 1500px) {
  .ag .girls {
    position: absolute;
    top: 45%;
    right: 43%;
    width: 100px;
  }

  .ag .girls img {
    width: 42%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 28%;
  }

  .red-woman2 img {
    width: 19%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 3%;
    right: 32%;
  }

  .blue-woman img {
    width: 20%;
  }
}


@media (max-width: 1400px) {
  .ag .girls {
    position: absolute;
    top: 48%;
    right: 43%;
    width: 100px;
  }

  .ag .girls img {
    width: 42%;
  }
}

@media (max-width: 1362px) {
  .ag .girls {
    position: absolute;
    top: 45%;
    right: 43%;
    width: 100px;
  }

  .ag .girls img {
    width: 38%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 28%;
  }

  .red-woman2 img {
    width: 17%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 3%;
    right: 32%;
  }

  .blue-woman img {
    width: 18%;
  }
}

@media (max-width: 1100px) {
  .access h2 {
    top: 41%;
    left: 42.5%;
  }

  .right .stepsTrigger {
    opacity: 0;
    transform: rotate(45deg);
    position: absolute;
    top: 23%;
    right: 8%;
  }

  .left .steps {
    left: 10%;
    bottom: 14%;
  }
  .ag .girls {
    position: absolute;
    top: 45%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 35%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 28%;
  }

  .red-woman2 img {
    width: 17%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 3%;
    right: 30%;
  }

  .blue-woman img {
    width: 18%;
  }
  
}

@media (max-width: 1000px) {
  .left .steps {
    left: 10%;
    bottom: 14%;
  }
  .ag .girls {
    position: absolute;
    top: 42%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 32%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 0;
    left: 23%;
  }

  .red-woman2 img {
    width: 15%;
  }

  .conversation2{
    margin: 1.5em 0 1.5em -80px;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 2%;
    right: 26%;
  }

  .blue-woman img {
    width: 16%;
  }

  .conversation3{
  margin: 1.5em -60px 1.5em 0;
 }

 .ag-comment{
  position: absolute;
  top: 50%;
  left: 2%;
  background-color: #ffffff4D;
  border-radius: 5px;
  padding: 5px 10px;
  animation-delay: 3s;
}


}

@media (max-width: 922px) {
  .catch-copy {
    height: 780px;
  }
  /* あしあと */
  .right .stepsTrigger {
    transform: rotate(45deg) scale(0.8);
    top: 20%;
    right: 8%;
  }

  .left .steps {
    transform: rotate(80deg) scale(1, -1) scale(0.8);
    position: absolute;
    left: 10%;
    bottom: 16%;
  }

  .scroll-infinity__wrap ul li {
    margin: 0 2% -2.2%;
  }

  .access h2 {
    top: 41%;
    left: 42%;
    font-size: 37px;
  }

  .map {
    margin: 150px 0 0;
  }

  .address p:nth-of-type(2) {
    padding-bottom: 15px;
  }

  .map-info p:nth-of-type(1) {
    padding-bottom: 35px;
  }

  .address {
    margin-right: 1%;
  }

  .map-info {
    margin-left: 2%;
  }

  .shop-info dl {
    margin: 0 10%;
  }

  .ag-comment{
    position: absolute;
    top: 55%;
    left: 2%;
    background-color: #ffffff4D;
    border-radius: 5px;
    padding: 5px 10px;
    animation-delay: 3s;
  }  
}

@media (max-width: 834px) {
  .catch-copy {
    height: 700px;
  }

  .catch-copy p {
    font-size: 25px;
  }

  .ag .girls {
    position: absolute;
    top: 40%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 42%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 15%;
  }

  .red-woman2 img {
    width: 18%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 2%;
    right: 20%;
  }
  
  .blue-woman img {
    width: 18%;
  }
  /* 喫茶店 */
    .kissa-sr {
      position: absolute;
      right: 0;
      bottom: 7%;
      width: 30%;
    }
        
    .kissa-sr .comment img {
      width: 60%;
      margin-right: 0;
    }
        
    .conversation4 {
      padding: 7px;
      min-width: 100px;
      max-width: 62%;
      font-size: 12px;
    }

  .access h2 {
    top: 38.5%;
    font-size: 34px;
  }
  .map {
    margin: 80px 20% 0;
  }
  .address {
    margin-right: 0;
  }

  .map-info {
    margin-left: 0;
  }

  .google-map {
    margin: 40px 0;
  }

  .map-info p:nth-of-type(1) {
    padding-bottom: 16px;
  }

  .shop-info {
    align-items: center;
    flex-direction: column-reverse;
    margin: 110px 7% 0;
  }

  .shop-info dl {
    margin: 0;
  }

  .shop-info .door {
    margin-top: 80px;
  }

  .shop-info dd {
    margin-top: 10px;
  }

  .two-menu {
    margin: 80px 3%;
  }
}

@media (max-width: 760px) {
  .openbtn {
    /*ボタンの位置*/
    right: 4%;
  }

  .catch-copy {
    height: 650px;
  }

  .catch-copy p {
    font-size: 23px;
  }

  .access h2 {
    font-size: 30px;
    left: 42%;
  }

  /* あしあと */
  .right .stepsTrigger {
    opacity: 0;
    transform: rotate(45deg) scale(0.7);
    position: absolute;
    top: 20%;
    right: 6%;
  }

  .left .steps {
    transform: rotate(80deg) scale(1, -1) scale(0.7);
    position: absolute;
    left: 7%;
    bottom: 13%;
  }

  .ag .girls {
    position: absolute;
    top: 45%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 37%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 0;
    left: 18%;
  }

  .red-woman2 img {
    width: 18%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 2%;
    right: 19%;
  }

  .blue-woman img {
    width: 18%;
  }

/* 喫茶店 */
  .kissa-sr {
    position: absolute;
    right: -3%;
    bottom: 7%;
    width: 30%;
  }
      
  .kissa-sr .comment img {
    width: 60%;
    margin-right: 0;
  }
      
  .conversation4 {
    padding: 7px;
    min-width: 100px;
    max-width: 62%;
    font-size: 12px;
  }
  
  .ag-comment{
    position: absolute;
    top: 58%;
    left: 2%;
    background-color: #ffffff4D;
    border-radius: 5px;
    padding: 5px 10px;
    animation-delay: 2s;
  }  

}

@media (max-width: 670px) {
  .openbtn {
    /*ボタンの位置*/
    right: 5%;
  }

  .catch-copy {
    height: 450px;
  }

  .catch-copy p {
    font-size: 20px;
    margin-top: 10%;
  }

  .catch-copy p:nth-of-type(1) {
    margin-top: 25%;
  }

  .scroll-infinity__wrap ul li {
    margin: 0 2% -2.4%;
  }

  .ag {
    height: 800px;
  }

  .ag .girls {
    position: absolute;
    top: 46%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 31%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 0;
    left: 10%;
  }

  .red-woman2 img {
    width: 15%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 2%;
    right: 15%;
  }

  .blue-woman img {
    width: 15%;
  }

    /* 喫茶店 */
    .kissa-sr {
      position: absolute;
      right: -3%;
      bottom: 7%;
      width: 30%;
    }
    
    .kissa-sr .comment img {
      width: 60%;
      margin-right: 0;
    }
    
    .conversation4 {
      padding: 7px;
      min-width: 100px;
      max-width: 62%;
      font-size: 12px;
    }
  

  .access h2 {
    font-size: 26px;
    left: 42%;
  }

  .sun {
    width: 180px;
    height: 180px;
  }

  .sun p {
    top: 18%;
    right: 0;
    left: 0;
    font-size: 15px;
  }

  /* あしあと */
  .right .stepsTrigger {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    position: absolute;
    top: 18%;
    right: 5%;
  }

  .left .steps {
    transform: rotate(80deg) scale(1, -1) scale(0.6);
    position: absolute;
    left: 5%;
    bottom: 12%;
  }

  .ag-comment{
    position: absolute;
    top: 58%;
    left: 1%;
    background-color: #ffffff4D;
    border-radius: 5px;
    padding: 5px 10px;
    animation-delay: 2s;
    font-size: 15px;
  }  

  .map-info p:nth-of-type(1) {
    padding-bottom: 8px;
  }

  .map p {
    font-size: 14px;
  }
}

@media (max-width: 567px) {
  .openbtn {
    /*ボタンの位置*/
    right: 5%;
  }

  .catch-copy {
    height: 500px;
  }

  .ag {
    height: 700px;
  }

  .ag .girls {
    position: absolute;
    top: 49%;
    right: 40%;
    width: 100px;
  }

  .ag .girls img {
    width: 31%;
  }
  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 0;
    left: 5%;
  }

  .red-woman2 img {
    width: 13%;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 2%;
    right: 7%;
  }

  .blue-woman img {
    width: 13%;
  }

  /* 喫茶店 */
  .kissa-sr {
    position: absolute;
    right: -3%;
    bottom: 7%;
    width: 30%;
  }
  
  .kissa-sr .comment img {
    width: 60%;
    margin-right: 0;
  }
  
  .conversation4 {
    padding: 7px;
    min-width: 100px;
    max-width: 62%;
    font-size: 12px;
  }
  

  .access h2 {
    font-size: 26px;
    left: 41%;
  }

  .sun {
    width: 180px;
    height: 180px;
  }

  .sun p {
    top: 18%;
    right: 0;
    left: 0;
    font-size: 15px;
  }

  /* あしあと */
  .right .stepsTrigger {
    opacity: 0;
    transform: rotate(45deg) scale(0.6);
    position: absolute;
    top: 12%;
    right: 5%;
  }

  .left .steps {
    transform: rotate(80deg) scale(1, -1) scale(0.6);
    position: absolute;
    left: 5%;
    bottom: 9%;
  }

  .scroll-infinity__wrap {
    /* 路面電車を下に配置 */
    padding-top: 50%;
    display: flex;
    overflow: hidden;
  }

  .ag-comment{
    position: absolute;
    top: 61%;
    left: 1%;
    background-color: #ffffff4D;
    border-radius: 5px;
    padding: 5px 10px;
    animation-delay: 2s;
    font-size: 14px;
  }  


  .map-info p:nth-of-type(1) {
    padding-bottom: 8px;
  }

  .map p {
    font-size: 14px;
  }

  .moyou2 {
    margin-top: -50px;
  }
}

@media (max-width: 500px){
  .access h2 {
    font-size: 25px;
    left: 40%;
  }
}

@media (max-width: 445px){
  .access h2 {
    font-size: 24px;
    left: 39%;
  }
}

@media (max-width: 407px){
  .access h2 {
    font-size: 22px;
    left: 39%;
  }
}

@media (max-width: 375px) {
  #splash-logo {
    top: 40%;
    left: 60%;
    transform: translate(-50%, -50%);
  }

  /* Loading アイコンの大きさ設定 */
  #splash-logo img {
    width: 18%;
  }

  #splash p {
    font-size: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /*Scrollテキストの描写*/
  .scrolldown2 span {
    /*テキストの形状*/
    font-size: 0.6rem;
  }

  .openbtn {
    /*ボタンの位置*/
    right: 3%;
  }

  /* 丸の描写 */
  .scrolldown2:before {
    left: -3px;
    /*丸の形状*/
    width: 8px;
    height: 8px;
  }

  /*下からの距離が変化して丸の全体が上から下に動く*/
  @keyframes circlemove {
    0% {
      bottom: 45px;
    }
    100% {
      bottom: 5px;
    }
  }

  /* 線の描写 */
  .scrolldown2:after {
    bottom: 10px;
    height: 40px;
  }

  .sns {
    height: 120px;
    padding-top: 70px;
  }

  .catch-copy {
    height: 250px;
    /* background-attachmentの解除 */
    background-attachment: scroll;
    background-size: 100%;
  }

  .catch-copy p {
    margin-top: 3%;
    font-size: 17px;
  }

  .catch-copy p:nth-of-type(1) {
    margin-top: 15%;
  }

  .sun {
    width: 160px;
    height: 160px;
  }

  .sun p {
    top: 20%;
    right: 0;
    left: 0;
    font-size: 13px;
  }

  /* あしあと */
  .right .stepsTrigger {
    opacity: 0;
    transform: rotate(45deg) scale(0.5);
    position: absolute;
    top: -5%;
    right: -5%;
  }

  .left .steps {
    transform: rotate(80deg) scale(1, -1) scale(0.5);
    position: absolute;
    left: 2%;
    bottom: 6%;
  }

  /* スクロールに合わせて画像表示 */
  .ag {
    height: 1100px;
    position: relative;
    text-align: center;
    max-width: 1400px;
    background: url(../img/yuuhi_03.png) no-repeat center/cover;
  }

  /* 女性２人 */
  .ag .girls {
    position: absolute;
    top: 77%;
    width: 20%;
    right: 38%;
  }

  .conversation {
    top: -75px;
    right: -50px;
    margin: 1.5em 0 1.5em 15px;
    padding: 7px 10px;
    min-width: 120px;
    max-width: 100%;
    font-size: 15px;
  }

  .conversation:before {
    content: "";
    position: absolute;
    top: 58%;
    left: -18px;
    margin-top: -12px;
    border: 9px solid transparent;
    border-right: 9px solid #ebc89d;
    z-index: 2;
  }

  .conversation:after {
    content: "";
    position: absolute;
    top: 58%;
    left: -23px;
    margin-top: -14px;
    border: 11px solid transparent;
    border-right: 12px solid #5c3f00;
    z-index: 1;
  }

  /* 赤いチェックワンピの女性 */
  .ag .red-woman2 {
    bottom: 1%;
    left: 0;
  }

  .red-woman2 img {
    width: 11%;
  }

  .conversation2 {
    margin: 0 -100px;
    padding: 7px 10px;
    min-width: 200px;
    max-width: 37%;
    font-size: 15px;
    z-index: 1;
  }

  .conversation2:before {
    content: "";
    position: absolute;
    top: 58%;
    left: -18px;
    margin-top: -12px;
    border: 9px solid transparent;
    border-right: 9px solid #ebc89d;
    z-index: 3;
  }

  .conversation2:after {
    content: "";
    position: absolute;
    top: 58%;
    left: -23px;
    margin-top: -14px;
    border: 11px solid transparent;
    border-right: 12px solid #5c3f00;
    z-index: 2;
  }

  /* 青いワンピースの女性 */
  .ag .blue-woman {
    bottom: 1%;
    right: 0;
  }

  .blue-woman img {
    width: 11%;
  }

  .conversation3 {
    margin: 0 -70px;
    padding: 7px 10px;
    min-width: 200px;
    max-width: 40%;
    font-size: 15px;
  }

  .conversation3:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -20px;
    margin-top: -12px;
    border: 11px solid transparent;
    border-left: 9px solid #ebc89d;
    z-index: 2;
  }

  .conversation3:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -25px;
    margin-top: -14px;
    border: 13px solid transparent;
    border-left: 12px solid #5c3f00;
    z-index: 1;
  }

  /* 喫茶店 */
.kissa-sr {
  position: absolute;
  right: 0;
  bottom: 4%;
  width: 30%;
}

.kissa-sr .comment img {
  width: 60%;
  margin-right: 0;
}

.conversation4 {
  padding: 7px;
  min-width: 100px;
  max-width: 62%;
  font-size: 12px;
}

.ag-comment{
  position: absolute;
  top: 80%;
  left: 4%;
  background-color: #ffffff4D;
  border-radius: 5px;
  padding: 5px 1px;
  animation-delay: 1.3s;
  font-size: 14px;
  width: 42%;
}  

  /* アクセス部分 */
  .access h2 {
    font-size: 18px;
    left: 41%;
  }

  .google-map iframe {
    width: 330px;
    height: 290px;
    margin: -10px 0;
  }

  .map {
    margin: 50px 20% 0;
  }

  .map p {
    font-size: 14px;
  }

  .address p:nth-of-type(2) {
    padding-bottom: 15px;
  }

  .map-info p:nth-of-type(1) {
    padding-bottom: 12px;
  }

  .shop-info {
    align-items: center;
    flex-direction: column-reverse;
    margin: 90px 7% 0;
  }

  .shop-info .door {
    margin-top: 60px;
  }

  /* ２つのメニュー */
  .two-menu {
    margin: 50px 4%;
  }

  .moyou1 {
    width: 320px;
    height: 423px;
  }

  .kissa-menu {
    width: 270px;
    height: 270px;
    top: 18%;
  }

  .kissa-menu h2 {
    line-height: 1.5;
  }  

  .moyou2 {
    width: 320px;
    height: 423px;
    margin-top: -50px;
  }

  .stained-menu {
    width: 270px;
    height: 270px;
    top: 18%;
  }

  .stained-menu h2{
    line-height: 1.5;
  }
}
