@charset "utf-8";

:root {
  --root-font-size: 16;
  --font-color: #333;
  --font-color-gold: #ddd598;
  --background-color: #fff;
  --color-fighters-blue: #006298;
  --color-default-black: #010101;
  --color-default-white: #fff;
  --color-gray: #aaa;
  --color-gold: #e7e1ac;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--background-color);
  line-height: 1.5;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: calc(14 / var(--root-font-size) * 1rem);
  font-weight: 400;
  color: var(--font-color);
  scroll-behavior: smooth;
}
body.is-fixed {
  overflow: hidden;
}

@media screen and (min-width: 769px) {
  body {
    font-size: calc(16 / var(--root-font-size) * 1rem);
  }

  body.is-fixed {
    overflow: visible;
  }
}

img {
  display: block;
  width: 100%;
  height: auto;
}

@media screen and (min-width: 769px) {
}

/**************************************
* header
**************************************/
.header-humburgerBtn {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 101;
  display: block;
  width: 60px;
  height: 60px;
  background-color: var(--color-default-black);
  border-radius: 50%;
}
.header-humburgerBtn > span {
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  display: block;
  width: 30px;
  height: 3px;
  background-color: var(--color-default-white);
  border-radius: calc(1px / 0);
  transition: rotate 0.2s 0s, top 0.2s 0.2s;
}
.header-humburgerBtn > span:first-child {
  top: calc(50% - 11px);
}
.header-humburgerBtn > span:nth-child(2) {
  top: 50%;
}
.header-humburgerBtn > span:last-child {
  top: calc(50% + 11px);
}

#header.is-delicious .header-humburgerBtn > span {
  top: 50%;
  transition: rotate 0.2s 0.2s, top 0.2s 0s;
}
#header.is-delicious .header-humburgerBtn > span:first-child {
  rotate: 45deg;
}
#header.is-delicious .header-humburgerBtn > span:nth-child(2) {
  opacity: 0;
}
#header.is-delicious .header-humburgerBtn > span:last-child {
  rotate: -45deg;
}

@media screen and (min-width: 769px) {
  .header-humburgerBtn {
    top: 40px;
    right: 40px;
    width: 64px;
    height: 64px;
  }
  .header-humburgerBtn > span {
    width: 32px;
  }
}

.headerMenu {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color-fighters-blue);
  transform: translate(100%);
  transition: transform 0.3s ease;
}
#header.is-delicious .headerMenu {
  transform: translate(0);
}

.headerMenu-list {
  margin: 0 auto;
  padding: 0 16px;
  width: fit-content;
}

.headerMenu-nav {
  margin-top: 80px;
}

.headerMenu-item + .headerMenu-item {
  margin-top: 32px;
}

.headerMenu-item-title {
  text-align: center;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  font-weight: 700;
  color: var(--color-default-white);
}

.headerMenu-item-subtitle {
  margin-top: 4px;
  text-align: center;
  font-size: calc(12 / var(--root-font-size) * 1rem);
  font-weight: 500;
  color: var(--font-color-gold);
}

.headerMenu .headerMenu-btn {
  margin: 36px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 310px;
  height: 60px;
  background-color: var(--color-default-black);
  border-radius: calc(1px / 0);
}

.headerMenu-btn-logo {
  width: 31px;
}

.headerMenu-btn-text {
  font-size: calc(16 / var(--root-font-size) * 1rem);
  font-weight: 600;
  color: var(--color-default-white);
}

@media screen and (min-width: 769px) {
  .headerMenu {
    left: auto;
    width: 400px;
  }

  .headerMenu-item-subtitle {
    font-size: calc(16 / var(--root-font-size) * 1rem);
  }
}

/**************************************
* scrollup
**************************************/
.scrollup-container {
  position: relative;
}

.scrollup {
  position: fixed;
  bottom: 13px;
  left: 16px;
  z-index: 99;
  display: block;
  width: 40px;
  height: 40px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.scrollup.is-hidden {
  opacity: 0;
}
.scrollup.is-bottom {
  position: absolute;
}

@media screen and (min-width: 769px) {
  .scrollup {
    bottom: 42px;
    left: 60px;
    width: 48px;
    height: 48px;
  }
}

/**************************************
* footer
**************************************/
#footer {
  width: 100%;
  padding: 24px 16px 10px;
  background-color: var(--color-default-black);
  color: #fff;
}

.footer-logo {
  margin: 0 auto;
  display: block;
  width: 180px;
}
@media (hover: hover) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}

.footerShare {
  margin-top: 24px;
}

.footerShare-ttl {
  line-height: 1;
  text-align: center;
  font-size: calc(20 / var(--root-font-size) * 1rem);
  font-weight: 400;
}

.footerShare-list {
  margin-top: 5px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
}

.footerShare-item {
  width: 35px;
  height: 35px;
}

.footerShare-link {
  display: block;
}
.footerShare-item._x .footerShare-link {
  padding: 3px;
}
@media (hover: hover) {
  .footerShare-link:hover {
    opacity: 0.7;
  }
}

.footer-copyright {
  margin-top: 24px;
  display: block;
  width: 100%;
  line-height: 1.4;
  text-align: center;
  font-size: calc(10 / var(--root-font-size) * 1rem);
  color: #ccc;
}

@media screen and (min-width: 769px) {
  #footer {
    padding: 50px 16px 20px;
  }

  .footer-logo {
    width: 320px;
  }

  .footerShare {
    margin-top: 36px;
  }

  .footerShare-ttl {
    font-size: calc(40 / var(--root-font-size) * 1rem);
  }

  .footerShare-list {
    gap: 32px;
  }

  .footerShare-item {
    width: 48px;
    height: 48px;
  }

  .footerShare-item._x .footerShare-link {
    padding: 5px;
  }

  .footer-copyright {
    font-size: calc(14 / var(--root-font-size) * 1rem);
  }
}
