@charset "UTF-8";
/* 変数定義
----------------------------------------- */
/* 共通部分
----------------------------------------- */
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.6rem;
  font-weight: 400;
  font-family: 'Zen Old Mincho', serif ,"Outfit", "Avenir", "Helvetica", "Arial", Yu Gothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;  color: #333333;
  line-height: 1.5;
  background: #ffffff;
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* ヘッダー
----------------------------------------- */
header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(250, 250, 250, 0.85);
  z-index: 3;
}

.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.header_logo {
  width: 90px;
  margin-left: 5%;
}

.header_nav_menu {
  display: flex;
  align-items: center;
  margin-right: 30px;
}
.header_nav_menu li {
  height: 120px;
  padding: 40px 20px;
}

.header_nav_menu li a {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  vertical-align: middle;
  transition: 0.3s;
}
.header_nav_menu li a span {
  display: block;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

.header_nav_menu li a:hover,
.header_nav_menu li a:focus {
  color: #3e7194;
  transition: 0.3s;
}

/* ハンバーガーメニュー */
.hamburger_btn {
  display: none;
}

/* 各セクション共通事項
----------------------------------------- */
/* セクションタイトル */
.section_title {
  margin: 80px auto 50px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #3e7194;
}

.section_title_sub {
  display: block;
  font-size: 1.6rem;
  color: #3e7194;
  letter-spacing: 0.1em;
}

/* メインビジュアル
----------------------------------------- */
.main_visual {
  width: 100%;
  max-width: 1200px;
  margin: 120px auto 0;
  background-color: #fff;
}

.slider {
  width: 100%;
}

.slider-item img{
  width: 100%;
}

/* wrapper
----------------------------------------- */
.wrapper {
  width: 90%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ショップ
----------------------------------------- */
.shop_upper p{
  margin: 80px auto 50px;
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #3e7194;
}

.shop_upper_container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 3%;
margin: 0 auto;
  max-width: 100%;
}

.shop_upper_logo {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}


.shop_item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 20px;
  font-size: 2.2rem;
}
.shop_item a {
  transition: 0.3s;
}
.shop_item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 13px;
  left: 0;
  background-color: #333333;
  border-radius: 50%;
}
.shop_item a:hover,
.shop_item a:focus {
  color: #3e7194;
  transition: 0.3s;
}

.shop_innerlist {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 15px;
}

.shop_innerlist_item {
  padding: 10px;
  font-size: 1.6rem;
}
.shop_innerlist_item:not(:last-child) {
  margin-right: 40px;

}

/* 取扱商品
----------------------------------------- */
#product .wrapper {
  width: 85%;
}



.product_info {
  padding: 24px 0 20px;
  font-size: 2.0rem;
  text-align: center;
display: block;
}

.product_info .mb{
  display: none;
}

/* ショップ
----------------------------------------- */
.shop_item {
  position: relative;
  margin-bottom: 38px;
  padding-left: 25px;
  font-size: 2rem;
  vertical-align: middle;
}
.shop_item a {
  transition: 0.3s;
}
.shop_item img {
  display: inline-block;
  height: 36px;
  margin-right: 20px;
  vertical-align: middle;
}
.shop_item::before {
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  top: 13px;
  left: 0;
  background-color: #333333;
  border-radius: 50%;
}
.shop_item a:hover,
.shop_item a:focus {
  color: #3e7194;
  transition: 0.3s;
}


/* 会社概要
----------------------------------------- */
.company {
  width: 100%;
  margin-bottom: 100px;
}

.tab {
  display: flex;
  margin-bottom: 20px;
}
.tab li a {
  display: block;
  margin: 0 2px;
  padding: 8px 20px;
  font-size: 1.4rem;
  background: #e0dfde;
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
  border-right: 1px solid #333333;
}
.tab li.active a {
  background: #fafafa;
}

.area {
  display: none;
  opacity: 0;
}

.area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.company_item {
  display: flex;
  justify-content: space-between;
}
.company_item:not(:last-child) {
  margin-bottom: 15px;
  border-bottom: 1px solid #333333;
}

.company_title {
  width: 18%;
  margin-bottom: 5px;
  font-weight: 600;
  text-align: center;
}

.company_content {
  width: 76%;
  margin-bottom: 10px;
}

.company_content_list {
  position: relative;
  padding-left: 15px;
  vertical-align: middle;
}
.company_content_list::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 10px;
  left: 0;
  background-color: #333333;
  border-radius: 50%;
}

/* お問合せ
----------------------------------------- */
#contact .wrapper {
  width: 75%;
  max-width: 1080px;
}

.contact {
  margin-bottom: 100px;
}

.contact .section_title {
  margin-top: 200px;
}

.contact_title {
  text-align: center;
  margin-bottom: 30px;
}
.contact_title .br_sp {
  display: none;
}

.contact_tel {
  margin: 30px 0 10px;
}

.contact_tel_number {
  font-size: 2rem;
  font-weight: 500;
  line-height: 0;
}
.contact_tel_number img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
}

.form_item {
  margin-bottom: 30px;
}

.form_name_wrapper {
  margin-bottom: 10px;
}

.form_name {
  margin-right: 5px;
}

/* 必須マーク */
.required {
  display: inline-block;
  padding: 6px 9px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #fafafa;
  background: #3e7194;
  border-radius: 5px;
}

/* 任意マーク */
.not_required {
  display: inline-block;
  padding: 5px 8px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  color: #3e7194;
  background: #fafafa;
  border: 2px solid #3e7194;
  border-radius: 5px;
}

/* テキストエリア */
.form_item input[type=text],
.form_item input[type=tel],
.form_item input[type=email],
.form_item select,
.form_item textarea {
  width: 100%;
  padding: 15px;
  font-family: inherit;
  color: #333333;
  background: #E0E0E0;
  border-radius: 10px;
}
.form_item textarea {
  resize: none;
}

.privacy_link {
  margin-bottom: 45px;
  text-align: center;
}
.privacy_link .br_sp {
  display: none;
}
.privacy_link a {
  color: #3e7194;
  text-decoration: underline;
}

.submit {
  text-align: center;
}

.submit_button {
  display: inline-block;
  font-size: 2rem;
  font-weight: 500;
  color: #fafafa;
  background: #3e7194;
  border-radius: 30px;
  transition: all 0.3s;
}
.submit_button:hover, .submit_button:focus {
  opacity: 0.7;
  transition: all 0.3s;
}

input[type=submit] {
  display: block;
  padding: 10px 70px;
}

/* サンクスページ
----------------------------------------- */
.thanks_title {
  margin: 170px auto 60px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.thanks_content {
  margin-bottom: 60px;
}

.back_button {
  margin-bottom: 80px;
  text-align: center;
}
.back_button a {
  display: inline-block;
  padding: 10px 50px;
  font-size: 2rem;
  font-weight: 500;
  color: #fafafa;
  background: #858585;
  border-radius: 30px;
  transition: all 0.3s;
}
.back_button a:hover, .back_button a:focus {
  opacity: 0.7;
  transition: all 0.3s;
}

/* フッター
----------------------------------------- */
footer {
  position: relative;
  width: 100%;
  padding: 30px 0;
  color: #fafafa;
  background: #3e7194;
}

.footer_container {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.footer_info,
.footer_nav {
  width: 50%;
}

.footer_info_name {
  margin-bottom: 10px;
  font-size: 1.8rem;
}
.footer_info_name span {
  display: block;
  font-size: 1.2rem;
}

.footer_nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.footer_nav li {
  position: relative;
  padding-left: 20px;
}
.footer_nav li a {
  transition: color 0.3s;
}
.footer_nav li a:hover, .footer_nav li a:focus {
  color: #333333;
  transition: color 0.3s;
}
.footer_nav li a::before, .footer_nav li a::after {
  position: absolute;
  content: "";
  width: 9px;
  height: 1.5px;
  left: 0;
  background: #fafafa;
  transition: all 0.3s;
}
.footer_nav li a::before {
  top: 10px;
  transform: rotate(40deg);
}
.footer_nav li a::after {
  top: 15.5px;
  transform: rotate(-40deg);
}
.footer_nav li a:hover::before, .footer_nav li a:hover::after, .footer_nav li a:focus::before, .footer_nav li a:focus::after {
  background: #333333;
  transition: all 0.3s;
}

.footer_nav li:not(:last-child) {
  margin-bottom: 10px;
}

.copyright {
  font-size: 1.4rem;
  text-align: center;
}

/* レスポンシブ設定
-----------------------------------------------------*/
@media (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}
/* ヘッダー
------------------------------------------*/
@media (max-width: 940px) {
  .header_container {
    position: relative;
    height: 70px;
    padding: 12px 15px;
  }
  .header_logo {
    position: absolute;
    width: 45px;
    margin-left: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .header_nav {
    position: fixed;
    width: 85%;
    height: 100%;
    top: 0;
    right: -88%;
    color: #fff;
    background: #3e7194;
    transition: all 0.5s cubic-bezier(0, 1, 0.8, 1);
    z-index: 7;
  }
  .header_nav.open {
    right: 0;
    transition: all 0.5s cubic-bezier(0, 1, 0.8, 1);
  }
  .header_nav_menu {
    flex-direction: column;
    justify-content: center;
    max-width: 500px;
    height: 100%;
    margin: 0 auto;
    padding: 30px;
  }
  .header_nav_menu li {
    width: 100%;
    height: auto;
    padding: 14px 0;
    text-align: center;
  }
  .header_nav_menu li:not(:last-child) {
    border-bottom: 1px solid #ffffff;
  }
  .header_nav_menu li a {
    font-size: 1.4rem;
    font-weight: 400;
  }
  /* ハンバーガーメニュー */
  .hamburger_btn {
    position: absolute;
    display: block;
    width: 40px;
    height: 40px;
    right: 16px;
    text-align: center;
    cursor: pointer;
    background: transparent;
    z-index: 10;
  }
  .hamburger_line {
    position: relative;
    width: 24px;
    height: 2px;
    top: 14px;
    left: 50%;
    background: #333333;
    border-radius: 10px;
    transform: translateX(-50%);
    transition: all 0.3s;
  }
  .hamburger_line::before, .hamburger_line::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 2px;
    left: 0;
    background: #333333;
    border-radius: 10px;
    transition: transform 0.3s;
  }
  .hamburger_line::before {
    bottom: 8px;
  }
  .hamburger_line::after {
    top: 8px;
  }
  .hamburger_line.open {
    background: transparent;
    transition: all 0.3s;
  }
  .hamburger_line.open:before {
    bottom: -1px;
    transform: rotate(45deg);
    transition: transform 0.3s;
  }
  .hamburger_line.open:after {
    top: 1px;
    transform: rotate(-45deg);
    transition: transform 0.3s;
  }
  .hamburger_cap {
    display: inline-block;
    margin-top: 26px;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1;
    text-align: center;
  }
}
/* 各セクション共通事項
----------------------------------------- */
/* セクションタイトル */
@media (max-width: 768px) {
  .section_title {
    margin: 50px auto 30px;
    font-size: 2rem;
  }
  .section_title_sub {
    font-size: 1.2rem;
  }
}
/* メインビジュアル
----------------------------------------- */
@media (max-width: 768px) {
  .main_visual {
    width: 100%;
    height: 45vh;
    margin-top: 70px;
  }
  .slider {
    height: 100%;
  }
  .slider-item {
    height: 100%;

  }
  .slider-item img {
    width: 100%;
    height: 45vh;
    -o-object-fit: cover;
       object-fit: cover;
      }
      
  .slider02 img,
  .slider03 img {
    object-position: right center;
  }

}
/* wrapper
------------------------------------------*/
@media (max-width: 768px) {
  .wrapper {
    width: 100%;
  }
}
/* 取扱商品
------------------------------------------*/
@media (max-width: 768px) {
  #product .wrapper {
    width: 100%;
  }
  .product_container {
    grid-column-gap: 4%;
  }
  .product_item {
    margin-bottom: 30px;
  }
  .product_name {
    padding: 8px;
    font-size: 1.4rem;
    line-height: 1.3;
  }
}
@media (max-width: 560px) {
  .product_container {
    grid-template-columns: repeat(2, 1fr);
  }
  .product_item {
    margin-bottom: 25px;
  }
}

@media (max-width: 768px) {
  .shop_upper {
    margin-bottom: 15px;
  }

  .product_info{
    font-size: 1.6rem;

  }


  .product_info .mb{
    display: block;
  }
  .shop_upper p {
    margin: 50px auto 30px;
    font-size: 2rem;
  }
  .shop_upper_container {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop_upper_logo {
    width: 80%;
    max-width: 100%;
    padding: 20px;
  }
  .shop_item {
    margin-bottom: 16px;
    padding-left: 16px;
    font-size: 1.8rem;
  }
  .shop_item::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
  .shop_innerlist {
    flex-direction: column;
    align-items: start;
    margin-top: 8px;
  }
  .shop_innerlist_item {
    padding: 8px;
  }
  .shop_innerlist_item:not(:last-child) {
    margin-right: auto;
  }
}
/* ショップ
------------------------------------------*/
@media (max-width: 768px) {
  #shop .wrapper {
    width: 100%;
  }
  .shop_item {
    margin-bottom: 20px;
    padding-left: 18px;
    font-size: 1.6rem;
  }
  .shop_item img {
    /* display: block; */
    height: 28px;
    margin-bottom: 10px;
  }
  .shop_item::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
}

/* お取扱い店舗
----------------------------------------- */
@media (max-width: 768px) {
  .instore_item {
    margin-bottom: 20px;
    padding-left: 18px;
    font-size: 1.4rem;
  }
  .instore_item_text {
    margin-top: 6px;
    font-size: 1.4rem;
  }
  .instore_item img {
    display: block;
    height: 28px;
    margin-bottom: 2px;
  }
  .instore_item::before {
    width: 6px;
    height: 6px;
    top: 10px;
  }
}


/* コミュニティ
------------------------------------------*/
@media (max-width: 768px) {
  #community .wrapper {
    width: 100%;
    max-width: 650px;
  }
  .community_banner {
    margin-bottom: 20px;
  }
  .community_text {
    margin-bottom: 20px;
  }
  .community_text p {
    text-align: left;
    line-height: 1.6;
  }
  .community_text p br {
    display: none;
  }
  .community_button {
    font-size: 1.6rem;
  }
}
/* お知らせ
------------------------------------------*/
@media (max-width: 768px) {
  .news_container {
    padding: 20px;
  }
  .news_item {
    padding: 15px 0;
  }
  .news_item:first-child {
    border-top: none;
  }
  .news_item:last-child {
    border-bottom: none;
  }
  .news_date {
    font-size: 1.4rem;
  }
  .new {
    width: 25px;
  }
}
/* 会社概要
----------------------------------------- */
@media (max-width: 768px) {
  .company {
    margin-bottom: 70px;
  }
  .company_item {
    display: block;
  }
  .company_item:not(:last-child) {
    margin-bottom: 10px;
  }
  .company_title {
    width: 100%;
    margin-bottom: 6px;
    text-align: left;
  }
  .company_content {
    width: 100%;
    margin-bottom: 10px;
  }
  .company_content_list {
    padding-left: 10px;
  }
}
/* お問合せ
----------------------------------------- */
@media (max-width: 768px) {
  #contact .wrapper {
    width: 100%;
  }
  .contact {
    margin-bottom: 60px;
  }
  .contact .section_title {
    margin-top: 110px;
  }
  .contact_title .br_sp {
    display: block;
  }
  .contact_tel {
    margin: 20px 0 8px;
  }
  .contact_tel_number {
    font-size: 1.8rem;
  }
  .contact_tel_number img {
    width: 20px;
  }
  .form_item {
    margin-bottom: 12px;
  }
  .form_name_wrapper {
    margin-bottom: 5px;
  }
  /* 必須マーク */
  .required {
    padding: 5px 8px;
    font-size: 1.2rem;
  }
  /* 任意マーク */
  .not_required {
    padding: 4px 7px;
    font-size: 1.2rem;
  }
  /* テキストエリア */
  .form_item input[type=text],
  .form_item input[type=tel],
  .form_item input[type=email],
  .form_item textarea {
    width: 100%;
    padding: 8px 10px;
  }
  .privacy_link {
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .privacy_link .br_sp {
    display: block;
  }
  .submit_button {
    font-size: 1.6rem;
  }
}
/* サンクスページ
----------------------------------------- */
@media (max-width: 768px) {
  .thanks_title {
    margin: 100px auto 45px;
  }
  .thanks_content {
    margin-bottom: 45px;
  }
  .back_button {
    margin-bottom: 60px;
  }
  .back_button a {
    font-size: 1.6rem;
  }
}
/* フッター
------------------------------------------*/
@media (max-width: 768px) {
  footer {
    padding: 20px 0;
  }
  .footer_container {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .footer_info,
  .footer_nav {
    width: 100%;
  }
  .footer_logo img {
    width: 80px;
  }
  .footer_info {
    margin-bottom: 20px;
  }
  .footer_info_name {
    font-size: 1.6rem;
  }
  .footer_nav li {
    padding-left: 15px;
  }
  .footer_nav li a::before, .footer_nav li a::after {
    width: 7px;
    height: 1px;
  }
  .footer_nav li a::before {
    top: 10px;
  }
  .footer_nav li a::after {
    top: 13.5px;
  }
  .footer_nav li:not(:last-child) {
    margin-bottom: 5px;
  }
  .copyright {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=common.css.map */