@charset "UTF-8";
/*
	##### Loun9ine #####
	/assets/css/common.css
*/


/* A Modern CSS Reset */
*, *::before, *::after {
  box-sizing: border-box
}
body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0
}
ul[role="list"], ol[role="list"] {
  list-style: none
}
html:focus-within {
  scroll-behavior: smooth
}
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5
}
a:not([class]) {
  text-decoration-skip-ink: auto
}
img, picture {
  max-width: 100%;
  display: block
}
input, button, textarea, select {
  font: inherit
}
@media(prefers-reduced-motion:reduce) {
  html:focus-within {
    scroll-behavior: auto
  }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important
  }
}
/* --------------------------------------------------
init bg f2f2f0
-------------------------------------------------- */
:root {
  --main-color: #212121;
  --light-color: #8c7939;
  --dark-color: #4f4a3c;
  --bg-color: #f6f6f0;
  --bg2-color: #ecece3;
}
:target {
  scroll-margin-top: 80px
}
@media (max-width: 640px) {
  :target {
    scroll-margin-top: calc(96/640*100vw)
  }
}
html {
  font-family: "Noto Sans JP", HiraginoSans, "ヒラギノ角ゴシック", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo,
    sans-serif;
    overflow: hidden;
    overflow-y: scroll;
  scroll-behavior: smooth
}
body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  color: var(--main-color);
  position: relative;
  min-height: 100%;
  font-feature-settings: "pwid";
  background-color: var(--bg-color)
}
a {
  text-decoration: none;
  color: currentColor
}
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0
}
li {
  margin: 0;
  padding: 0
}
/* --------------------------------------------------
tools
-------------------------------------------------- */
small,
.small,
.note {
  font-size: 80%;
}
.float-r {
  float: right;
}
.float-l {
  float: left;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
  overflow: hidden;
}

.hide-on-pc {
  display: none;
}
@media (max-width: 640px) {
  .hide-on-pc {
    display: inherit;
  }
  .hide-on-sp {
    display: none;
  }
}
#container {
  position: relative;
  width: 100%;
  overflow: hidden
}
@media (min-width: 769px) {
  #container {
    padding-top: 70px
  }
}
.flex-box {
  display: flex;
}
.sb {
  justify-content: space-between
}
.align-c {
  align-items: center;
}
.mincho {
  font-family: 'Noto Serif JP', serif
}
/* --------------------------------------------------
SNS FONTS
-------------------------------------------------- */
@font-face {
  font-family: 'icomoon';
  src:
    url('/files/user_img/1/file/fonts/icomoon.ttf?tpidky') format('truetype'),
    url('/files/user_img/1/file/fonts/icomoon.woff?tpidky') format('woff'),
    url('/files/user_img/1/file/fonts/icomoon.svg?tpidky#icomoon') format('svg');
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^="sns-icon-"], [class*="sns-icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.sns-icon-line:before {
  content: "\e901";
}
.sns-icon-instagram:before {
  content: "\ea92";
}
.action.start.fade {
  opacity: 0
}
/* --------------------------------------------------
effects
-------------------------------------------------- */
.rise.fade {
  opacity: 0;
  transform: translateY(50px);
}
.fade,
.late-fade {
  opacity: 0;
}
.zoom.fade {
  opacity: 0;
  transform: scale(1.1)
}
.rise.fade.start {
  animation: rise-fade-in 1s cubic-bezier(.97, 0, .73, 1) .3s both;
}
.fade.start {
  animation: fade-in-simple 1s cubic-bezier(.97, 0, .73, 1) .2s both;
}
.late-fade.start {
  animation: fade-in-simple 1s cubic-bezier(.97, 0, .73, 1) 1s both;
}
.zoom.fade.start {
  animation: fade-and-zoom 1.5s cubic-bezier(.51, 0, .21, 1.03) .5s both;
}
@keyframes fade-in-simple {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-and-zoom {
  0% {
    opacity: 0;
    transform: scale(1.4)
  }
  100% {
    opacity: 1;
    transform: scale(1)
  }
}
@keyframes rise-fade-in {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.char {
  display: inline-block;
  position: relative;
}
.fade-steps .char {
  opacity: 0;
}
.fade-steps.start .char {
  animation-name: fade-in-simple;
  animation-timing-function: linear;
  animation-fill-mode: both
}
.fade-steps.start .char:nth-child(2n) {
  animation-duration: .5s;
  animation-delay: .3s;
}
.fade-steps.start .char:nth-child(3n+1) {
  animation-duration: .5s;
  animation-delay: .15s;
}
/* --------------------------------------------------
splash
-------------------------------------------------- */
.splash-area {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 3000;
  background-color: #eee
}
.splash-area .inner {
  position: absolute;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.splash-area .inner svg {
  width: 100px
}
#strokes path {
  fill-opacity: 0;
  transition: fill-opacity .75s;
  stroke: #333;
}
#strokes.done path {
  fill-opacity: 1;
  stroke: none;
}
@media (max-width: 640px) {
  .splash-area {
    height: -webkit-fill-available
  }
  .splash-area .inner svg {
    width: calc(150/640*100vw)
  }
}
@keyframes bg-fade {
  0% {
    background-color: #fff
  }
  80% {
    background-color: #eee
  }
  100% {
    background-color: #eee
  }
}
/* --------------------------------------------------
「View ボタン」基本セット
-------------------------------------------------- */
.btn-view-line {
  display: block;
  width: 125px;
  position: relative;
  font-family: 'Noto Serif JP', serif;
  will-change: contents;
  white-space: nowrap;
  flex-shrink: 0 !important
}
.btn-view-line.all {
  width: 102px
}
.btn-view-line::before,
.btn-view-line::after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  height: 1px;
}
.btn-view-line::before {
  background: #222;
  width: 100%;
}
@media (min-width: 769px) {
  .btn-view-line::after {
    width: 0;
    background: #9d8c56;
    transition: all 0.3s ease-in-out;
  }
  a:hover .btn-view-line::after {
    width: 100%;
  }
}
.btn-view-arrow {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--light-color);
  transition: color .3s ease
}
.btn-view-arrow::before {
  content: "";
  width: 20px;
  height: 1px;
  background-color: #222;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
.btn-view-arrow::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.5px 0 2.5px 4.3px;
  border-color: transparent transparent transparent #222;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all .3s;
}
@media (min-width: 769px) {
  a:hover .btn-view-arrow,
  .btn-view-arrow:hover {
    color: #1c1c1c;
  }
  a:hover .btn-view-arrow::before,
  .btn-view-arrow:hover::before {
    right: -10px;
    width: 30px;
  }
  a:hover .btn-view-arrow::after,
  .btn-view-arrow:hover::after {
    right: -10px;
  }
}
@media (max-width: 1200px) {
  .btn-view-line {
    width: calc(125 / 1200 * 100vw);
  }
  .btn-view-arrow::before {
    width: calc(20 / 1200 * 100vw);
  }
  a:hover .btn-view-arrow::before {
    width: calc(30 / 1200 * 100vw);
  }
}
@media (max-width: 1200px) and (min-width: 769px) {
  .btn-view-arrow {
    font-size: calc(16 / 1200 * 100vw);
  }
}
@media (max-width: 940px) {
  .btn-view-line {
    width: calc(125 / 940 * 100vw);
  }
  .btn-view-arrow::before {
    width: calc(20 / 940 * 100vw);
  }
  a:hover .btn-view-arrow::before {
    width: calc(30 / 940 * 100vw);
  }
}
@media (max-width: 768px) {
  .btn-view-line {
    width: calc(125 / 768 * 100vw);
  }
  .btn-view-arrow::before {
    width: calc(20 / 768 * 100vw);
  }
}
@media (max-width: 640px) {
  .btn-view-line {
    font-size: calc(26/640*100vw);
    width: calc(190 / 640 * 100vw);
    margin-top: calc(20 / 640 * 100vw);
  }
  .btn-view-line.all {
    width: calc(156/640*100vw)
  }
  .btn-view-arrow::before {
    width: calc(40 / 640 * 100vw);
  }
  .btn-view-arrow {
    height: calc(56 / 640 * 100vw);
    font-size: calc(26 / 640 * 100vw);
  }
}