@charset "UTF-8";

html {
  font-size: 14px;
  color: #383838;
}

body {
  width: 100%;
  background: #eeebcf;
  /* font-family: "noto-sans-cjk-jp", sans-serif; */

  font-family: zen-kaku-gothic-new, sans-serif;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 3px;
  line-height: 1.8;
}

*,
a {
  color: #383838;
}

.macron {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 700;
  font-style: normal;
  line-height: 1.8;
  letter-spacing: 3px;
}

/* ///////////////////////////////////////////// */

header {
  width: 100%;
  height: calc(100vw * 0.28);
  background: url(../img/header/noren_sp.webp) no-repeat;
  background-size: 100%;
  background-position: right top;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  z-index: 99;
}

h1 {
  width: 22vw;
  height: 10vh;
  margin-left: 3%;
}

h1 a {
  width: 100%;
  height: 100%;
  transition: all 0.3s ease-in-out;
}

.open__btn {
  width: 11vw;
  height: 45%;
  margin-right: 9%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
}

h1 a:hover,
.open__btn:hover,
.close__btn:hover {
  transform: scale(1.1);
}

.header__logo,
.open__btn img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* ///////////////////////////////////////////////// */

.navi__open {
  width: 100%;
  height: 100%;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: url(../img/ramen.png), url(../img/katsu_bowl.png), #fff;
  background-repeat: no-repeat;
  background-size: 100%, 100%, 100%;
  background-position: -40vw 0%, 35vw 100%, 100%;
  transform: translateY(-100%);
  -webkit-transform: translateY(-100%);
  transition: all 0.8s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.open .navi__open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0%);
  -webkit-transform: translateY(0%);
}

.navi__open-bg {
  width: 100%;
  height: 100%;
  background: rgba(234, 210, 50, 0.9);
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 20%;
  padding-bottom: 10%;
}

.close__btn {
  width: 12vw;
  height: 8vh;
  cursor: pointer;
  position: absolute;
  top: 4%;
  right: 8%;
  z-index: 101;
  transition: all 0.3s ease-in-out;
}

.close__btn img {
  width: 100%;
  height: 100%;
  /* object-position: contain; */
}

nav {
  width: 100%;
}

.global__navi {
  width: 85%;
  height: fit-content;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
}

.global__navi li {
  width: fit-content;
  height: fit-content;

  writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  opacity: 0;
  transform: translateY(-20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  -webkit-transform: translateY(-20px);
}

.global__navi li a {
  width: 100%;
  height: 100%;
  color: white;
  letter-spacing: 5px;
  font-weight: 900;
  padding: 0 0.3em 0.3em;
  border-right: 1px solid #fff;
  text-orientation: upright;
  -webkit-text-orientation: upright;
  transition: all 0.3s ease-in-out;
}

.global__navi li a:hover {
  color: #383838;
  border-color: #383838;
  padding-bottom: 1em;
}

.global__navi li:last-of-type a:hover {
  padding-bottom: 0.3em;
}

.global__navi li a:hover .macron {
  color: #383838;
}

.open .global__navi li {
  opacity: 1;
  transform: translateY(0);
}

.global__navi li:nth-child(1) {
  transition-delay: 0.3s;
}
.global__navi li:nth-child(2) {
  transition-delay: 0.4s;
}
.global__navi li:nth-child(3) {
  transition-delay: 0.5s;
}
.global__navi li:nth-child(4) {
  transition-delay: 0.6s;
}
.global__navi li:nth-child(5) {
  transition-delay: 0.7s;
}
.global__navi li:nth-child(6) {
  transition-delay: 0.8s;
}
.global__navi li:nth-child(7) {
  transition-delay: 0.9s;
}

.global__navi li a .macron {
  color: #fff;
  transition: all 0.3s ease-in-out;
}

.shop__info {
  width: fit-content;
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.3rem;
}

.shop__info-name {
  width: fit-content;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1;
  order: 1;
}

.shop__info-name a {
  font-weight: 900;
  transition: 0.3s all ease-in-out;
}

.shop__info-name a:hover,
.navi__open-line a:hover {
  opacity: 0.7;
}

.shop__info-address {
  width: fit-content;
  letter-spacing: 0px;
  order: 2;
}

.navi__open-line {
  width: fit-content;
  width: 2.5rem;
  height: 2.5rem;
  order: 3;
}

.navi__open-line a {
  transition: 0.3s all ease-in-out;
}

.navi__open-line img {
  height: 100%;
}

/* //////////////////////////////////// */

.top {
  width: 100%;
  height: 100vh;
  background: url(../img/ramen.png), url(../img/katsu_bowl.png);
  background-repeat: no-repeat;
  background-size: 380px, 380px;
  background-position: calc(-180px + 100vw * 0.08) 10%,
    calc(-190px + 100vw * 0.9) 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  transition: all 0.1s ease;
}

h2 {
  width: fit-content;
  font-weight: 900;
  letter-spacing: 5px;
  line-height: 1.8;
  padding-top: 3em;
}

h2 span {
  font-size: 2rem;
  color: #ead132;
  padding: 0.1em 0.5em;
  background-color: #fff;
  clip-path: inset(0 100% 0 0);
  animation: textAnime 1s ease-in-out;
  animation-fill-mode: forwards;
}

h2 span:nth-of-type(2) {
  padding-right: 0;
  animation-delay: 0.3s;
}

h2 span:nth-of-type(3) {
  animation-delay: 0.6s;
}

@keyframes textAnime {
  0% {
    clip-path: inset(0 100% 0 0);
  }

  100% {
    clip-path: inset(0 0 0 0);
  }
}

.top__comment {
  width: fit-content;
  text-align: center;
}

/* ///////////////////////////////////// */

.introduction {
  background: #fff;
  border-radius: 400px 400px 400px 400px / 200px 200px 200px 200px;
  padding: 15% 5% 0;
  overflow: hidden;
}

.yellow__vertical {
  writing-mode: vertical-rl;
  text-orientation: upright;
  -webkit-writing-mode: vertical-rl;
  -webkit-text-orientation: upright;
  font-size: 1.4rem;
  letter-spacing: 5px;
  font-weight: 900;
  color: #ead132;
  margin: 0 auto 20%;
}

.change__items {
  width: 100%;
  height: fit-content;
  padding: 0 0 20%;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  position: relative;
}

.change__plate-img {
  width: 80%;
  max-width: 440px;
  position: absolute;
  bottom: 0;
}

.change__comment {
  width: 25em;
  height: 25em;
  font-family: shippori-mincho, sans-serif;
  font-weight: 700;
  font-style: normal;
  background: #eeebcf;
  border-radius: 50%;
  /* padding-top: 23%; */
  padding-top: 5em;
}

.change__comment p {
  width: fit-content;
  height: fit-content;
  line-height: 2.3;
  letter-spacing: 1.3px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(50px);
  -webkit-transform: translateY(50px);
}

.change {
  font-size: 1.2rem;
  letter-spacing: 0px;
  font-weight: 900;
  padding: 10% 0 10% 15%;
  margin: 10% 0;
  background: url(../img/change.svg) no-repeat;
  background-size: contain;
  background-position: 100% 50%;
  animation: dokundokun 2500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: scale(1);
  }
  15% {
    transform: scale(1.2);
  }
  30% {
    transform: scale(1);
  }
  45% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
}

.change span {
  font-size: 2rem;
  font-weight: 900;
}

.change__items:nth-of-type(2) .change__comment {
  font-family: zen-kaku-gothic-new, sans-serif;
  font-style: normal;
  padding-top: 4em;
  padding-left: 1em;
}

.change__items:nth-of-type(2) .change__comment p {
  line-height: 2;
  letter-spacing: 1px;
}

.not__change {
  width: fit-content;
  margin: 40% auto 30%;
  letter-spacing: 2px;
}

.not__change-tt {
  font-size: 1.4rem;
  font-weight: 900;
  color: #ead132;
  padding-bottom: 1em;
}

.not__change p {
  font-weight: 600;
  line-height: 2.2;
}

.to__history {
  width: 100%;
  height: fit-content;
  display: flex;
  justify-content: space-evenly;
  align-items: flex-start;
  /* padding-bottom: 2%; */
}

.to__history-img {
  width: 40%;
  height: 25vh;
  min-height: 220px;
}

.to__history-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  animation: welcome 1s ease-in-out infinite;
  animation-direction: alternate;
}

@keyframes welcome {
  0% {
    transform: rotate(10deg);
    -webkit-transform: rotate(10deg);
  }

  100% {
    transform: rotate(-10deg);
    -webkit-transform: rotate(-10deg);
  }
}

.to__history-comment {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 1px;
  width: fit-content;
  height: fit-content;
  padding-top: 1rem;
}

.btn {
  width: fit-content;
  height: fit-content;
  margin-top: 2em;
}

.btn a {
  font-weight: 900;
  letter-spacing: 1px;
  padding: 0.7em 1.5em;
  display: block;
  text-align: center;
  border: 2px solid #383838;
  border-radius: 5px;
  background: #fff;
  position: relative;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #ead132;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  z-index: -1;
}

.btn a::after {
  content: "";
  display: inline-block;
  width: 1.5em;
  height: 1em;
  background: url(../img/btn.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 0.8em;
  transition: all 0.3s ease-in-out;
}

.btn a:hover::before {
  transform: translateX(0);
}

.btn a:hover::after {
  transform: translateX(5px);
  -webkit-transform: translateX(5px);
}

/* ////////////////////////////////// */

.famous {
  width: 70%;
  margin: 0 auto;
  padding: 30% 0 0;
}

.famous h3 {
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1em;
}

.famous__item {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em;
  margin-bottom: 30%;
}

.famous__item-img {
  width: 70%;
  max-width: 180px;
  height: 22vh;
  background-image: radial-gradient(
    circle closest-side at 65% 57%,
    rgba(255, 255, 255, 1) 95%,
    rgba(255, 255, 255, 0) 95%
  );
}

.famous__item-img img {
  height: 100%;
  object-fit: contain;
  object-position: 0% 50%;
}

.famous__item:nth-of-type(1) {
  font-family: shippori-mincho, sans-serif;
  font-weight: 700;
  font-style: normal;
}

.famous__item-text {
  width: 95%;
  font-weight: 600;
}

.famous__item-text h4 {
  font-weight: 900;
  border-bottom: 1px solid #383838;
  margin-bottom: 1em;
}

.famous__item-text h4 span {
  font-size: 1.3rem;
}

.famous__item-text p {
  text-align: justify;
  text-justify: inter-ideograph;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

.famous__item-text .famous__item-text-price {
  font-size: 1.1rem;
  font-weight: 700;
  text-align: right;
}

.famous__item:nth-of-type(2) .famous__item-img {
  width: 80%;
  max-width: 230px;
  height: 20vh;
  background-image: radial-gradient(
    circle closest-side at 30% 50%,
    #ead132 99%,
    #ead23200 99%
  );
}

.famous__item:nth-of-type(2) .famous__item-img img {
  object-position: 100% 50%;
}

.famous__item:nth-of-type(2) .famous__item-text h4 span {
  font-size: 2.2rem;
  letter-spacing: 1px;
}

.famous__item:nth-of-type(2) .famous__item-text {
  font-weight: 500;
}

/* /////////////////////////////// */

.ketchup {
  width: 30%;
  margin: 0 auto;
  transform: rotate(40deg);
  -webkit-transform: rotate(40deg);
  margin-bottom: 20%;
}

/* //////////////////////////////// */

.omurice__rule {
  width: 90%;
  max-width: 350px;
  margin: 0 auto;
  letter-spacing: 1px;
}

.omurice__rule-tt {
  width: 90%;
  margin: 0 auto;
}

.omurice__rule-tt h3,
.omurice__rule-tt p {
  color: #c30000;
}

.omurice__rule-tt h3 {
  font-size: 1.4rem;
  font-weight: 900;
  padding: 0.3em 0;
  margin: 0.3em 0;
  border-bottom: 2px solid #c30000;
}

.omurice__rule-tt p {
  font-size: 1.15rem;
}

.omurice__rule-prologue {
  width: 85%;
  margin: 1.5em 5% 15%;
}

.omurice__rule-prologue li {
  margin: 0 0 1em;
  line-height: 1.5;
}

mark {
  font-size: 1.4rem;
  font-weight: 900;
  background: linear-gradient(#ead23200 60%, #ead132 60%);
  background-repeat: no-repeat;
  background-position: bottom left;
  background-size: 0 30%;
  transition: all 1s ease-in-out; /* マーカーを引く速度を調整 */
}

mark.inview {
  background-size: 100% 60%; /* '30%'の部分は上で設定した太さに合わせる */
}

.omurice__rule-main h4 {
  font-size: 1.4rem;
  color: #fff;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
  width: fit-content;
  height: fit-content;
  padding: 3em 1.5em;
  margin: 0 auto;
  background: url(../img/omuricerule.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.omurice__rule-main-item {
  width: 100%;
  height: 53vh;
  font-weight: 600;
  text-align: justify;
  text-justify: inter-ideograph;
  /* letter-spacing:0; */
  padding: 0 1.5em;
  border-radius: 50px;
  background: #fff;
  position: relative;
  margin: 25% 0 40%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.omurice__rule-main-item::before {
  content: "1";
  display: block;
  text-align: center;
  font-size: 2rem;
  color: #fff;
  font-weight: 900;
  padding: 4rem 0;
  width: 9rem;
  background: url(../img/omurice_nbr.png) no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: -6rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}

.omurice__rule-main-item:nth-of-type(2)::before {
  content: "2";
}

.omurice__rule-main-item:nth-of-type(3)::before {
  content: "3";
}

.omurice__rule-main-item:nth-of-type(4)::before {
  content: "4";
}

.omurice__rule-main-item h5 {
  color: #c30000;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.5;
}

.omurice__rule-main-item h5 span {
  font-size: 1rem;
  color: #c30000;
}

.omurice__rule-main-item mark {
  font-weight: 700;
  color: #c30000;
}

.omurice__rule-main-item p {
  letter-spacing: 0;
  padding: 0 0.5em;
}

.omurice__rule-main-item:nth-of-type(4) .mark__normal {
  font-weight: 600;
  font-size: 1rem;
  color: #383838;
}

.dish__conditions p {
  padding-left: 0.5em;
}

.dish__conditions ul li {
  list-style: disc;
  list-style-position: inside;
  padding-left: 1em;
  font-size: 0.9rem;
}

/* /////////////////////////////// */

.menu__introduction {
  width: 100%;
  margin: 50% 0 30%;
  overflow: hidden;
}

.menu__introduction-tt {
  width: 80%;
  height: fit-content;
  background: #fff;
  border-radius: 0 100px 0 0;
}

.menu__introduction-tt .yellow__vertical {
  color: #ead132;
  padding: 2.5em 0 1.5em 45vw;
  margin: 0;
}

.menu__introduction-tt .yellow__vertical .macron {
  color: #ead132;
}

.menu__introduction-body {
  background: #fff;
}

.menu__introduction-body-comment {
  width: fit-content;
  height: fit-content;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-size: 0.9rem;
  font-weight: 700;
  /* letter-spacing: -2px; */
  width: fit-content;
  margin: 0 auto;
  padding: 3rem 0;
}

.menu__introduction-menu-container {
  width: 80%;
  margin: 0 auto;
  padding: 5vh 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0vh;
}

.menu__introduction-menu-item {
  width: 100%;
  max-width: 350px;
  position: relative;
  padding: 4.5em 0;
}

.menu__introduction-menu-item h6 {
  font-size: 1.2rem;
  writing-mode: vertical-rl;
  text-orientation: upright;
  /* letter-spacing: -3px; */
  padding: 0.7em 0.3em;
  background: #fff;
  border: 2px solid #383838;
  position: absolute;
  top: 2.5rem;
  left: 0.5em;
}

.menu__introduction-menu-item:first-of-type h6 {
  top: 1.5rem;
}

.menu__introduction-menu-item:nth-of-type(even) h6 {
  left: unset;
  right: 0.5em;
}

.menu__introduction-menu-item-img {
  height: 30vh;
}

.menu__introduction-menu-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
}

.menu__introduction-menu-item:last-of-type
  .menu__introduction-menu-item-img
  img {
  object-position: right bottom;
}

.menu__introduction-ruler {
  width: 80%;
  height: 60svh;
  margin-left: 20%;
  background: #fff;
  border-radius: 0 0 0 100px;
  position: relative;
}

.menu__introduction-ruler p {
  padding: 3rem 2.5rem;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

.menu__introduction-ruler p span {
  font-size: 1.1rem;
}

.menu__introduction-ruler-img {
  width: 55%;
  max-width: 230px;
  position: absolute;
  bottom: -10%;
  right: -5%;
}

.menu__introduction .btn {
  margin: 15% auto 0;
}

/* /////////////////////////////// */

.slider {
  width: 100%;
  height: fit-content;
}

.slider__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slider__catch-copy {
  width: fit-content;
  padding: 1.5rem 0;
  transform: translate3d(0, 0, 0);
  mix-blend-mode: overlay;
  /* overflow: visible; */
}

.slider__catch-copy span {
  color: #fff;
  /* color: transparent; */
  /* -webkit-text-stroke: 1px #fff; */
  mix-blend-mode: overlay;
  transform: translate3d(0, 0, 0);
  line-height: 1.2;
  font-size: 15vw;
  font-weight: 900;
}

.slider__catch-copy span:nth-of-type(2) {
  padding-right: 0;
}

/* /////////////////////////// */

.access {
  width: 100%;
  padding: 20% 0 30%;
  font-weight: 600;
  background: #fff;
}

.access h3 {
  font-size: 1.4rem;
  font-weight: 900;
  margin-bottom: 1em;
  margin-left: 7%;
}

.access__text {
  width: 85%;
  margin: 0 auto 5%;
}

.access__text-item {
  font-size: 0.9rem;
  line-height: 2;
  letter-spacing: 0;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  gap: 7%;
  padding: 1rem 3%;
  border-bottom: 0.5px solid #ccc;
}

.access__text-item:last-of-type {
  border: none;
}

.access__text-item h5 {
  font-size: 0.9rem;
  width: 25%;
}

.access__text-item-details {
  width: 65%;
}

.access__text-item-map a {
  text-decoration: underline;
  text-decoration-thickness: 1.5px;
}

.access__text-item-details-list:nth-of-type(2) {
  margin-top: 1em;
}

.access__text-item-details-list h6 {
  font-size: 0.9rem;
}

.access__img {
  width: 100%;
  position: relative;
  padding: 0 0 30%;
}

.access__img-comment {
  width: 80%;
}

.access__img-outside {
  width: 90%;
  margin-left: 10%;
  position: absolute;
  bottom: 3%;
  right: 0;
}

.access__caution {
  width: 75%;
  margin: 0 auto;
  font-size: 0.8rem;
  line-height: 2;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ///////////////////////////////////////// */

.contact {
  width: 100%;
  padding: 20% 0 30%;
  background: #ead132;
}

.contact h3 {
  font-size: 1.4rem;
  font-weight: 900;
  text-align: center;
  margin-bottom: 1em;
}

.contact__caution {
  width: 80%;
  text-align: justify;
  text-justify: inter-ideograph;
  margin: 0 auto;
}

.sp_none_br {
  display: none;
}

.contact__caution mark {
  font-size: 1rem;
  background: linear-gradient(#eeebcf00 60%, #eeebcf 60%);
}

.contact__container {
  width: 88%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8vh;
  margin: 20% auto 0;
}

.contact__box {
  width: fit-content;
  height: fit-content;
  position: relative;
}

.contact__item {
  width: 100%;
  max-width: 410px;
  height: 45vh;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  gap: 7%;
  border-radius: 50px;
  background: #fff;
}

.contact__item-text {
  width: 60%;
}

.contact__item-text h4 {
  font-size: 1.4rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.5;
  padding-bottom: 0.5em;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #383838;
}

.contact__item-text p {
  width: 100%;
  font-weight: 500;
  text-align: justify;
  text-justify: inter-ideograph;
  margin-top: 0.8rem;
  letter-spacing: 0;
}

.contact__recommend {
  width: 55%;
  position: absolute;
  top: -17%;
  left: -5%;
  animation: jamp 0.4s ease-in-out infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes jamp {
  0% {
    transform: translateY(5px);
  }

  100% {
    transform: translateY(-5px);
  }
}

.contact__item-text address a {
  font-size: 1.6rem;
  font-style: normal;
  font-weight: 900;
  transition: all 0.3s ease-in-out;
}

.contact__item-text address a:hover {
  transform: scale(1.1);
  -webkit-transform: scale(1.1);
}

.contact__list-img {
  width: 20%;
}

.contact__list-img a {
  transition: all 0.3s ease-in-out;
}

.contact__list-img a:hover {
  transform: scale(1.2);
  -webkit-transform: scale(1.2);
}

/* ///////////////////////////////////////// */

.information {
  width: 75%;
  padding: 20% 0 30%;
  margin: 0 auto;
}

.information h3 {
  font-size: 1.4rem;
  font-weight: 900;
}

.information__list {
  width: 100%;
  letter-spacing: 0;
  line-height: 2;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 2em 0.5em;
  border-bottom: 1px dotted #383838;
}

.information__list h6 {
  width: fit-content;
  font-size: 1rem;
}

.information__list:nth-of-type(1) h6::before,
.information__list:nth-of-type(2) h6::before {
  content: "NEW";
  font-size: 0.8rem;
  font-weight: 900;
  width: fit-content;
  height: fit-content;
  padding: 0 0.8em;
  margin: 0 auto;
  display: block;
  border-radius: 5px;
  border: 2px solid #383838;
  background: #ead132;
  animation: blinking 0.7s ease-in-out infinite;
  animation-iteration-count: infinite;
  animation-direction: alternate;
}

@keyframes blinking {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

.information__list p {
  width: 60%;
  text-align: justify;
  text-justify: inter-ideograph;
}

/* ////////////////////////////////// */

.to__top {
  width: 18%;
  max-width: 80px;
  margin: 10% auto;
}

.to__top a {
  transition: all 0.3s ease-in-out;
}

.to__top a:hover {
  transform: translateY(-7px);
  -webkit-transform: translateY(-7px);
}

/* ///////////////////////////////// */

footer {
  width: 100%;
  background: #ead132;
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  padding-top: 10%;
  /* gap: 5vh; */
}

.footer__container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5vh;
}

.footer__navi {
  order: 2;
  width: 100%;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.footer__navi-block {
  width: 55%;
}

.footer__navi-block li {
  width: fit-content;
  margin: 0.5em auto;
}

.footer__navi-block li a {
  width: fit-content;
  height: fit-content;
  font-size: 1.1rem;
  padding: 0 0.5em;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease-in-out;
}

.footer__navi-block li a:hover {
  color: #fff;
  letter-spacing: 4px;
  border-color: #fff;
  /* font-weight: 900; */
}

.footer__img {
  order: 1;
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.footer__img-noren {
  width: 100%;
}

.footer__img-line {
  width: 20%;
}

.footer__img-noren a,
.footer__img-line a {
  transition: all 0.3s ease-in-out;
}

.footer__img-noren a:hover,
.footer__img-line a:hover {
  opacity: 0.7;
}

.copyright {
  /* order: 3; */
  text-align: center;
  letter-spacing: 0;
  font-weight: 600;
  padding-top: 5vh;
  padding-bottom: 0.5em;
}
