/*
style.css
Author: inu design
Version: 1.0
Last Updated: 2025-12-18
*/

/*------------------------------------------

	サイト全体設定

------------------------------------------*/

/* --- webfont --- */
.quicksand {
  font-family: "Quicksand", sans-serif;
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
}

body {
  color: var(--main-text-color);
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.6em;
  font-weight: 400;
  line-height: 2;
  background: var(--main-bg-color);
}


/* --- link --- */
a {
  color: var(--main-text-color);
  text-decoration: none;
}
a.link {
  color: var(--link-color);
  text-decoration: underline;
}
/* 
a.link.underline {
  display: inline-block;
  padding-bottom: .01em;
  border-bottom: 1px solid #00aab3;
} */

/* PC hover */
@media (hover: hover) {
  a.link:hover {
    color: var(--link-hover-color);
  }
  /*   
  a.link.underline:hover {
    border-bottom: 1px solid #007c83;
  }
   */
}
/* mobile hover */
@media (hover: none) {
  a.link:active {
    color: var(--link-hover-color);
  }
  /*   
  a.link.underline:active {
    border-bottom: 1px solid #007c83;
  }
   */
}

/* --- text --- */
h1, h2, h3, h4 {
  line-height: 1.4;
}
p {
  font-feature-settings: "pkna";
  /* letter-spacing: -0.2px; */
  /* 禁則処理強 */
  line-break: strict;
}
.t-palt {
  /* 括弧句読点詰め */
  font-feature-settings: "palt";
}
.t-white {
  color: #fff;
}
.t-brown {
  color: var(--main-color);
}

/* Tb */
@media print, screen and (max-width: 820px) {
  body {
    font-size: 1.5em;
    line-height: 1.8;
  }
}
/* Tb END */
/* Sm */
@media print, screen and (max-width: 480px) {
  body {
    font-size: 1.4em;
    line-height: 1.6;
  }
  p {
    letter-spacing: .03em;
  }
}

/* --- background --- */
.bg-white {
  background: #fff;
}
.bg-brown {
  background: var(--sub-bg-color);
}

/*------------------------------------------

	レイアウト

------------------------------------------*/
#container {
  width: 100%;
  position: relative;
  overflow: hidden;
  padding-right: constant(safe-area-inset-right);
  padding-left: constant(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  padding-left: env(safe-area-inset-left);
  background: #dae6f2;
}
#content {
  width: 100%;
  background: #fff;
}
.inr-box {
  width: 100%;
  max-width: 1440px;
  /* コンテンツ幅1260px */
  padding-right: 90px;
  padding-left: 90px;
  margin-right: auto;
  margin-left: auto;
}
.narrow-box {
  width: 100%;
  max-width: 840px;
  margin-right: auto;
  margin-left: auto;
}

/* Tb */
@media print, screen and (max-width: 1080px) {

  .inr-box, .narrow-box {
    padding-left: 3%;
    padding-right: 3%;
  }

}
/* Tb END */


/*------------------------------------------

	ヘッダー固定

------------------------------------------*/
#site-header {
  width: 100%;
  top: -30%;
  left: 0;
  transition: 0.6s;
}

.hed-fix #site-header {
  /* background-color: rgba(255, 255, 255, 0.95); */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}

/*------------------------------------------

	header

------------------------------------------*/
header {
  width: 100%;
  height: 80px;
  padding-left: 1.5%;
  background: rgba(229, 229, 229, 0.5);
}
h1.h_logo {
  width: 300px;
  padding-top: 25px;
  float: left;
}
.gnav li a {
  line-height: 1;
}
.gnav li.h_contact a svg {
  vertical-align: bottom;
}

@media print, screen and (min-width: 1321px) {
  header {
    position: absolute;
    top: 0;
    z-index: 99;
  }

  /* NAVIGATION */
  .gnav {
    float: right;
  }
  .gnav ul {
    height: 80px;
    align-items: center;
    justify-content: flex-end;
  }
  .gnav li {
    margin-left: 20px;
    margin-right: 20px;
  }
  .gnav li a {
    font-size: 1.5rem;
    font-weight: var(--font-weight-mid);
    color: var(--main-color);
    border-bottom: 1px solid transparent;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.3s;
  }
  .gnav li a:hover {
    border-bottom: 1px solid var(--border-color);
  }
  .gnav li.h_contact {
    width: 280px;
    margin-left: 40px;
    margin-right: 0;
  }
  .gnav li.h_contact a {
    display: block;
    color: #fff;
    background: #7e6b5a;
    text-align: center;
    padding-top: 32px;
    padding-bottom: 32px;
    position: relative;
    cursor: pointer;
  }
  .gnav li.h_contact a:hover {
    border-bottom: none;
  }

  .sd-trigger {
    display: none;
  }
}
/*END*/

@media print, screen and (max-width: 1320px) {
  header {
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 3%;
    padding-right: 3%;
    position: relative;
  }
  body.open_sd header {
    z-index: inherit;
  }
  h1.h_logo {
    width: 220px;
    padding-top: 14px;
  }

  /* NAVIGATION */
  .sp_menu_btn {
    float: right;
  }
  .sd-trigger {
    display: block;
    width: 50px;
    height: 50px;
    background: #7e6b5a;
    position: relative;
  }
  .sd-trigger .sp_menu_bg {
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
  }
  .sd-trigger .sp_menu {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  #sd {
    padding-top: 60px;
    background: #7e6b5a;
    z-index: 99 !important;
  }
  .gnav ul {
    flex-direction: column;
  }
  .gnav li {
    margin-bottom: 20px;
  }
  .gnav li a {
    display: block;
    font-size: 1.4rem;
    color: #fff;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.6s;
  }

  .h_contact_bg,
  .icon_contact {
    display: none;
    z-index: 0;
  }
  .gnav li a {
    font-size: 1.3rem;
  }
  .h_contact svg {
    width: 18px;
    height: 12px;
  }
}
/*END*/

@media print, screen and (max-width: 480px) {
  header {
    height: auto;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  h1.h_logo {
    width: 200px;
    padding-top: 13px;
  }
  .sp_menu_btn {
    top: 10px;
  }
  .sd-trigger,
  .sp_menu_bg {
    width: 46px;
    height: 46px;
  }
}
/*END*/

/*------------------------------------------

	footer

------------------------------------------*/
#contact {
  background: url(../images/common/contact_bg.jpg) 0 0 no-repeat;
  background-size: cover;
  position: relative;
}

.page_top {
  width: 24px;
  position: absolute;
  right: 30px;
  bottom: 30px;
  z-index: 1;
}

.contact_mail {
  display: block;
  width: 420px;
  background: #be435d;
  font-size: 2rem;
  color: white;
  text-align: center;
  line-height: 1.2;
  padding-top: 30px;
  padding-bottom: 30px;
}
.contact_mail span {
  font-size: 1.4rem;
}

@media print, screen and (max-width: 480px) {
  .page_top {
    width: 20px;
    right: 4%;
    bottom: 15px;
  }

  #contact p.text_16 {
    font-size: 1.3rem !important;
  }

  .contact_mail {
    width: 70%;
    font-size: 1.8rem;
    padding-top: 25px;
    padding-bottom: 25px;
  }
  .contact_mail span {
    font-size: 1.2rem;
  }
}
/*END*/

footer {
  padding-top: 60px;
  padding-bottom: 50px;
  background: url(../images/common/f_bg.gif);
}
.f_logo {
  display: block;
  width: 300px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  cursor: pointer;
}
footer address {
  font-style: normal;
}
.copyright {
  color: #b7aea0;
}

@media print, screen and (max-width: 480px) {
  footer {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .f_logo {
    width: 220px;
  }
  footer address {
    font-size: 1.2rem;
  }
}
/*END*/

/*------------------------------------------

	table

------------------------------------------*/
.table-basic {
  width: 100%;
}
.table-basic tr {
  display: block;
  width: 100%;
  border-bottom: 1px solid var(--border-color);
}
.table-basic th {
  width: 14em;
  color: var(--main-color);
  letter-spacing: .05em;
  text-align: left;
  padding: 1.4em 3em;
}
.table-basic td {
  width: calc(100% - 14em);
  padding: 1.4em 3em;
}

/* Tb */
@media print, screen and (max-width: 820px) {
  .table-basic th {
    display: block;
    width: 100%;
    padding: 1em 1em 0;
  }
  .table-basic td {
    display: block;
    width: 100%;
    padding: 1em 1em;
  }
}

/* Sm */
@media print, screen and (max-width: 480px) {
  .table-basic th, .table-basic td {
    display: block;
    width: 100%;
  }
  .table-basic th {
    padding: 1.4em 1em 0.3em;
  }
  .table-basic td {
    padding: 0.2em 1em 1.5em;
  }
}


/*------------------------------------------

	見出し

------------------------------------------*/
.hd01 {
  font-size: 2.8rem;
  letter-spacing: 0.1em;
  line-height: 1.2;
}
.hd01 span {
  font-size: 1.6rem;
  font-weight: normal;
  letter-spacing: 0.1em;
}

@media print, screen and (max-width: 820px) {
  .hd01 {
    font-size: 2.2rem;
  }
  .hd01 span {
    font-size: 1.4rem;
  }
}
@media print, screen and (max-width: 480px) {
  .hd01 {
    font-size: 2rem;
  }
  .hd01 span {
    font-size: 1.2rem;
  }
}
/*END*/


/*------------------------------------------

	ボタン

------------------------------------------*/
button.btn01 {
  display: inline-block;
  max-width: 100%;
  background: var(--button-color);
  border: 0;
  padding: 0;
  cursor: pointer;
  transition: .3s;
  overflow: hidden;
}
button.btn01 a {
  display: block;
  color: #fff;
  line-height: 1.4;
  padding: 1.5em 3em;
}

/* PC hover */
@media (hover: hover) {}
/* mobile hover */
@media (hover: none) {}


/*------------------------------------------

	ぱんくずリスト

------------------------------------------*/
ul.breadcrumb {
  padding: 5px 7.5%;
  text-align: right;
  margin-bottom: 15px;
}
ul.breadcrumb li {
  display: inline-block;
  font-size: 1.2rem;
  color: #666;
  margin-right: 2em;
  position: relative;
}
ul.breadcrumb li a {
  display: block;
  color: #666;
  border-bottom: 1px dotted #666;
}
ul.breadcrumb li::after {
  content: url(../images/common/bread_arrow.svg);
  display: block;
  position: absolute;
  top: 50%;
  right: -1.5em;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
ul.breadcrumb li:last-of-type {
  margin-right: 0;
}
ul.breadcrumb li:last-of-type::after {
  content: "";
}

/* Sm */
@media print, screen and (max-width: 480px) {

  ul.breadcrumb {
    padding: 3px 6%;
  }

}
/* Sm END */


/*------------------------------------------

	404ページ

------------------------------------------*/
img.notfound {
  width: min(50%, 260px);
}


/*----------------------------------------

	index.php

----------------------------------------*/

/* MV
------------------------*/
.top-mv {
  width: 100%;
  padding-top: 80px;
  background: url(../images/top/mv_bg.jpg), #93d1f9;
  background-repeat: no-repeat;
  background-size: auto 100%;
}
.top-mv .top-mv-inr {
  width: 100%;
  height: 100%;
  position: relative;
}
.top-mv .top-mv-inr .mv-copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  z-index: 1;
}
.top-mv .mv-copy h2 {
  font-size: clamp(26px, 4.4vw + 1rem, 48px);
  margin-bottom: .4em;
}
.top-mv .mv-copy p {
  font-size: clamp(14px, 2.9vw, 18px);
}

@media print, screen and (min-width: 1321px) {
  .top-mv {
    height: 570px;
    background-position: center center;
  }
}
@media print, screen and (max-width: 1320px) {
  .top-mv {
    height: 470px;
    padding-top: 0;
    background-position: right center;
    background-size: cover;
  }
}
@media print, screen and (max-width: 480px) {
  .top-mv {
    height: 100vh;
    background-position: 67% top;
  }
}
/*END*/


/* 取扱ブランド
------------------------*/
@media print, screen and (max-width: 480px) {
  #top-brands ul h3 {
    line-height: 1.3;
  }
}
/*END*/


/* 事業内容
------------------------*/
#top-business .inr-box {
  padding-left: 3.8%;
  padding-right: 3.8%;
}
#top-business .two-line-list .list-box {
  padding: 20px;
}
#top-business .two-line-list .list-box .img-box {
  width: 36%;
}
#top-business .two-line-list .list-box .txt-box {
  width: 60%;
}

/* Sm */
@media print, screen and (max-width: 480px) {
  #top-business .two-line-list .list-box {
    padding: 15px;
  }
}
/*END*/


/* 私たちの強み
------------------------*/
.strength-list {
  padding-left: 8.6%;
  padding-right: 8.6%;
}
.strength-list li {
  width: 31.3%;
}

/* Sm */
@media print, screen and (max-width: 480px) {
  .strength-list {
    padding: 0;
  }
  .strength-list li {
    width: 100%;
  }
  .strength-list li .img-box {
    width: 30%;
  }
  .strength-list li .txt-box {
    width: 65%;
  }
  .strength-list li .txt-box p {
    font-size: 1.3rem;
  }
}
/*END*/


/* 会員制度
------------------------*/
#top-membership .img-box {
  width: 57%;
}
#top-membership .txt-box {
  width: 40%;
}
#top-membership .txt-box h3 {
  display: inline-block;
  border: 1px solid var(--border-color);
  padding: .7em;
  line-height: 1;
}

/* Sm */
@media print, screen and (max-width: 480px) {
  #top-membership .img-box,
  #top-membership .txt-box {
    width: 100%;
  }
}
/* Sm END */
/*END*/


/* Company
------------------------*/
.table_company {
  width: 100%;
}
.table_company th {
  width: 15em;
  font-weight: normal;
  text-align: left;
  padding: 2em 1em;
  border-bottom: 1px solid #42332c;
}
.table_company td {
  padding: 2em 1em;
  border-bottom: 1px solid #908581;
}

.gmap {
  width: 100%;
  height: 450px;
}

@media print, screen and (max-width: 820px) {
  .gmap {
    height: 300px;
  }
}
/*END*/

@media print, screen and (max-width: 480px) {
  .table_company th,
  .table_company td {
    display: block;
    width: 100%;
  }
  .table_company th {
    color: #42332c;
    font-weight: bold;
    padding: 1.5em 1em 0 1em;
    border-bottom: none;
  }
  .table_company td {
    padding: 0.5em 1em 1.5em 1.5em;
  }
}
/*END*/


/* INFORMATION（閉鎖中）
------------------------*/
.info_wrap {
  width: 100%;
  height: 600px;
  background: #f9f8f8;
  padding: 40px;
  border: 1px solid #f2f1f1;
  overflow-y: scroll;
}
.info_wrap article {
  padding-top: 48px;
  padding-bottom: 40px;
  margin-bottom: 40px;
  border-bottom: 1px dashed #908581;
  position: relative;
}
.info_wrap article .date {
  display: inline-block;
  color: #fff;
  line-height: 1;
  background: #42332c;
  padding: 7px 15px 7px 40px;
  position: absolute;
  left: -40px;
  top: 0;
}
.info_wrap article .article_text {
  color: #666;
}
.info_wrap::-webkit-scrollbar {
  width: 6px;
}
.info_wrap::-webkit-scrollbar-thumb {
  background: #7e6b5a;
}
.info_wrap::-webkit-scrollbar-track {
  background: #f9f8f8;
}

@media print, screen and (max-width: 820px) {
  .info_wrap {
    height: 300px;
  }
}
/*END*/

@media print, screen and (max-width: 480px) {
  .info_wrap {
    height: 250px;
    padding: 5%;
  }
  .info_wrap article {
    padding-top: 38px;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .info_wrap article .date {
    font-size: 1.2rem;
    padding: 5px 12px 5px 20px;
    left: -20px;
  }
  .info_wrap article .article_text {
    font-size: 1.2rem;
  }
}
/*END*/