@charset "UTF-8";
/*------------------------------------------------------------------------
// Base
  ├ reset
  ├ base
  └ form
------------------------------------------------------------------------*/
/*----------------------------------------
	reset
----------------------------------------*/
*,
::before,
::after {
  box-sizing: border-box;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var, b, i, dl, dt, dd, ol, ul, li,
fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, dialog, figure, footer, header, main, menu, nav, section,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

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

span, small, strong, em, b, i {
  color: inherit;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul,
ol {
  list-style: none;
}

img {
  border: 0;
  vertical-align: top;
}

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

caption, th {
  text-align: left;
}

input, select {
  vertical-align: middle;
}

input, textarea {
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

q::before,
q::after {
  display: none;
}

/*----------------------------------------
base
----------------------------------------*/
html {
  scroll-behavior: smooth;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
  font-family: "IBM Plex Sans JP", sans-serif;
  font-size: 1.4em;
  line-height: 1.75;
  color: #4E4E56;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: underline;
  transition: all 0.3s;
}

a:hover {
  opacity: 0.7;
}

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

button {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  display: block;
  width: 100%;
  border: 0;
  font-family: inherit;
  font-weight: inherit;
}

@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 100;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-Thin.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 200;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-ExtraLight.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-Light.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-Regular.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-Medium.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-SemiBold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/ibm-plex-sans-jp/IBMPlexSansJP-Bold.woff') format('woff');
  font-display: swap;
}

/*----------------------------------------
Form Parts
----------------------------------------*/
input[type=text],
input[type=email],
input[type=tel],
input[type=url],
input[type=search],
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  padding: 7px 21px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 30px;
  font-family: inherit;
  font-size: 16px;
  color: #4E4E56;
}

@media screen and (max-width: 767px) {
	.mwform-tel-field input[type=text] {
		padding: 7px 7px;
	}
}



input[type=number],
input[type=password] {
  width: 100%;
  padding: 7px 21px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 22px;
  font-size: 16px;
  color: #4E4E56;
}

textarea {
  min-height: 320px;
  resize: vertical;
  border-radius: 7px !important;
}

input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=url]::-moz-placeholder, input[type=search]::-moz-placeholder, input[type=number]::-moz-placeholder, input[type=password]::-moz-placeholder, textarea::-moz-placeholder {
  color: rgba(33, 33, 33, 0.4);
}

input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
input[type=url]::placeholder,
input[type=search]::placeholder,
input[type=number]::placeholder,
input[type=password]::placeholder,
textarea::placeholder {
  color: rgba(33, 33, 33, 0.4);
}

/* フォーカス時 */
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=url]:focus,
input[type=search]:focus,
textarea:focus,
select:focus,
input[type=number],
input[type=password] {
  outline: none;
  border-color: #4E4E56;
}

/* エラー時 */
.is-error input[type=text],
.is-error input[type=email],
.is-error input[type=tel],
.is-error input[type=url],
.is-error input[type=number],
.is-error input[type=password],
.is-error textarea,
.is-error select,
.is-error .select-wrap {
  color: #CC0000;
  border-color: #CC0000;
}

/* select
--------------------------*/
select {
  cursor: pointer;
}

.select-wrap {
  position: relative;
}

.select-wrap::after {
  position: absolute;
  right: 21px;
  top: 12px;
  margin: auto;
  content: "▼";
  display: block;
}

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

/* radio, checkbox
------------------------------------*/
input[type=radio],
input[type=checkbox] {
  font-size: 16px;
  opacity: 0;
  position: absolute;
}

/* クリック範囲 */
input[type=radio] + span,
input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  margin: 0 2em 0 0;
  padding: 0.3em 0.3em 0.3em 2.5em;
  font-size: 16px;
  line-height: 1;
  vertical-align: middle;
  cursor: pointer;
}

/* フォーカス時 */
input[type=radio]:focus + span::before,
input[type=checkbox]:focus + span::before {
  outline: none;
  border-color: #4E4E56;
}

/* ラジオボタンスタイル */
input[type=radio] + span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #ccc;
  border-radius: 50%;
  line-height: 1;
  background: #fff;
}

/* ラジオボタンチェック印（未選択） */
input[type=radio] + span::after {
  content: "";
  display: none;
}

/* ラジオボタンチェック印（選択） */
input[type=radio]:checked + span::after {
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  width: 1em;
  height: 1em;
  margin: 0;
  padding: 0;
  border-radius: 50%;
  background: #07473E;
  line-height: 1;
}

/* チェックボックススタイル */
input[type=checkbox] + span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 1.5em;
  height: 1.5em;
  border: 1px solid #ccc;
  background: #fff;
  line-height: 1;
  vertical-align: middle;
}

/* チェックボックス未チェック時 */
input[type=checkbox] + span::after {
  content: "";
  display: none;
}

/* チェックボックスチェック時 */
input[type=checkbox]:checked + span::before {
  background: #07473E;
}

input[type=checkbox]:checked + span::after {
  display: block;
  position: absolute;
  top: 0.25em;
  left: 0.5em;
  width: 0.5em;
  height: 1em;
  content: "";
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}

/* ファイルアップロード
------------------------------------*/
input[type=file] {
  width: 100%;
}

::file-selector-button,
::-webkit-file-upload-button {
  cursor: pointer;
  padding: 0.5em 2em;
  border: 1px solid #07473E;
  margin-right: 1em;
  font-weight: 500;
  color: #07473E;
  background: #fff;
}

/*----------------------------------------
	Form Layout
----------------------------------------*/
/* ラベル */
.input-label {
  font-size: 14px;
  font-weight: normal;
  letter-spacing: 0.1em;
}

/* 必須ラベル */
.require {
  color: #CC0000;
}

/*----------------------------------------
	個人情報保護方針チェック
----------------------------------------*/
.privacy-box {
  font-size: 16px;
  margin-top: 50px;
}
@media screen and (min-width: 768px), print {
  .privacy-box {
    margin-left: 180px;
  }
}

.privacy-box__text {
  margin-top: 0.5em;
  padding-left: 2.5em;
}

/*----------------------------------------
	非表示管理
----------------------------------------*/
.mw_wp_form_input #confirm {
	display:none;
}

.mw_wp_form_confirm #input {
	display:none;
}

.mw_wp_form_confirm .privacy-box {
	display:none;
}

.mw_wp_form_confirm .contact-table tr {
	min-height: 44px;
	border-bottom: solid 1px #DDD;
}

.mw_wp_form_confirm .contact-table td {
	padding: 15px 0 15px 3rem !important;
}

@media screen and (max-width: 575px) {
	.mw_wp_form_confirm .contact-table td {
	padding: 0px 0 15px 3rem !important;
}
}

.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}


/*------------------------------------------------------------------------
// Layout
  ├ header
  ├ page-header
  ├ g-nav
  ├ hamburger
  ├ menu
  ├ sp-menu
  ├ footer
  ├ page-top
  ├ breadcrumb
  ├ main-contents
  ├ container
  ├ section
  └ grid
------------------------------------------------------------------------*/
/* header
------------------------------------------------------ */
.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  width: 100%;
  height: 64px;
  background: #fff;
}
@media screen and (min-width: 992px), print {
  .header {
    height: 92px;
  }
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__top {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}
@media screen and (min-width: 992px), print {
  .header__top {
    padding: 20px 0;
  }
}

.header__logo {
  width: min(40vw, 180px);
  margin-left: 18px;
}
@media screen and (min-width: 992px), print {
  .header__logo {
    width: 225px;
    margin-left: 35px;
  }
}

.header__contents {
  display: contents;
}
@media screen and (min-width: 992px), print {
  .header__contents {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 100%;
    gap: 25px;
  }
}

/* オンラインショップ */
.header__online-shop {
  height: 100%;
}

.header__online-shop a {
  min-width: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 5px 10px 10px;
  color: #fff;
  text-decoration: none;
  background: #57817A;
}
@media screen and (min-width: 992px), print {
  .header__online-shop a {
    min-width: 130px;
    padding: 15px 15px 20px;
  }
}
.header__online-shop a::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url("../img/ico_cart.svg") center/contain no-repeat;
}
@media screen and (min-width: 992px), print {
  .header__online-shop a::before {
    width: 40px;
    height: 40px;
  }
}
.header__online-shop a span {
  display: block;
  margin-top: 7px;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  line-height: 1;
}

@media screen and (max-width: 768px) {
.header__online-shop a {
  color: #07473E;
  background: transparent;
}
.header__online-shop a::before {
  width: 36px;
  height: 36px;
  background: url("../img/ico_cart_sp.svg") center/contain no-repeat;
}
.header__online-shop a span {
  display: none;
}
}

/* page-header
------------------------------------------------------ */
.page-header {
  position: relative;
  margin-top: 64px;
}
@media screen and (min-width: 992px), print {
  .page-header {
    margin-top: 92px;
  }
}

.page-header {
  width: 100%;
  height: 120px;
}
@media screen and (min-width: 768px), print {
  .page-header {
    height: 250px;
  }
}

.page-header > img {
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.page-header__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  max-width: 1400px;
  padding: 0 15px;
  margin: 0 auto;
  box-sizing: content-box;
}
@media screen and (min-width: 768px), print {
  .page-header__inner {
    padding: 0 30px;
  }
}

.page-header__title {
  font-size: min(21.3333333333px,5.002vw);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #fff;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(0, 0, 0, 0.37);
}
@media screen and (min-width: 768px), print {
  .page-header__title {
    font-size: 30px;
  }
}

/* g-nav
------------------------------------------------------ */
.g-nav {
  display: none;
}

@media screen and (min-width: 992px), print {
  .g-nav {
    display: block;
  }
  .g-nav__list {
    display: flex;
    margin-top: 14px;
    margin-left: 30px;
  }
  .g-nav__link {
    padding: 1.5em;
    display: block;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1;
    text-decoration: none;
    color: #212121;
  }
  .g-nav__link:hover {
    opacity: 1;
    color: #07473E;
  }
}
/* hamburger
------------------------------------------------------ */
.hamburger {
  position: fixed;
  right: 46px;
  top: 0px;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 63px;
  height: 63px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #07473E;
  cursor: pointer;
  transition: background-color 0.3s;
}

.hamburger__line {
  position: relative;
  width: 30px;
  height: 1px;
  background: #07473E;
}

.hamburger__line::before,
.hamburger__line::after {
  position: absolute;
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: #07473E;
  transition: transform 0.3s;
}

.hamburger__line::before {
  top: -9px;
}

.hamburger__line::after {
  bottom: -9px;
}

.hamburger__txt {
  margin-top: 15px;
  font-size: 10px;
  font-weight: bold;
  display:none;
}

/* 閉じる */
.hamburger[aria-expanded=true] .hamburger__line {
  background: transparent;
}

.hamburger[aria-expanded=true] .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger[aria-expanded=true] .hamburger__line::after {
  bottom: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 992px), print {
  .hamburger {
    display: none;
  }
}
/* menu
------------------------------------------------------ */
.footer a {
	text-decoration: none;
}
.sp-menu__title,
.footer-menu__title {
  position: relative;
  padding: 14px 14px;
  display: block;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
}

.footer-menu__title {
  font-size: 18px !important;
}
@media screen and (min-width: 768px), print {
  .sp-menu__title,
  .footer-menu__title {
    padding: 0 0 0 27px;
  }
  .footer-menu__title {
	font-size: 20px !important;
	}
  .sp-menu__title::before,
  .footer-menu__title::before {
    position: absolute;
    top: 4px;
    left: 0;
    content: "";
    display: block;
    width: 19px;
    height: 19px;
    background: url("../img/ico_circle-arrow_fill.svg") center/contain no-repeat;
  }
  
  .footer-menu__title_under {
	margin-top:3rem !important;
  }
}
.sp-menu__title._arrow::after,
.footer-menu__title._arrow::after {
  position: absolute;
  top: 18px;
  right: 0;
  content: "";
  display: block;
  width: 19px;
  height: 19px;
  background: url("../img/ico_circle-arrow_fill.svg") center/contain no-repeat;
  transform: rotate(90deg);
  transition: all 0.3s;
}
@media screen and (min-width: 768px), print {
  .sp-menu__title._arrow::after,
  .footer-menu__title._arrow::after {
    display: none;
  }
}

.footer-menu__title::before,
.footer-menu__title._arrow::after {
  background-image: url("../img/ico_circle-arrow_outlined.svg");
}

.sp-menu__list,
.footer-menu__list {
  display: none;
  margin-left: 33px;
}
@media screen and (min-width: 768px), print {
  .sp-menu__list,
  .footer-menu__list {
    display: block;
    margin-left: 27px;
  }
}

.sp-menu__link,
.footer-menu__link {
  padding: 11px 0;
  display: block;
  font-size: 15px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-decoration: none;
}

.footer-menu__link {
  font-size: 14px !important;
  line-height: 1.2 !important;
}
@media screen and (min-width: 768px), print {
  .sp-menu__link,
  .footer-menu__link {
    padding: 0;
    display: inline;
  }
}

/* メニューを開いた時 */
.sp-menu__col.is-active .sp-menu__title::after,
.footer-menu__col.is-active .footer-menu__title::after {
  transform: rotate(-90deg);
}

@media screen and (min-width: 768px), print {
  .sp-menu__item,
  .footer-menu__item {
    margin-top: 12px;
  }
  .footer-menu__item {
    margin-top: 10px !important;
  }
  .sp-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto 1fr;
    grid-template-areas: "home quality recruit" "products shop contact" "products company online-shop";
    gap: 30px 40px;
  }
  .sp-menu__col[data-component=home] {
    grid-area: home;
  }
  .sp-menu__col[data-component=products] {
    grid-area: products;
  }
  .sp-menu__col[data-component=service] {
    grid-area: service;
  }
  .sp-menu__col[data-component=quality] {
    grid-area: quality;
  }
  .sp-menu__col[data-component=shop] {
    grid-area: shop;
  }
  .sp-menu__col[data-component=company] {
    grid-area: company;
  }
  .sp-menu__col[data-component=recruit] {
    grid-area: recruit;
  }
  .sp-menu__col[data-component=online-shop] {
    grid-area: online-shop;
  }
  .sp-menu__col[data-component=contact] {
    grid-area: contact;
  }
  .footer-menu__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas: "products shop online-shop" "products company contact";
    gap: 30px 40px;
  }
  .footer-menu__col[data-component=products] {
    grid-area: products;
  }
  .footer-menu__col[data-component=shop] {
    grid-area: shop;
  }
  .footer-menu__col[data-component=service] {
    grid-area: service;
  }
  .footer-menu__col[data-component=company] {
    grid-area: company;
  }
  .footer-menu__col[data-component=online-shop] {
    grid-area: online-shop;
  }
  .footer-menu__col[data-component=contact] {
    grid-area: contact;
  }
  .footer-menu__col[data-component=recruit] {
    grid-area: recruit;
  }
}
@media screen and (min-width: 992px), print {
  .footer-menu__grid {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto 1fr;
    grid-template-areas: "products service company online-shop" "products service company contact" "products shop company contact" "products shop company recruit";
    gap: 30px 60px;
  }
}
/* sp-menu
------------------------------------------------------ */
.sp-menu {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  overflow-x: hidden;
  overflow-y: auto;
  width: 100%;
  height: 100%;
  background: #fff;
  margin-top: 64px;
  padding-bottom: 64px;
}
@media screen and (min-width: 992px), print {
  .sp-menu {
    margin-top: 92px;
    padding-bottom: 92px;
  }
}
.sp-menu__inner {
  padding: 40px 15px 45px;
}
@media screen and (min-width: 768px), print {
  .sp-menu__inner {
    padding: 85px 30px 90px;
  }
}

@media screen and (min-width: 992px), print {
  .sp-menu {
    display: none !important;
  }
}
/* footer
------------------------------------------------------ */
.footer {
  position: relative;
  color: #fff;
  background: #57817A;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 15px 45px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px), print {
  .footer__inner {
    padding: 85px 30px 90px;
  }
}

.footer-bottom {
  padding: 32px 0 45px;
  background: #07473E;
}

.footer-bottom__inner {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 24px;
  padding: 0 15px;
}
@media screen and (min-width: 992px), print {
  .footer-bottom__inner {
    flex-direction: row;
    justify-content: space-between;
    padding: 0 30px;
  }
}

.footer__copyright {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .footer__copyright {
    font-size: 14px;
    text-align: left;
  }
}

/* sns */
.footer__sns {
  display: flex;
  gap: 10px;
}

.footer__sns > li {
  width: 32px;
  height: 32px;
}

/* page-top
------------------------------------------------------ */
.page-top {
  text-align: center;
  padding-top: 30px;
}
@media screen and (min-width: 992px), print {
  .page-top {
    padding-top: 0;
    position: absolute;
    z-index: 1;
    right: 56px;
    top: -17px;
  }
}
.page-top a {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
@media screen and (min-width: 992px), print {
  .page-top a {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #07473E;
  }
  .page-top a:hover {
    opacity: 1;
    background: #012B25;
  }
  .page-top a:hover::before {
    border-color: #fff;
  }
}
.page-top a::before {
  position: absolute;
  left: calc(50% - 6px);
  display: block;
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}
@media screen and (min-width: 992px), print {
  .page-top a::before {
    top: 22px;
    border-color: #07473E;
  }
}
.page-top a span {
  margin-top: 17px;
  display: block;
  font-size: 10px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (min-width: 992px), print {
  .page-top a span {
    display: none;
  }
}

/* breadcrumb
------------------------------------------------------ */
.breadcrumb {
  position: relative;
  max-width: 1400px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px), print {
  .breadcrumb {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.breadcrumb a {
  font-size: 1em;
}
.breadcrumb a[aria-current] {
  text-decoration: none;
}

.breadcrumb__list {
  position: absolute;
  top: 22px;
  line-height: 1.5;
  letter-spacing: 0.1em;
}

.breadcrumb__list > li {
  display: inline;
}
.breadcrumb__list > li:not(:last-child)::after {
  content: ">";
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.breadcrumb a[aria-current=page] {
  pointer-events: none;
}

/* main-contents
------------------------------------------------------ */
.main-contents {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media screen and (min-width: 768px), print {
  .main-contents {
    padding-top: 150px;
    padding-bottom: 150px;
  }
}
.main-contents._home {
  padding-top: 0;
  padding-bottom: 0;
}

/* container
------------------------------------------------------ */
.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: content-box;
}
.container._narrow {
  max-width: 1000px;
}

@media screen and (min-width: 768px), print {
  .container {
    padding-left: 30px;
    padding-right: 30px;
  }
}
/* section
------------------------------------------------------ */
.section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (min-width: 768px), print {
  .section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.section--full {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
}

/* セクション付属リード文 */
.section__lead {
  font-size: 14px;
  letter-spacing: 0.1em;
}
.section__lead + * {
  margin-top: 50px;
}
@media screen and (min-width: 768px), print {
  .section__lead {
    margin-top: 64px !important;
    text-align: center;
  }
  .section__lead + * {
    margin-top: 80px;
  }
}

.tx-copy {
	font-size: 200% !important;
	font-weight: 500 !important;
}

/* grid
------------------------------------------------------ */
.grid {
  display: grid;
  gap: 20px;
}
.grid.pd-card-list {
  gap: 100px 20px;
}
@media screen and (max-width: 575px) {
  .grid.pd-card-list {
    gap: 50px 20px;
  }
}
.grid.page-card-list {
  gap: 70px 60px;
}
@media screen and (max-width: 575px) {
  .grid.page-card-list {
    gap: 50px 20px;
  }
}
.grid.blog-list {
  gap: 70px 30px;
}
@media screen and (max-width: 575px) {
  .grid.blog-list {
    gap: 50px 15px;
  }
}
.grid.pd-category-list {
  gap: 10px;
  margin-top: 60px;
}
.grid.pd-category-list + * {
  margin-top: 60px;
}

/* 4カラム */
@media screen and (max-width: 575px) {
  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 576px), print {
  .grid--4col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .grid--4col {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (min-width: 992px), print {
  .grid--4col {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 3カラム */
@media screen and (max-width: 575px) {
  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 576px), print {
  .grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px), print {
  .grid--3col {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 2カラム */
.grid--2col {
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .grid--2col {
    max-width: none;
    grid-template-columns: repeat(2, 1fr);
  }
}

/*------------------------------------------------------------------------
// Component（general）
  ├ page-title
  ├ page-lead
  ├ btn
  ├ pagination
  ├ tab
  ├ accordion
  ├ table
  └ link
------------------------------------------------------------------------*/
/* page-title
------------------------------------------------------ */
.page-title {
  text-align: center;
}
.page-title + * {
  margin-top: 40px;
}

.page-title__main {
  display: block;
  font-size: min(21.3333333333px,4.802vw);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
}

._home .page-title__main {
  font-size: 30px !important;
  }
  
@media screen and (max-width: 767px) {
	._home .page-title__main {
		font-size: 24px !important;
	}
}

.page-title__sub {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #A8A8A8;
}

@media screen and (min-width: 768px), print {
  .page-title + * {
    margin-top: 80px;
  }
  .page-title__main {
    font-size: 30px;
  }
}
.page-title._home .page-title__main,
.page-title._home .page-title__sub {
  color: #07473E;
}

/* page-lead
------------------------------------------------------ */
.page-lead {
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
}
.page-lead + * {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .page-lead {
    text-align: center;
  }
  .page-lead + * {
    margin-top: 80px;
  }
}

/* page-img
------------------------------------------------------ */
.page-img + * {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .page-img + * {
    margin-top: 80px;
  }
}

/* button
------------------------------------------------------ */
.btn {
  position: relative;
  display: inline-block;
  max-width: 280px;
  width: 100%;
  padding: 20px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #07473E;
  border: 1px solid #07473E;
  background: transparent;
  cursor: pointer;
  transition: all 0.3s;
}
@media screen and (min-width: 768px), print {
  .btn {
    max-width: 420px;
    padding: 30px;
  }
}
.btn::after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #07473E;
  border-right: 2px solid #07473E;
  transform: rotate(45deg);
}
.btn:hover {
  opacity: 1;
  color: #fff;
  background: #07473E;
}
.btn:hover::after {
  border-color: #fff;
}

/* 大ボタン */
.btn--lg {
  max-width: 400px;
}

/* 白ボタン */
.btn--ghost {
  color: #fff;
  border-color: #fff;
}
.btn--ghost::after {
  border-color: #fff;
}
.btn--ghost:hover {
  color: #07473E;
  background: #fff;
}
.btn--ghost:hover::after {
  border-color: #07473E;
}

/* 中央配置ボタン */
.btn-center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 80px;
}
.btn-center > * + * {
  margin-top: 30px;
}
@media screen and (min-width: 768px), print {
  .btn-center {
    flex-direction: row;
    margin-top: 100px;
  }
  .btn-center > * + * {
    margin-top: 0;
    margin-left: 30px;
  }
}

/* pagination
------------------------------------------------------ */
.pagination {
  margin-top: 80px;
}
.pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: min(10.6666666667vw, 40px);
  height: min(10.6666666667vw, 40px);
  margin: 0 5px;
  padding: 0.5em;
  font-size: 14px;
  text-decoration: none;
  color: #07473E;
  border: 1px solid #07473E;
}
.pagination ul.page-numbers {
	border:none;
}
.pagination .page-numbers.current {
  background: #07473E;
  color: #fff;
}
.pagination .page-numbers.dots {
  min-width: 0;
  padding: 0;
  border: none;
}
.pagination .page-numbers:not(.dots):hover {
  opacity: 1;
  color: #fff;
  background: #07473E;
}

.pagination ul.page-numbers:not(.dots):hover {
	opacity: 1;
	color: #07473E;
	 background: #fff;
}

@media screen and (min-width: 768px), print {
  .pagination {
    margin-top: 100px;
  }
  .pagination .page-numbers {
    min-width: 50px;
    height: 50px;
    margin: 0 0.5em;
  }
}
/* page-card
------------------------------------------------------ */
.page-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.page-card__text {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1.5em;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
  text-align: center;
}
.page-card__text::before {
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background: url("../img/ico_circle-arrow_fill.svg") center/contain no-repeat;
  margin-right: 10px;
  margin-top: -2px;
}
@media screen and (max-width: 575px) {
  .page-card__text {
    font-size: min(3.7333333333vw, 14px);
  }
}

/* tab
------------------------------------------------------ */
[role=tabpanel][aria-hidden=true] {
  display: none;
}

/* accordion
------------------------------------------------------ */
.accordion {
  border-bottom: 1px solid #ccc;
}

.accordion__toggle {
  border-top: 1px solid #ccc;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 20px;
  font-weight: normal;
  text-align: left;
  background: none;
  cursor: pointer;
}

.accordion__title {
  flex-grow: 1;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.5;
  color: #333;
}

.accordion__action {
  flex-shrink: 0;
  position: relative;
  display: block;
  width: 15px;
  height: 15px;
  margin-left: auto;
}
.accordion__action::before, .accordion__action::after {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  content: "";
  display: block;
  width: 100%;
  height: 0;
  border-top: 1px solid #212121;
  transition: all 0.3s;
}
.accordion__action::after {
  transform: rotate(90deg);
}
.accordion__toggle[aria-expanded=true] .accordion__action::after {
  border-color: transparent;
}

.accordion__panel {
  display: none;
  padding: 0 20px 24px 20px;
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
}

/* table
------------------------------------------------------ */
.table {
  width: 100%;
}
.table tr {
  height: 65px;
}
.table th {
  padding: 16px 16px 16px 0;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  border-right: 0;
  font-weight: normal;
  line-height: 2.2857142857;
  text-align: left;
  vertical-align: top;
  white-space:nowrap;
}
.table td {
  padding: 16px 0 16px 16px;
  border-top: 1px solid #E2E2E2;
  border-bottom: 1px solid #E2E2E2;
  line-height: 2.2857142857;
  text-align: left;
  vertical-align: top;
}

.recruit table td {
    width: 80% !important;
}

@media screen and (max-width: 767px) {
  .table th {
    width: 30%;
  }
}
/* link
------------------------------------------------------ */
.text-link {
  margin-top: 40px;
}
.text-link a {
  font-size: 15px;
  letter-spacing: 0.075em;
  text-decoration: none;
  color: #07473E;
  vertical-align: middle;
}
.text-link a::before {
  display: inline-block;
  content: "";
  width: 19px;
  height: 19px;
  background: url("../img/ico_circle-arrow_fill.svg") center/contain no-repeat;
  margin-right: 10px;
}
.text-link--right {
  text-align: right;
}

/*------------------------------------------------------------------------
// Component（original）
  ├ info-category
  ├ info-list
  ├ info-tag
  ├ post-header
  ├ post-intro
  ├ post-body
  ├ contact
  ├ banner
  ├ pd-search
  ├ pd-category
  ├ pd-card
  ├ pd-tag
  ├ pd-detail
  ├ pd-cart
  ├ pd-mv
  ├ co-message
  ├ ql-materials
  ├ ql-card
  ├ blog-list
  ├ blog-category
  ├ blog-search
  ├ recruit
  ├ staff-card
  ├ staff-head
  ├ staff-body
  ├ staff-column
  ├ staff-ph
  ├ top-slider
  ├ products
  ├ shop
  ├ online-shop
  └ quality
------------------------------------------------------------------------*/
/* info-category
------------------------------------------------------ */
.info-category__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.info-category__item {
  border: 1px solid #57817A;
}
.info-category__item:not(:first-child) {
  border-left: none;
}

.info-category__link {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  padding: 15px 30px 15px 15px;
  font-size: 12px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  color: #07473E;
}
@media screen and (min-width: 768px), print {
  .info-category__link {
    padding: 30px;
    font-size: 15px;
  }
}

.info-category__link::after {
  position: absolute;
  right: 15px;
  top: calc(50% - 4px);
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #07473E;
  border-right: 2px solid #07473E;
  transform: rotate(45deg);
}
.info-category__link:hover {
  opacity: 1;
}

@media screen and (max-width: 767px) {
	.info-category__link {
		font-size: 12px;
		padding: 15px 20px 15px 5px;
	}
	.info-category__link::after {
		right: 10px;
		border-top: 1px solid #07473E;
		border-right: 1px solid #07473E;
	}
}

.info-category__link[aria-current=page], .info-category__link[aria-selected=true] {
  pointer-events: none;
  color: #fff;
  background: #07473E;
}
.info-category__link[aria-current=page]::after, .info-category__link[aria-selected=true]::after {
  border-color: #fff;
}

/* お知らせ・イベント情報一覧
------------------------------------------------------ */
.info-list {
  margin-top: 25px;
}
@media screen and (min-width: 768px), print {
  .info-list {
    margin-top: 55px;
  }
}

.info-list__item {
  padding: 25px 0;
  border-bottom: 1px dashed #999;
}

.info-list__body {
  max-width: 1080px;
  margin: 0 auto;
}

.info-list__date {
  margin-left: 25px;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
  color: #666;
}

.info-list__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 15px;
  font-size: 15px;
  letter-spacing: 0.075em;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .info-list__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    overflow: hidden;
  }
}
.info-list__title a {
  text-decoration: none;
}

/* info-tag
------------------------------------------------------ */
.info-tag {
  display: inline-block;
  min-width: 76px;
  padding: 9px 13px 6px;
  font-size: 13px;
  letter-spacing: -0.025em;
  line-height: 1;
  text-align: center;
  color: #fff;
  background: #07473E;
}
.info-tag--news {
  background: #5AA075;
}
.info-tag--media {
  background: #C9A236;
}
.info-tag--event {
  background: #9D5F9D;
}

/* 投稿記事ヘッダー
------------------------------------------------------ */
.post-header + * {
  margin-top: 40px !important;
}
@media screen and (min-width: 768px), print {
  .post-header + * {
    margin-top: 64px !important;
  }
}

.post-header__date {
  margin-left: 22px;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #666;
}

.post-header__title {
  margin-top: 22px;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .post-header__title {
    font-size: 32px;
  }
}

/* 投稿記事導入
------------------------------------------------------ */
.post-intro__eycatch img {
  max-width: none;
  width: 100%;
  height: auto;
}

/* 投稿記事本文エリア
------------------------------------------------------ */
.post-body {
  margin-top: 32px;
}
@media screen and (min-width: 768px), print {
  .post-body {
    margin-top: 64px;
  }
}
.post-body::after {
  content: "";
  display: block;
  clear: both;
}
.post-body > *:not(h2, h3, h4, h5, h6) {
  margin-top: 2.2857142857em;
  line-height: 2.2857142857;
}

@media screen and (max-width: 768px) {
.post-body > *:not(h2, h3, h4, h5, h6) {
  line-height: 2.0857142857;
}
}

.post-body > * {
  letter-spacing: 0.1em;
}
.post-body > img {
  margin-top: 32px;
}
.post-body > img + * {
  margin-top: 32px;
}
@media screen and (min-width: 768px), print {
  .post-body > img {
    margin-top: 64px;
  }
  .post-body > img + * {
    margin-top: 64px;
  }
}
.post-body h2 {
  margin-top: 40px;
  padding-bottom: 5px;
  border-bottom: 2px solid #07473E;
  font-size: 24px;
  color: #333;
}
.post-body h2 + * {
  margin-top: 25px;
}
@media screen and (min-width: 768px), print {
  .post-body h2 {
    margin-top: 64px;
    font-size: 30px;
  }
  .post-body h2 + * {
    margin-top: 40px;
  }
}
.post-body h3 {
  margin-top: 30px;
  padding-left: 20px;
  border-left: 4px solid #07473E;
  font-size: 20px;
  color: #333;
}
.post-body h3 + * {
  margin-top: 20px;
}
@media screen and (min-width: 768px), print {
  .post-body h3 {
    margin-top: 40px;
    font-size: 24px;
  }
  .post-body h3 + * {
    margin-top: 30px;
  }
}
.post-body h4 {
  margin-top: 30px;
  color: #07473E;
  font-size: 18px;
}
.post-body h4 + * {
  margin-top: 15px;
}
@media screen and (min-width: 768px), print {
  .post-body h4 {
    margin-top: 40px;
    font-size: 20px;
  }
  .post-body h4 + * {
    margin-top: 20px;
  }
}
.post-body h5 {
  margin-top: 30px;
}
.post-body h5 + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .post-body h5 {
    margin-top: 30px;
    font-size: 18px;
  }
  .post-body h5 + * {
    margin-top: 15px;
  }
}
.post-body h6 {
  margin-top: 30px;
  color: #666;
}
.post-body h6 + * {
  margin-top: 10px;
}
@media screen and (min-width: 768px), print {
  .post-body h6 {
    margin-top: 30px;
    font-size: 16px;
  }
  .post-body h6 + * {
    margin-top: 10px;
  }
}
.post-body strong {
  font-size: 1.1428571429em;
  font-weight: 600;
}
.post-body ul > li {
  margin-top: 1.5em;
  position: relative;
  padding-left: 1.5em;
  line-height: 1.5;
}
.post-body ul > li::before {
  position: absolute;
  left: 0.5em;
  top: 0.5em;
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #07473E;
}
.post-body ol > li {
  margin-top: 1.5em;
  margin-left: 1.5em;
  list-style-type: decimal;
  line-height: 1.5;
}
.post-body table {
  width: 100%;
}
.post-body table th {
  padding: 20px;
  border: 1px solid #07473E;
  background: #F2F5EC;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
}
.post-body table td {
  padding: 20px;
  border: 1px solid #07473E;
  background: #fff;
  text-align: left;
  vertical-align: middle;
}
.post-body img.alignnone,
.post-body img.alignleft,
.post-body img.alignright,
.post-body img.aligncenter {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .post-body img.alignnone {
    margin-left: 0;
  }
  .post-body img.alignleft {
    float: left;
    max-width: 380px;
    margin-right: 20px;
    margin-bottom: 10px;
  }
  .post-body img.alignright {
    float: right;
    max-width: 380px;
    margin-left: 10px;
    margin-bottom: 10px;
  }
}

/* お問い合わせフォーム
------------------------------------------------------ */
.contact-table {
  width: 100%;
}

.contact-table tr {
  height: 44px;
}

.contact-table th {
  width: 180px;
  padding: 15px 0 !important;
  line-height: 44px;
  vertical-align: top;
  border: none !important;
  background: #fff !important;
}

.contact-table td {
  padding: 15px 0 !important;
  vertical-align: top;
  border: none !important;
  background: #fff !important;
}

@media screen and (max-width: 767px) {
	.contact-table td {
		padding: 0 0 15px 0 !important;
		}
}

.contact-table tr:first-child th,
.contact-table tr:first-child td {
  padding-top: 0;
}

.contact-table tr:last-child th,
.contact-table tr:last-child td {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .contact-table,
  .contact-table tbody,
  .contact-table tr,
  .contact-table th,
  .contact-table td {
    display: block;
  }
  .contact-table tr {
    height: auto;
  }
  .contact-table th {
    width: 100%;
    padding: 15px 0 0 0;
    line-height: initial;
  }
  .contact-table td {
    padding: 10px 0 15px 0;
  }
  .contact-table tr:first-child td {
    padding-top: 10px;
  }
}
/* banner
------------------------------------------------------ */
/* 商品バナー */
.pd-banner-list + * {
  margin-top: 80px;
}
@media screen and (min-width: 768px), print {
  .pd-banner-list + * {
    margin-top: 100px;
  }
}

/* カタログバナー */
.catalog-banner-list {
  margin-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px), print {
  .catalog-banner-list {
    margin-top: 150px;
  }
}

.catalog-banner {
  max-width: 720px;
}

/* 採用情報バナー */
.rct-banner-list {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
@media screen and (min-width: 768px), print {
  .rct-banner-list {
    margin-top: 100px;
  }
}
.rct-banner-list + * {
  margin-top: 80px;
}
@media screen and (min-width: 768px), print {
  .rct-banner-list + * {
    margin-top: 100px;
  }
}

/* 検索フォーム
------------------------------------------------------ */
/* 検索フォーム共通 */
.search-wrap {
  display: flex;
  align-self: center;
  gap: 10px;
  max-width: 615px;
  margin: 0 auto;
}

.search-wrap input[type=search] {
  font-size: 16px;
  padding: 10px 20px;
  line-height: 1.5;
}

.btn-search {
  line-height: 1;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-search:hover {
  opacity: 0.7;
}

/* 商品一覧ページのスタイル */
.pd-search + * {
  margin-top: 80px;
}
@media screen and (min-width: 768px), print {
  .pd-search + * {
    margin-top: 100px;
  }
}

.pd-search__form {
  padding: 13px 15px;
  background: #07473E;
}
.pd-search__form + * {
  margin-top: 18px !important;
}

.pd-search .search-wrap input[type=search] {
  padding: 5px 20px;
  background: #FFFBE6;
  border: none;
}

/* 商品カテゴリ
------------------------------------------------------ */
.pd-category {
  display: flex;
  align-items: center;
  padding: 20px 10px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.6);
}
@media screen and (max-width: 575px) {
  .pd-category {
    flex-direction: column;
    gap: 20px;
    height: 100%;
  }
}

.pd-category__thumb {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
}
.pd-category__thumb img {
  mix-blend-mode: multiply;
}

.pd-category-title {
  flex-grow: 1;
  text-align: center;
}

.pd-category-title__main {
  display: block;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #333;
  transition: all 0.3s;
}
@media screen and (max-width: 575px) {
  .pd-category-title__main {
    font-size: 16px;
  }
}
@media screen and (min-width: 768px), print {
  .pd-category-title__main {
    font-size: min(1.8vw, 18px);
  }
}

.pd-category-title__sub {
  margin-top: 5px;
  display: block;
  font-size: 14px;
  letter-spacing: 0.025em;
  color: rgba(51, 51, 51, 0.5);
  transition: all 0.3s;
}
@media screen and (min-width: 768px), print {
  .pd-category-title__sub {
    font-size: min(1.4vw, 14px);
  }
}

.pd-category:hover {
  opacity: 1;
  background: #fff;
}
.pd-category:hover .pd-category-title__main,
.pd-category:hover .pd-category-title__sub {
  color: #07473E;
}

/* 商品カード
------------------------------------------------------ */
.pd-card {
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
}

.pd-card__link {
  order: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 247px;
  padding: 8px;
  border-radius: 8px;
  background: #F8F8F4;
}
@media screen and (max-width: 575px) {
  .pd-card__link {
    height: auto;
    aspect-ratio: 285/247;
  }
}

.pd-card__thumb {
  max-width: 168px;
  aspect-ratio: 1/1;
}
.pd-card__thumb > img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  mix-blend-mode: darken;
  transition: all 0.3s;
}

.pd-card__link:hover .pd-card__thumb img {
  transform: scale(1.1);
}

.pd-card__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 30px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
}

.pd-card__text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  max-width: 225px;
  margin: 11px auto 0;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.7142857143;
  text-align: center;
}

/* pd-tag
------------------------------------------------------ */
.pd-tag-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.pd-tag > a {
  display: inline-block;
  padding: 6px 12px;
  border: 1px solid #07473E;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #07473E;
  background: #fff;
}
.pd-tag > a:hover {
  opacity: 1;
  color: #fff;
  background: #07473E;
}

.pd-tag > a[aria-current=page] {
  /*pointer-events: none;*/
  color: #fff;
  background: #07473E;
}

/* 商品詳細レイアウト
------------------------------------------------------ */
.pd-detail {
  display: flex;
  flex-direction: column-reverse;
  gap: 30px;
}
@media screen and (min-width: 768px), print {
  .pd-detail {
    display: flex;
    flex-direction: row-reverse;
  }
}
@media screen and (min-width: 992px), print {
  .pd-detail {
    gap: 80px;
  }
}
.pd-detail + * {
  margin-top: 80px !important;
}
@media screen and (min-width: 768px), print {
  .pd-detail + * {
    margin-top: 100px !important;
  }
}

.pd-detail__youtube {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}
.pd-detail__youtube iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: auto;
}

.pd-detail__info {
  margin-top: 80px;
}

@media screen and (min-width: 768px), print {
  .pd-detail__ph {
    width: 50%;
  }
  .pd-detail__cart {
    flex-grow: 1;
    width: 50%;
  }
  .pd-detail__info {
    margin-top: 100px;
  }
}
/* 商品説明エリア
------------------------------------------------------ */
.pd-cart__head {
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
}

.pd-cart__title {
  margin-top: 1.5em;
  font-size: 28px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
}
@media screen and (min-width: 768px), print {
  .pd-cart__title {
    font-size: 36px;
  }
}

.pd-cart__text {
  margin-top: 5px;
  font-size: 14px;
  letter-spacing: 0.1em;
  line-height: 1.5;
}
@media screen and (min-width: 768px), print {
  .pd-cart__text {
    font-size: 18px;
  }
}

.pd-cart__body {
  margin: 40px 0 60px;
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
}

.pd-cart__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}

@media screen and (min-width: 768px), print {
  .pd-cart__btn {
    justify-content: flex-start;
  }
}

.pd-cart__shop {
  font-weight: bold;
}

.pd-cart__btnlist {
  display: flex;
  /* justify-content: center; */
  align-items: center;
  gap: 15px; /* Adjust spacing between buttons as needed */
  padding: 10px 0 20px 0;
}

.pd-cart__btnlist ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap; /* Allows wrapping on smaller screens */
  gap: 15px; /* Spacing for the list items */
}

.pd-cart__btnlist li {
  flex: 1 1 30%; /* Flex-grow, flex-shrink, flex-basis */
  max-width: 165px; /* Optional: Set a max width for larger screens */
  text-align: center;
}

.pd-cart__btnlist img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 768px) {
  .pd-cart__btnlist ul {
    justify-content: left; /* 中央寄せに変更 */
  }

  .pd-cart__btnlist li {
    flex: 1 1 calc(50% - 10px); /* 2列にするため50%に変更 */
    max-width: 45%; /* スマホでの最大幅を調整 */
  }
}

/* 商品メイン写真
------------------------------------------------------ */
.pd-mv__main {
  width: 100%;
  padding: 15px;
  aspect-ratio: 1/1;
}
.pd-mv__main img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.pd-mv__thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.pd-mv__thumbs li {
  width: calc((100% - 30px) / 4);
}
.pd-mv__thumbs a {
  display: block;
  aspect-ratio: 1/1;
}
.pd-mv__thumbs img {
  /*height: 100%;*/
  -o-object-fit: cover;
     object-fit: cover;
}

/* co-message
------------------------------------------------------ */
.co-message__signature {
  margin-top: 40px;
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: right;
}
.co-message__signature span {
  margin-top: 10px;
  display: block;
  font-size: 1.25em;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .co-message__signature {
    margin-top: 80px;
  }
  .co-message__signature span {
    font-size: 1.975em;
  }
}

/* ql-materials
------------------------------------------------------ */
.ql-materials__list {
  display: grid;
  gap: 60px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .ql-materials__list {
    max-width: none;
    gap: 80px 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.ql-materials__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #333;
  padding-bottom: 9px;
  border-bottom: 1px solid #E2E2E2;
}
.ql-materials__title + * {
  margin-top: 40px;
}

/* ql-card
------------------------------------------------------ */
.ql-card {
  display: flex;
  flex-direction: column;
}

.ql-card__thumb {
  order: -1;
}

.ql-card__title {
  margin-top: 2em;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.875;
}

.ql-card__text {
  letter-spacing: 0.1em;
  line-height: 2.1428571429;
}

/* ブログ一覧
------------------------------------------------------ */
.blog-list {
  margin-top: 80px !important;
}

.blog-list__item {
  display: flex;
  flex-direction: column-reverse;
  justify-content: flex-end;
}

.blog-list__body {
  margin-top: 24px;
}

.blog-list__date {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
}

.blog-list__title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-top: 12px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.075em;
  color: #333;
}
.blog-list__title a {
  text-decoration: none;
}
@media screen and (max-width: 575px) {
  .blog-list__title {
    margin-top: 0;
  }
}

.blog-list__cat {
  margin-top: 12px;
}

.blog-list__thumb {
  border-radius: 10px;
  aspect-ratio: 314/182;
}
.blog-list__thumb img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-list__thumb a img {
  border-radius: 10px;
}

/* blog-category
------------------------------------------------------ */
.blog-category-list {
  margin-top: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.blog-category > a {
  display: inline-block;
  padding: 6px 13px;
  border: 1px solid #07473E;
  border-radius: 14px;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  color: #07473E;
  background: #fff;
}
@media screen and (max-width: 575px) {
  .blog-category > a {
    font-size: 11px;
  }
}
.blog-category > a:hover {
  opacity: 1;
  color: #fff;
  background: #07473E;
}

.blog-category > a[aria-current=page] {
  color: #fff;
  background: #07473E;
}

/* blog-search
------------------------------------------------------ */
.blog-search {
  margin-top: 80px;
  padding: 38px 15px 45px;
  border-radius: 10px;
  background: #F2F5EC;
}
@media screen and (min-width: 768px), print {
  .blog-search {
    margin-top: 100px;
  }
}

.blog-search__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  color: #333;
}
.blog-search__title + * {
  margin-top: 24px;
}

/* recruit
------------------------------------------------------ */
.recruit + .recruit {
  margin-top: 80px;
}
@media screen and (min-width: 768px), print {
  .recruit + .recruit {
    margin-top: 100px;
  }
}

.recruit__title {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: #07473E;
}
.recruit__title + * {
  margin-top: 24px;
}

/* staff-card
------------------------------------------------------ */
.staff-card-list {
  display: grid;
  gap: 30px;
  padding: 30px;
  max-width: 375px;
  margin-left: auto;
  margin-right: auto;
  background: #03785E;
}
@media screen and (min-width: 576px), print {
  .staff-card-list {
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
    /*grid-template-rows: repeat(2, 1fr);*/
  }
}
@media screen and (min-width: 992px), print {
  .staff-card-list {
    gap: 50px;
    padding: 50px;
  }
}

.staff-card {
  display: flex;
  flex-direction: column;
  padding: 30px 30px 20px;
  background: #fff;
}
@media screen and (min-width: 992px), print {
  .staff-card {
    padding: 50px 50px 45px;
  }
}

.staff-card__thumb {
  order: -1;
}
.staff-card__thumb img {
  width: 100%;
  height: 100%;
  aspect-ratio: 325/385;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-card__title {
  margin-top: 36px;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #07473E;
}
.staff-card__title span {
  display: block;
}
@media screen and (min-width: 992px), print {
  .staff-card__title {
    font-size: 20px;
  }
}

.staff-card__text {
  flex-grow: 1;
  margin-top: 6px;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
}

.staff-card__btn {
  margin-top: 36px;
}

/* インタビュー詳細投稿ヘッダー
------------------------------------------------------ */
.staff-header {
  display: flex;
  flex-direction: column-reverse;
  color: #fff;
  background: #03785E;
}
@media screen and (min-width: 768px), print {
  .staff-header {
    flex-direction: row-reverse;
  }
}
.staff-header + * {
  margin-top: 50px !important;
}
@media screen and (min-width: 768px), print {
  .staff-header + * {
    margin-top: 100px !important;
  }
}

.staff-header__eyecatch {
  aspect-ratio: 500/550;
}
.staff-header__eyecatch img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.staff-header__body {
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.staff-header__title {
  max-width: 340px;
  width: 100%;
  padding-bottom: 16px;
  border-bottom: 1px solid;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .staff-header__title {
    font-size: 24px;
  }
}
.staff-header__title span {
  display: block;
}

.staff-header__text {
  max-width: 340px;
  width: 100%;
  margin-top: 16px;
  letter-spacing: 0.1em;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .staff-header__body,
  .staff-header__eyecatch {
    width: 50%;
  }
}
/* インタビュー投稿記事本文エリア
------------------------------------------------------ */
.staff-body {
  max-width: 715px;
  margin-top: 50px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .staff-body {
    margin-top: 100px;
  }
}
.staff-body::after {
  content: "";
  display: block;
  clear: both;
}
.staff-body > *:not(h2) {
  margin-top: 2.2857142857em;
  line-height: 2.2857142857;
}
.staff-body > * {
  letter-spacing: 0.1em;
}
.staff-body > img {
  margin-top: 40px;
}
.staff-body > img + * {
  margin-top: 40px;
}
@media screen and (min-width: 768px), print {
  .staff-body > img {
    margin-top: 80px;
  }
  .staff-body > img + * {
    margin-top: 80px;
  }
}
.staff-body h2 {
  position: relative;
  margin-top: 40px;
  padding-left: 78px;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.05em;
  color: #11775F;
}
@media screen and (min-width: 768px), print {
  .staff-body h2 {
    margin-top: 80px;
    font-size: 24px;
  }
}
.staff-body h2::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-26px);
  content: "";
  width: 66px;
  height: 51px;
  background: url("../img/ico_q.png") center/contain no-repeat;
}
.staff-body h2 + * {
  margin-top: 20px;
}
.staff-body img {
  display: block;
  max-width: 100%;
  width: auto;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}

/* インタビューコラム
------------------------------------------------------ */
.staff-column {
  max-width: 745px;
  margin: 80px auto;
  padding-top: 80px;
  border-top: 2px solid #11775F;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 576px), print {
  .staff-column {
    flex-direction: row;
    align-items: flex-start;
  }
}

.staff-column__body {
  display: contents;
}
@media screen and (min-width: 576px), print {
  .staff-column__body {
    max-width: 300px;
    display: block;
  }
}

.staff-column__title {
  padding-left: 30px;
}
@media screen and (min-width: 576px), print {
  .staff-column__title {
    padding-left: 0;
  }
}

.staff-column__text {
  order: 3;
  letter-spacing: 0.1em;
  line-height: 2.2857142857;
}
@media screen and (min-width: 576px), print {
  .staff-column__text {
    margin-top: 16px;
  }
}

.staff-column__img {
  width: min(54.4vw, 204px);
  height: min(54.4vw, 204px);
  border-radius: 50%;
}
@media screen and (min-width: 576px), print {
  .staff-column__img {
    margin-top: 32px;
  }
}
.staff-column__img img {
  border-radius: inherit;
}

/* インタビュー写真エリア
------------------------------------------------------ */
.staff-ph {
  max-width: 858px;
  margin-top: 80px;
  margin-left: auto;
  margin-right: auto;
}

/* top-slider
------------------------------------------------------ */
.top-slider {
  position: relative;
  z-index: 1;
}

.top-slider__item {
  width: 100%;
  aspect-ratio: 1920/960;
  background-position: center;
  background-size: cover;
}

.top {
  margin-top: 64px;
}
@media screen and (min-width: 992px), print {
  .top {
    margin-top: 92px;
  }
}

/* トップページの商品レイアウト
------------------------------------------------------ */
.products {
  padding-top: 0;
  padding-bottom: 0;
}

.products__head {
  padding-top: 64px;
  padding-bottom: 64px;
}

.products__body {
  padding-top: 80px;
  padding-bottom: 80px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  /*background: url("../img/bg_products.jpg") center/cover;*/
  background:#F4F4F4;
}

/* shop
------------------------------------------------------ */
.shop__list {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 80px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .shop__list {
    flex-direction: row;
    max-width: 100%;
    gap: 40px;
  }
  ._narrow .shop__list {
    gap: 75px;
  }
}

.shop__item {
  max-width: 550px;
}

@media screen and (min-width: 768px), print {
.shop__item {
  max-width: 550px;
  width:50%;
}
}

.shop-box {
  display: flex;
  flex-direction: column-reverse;
  gap: 32px;
  height: 100%;
}
@media screen and (min-width: 768px), print {
  .shop-box {
    gap: 48px;
  }
}

.shop-box__body {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.shop-box__title {
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: center;
  color: #333;
}
@media screen and (min-width: 768px), print {
  .shop-box__title {
    font-size: 22px;
  }
}

.shop-box__text {
  margin-top: 20px;
  flex-grow: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px), print {
  .shop-box__text {
    margin-top: 26px;
  }
}

.shop-box__btn {
  margin-top: 32px;
}

/* online-shop
------------------------------------------------------ */
.online-shop {
  display: flex;
  flex-direction: column-reverse;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px), print {
  .online-shop {
    flex-direction: row-reverse;
  }
}

.online-shop__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 15px;
  color: #fff;
  background: #57817A;
}
@media screen and (min-width: 768px), print {
  .online-shop__body {
    padding: 80px 30px;
  }
}

.online-shop__title {
  font-size: 24px;
  font-weight: normal;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (min-width: 768px), print {
  .online-shop__title {
    font-size: 24px;
  }
}
@media screen and (min-width: 1400px), print {
  .online-shop__title {
    font-size: 24px;
  }
  .online-shop__title br {
    display: none;
  }
}

.online-shop__text {
  margin-top: 28px;
  letter-spacing: 0.1em;
  line-height: 2;
  text-align: center;
}

.online-shop__btn {
  width: 100%;
  margin-top: 40px;
}

.online-shop__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px), print {
  .online-shop__body,
  .online-shop__thumb {
    width: 50%;
  }
}
/* トップページのqualityレイアウト
------------------------------------------------------ */
.quality {
  background: #F4F4F4;
}

.quality-box {
  display: flex;
  flex-direction: column-reverse;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 768px), print {
  .quality-box {
    flex-direction: row;
    align-items: center;
    max-width: 100%;
  }
}
.quality-box + .quality-box {
  margin-top: 35px;
}
@media screen and (min-width: 768px), print {
  .quality-box + .quality-box {
    margin-top: 70px;
  }
}

.quality-box__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px;
}

.quality-box__content {
  max-width: 400px;
}

.quality-box__text {
  font-size: 15px;
  line-height: 1.8666666667;
  letter-spacing: 0.075em;
}

.quality-box__link {
  margin-top: 20px;
}
@media screen and (min-width: 768px), print {
  .quality-box__link {
    margin-top: 40px;
  }
}

@media screen and (min-width: 768px), print {
  .quality-box__body,
  .quality-box__thumb {
    width: 50%;
  }
  .quality__body {
    padding: 30px 60px 30px 30px;
  }
  /* 反転のレイアウト */
  .quality-box._revers {
    flex-direction: row-reverse;
  }
  .quality-box._revers .quality-box__body {
    padding: 30px 30px 30px 60px;
  }
}
/*------------------------------------------------------------------------
// Utilities
------------------------------------------------------------------------*/
/* スクリーンリーダーから隠す */
.visually-hidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  margin: -1px;
}/*# sourceMappingURL=common.css.map */


/*------------------------------------------------------------------------
// additional
------------------------------------------------------------------------*/
.tx-missionstatement {
	font-size:214% !important;
	text-align:center;
}

@media screen and (max-width: 768px) {
	.tx-missionstatement {
		font-size:160% !important;
	}
}