@charset "utf-8";
/*==========================
common
==========================*/
:root {
  --primary-white: #F4F3F9;
  --primary-gray: #EFE1DE;
  --primary-black: #454B4C;
  --primary-green: #4FB9B9;
  --primary-red: #DF3F48;
  --contentWidth-pc: 80%;
  --contentPadding-pc: 10%;
  --contentWidth-sp: 92.6%;
  --contentPadding-sp: 3.7%;
}

html {
  font-size: 62.5%;
}

body {
  font-family:
  "Noto Sans JP",
  Arial,
  sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 1.6rem;
  color: #454B4C;
  background-color: #F4F3F9;
  line-height: 2.3;
  position: relative;
}

body::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/texture_01.png);
  background-repeat: repeat;
  background-position: bottom;
  background-size: contain;
  opacity: 0.2;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

img {
  max-width: 100%;
  height: auto;
}


.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background-color: var(--primary-white);
  background-image: url(../img/texture_03.png);
  transition: opacity 1s;
  z-index: 200;
}

.is-loaded-step1 .loading img {
  opacity: 1;
  transform: translateY(0);
}

.is-loaded-step2 .loading {
  pointer-events: none;
  opacity: 0;
}

.loading img {
  width: 300px;
  opacity: 0;
  transition: opacity 1s,transform 1s;
  transform: translateY(50px);
}

/*==========================
header
==========================*/
@media screen and (max-width:768px) {
  .header {
    width: 100%;
    height: 94px;
    padding: 0 5.6%;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-white);
    transform: translateY(-100%);
    transition: transform 0.3s;
    opacity: 0;
    z-index: 100;
  }

  .header::after {
    content: '';
    display: block;
    width: 159px;
    height: 94px;
    background: url(../img/brush_circleHeader.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    right: -30px;
    z-index: -10;
  }

  .header::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/texture_01.png);
    opacity: 0.2;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: -20;
  }
  
  .header.scrolled {
    transform: translateY(0);
    opacity: 1;
  }
  
  .header_logo {
    width: 36.9%;
  }
  
  .header_contents {
    width: 31.9%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .phone {
    display: block;
    width: (100vw * 0.1);
    height: calc(100vw * 0.1);
    margin-right: 26.2%;
    flex-shrink: 0;
    background-color: var(--primary-red);
  }
  
  .hamburger {
    width: 48px;
    height: 32px;
    position: relative;
  }
  
  .hamburger.active {
    transform: rotateY('360deg');
  }

  .hamburger span {
    position: absolute;
    background-color: var(--primary-black);
    width: 100%;
    height: 1px;
    transition: 0.5s;
  }
  
  .hamburger span:first-of-type {
    top: 0;
  }

  .hamburger span:nth-of-type(2) {
    top: 25%;
  }

  .hamburger span:last-of-type {
    top: 50%;
  }

  .hamburger.active span:first-of-type {
    top: 50%;
    transform: rotate(45deg);
  }

  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }

  .hamburger.active span:last-of-type {
    top: 50%;
    transform: rotate(-45deg);
  }

  .hamburger_txt {
    display: block;
    width: 48px;
    margin-top: 24px;
    white-space: nowrap;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1;
    text-align: center;
  }

  .hamburger.active .hamburger_txt {
    opacity: 0;
  }
  
  /* .nav初期表示 */
  .nav {
    width: 100%;
    height: calc(100vh - 94px);
    position: fixed;
    top: 94px;
    left: 0;
    z-index: 100;
    background-color: var(--primary-white);
    transform: translateX(-100%);
    transition: transform 0.5s;
  }
  
  .nav::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/texture_01.png);
    opacity: 0.2;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .nav_header {
    padding: 32px 5.6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav_topic {
    width: 40%;
  }
  
  .phoneImg {
    margin: 14px 14px 14px 12px;
    width: 14px;
  }
  
  .nav_list {
    padding: 96px 0 58px 16.7%;
  }
  
  .pcBr {
    display: none;
  }
  
  .nav_item {
    margin-top: 72px;
  }
  
  .nav_item:first-of-type {
    margin-top: 0;
  }
  
  .nav_item,
  .nav_itemDetail {
    display: flex;
  }
  
  .nav_trianglePc {
    display: none;
  }
  
  .nav_triangleSp {
    width: 20px;
  }
  
  .nav_itemDetail a {
    display: block;
    margin-left: 16px;
    font-size: 2.4rem;
    line-height: 1;
    font-weight: 600;
    text-align: center;
  }
  
  .nav_reservation {
    display: none;
  }
  
  .menu_illust {
    display: block;
    margin: 0 -1.6% -25px -4.7%;
    position: absolute;
    bottom: 23px;
  }
  
  /* .nav.active表示 */
  .nav.active {
    transform: translateX(0);
  }
}

/* .header tablet */
@media screen and (min-width:769px) and (max-width:1279px) {
  .header {
    width: 100%;
    height: 132px;
    padding: 0 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-white);
    transform: translateY(-100%);
    transition: transform 0.3s;
    opacity: 0;
    z-index: 100;
  }

  .header::after {
    content: '';
    display: block;
    width: 332px;
    height: 332px;
    background: url(../img/brush_circle.png);
    opacity: 0.07;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -10;
  }

  .header::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/texture_01.png);
    opacity: 0.2;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: -20;
  }
  
  .header.scrolled {
    transform: translateY(0);
    opacity: 1;
  }
  
  .header_logo {
    width: 17%;
  }

  .header_logo img:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }

  .hamburger {
    display: none;
  }

  .phone,
  .hamburger {
    display: none;
  }

  .nav {
    width: 70%;
  }

  .nav_list {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .nav_item {
    width: 200px;
  }

  .nav_item:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }


  .nav_item02 {
    margin-left: 16px;
  }

  .nav_itemLast {
    width: 194px;
    margin-left: 20px;
    margin-top: 8px;
  }

  .nav_itemDetail {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-left: 6.2%;
  }

  .nav_itemDetail a {
    display: block;
    margin-top: 14px;
  }

  .nav_menuSpan {
    display: none;
  }

  .pcBr {
    display: block;
  }

  .spBr {
    display: none;
  }

  .nav_trianglePc {
    display: block;
    margin: 0 auto;
    width: 27px;
  }

  .nav_triangleSp {
    display: none;
  }

  .nav_reservation {
    width: 194px;
    padding: 14px 32px;
    margin-left: 0;
    background-color: var(--primary-red);
  }
  
  .nav_phone {
    width: 14px;
  }
  
  .nav_reservation a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  
  .nav_reservationDetail {
    width: 112px;
  }

  .nav_phone {
    width: 14px;
    height: 18px;
    margin-left: 4px;
  }

  .menu_illust {
    display: none;
  }

  .pcBr {
    display: block;
  }

  .spBr {
    display: none;
  }
}

/* .header pc */
@media screen and (min-width:1280px) {
  .header {
    width: 100%;
    height: 132px;
    padding: 0 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    justify-content: space-between;
    align-items: center;
    background-color: var(--primary-white);
    transform: translateY(-100%);
    transition: transform 0.3s;
    opacity: 0;
    z-index: 100;
  }

  .header::after {
    content: '';
    display: block;
    width: 332px;
    height: 332px;
    background: url(../img/brush_circle.png);
    opacity: 0.07;
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: -20px;
    right: 0;
    z-index: -10;
  }

  .header::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/texture_01.png);
    opacity: 0.2;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0px;
    right: 0;
    z-index: -20;
  }
  
  .header.scrolled {
    transform: translateY(0);
    opacity: 1;
  }
  
  .header_logo {
    width: 14%;
  }

  .header_logo img:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }

  .hamburger {
    display: none;
  }

  .phone,
  .hamburger {
    display: none;
  }

  .nav {
    width: 57%;
  }

  .nav_list {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    justify-content: flex-end;
  }
  
  .nav_item {
    width: 120px;
  }

  .nav_item:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }


  .nav_item02 {
    margin-left: 16px;
  }

  .nav_itemLast {
    width: 194px;
    margin-left: 20px;
  }

  .nav_itemDetail {
    display: block;
    text-align: center;
    font-size: 1.6rem;
    line-height: 1.3;
    margin-left: 6.2%;
  }

  .nav_itemDetail a {
    display: block;
    margin-top: 14px;
  }

  .nav_menuSpan {
    display: none;
  }

  .pcBr {
    display: block;
  }

  .spBr {
    display: none;
  }

  .nav_trianglePc {
    display: block;
    margin: 0 auto;
    width: 27px;
  }

  .nav_triangleSp {
    display: none;
  }

  .nav_reservation {
    width: 194px;
    padding: 14px 32px;
    margin-left: 0;
    background-color: var(--primary-red);
  }
  
  .nav_phone {
    width: 14px;
  }
  
  .nav_reservation a {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0;
  }
  
  .nav_reservationDetail {
    width: 112px;
  }

  .nav_phone {
    width: 14px;
    height: 18px;
    margin-left: 4px;
  }

  .menu_illust {
    display: none;
  }

  .pcBr {
    display: block;
  }

  .spBr {
    display: none;
  }
}

/*==========================
main
==========================*/
.main {
  overflow: hidden;
}

/* firstView */
@media screen and (max-width:768px) {
  .fvImg_logo {
    display: none;
  }
  
  .fvImg_sp {
    width: 100%;
  }

  .slideBox {
    display: none;
  }
  
  .fvImg_Base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .fv_fishPc {
    display: none;
  }
  
  .fv_treat {
    margin-bottom: 192px;
    position: relative;
  }
  
  .fv_fishSp {
    width: 100%;
    position: absolute;
    top: 32px;
    left: 0.01%;
    z-index: -1;
  }
  
  .fv_wave {
    width: 78.3%;
    position: absolute;
    top: -70px;
    left: 23%;
    z-index: 10;
  }
  
  .fv_brush {
    width: 94.4%;
    transform: scale(1, -1);
    position: absolute;
    top: -270px;
    left: 25%;
    opacity: 0.1;
    z-index: -1;
  }
}

/* firstView pc */
@media screen and (min-width:769px) {
  .fvImg_logo {
    width: 17%;
    position: absolute;
    top: 172px;
    left: 42.8%;
    z-index: 10;
  }
  
  .slideBox {
    height: calc(100vw* 0.51);
    overflow: hidden;
    position: relative;
  }
  
  .fvImg_sp {
    display: none;
  }
  
  .fvImg {
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-animation: anime 15s 0s infinite;
    animation: anime 15s 0s infinite;
  }
  
  .fvImg:nth-of-type(2) {
    -webkit-animation-delay: 5s;
    animation-delay: 5s;
  }
  
  .fvImg:nth-of-type(3) {
    -webkit-animation-delay: 10s;
    animation-delay: 10s;
  }
  
  @keyframes anime {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }
  
  @-webkit-keyframes anime {
    0% {
      opacity: 0;
    }
    30% {
      opacity: 1;
    }
    35% {
      opacity: 1;
    }
    50% {
      opacity: 0;
      z-index: 9;
    }
    100% {
      opacity: 0;
    }
  }
  
  .fvImg_base {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }
  
  .fv_fishSp {
    display: none;
  }
  
  .fv_treat {
    margin-bottom: 140px;
    position: relative;
  }
  
  .fv_fishPc {
    width: 45.2%;
    margin-top: -12vw;
    position: relative;
    z-index: 10;
  }
  
  .fv_wave {
    width: 43.3%;
    position: absolute;
    bottom: calc(100vw * 0.001);
    right: 5.1%;
    z-index: 10;
  }
  
  .fv_brush {
    width: 42.6%;
    transform: scale(1, -1);
    position: absolute;
    top: -32vw;
    right: 4.1%;
    opacity: 0.1;
    z-index: -1;
  }
}

/* about */
@media screen and (max-width:768px) {
  .about {
    padding: var(--contentPadding-sp);
    margin-top: 32px;
    position: relative;
    top: 32px;
    left: 0;
  }
  
  .about_list {
    margin-bottom: 56px;
  }
  
  .about_img,
  .about_imgSp {
    display: block;
    margin-top: 48px;
    object-fit: cover;
    aspect-ratio: 5 / 4;
  }

  .about_titleImg01,
  .about_titleImg02 {
    display: block;
    width: 70%;
    margin: 43px auto 0;
    width: 81.6%;
  }
  
  .about_titleImg02 {
    width: 87%;
  }

  .about_titleImg01 {
    width: 90%;
  }
  
  .about_txt01 {
    display: block;
    width: 208px;
    margin: 16px auto 0;
    font-weight: 600;
  }

  .about_txt02 {
    font-weight: 600;
    margin-top: 12px;
    margin-bottom: 43px;
  }

  .about_txt01--01 {
    width: 208px;
  }

  .about_txt01--02 {
    width: 150px;
  }

  .about_txt01--03 {
    width: 150px;
  }
  
  .about_imgPc {
    display: none;
  }
}

/* about tablet */
@media screen and (min-width:769px) and (max-width:1279px) {
  .about {
    padding: 48px 10% 0;
  }
  
  .about_list {
    margin-bottom: 91px;
  }

  .about_item {
    display: flex;
  }
  
  .about_item:nth-of-type(2) {
    margin-top: 110px;
    flex-direction: row-reverse;
  }

  .about_detail01 {
    margin-left: 7.6%;
  }

  .about_title01 {
    width: 108%;
  }

  .about_detail02 {
    margin: 0 7.6% 0 0;
  }

  .about_img,
  .about_imgSp {
    width: 49.1%;
    display: block;
    object-fit: cover;
    aspect-ratio: 5 / 3;
  }
  
  .about_titleImg {
    display: block;
    margin: 0 auto 44px;
    width: 73%;
  }
  
  .about_txt01 {
    display: block;
    margin: 5% 20% 0;
    font-size: 1.8rem;
    line-height: 2.2;
  }

  .about_txt02 {
    display: block;
    margin: 2%  0 0 5%;
    font-size: 1.8rem;
    line-height: 2.2;
  }
  
  .about_imgPc {
    display: none;
  }
}

/* about pc */
@media screen and (min-width:1280px) {
  .about {
    padding: 0 10%;
  }
  
  .about_list {
    margin-bottom: 91px;
  }

  .about_item {
    display: flex;
  }
  
  .about_item:nth-of-type(2) {
    margin-top: 110px;
    flex-direction: row-reverse;
  }

  .about_detail01 {
    margin-left: 7.6%;
  }

  .about_title01 {
    width: 108%;
  }

  .about_detail02 {
    margin: 0 7.6% 0 0;
  }

  .about_img,
  .about_imgSp {
    width: 49.1%;
    display: block;
    object-fit: cover;
    aspect-ratio: 5 / 3;
  }
  
  .about_titleImg {
    display: block;
    margin: 0 auto 44px;
    width: 73%;
  }
  
  .about_txt01 {
    display: block;
    margin: 5% 20% 0;
    font-size: 1.8rem;
    line-height: 2.2;
  }

  .about_txt02 {
    display: block;
    margin: 2%  0 0 5%;
    font-size: 1.8rem;
    line-height: 2.2;
  }
  
  .about_imgPc {
    display: none;
  }
}

/* topping */
@media screen and (max-width:768px) {
  .topping {
    padding: 0 7.5%;
    padding-top: 73px;
    padding-bottom: 43px;
    position: relative;
  }
  
  .topping::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/topping_imgSp.png);
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -10;
  }

  .topping::before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/sushiToppimg_spIllust.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -9;
  }
  
  .topping_title {
    display: block;
    margin-left: 2%;
    width: 104%;
  }
  
  .topping_list {
    margin-top: 38px;
  }
  
  .topping_item:first-of-type {
    margin-top: 0;
  }
  
  .topping_itemDetail {
    width: 89.9%;
    padding: 35px 16px 16px;
    background-color: var(--primary-white);
    background-image: url(../img/texture_01.png);
    background-blend-mode: lighten;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
  }

  .topping_itemDetail:first-of-type {
    margin-top: 96px;
  }
  
  .topping_itemDetail_left {
    margin-left: auto;
  }
  
  .frontImg {
    display: none;
  }
  
  .topping_itemDetailLeft {
    margin-left: 12%;
  }

  .topping_itemTitle01 {
    display: block;
    margin: 8px auto 0;
    width: 85.7%;
  }
  
  .topping_itemTitle02 {
    display: block;
    margin: 8px auto 0;
    width: 50.5%;
  }
  
  .topping_itemTitle03 {
    display: block;
    margin: 8px auto 0;
    width: 53.8%;
  }
  
  .topping_itemTxt {
    margin-top: 24px;
    font-weight: 600;
  }
  
  .topping_itemTxt span {
    display: block;
    font-weight: 800;
    color: var(--primary-red);
    background-color: #F9E9CD;
    padding: 10px;
  }
  
  .topping_itemDetail_img {
    display: block;
    margin-top: 24px;
    width: 100%;
    height: 190px;
    object-fit: cover;
    position: relative;
  }
  
  .backImg_01 {
    display: block;
    width: 48.4%;
    height: 237px;
    object-fit: cover;
    margin: 0 3.7% 0 auto;
    z-index: -10;
  }
  
  .backImg_02 {
    display: block;
    width: 48.4%;
    height: 237px;
    object-fit: cover;
    margin: 0 auto 0 3.7%;
    z-index: -10;
  }
  
  .backImg_03 {
    display: block;
    width: 48.4%;
    height: 237px;
    object-fit: cover;
    margin: -30px 3.7% 0 auto;
    position: relative;
    z-index: -1;
  }
}

/* topping pc */
@media screen and (min-width:769px) {
  .topping {
    padding: 10%;
    padding-top: 150px;
    padding-bottom: 60px;
    position: relative;
  }
  
  .topping::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: url(../img/topping_imgPc.png);
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0px;
    left: 0;
    z-index: -10;
  }

  .topping::before {
    content: '';
    display: block;
    width: 140vw;
    height: 100%;
    background: url(../img/sushiToppimg_pcIllust02.png);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: -35vw;
    z-index: -9;
  }
  
  .topping_title {
    display: block;
    margin-left: 27.8%;
    width: 53%;
  }
  
  .topping_list {
    margin-top: 74px;
  }
  
  .topping_item:first-of-type {
    margin-top: 0;
  }

  .topping_item {
    position: relative;
  }

  .topping_itemDetail {
    width: 855px;
    padding: 24px;
    background-color: var(--primary-white);
    background-image: url(../img/texture_01.png);
    background-blend-mode: lighten;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .topping_itemDetail01 {
    margin-top: 104px;
  }
  
  .topping_itemDetailLeft {
    margin-top: 144px;
    margin-left: auto;
    position: relative;
    z-index: 10;
  }

  .topping_itemDetailRight {
    margin-top: 96px;
  }
  
  .frontImg {
    width: 30.4%;
    aspect-ratio: 350 / 250;
    object-fit: cover;
  }
  
  .frontImg01 {
    position: absolute;
    top: 300px;
    right: 120px;
    z-index: 10;
  }

  .frontImg02 {
    width: 15.8%;
    aspect-ratio: 181 / 243;
    position: absolute;
    top: 170px;
    left: 0;
  }

  .frontImg03 {
    position: absolute;
    top: 400px;
    right: 446px;
    z-index: 10;
  }

  .topping_itemTitle01 {
    display: block;
    margin: 0 auto;
    width: 65.7%;
  }
  
  .topping_itemTitle02 {
    display: block;
    margin: 0 auto;
    width: 36.5%;
  }
  
  .topping_itemTitle03 {
    display: block;
    margin: 0 auto;
    width: 43.8%;
  }
  
  .topping_itemTxt {
    margin-top: 32px;
  }
  
  .topping_itemTxt span {
    display: block;
    font-weight: 700;
    color: var(--primary-red);
    background-color: #F9E9CD;
    padding: 10px;
  }
  
  .topping_itemDetail_img {
    display: block;
    width: 52.6%;
    margin-left: 32px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    position: relative;
  }

  .topping_itemDetail_img:last-child {
    object-fit: contain;
  }
  
  .backImg_01 {
    display: block;
    width: 15.8%;
    aspect-ratio: 181 / 243;
    object-fit: cover;
    position: absolute;
    top: -30px;
    right: 0;
    z-index: 1;
  }
  
  .backImg_02 {
    display: block;
    width: 15.8%;
    aspect-ratio: 181 / 243;
    object-fit: cover;
    position: absolute;
    top: 370px;
    right: 0;
  }
  
  .backImg_03 {
    display: block;
    width: 15.8%;
    aspect-ratio: 181 / 243;
    object-fit: cover;
    position: relative;
    top: 0;
    left: 80%;
    z-index: 1;
  }

  .topping_txt {
    width: 381px;
  }
}

/* menu */
@media screen and (max-width:768px) {
  .menu_title {
    width: 84.7%;
    margin: 80px 0 0 6.8%;
  }
  
  .president {
    padding: 0 var(--contentPadding-sp);
  }
  
  .president_title {
    width: 48.2%;
    margin-top: 20px;
    position: relative;
  }

  .president_title::after {
    content: '';
    background: url(../img/brush_circle.png);
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    display: block;
    width: 170px;
    height: 170px;
    opacity: 0.07;
    position: absolute;
    top: -32px;
    left: -80px;
    z-index: -2;
  }
  
  .president_img {
    display: block;
    width: 100%;
    height: 290px;
    object-fit: cover;
    margin-top: 20px;
  }
  
  .president_detail {
    margin-top: 28px;
  }
  
  .president_txt {
    font-weight: 600;
    margin-top: 32px;
  }
  
  .president_price {
    display: block;
    margin-top: 20px;
    font-family: "Noto Sans";
    line-height: 1;
    font-size: 3.2rem;
  }
  
  .president_price span {
    font-family: "Noto Sans JP";
    display: inline-block;
    margin-left: 4px;
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  
  .menu_others {
    position: relative;
  }
  
  .menu_sliderTxt {
    display: block;
    width: 138px;
    margin: 48px 0 20px;
    font-size: 1.4rem;
    margin-left: auto;
    margin-right: 10px;
    line-height: 2;
  }
  
  .slider_container {
    overflow: hidden;
  }
  
  .menu_blush {
    width: 44%;
    opacity: 0.07;
    position: absolute;
    top: -41px;
    right: 14px;
    z-index: -2;
  }
  
  .slide-contents li img {
    width: 100%;
  }

  .slide-contents li {
    list-style: none;
  }

  .slide-contents {
    margin: 0;
    padding: 0;
  }

  .slide-animation {
    display: flex;
    gap: 10px;
    overflow: hidden;
  }

  .slide-animation li {
    width: 300px;
  }

  .slide-contents {
    display: flex;
    gap: 10px;
    animation: loopAnimation 30s linear infinite;
  }

  @keyframes loopAnimation {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
  }
  
  .takeout {
    margin-top: 87px;
  }
  
  .takeout_line {
    display: block;
    margin: -72px auto 0;
    width: 100%;
    opacity: 0.9;
  }
  
  .takeout_topic {
    padding: var(--contentPadding-sp);
    margin-top: -25px;
  }
  
  .takeout_title {
    width: 72.6%;
  }
  
  .takeout_detail img {
    width: 100%;
    height: 290px;
    margin-top: 20px;
    object-fit: cover;
  }
  
  .takeout_txt {
    margin: 32px 0 72px;
  }
}

/* menu pc */
@media screen and (min-width:769px) {
  .menu_title {
    width: 40.2%;
    margin: 121px auto 0;
  }
  
  .president {
    padding: 32px var(--contentPadding-pc) 0;
  }
  
  .president_title {
    width: 22.2%;
  }
  
  .president_topic {
    display: flex;
  }

  .president_img {
    display: block;
    width: 49.1%;
    aspect-ratio: 2 / 1;
    object-fit: cover;
    margin-top: 24px;
  }
  
  .president_detail {
    width: 49.1%;
    margin: 24px 0 0 48px;
  }
  
  .president_txt {
    font-size: 1.8rem;
  }

  .president_price {
    display: block;
    margin-top: 24px;
    font-family: "Noto Sans";
    line-height: 1;
    font-size: 4rem;
  }
  
  .president_price span {
    font-family: "Noto Sans JP";
    font-size: 2.4rem;
    letter-spacing: 1.28px;
  }
  
  .menu_others {
    position: relative;
  }
  
  .menu_sliderTxt {
    display: block;
    margin: 60px 0 24px 65.5%;
    font-size: 1.6rem;
    line-height: 2.3;
  }
  
  .slider_container {
    overflow: hidden;
  }
  
  .menu_blush {
    width: 13.5%;
    opacity: 0.1;
    position: absolute;
    top: -48px;
    right: 16.3%;
    z-index: -2;
  }
  
  .slide-contents li img {
    width: 100%;
  }

  .slide-contents li {
    list-style: none;
  }

  .slide-contents {
    margin: 0;
    padding: 0;
  }

  .slide-animation {
    display: flex;
    gap: 10px;
    overflow: hidden;
  }

  .slide-animation li {
    width: 300px;
  }

  .slide-contents {
    display: flex;
    gap: 10px;
    animation: loopAnimation 30s linear infinite;
  }

  @keyframes loopAnimation {
    0% {
    transform: translate(0%);
    }
    100% {
    transform: translate(-100%);
    }
  }

  .takeout {
    margin: 12px 0 128px;
  }
  
  .takeout_line {
    display: block;
    margin: -1.2vw auto 0;
    width: 100%;
    opacity: 0.5;
  }
  
  .takeout_topic {
    padding: 0 var(--contentPadding-pc);
    margin: -80px 0 0;
  }
  
  .takeout_title {
    width: 36.1%;
    margin-top: -0.2vw;
  }
  
  .takeout_detail {
    display: flex;
  }

  .takeout_detail img {
    width: 49.1%;
    margin-top: 24px;
    object-fit: cover;
  }
  
  .takeout_txt {
    width: 49.1%;
    font-size: 1.8rem;
    margin: 24px 0 0 48px;
  }
}

/* shop */
@media screen and (max-width:768px) {
  .shop {
    padding: 71px 0;
    position: relative;
  }
  
  .shop::after {
    content: '';
    display: inline-block;
    background: url(../img/shop_img.png);
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .shop_flame {
    margin: 0 var(--contentPadding-sp);
    padding-top: 48px;
    background-color: var(--primary-white);
    position: relative;
  }

  .shop_flame::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/shop_backImg.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 930px;
    left: 0;
  }

  .shop_title {
    display: block;
    width: 70%;
    margin-left: 20%;
    margin-top: 32px;
  }
  
  .shop_title_supplement {
    margin-top: 32px
  }
  
  .shop_title_supplement01 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.6;
  }
  
  .shop_title_supplement01 span {
    color: var(--primary-red);
  }
  
  .shop_title_supplement02 {
    font-size: 16px;
    line-height: 1.7;
  }

  .shop_title_supplement {
    padding: 0 7.4%;
  }
  
  .shop_list {
    margin-top: 40px;
    padding: 0 7.4%;
  }
  
  .shop_itemTitle {
    margin-top: 40px;
    font-size: 2rem;
    font-family: 700;
    line-height: 1.85;
  }
  
  .shop_itemTxt span {
    font-family: "Noto Sans";
    font-size: 1.8rem;
    font-weight: 700;
  }
  
  .map {
    display: block;
    width: 100%;
    height: calc(100vw * 0.93);
    margin-top: 72px;
    position: relative;
    z-index: 1;
  }  
}

/* shop pc */
@media screen and (min-width:769px) {
  .shop {
    padding: 62px 0;
    position: relative;
  }
  
  .shop::after {
    content: '';
    display: inline-block;
    background: url(../img/shop_img.png);
    width: 100%;
    height: 100%;
    background-repeat: repeat;
    background-position: bottom;
    background-size: contain;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
  }
  
  .shop_flame {
    margin: 0 10%;
    padding-top: 100px;
    background-color: var(--primary-white);
    position: relative;
    overflow: hidden;
  }

  .shop_flame::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background-image: url(../img/shop_backImg.png);
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    top: 100px;
    left: 0;
  }

  .shop_title {
    display: block;
    width: 37%;
    margin-left: 35.2%;
    margin-top: 32px;
  }
  
  .shop_title_supplement {
    margin-top: 32px;
    text-align: center;
  }
  
  .shop_title_supplement01 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2
  }
  
  .shop_title_supplement01 span {
    color: var(--primary-red);
  }
  
  .shop_title_supplement02 {
    font-size: 2rem;
    line-height: 2;
  }

  .shop_title_supplement {
    padding: 0 7.4%;
  }
  
  .shop_list {
    margin-top: 40px;
    padding: 0 7.4%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .shop_item {
    width: 40.6%;
  }
  
  .shop_itemTitle {
    margin-top: 40px;
    font-size: 3rem;
    font-family: 700;
    line-height: 1.85;
  }
  
  .shop_itemTxt {
    font-size: 1.8rem;
  }

  .shop_itemTxt span {
    font-family: "Noto Sans";
    font-size: 2.4rem;
    font-weight: 700;
  }
  
  .map {
    display: block;
    width: 100%;
    height: calc(100vw * 0.37);
    margin-top: 80px;
    position: relative;
    z-index: 1;
  }  
}

/*==========================
footer
==========================*/
@media screen and (max-width:768px) {
  .footer {
    padding: 56px 0;
    text-align: center;
  }
  
  .footer_title {
    margin: 0 auto;
    width: 32.8%;
  }
  
  .footer_list {
    margin-top: 48px;
  }

  .footer_item {
    display: block;
    margin-top: 32px;
    font-weight: 600;
  }
  
  .footer_reservationDetail {
    display: block;
    margin: 32px auto 0;
    width: 194px;
    background-color: var(--primary-red);
    padding: 14px 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
  }

  .footer_reservationTxt {
    width: 112px;
  }

  .footer_phone {
    width: 14px;
  }
  
  .copy {
    display: block;
    margin-top: 32px;
    font-family: "Noto Sans";
    font-size: 1.4rem;
  }
}

/* footer tablet */
@media screen and (min-width:769px) and (max-width:1279px) {
  .footer {
    padding: 0 5%;
    margin: 40px auto;
  }

  .footer_group {
    margin: 0 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer_title {
    margin-left: 0;
    margin-top: 20px;
    width: 17%;
  }

  .footer_title:hover {
    transform: scale(1.2);
    transition: 0.3s;
  }


  .footer_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer_list {
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }

  .footer_item {
    margin-top: 0;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
  }

  .footer_item:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }


  .footer_item span {
    display: none;
  }

  .footer_reservation {
    margin-left: 56px;
  }
  
  .footer_reservationDetail {
    width: 194px;
    background-color: var(--primary-red);
    padding: 14px 32px;
  }

  .footer_reservationTxt {
    width: 112px;
  }

  .footer_phone {
    width: 14px;
  }

  .copy {
    display: block;
    margin: 16px auto 40px;
    line-height: 1;
    text-align: center;
    font-family: "Noto Sans";
    font-size: 1.6rem;
  }
}

/* footer pc */
@media screen and (min-width:1280px) {
  .footer {
    padding: 0 10%;
    margin: 40px auto;
  }

  .footer_group {
    margin: 0 ;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer_title {
    margin-left: 0;
    margin-top: 20px;
    width: 14.9%;
  }

  .footer_title:hover {
    transform: scale(1.2);
    transition: 0.3s;
  }


  .footer_menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .footer_list {
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 56px;
  }

  .footer_item {
    margin-top: 0;
    white-space: nowrap;
    line-height: 1.3;
    text-align: center;
  }

  .footer_item:hover {
    transform: scale(1.1);
    transition: 0.3s;
  }


  .footer_item span {
    display: none;
  }

  .footer_reservation {
    margin-left: 56px;
  }
  
  .footer_reservationDetail {
    width: 194px;
    background-color: var(--primary-red);
    padding: 14px 32px;
  }

  .footer_reservationTxt {
    width: 112px;
  }

  .footer_phone {
    width: 14px;
  }

  .copy {
    display: block;
    margin: 16px auto 40px;
    line-height: 1;
    text-align: center;
    font-family: "Noto Sans";
    font-size: 1.6rem;
  }
}