@charset "UTF-8";
/* Scss Document */
/*====================================================================
  index
====================================================================

Part name///
  01 common
  02 top
  03 product
  04 about
  05 store
  06 company
*/
/*====================================================================
  01 General_style
====================================================================*/
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;
  font-weight: normal;
  color: #555;
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
}

body {
  line-height: 1;
}

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

nav ul,
ul,
li {
  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%;
  text-decoration: none;
  background: transparent;
  color: #333;
}

a:hover {
  color: #333;
  text-decoration: none;
}

a:visited {
  color: #333;
}

/* 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 #333333;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  /* form clear */
  /*   -webkit-appearance: none !important;*/
}

a:hover {
  opacity: 0.7;
}

/* --------------------
Common
-------------------- */
/*.container h1, .container h2, .container h3, .container p, .container a {
  color: #000;
  font-size: 12px;
  line-height: 1.5em;
}*/
.container .bold {
  font-weight: bold;
}

/* ----- Clearfix ----- */
.clearfix:after {
  content: ".";
  display: block;
  visibility: hidden;
  height: 0.1px;
  font-size: 0.1em;
  line-height: 0;
  clear: both;
}

.clearfix {
  zoom: 1;
}

/*---------------------------------------------------------
  Common
*/
.fl_left {
  float: left;
}

.fl_right {
  float: right;
}

.pc_contents {
  display: block !important;
}

.sp_contents {
  display: none !important;
}

.pc_contents_common {
  display: block !important;
}

.sp_contents_common {
  display: none !important;
}

.pc_br {
  display: inline;
  font-size: 10px !important;
}

.sp_br {
  display: none !important;
}

@media screen and (max-width: 960px) {
  .pc_contents_common {
    display: none !important;
  }
  .sp_contents_common {
    display: block !important;
  }
}

@media screen and (max-width: 769px) {
  .pc_contents {
    display: none !important;
  }
  .sp_contents {
    display: block !important;
  }
  .pc_br {
    display: none;
  }
  body .sp_br {
    display: inline !important;
    font-size: 10px !important;
  }
}

input:focus {
  outline: 0;
}

body {
  background: #f7f5f5;
}

.header {
  height: 80px;
  width: 100%;
  padding: 0 110px 0 100px;
  display: flex;
  top: 0;
  z-index: 6;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto 0px;
  background: #f7f5f5;
  position: fixed;
}

@media (max-width: 768px) {
  .header {
    padding: 0 20px 0;
    position: relative;
    z-index: 5;
    position: fixed;
  }
}

.header h1 img {
  width: 120px;
}

@media (max-width: 768px) {
  .header h1 img {
    width: 125px;
  }
}

.header ul {
  width: 354px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 768px) {
  .header ul {
    display: none;
  }
}

.header ul li {
  position: relative;
}

.header ul li a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 60px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0;
}

.header ul li .archive {
  position: absolute;
  overflow: hidden;
  opacity: 0;
  transition: all 0.5s;
  background: #fff;
  padding: 15px 20px;
}

.header ul li .archive a {
  display: block;
  margin: 0 0 16px;
  line-height: 12px;
}

.header ul li:hover > .archive {
  overflow: visible;
  opacity: 1;
  transition: all 0.5s;
}

.header img.insta {
  width: 20px;
  position: relative;
  top: 4px;
}

.sp_menu {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding: 140px 60px 60px 60px;
  background: #f7f5f5;
  z-index: 1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
  transform: translate3d(100%, 0, 0);
  transition: all 0.5s;
}

.sp_menu.active {
  transform: translate3d(0, 0, 0);
  transition: all 0.5s;
}

.sp_menu dt.on a {
  margin: 0 0 0px;
}

.sp_menu dt.on a .arrow {
  transform: rotate(0deg);
}

.sp_menu dt a {
  margin: 0 0 10px;
  position: relative;
}

.sp_menu dt a .arrow {
  position: absolute;
  left: 130px;
  top: 15px;
  transform: rotate(180deg);
}

.sp_menu dd {
  margin: 0 0 0px;
  height: 0;
  overflow: hidden;
}

.sp_menu dd.on {
  margin: 0 0 10px;
  height: auto;
  transition: auto 0.5s;
}

.sp_menu dd a {
  color: #111111;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.sp_menu a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 40px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 0 10px 0;
  display: block;
}

.sp_menu .archive a {
  color: #111111;
  font-size: 14px;
  line-height: 28px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
  display: block;
}

.sp_menu img.insta {
  width: 25px;
  margin: 15px 0 0 0;
}

.contents {
  padding: 80px 0 0 0;
}

@media (max-width: 768px) {
  .contents {
    padding: 80px 0 0 0;
  }
}

.contents.top .top__main {
  width: 65.625%;
  min-width: 840px;
  margin: auto;
  display: flex;
  align-items: flex-end;
}

@media (max-width: 768px) {
  .contents.top .top__main {
    padding: 0 20px;
    width: 100%;
    display: block;
    min-width: 100%;
  }
}

.contents.top .top__main .l {
  width: 61.90476%;
  margin: 0 80px 0 0;
}

@media (max-width: 768px) {
  .contents.top .top__main .l {
    width: 100%;
    margin: 10px auto 20px;
  }
}

.contents.top .top__main .l img {
  width: 100%;
}

@media (max-width: 768px) {
  .contents.top .top__main .r {
    width: 100%;
  }
}

.contents.top .top__main .r .h1 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 16px 0;
}

.contents.top .top__main .r .p1 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 24px 0;
}

.contents.top .top__main .r .dl_wrap dl {
  display: flex;
  margin: 0 0 11px;
}

.contents.top .top__main .r .dl_wrap dl:last-child {
  margin: 0 0 24px;
}

.contents.top .top__main .r .dl_wrap dt {
  width: 48px;
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.contents.top .top__main .r .dl_wrap dd {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
}

.contents.top .top__main .r .h3 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.contents.top .top__main .r .link1 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 13px;
  line-height: 13px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 16px 0;
  text-decoration: underline;
  display: block;
}

.contents.top .top__main .r .r__ul li {
  display: inline-block;
  margin: 0 16px 0 0;
}

.contents.top .top__main .r .r__ul a {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 0 0;
  text-decoration: underline;
}

.footer {
  margin: 0px auto 0;
}

@media (max-width: 768px) {
  .footer {
    margin: 40px auto 0;
  }
}

.footer .copy {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 11px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
  margin: 0 0 20px 0;
  text-align: center;
  position: static;
}

.footer .copy.fix {
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
}

.top_new {
  margin: 0px 0 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .top_new {
    min-height: 620px;
    display: block;
  }
}

.top_new__innar {
  margin: 40px auto 40px;
}

.top_new__innar.tate img {
  max-height: 395px;
  margin: auto;
  display: block;
}

@media (min-width: 1280px) {
  .top_new__innar.tate img {
    max-height: 100%;
    width: 20.3125%;
  }
}

@media (max-width: 768px) {
  .top_new__innar.tate img {
    margin: 80px auto 30px;
  }
}

.top_new__innar.yoko {
  max-width: 520px;
  margin: 0 auto 0 auto;
}

@media (min-width: 1280px) {
  .top_new__innar.yoko {
    max-width: 100%;
    width: 40.625%;
  }
}

@media (max-width: 768px) {
  .top_new__innar.yoko {
    margin: 125px auto 30px;
  }
}

.top_new__innar.yoko img {
  width: 100%;
}

.top_new__innar .main_img {
  opacity: 0;
}

.top_new__innar .main_img.active {
  opacity: 1;
  transition: all 1s;
}

.top_new .top_new_textarea {
  text-align: center;
}

@media (max-width: 768px) {
  .top_new .top_new_textarea {
    padding: 0 30px;
  }
}

.top_new .top_new_textarea p {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0em;
  font-weight: 400;
  margin: 40px 0 0px 0;
  text-align: center;
  display: block;
}

.top_new .top_new_textarea a {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0em;
  font-weight: 400;
  margin: 40px 0 40px 0;
  text-align: center;
  display: block;
  text-decoration: underline;
}

.portfolio {
  width: 84.375%;
  margin: 0 auto 120px;
}

@media (max-width: 768px) {
  .portfolio {
    margin: 0 auto 80px;
  }
}

.portfolio h2 {
  font-family: "Poppins", sans-serif;
  color: #111111;
  font-size: 13px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 0 0 0;
  margin: 60px auto 60px 0;
  text-align: right;
}

@media (max-width: 768px) {
  .portfolio h2 {
    margin: 40px auto 40px 0;
  }
}

.portfolio h2 span {
  color: #d1d1d1;
}

.portfolio ul {
  font-size: 0;
  text-align: left;
}

@media (max-width: 768px) {
  .portfolio ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.portfolio ul li {
  width: 23.61111%;
  display: inline-block;
  margin: 0 1.85185% 20px 0;
  overflow: hidden;
}

@media (max-width: 768px) {
  .portfolio ul li {
    width: 47%;
    margin: 0 0 20px 0;
  }
}

.portfolio ul li a {
  position: relative;
  width: 100%;
  padding-top: 67%;
  display: block;
}

.portfolio ul li a div {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}

.portfolio ul li img {
  width: 100%;
}

.portfolio ul li:nth-child(4n) {
  margin: 0 0 20px 0;
}

.portfolio ul li.tate img {
  width: auto;
  height: 100%;
}

.pagination {
  text-align: center;
  margin: 20px 0 80px;
}

.pagination span {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 12px;
}

.pagination a {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #d1d1d1;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  font-weight: 400;
  margin: 0 12px;
}

.extras {
  margin: 60px auto 100px;
}

@media (max-width: 768px) {
  .extras {
    margin: 120px auto 100px;
    padding: 0 30px;
  }
}

.extras__innar {
  max-width: 600px;
  margin: 0 auto 80px;
}

.extras__innar .p1 {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-weight: 100;
  margin: 0 0 2px 0;
}

.extras__innar .p1 span {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 12px;
  line-height: 20px;
  letter-spacing: 0.1em;
  font-weight: 100;
}

.extras__innar h2 {
  font-family: "Poppins", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #111111;
  font-size: 16px;
  line-height: 22px;
  letter-spacing: 0em;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.extras__innar .p2 {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
  color: #767676;
  font-size: 13px;
  line-height: 22px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin: 0 0 4px 0;
}

.extras img {
  width: 600px;
  margin: 0 0 16px;
  vertical-align: top;
}

@media (max-width: 768px) {
  .extras img {
    width: 100%;
  }
}

.portfolio__detail {
  margin: 0px auto;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #f7f5f5;
  overflow: scroll;
  z-index: 5;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.portfolio__detail.on {
  opacity: 1;
  visibility: visible;
}

.portfolio__detail__innar {
  width: auto;
  height: inherit;
  max-width: 680px;
  margin: auto;
  position: relative;
}

@media (min-width: 1280px) {
  .portfolio__detail__innar {
    max-width: 100%;
    min-height: 445px;
    width: 53.125%;
    margin: auto;
  }
}

@media (max-width: 768px) {
  .portfolio__detail__innar {
    max-width: 100%;
    width: 84%;
  }
}

.portfolio__detail__innar .close {
  position: absolute;
  width: 30px;
  height: 30px;
  right: -55px;
  top: -5px;
}

@media (max-width: 768px) {
  .portfolio__detail__innar .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0;
    top: -44px;
  }
}

.slick {
  width: 100%;
}

.slick img {
  width: 100%;
}

@media screen and (max-width: 769px) {
  .slick {
    border: 0;
    border-bottom: 0 solid #fff;
  }
  .slick img.tate {
    height: 80vw !important;
  }
}

.slick-arrow {
  width: 25px !important;
  position: absolute;
  top: 50%;
}

.slick-dots {
  display: none !important;
}

.prev-arrow {
  transform: rotate(180deg);
}

img.slide-arrow.next-arrow.slick-arrow {
  right: -60px;
}

@media screen and (max-width: 769px) {
  img.slide-arrow.next-arrow.slick-arrow {
    right: -28px;
  }
}

img.slide-arrow.prev-arrow.slick-arrow {
  left: -60px;
}

@media screen and (max-width: 769px) {
  img.slide-arrow.prev-arrow.slick-arrow {
    left: -28px;
  }
}

img.slick_img.tate {
  width: auto;
  height: auto;
  display: block;
  margin: auto;
}

.slick-dots {
  display: none;
}

@media screen and (max-width: 769px) {
  .slick-track {
    display: flex !important;
    align-items: center;
  }
}

.slide-arrow {
  cursor: pointer;
}

.a404 {
  width: 800px;
  margin: 120px auto;
}

@media screen and (max-width: 769px) {
  .a404 {
    width: 100%;
  }
}

.a404 h2 {
  font-size: 30px;
  text-align: center;
  margin: 0 auto 20px;
}

.a404 p {
  font-size: 14px;
  text-align: center;
  line-height: 1.8;
  margin: 0 auto 20px;
}
