@charset "UTF-8";
/************************************************
          フォント設定
*************************************************/
@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 100;
}

@font-face {
  font-family: "Helvetica Neue";
  src: local("Helvetica Neue Regular");
  font-weight: 200;
}

@media all and (-ms-high-contrast: none) {
  body,
  tooltip,
  popover {
    font-family: Verdana, Meiryo, sans-serif;
  }
}

html {
  font-size: 62.5%;
  line-height: 1.5;
  letter-spacing: .1rem;
}

body {
  overflow-x: hidden;
  font-size: 1.4rem;
  font-family: 'Sawarabi+';
}

@media screen and (min-width: 768px) {
  body {
    /* 577px以下*/
    font-size: calc((16 - 14) * ((100vw - 577px) / (991 - 577)) + 1.4rem);
  }
}

@media screen and (min-width: 992px) {
  body {
    /* 992px以上*/
    font-size: 1.6rem;
  }
}

/*
.main-container{
  margin:0 1.5rem;

@include mq-up(md) {
    margin: calc( 1.5rem + 11.5 * ( 100vw - 577px ) / (991 - 577));}

@include mq-up(lg) {
    margin:0 13rem;
  }
}

*/
/************************************************
          フォントサイズ
*************************************************/
h2.font-lg {
  font-size: 1.25rem;
}

.font-sm {
  font-size: 0.875rem;
}

/************************************************
          リード文
*************************************************/
.catch {
  letter-spacing: 0.2rem;
  font-size: 2rem;
  /* 577px以下*/
}

@media screen and (min-width: 768px) {
  .catch {
    font-size: calc((30 - 20) * ((100vw - 577px) / (992 - 577)) + 2rem);
  }
}

@media screen and (min-width: 992px) {
  .catch {
    /* 992px以上*/
    font-size: 3rem;
  }
}

/************************************************
          フォントカラー
*************************************************/
.text-wihite {
  color: #fff;
}

/************************************************
         バックグランドカラー
*************************************************/
.base-color {
  background: #a37e39;
}

/************************************************
          カラー
*************************************************/
.black-10 {
  background: rgba(0, 0, 0, 0.1);
}

.black-20 {
  background: rgba(0, 0, 0, 0.2);
}

.black-30 {
  background: rgba(0, 0, 0, 0.3);
}

.black-40 {
  background: rgba(0, 0, 0, 0.4);
}

.black-50 {
  background: rgba(0, 0, 0, 0.5);
}

.black-60 {
  background: rgba(0, 0, 0, 0.6);
}

.black-70 {
  background: rgba(0, 0, 0, 0.7);
}

.black-80 {
  background: rgba(0, 0, 0, 0.8);
}

.black-90 {
  background: rgba(0, 0, 0, 0.9);
}

.black-100 {
  background: black;
}

.font-black-10 {
  color: rgba(0, 0, 0, 0.1);
}

.font-black-20 {
  color: rgba(0, 0, 0, 0.2);
}

.font-black-30 {
  color: rgba(0, 0, 0, 0.3);
}

.font-black-40 {
  color: rgba(0, 0, 0, 0.4);
}

.font-black-50 {
  color: rgba(0, 0, 0, 0.5);
}

.font-black-60 {
  color: rgba(0, 0, 0, 0.6);
}

.font-black-70 {
  color: rgba(0, 0, 0, 0.7);
}

.font-black-80 {
  color: rgba(0, 0, 0, 0.8);
}

.font-black-90 {
  color: rgba(0, 0, 0, 0.9);
}

.font-black-100 {
  color: black;
}

.bg-white {
  background-color: #fff;
}

a, a:visited {
  color: #7b591a;
  text-decoration: none;
}

@-webkit-keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes blink {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.blinking {
  -webkit-animation: blink 1s ease-in-out infinite alternate;
          animation: blink 1s ease-in-out infinite alternate;
}

/************************************************
          タイトル
*************************************************/
.title {
  line-height: 1.2;
  font-family: "リュウミン R-KL";
}

@media screen and (min-width: 768px) {
  .title {
    font-size: calc((1.5 - 1.2) * ((100vw - 577px) / (992 - 577)) + 1.2);
    line-height: 1.2;
  }
}

@media screen and (min-width: 992px) {
  .title {
    /* 992px以上*/
    line-height: 1.5;
  }
}

.title-underbar {
  position: relative;
  display: inline-block;
  width: 100%;
  margin-bottom: 1em;
}

.title-underbar:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 2px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #a37e39;
  border-radius: 2px;
}

/************** h2 **************/
h2.title {
  font-size: 2.5rem;
  /* 577px以下*/
  font-family: "リュウミン R-KL";
}

@media screen and (min-width: 768px) {
  h2.title {
    font-size: calc((40 - 25) * ((100vw - 577px) / (992 - 577)) + 2.5rem);
    line-height: 1.2;
  }
}

@media screen and (min-width: 992px) {
  h2.title {
    /* 992px以上*/
    font-size: 4rem;
    line-height: 1.5;
    letter-spacing: 0.3rem;
  }
}

/************** h3 **************/
h3.title {
  margin-top: 2rem;
  letter-spacing: 0.2rem;
  font-size: 2rem;
  /* 577px以下*/
  margin-top: 2.8rem;
}

@media screen and (min-width: 768px) {
  h3.title {
    font-size: calc((40 - 32) * ((100vw - 577px) / (992 - 577)) + 3rem);
    margin-top: calc((4 - 3.2) * ((100vw - 577px) / (992 - 577)) + 4rem);
  }
}

@media screen and (min-width: 992px) {
  h3.title {
    /* 992px以上*/
    font-size: 4rem;
  }
}

/************** h4 **************/
h4.title {
  margin-top: 1.5rem;
  font-size: 1.8rem;
  /* 577px以下*/
  margin-top: 2.5rem;
}

@media screen and (min-width: 768px) {
  h4.title {
    font-size: calc((25 - 18) * ((100vw - 577px) / (992 - 577)) + 1.8rem);
    margin-top: calc((2.5 - 1.5) * ((100vw - 577px) / (992 - 577)) + 2.5rem);
  }
}

@media screen and (min-width: 992px) {
  h4.title {
    /* 992px以上*/
    font-size: 2.5rem;
  }
}

/************** h4 **************/
h5.title {
  margin-top: 1rem;
  font-size: 1.6rem;
  /* 577px以下*/
}

@media screen and (min-width: 768px) {
  h5.title {
    font-size: calc((20 - 16) * ((100vw - 577px) / (992 - 577)) + 1.6rem);
    margin-top: calc((2 - 1) * ((100vw - 577px) / (992 - 577)) + 2rem);
  }
}

@media screen and (min-width: 992px) {
  h5.title {
    /* 992px以上*/
    font-size: 2rem;
  }
}

/************************************************
          画像
*************************************************/
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: top;
  display: block;
}

.wide-img {
  margin: 1em calc(50% - 50vw);
  margin-top: 0;
  height: auto;
  background-color: #000;
  padding: 0;
}

.wide-img > img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 25%;
     object-position: 0 25%;
}

@media screen and (min-width: 992px) {
  .wide-img > img {
    height: 500px;
  }
}

.release {
  margin: 1em calc(50% - 50vw);
}

.release > img {
  width: 100%;
  height: auto;
}

/************************************************
          行揃え
*************************************************/
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.spinner-border {
  position: abusolute;
  top: 50%;
  left: 50%;
  color: #000;
  z-index: 1;
}

/************************************************
          段落
*************************************************/
p {
  margin: 0.5rem 0;
}

@media screen and (min-width: 768px) {
  p {
    font-size: calc((1 - 0.5) * ((100vw - 577px) / (992 - 577)) + 0.5);
    line-height: 1.5;
  }
}

@media screen and (min-width: 992px) {
  p {
    /* 992px以上*/
    margin: 1rem 0;
  }
}

/************************************************
         float
*************************************************/
.float-img-left {
  float: left;
  padding-right: 2rem;
}

@media screen and (max-width: 767px) {
  .float-img-left {
    float: none;
    text-align: center;
    padding: 0;
  }
}

.float-img-right {
  float: right;
  padding-left: 2rem;
}

@media screen and (max-width: 767px) {
  .float-img-right {
    float: none;
    text-align: center;
    padding: 0;
  }
}

.clear {
  clear: both;
}

/************************************************
          グローバルナビ
*************************************************/
.logo {
  width: 150px;
  height: auto;
  margin: 20px auto 0 auto;
}

@media screen and (min-width: 992px) {
  .logo {
    /* 992px以上*/
    width: 208px;
  }
}

.fixed-top {
  position: fixed;
}

#header {
  top: 0;
  z-index: 1000;
  width: 100%;
  border-bottom: 1px solid #efefef;
}

/************************************************
          グローバルナビ
*************************************************/
.g-nav {
  display: none;
}

.g-nav li {
  position: relative;
  list-style: none;
}

.g-nav li a {
  display: block;
  width: 205px;
  height: 40px;
  text-align: center;
  color: #333;
  line-height: 2.8;
  text-decoration: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.g-nav > li {
  margin-bottom: 10px;
}

.g-nav > li:not(:last-child) {
  border-right: 1px solid #eee;
}

.g-nav > li > a {
  line-height: 1.7;
  position: relative;
  display: inline-block;
  text-decoration: none;
}

.g-nav > li > a::after {
  position: absolute;
  bottom: 10px;
  left: 30%;
  content: '';
  width: 40%;
  height: 1px;
  background: #a5a5a5;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform .3s;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  z-index: 1031;
}

.g-nav > li > a:hover::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.g-nav > li li > a {
  /*layer-2*/
  color: #000;
  background: #999;
  -webkit-transition: all 0.9s ease 0s;
  transition: all 0.9s ease 0s;
}

.g-nav > li li:hover > a {
  /*layer-2*/
  background: #ced4da;
  cursor: pointer;
}

.g-nav li ul {
  top: 40px;
  left: -40px;
  position: absolute;
}

.g-nav li ul li {
  overflow: hidden;
  height: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  background: #eee;
}

.g-nav li ul li a {
  border-top: 1px dotted #efefef;
}

.g-nav li:hover > ul > li {
  overflow: visible;
  height: 40px;
}

.g-nav li ul li ul {
  top: 0;
  left: 165px;
}

.g-nav li ul li ul:before {
  /*layer-2▷*/
  position: absolute;
  content: "";
  top: 15px;
  left: 25px;
  border: 5px solid transparent;
  border-left: 5px solid #a37e39;
}

.g-nav li ul li ul li:hover > a {
  /*layer-3*/
  color: #fff;
  background: #a37e39;
}

.g-nav li ul li ul.left {
  top: 0;
  left: -245px;
}

.g-nav li ul li ul.left:before,
.g-nav li ul li ul li ul.left:before {
  /*layer-3-left▷*/
  position: absolute;
  content: "";
  top: 15px;
  left: 250px;
  border: 5px solid transparent;
  border-right: 5px solid #a37e39;
}

.g-nav li ul li ul.left li:hover > a {
  /*layer-2-left*/
  color: #000;
  background: #a37e39;
}

.g-nav li ul li ul li ul.left li:hover > a {
  /*layer-3-left*/
  color: #000;
  background: #a37e39;
}

@media (min-width: 991px) {
  .g-nav {
    width: 1025px;
    height: 40px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0;
  }
}

/************************************************
          ドロワーメニュー
*************************************************/
.line1, .line2, .line3 {
  width: 20px;
  height: 3px;
  background-color: black;
  margin: 3px;
}

input {
  position: absolute;
  left: -50vw;
  top: 0;
}

.open,
.close {
  display: block;
}

.open {
  position: fixed;
  top: 15px;
  left: 10px;
  z-index: 1032;
}

.close {
  position: absolute;
  right: 5%;
  top: 5px;
  color: #000;
  z-index: 1032;
}

aside {
  display: block;
  position: absolute;
  left: -100vw;
  top: 0;
  height: 100%;
  background: #fff;
  min-width: 250px;
  width: 30%;
  z-index: 1032;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

input:checked ~ aside {
  position: absolute;
  left: 0;
  top: 0;
  -webkit-transition: all 0.2;
  transition: all 0.2;
}

input:checked ~ .back {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.5);
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1031;
}

@media screen and (min-width: 992px) {
  .line1, .line2, .line3, .open,
  .close, #drawer {
    display: none;
  }
}

.drawer-menu {
  margin: 20px 0;
  padding: 10px;
  list-style: none;
}

.drawer-menu li {
  padding: 10px 5px;
  border-bottom: 1px dotted #adb5bd;
}

.drawer-menu li:not(:last-child) {
  border-bottom: 1px dotted #999;
}

/************************************************
          ベース設定
*************************************************/
html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

p {
  letter-spacing: 0.1rem;
  line-height: 1.6;
}

.left-colum {
  display: none;
}

.main-container {
  width: 95%;
  margin: 0 auto;
}

@media screen and (min-width: 577px) {
  .main-container {
    width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .main-container {
    width: 720px;
  }
}

@media screen and (min-width: 992px) {
  .main-container {
    width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .main-container {
    width: 1024px;
  }
}

.main-image {
  background: center/cover no-repeat url(../images/main-bg02.jpg);
  height: 100vh;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  text-align: center;
}

.wide-container {
  margin: auto;
}

section .wide-inner {
  margin: 1em calc(50% - 50vw);
  padding: 2em calc(50vw - 50%);
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #000;
}

.title + p {
  margin-top: .2rem;
}

h2.title + p {
  margin-top: .5rem;
}

section {
  /* セレクタ名の前方一致 */
  padding: 0;
}

section > .content {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

@media screen and (min-width: 768px) {
  section > .content {
    padding-top: calc( 4rem + 4 * ( 100vw - 577px ) / (991 - 577));
    padding-bottom: calc( 4rem + 4 * ( 100vw - 577px ) / (991 - 577));
  }
}

@media screen and (min-width: 992px) {
  section > .content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

/************************************************
          ベース設定
*************************************************/
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Jun 201";
}

.left-colum {
  display: none;
}

.main-container {
  width: 95%;
  margin: 0 auto;
}

@media screen and (min-width: 577px) {
  .main-container {
    width: 540px;
  }
}

@media screen and (min-width: 768px) {
  .main-container {
    width: 720px;
  }
}

@media screen and (min-width: 992px) {
  .main-container {
    width: 960px;
  }
}

@media screen and (min-width: 1200px) {
  .main-container {
    width: 1024px;
  }
}

/*--------------　コンテンツ -----------------*/
.bg-style {
  position: absolute;
  font-size: 30rem;
  font-family: "リュウミン R-KL";
  letter-spacing: 20rem;
  color: #efefef;
  z-index: 0;
  text-align: center;
}

.title-area {
  width: 300px;
  margin: 2rem auto 0 auto;
  text-align: center;
}

.logo {
  text-align: center;
  letter-spacing: 0.4rem;
  font-family: "Jun 201";
  font-size: 1rem;
  line-height: 2rem;
  width: 110px;
  margin: 0 auto;
  padding: 2rem;
  color: #a37e39;
}

.arrow-down {
  color: #a37e39;
  text-align: center;
  margin: 4rem auto 0 auto;
  width: 40px;
}

.logo-font {
  font-family: "リュウミン R-KL";
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  letter-spacing: 2.6rem;
  font-size: 3rem;
  text-align: left;
  line-height: 5.5rem;
  margin: 2.5rem 0;
  color: #666;
}

@media screen and (min-width: 992px) {
  .logo-font {
    letter-spacing: 3.6rem;
    font-size: 4rem;
  }
}

.cls-1 {
  fill: #a37e39;
}

.cls-2 {
  fill: #fff;
  width: 100%;
}

.content-font {
  color: #7b591a;
}

#conteainer {
  scroll-snap-align: start;
  height: 100vh;
}

#footer {
  font-family: "Jun 201";
  font-size: .8rem;
  letter-spacing: .2rem;
}

/*----------- ここまで　----------------*/
.wide-container {
  margin: auto;
}

section .wide-inner {
  margin: 1em calc(50% - 50vw);
  padding: 2em calc(50vw - 50%);
  margin-top: 0px;
  margin-bottom: 0px;
  padding-top: 0px;
  padding-bottom: 0px;
  color: #333;
}

.title + p {
  margin-top: .2rem;
}

h2.title {
  letter-spacing: 2.5rem;
}

section {
  /* セレクタ名の前方一致 */
  padding: 0;
}

section > .content {
  padding-top: 4rem;
  padding-bottom: 4rem;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (min-width: 768px) {
  section > .content {
    padding-top: calc( 4rem + 4 * ( 100vw - 577px ) / (991 - 577));
    padding-bottom: calc( 4rem + 4 * ( 100vw - 577px ) / (991 - 577));
  }
}

@media screen and (min-width: 992px) {
  section > .content {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
}

section > .content p {
  margin-top: 4rem;
}

#footer {
  padding: 20px 0;
  width: 100%;
}
