/* common.scss */
.mode_sp {
  display: none !important;
}

@media (min-width: 1500px) {
  .mode_sp {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .mode_sp {
    display: none !important;
  }
}

@media (max-width: 820px) {
  .mode_sp {
    display: block !important;
  }
}

@media (max-width: 414px) {
  .mode_sp {
    display: block !important;
  }
}

@media (max-width: 820px) {
  .mode_pc {
    display: none !important;
  }
}

@media (max-width: 414px) {
  .mode_pc {
    display: none !important;
  }
}

/** Reset **/
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-feature-settings: "palt";
  vertical-align: baseline;
  box-sizing: border-box;
}

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

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

html {
  font-size: 62.5%;
}

@media (max-width: 1200px) {
  html {
    font-size: 56.75%;
  }
}

@media (max-width: 820px) {
  html {
    font-size: 43.75%;
  }
}

html,
body {
  -webkit-font-smoothing: antialiased;
  font-variant-ligatures: none;
}

body {
  color: #000;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-family: "Hina Mincho", serif;
  font-weight: 400;
  letter-spacing: 2px;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

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

a,
a:active {
  text-decoration: none;
  color: #000;
  transition: opacity 0.3s;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.5;
  }
}

html,
body {
  height: 100%;
}

.is-hidden {
  opacity: 0;
  transition: opacity 0.3s;
}

.btn a {
  font-size: 1.6rem;
  display: inline-block;
  overflow: hidden;
  position: relative;
  padding-left: 0.5rem;
  padding-bottom: 7px;
  padding-right: 30px;
}

@media (max-width: 820px) {
  .btn a {
    font-size: 1.3rem;
    padding-right: 24px;
  }
}

.btn a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: url("/assets/image/common/icon_right_arrow.svg") no-repeat left center;
  background-size: cover;
  z-index: 1;
  transition: transform 0.3s;
  transform: translateX(-5px);
}

@media (max-width: 820px) {
  .btn a::after {
    background: url("/assets/image/common/icon_right_arrow.svg") no-repeat left center;
    background-size: contain;
  }
}

@media (hover: hover) and (pointer: fine) {
  .btn a:hover::after {
    transform: translateX(0);
    opacity: 0.5;
  }
}

.content-inner {
  width: 80%;
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 820px) {
  .content-inner {
    width: 89%;
  }
}

/************************************
* header
************************************/
.l-header {
  width: 100%;
  height: 90px;
  background-color: #fff;
  transition: background-color 0.2s ease-in;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  padding: 0 3rem;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 820px) {
  .l-header {
    height: 60px;
    padding: 0 2rem;
  }
}

.l-header .logo {
  width: 22rem;
  height: 6rem;
}

@media (max-width: 820px) {
  .l-header .logo {
    width: 20rem;
    height: 5rem;
  }
}

.l-header .logo h1 {
  width: 100%;
  height: 100%;
  background-image: url("/assets/image/common/logo_header_b.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  /*transition: background-image .2s ease-in;*/
}

.l-header .logo .logo-inner {
  visibility: hidden;
}

.l-header .hamburger-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 21px;
  height: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 2000;
  position: relative;
}

.l-header .hamburger-btn span {
  width: 100%;
  height: 1px;
  display: inline-block;
  background-color: #000;
  transition: all 0.3s ease;
  position: absolute;
  left: 0;
}

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

.l-header .hamburger-btn span:nth-child(2) {
  top: 7px;
}

.l-header .hamburger-btn span:nth-child(3) {
  bottom: 0;
}

.l-header .hamburger-btn.is-active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.l-header .hamburger-btn.is-active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.l-header .fullscreen-menu {
  width: 62%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 60px);
    background-color: #F8F8FA;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1500;
  }
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu.is-active {
    transform: translateX(0);
  }
}

.l-header .fullscreen-menu .fullscreen-menu-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .fullscreen-menu-list {
    flex-direction: column;
    padding-top: 7rem;
  }
}

.l-header .fullscreen-menu .fullscreen-menu-list li {
  margin-right: 3rem;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .fullscreen-menu-list li {
    margin-right: 0;
    margin-bottom: 6.5rem;
  }
}

.l-header .fullscreen-menu .fullscreen-menu-list li a {
  font-size: 1.4rem;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .fullscreen-menu-list li a {
    font-size: 2.3rem;
  }
}

.l-header .fullscreen-menu .online-btn {
  margin-right: 2rem;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .online-btn {
    margin-right: 0;
    margin-bottom: 6.5rem;
  }
}

.l-header .fullscreen-menu .online-btn a {
  display: flex;
  align-items: center;
  padding: 0.6rem 1rem;
  border: 1px solid #000;
  font-size: 1.4rem;
  position: relative;
  transition: background 0.3s;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .online-btn a {
    background: #000;
    font-size: 2.3rem;
    padding: 1rem 1.9rem 1.2rem;
    color: #fff;
  }
}

.l-header .fullscreen-menu .online-btn a span {
  width: 2.5rem;
  height: 1.8rem;
  display: inline-block;
  background-image: url("/assets/image/common/icon_cart_b.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .online-btn a span {
    width: 3.3rem;
    height: 2.3rem;
    background-image: url("/assets/image/common/icon_cart_w.svg");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
  }
}

@media (hover: hover) and (pointer: fine) {
  .l-header .fullscreen-menu .online-btn a:hover {
    background: rgba(0, 0, 0, 0.65);
    color: #fff;
    opacity: 1;
  }

  .l-header .fullscreen-menu .online-btn a:hover span {
    background-image: url("/assets/image/common/icon_cart_w.svg");
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
  }
}

.l-header .fullscreen-menu .sns-btn {
  display: flex;
  align-items: center;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .sns-btn .sns-btn-item:last-child a {
    margin-right: 0;
  }
}

.l-header .fullscreen-menu .sns-btn .sns-btn-item a {
  display: inline-block;
  margin-right: 2rem;
  width: 1.8rem;
  height: 1.8rem;
}

@media (max-width: 820px) {
  .l-header .fullscreen-menu .sns-btn .sns-btn-item a {
    width: 3.2rem;
    height: 3.2rem;
    margin-right: 5rem;
  }
}

.l-header .fullscreen-menu .sns-btn .sns-btn-item a span {
  display: block;
  width: 100%;
  height: 100%;
}

.l-header .fullscreen-menu .sns-btn .sns-btn-item a span.icon-insta {
  background-image: url("/assets/image/common/icon_insta_b.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header .fullscreen-menu .sns-btn .sns-btn-item a span.icon-fb {
  background-image: url("/assets/image/common/icon_fb_b.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header.is-top {
  background-color: inherit;
}

.l-header.is-top .logo h1 {
  background-image: url("/assets/image/common/logo_header_w.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.l-header.is-top .fullscreen-menu .fullscreen-menu-list li a {
  color: #fff;
}

.l-header.is-top .fullscreen-menu .online-btn a {
  color: #fff;
  border: 1px solid #fff;
}

.l-header.is-top .fullscreen-menu .online-btn a span {
  background-image: url("/assets/image/common/icon_cart_w.svg");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
}

.l-header.is-top .fullscreen-menu .sns-btn .sns-btn-item a span.icon-insta {
  background-image: url("/assets/image/common/icon_insta_w.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header.is-top .fullscreen-menu .sns-btn .sns-btn-item a span.icon-fb {
  background-image: url("/assets/image/common/icon_fb_w.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.l-header.is-top .hamburger-btn span {
  background-color: #fff;
}

@media (max-width: 820px) {
  .l-header.is-active {
    background-color: #fff;
  }

  .l-header.is-active .logo h1 {
    background-image: url(/assets/image/common/logo_header_b.png);
    background-repeat: no-repeat;
    background-position: center left;
    background-size: contain;
  }

  .l-header.is-active .hamburger-btn span {
    background-color: #000;
  }

  .l-header.is-active .fullscreen-menu .fullscreen-menu-list li a {
    color: #000;
  }
}

/************************************
* main
************************************/
.l-main {
  margin: 0 auto;
}

/************************************
* footer
************************************/
.l-footer {
  background: url("/assets/image/common/footer_bg.jpg") no-repeat center;
  background-size: cover;
  padding: 8% 0;
  text-align: center;
  position: relative;
  z-index: 1;
}

@media (max-width: 820px) {
  .l-footer {
    background: url("/assets/image/common/footer_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.l-footer .footer-menu .footer-menu-list {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 3rem;
}

@media (max-width: 820px) {
  .l-footer .footer-menu .footer-menu-list {
    margin-bottom: 2rem;
  }
}

.l-footer .footer-menu .footer-menu-list li {
  position: relative;
}

.l-footer .footer-menu .footer-menu-list li:nth-of-type(1) {
  margin-right: 2rem;
  padding-right: 2rem;
}

.l-footer .footer-menu .footer-menu-list li:nth-of-type(1):before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 1.6rem;
  background: #000;
}

.l-footer .footer-menu .footer-menu-list li a {
  font-size: 1.2rem;
}

@media (max-width: 820px) {
  .l-footer .footer-menu .footer-menu-list li a {
    font-size: 1.2rem;
  }
}

.l-footer .footer-menu .copy {
  font-size: 1.2rem;
}

@media (max-width: 820px) {
  .l-footer .footer-menu .copy {
    font-size: 1.2rem;
  }
}

/* main.scss */
.l-main.top-page {
  min-height: 100%;
  padding-top: 100vh;
  padding-top: 100svh;
}

/************************************
* mv
************************************/
.mv-content {
  width: 100%;
  height: 100vh;
  height: 100svh;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  overflow: hidden;
}

.mv-content .mv-content-inner {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.mv-content .mv-content-inner h2 {
  width: 2%;
  min-width: 42px;
  position: absolute;
  top: 29%;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner h2 {
    top: 15%;
    min-width: 37px;
  }
}

.mv-content .mv-content-inner .mv-slider {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.mv-content .mv-content-inner .mv-slider div {
  width: 100%;
  height: 100%;
}

.mv-content .mv-content-inner .mv-slider .mv_bg_01 {
  background-image: url("/assets/image/top/mv_01.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .mv_bg_01 {
    background-image: url("/assets/image/top/mv_01_sp.jpg");
    background-size: cover;
    background-position: center;
  }
}

.mv-content .mv-content-inner .mv-slider .mv_bg_02 {
  background-image: url("/assets/image/top/mv_02.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .mv_bg_02 {
    background-image: url("/assets/image/top/mv_02_sp.jpg");
    background-size: cover;
    background-position: center;
  }
}

.mv-content .mv-content-inner .mv-slider .mv_bg_03 {
  background-image: url("/assets/image/top/mv_03.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .mv_bg_03 {
    background-image: url("/assets/image/top/mv_03_sp.jpg");
    background-size: cover;
    background-position: center;
  }
}

.mv-content .mv-content-inner .mv-slider .mv_bg_04 {
  background-image: url("/assets/image/top/mv_04.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .mv_bg_04 {
    background-image: url("/assets/image/top/mv_04_sp.jpg");
    background-size: cover;
    background-position: center;
  }
}

.mv-content .mv-content-inner .mv-slider .mv_bg_05 {
  background-image: url("/assets/image/top/mv_05.jpg");
  background-size: cover;
  background-position: center;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .mv_bg_05 {
    background-image: url("/assets/image/top/mv_05_sp.jpg");
    background-size: cover;
    background-position: center;
  }
}

.mv-content .mv-content-inner .mv-slider .slick-dots {
  display: flex;
  position: absolute;
  right: 3%;
  bottom: 5%;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .slick-dots {
    bottom: 2%;
  }
}

.mv-content .mv-content-inner .mv-slider .slick-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  margin-right: 1.5rem;
  border: none;
  cursor: pointer;
  text-indent: -9999px;
}

@media (max-width: 820px) {
  .mv-content .mv-content-inner .mv-slider .slick-dots button {
    width: 5px;
    height: 5px;
    margin-right: 1rem;
  }
}

.mv-content .mv-content-inner .mv-slider .slick-dots li.slick-active button {
  background: rgba(255, 255, 255, 0.7);
}

/************************************
* TOP about
************************************/
.top-page .about {
  background: #fff;
}

.top-page .about .text-content {
  padding: 10% 0;
  width: 85%;
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  position: relative;
}

@media (max-width: 820px) {
  .top-page .about .text-content {
    width: 93%;
    justify-content: space-between;
    padding: 10% 0 28%;
  }
}

.top-page .about .text-content .text-content-title {
  writing-mode: vertical-rl;
  font-size: 2.6rem;
  line-height: 1.7;
  margin-left: 10%;
}

@media (max-width: 820px) {
  .top-page .about .text-content .text-content-title {
    font-size: 2.3rem;
    margin-left: 8%;
  }
}

.top-page .about .text-content .text-content-item {
  writing-mode: vertical-rl;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-left: 10%;
}

@media (max-width: 820px) {
  .top-page .about .text-content .text-content-item {
    font-size: 1.6rem;
    margin-left: 0;
  }
}

.top-page .about .text-content .text-content-btn {
  margin-top: auto;
}

@media (max-width: 820px) {
  .top-page .about .text-content .text-content-btn {
    position: absolute;
    left: 0;
    bottom: 14%;
  }
}

/************************************
* TOP online
************************************/
.top-page .online {
  background: url("/assets/image/top/section_online_bg.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 820px) {
  .top-page .online {
    background: url("/assets/image/top/section_online_bg_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.top-page .online .content-inner {
  padding: 8% 0;
  text-align: center;
}

.top-page .online .content-inner .online-title {
  font-size: 2.6rem;
  margin-bottom: 3%;
}

@media (max-width: 820px) {
  .top-page .online .content-inner .online-title {
    font-size: 2.1rem;
    margin-bottom: 5%;
  }
}

.top-page .online .content-inner .online-text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 4.5%;
}

@media (max-width: 820px) {
  .top-page .online .content-inner .online-text {
    margin-bottom: 8.5%;
  }
}

/************************************
* TOP store
************************************/
.top-page .store {
  background: #fff;
}

.top-page .store .content-inner {
  padding: 8% 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

@media (max-width: 820px) {
  .top-page .store .content-inner {
    flex-direction: column;
  }
}

.top-page .store .content-inner .store-image {
  width: 50%;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-image {
    width: 92%;
    margin: 0 auto;
  }
}

.top-page .store .content-inner .store-image .store-image-main {
  position: relative;
  width: 100%;
}

.top-page .store .content-inner .store-image .store-image-main .store-image-def {
  opacity: 1;
}

.top-page .store .content-inner .store-image .store-image-main .main-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
}

.top-page .store .content-inner .store-image .store-image-main .main-image.is-active {
  opacity: 1;
}

.top-page .store .content-inner .store-image .store-image-thum {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-image .store-image-thum {
    gap: 6px;
    margin-top: 5px;
  }
}

.top-page .store .content-inner .store-image .store-image-thum .thumbnail {
  width: 32%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: opacity 0.5s ease-in-out;
}

.top-page .store .content-inner .store-detail {
  width: 45%;
  text-align: center;
  padding-top: 1%;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-detail {
    width: 100%;
  }
}

.top-page .store .content-inner .store-detail .store-detail-title {
  font-size: 2.6rem;
  margin-bottom: 8%;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-detail .store-detail-title {
    margin-bottom: 8%;
  }
}

.top-page .store .content-inner .store-detail .store-detail-lead {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 4.5%;
}

.top-page .store .content-inner .store-detail .store-detail-text {
  font-size: 1.4rem;
  line-height: 1.7;
  margin-bottom: 4.5%;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-detail .store-detail-text {
    margin-top: 6%;
    font-size: 1.5rem;
  }
}

.top-page .store .content-inner .store-detail .store-detail-map {
  position: relative;
  width: 100%;
  padding-top: 52.25%;
  margin-top: 10%;
  height: 0;
}

@media (max-width: 820px) {
  .top-page .store .content-inner .store-detail .store-detail-map {
    width: 92%;
    margin: 8% auto 0;
  }
}

.top-page .store .content-inner .store-detail .store-detail-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/************************************
* about
************************************/
.about-page {
  min-height: 100%;
  padding-top: 100vh;
  padding-top: 100svh;
}

.about-page .mv-content {
  background: url("/assets/image/about/mv_about.jpg") no-repeat center;
  background-size: cover;
  padding-top: 90px;
  height: calc(100vh - 90px);
  height: calc(100svh - 90px);
  position: fixed;
  z-index: 0;
}

@media (max-width: 820px) {
  .about-page .mv-content {
    background: url("/assets/image/about/mv_about_sp.jpg") no-repeat center;
    background-size: cover;
    padding-top: 60px;
  }
}

.about-page .mv-content .bread-crumb {
  margin-top: 2rem;
  margin-left: 3%;
}

.about-page .mv-content .bread-crumb ul {
  display: flex;
  align-items: center;
}

.about-page .mv-content .bread-crumb ul li {
  padding-right: 2rem;
  position: relative;
}

.about-page .mv-content .bread-crumb ul li:nth-of-type(1):before {
  content: ">";
  position: absolute;
  top: -4px;
  right: 0;
  display: inline-block;
  width: 13px;
  font-size: 1.4rem;
  height: auto;
}

.about-page .mv-content .mv-content-inner {
  width: 80%;
  height: auto;
  max-width: 1100px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 56%;
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .about-page .mv-content .mv-content-inner {
    top: 40%;
  }
}

.about-page .mv-content .mv-content-inner h2 {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  min-width: auto;
  font-size: 2.6rem;
  line-height: 1.7;
  margin-bottom: 2.5%;
}

@media (max-width: 820px) {
  .about-page .mv-content .mv-content-inner h2 {
    margin-bottom: 4.5%;
  }
}

.about-page .mv-content .mv-content-inner .mv-content-text {
  font-size: 1.6rem;
  line-height: 1.7;
}

.about-page .mv-content .mv-content-inner .mv-content-text dt {
  font-size: 2rem;
  margin-bottom: 3%;
}

@media (max-width: 820px) {
  .about-page .mv-content .mv-content-inner .mv-content-text dt {
    margin-bottom: 6%;
  }
}

.about-page .about {
  background: #fff;
  position: relative;
}

.about-page .about .content-inner {
  padding: 7% 0;
}

.about-page .about .content-inner .content-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8rem;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item {
    flex-direction: column-reverse;
    margin-bottom: 6rem;
  }
}

.about-page .about .content-inner .content-item:nth-of-type(2n) {
  flex-direction: row-reverse;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item:nth-of-type(2n) {
    flex-direction: column-reverse;
  }
}

.about-page .about .content-inner .content-item .content-item-img {
  width: 50%;
  padding-top: 28.25%;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item .content-item-img {
    width: 100%;
    padding-top: 56.25%;
  }
}

.about-page .about .content-inner .content-item .content-item-text {
  width: 45%;
  text-align: left;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item .content-item-text {
    width: 100%;
    text-align: center;
    margin-bottom: 3rem;
  }
}

.about-page .about .content-inner .content-item .content-item-text .content-item-title {
  font-size: 2.1rem;
  margin-bottom: 5%;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item .content-item-text .content-item-title {
    margin-bottom: 6%;
  }
}

.about-page .about .content-inner .content-item .content-item-text .content-item-title span {
  font-size: 3.5rem;
}

.about-page .about .content-inner .content-item .content-item-text .text-content-item {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0.1rem;
}

.about-page .about .content-inner .content-item .content-item-text .text-content-item dt {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  margin-bottom: 5%;
}

.about-page .about .content-inner .content-item .content-item-text .text-content-item dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -3px;
  left: 0;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .content-item .content-item-text .text-content-item dt {
    margin-bottom: 6%;
  }
}

.about-page .about .content-inner .content-item.item_01 .content-item-img {
  background: url("/assets/image/about/img_about_01.jpg") no-repeat center;
  background-size: cover;
}

.about-page .about .content-inner .content-item.item_02 .content-item-img {
  background: url("/assets/image/about/img_about_02.jpg") no-repeat center;
  background-size: cover;
}

.about-page .about .content-inner .content-item.item_03 .content-item-img {
  background: url("/assets/image/about/img_about_03.jpg") no-repeat center;
  background-size: cover;
}

.about-page .about .content-inner .content-item.item_04 .content-item-img {
  background: url("/assets/image/about/img_about_04.jpg") no-repeat center;
  background-size: cover;
}

.about-page .about .content-inner .sub-content {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content {
    flex-direction: column;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item {
  width: 32%;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 6rem;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .sub-content-item-img {
  width: 100%;
  padding-top: 56.25%;
  margin-bottom: 3rem;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .sub-content-item-img {
    width: 50%;
    margin-bottom: 0;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item.item_01 .sub-content-item-img {
  background: url("/assets/image/about/img_about_05.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item.item_01 .sub-content-item-img {
    background: url("/assets/image/about/img_about_05_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item.item_02 .sub-content-item-img {
  background: url("/assets/image/about/img_about_06.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item.item_02 .sub-content-item-img {
    background: url("/assets/image/about/img_about_06_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item.item_03 {
  margin-bottom: 0;
}

.about-page .about .content-inner .sub-content .sub-content-item.item_03 .sub-content-item-img {
  background: url("/assets/image/about/img_about_07.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item.item_03 .sub-content-item-img {
    background: url("/assets/image/about/img_about_07_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .sub-content-item-text {
  text-align: center;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .sub-content-item-text {
    width: 45%;
    text-align: left;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .sub-content-item-text .sub-content-item-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.about-page .about .content-inner .sub-content .sub-content-item .text-content-item {
  font-size: 1.4rem;
  line-height: 1.7;
  letter-spacing: 0;
}

@media (max-width: 1200px) {
  .about-page .about .content-inner .sub-content .sub-content-item .text-content-item {
    font-size: 1.1rem;
  }
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .text-content-item {
    font-size: 1.2rem;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .text-content-item dt {
  position: relative;
  display: inline-block;
  font-size: 1.7rem;
  margin-bottom: 9%;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .text-content-item dt {
    display: inline;
    background: linear-gradient(transparent 97%, #000 0%);
    padding-bottom: 2px;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .text-content-item dt::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  position: absolute;
  bottom: -3px;
  left: 0;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .text-content-item dt::after {
    content: none;
  }
}

.about-page .about .content-inner .sub-content .sub-content-item .text-content-item dd {
  letter-spacing: -0.05rem;
}

@media (max-width: 820px) {
  .about-page .about .content-inner .sub-content .sub-content-item .text-content-item dd {
    margin-top: 8%;
  }
}

/************************************
* company
************************************/
.company-page {
  min-height: 100%;
  padding-top: 100vh;
  padding-top: 100svh;
}

.company-page .mv-content {
  background: url("/assets/image/company/mv_company.jpg") no-repeat center;
  background-size: cover;
  padding-top: 90px;
  height: calc(100vh - 90px);
  height: calc(100svh - 90px);
  position: fixed;
  z-index: 0;
}

@media (max-width: 820px) {
  .company-page .mv-content {
    background: url("/assets/image/company/mv_company_sp.jpg") no-repeat center;
    background-size: cover;
    padding-top: 60px;
  }
}

.company-page .mv-content .bread-crumb {
  margin-top: 2rem;
  margin-left: 3%;
}

.company-page .mv-content .bread-crumb ul {
  display: flex;
  align-items: center;
}

.company-page .mv-content .bread-crumb ul li {
  padding-right: 2rem;
  position: relative;
}

.company-page .mv-content .bread-crumb ul li:nth-of-type(1):before {
  content: ">";
  position: absolute;
  top: -4px;
  right: 0;
  display: inline-block;
  width: 13px;
  font-size: 1.4rem;
  height: auto;
}

.company-page .mv-content .mv-content-inner {
  width: 80%;
  height: auto;
  max-width: 1100px;
  margin: 0 auto;
  position: absolute;
  left: 0;
  right: 0;
  top: 53%;
  transform: translateY(-50%);
}

@media (max-width: 820px) {
  .company-page .mv-content .mv-content-inner {
    top: 40%;
  }
}

.company-page .mv-content .mv-content-inner h2 {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  width: 100%;
  min-width: auto;
  font-size: 2.6rem;
  line-height: 1.7;
  margin-bottom: 2.5%;
}

@media (max-width: 820px) {
  .company-page .mv-content .mv-content-inner h2 {
    margin-bottom: 4.5%;
  }
}

.company-page .mv-content .mv-content-inner .mv-content-text {
  font-size: 2rem;
  line-height: 1.7;
}

.company-page .history {
  position: relative;
  background: #fff;
}

.company-page .history .content-inner {
  padding: 7% 0;
}

@media (max-width: 820px) {
  .company-page .history .content-inner {
    padding: 7% 2%;
  }
}

.company-page .history .content-inner h3 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3%;
}

.company-page .history .content-inner .content-table th,
.company-page .history .content-inner .content-table td {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  font-size: 1.4rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  line-height: 1.7;
}

@media (max-width: 820px) {

  .company-page .history .content-inner .content-table th,
  .company-page .history .content-inner .content-table td {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}

.company-page .history .content-inner .content-table th {
  width: 20%;
  text-align: left;
  padding-left: 6%;
}

@media (max-width: 820px) {
  .company-page .history .content-inner .content-table th {
    padding-left: 2%;
  }
}

.company-page .history .content-inner .content-table td {
  width: 80%;
  text-align: left;
  padding-left: 1%;
  padding-right: 6%;
}

@media (max-width: 820px) {
  .company-page .history .content-inner .content-table td {
    width: 83%;
    padding-left: 0;
    padding-right: 0;
    letter-spacing: 0;
    text-align: justify;
  }
}

.company-page .recruit {
  position: relative;
  background: url("/assets/image/company/bg_recruit.jpg") no-repeat center;
  background-size: cover;
}

@media (max-width: 820px) {
  .company-page .recruit {
    background: url("/assets/image/company/bg_recruit_sp.jpg") no-repeat center;
    background-size: cover;
  }
}

.company-page .recruit .content-inner {
  padding: 7% 0;
  text-align: center;
}

.company-page .recruit .content-inner h4 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3%;
  color: #fff;
}

@media (max-width: 820px) {
  .company-page .recruit .content-inner h4 {
    margin-bottom: 6%;
  }
}

.company-page .recruit .content-inner .recruit-text {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 5%;
}

@media (max-width: 820px) {
  .company-page .recruit .content-inner .recruit-text {
    margin-bottom: 7%;
  }
}

.company-page .recruit .content-inner .recruit-btn {
  text-align: center;
  color: #fff;
}

.company-page .recruit .content-inner .recruit-btn a {
  color: #fff;
  font-size: 1.3rem;
}

.company-page .recruit .content-inner .recruit-btn a::after {
  background: url("/assets/image/common/icon_right_arrow_w.svg") no-repeat left center;
  background-size: cover;
}

@media (max-width: 820px) {
  .company-page .recruit .content-inner .recruit-btn a::after {
    background: url("/assets/image/common/icon_right_arrow_w.svg") no-repeat left center;
    background-size: contain;
  }
}

.company-page .info {
  position: relative;
  background: #fff;
}

.company-page .info .content-inner {
  padding: 7% 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (max-width: 820px) {
  .company-page .info .content-inner {
    padding: 7% 2%;
    flex-direction: column-reverse;
  }
}

.company-page .info .content-inner .info-map {
  width: 50%;
  height: 0;
  position: relative;
  padding-top: 30.25%;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-map {
    width: 100%;
    padding-top: 52.25%;
  }
}

.company-page .info .content-inner .info-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.company-page .info .content-inner .info-text {
  width: 47%;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-text {
    width: 89%;
    margin-bottom: 8%;
  }
}

.company-page .info .content-inner .info-text p {
  font-size: 2rem;
  margin-bottom: 8%;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-text p {
    text-align: center;
  }
}

.company-page .info .content-inner .info-text dl {
  font-size: 1.4rem;
  line-height: 1.7;
  display: flex;
  flex-wrap: wrap;
}

.company-page .info .content-inner .info-text dl dt {
  width: 17%;
  min-width: 83px;
  text-align: justify;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-text dl dt {
    width: 21%;
    min-width: 64px;
  }
}

.company-page .info .content-inner .info-text dl dt:nth-of-type(1) {
  letter-spacing: 3px;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-text dl dt:nth-of-type(1) {
    letter-spacing: 2.7px;
  }
}

.company-page .info .content-inner .info-text dl dt:nth-of-type(2) {
  letter-spacing: 2.4px;
}

.company-page .info .content-inner .info-text dl dd {
  width: 80%;
  text-align: left;
  letter-spacing: 0;
}

@media (max-width: 820px) {
  .company-page .info .content-inner .info-text dl dd {
    width: 76%;
    letter-spacing: 0.5px;
  }
}

/*# sourceMappingURL=style.css.map */
