@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Lato", "Noto Sans JP", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

/* ===============================================
# 共通パーツ
=============================================== */
/* ローディング 
--------------------------------------------------------*/
.loader {
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  z-index: 99999;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.loader__wrapper {
  margin-top: -15px;
}
.loader__wrapper img {
  width: 150px;
  height: auto;
}
.fadein {
  animation-name:fadeInAnime;
  animation-duration:3s;
  animation-fill-mode:forwards;
  opacity:0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* インナー 
--------------------------------------------------------*/
/* 見出し 
--------------------------------------------------------*/
/* テキスト 
--------------------------------------------------------*/
.section-title {
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: bold;
  font-size: 11px;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 12px;
  }
}

/* ボタン
--------------------------------------------------------*/
/* 表示・非表示
--------------------------------------------------------*/
.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

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

/* プラスアイコン
--------------------------------------------------------*/
/* ===============================================
# header
=============================================== */
.header {
  width: 260px;
  max-width: 100%;
  position: fixed;
  top: 0;
  z-index: 9999;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
    height: 130px;
    position: absolute;
  }
}

.header__inner {
  padding: 0 34px;
  height: 100vh;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 0 20px;
    height: inherit;
    display: flex;
    position: relative;
  }
}

.header__nav {
  margin-top: 60px;
}

.header__items {
  margin-bottom: 30px;
}

.header__item:not(:first-child) {
  margin-top: 20px;
}

.header__link {
  display: inline-block;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  color: #111111;
  font-size: 13px;
  letter-spacing: 0.1em;
  position: relative;
}
.header__link::after {
  position: absolute;
  bottom: -3px;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background: #000000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

.header__link:hover::after {
  transform: scale(1, 1);
}

.header__title {
  display: inline-block;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .header__title {
    padding-top: 20px;
  }
}

.header__title.md-show {
  display: none;
  width: 83px;
}
@media screen and (max-width: 768px) {
  .header__title.md-show {
    display: block;
    position: fixed;
  }
}

.header__logo {
  width: 120px;
  padding-top: 40px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .header__logo {
    width: 70px;
    padding-top: 15px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

.header__address {
  width: 192px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 10px;
  line-height: 2.4;
  margin-top: auto;
}

.header__copyright {
  font-family: "游ゴシック";
  font-weight: normal;
  font-size: 10px;
  margin-top: 30px;
  margin-bottom: 35px;
}

/* ハンバーガーメニュー 
--------------------------------------------------------*/
.hamburger {
  width: 50px;
  height: 16px;
  position: fixed;
  z-index: 9999;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.hamburger span {
  display: inline-block;
  background-color: #111111;
  transition: 0.3s transform, 0.3s background-color;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 0;
  left: 0;
}

.hamburger.is-active {
  top: 32px;
  right: 20px;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
  transition: 0.3s opacity;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span {
  background-color: #111111;
  transform: rotate(-45deg);
  top: 15px;
}

.hamburger.is-active span:nth-child(1) {
  top: -5px;
  transform: rotate(-31deg);
}

.hamburger.is-active span:nth-child(2) {
  top: -5px;
  transform: rotate(31deg);
}

/* ドロワーメニュー
--------------------------------------------------------*/
.drawerMenu {
  display: none;
  width: 100%;
  height: 82vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5000;
  transform: translateY(-100%);
  transition: 0.3s transform;
}

.drawerMenu.is-active {
  transform: translateY(0%);
}

.drawerMenu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.drawerMenu__items {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.drawerMenu__item {
  display: inline-block;
}

.drawerMenu__item:not(:first-child) {
  margin-top: 35px;
}

.drawerMenu__item:nth-child(4) {
  padding-bottom: 80px;
}

.drawerMenu__item:last-child {
  margin-top: 0px;
}

.drawerMenu__link {
  color: #111111;
  width: 200px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  letter-spacing: 0.05em;
  text-align: center;
}

.drawerMenu__link.drawerMenu__link-button {
  padding: 14px 14px;
  transition: 0.3s background-color;
  background-color: #F14E53;
  border: none;
}
.drawerMenu__link.drawerMenu__link-button:hover {
  opacity: 1;
  background-color: #BC353A;
}

.drawerMenu__logo {
  width: 90px;
}

/* ===============================================
# mv
=============================================== */
.mv {
  width: calc(100% - 260px);
  margin-left: 260px;
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 768px) {
  .mv {
    margin-top: 130px;
    margin-left: 0;
    width: 100%;
    height: 72vh;
  }
}

.addressText-sp {
  font-size: 9px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: 300;
  color: #111111;
  line-height: 2.2222222222;
  position: absolute;
  bottom: -54px;
  left: 20px;
  opacity: 1;
  z-index: 500;
}

.mv__swiper,
.swiper-wrapper,
.swiper-slide,
.swiper-img {
  height: inherit;
}

.swiper-img img,
.swiper-img picture {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  .swiper-img img,
  .swiper-img picture {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 72vh;
  }
}



@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
.swiper-slide-active .swiper-img,
.swiper-slide-duplicate-active .swiper-img,
.swiper-slide-prev .swiper-img {
  -webkit-animation: zoomUp 7s linear 0s normal both;
          animation: zoomUp 7s linear 0s normal both;
}

.mv__logo {
  content: "";
  position: absolute;
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 340px;
  height: 200px;
  z-index: 500;
}
@media screen and (max-width: 768px) {
  .mv__logo {
    width: 240px;
    height: 144px;
  }
}

/* ===============================================
# ABOUT
=============================================== */
.about {
  margin-top: 140px;
}

.about__inner {
  margin-right: 110px;
}
@media screen and (max-width: 768px) {
  .about__inner {
    margin-right: 0;
  }
}

.about__container {
  display: flex;
  gap: 120px;
}
@media screen and (max-width: 768px) {
  .about__container {
    display: block;
  }
}

.about__imgArea {
  max-width: 1080px;
  width: 100%;
}
.about__imgArea img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about__imgArea {
    max-width: 300px;
  }
}

.about__textArea {

}
@media screen and (max-width:1441px ) {
  .about__textArea {
    max-width: 400px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .about__textArea {
    max-width: 280px;
    margin-right: auto;
    margin-left: auto;
    margin-top: 50px;
  }
}

.about__subtitle {
  margin-top: 50px;
  font-family: "Lato", "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 44px;
  letter-spacing: 0.08em;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .about__subtitle {
    font-size: 32px;
    margin-top: 40px;
  }
}

.about__text {
  margin-top: 30px;
  font-family: -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  line-height: 2.2857142857;
}
@media screen and (max-width: 768px) {
  .about__text {
    font-size: 13px;
    line-height: 2.1538461538;
    margin-top: 40px;
  }
}

.about__subimg {
  margin-top: 305px;
  position: relative;
  z-index: 1;
}
.about__subimg img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .about__subimg img {
    margin-left: 88px;
    max-width: 220px;
  }
}
@media screen and (max-width: 1440px) {
  .about__subimg {
    margin-top: 110px;
  }
}
@media screen and (max-width: 768px) {
  .about__subimg {
    margin-top: 66px;
  }
}

/* ===============================================
# company
=============================================== */
.company {
  margin-top: -110px;
}
@media screen and (max-width: 1024px) {
  .company {
    margin-top: -75px;
  }
}

.company__inner {
  max-width: 100%;
  margin-left: min(24vw, 260px);
}
@media screen and (max-width: 768px) {
  .company__inner {
    margin-left: 0;
  }
}

.company__bg {
  height: 1273px;
  opacity: 1;
  background: linear-gradient(to right, #FFFFFF 0%, #f9f9f8 48%, #f8f7f6 100%);
  position: relative;
  padding: 30px 0;
}
@media screen and (max-width: 1440px) {
  .company__bg {
    height: 955px;
  }
}
@media screen and (max-width: 768px) {
  .company__bg {
    height: 950px;
  }
}

.company__container {
  display: flex;
  align-items: center;
  gap: 110px;
  position: absolute;
  top: 22%;
  z-index: 101;
  padding: 0 30px;
}
@media screen and (max-width: 768px) {
  .company__container {
    flex-direction: column-reverse;
    justify-content: center;
    top: 16%;
    gap: 51px;
  }
}

.company__bg-text {
  position: absolute;
  bottom: 0;
  z-index: 100;
  display: block;
}
@media screen and (max-width: 768px) {
  .company__bg-text {
    position: absolute;
    bottom: -30px;
    z-index: 100;
    width: 183px;
    display: block;
    right:0;
  }
}

@media screen and (max-width: 768px) {
  .company__bg-text-sp {
    position: absolute;
    bottom: 0;
    z-index: 100;
    width: 170px;
    display: block;
    right: 0;
  }
}

.company__imgArea {
  max-width: 586px;
  width: 100%;
}
@media screen and (max-width: 1440px) {
  .company__imgArea {
    max-width: 440px;
  }
}
@media screen and (max-width: 768px) {
  .company__imgArea {
    display: block;
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

.company__textArea {
  max-width: 510px;
  width: 100%;
  padding: 0 10px;
}
@media screen and (max-width: 768px) {
  .company__textArea {
    max-width: 334px;
    padding-left: 0;
    padding-right: 0;
  }
}

.company__wrapper {
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .company__wrapper {
    margin-top: 41px;
  }
}

.company__ul {
  font-size: 13px;
  font-family: -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}
@media screen and (max-width: 768px) {
  .company__ul {
    font-size: 12px;
  }
}

.company__li {
  display: flex;
  gap: 65px;
}
@media screen and (max-width: 1024px) {
  .company__li {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .company__li {
    display: block;
  }
}

.company__li:not(:first-child) {
  margin-top: 24px;
}

.company__list-title {
  width: 65px;
  max-width: 100%;
  flex-shrink: 0;
  line-height: 1.8333333333;
  letter-spacing: 1.04px;
  white-space: nowrap;
}

.company__list-text {
  line-height: 1.8333333333;
  align-self: baseline;
  letter-spacing: 1.04px;
}
@media screen and (max-width: 768px) {
  .company__list-text {
    padding-top: 5px;
  }
}

/* ===============================================
# shop
=============================================== */
.shop {
  margin-top: 140px;
  margin-right: 110px;
  margin-left: 370px;
}
@media screen and (max-width: 768px) {
  .shop {
    margin-top: 320px;
    margin-left: 0;
    margin-right: 0;
  }
}

.shop__inner {
  /* max-width: 1210px; */
  width: 100%;
}
@media screen and (max-width: 768px) {
  .shop__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
  }
}

.shop__container {
  display: flex;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .shop__container {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .shop__container {
    display: block;
  }
}

.shop__container:not(:first-child) {
  margin-top: 40px;
}

.shop__textArea {
  /* max-width: 400px; */
  width: 100%;
}

.shop__imgArea {
  /* max-width: 520px; */
  width: 100%;
  margin-left:2%;
}
@media screen and (max-width: 1024px) {
  .shop__imgArea {
    max-width: 380px;
    margin-top: 20px;
    margin-left: 0;
  }
}

.shop__title {
  margin-top: 20px;
}

.shop__text {
  font-size: 14px;
  font-family: -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  margin-top: 55px;
}
@media screen and (max-width: 768px) {
  .shop__text {
    font-size: 13px;
    margin-top: 41px;
  }
}

.shop__link {
  font-size: 14px;
  color: #747474;
  display: block;
  margin-top: 5px;
  position: relative;
  padding-left: 20px;
}
.shop__link span {
  display: block;
  width: 15px;
  height: 12px;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../images/shop-link-icon.png) center center/cover no-repeat;
  position: absolute;
}

/* ===============================================
# contact
=============================================== */
.contact {
  margin-top: 140px;
  /* margin-left: min(24vw, 350px); */
  margin-left: 370px;
  margin-right: 110px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
  }
}

.contact__inner {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;

  }
}

.contact__list {
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .contact__list {
    margin-top: 20px;
  }
}

.contact__ul {
  width: 100%;
  font-size: 14px;
  flex-flow: -apple-system, YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333333;
}

.contact__li {
  display: flex;
  border-bottom: 1px solid #E6E6E6;
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .contact__li {
    display: block;
    padding: 30px 0;
  }
}

.contact__li-title {
  width: 140px;
  letter-spacing: 0.56px;
}
@media screen and (max-width: 768px) {
  .contact__li-title {
    font-size: 13px;
  }
}

.contact__li-text {
  width: calc(100% - 140px);
  margin-left: 74px;
  color: #111111;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contact__li-text {
    margin-left: 0;
    padding-top: 12px;
  }
}

/* ===============================================
# footer
=============================================== */
.footer {
  /* margin-left: min(24vw, 350px); */
  margin-left: 370px;
  margin-top: 120px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    margin-left: 0;
    margin-top: 80px;
  }
}

.footer__bg {
  width: 100%;
  margin-left: auto;
}

.footer__copyright {
  position: absolute;
  content: "";
  bottom: 30px;
  right: 40px;
  display: block;
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.06em;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .footer__copyright {
    font-size: 10px;
    right: 30px;
  }
}
/*# sourceMappingURL=style.css.map */