@charset "UTF-8";
/*----------------------------------------------------
  変数セット
----------------------------------------------------*/
/*responsive.css上書き(bootstrap4)*/
.mx-auto {
  display: block;
  margin: 0 auto;
}

/*----------------------------------------------------
  基本のレイアウト
----------------------------------------------------*/
html {
  scroll-snap-type: y proximity;
  scroll-padding-top: 80px;
  scroll-behavior: smooth;
}
@media screen and (max-width: 991.98px) {
  html {
    scroll-padding-top: 60px;
  }
}

body {
  color: #222;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  overflow-x: hidden;
}
@media screen and (max-width: 767.98px) {
  body {
    font-size: 1.4rem;
  }
}

.main-wrap {
  padding-top: 80px;
}
@media screen and (max-width: 767.98px) {
  .main-wrap {
    padding-top: 60px;
  }
}

@media (min-width: 576px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

/*----------------------------------------------------
  リンク色
----------------------------------------------------*/
a:link {
  color: #245fbb;
  text-decoration: none;
}

a:visited {
  color: #245fbb;
  text-decoration: none;
}

a:hover {
  color: #E48E00;
  text-decoration: underline;
}

a:active {
  color: #E48E00;
  text-decoration: underline;
}

/*----------------------------------------------------
  タイトル
----------------------------------------------------*/
.page-title {
  height: 120px;
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #00ae8b;
  padding: 0 1rem;
  margin-bottom: 5rem;
}
@media screen and (max-width: 767.98px) {
  .page-title {
    height: 90px;
    font-size: 2.6rem;
    margin-bottom: 3rem;
  }
}

/*----------------------------------------------------
  ヘッダー
----------------------------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  transition: 0.2s;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #f2f2f2;
}
header .header-area {
  height: 80px;
  position: relative;
  display: flex;
  justify-content: space-between;
  transition: 0.2s;
}
@media screen and (max-width: 767.98px) {
  header .header-area {
    height: 60px;
  }
}
header .header-logo {
  display: flex;
  align-items: center;
}
header .header-logo a {
  display: inline-block;
}
header .header-logo a img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 210px;
}
@media screen and (max-width: 991.98px) {
  header .header-logo a img {
    width: 18vw;
  }
}
@media screen and (max-width: 767.98px) {
  header .header-logo a img {
    width: 148px;
  }
}
header .header-menu {
  position: relative;
}
@media screen and (max-width: 767.98px) {
  header .header-menu {
    display: none;
  }
}
header .header-menu nav {
  height: 100%;
  display: inline-block;
  display: flex;
  align-items: center;
  justify-content: right;
}

/*----------------------------------------------------
  ナビゲーション
----------------------------------------------------*/
ul.global-nav {
  list-style: none;
  padding-left: 0;
  display: flex;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
ul.global-nav > li {
  position: relative;
  cursor: pointer;
}
ul.global-nav > li > a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 2rem;
  text-decoration: none;
  color: #222;
  position: relative;
  user-select: none;
  text-align: center;
  line-height: 1.3;
}
@media screen and (max-width: 1119.98px) {
  ul.global-nav > li > a {
    padding: 0 1.2rem;
    font-size: 1.4rem;
  }
}
ul.global-nav > li > a:hover {
  opacity: 0.7;
}
ul.global-nav > li > a[href^="mailto:"] {
  background-color: #00ae8b;
  border-radius: 5px;
  color: #fff;
  position: relative;
  height: auto;
  padding: 2rem;
  margin-left: 1rem;
}
ul.global-nav > li > a[href^="mailto:"]::before {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  background: url(../images/common/ico_mail.svg) no-repeat center center;
  background-size: contain;
  margin-right: 1rem;
}
ul.global-nav > li:has(a[href^="mailto:"]) {
  align-self: center;
}
ul.global-nav > li.menu-item-has-children > a::after {
  content: "";
  display: inline-block;
  width: 0.65em;
  height: 0.65em;
  border-right: 2px solid #00ae8b;
  border-bottom: 2px solid #00ae8b;
  transform: rotate(45deg);
  margin-left: 0.5em;
  transition: 0.2s;
  margin-top: -0.25em;
}
ul.global-nav .child-nav {
  position: absolute;
  left: 0;
  top: 100%;
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  z-index: 2;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
}
ul.global-nav .child-nav ul {
  padding-left: 0;
  list-style: none;
  width: 200px;
  position: relative;
}
ul.global-nav .child-nav ul li:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
ul.global-nav .child-nav ul li a {
  text-decoration: none;
  padding: 0.7rem 1.2rem 0.9rem;
  display: block;
  color: #222;
  font-size: 0.9em;
  line-height: 1.4;
}
ul.global-nav .child-nav ul li a:hover {
  opacity: 0.7;
  color: #00ae8b;
}
ul.global-nav > li:hover .child-nav {
  opacity: 1;
  visibility: visible;
}

/*----------------------------------------------------
  スマホメニュー
----------------------------------------------------*/
a.menu-button {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  display: none;
  z-index: 999;
}
@media screen and (max-width: 767.98px) {
  a.menu-button {
    display: block;
  }
}
a.menu-button .menu-trigger {
  cursor: pointer;
  position: relative;
  width: 42px;
  height: 36px;
  display: inline-block;
  transition: all 0.4s;
}
a.menu-button .menu-trigger span {
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: 0.4s;
}
a.menu-button .menu-trigger span:not(:last-child) {
  width: calc(100% - 10px);
  height: 3px;
  background-color: #00ae8b;
}
a.menu-button .menu-trigger span:nth-of-type(1) {
  top: 5px;
}
a.menu-button .menu-trigger span:nth-of-type(2) {
  top: 13px;
}
a.menu-button .menu-trigger span:nth-of-type(3) {
  width: 100%;
  bottom: 0;
  font-size: 1rem;
  text-align: center;
  color: #00ae8b;
  font-weight: 700;
}

.open .menu-trigger span:nth-of-type(1) {
  top: 10px !important;
  transform: translateX(-50%) rotate(40deg);
}
.open .menu-trigger span:nth-of-type(2) {
  top: 10px !important;
  transform: translateX(-50%) rotate(-40deg);
}

.smp-menu {
  position: fixed;
  top: 0px;
  left: 0;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  padding: 60px 2rem 3rem;
  display: none;
  overflow-x: hidden;
  overflow-y: scroll;
}
.smp-menu ul {
  list-style: none;
  padding-left: 0;
}
.smp-menu ul.smp-nav {
  margin-bottom: 3rem;
}
.smp-menu ul.smp-nav li {
  border-bottom: 1px solid #eee;
}
.smp-menu ul.smp-nav li a, .smp-menu ul.smp-nav li span {
  color: #222;
  font-weight: 700;
  display: block;
  padding: 1.5rem 1.5rem;
  position: relative;
  text-decoration: none;
  font-size: 1.4rem;
}
.smp-menu ul.smp-nav li a[href^="mailto:"], .smp-menu ul.smp-nav li span[href^="mailto:"] {
  background-color: #00ae8b;
  border-radius: 5px;
  color: #fff;
  position: relative;
}
.smp-menu ul.smp-nav li a[href^="mailto:"]::before, .smp-menu ul.smp-nav li span[href^="mailto:"]::before {
  content: "";
  width: 20px;
  height: 16px;
  display: inline-block;
  background: url(../images/common/ico_mail.svg) no-repeat center center;
  background-size: contain;
  margin-right: 1rem;
  vertical-align: middle;
  margin-top: -0.1em;
}
.smp-menu ul.smp-nav li:has(a[href^="mailto:"]) {
  margin-top: 2rem;
}
.smp-menu ul.smp-nav li span {
  position: relative;
}
.smp-menu ul.smp-nav li span::before, .smp-menu ul.smp-nav li span::after {
  content: "";
  display: inline-block;
  position: absolute;
  background-color: #00ae8b;
  top: 50%;
}
.smp-menu ul.smp-nav li span::before {
  width: 1em;
  height: 2px;
  right: 0.55em;
  transform: translateX(-50%);
  margin-top: -1px;
}
.smp-menu ul.smp-nav li span::after {
  width: 2px;
  height: 1em;
  right: 1.5em;
  transform: translateY(-50%);
  transition: 0.2s;
}
.smp-menu ul.smp-nav li span.open::after {
  transform: translateY(-50%) rotate(90deg);
}
.smp-menu ul.smp-nav li ul.smp-nav-child {
  padding-bottom: 1.5rem;
}
.smp-menu ul.smp-nav li ul.smp-nav-child li {
  border-bottom: 0;
}
.smp-menu ul.smp-nav li ul.smp-nav-child li a {
  font-weight: 500;
  padding: 1rem 0 1rem 2.6em;
  position: relative;
}
.smp-menu ul.smp-nav li ul.smp-nav-child li a::before {
  content: "";
  width: 0.4em;
  height: 2px;
  display: inline-block;
  background-color: #00ae8b;
  position: absolute;
  top: 1.5em;
  left: 1.2em;
}

/*----------------------------------------------------
  フッター
----------------------------------------------------*/
footer {
  border-top: 2px solid #00ae8b;
  position: relative;
  margin-top: 8rem;
  border-top: 1px solid #00ae8b;
}
footer .page-top {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 2;
}
footer .page-top a {
  background: #00ae8b;
  text-decoration: none;
  width: 60px;
  height: 60px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.2s;
  border-radius: 50%;
}
@media screen and (max-width: 767.98px) {
  footer .page-top a {
    width: 50px;
    height: 50px;
  }
}
footer .page-top a::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  left: 39%;
  top: 41%;
  transition: 0.2s;
}
@media screen and (max-width: 767.98px) {
  footer .page-top a::after {
    left: 35%;
    width: 14px;
    height: 14px;
  }
}
footer .footer-area {
  padding: 3rem 0 2rem;
}
footer .footer-area .footer-company a {
  color: #222;
  text-decoration: none;
  font-size: 2rem;
  display: inline-block;
  margin-bottom: 0.6em;
  font-weight: 500;
}
@media screen and (max-width: 767.98px) {
  footer .footer-area .footer-company a {
    font-size: 1.6rem;
  }
}
footer .footer-area address {
  font-style: normal;
  font-size: 0.8em;
}
footer .copyright {
  color: #222;
  font-size: 1.2rem;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767.98px) {
  footer .copyright {
    font-size: 1rem;
  }
}

/*----------------------------------------------------
  パンくず
----------------------------------------------------*/
.breadcrumb ul {
  list-style: none;
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767.98px) {
  .breadcrumb ul {
    font-size: 1rem;
    margin-bottom: 0rem;
    margin-top: 70px;
    background: none;
    text-align: right;
  }
}
.breadcrumb ul li {
  display: inline-block;
  padding-right: 1.8em;
  position: relative;
}
.breadcrumb ul li::after {
  content: "";
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  border-top: 1px solid #222;
  border-right: 1px solid #222;
  transform: rotate(45deg);
  position: absolute;
  right: 0.5em;
  top: 0.6em;
}
.breadcrumb ul li:last-child {
  padding-right: 0;
}
.breadcrumb ul li:last-child::after {
  display: none;
}
.breadcrumb ul li a {
  color: #222;
}

/*----------------------------------------------------
  お知らせ
----------------------------------------------------*/
.news-area a.newslist {
  color: #222;
  text-decoration: none;
  display: flex;
  border-bottom: 1px solid #ddd;
  padding: 1.5rem;
}
@media screen and (max-width: 767.98px) {
  .news-area a.newslist {
    display: block;
  }
}
.news-area a.newslist .time {
  width: 150px;
}
.news-area a.newslist .contents {
  flex: 1;
}
.news-area a.newslist:hover {
  background-color: #fafafa;
}
.news-area a.newslist:hover .contents {
  color: #00ae8b;
}

/*----------------------------------------------------
  取扱ラインナップ
----------------------------------------------------*/
.lineup-area {
  display: flex;
}
@media screen and (max-width: 767.98px) {
  .lineup-area {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .lineup-area > .side {
    width: 280px;
    order: 1;
    padding-right: 5rem;
  }
}
.lineup-area > .side .lineup-side-title {
  text-align: center;
  background-color: #d8f4ee;
  color: #00ae8b;
  padding: 1.2rem 0;
  font-weight: 700;
}
.lineup-area > .side ul.lineup-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 3rem;
}
.lineup-area > .side ul.lineup-list li {
  border-bottom: 1px solid #ddd;
}
.lineup-area > .side ul.lineup-list li a {
  display: block;
  padding: 1.5rem 1rem 1.5rem 2rem;
  color: #222;
  text-decoration: none;
  position: relative;
}
.lineup-area > .side ul.lineup-list li a::before {
  content: "";
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
  background: #00ae8b;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  left: 0.6rem;
  top: 2.1rem;
}
.lineup-area > .side ul.lineup-list li a:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .lineup-area > .contents {
    order: 2;
    width: calc(100% - 280px);
  }
}

/*----------------------------------------------------
  主な取扱メーカー及び仕入先
----------------------------------------------------*/
ul.maker-list {
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
}
ul.maker-list li {
  list-style: none !important;
  width: calc(50% - 1rem);
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  border-bottom: 1px dashed #ccc;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  ul.maker-list li {
    width: 100%;
    padding: 1.2rem 1.2rem 1.2rem 2rem;
  }
}
ul.maker-list li::before {
  content: "";
  width: 0.5em;
  height: 0.8em;
  display: inline-block;
  background: #00ae8b;
  clip-path: polygon(0 0, 0 100%, 100% 50%);
  position: absolute;
  left: 0.5rem;
  top: 2.1rem;
}
ul.maker-list li:nth-child(odd) {
  margin-right: 1rem;
}
@media screen and (max-width: 767.98px) {
  ul.maker-list li:nth-child(odd) {
    margin-right: 0;
  }
}
ul.maker-list li:nth-child(even) {
  margin-left: 1rem;
}
@media screen and (max-width: 767.98px) {
  ul.maker-list li:nth-child(even) {
    margin-left: 0;
  }
}
ul.maker-list li a {
  display: block;
}

/*----------------------------------------------------
  会社案内
----------------------------------------------------*/
p.txt-greeting {
  font-size: 1.8rem !important;
}
@media screen and (max-width: 767.98px) {
  p.txt-greeting {
    font-size: 1.5rem !important;
  }
}

.txt-rinen {
  padding: 3rem 0 3rem 3rem;
  line-height: 2;
  background: url(../images/company/bk_rinen.jpg) no-repeat right bottom;
  background-size: contain;
  position: relative;
}
@media screen and (max-width: 767.98px) {
  .txt-rinen {
    background-size: cover;
    padding: 3rem 1.5rem;
  }
}
@media screen and (max-width: 575.98px) {
  .txt-rinen {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.txt-rinen::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  background-image: linear-gradient(90deg, #fff, #fff 20%, rgba(255, 255, 255, 0.4));
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.txt-rinen p {
  position: relative;
  z-index: 1;
  line-height: 2;
  text-shadow: 0 0 5px #fff;
  margin-bottom: 0 !important;
  font-size: 3rem;
}
@media screen and (max-width: 767.98px) {
  .txt-rinen p {
    font-size: 2.6rem !important;
  }
}
@media screen and (max-width: 575.98px) {
  .txt-rinen p {
    font-size: 4.9vw !important;
  }
}

.google-map iframe {
  width: 100%;
}/*# sourceMappingURL=common.css.map */