@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
  border: none;
  box-sizing: border-box;
}

/* iOSのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* iOSサファリで発生する部分的な文字の拡大表示の抑制 */
html {
  -webkit-text-size-adjust: 100%;
}

:root {
  --size_10: 10px;
  --size_12: 12px;
  --size_14: 14px;
  --size_16: 16px;
  --size_18: 18px;
  --size_20: 20px;
  --size_22: 22px;
  --size_30: 30px;
  --weight_500: 500;
  --weight_700: 700;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: var(--size_16);
  color: #382e21;
  line-height: 2;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}

a:link {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

img {
  width: 100%;
  display: block;
  border: none;
  -webkit-backface-visibility: hidden; /*クロームの画像ぼけ防止*/
  image-rendering: -webkit-optimize-contrast; /*クロームの画像ぼけ防止*/
}

button {
  border: 0;
  outline: none;
  font-size: 0;
  color: transparent;
  background-color: transparent;
}

header {
  width: min(375px, 100%);
  margin: auto;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 30px;
  padding: 20px 30px;
  background-color: #fff;
  position: sticky;
  top: 0px;
  z-index: 2;
}
header #entry ul {
  display: flex;
  gap: 20px;
}
header #entry ul li {
  line-height: 1;
}
header #entry ul li a {
  font-size: var(--size_10);
  font-weight: var(--weight_700);
  color: #000;
}
header #gnav {
  width: min(375px, 100%);
  position: fixed;
  top: 0;
  left: 10%;
  transform: translate(0%, -100%);
  transition: 0.5s;
}
@media screen and (max-width: 900px) {
  header #gnav {
    width: 100%;
    left: 0;
  }
}
header #gnav.visible {
  transform: translate(0, 15%);
}
header #gnav ul {
  width: min(375px, 100%);
  padding: 60px 20px 20px 20px;
  margin: auto;
  background-color: #fff;
}
header #gnav ul li {
  padding: 0 0 15px 0;
  margin: 0 0 10px 0;
  border-bottom: 1px solid #d7d7d7;
}
header #gnav ul li:last-child {
  padding: 0;
  margin: 0;
  border-bottom: none;
}
header #gnav ul li span {
  display: block;
  font-family: "Arsenal", sans-serif;
  font-size: var(--size_18);
  color: #7f7f7f;
}
header #gnav ul li span small {
  font-family: "Marcellus", serif;
  font-size: var(--size_14);
  margin: 0 10px 0 0;
}
header #gnav ul li a {
  font-size: var(--size_14);
  color: #322e21;
  line-height: 1.7;
  display: block;
}
header #trigger {
  width: 30px;
  height: 20px;
  display: block;
  position: relative;
  z-index: 3;
}
header #trigger span {
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  left: 0;
  background-color: #322e21;
  transition: 0.2s;
}
header #trigger span:nth-of-type(1) {
  top: 0;
}
header #trigger span:nth-of-type(2) {
  top: 9px;
}
header #trigger span:nth-of-type(3) {
  bottom: 0;
}
header #trigger.on span {
  background-color: #322e21;
}
header #trigger.on span:nth-of-type(1) {
  transform: translateY(8px) scale(0);
}
header #trigger.on span:nth-of-type(2) {
  transform: rotate(-45deg);
}
header #trigger.on span:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}

footer {
  width: min(375px, 100%);
  margin: auto;
}

.mgn_10 {
  margin: 0 0 10px 0;
}

.mgn_20 {
  margin: 0 0 20px 0;
}

.mgn_30 {
  margin: 0 0 30px 0;
}

.mgn_50 {
  margin: 0 0 50px 0;
}

.mgn_60 {
  margin: 0 0 60px 0;
}

.mgn_70 {
  margin: 0 0 70px 0;
}

.mgn_80 {
  margin: 0 0 80px 0;
}

.mgn_90 {
  margin: 0 0 90px 0;
}

.mgn_100 {
  margin: 0 0 100px 0;
}/*# sourceMappingURL=common.css.map */