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

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #fff;
  background: #002014;
  margin: 0;
  padding: 0;
  letter-spacing: 0.02em;
}

.enTxt {
  font-family: "Montserrat", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

a:active {
  text-decoration: none;
  color: #fff;
}

a {
  text-decoration: none;
  color: #fff;
}
a:hover {
  opacity: 0.8;
}

div,
a {
  box-sizing: border-box;
}

li {
  list-style: none;
}

section {
  box-sizing: border-box;
}

.is-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.section__title h2 {
  font-size: 80px;
  line-height: 0.9;
  font-family: "Montserrat", sans-serif;
  font-weight: 300;
  text-transform: uppercase;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .section__title h2 {
    font-size: 13.3333333333vw;
    margin-top: 4.2666666667vw;
  }
}
.section__title span {
  font-size: 20px;
  font-weight: 700;
  color: #B78E3B;
}
@media screen and (max-width: 768px) {
  .section__title span {
    font-size: 4.5333333333vw;
  }
}

/* ハンバーガーボタン */
.or__header--btn {
  width: 36px;
  height: 8px;
  position: relative;
  cursor: pointer;
  margin-right: 20px;
}

.hamburger__menu {
  position: fixed;
  inset: 0;
  background: #002014;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 999;
  overflow-y: auto;
  padding: 100px 35px;
  box-sizing: border-box;
  width: 500px;
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger__menu {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 10.6666666667vw;
  }
}
.hamburger__menu--inner {
  width: 100%;
}
.hamburger__menu ul {
  padding: 0;
  list-style-type: none;
  width: 100%;
  border-top: 1px solid #26362E;
}
.hamburger__menu ul li {
  border-bottom: 1px solid #26362E;
}
.hamburger__menu ul a {
  font-size: 5.3333333333vw;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
  display: block;
  padding: 8vw 0;
}

.hamburger__menu.is-open {
  opacity: 1;
  visibility: visible;
}

.or__header--btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: #D9D9D9;
  transition: transform 0.3s ease, top 0.3s ease, opacity 0.3s ease;
}

/* 上線 */
.or__header--btn span:nth-child(1) {
  top: 0;
}

/* 下線 */
.or__header--btn span:nth-child(2) {
  top: 10px;
}

/* 下線 */
.or__header--btn span:nth-child(3) {
  top: 20px;
}

/* active時（×） */
.or__header--btn.is-active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

.or__header--btn.is-active span:nth-child(2) {
  opacity: 0;
}

.or__header--btn.is-active span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

.or__header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 0;
  background: transparent;
  padding: 0 40px;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .or__header {
    padding: 0;
  }
}
.or__header.is_active {
  position: fixed;
}
.or__header--logo {
  margin: 0;
}
.or__header--logo img {
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .or__header--logo img {
    width: 22.6666666667vw;
  }
}
.or__header--inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.or__header--menu {
  display: flex;
  align-items: center;
  gap: 50px;
}
.or__header--menu a {
  color: #Fff;
}

.or__header--btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .or__header--btn {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .or__header--nav {
    display: none;
  }
}
.or__header--nav ul {
  display: flex;
  align-items: center;
  gap: 50px;
}
.or__header--nav ul a {
  font-family: "Montserrat", sans-serif;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.or__footer {
  padding: 80px 40px;
  background: url(../img/footer-bg.webp) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .or__footer {
    padding: 18.6666666667vw 5.3333333333vw 13.3333333333vw;
  }
}
.or__footer--en {
  position: absolute;
  top: -50px;
  left: 0;
}
@media screen and (max-width: 768px) {
  .or__footer--en {
    top: -25px;
  }
  .or__footer--en img {
    height: 55px;
  }
}
.or__footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}
.or__footer--logo {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 768px) {
  .or__footer--logo {
    margin-bottom: 13.3333333333vw;
  }
  .or__footer--logo img {
    width: 26.6666666667vw;
  }
}
.or__footer--address {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .or__footer--address {
    font-size: 4.2666666667vw;
    margin-bottom: 8vw;
    display: none;
  }
}
.or__footer--menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-top: 60px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .or__footer--menu {
    flex-direction: column;
    gap: 20px;
    display: none;
  }
}
.or__footer--menu a {
  color: #fff;
  text-transform: uppercase;
  font-size: 15px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .or__footer--menu a {
    font-size: 3.7333333333vw;
  }
}
.or__footer--sub {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .or__footer--sub {
    display: none;
  }
}
.or__footer--sub a {
  color: #fff;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .or__footer--sub a {
    font-size: 3.2vw;
  }
}
.or__footer--copy {
  margin-top: 80px;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
@media screen and (max-width: 768px) {
  .or__footer--copy {
    font-size: 3.7333333333vw;
  }
}

.or__footer--en {
  overflow: hidden;
  width: 100%;
}

.or__footer--track {
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: scroll 40s linear infinite;
}

.or__footer--list {
  display: flex;
}

.or__footer--list p {
  margin-right: 40px;
  /* 間隔調整 */
  flex-shrink: 0;
}

/* 無限スクロール */
@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}/*# sourceMappingURL=style.css.map */