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

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  line-height: 1.4;
}

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

a {
  color: inherit;
}

article,
aside,
footer,
header,
nav,
section,
main {
  display: block;
}

* {
  box-sizing: border-box;
}

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

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

ul,
li,
dl,
dt,
dd {
  list-style: none;
}

a {
  text-decoration: none;
}

input[type=text],
input[type=email],
input[type=tel] {
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  padding: 0;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}
input[type=radio]:checked + label,
input[type=checkbox]:checked + label {
  background: #ff0000;
}

select {
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
}

textarea {
  appearance: none;
  background: transparent;
  border: 0;
  outline: none;
  padding: 0;
  resize: none;
}

button,
input[type=submit] {
  appearance: none;
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
}

@media (min-width: 576px) {
  .br_sm {
    display: none;
  }
}
@media (min-width: 768px) {
  .br_md {
    display: none;
  }
}
@media (min-width: 992px) {
  .br_lg {
    display: none;
  }
}
@media (min-width: 1200px) {
  .br_xl {
    display: none;
  }
}
@media (min-width: 1400px) {
  .br_xxl {
    display: none;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 70%;
  }
}

body {
  color: #333;
  font-family: "Lato", "Noto Sans JP", "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.section_title {
  color: #8d9863;
  font-size: 3rem;
  text-align: center;
  text-transform: uppercase;
}
.section_title::after {
  background: #8d9863;
  content: "";
  display: block;
  height: 6px;
  margin: 0 auto;
  margin-top: 30px;
  width: 120px;
}
.section_title_white {
  color: #f7efe3;
}
.section_title_white::after {
  background: #f7efe3;
}
.section_container {
  margin: 0 auto;
  width: 95%;
}
@media (min-width: 768px) {
  .section_title {
    font-size: 3.5rem;
  }
  .section_container {
    width: 80%;
  }
}
@media (min-width: 992px) {
  .section_container {
    max-width: 1150px;
    width: 70%;
  }
}

.btn {
  background: #8d9863;
  border-radius: 30px;
  color: #f7efe3;
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto;
  padding: 12px 0;
  text-align: center;
  transition: background-color 0.3s ease;
  width: 270px;
}
.btn:hover {
  background: #a4ad81;
}

#splash {
  background: #8d9863;
  color: #fff;
  height: 100%;
  /*fixedで全面に固定*/
  position: fixed;
  text-align: center;
  width: 100%;
  z-index: 999;
}

/* Loading画像中央配置　*/
#splash_logo {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Loading アイコンの大きさ設定　*/
#splash_logo img {
  width: 260px;
}

/* fadeUpをするアイコンの動き */
.fadeUp {
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  animation-name: fadeUpAnime;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.header_sp_toggle {
  cursor: pointer;
  height: 50px;
  position: fixed;
  right: 10px;
  top: 10px;
  width: 50px;
  z-index: 120;
}
.header_sp_toggle > div {
  height: 30px;
  position: relative;
  width: 50px;
}
.header_sp_toggle > div::before, .header_sp_toggle > div::after {
  background: #f7efe3;
  content: "";
  height: 5px;
  position: absolute;
  right: 5px;
  transition: transform 0.5s ease, width 0.5s ease, top 0.5s ease, background-color 0.5s ease;
}
.header_sp_toggle > div::before {
  top: 10px;
  width: 40px;
}
.header_sp_toggle > div::after {
  top: 22px;
  width: 30px;
}
.header_sp_toggle > span {
  color: #f7efe3;
  display: block;
  font-size: 12px;
  height: 20px;
  margin: 0 auto;
  position: relative;
  transition: color 0.5s ease;
  width: 50px;
}
.header_sp_toggle > span::before, .header_sp_toggle > span::after {
  left: 0;
  position: absolute;
  text-align: center;
  top: 3px;
  transition: opacity 1s ease;
  width: 50px;
}
.header_sp_toggle > span::before {
  content: "MENU";
  opacity: 1;
}
.header_sp_toggle > span::after {
  content: "CLOSE";
  opacity: 0;
}
.header_sp_toggle-scroll > div::before, .header_sp_toggle-scroll > div::after {
  background: #8d9863;
}
.header_sp_toggle-scroll > span {
  color: #8d9863;
}
.header_sp_toggle-active > div::before, .header_sp_toggle-active > div::after {
  background: #f7efe3;
}
.header_sp_toggle-active > div::before {
  top: 15px;
  transform: rotate(45deg);
}
.header_sp_toggle-active > div::after {
  top: 15px;
  transform: rotate(-45deg);
  width: 40px;
}
.header_sp_toggle-active > span {
  color: #f7efe3;
}
.header_sp_toggle-active > span::before {
  opacity: 0;
}
.header_sp_toggle-active > span::after {
  opacity: 1;
}
.header_sp_nav {
  background: rgba(141, 152, 99, 0.8);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 110;
}
.header_sp_nav_logo {
  width: 290px;
}
.header_sp_nav ul {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header_sp_nav ul li {
  color: #f7efe3;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}
.header_sp_nav ul li:not(:first-of-type) {
  margin-top: 20px;
}
.header_pc {
  background: #f7efe3;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header_pc_logo {
  display: none;
  left: 20px;
  position: absolute;
  top: 18px;
  width: 200px;
}
.header_pc_nav {
  display: none;
  height: 100%;
}
.header_pc_nav > ul {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: center;
}
.header_pc_nav > ul > li {
  font-size: 1.6rem;
  font-weight: 700;
  position: relative;
  text-transform: uppercase;
  transition: color 0.3s ease;
}
.header_pc_nav > ul > li::after {
  background: #8d9863;
  bottom: 0;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  width: 100%;
}
.header_pc_nav > ul > li:not(:first-of-type) {
  margin-left: 2rem;
}
.header_pc_nav > ul > li:hover {
  color: #8d9863;
}
.header_pc_nav > ul > li:hover::after {
  transform: scaleX(100%);
}
@media (min-width: 992px) {
  .header_sp_toggle {
    display: none;
  }
  .header_pc_nav {
    display: block;
  }
}

.mainvisual {
  height: 100vh;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mainvisual_logo {
  margin: 20px 5%;
  width: 150px;
}
.mainvisual_title, .mainvisual_text {
  color: #f7efe3;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  letter-spacing: 0.2em;
  line-height: 1.7;
  text-shadow: 0 0 5px rgba(51, 51, 51, 0.5);
}
.mainvisual_title {
  font-size: 20px;
  font-weight: 700;
}
.mainvisual_text {
  font-size: 1.4rem;
  margin-top: 20px;
}
.mainvisual_bg {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  transition: transform 5s ease;
  width: 100%;
  z-index: -10;
}
.mainvisual_bg:not(:first-of-type) {
  display: none;
}
.mainvisual_bg::after {
  background: rgba(0, 0, 0, 0.2);
  content: "";
  height: 100%;
  position: absolute;
  width: 100%;
}
.mainvisual_bg1 {
  background: url(../../img/mv01.jpg) no-repeat center/cover;
}
.mainvisual_bg2 {
  background: url(../../img/mv02.JPG) no-repeat center/cover;
}
.mainvisual_bg3 {
  background: url(../../img/mv03.jpg) no-repeat center/cover;
}
.mainvisual_bg4 {
  background: url(../../img/mv04.jpg) no-repeat center/cover;
}
.mainvisual_wrapper {
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.mainvisual_svg {
  display: block;
  width: 275px;
}
.mainvisual_btn {
  margin-top: 40px;
}
.mainvisual_scroll {
  bottom: 40px;
  color: #f7efe3;
  font-size: 1rem;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
}
.mainvisual_scroll::before, .mainvisual_scroll::after {
  background: #f7efe3;
  content: "";
  position: absolute;
}
.mainvisual_scroll::before {
  bottom: 20px;
  height: 60px;
  left: calc(50% - 1px);
  width: 1px;
}
.mainvisual_scroll::after {
  animation: scroll 3.5s ease infinite;
  bottom: 73px;
  height: 7px;
  left: calc(50% - 4px);
  width: 7px;
}
@media (min-width: 768px) {
  .mainvisual_logo {
    width: 200px;
  }
  .mainvisual_title {
    font-size: 30px;
  }
  .mainvisual_text::before, .mainvisual_text::after {
    background: #f7efe3;
    content: "";
    display: inline-block;
    height: 2px;
    margin: 0 10px;
    position: relative;
    top: -5px;
    width: 50px;
  }
  .mainvisual_br {
    display: none;
  }
}
@media (min-width: 992px) {
  .mainvisual_logo {
    width: 300px;
  }
  .mainvisual_title {
    font-size: 40px;
  }
  .mainvisual_text {
    font-size: 1.8rem;
  }
}

@keyframes scroll {
  0% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(53px);
  }
  100% {
    transform: translateY(53px);
  }
}
.zoomImg {
  transform: scale(1.05);
}

.about {
  background: #f7efe3;
  padding: 90px 0 120px;
}
.about_container {
  position: relative;
}
.about_img {
  box-shadow: 0 40px 0 #8d9863;
  margin-top: 70px;
}
.about_contents {
  margin-top: 70px;
}
.about_contents_title {
  font-size: 1.8rem;
}
.about_contents_text {
  font-size: 1.4rem;
  line-height: 30px;
  margin-top: 20px;
}
@media (min-width: 768px) {
  .about_container {
    padding-bottom: 200px;
  }
  .about_img {
    box-shadow: -40px 40px 0 #8d9863;
    width: 80%;
  }
  .about_contents {
    background: rgba(255, 255, 255, 0.7);
    bottom: 0;
    padding: 2rem;
    position: absolute;
    right: 0;
    width: 70%;
  }
}

.works {
  background: #8d9863;
  padding: 90px 0 120px;
}
.works_text {
  color: #f7efe3;
  margin-top: 40px;
  text-align: center;
}
.works_wrapper {
  margin-top: 80px;
  z-index: 0;
}
.works_item {
  overflow: hidden;
  padding: 40px 20px;
  position: relative;
  z-index: 1;
}
.works_item::before {
  color: #ecd8bb;
  font-family: Lobster;
  font-size: 200px;
  left: -20px;
  line-height: 0.8;
  position: absolute;
  top: -40px;
  z-index: -200;
}
.works_item::after {
  background: rgba(51, 51, 51, 0.4);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -100;
}
.works_item_title, .works_item_text {
  text-shadow: 0 0 10px rgba(51, 51, 51, 0.5);
}
.works_item_title {
  color: #f7efe3;
  font-size: 3rem;
}
.works_item_text {
  color: #f7efe3;
  font-size: 1.4rem;
  letter-spacing: 1px;
  line-height: 1.8;
  margin-top: 20px;
}
.works_item_btn {
  margin-top: 40px;
}
.works_item1 {
  background: url(../../img/works01.jpg) no-repeat center/cover;
}
.works_item1::before {
  content: "Bag";
}
.works_item2 {
  background: url(../../img/works02.jpg) no-repeat center/cover;
}
.works_item2::before {
  content: "Lunch bag";
}
.works_item3 {
  background: url(../../img/works03.jpg) no-repeat center/cover;
}
.works_item3::before {
  content: "Room shoes";
}
.works_item4 {
  background: url(../../img/works04.jpg) no-repeat center/cover;
}
.works_item4::before {
  content: "Other";
}
@media (min-width: 768px) {
  .works_item {
    display: flex;
    justify-content: space-between;
    min-height: 400px;
    padding: 40px;
  }
  .works_item_contents {
    width: 60%;
  }
  .works_item_btn {
    bottom: 40px;
    margin-right: 0;
    position: absolute;
    right: 40px;
  }
}
@media (min-width: 992px) {
  .works_item {
    padding: 40px 5%;
  }
  .works_item_title {
    font-size: 3.5rem;
  }
  .works_item_contents {
    width: 50%;
  }
  .works_item_btn {
    right: 5%;
  }
}

.shop {
  background: rgba(0, 0, 0, 0.2);
  padding: 90px 0 120px;
  position: relative;
}
.shop::after {
  background: url(../../img/shopbg.jpg) no-repeat center/cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.shop_text {
  color: #f7efe3;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 4rem;
  margin-top: 70px;
  text-align: center;
}
.shop_btn {
  margin-top: 70px;
}

.reviews {
  background: #8d9863;
  padding: 120px 0 90px;
}
.reviews_text {
  color: #f7efe3;
  margin-top: 40px;
  text-align: center;
}
.reviews_container {
  margin-top: 60px;
}
.reviews_item {
  background: #f7efe3;
  margin-top: 40px;
}
.reviews_item_text {
  font-size: 1.4rem;
  line-height: 2;
  padding: 20px;
}
@media (min-width: 768px) {
  .reviews_container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }
  .reviews_item {
    width: calc((100% - 30px) / 2);
  }
  .reviews_item:first-of-type {
    margin-right: 30px;
  }
}
@media (min-width: 992px) {
  .reviews_container {
    justify-content: space-between;
  }
  .reviews_item {
    width: calc((100% - 60px) / 3);
  }
  .reviews_item:first-of-type {
    margin-right: 0;
  }
}

.news {
  background: #f7efe3;
  padding: 90px 0 120px;
}
.news_wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 70px;
}
.news_card {
  margin-bottom: 30px;
  overflow: hidden;
  position: relative;
  width: calc((100% - 30px) / 2);
}
.news_card_img {
  height: 0;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.news_card_img > img {
  height: 100%;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: auto;
}
.news_card_text {
  background: rgba(141, 152, 99, 0.7);
  color: #f7efe3;
  font-size: 1.2rem;
  height: 100%;
  left: 0;
  line-height: 2;
  padding: 0.5rem;
  position: absolute;
  top: 0;
  transform: translateY(calc(100% - 3rem));
  transition: transform 0.3s ease;
  width: 100%;
}
.news_card:hover .news_card_text {
  transform: translateY(0);
}
.news_card:nth-of-type(n + 7) {
  display: none;
}
.news_text {
  margin-top: 80px;
  text-align: center;
}
.news_btn {
  margin-top: 60px;
}
@media (min-width: 992px) {
  .news_card {
    width: calc((100% - 40px) / 3);
  }
  .news_card:nth-of-type(n + 7) {
    display: block;
  }
  .news_card_text {
    font-size: 1.4rem;
  }
}

.contact {
  background: rgba(0, 0, 0, 0.2);
  min-height: calc(100vh - 120px);
  padding: 90px 0 120px;
  position: relative;
}
.contact::after {
  background: url(../../img/contact-bg.jpg) no-repeat center/cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.contact_container {
  margin: 0 auto;
  max-width: 640px;
  width: 95%;
}
.contact_text {
  color: #f7efe3;
  font-size: 1.6rem;
  margin-top: 70px;
  text-align: center;
}
.contact_link_wrapper {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
}
.contact_link_item {
  border-radius: 30px;
  overflow: hidden;
  transition: transform 0.3s ease;
  width: calc(50% - 20px);
}
.contact_link_item:hover {
  transform: scale(1.05);
}
.contact_btn {
  cursor: pointer;
  margin-top: 40px;
}
@media (min-width: 768px) {
  .contact_link_item {
    width: calc(50% - 40px);
  }
}

.jsDisabled {
  background: #bbb;
  cursor: default;
  pointer-events: none;
}

.footer {
  background: #f7efe3;
  height: 60px;
  text-align: center;
}
.footer > small {
  display: inline-block;
  font-size: 12px;
  line-height: 60px;
}

.totop {
  background: #8d9863;
  bottom: 22px;
  cursor: pointer;
  display: none;
  height: 60px;
  position: fixed;
  right: 22px;
  transition: background-color 0.3s ease;
  width: 60px;
  z-index: 115px;
  z-index: 999;
}
.totop::before, .totop::after {
  background: #f7efe3;
  content: "";
  height: 30px;
  position: absolute;
  top: 12px;
  transform-origin: top;
  width: 5px;
}
.totop::before {
  left: calc(50% - 2px);
  transform: rotate(45deg);
}
.totop::after {
  left: calc(50% - 5px);
  transform: rotate(-45deg);
}
.totop > span {
  color: #f7efe3;
  display: block;
  font-size: 1.4rem;
  margin-top: 37px;
  text-align: center;
}
.totop:hover {
  background: #a4ad81;
}
@media (min-width: 992px) {
  .totop {
    bottom: 50px;
    height: 80px;
    right: 50px;
    width: 80px;
  }
  .totop::before, .totop::after {
    top: 20px;
  }
  .totop > span {
    margin-top: 55px;
  }
}

.privacy {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  padding: 120px 0 90px;
  position: relative;
}
.privacy_container {
  margin-top: 60px;
}
.privacy_container > h3 {
  font-size: 1.8rem;
  margin-top: 40px;
}
.privacy_container > p {
  font-size: 1.4rem;
  line-height: 2;
  margin-top: 10px;
}
.privacy_container > p > a {
  color: #8d9863;
  text-decoration: underline;
}
.privacy::after {
  background: url(../../img/contact-bg.jpg) no-repeat center/cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -10;
}

.subvisual {
  background: rgba(51, 51, 51, 0.5);
  height: 400px;
  overflow: hidden;
  position: relative;
}
.subvisual::after {
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}
.subvisual_logo {
  margin: 20px;
  width: 150px;
}
.subvisual_title {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) {
  .subvisual_logo {
    width: 200px;
  }
}
@media (min-width: 992px) {
  .subvisual_logo {
    width: 300px;
  }
}

.subvisual01::after {
  background: url(../../img/works01.jpg) no-repeat center/cover;
}

.subvisual02::after {
  background: url(../../img/works02.jpg) no-repeat center/cover;
}

.subvisual03::after {
  background: url(../../img/works03.jpg) no-repeat center/cover;
}

.detail {
  background: #f7efe3;
  overflow: hidden;
  padding: 120px 0 90px;
  width: 100%;
}
.detail_container {
  margin: 0 auto;
  width: 95%;
}
.detail_item {
  margin-top: 80px;
}
.detail_item_img {
  height: 200px;
  overflow: hidden;
}
.detail_item_img > img {
  object-fit: cover;
}
.detail_item_contents {
  padding: 20px 0 0;
}
.detail_item_title {
  font-size: 1.8rem;
}
.detail_item_text {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-top: 20px;
}
.detail_btn {
  margin-top: 60px;
}
@media (min-width: 768px) {
  .detail_container {
    margin-top: 180px;
    width: 100%;
  }
  .detail_item {
    margin-top: -60px;
    width: 90%;
  }
  .detail_item:nth-of-type(even) {
    margin-left: auto;
  }
  .detail_item:nth-of-type(even) .detail_item_img {
    margin-left: auto;
  }
  .detail_item:nth-of-type(odd) .detail_item_contents {
    margin-left: auto;
  }
  .detail_item_img {
    height: 300px;
    width: 70%;
  }
  .detail_item_contents {
    background: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    position: relative;
    top: -150px;
    width: 70%;
  }
  .detail_item_title {
    font-size: 2.5rem;
  }
  .detail_item_text {
    font-size: 1.6rem;
  }
  .detail_btn {
    margin-top: -60px;
  }
}
@media (min-width: 992px) {
  .detail_br {
    display: none;
  }
  .detail_item {
    width: 80%;
  }
  .detail_item_img {
    height: 400px;
    width: 80%;
  }
  .detail_item_contents {
    top: -200px;
    width: 60%;
  }
}
/*# sourceMappingURL=sourcemaps/style.css.map */