@charset "UTF-8";

/* ___________________________ */
/* カスタムプロパティ_____________*/
/* ___________________________ */
:root {
  --main_color: #8d5d20;
  --sub_color: #FDD031;
  --sub_color_red: #EF333C;
  --main_font: 'M PLUS 1p', sans-serif;
  --main_font_ja: 'Roboto', sans-serif;
  --sub_font: 'Comfortaa', cursive;
  --txt_align: justify;
  --main_font_size: 14px;
  --section_ttl_size: 26px;
  --section_sub_ttl_size: 18px;
}

/* ___________________________ */
/* /カスタムプロパティ_________*/
/* ___________________________ */



/* ___________________________ */
/* ベース設定 変更禁止___________*/
/* ___________________________ */
html {
  font-feature-settings: "palt";
  letter-spacing: 1px;
  font-size: var(--main_font_size);
  font-family: 'Noto Sans JP', sans-serif;
}

body {
  color: #4D2200;
  overflow-y: visible;
}

body.hidden {
  overflow: hidden;
}

a {
  text-decoration: none;
  color: var(--main_color);
}

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

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ___________________________ */
/* /ベース設定_________*/
/* ___________________________ */


/* ___________________________ */
/* main_________*/
/* ___________________________ */
.main_wrap {
  width: 100%;
  position: relative;
  padding-top: 60px;
  padding-bottom: 50px;
}

.main_wrap::before,
.main_wrap::after {
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: -10;
}

.main_wrap::before {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/top_bg.webp);
  background-position: top;
  top: 0;
}

.main_wrap::after {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/bottom_bg.webp);
  background-position: bottom;

  bottom: 0;
}

.main_inner {
  margin: 0 20px;
}

.main_ttl {
  font-family: var(--main_font);
  letter-spacing: 0;
  font-weight: bold;
  font-size: 30px;
  color: var(--main_color);
  text-align: center;
  margin-bottom: 20px;
  opacity: 0;
  transition: opacity 1.2s ease, transform .8s ease;
  transform: translateY(30px);
}

.main_ttl.show {
  opacity: 1;
  transform: translateY(0);
}

/* ___________________________ */
/* /main_________*/
/* ___________________________ */



/* ___________________________ */
/* header______________________*/
/* ___________________________ */
.header {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/header_bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  transition: all .5s;
}

.header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

.header_wrap {
  padding: 20px 20px 0;
  display: flex;
}

.header_logo_img {
  width: 150px;
  height: auto;
}

.header_lang {
  display: none;
}

.headar_bottom_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  border: var(--sub_color) 2px solid;
  border-top: none;
}

.header_bottom_item {
  width: calc(100% / 2 - 10px);
  color: #fff;
}

.header_bottom_link {
  line-height: 30px;
  width: 100%;
  padding: 8px 0;
  text-align: center;
  border-radius: 10px;
  background-color: var(--sub_color);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.header_bottom_link::before {
  content: "";
  display: inline-block;
  height: 13px;
  width: 13px;
  margin-right: 5px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  left: 10px;
}

.header_bottom_item:nth-of-type(1) > .header_bottom_link:before {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_tel.svg);
}

.header_bottom_item:nth-of-type(2) > .header_bottom_link:before {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_calendar.svg);
}

.header_bottom_item:nth-of-type(3) > .header_bottom_link:before {
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_access.svg);
}

.header_tiem_warp {
  color: #fff;
  margin-left: 7px;
  transform: translateY(-5px);
}

.header_tiem_txt {
  display: block;
}

.Reserve_reserve_txt {
  display: none;
}

.header_r_bottm {
  display: none;
}

.burger_btn {
  width: 40px;
  height: 40px;
  position: absolute;
  right: 20px;
  top: 15px;
  background-color: #fff;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 101;
}

.burger_btn.open {
  position: fixed;
}

.burger_btn_line {
  height: 3px;
  width: 25px;
  background-color: var(--sub_color);
  border-radius: 5px;
  margin: 3px 0;
  transition: .3s;
}

.open .burger_btn_line {
  margin: 0;
}

.open .burger_btn_line:nth-of-type(1) {
  position: absolute;
  top: 19px;
  left: 8px;
  transform: rotate(-45deg);
}

.open .burger_btn_line:nth-of-type(2) {
  opacity: 0;
}

.open .burger_btn_line:nth-of-type(3) {
  position: absolute;
  top: 19px;
  left: 8px;
  transform: rotate(45deg);
}

.burger_wrap {
  width: 100%;
  height: 100vh;
  z-index: 100;
  color: #fff;
  text-align: center;
  background-color: #FCD475;
  position: fixed;
  overflow-y: hidden;
  transform: translateX(-100%);
  transition: .3s;
  left: 0;
  top: 0;
}

.burger_wrap.open {
  transform: none;
}

.burger_wrap_inner {
  margin: 0 20px;
}

.burger_wrap_inner > .reserve_btn > .reserve_btn_link::after {
  right: 20px;
}

.burger_img_wrap {
  height: 38px;
  display: inline-block;
  object-fit: contain;
  position: absolute;
  top: 15px;
  left: 20px;
}

.burger_img {
  object-fit: contain;
}

.burger_list_wrap {
  margin-top: 100px;
}

.burger_list_item:not(:last-child) {
  margin-bottom: 30px;
}

.burger_list_item > a {
  color: #fff;
  font-size: 20px;
  font-family: var(--main_font);
  font-weight: bold;
}

.burger_tel {
  margin: 20px 0 30px;
  color: #FECE47;
}

.burger_tel_link {
  font-size: 20px;
  font-family: var(--main_font_ja);
  font-weight: bold;
  display: block;
  line-height: 50px;
  border-radius: 5px;
  background-color: #fff;
  position: relative;
  color: #FECE47;
}

.burger_tel_link::before {
  content: "";
  display: inline-block;
  position: absolute;
  height: 20px;
  width: 20px;
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_tel_yellow.svg);
  background-size: contain;
  top: 50%;
  transform: translateY(-50%);
  left: 20vw;
}

.burger__lang {
  display: flex;
  justify-content: space-around;
  margin: 30px 0 40px;
}

.header_lang_txt > a {
  color: var(--sub_color_red);
}

.corona_txt {
  line-height: 40px;
  font-size: 12px;
  text-align: center;
  text-decoration: underline;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: bold;
}

/* ___________________________ */
/* /header______________________*/
/* ___________________________ */



/* ___________________________ */
/* footer______________________*/
/* ___________________________ */
.sns_wrap {
  margin-top: 20px;
}

.sns_list {
  display: flex;
  justify-content: center;
}

.sns_list_item {
  width: 40px;
  height: 40px;
}

.sns_list_item:not(:last-child) {
  margin-right: 20px;
}

.sns_link {
  display: inline;
  width: 100%;
  height: 100%;
}

.policy_wrap {
  margin: 20px 0 10px;
  display: flex;
  justify-content: center;
}

.policy_txt {
  margin-bottom: 10px;
}

.policy_txt:not(:last-child) {
  margin-right: 20px;
}

.footer_store_ttl {
  color: var(--main_color);
  text-align: center;
  font-size: 14px;
  padding: 10px 0;
}

.footer_store_list_item > a > .footer_store_ttl,
.footer_store_list_item_floor > a > .footer_store_ttl {
  background-color: #F8F8F8;
  position: relative;
  border-bottom: 1px #fff solid;
}

.footer_store_list_item > a > .footer_store_ttl:not(:last-child),
.footer_store_list_item_floor > a > .footer_store_ttl:not(:last-child) {
  border-bottom: 1px #fff solid;
}

.footer_store_list_item > a > .footer_store_ttl::after,
.footer_store_list_item_floor > a > .footer_store_ttl::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_circle_right.svg);
}

.footer_store_img {
  display: none;
}

.footer_store_txt {
  display: none;
}

.footer_logo_wrap {
  background-color: #FCD475;
  text-align: center;
  padding: 20px 0 10px;
}

.footer_logo_img {
  width: 100px;
  height: auto;
}

.Copyright {
  background-color: #FCD475;
  text-align: center;
  font-size: 12px;
  padding-bottom: 20px;
}

.page_top {
  width: 80px;
  height: 75px;
  position: fixed;
  display: inline-block;
  right: 20px;
  bottom: 20px;
  z-index: 5;
  transition: all .3s ease-in;
  opacity: 0;
  visibility: hidden;
}

.page_top.show {
  opacity: 1;
  transition: all .5s;
  visibility: visible;
}

.page_top_link {
  display: inline-block;
  pointer-events: none;
  height: 100%;
  width: auto;
}

.page_top.show > .page_top_link {
  pointer-events: auto;
}

/* ___________________________ */
/* /footer______________________*/
/* ___________________________ */



/* ___________________________ */
/* breadcrumbs______________________*/
/* ___________________________ */
.breadcrumbs {
  background-color: #F5C23F;
  line-height: 20px;
}

.breadcrumbs > ol {
  display: flex;
  white-space: nowrap;
  overflow-x: scroll;
  margin: 0 20px;
}

.breadcrumbs > ol > li {
  display: inline-block;
  display: flex;
}

.breadcrumbs > ol > li:not(:last-child)::after {
  content: " > ";
  margin-left: 5px;
  margin-right: 5px;
}

.breadcrumbs > ol > li > a {
  color: #fff;
  font-size: 12px;
}

.breadcrumbs > ol > li:last-child a {
  pointer-events: none;
}

/* ___________________________ */
/* /breadcrumbs______________________*/
/* ___________________________ */



/* ___________________________ */
/* スマホ最小___________*/
/* ___________________________ */
@media screen and (max-width: 321px) {
  :root {
    --txt_align: left;
    --main_font_size: 12px;
    --section_ttl_size: 24px;
    --section_sub_ttl_size: 16px;
  }

  .header_tiem_warp {
    margin-left: 4vh;
  }

  .burger_btn {
    width: 35px;
    height: 35px;
  }

  .open .burger_btn_line:nth-of-type(1),
  .open .burger_btn_line:nth-of-type(3) {
    top: 17px;
    left: 6px;
  }
}

/* ___________________________ */
/* スマホ最小___________*/
/* ___________________________ */



/* ___________________________ */
/* /PC______________________*/
/* ___________________________ */
@media screen and (min-width: 780px) {
  :root {
    --txt_align: left;
    --main_font_size: 16px;
    --section_ttl_size: 40px;
    --section_sub_ttl_size: 30px;
  }

  a {
    transition: all .3s;
  }

  /* ___________________________ */
  /* main______________________*/
  /* ___________________________ */
  .main_wrap {
    padding: 200px 0 300px;
  }

  .main_inner {
    max-width: 1040px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
  }

  .main_ttl {
    font-size: 40px;
    margin-bottom: 30px;
    transform: translateY(50px);
  }

  /* ___________________________ */
  /* /main______________________*/
  /* ___________________________ */



  /* ___________________________ */
  /* breadcrumbs______________________*/
  /* ___________________________ */
  .breadcrumbs {
    background-color: transparent;
    max-width: 1000px;
    width: 100%;
    position: absolute;
    top: 75px;
    left: 50%;
    transform: translateX(-50%);
  }

  .breadcrumbs > ol {
    overflow-y: hidden;
    overflow-x: auto;
    white-space: normal;
    flex-wrap: wrap;
  }

  .breadcrumbs > ol > li:not(:last-child)::after {
    color: #9A9A9A;
  }

  .breadcrumbs > ol > li > a {
    color: #FF893A;
    font-size: 10px;
  }

  /* ___________________________ */
  /* /breadcrumbs______________________*/
  /* ___________________________ */



  /* ___________________________ */
  /* header______________________*/
  /* ___________________________ */
  .header {
    height: 180px;
    padding: 0 20px;
  }

  .header.fixed {
    position: static;
  }

  .burger_btn {
    display: none;
  }

  .header_r_inner {
    width: 50%;
  }

  .headar_bottom_list {
    display: none;
  }

  .header_r_bottm {
    display: block;
  }

  .header_nav_list {
    display: flex;
  }

  .header_nav_item {
    text-align: center;
    background-color: #fff;
    max-width: 160px;
    width: 100%;
    line-height: 36px;
    box-shadow: 4px 4px #979797;
    transition: all .5s ease;
  }

  .header_nav_item:not(:last-child) {
    margin-right: 22px;
  }

  .header_wrap {
    justify-content: space-between;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 10px 0;
  }

  .header_l_inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .header_nav_link {
    display: inline-block;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .header_nav_link::before,
  .header_nav_link::after {
    content: "";
    width: 8px;
    height: 10px;
    display: inline-block;
    position: absolute;
    background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_hexagon);
    top: 50%;
    transform: translateY(-50%);
  }

  .header_nav_link::before {
    left: 10px;
  }

  .header_nav_link::after {
    right: 10px;
  }

  .header_tiem_warp {
    display: flex;
    font-size: 18px;
    font-weight: bold;
    margin-left: 0;
  }

  .header_lang {
    display: flex;
    margin-bottom: 10px;
  }

  .header_lang_txt > a {
    font-size: 12px;
  }

  .Reserve_reserve_txt {
    display: block;
  }

  .Reserve_reserve_txt > a {
    width: 180px;
    font-family: var(--sub_font);
    display: inline-block;
    text-align: center;
    background: var(--sub_color_red);
    color: #fff;
    padding: 11px;
    vertical-align: top;
    margin-top: 25px;
    font-size: 18px;
    border-radius: 5px;
    font-weight: bolder;
    position: relative;
    box-shadow: 2px 3px 0px 0px #da7575;
    border: double 3px #ffff;
    box-sizing: border-box;
    line-height: 1.3em;
  }

  .Reserve_reserve_txt > a::after {
    content: "";
    display: inline-block;
    width: 16px;
    height: 18px;
    background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/triangle_wh.png);
    position: absolute;
    top: 50%;
    right: 5px;
    transform: translateY(-50%);
    background-size: contain;
    background-repeat: no-repeat;
    transition: all .3s;
  }

  .header_r_top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
  }

  .header_tiem_txt {
    margin-left: 24px;
  }

  .header_logo {
    width: 375px;
    height: auto;
    margin-top: 55px;
  }

  .header_logo_img {
    width: 100%;
  }

  /* ___________________________ */
  /* /header______________________*/
  /* ___________________________ */



  /* ___________________________ */
  /* footer______________________*/
  /* ___________________________ */
  .sns_wrap {
    background-color: #fff;
  }

  .footer {
    background-color: #FCD475;
  }

  .footer_store_wrap,
  .store_wrap {
    max-width: 1040px;
    padding: 0 20px;
    width: 100%;
    margin: 0 auto;
  }

  .footer_store_wrap > .footer_store_ttl,
  .store_wrap > .footer_store_ttl {
    line-height: 30px;
    background-color: #fff;
    border-radius: 5px;
    text-align: left;
    padding: 0 0 0 20px;
    font-size: 16px;
  }

  .footer_store_img {
    display: block;
    object-fit: cover;
    height: 100%;
  }

  .footer_store_img_wrap {
    height: 150px;
  }

  .footer_store_ttl{
    padding-left: 15px;
  }

  .footer_store_list_item > a > .footer_store_ttl,
  .footer_store_list_item_floor > a > .footer_store_ttl {
    background-color: transparent;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    vertical-align: baseline;
    border-bottom: none;
    display: flex;
    align-items: baseline;
  }

  .footer_store_list_item > a > .footer_store_ttl::before,
  .footer_store_list_item_floor > a > .footer_store_ttl::before {
    position: absolute;
    top: 16px;
    left: 0;
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/icon_footer.svg);
    background-size: contain;
    background-repeat: no-repeat;
    margin-right: 5px;
  }

  .footer_store_list_item > .footer_store_ttl::after,
  .footer_store_list_item_floor > .footer_store_ttl::after {
    content: none;
  }

  .footer_store_list {
    max-width: 920px;
    width: 100%;
    margin: 25px auto 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
  }

  .footer_store_list_item {
    width: calc((100% - 40px)/ 2);
  }

  .footer_store_txt {
    display: block;
    margin-top: 5px;
    font-size: 12px;
  }

  .footer_store_list_item_floor {
    width: calc((100% - 80px) / 6);
  }

  .footer_store_img_wrap {
    height: 140px;
  }

  .footer_store_list_item > a > .footer_store_ttl::after,
  .footer_store_list_item_floor > a > .footer_store_ttl::after {
    content: none;
  }

  .footer_store_list_item > a > .footer_store_ttl:not(:last-child),
  .footer_store_list_item_floor > a > .footer_store_ttl:not(:last-child) {
    border: none;
  }

  /* ___________________________ */
  /* /footer______________________*/
  /* ___________________________ */

  @keyframes rotation {
    0% {
      transform: rotateY(0deg);
    }

    50% {
      transform: rotateY(-180deg);
    }

    100% {
      transform: rotateY(0deg);
    }
  }

  .page_top {
    bottom: 5rem;
    right: 8rem;
    width: 100px;
  }

  .page_top_link > img {
    object-fit: contain;
    width: 100%;
  }

  .page_top_link {
    transform: rotateY(0);
    transition: all .5s;
  }
}

@media (hover: none) {
  a:active {
    opacity: 0.6;
  }

  a:hover {
    opacity: 1 !important;
    color: currentColor;
  }

  .header_bottom_link:active {
    color: #fff;
  }

  .burger_tel_link:active {
    color: #FECE47;
  }
}

@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }

  .footer_store_list_item:hover {
    opacity: 0.7;
  }

  .footer_store_list_item_floor:hover {
    opacity: 0.7;
  }

  .page_top.show:hover {
    opacity: 1;
    visibility: visible;
  }

  .page_top_link:hover {
    animation: rotation .5s ease-in-out;
  }

  .page_top_link:hover {
    opacity: 1;
  }

  .header_nav_item:hover {
    box-shadow: none;
    transform: translateY(3px);
  }

  .header_nav_link:hover {
    opacity: 1;
    color: #fff;
    background-color: var(--main_color);
  }

  .Reserve_reserve_txt > a:hover::after {
    background-image: url(/images_2024r/shop/shinjuku_yasukuni/honeytoastcafe/triangle_red.png);
  }

  .Reserve_reserve_txt > a:hover {
    opacity: 1;
    background: #fff;
    color: var(--sub_color_red);
    border: double 3px var(--sub_color_red);
    box-shadow: none;
    transform: translateY(3px);
  }
}
