/*!
global > color
------------------------------
*/
:root {
    --color-bg-primary: #485742;
    --color-bg-primary-light: #CACDC2;
    --color-bg-black: #283129;
    --color-bg-red: #CDC7C2;
    --color-bg-green: #C2CDC3;
    --color-bg-blue: #C2C8CD;
    --color-bg-point: #CA9C64;

    --color-border: #CACDC2;

    --color-font-primary: #485742;
    --color-font-white: #fff;
}

/*!
global > content-width
------------------------------
*/
:root {
    --width-content-s: 700px;
    --width-content: 1080px;
}

/*!
global > font
------------------------------
*/
:root {
    --font-family-base: "Noto Sans JP", sans-serif;
    --font-family-en: "Angkor", sans-serif;
}

/*!
foundation > reset
------------------------------
*/
html {
    color: #000;
    background: #fff;
    scroll-behavior: smooth;
  }
  
  body,
  div,
  dl,
  dt,
  dd,
  ul,
  ol,
  li,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  pre,
  code,
  form,
  fieldset,
  legend,
  input,
  textarea,
  p,
  blockquote,
  th,
  td {
    margin: 0;
    padding: 0;
  }
  
  table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
  }
  
  fieldset,
  img {
    border: 0;
  }
  
  address,
  caption,
  cite,
  code,
  dfn,
  em,
  strong,
  th,
  var {
    font-style: normal;
    font-weight: normal;
  }
  
  ol,
  ul {
    list-style: none;
  }
  
  caption,
  th {
    text-align: left;
  }
  
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-size: 100%;
    font-weight: normal;
  }
  
  q:before,
  q:after {
    content: "";
  }
  
  abbr,
  acronym {
    border: 0;
    font-variant: normal;
  }
  
  sup {
    vertical-align: text-top;
  }
  
  sub {
    vertical-align: text-bottom;
  }
  
  input,
  textarea,
  select,
  button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    font-size: 100%;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: inherit;
  }
  
  input,
  textarea,
  select {
    font-size: 16px;
  }
  
  textarea {
    resize: vertical;
    display: block;
  }
  
  button {
    padding: 0;
    cursor: pointer;
  }
  
  legend {
    color: #000;
  }
  
  tbody {
    -webkit-text-size-adjust: 100%;
  }
  
  main {
    display: block;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  
  svg {
    display: block;
  }
  
  * {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
  }
  
  *::before,
  *::after {
    box-sizing: border-box;
  }

/*!
foundation > base
------------------------------
*/
body {
    background-color: var(--color-bg-primary-light);
    color: var(--color-font-primary);
    font-family: var(--font-family-base);
    background-image: linear-gradient(var(--color-bg-primary-light), #fdf6eea2),url(/img/noise.png);
    background-repeat: repeat;
    background-size: 100px;
    font-size: 16px;
    line-height: 2;
}


/*!
component > button
------------------------------
*/
.c-button {
    color: var(--color-font-primary);
    background-color: var(--color-bg-primary-light);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.02em;
    text-align: center;
    margin: 0 auto;
    height: 60px;
    width: 100%;
    padding: 0 20px 0 calc(20px + 0.2em);
    font-weight: bold;
    border-radius: 5px;
}
@media screen and (min-width:768px) {
  .c-button {
    max-width: 300px;
  }
}

.c-button--transparent {
    border: var(--color-border) solid 1px;
    background-color: transparent;
    color: var(--color-bg-primary-light);
}

.c-button-large {
    color: var(--color-font-primary);
    border: var(--color-border) solid 1px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    letter-spacing: 0.2em;
    text-align: center;
    font-size: 16px;
    margin: 0 auto;
    height: 64px;
    width: 100%;
    padding: 0 26px 0 calc(26px + 0.2em);
}

/*!
component > title
------------------------------
*/
/* level2 */
.c-title-level2-en {
    font-family: var(--font-family-en);
    font-size: 40px;
    line-height: 1;
    text-transform: uppercase;
    text-align: center;
}
@media screen and (min-width:768px) {
  .c-title-level2-en {
    font-size: 60px;
  }
}

.c-title-level2 {
    font-size: 20px;
    line-height: 1.5;
    font-weight: bold;
}

/* level3 */
.c-title-level3-en {
  font-family: var(--font-family-en);
  font-size: 20px;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
.c-title-level3-en {
  font-size: 24px;
}
}


/* 
component > animation
-----------------------------
*/
.animations {
animation-name: animations;
animation-duration: 1s;
animation-timing-function: ease;
animation-delay: 0.5s;
animation-iteration-count: 1;
animation-fill-mode: forwards;
opacity: 0;
}
@keyframes animations {
  0% {
    opacity: 0;
    transform: translateY(100px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*!
utility > utility
------------------------------
*/

.u-visually-hidden {
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    border: 0 !important;
    padding: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    margin: -1px !important;
}

/*!
layout > container
------------------------------
*/
.l-container,
.l-container-s {
  width: 90%;
  margin: 0 auto;
}

@media screen and (min-width:956px) {
  .l-container-s {
    width: var(--width-content-s);
  }
}
@media screen and (min-width:1080px) {
  .l-container {
    width: var(--width-content);
  }
}


/*!
layout > section
------------------------------
*/
.l-section {
  padding: 80px 0;
}
@media screen and (min-width:768px) {
  .l-section {
    padding: 100px 0;
  }
}

/*!
layout > section-body
------------------------------
*/


/*!
layout > header
------------------------------
*/
.header-inner {
  position: relative;
}


.btn {
  position: fixed;
  top: 10px;
  right: 10px;
  width: 55px;
  height: 55px;
  background-color: var(--color-bg-point);
  z-index: 9999;
  cursor: pointer;
  border-radius: 5px;
}

.btn span {
  display: inline-block;
  width: 50%;
  height: 3px;
  background-color: var(--color-font-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all .3s;
}

.btn span:nth-of-type(1) {
  top: 16px;
}

.btn span:nth-of-type(2) {
  top: 27px;
}

.btn span:nth-of-type(3) {
  top: 38px;
}

#menu {
  width: 100%;
  height: 60vh;
  position: fixed;
  background-color: #485742;
  z-index: 999;
  left: 0;
  top: -100%;
  transition: all .6s;
}

#menu ul {
  color: var(--color-bg-primary-light);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  font-family: var(--font-family-en);
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
}

#menu li a {
  display: inline-block;
  padding: 10px;
}

/* is-active */
#menu.is-active {
  top: 0;
}

.btn.is-active span:nth-of-type(1) {
  transform: translate(-13px,11px) rotate(-45deg);
}

.btn.is-active span:nth-of-type(2) {
  display: none;
}

.btn.is-active span:nth-of-type(3) {
  transform: translate(-13px,-11px) rotate(45deg);
}



/*!
layout > footer
------------------------------
*/
.footer {
  background-color: var(--color-bg-primary);
  color: var(--color-bg-primary-light);
  padding-bottom: 10px;
}
@media screen and (min-width:768px) {
  .footer {
    padding-bottom: 30px;
  }
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}
@media screen and (min-width:768px) {
  .footer-inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.footer-body01 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-body02 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}


.footer-logo {
  font-family: var(--font-family-en);
  font-size: 40px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-logo span {
  display: block;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-family: var(--font-family-en);
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (min-width:768px) {
  .footer-menu {
    flex-direction: row;
    gap: 50px;
  }
}

.footer-instagram {
  width: 40px;
  height: auto;
}
@media screen and (min-width:768px) {
  .footer-instagram {
    margin-left: auto;
  }
}

.footer-copyrights {
  text-transform: uppercase;
  opacity: .5;
  margin: 0 auto;
  text-align: center;
}

/*!
page > top
------------------------------
*/

/*!
page > top > common
------------------------------
*/


/*!
page > top > top-kv
------------------------------
*/
.top-kv {
  position: relative;
}

.top-kv-img {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 90vh;
}
@media screen and (min-width:768px) {
  .top-kv-img {
    flex-direction: row;
  }
}

.top-kv-img::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: var(--color-bg-black);
  opacity: 0.8;
}

.top-kv-img-left {
  background-image: url(/img/fv-img-01.jpg);
  height:50%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.top-kv-img-right {
  background-image: url(/img/fv-img-02.jpg);
  height:50%;
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width:768px) {
  .top-kv-img-left, .top-kv-img-right {
    height: 100%;
  }
}


.top-kv-text {
  text-align: center;
  color: var(--color-font-white);
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.top-kv-text span {
  display: block;
}

.top-kv-copy {
  font-size: 16px;
  letter-spacing: 0.1em;
}

.top-kv-title {
  font-family: var(--font-family-en);
  font-size: 55px;
  line-height: 1.5;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.top-kv-ctn {
  position: absolute;
  bottom: 3%;
  left: 50%;
  transform: translate(-50%);
  display: flex;
  width: 90%;
  gap: 20px;
  justify-content:space-between;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .top-kv-ctn {
    flex-direction: column;
  }
  
}

/*!
page > top > top-about
------------------------------
*/
.top-about {
  padding-bottom: 50px;
  position: relative;
  z-index: 99;
  padding-top: 50px;
}

.top-about-body {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 50px;
}
@media screen and (min-width:768px) {
  .top-about-body {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }
}

.top-about-main span {
  display: block;
}

.top-about-copy {
  font-size: 30px;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.1em;
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .top-about-img {
    width: 50%;
  }
}


.top-about-img01 {
  width: 70%;
  margin-right: auto;
  margin-bottom: 30px;
}
@media screen and (min-width:768px) {
  .top-about-img01 {
    margin-bottom: 70px;
  }
}

.top-about-img02 {
  width: 80%;
  margin-left: auto;
}

.top-about-img img {
  width: 100%;
  border-radius: 10px;
}


/* loop-text */
.scroll {
  position: absolute;
  z-index: 998;
  width: 100%;
  bottom: -50px;
}

.container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  justify-content: flex-start;
  align-items: center;
}

.scroll-list {
  display: flex;
  color: transparent;
  animation: loop-text 16s linear infinite;
  gap: 30px;
}

.scroll-list span {
  display: inline-block;
  white-space: nowrap;

  font-size: 100px;
  line-height: 1;
  font-family: var(--font-family-en);
  text-transform: uppercase;
  -webkit-text-stroke: 2px var(--color-bg-black) ;
}

@keyframes loop-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-50%);
  }
}


/*!
page > top > top-feature
------------------------------
*/
.top-feature {
  position: relative;
  height: 900px;
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width:768px) {
  .top-feature {
    height: 100%;
  }
}


.top-feature-item {
  background-color: var(--color-bg-red);
  padding: 150px 20px;
}
.top-feature-item:nth-of-type(2) {
  background-color: var(--color-bg-green);
}
.top-feature-item:nth-of-type(3) {
  background-color: var(--color-bg-blue);
}

.top-feature-content {
  display: flex;
  flex-direction: column;
  gap: 18px;

}
@media screen and (min-width:768px) {
  .top-feature-content {
    flex-direction: row;
  }
}

@media screen and (min-width:768px) {
  .top-feature-text {
    width: 60%;
  }
}

.top-feature-title {
  margin-bottom: 33px;
  text-align: left;
}

.top-feature-description h2 {
  margin-bottom: 12px;
}

.top-feature-description h2 span {
  display: block;
}

.top-feature-img img {
  border-radius: 10px;
}


/* top-feature-nav */

.slider-controls {
  position: absolute;
  bottom: 45px;
  z-index: 20;
  width: 100%;
  place-items: center;
  font-family: var(--font-family-en);
  text-transform: uppercase;
}

.slider-pagenation {
  display: flex;
  align-items: center;
}

.slider-pagenation span {
  content: "";
  height: 51px;
  width: 1px;
  background-color: var(--color-bg-primary);
}

.slider-tab {
  display: flex;
  flex-direction: column;
  width: 45px;
  margin: 0 23px;
  cursor: pointer;
  place-items: center;
}

/*!
page > cafemenu
------------------------------
*/

.top-cafemenu-title {
  white-space: nowrap;

}

.top-cafemenu-main {
  margin-top:50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-cafemenu-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media screen and (min-width:768px) {
  .top-cafemenu-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 49px 57px;
  }
}

.top-cafemenu-item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.top-cafemenu-img img {
  border-radius: 10px;
}

.top-cafemenu-name {
  display: flex;
  justify-content: space-between;
  margin-bottom: 8px;
}

.cafemenu--recommended {
  position: relative;
}

.recommended-icon {
  position: absolute;
  background-color: #E26245;
  top: -10%;
  right: -5px;
  border-radius: 50%;
  height: 80px;
  width: 80px;
  text-align: center;
}

.recommended-icon p {
  transform: translateY(25px);
  color: var(--color-font-white);
  font-weight: bold;
  font-size: 13px;
}

/* morning */
.top-cafemenu-morning {
  margin: 0;
}

.top-cafemenu-morning--inner {
  background-color: var(--color-bg-primary-light);
  border-radius: 10px;
  text-align: center;
  padding: 35px 25px;
  
}
@media screen and (min-width:768px) {
  .top-cafemenu-morning--inner {
    display: grid;
    text-align: left;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    padding: 40px 50px;
    gap: 20px;
  }
}

.top-cafemenu-morning-text h2 {
  margin-bottom: 8px;
}

.top-cafemenu-morning-text span {
  display: block;
}

.top-cafemenu-morning-img {
  margin-top: 20px;
}
@media screen and (min-width:768px) {
  .top-cafemenu-morning-img {
    width: 100%;
    margin-top: 0;
  }
}

.top-cafemenu-morning-img img {
  border-radius: 10px;
}

/* drinkmenu */
.top-cafemenu-drink {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 80%;
  margin: 0 auto;
}
@media screen and (min-width:768px) {
  .top-cafemenu-drink {
    flex-direction: row;
    width: 100%;
    gap: 50px;
  }
}

.top-cafemenu-drink-title {
  padding: 50px;
  border-right: 1px solid var(--color-bg-primary);
  border-left: 1px solid var(--color-bg-primary);
  white-space: nowrap;
}


.top-cafemenu-drink-list {
  text-align: center;
  display: grid;
  grid-auto-flow: row;
  grid-template-rows: repeat(3,auto);
  gap: 20px;
}
@media screen and (min-width:768px) {
  .top-cafemenu-drink-list {
    grid-auto-flow: column;
    text-align: left;
    gap: 0px 30px;
  }
}

.top-cafemenu-drink-item span {
  display: block;
}


/*!
page > product > instagram
------------------------------
*/
.top-instagram {
  background-color: var(--color-bg-primary);
  padding-bottom: 200px;
}

.top-instagram-inner {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.top-instagram-title {
  color: var(--color-font-white);
}

.top-instagram-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 13px;
}
@media screen and (min-width:768px) {
  .top-instagram-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

.top-instagram-icon {
  width: 30px;
  height: auto;
  margin-right: 10px;
}

.top-instagram-icon img {
  display: block;
  width: 100%;
}

/*!
page > product > access
------------------------------
*/
.top-access {
  margin-top: -130px;
  margin-bottom: 50px;
}

.top-access-inner {
  background-color: var(--color-font-white);
  border-radius: 20px;
}

.top-access-body {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: center;
}

.top-access-address {
  text-align: center;
}

.top-access-address-text {
  font-weight: bold;
}

.top-access-address-text span {
  display: block;
}

.top-access-address-link {
  text-decoration: underline;
  cursor: pointer;
}

/* table */
.top-access-content {
  width: 80%;
}

.top-access-table-row {
  display: grid;
  grid-template-columns: 1fr;
  line-height: 1;
  gap: 10px;
  padding: 20px 0;
  border-bottom: solid 1px var(--color-bg-primary-light);
}
.top-access-table-row:first-child {
  border-top: solid 1px var(--color-bg-primary-light);
}
@media screen and (min-width:768px) {
  .top-access-table-row {
    grid-template-columns: 30% 70%;
    padding: 25px 0;
  }
}

.top-access-table-header {
  font-weight: bold;
  opacity: .7;
}

.top-access-table-data {
  font-weight: bold;
}

/* map */
@media screen and (min-width:768px){
  .top-access-map {
    width: 70%;
  }
}


/*!
page > error 
------------------------------
*/

/*!
page > error > error
------------------------------
*/
