@charset "UTF-8";
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  vertical-align: baseline;
}

*, *:before, *:after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

span {
  line-height: inherit;
  font-size: inherit;
  text-decoration: inherit;
  vertical-align: inherit;
  font-weight: inherit;
}

body {
  -webkit-text-size-adjust: 100%;
}

ol, ul {
  list-style: none;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

em,
strong,
em *,
strong * {
  font-weight: bold;
}

/*--form初期化--*/
input[type="submit"],
button {
  cursor: pointer;
}

button,
input[type="text"],
input[type="image"],
input[type="password"],
input[type="file"],
input[type="submit"],
input[type="reset"],
input[type="button"],
input[type="email"],
input[type="tel"]
textarea {
  font-family: inherit;
}

::-webkit-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

::placeholder {
  opacity: 1;
}

::-ms-input-placeholder {
  opacity: 1;
}

:-ms-input-placeholder {
  opacity: 1;
}

a {
  text-decoration: none;
  border: none;
  color: inherit;
}

table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  border-spacing: 0;
  text-align: left;
}

th {
  text-align: left;
}

@media screen and (min-width: 768px) {
  a {
    transition: 0.1s linear;
  }
  a:hover {
    opacity: 0.8;
  }
  a[href*="tel:"] {
    pointer-events: none;
  }
}

@media screen and (max-width: 767px) {
  html, body, div, span, applet, object, iframe,
  h1, h2, h3, h4, h5, h6, p, blockquote, pre,
  a, abbr, acronym, address, big, cite, code,
  del, dfn, em, img, ins, kbd, q, s, samp,
  small, strike, strong, sub, sup, tt, var,
  b, u, i, center,
  dl, dt, dd, ol, ul, li,
  fieldset, form, label, legend,
  table, caption, tbody, tfoot, thead, tr, th, td,
  article, aside, canvas, details, embed,
  figure, figcaption, footer, header, hgroup,
  menu, nav, output, ruby, section, summary,
  time, mark, audio, video {
    font-weight: normal;
    box-sizing: border-box;
  }
  button,
  input[type="text"],
  input[type="image"],
  input[type="password"],
  input[type="file"],
  input[type="submit"],
  input[type="reset"],
  input[type="button"],
  input[type="email"],
  input[type="tel"]
textarea {
    background: linear-gradient(to bottom, #ffffff 0%, #ffffff 100%);
    border-radius: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
}

/*==================================================
1.leyout 
==================================================*/
/*--------------------------------------
html,body,wrapper
----------------------------------------*/
html {
  line-height: 1.6;
  font-family: "Noto Serif JP", serif;
  font-size: 62.5%;
  min-height: 101vh;
}

/*--------------------------------------
l-header
----------------------------------------*/
.l-header {
  transition: all .4s;
  pointer-events: none;
  opacity: 0;
  position: fixed;
  z-index: 10000;
  top: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
}

@media all and (max-width: 767px) {
  .l-header {
    pointer-events: auto;
    opacity: 1;
    position: absolute;
    top: 0;
    height: 60px;
  }
}

.l-header.-show {
  pointer-events: auto;
  opacity: 1;
  top: 0;
}

.l-header.-second {
  pointer-events: auto !important;
  opacity: 1 !important;
  top: 0 !important;
}

.l-header-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1760px;
  height: 80px;
  margin: 0 auto;
  padding: 0 80px;
}

.l-header-ttl {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  margin: auto;
  font-size: 3.2rem;
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
}

@media all and (max-width: 767px) {
  .l-header-ttl {
    display: none;
  }
}

.l-header-ttl__en {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
  letter-spacing: .15em;
}

.l-header-ttl__jp {
  display: block;
  font-size: 4rem;
  letter-spacing: .15em;
}

@media all and (max-width: 767px) {
  .l-header-nav {
    transition: all .4s;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 0;
    padding:100px 10% 0 10%;;
    background: rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: center;
  }
}

.l-header-nav.-show {
  opacity: 1;
  pointer-events: auto;
  height: 100vh;
}

.l-header-nav ul {
  display: flex;
}

@media all and (max-width: 767px) {
  .l-header-nav  .l-header-nav__list {
    display: block;
  }
}

.l-header-nav ul li {
  padding: 0 40px 0 0;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
  letter-spacing: .1em;
}

@media all and (max-width: 767px) {
  .l-header-nav ul li {
    padding: 0 .5em .5em .5em;
    font-size: 1.8rem;
  }
}

.l-header-nav__lang {
  margin-top: 20px;
}
@media all and (max-width: 767px) {
  .l-header-nav__lang {
    justify-content: center;
  }
}


.l-header-nav__lang a {
  font-size: 1.4rem;
}

.l-header-lang {
  display: flex;
  justify-content: center;
  letter-spacing: .1em;
  font-size: 1.2rem;
  font-family: "Open Sans", sans-serif;
}

@media all and (max-width: 767px) {
  .l-header-lang {
    position: absolute;
    right: 5%;
    top: 0;
    bottom: 0;
    height: 1em;
    margin: auto;
  }
}

.l-header-lang li {
  padding-left: 10px;
}

@media all and (max-width: 767px) {
  .l-header-lang li:nth-child(1) {
    order: 2;
  }
}

@media all and (max-width: 767px) {
  .l-header-lang li:nth-child(2) {
    order: 1;
  }
}

.l-header-lang li a {
  padding: 0 .5em;
}

@media all and (max-width: 767px) {
  .l-header-lang li a {
    font-weight: bold;
  }
}

.l-header-sp-ttl {
  position: absolute;
  font-weight: bold;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 1.6rem;
  color: #fff;
  line-height: 1;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  font-size: 6rem;
}
.l-header-sp-ttl.-second{
    top: 18px;
    left: 5%;
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1, 1);
            transform: translate(0, 0) rotate(0deg) scale(1, 1);
}

.l-header-sp-ttl:first-letter {
  color: #000;
}

[data-aos="splogo"] {
  opacity: 0;
}

.aos-animate[data-aos="splogo"] {
  opacity: 1;
  -webkit-animation-name: splogo;
          animation-name: splogo;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in;
          animation-timing-function: ease-in;
}

@-webkit-keyframes splogo {
  0% {
    -webkit-transform: translate(0, 0) rotate(-90deg) scale(2, 2);
            transform: translate(0, 0) rotate(-90deg) scale(2, 2);
    top: 150px;
    left: 100%;
  }
  50% {
    -webkit-transform: translate(0, 0) rotate(-90deg) scale(2, 2);
            transform: translate(0, 0) rotate(-90deg) scale(2, 2);
    top: 150px;
    left: 5%;
  }
  100% {
    top: 18px;
    left: 5%;
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1, 1);
            transform: translate(0, 0) rotate(0deg) scale(1, 1);
  }
}

@keyframes splogo {
  0% {
    -webkit-transform: translate(0, 0) rotate(-90deg) scale(2, 2);
            transform: translate(0, 0) rotate(-90deg) scale(2, 2);
    top: 150px;
    left: 100%;
  }
  50% {
    -webkit-transform: translate(0, 0) rotate(-90deg) scale(2, 2);
            transform: translate(0, 0) rotate(-90deg) scale(2, 2);
    top: 150px;
    left: 5%;
  }
  100% {
    top: 18px;
    left: 5%;
    -webkit-transform: translate(0, 0) rotate(0deg) scale(1, 1);
            transform: translate(0, 0) rotate(0deg) scale(1, 1);
  }
}

/*--------------------------------------
header btn
----------------------------------------*/
.l-nav-switch {
  position: absolute;
  right: 0;
  left: 0;
  top: 10px;
  width: 35px;
  height: 35px;
  margin: auto;
}

.l-nav-switch.-show {
  z-index: 100002;
}

.l-nav-switch__line {
  position: absolute;
  left: 0;
  height: 0;
  margin: 0 auto;
  border-top: solid 7px #000;
  transition: all .4s;
}

.l-nav-switch__line:nth-child(1) {
  top: calc(50% - 14px);
  width: 12px;
}

.l-nav-switch__line:nth-child(2) {
  top: calc(50%);
  width: 22px;
}

.l-nav-switch__line:nth-child(3) {
  top: calc(50% + 14px);
  width: 35px;
}

.l-nav-switch.-show .l-nav-switch__line {
  width: 35px;
  border-color: #fff;
}

/*--------------------------------------
l-main
----------------------------------------*/
.l-main {
  display: block;
  line-height: 1.6;
  font-size: 1.4rem;
}

@media all and (max-width: 767px) {
  .l-main {
    font-size: 1.2rem;
  }
}

.l-main.-second{
  padding:158px 0;
}
@media all and (max-width: 767px) {
  .l-main.-second {
    padding:80px 0 0 0;
  }
}

/*--------------------------------------
l-footer
----------------------------------------*/
.l-footer {
  position: relative;
  padding: 95px 0 90px 0;
  background: #000;
  color: #fff;
  font-size: 1.2rem;
}

@media all and (max-width: 767px) {
  .l-footer {
    padding: 60px 0 0 0;
    background: #fff;
    color: #000;
    font-size: 1rem;
  }
}

.l-footer-row {
  display: flex;
}

@media all and (max-width: 767px) {
  .l-footer-row {
    flex-wrap: wrap;
  }
}

@media all and (max-width: 767px) {
  .l-footer-row__inner {
    width: 100%;
  }
}

.l-footer-row__cnt {
  display: flex;
  align-items: center;
  width: 50%;
  padding-left: 170px;
  letter-spacing: .15em;
}

@media all and (max-width: 767px) {
  .l-footer-row__cnt {
    width: 100%;
    margin: 0 5%;
    padding-bottom: 60px;
    padding-left: 0;
  }
}

.l-footer-row__list {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media all and (max-width: 767px) {
  .l-footer-row__list {
    display: none;
  }
}

.l-footer-row__list li {
  margin: 30px 0;
}

@media all and (max-width: 767px) {
  .l-footer-row__list li {
    margin: 5px 0;
  }
}

.l-footer-ttl {
  margin-bottom: 20px;
  font-size: 1.4rem;
}

@media all and (max-width: 767px) {
  .l-footer-ttl {
    margin-bottom: 5px;
    font-weight: bold;
  }
}

@media all and (max-width: 767px) {
  .l-footer-data {
    display: none;
  }
}

.l-footer-data dl {
  margin-bottom: 30px;
}

.l-footer-data dl dt {
  margin-bottom: 5px;
}

.l-footer-list {
  position: absolute;
  right: 20px;
  bottom: 20px;
  text-align: center;
}

@media all and (max-width: 767px) {
  .l-footer-list {
    display: none;
  }
}

.l-footer-list li {
  margin: 10px 0;
}

.l-footer-txt {
  margin-bottom: 30px;
}

@media all and (max-width: 767px) {
  .l-footer-txt {
    margin-bottom: 20px;
    line-height: 2;
  }
}

@media all and (min-width: 1025px) {
  .l-footer-sp-nav {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .l-footer-sp-nav {
    padding: 20px 5%;
    background: #000;
    color: #fff;
  }
  .l-footer-sp-nav ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .l-footer-sp-nav ul li {
    width: calc(50% - 15px);
    margin-bottom: 15px;
    text-align: center;
  }
  .l-footer-sp-nav ul li a {
    display: block;
    padding: 7px 5px;
    border-radius: 3px;
    border: solid 1px #fff;
    font-family: "Noto Serif JP", serif;
    font-size: 1.2rem;
    letter-spacing: .2em;
  }
}

/*==================================================
2.sp pc
==================================================*/
@media all and (min-width: 375px) {
  .ise-only {
    display: none !important;
  }
}

@media all and (min-width: 768px) {
  .sp-only {
    display: none !important;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
}

/*==================================================
3.module
==================================================*/
/*--------------------
float
--------------------*/
.m-fl {
  float: left;
}

.m-fr {
  float: right;
}

.m-clear {
  clear: both;
}

.m-cf:after {
  content: "";
  display: block;
  clear: both;
}

/*--------------------
text
--------------------*/
.m-bold {
  font-weight: bold;
}

.m-under {
  text-decoration: underline;
}

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

.m-tc {
  text-align: center;
}

.m-tr {
  text-align: right;
}

/*--------------------
btn
--------------------*/
.m-btn {
  display: block;
  width: 160px;
  padding: 10px;
  border: solid 1px #fff;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  letter-spacing: .15em;
}

@media all and (max-width: 767px) {
  .m-btn {
    width: 130px;
    font-size: 1.1rem;
  }
}

.m-sp-btn {
  display: block;
  padding: 8px;
  text-align: center;
  background: #000;
  color: #fff;
  font-size: 1.5rem;
  letter-spacing: .2em;
}

/*--------------------
inner
--------------------*/
.m-inner {
  width: 100%;
  max-width: 1760px;
  margin: 0 auto;
}

@media all and (max-width: 767px) {
  .m-inner {
    width: 100%;
    padding: 0 5%;
  }
}
.m-inner-s {
  width: 100%;
  max-width: 730px;
  margin: 0 auto;
}
@media all and (max-width: 767px) {
  .m-inner-s {
    width: 100%;
    padding: 0 5%;
  }
}
/*--------------------
list
--------------------*/
.m-list.-space{
  margin-bottom: 50px;
}
.m-list li{
  position: relative;
  padding-left: 15px;
  margin-bottom: 7px;
}
.m-list li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 11px;
    display: block;
    width: 10px;
    height: 1px;
    background: #72716d;
}
/*==================================================
4.page
==================================================*/
/*--------------------------------------
main-img
----------------------------------------*/


@media all and (max-width: 767px) {
  .main-img {
    padding: 15px;
    background-position: 25% center;
  }
}

.main-img-ttl {
  text-align: center;
  line-height: 1.2;
}

.main-img-ttl__en {
  display: block;
  margin-bottom: 5px;
  font-size: 1.2rem;
  letter-spacing: .15em;
  font-family: "Open Sans", sans-serif;
}

.main-img-ttl__jp {
  display: block;
  font-size: 4.8rem;
  letter-spacing: .15em;
  font-family: -apple-system, BlinkMacSystemFont, "游ゴシック Medium", "Yu Gothic Medium", YuGothic, "Helvetica Neue", Verdana, Meiryo, "M+ 1p", sans-serif;
}

.main-img-btn {
  position: absolute;
  right: 30px;
  top: 30px;
}

@media all and (max-width: 767px) {
  .main-img-btn {
    right: 15px;
    top: 15px;
  }
}

.main-img-scroll {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  bottom: 110px;
  padding-bottom: 15px;
  text-align: center;
  font-size: 1.1rem;
  background: url("../img/main-img-under.png") no-repeat center bottom;
  font-family: "Open Sans", sans-serif;
}

@media all and (max-width: 767px) {
  .main-img-scroll {
    bottom: 40px;
  }
}

/*--------------------------------------
about
----------------------------------------*/
.about {
  display: flex;
  justify-content: center;
  height: 960px;
}

@media all and (max-width: 767px) {
  .about {
    flex-wrap: wrap;
    height: auto;
  }
}



@media all and (max-width: 767px) {
  .about-img {
    order: 2;
    width: 100%;
    height: 60vh;
  }
}

.about-cnt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background: url("../img/shop-02.jpg") no-repeat center/cover;
  color: #fff;
  line-height: 2;
}

@media all and (min-width: 768px) {
  .about-cnt:not(.-en) {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .about-cnt.-en{
    padding:0 10%;
  }
}


@media all and (max-width: 767px) {
  .about-cnt {
    order: 1;
    width: 100%;
    height: auto;
    padding: 100px 5%;
  }
  .about-cnt.-en{
    line-height: 2.4;
  }
}

.about-cnt__ttl {
  position: absolute;
  right: -160px;
  top: -80px;
  letter-spacing: .35em;
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .about-cnt__ttl {
    margin-bottom: 35px;
    position: static;
    text-align: center;
    font-size: 2.4rem;
    letter-spacing: .25em;
  }
}

.about-cnt__inner {
  position: relative;
}

@media all and (max-width: 767px) {
  .about-cnt__inner {
    position: static;
    padding: 0 10px;
  }
}

.about-cnt__txt {
  height: 26em;
  line-height: 3.5;
  letter-spacing: .3em;
}

@media all and (max-width: 767px) {
  .about-cnt__txt {
    line-height: 2.4;
    height: auto;
  }
}
.about-cnt__txt-02{

}



/*--------------------------------------
chef
----------------------------------------*/
.chef {
  display: flex;
  justify-content: center;
  height: 960px;
}

@media all and (max-width: 767px) {
  .chef {
    flex-wrap: wrap;
    height: auto;
  }
}



@media all and (max-width: 767px) {
  .chef-img {
    order: 2;
    width: 100%;
    height: 60vh;
  }
}

.chef-cnt {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  height: 100%;
  background: url("../img/shop-02.jpg") no-repeat center/cover;
  color: #fff;
  line-height: 2;
}

@media all and (min-width: 768px) {
  .chef-cnt:not(.-en) {
    -webkit-writing-mode: vertical-rl;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .chef-cnt.-en{
    padding:0 10%;
  }
}

@media all and (max-width: 767px) {
  .chef-cnt {
    order: 1;
    width: 100%;
    height: auto;
    padding: 100px 5%;
  }
}

.chef-cnt:not(.-en) .chef-cnt__ttl {
  position: absolute;
  right: -60px;
  top: -60px;
}
.chef-cnt.-en .chef-cnt__ttl {
  margin-bottom: 25px;
}
.chef-cnt__ttl {
  letter-spacing: .35em;
  font-size: 1.8rem;
}

@media all and (max-width: 767px) {
  .chef-cnt__ttl {
    margin-bottom: 35px;
    position: static;
    text-align: center;
    font-size: 2.0rem;
    letter-spacing: .25em;
  }
  .chef-cnt.-en .chef-cnt__ttl {
    margin-bottom: 15px;
  }
}

@media all and (max-width: 480px) {
  .chef-cnt__ttl {
    font-size: 1.6rem;
  }
}

.chef-cnt__inner {
  position: relative;
}

@media all and (max-width: 767px) {
  .chef-cnt__inner {
    position: static;
    padding: 0 10px;
  }
}

.chef-cnt__txt {
  height: 39em;
  line-height: 3.5;
  letter-spacing: .3em;
}

.chef-cnt__txt.en {
  height: 39em;
  line-height: 2;
  letter-spacing: .0em;
}

.chef-cnt.-en .chef-cnt__txt {
  height: auto;
}

@media all and (max-width: 767px) {
  .chef-cnt__txt {
    line-height: 2.4;
    height: auto;
  }
}

/*--------------------------------------
cuisine
----------------------------------------*/
.cuisine {
  text-align: center;
}
.cuisine-ttl:not(.-en) {
  width: 1.6em;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  padding: 130px 0;
}
.cuisine-ttl {
  position: relative;
  display: inline-block;
  margin: auto;
  font-size: 1.8rem;
  letter-spacing: .5em;
  text-align: center;
}
.cuisine-ttl.-en{
  padding:100px 0;
}

@media all and (max-width: 767px) {
  .cuisine-ttl {
    padding: 60px 0;
    font-size: 2.2rem;
  }
  .cuisine-ttl.-en{
    padding: 60px 0;
    font-size: 1.8rem;
  }  
}

.cuisine-ttl:before, .cuisine-ttl:after {
  content: "";
}
.cuisine-ttl:not(.-en):before, .cuisine-ttl:not(.-en):after {
  position: absolute;
  height: 80px;
  border-left: solid 1px #000;
}
.cuisine-ttl.-en:before, .cuisine-ttl.-en:after {
  position: relative;
  display: block;
  width: 100px;
  height: 0;
  border-bottom: solid 1px #000;
}
.cuisine-ttl.-en:before{
  top:-10px;
  left:-10px;
}
.cuisine-ttl.-en:after {
  bottom:-10px;
  right:-10px;
}

.cuisine-ttl:not(.-en):before {
  top: calc(50% - .75em);
  left: -15px;
}

@media all and (max-width: 767px) {
  .cuisine-ttl:not(.-en):before {
    top: calc(50%);
  }
}

.cuisine-ttl:not(.-en):after {
  right: -15px;
  bottom: calc(50% - .75em);
}

@media all and (max-width: 767px) {
  .cuisine-ttl:not(.-en):after {
    bottom: calc(50%);
  }
}

.cuisine-cnt {
  padding: 95px 0 80px 0;
  text-align: center;
}

@media all and (max-width: 767px) {
  .cuisine-cnt {
    padding: 50px 0;
  }
}

.cuisine-cnt dl {
  letter-spacing: .15em;
}

.cuisine-cnt dl dt {
  margin-bottom: 30px;
}

.cuisine-cnt dl dd {
  margin-bottom: 30px;
}

.cuisine-cnt dl dd:last-child {
  margin-bottom: 0;
}


/*==================================================
second
==================================================*/

.m-page-ttl {
  position: relative;
  margin: 20px auto 70px auto;
  padding: 25px 0;
  font-size: 1.8rem;
  letter-spacing: .5em;
  text-align: center;
}

@media all and (max-width: 767px) {
  .m-page-ttl {
    margin-bottom: 15px;
    padding: 60px 0;
    font-size: 2rem;
  }
}


.m-sub-ttl{
  margin-bottom: 30px;
  font-size: 2rem;
  letter-spacing: .1em;
}
@media all and (max-width: 767px) {
  .m-sub-ttl{
    margin-bottom: 15px;
    font-size: 1.7rem;
  }
}

/*--------------------
btn
--------------------*/
.m-btn2 {
  transition: all .4s;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 240px;
  height: 50px;
  margin-left:auto;
  margin-right:auto;
  border:solid 1px #333;
  font-size: 1.4rem;
  color:#000;
}

@media all and (max-width: 767px) {
  .m-btn2 {
    width: 200px;
    height: 46px;
  }
}

.m-btn2.-up-space{
  margin-top: 65px;
}

@media all and (max-width: 767px) {
  .m-btn2.-up-space{
    margin-top: 45px;
  } 
}

@media all and (min-width: 768px) {
  .m-btn2:hover{
    background: #333;
    color:#e2e0d7;
  }
 
}


/*==================================================
5.js ie
==================================================*/
[data-aos="window"] {
  overflow: hidden;
  position: relative;
}

[data-aos="window"]:before {
  content: "";
  transition: left .6s ease;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
}

.aos-animate[data-aos="window"]:before {
  left: 100%;
}

[data-aos="window2"] {
  overflow: hidden;
  position: relative;
}

[data-aos="window2"] img {
  transition: opacity 2.5s;
  opacity: 0;
}

[data-aos="window2"]:before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  display: block;
  width: 0;
  height: 100%;
  background: #000;
}

.aos-animate[data-aos="window2"] img {
  opacity: 1;
}

.aos-animate[data-aos="window2"]:before {
  -webkit-animation-name: window2;
          animation-name: window2;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-timing-function: ease;
          animation-timing-function: ease;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes window2 {
  0% {
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}

@keyframes window2 {
  0% {
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 100%;
  }
}

.ie .l-header-link,
.ie .l-header-nav {
  padding-top: 5px;
}

.ie .l-header-ttl__jp {
  padding-top: 10px;
  line-height: 1;
}



