@charset "UTF-8";
/*---------------------------------
  Basic
---------------------------------*/
body {
	color: #333;
  font-family: "Roboto", "Noto Sans JP", 游ゴシック, YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Verdana, sans-serif;
  font-size: clamp(14px, 2vw, 16px);
  font-weight: 500;
	line-height: 1.8em;
  letter-spacing: 0.05em;
	margin: 0;
	padding: 0;
  position: relative;
}

h1,h2,h3,h4,h5 {
  letter-spacing: 0.1em;
	margin: 0;
	padding: 0;
}

img {
	width: 100%;
	border: 0;
	vertical-align: bottom;
  display: block;
}

p,ul,li,dl,dt,dd,th,td {
	margin: 0;
	padding: 0;
}

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

i {
	vertical-align: middle;
}

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

*,
*::before,
*::after {
	box-sizing: border-box;
}

::selection {
	background: #dfe1e5;
}

::-moz-selection {
	background: #dfe1e5;
}

@media print, screen and (max-width: 834px) {
  body {
		min-width: 300px;
	}
}

/*---------------------------------
  Link
---------------------------------*/
a:link, a:visited, a:hover, a:active {
	color: #333;
	text-decoration: none;
}

.btn {
	max-width: 300px;
	height: 60px;
	line-height: 60px;
	color: #fff !important;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.1em;
	border-radius: 3px;
	padding: 0 2em;
	display: block;
	position: relative;
}

.btn_forward::after {
	content: "\f105";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_forward:hover::after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_back::after {
	content: "\f104";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	left: 1.5em;
}

.btn_back:hover::after {
	left: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

.btn_blank {
  border: solid 1px #fff;
  margin: 2em auto 0 auto;
}

.btn_blank::after {
	content: "\f08e";
	font-family: 'Font Awesome 5 Free';
	position: absolute;
	right: 1.5em;
}

.btn_blank:hover::after {
	right: 1.3em;
	opacity: 0.8;
	transition: 0.3s;
}

/*---------------------------------
  Common
---------------------------------*/
.contents_wrap {
  margin-top: 10em;
}

.wrapper {
	max-width: 1240px;
	margin: 0 auto;
	padding: 0 1em;
}

.contents_wrap h2 {
  font-size: clamp(18px, 3vw, 32px);
  text-align: center;
  margin-bottom: 3em;
  padding: 50px 0;
  position: relative;
  z-index: 1;
}

.contents_wrap h2::before {
  content: '';
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background-image: radial-gradient(circle at 100% 150%, #edf2f9 24%, #fff 24%, #fff 28%, #edf2f9 28%, #edf2f9 36%, #fff 36%, #fff 40%, transparent 40%, transparent),
  radial-gradient(circle at 0    150%, #edf2f9 24%, #fff 24%, #fff 28%, #edf2f9 28%, #edf2f9 36%, #fff 36%, #fff 40%, transparent 40%, transparent),
  radial-gradient(circle at 50%  100%, #fff 10%, #edf2f9 10%, #edf2f9 23%, #fff 23%, #fff 30%, #edf2f9 30%, #edf2f9 43%, #fff 43%, #fff 50%, #edf2f9 50%, #edf2f9 63%, #fff 63%, #fff 71%, transparent 71%, transparent),
  radial-gradient(circle at 100% 50%, #fff 5%, #edf2f9 5%, #edf2f9 15%, #fff 15%, #fff 20%, #edf2f9 20%, #edf2f9 29%, #fff 29%, #fff 34%, #edf2f9 34%, #edf2f9 44%, #fff 44%, #fff 49%, transparent 49%, transparent),
  radial-gradient(circle at 0    50%,#fff 5%, #edf2f9 5%, #edf2f9 15%, #fff 15%, #fff 20%, #edf2f9 20%, #edf2f9 29%, #fff 29%, #fff 34%, #edf2f9 34%, #edf2f9 44%, #fff 44%, #fff 49%, transparent 49%, transparent);
  background-size: 50px 25px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.contents_wrap h2 ruby rt {
  font-size: clamp(10px, 2vw, 12px);
  letter-spacing: normal;
  transform: translateY(-0.5em);
  margin-bottom: 0.5em;
}

.text_box p:nth-child(n+2) {
  margin-top: 1em;
}

@media print, screen and (max-width: 834px) {
  .contents_wrap {
    margin-top: 5em;
  }
  
  .wrapper {
    padding: 0 6%;
  }
  
  .contents_wrap h2 {
    padding: 30px 0;
  }
  
  .contents_wrap h2::before {
    width: 80px;
    height: 80px;
    background-size: 40px 20px;
  }
}

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

  Header

---------------------------------*/
header {
  background: #221815;
}

.header_content {
  height: 250px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  position: relative;
}

.header_content:before {
  content: '';
  width: 100%;
  height: 90px;
  background: url("images/bg_header.png");
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
}

.header_content h1 img {
  width: 400px;
  height: 147px;
  display: block;
  position: relative;
  margin-bottom: 0.5em;
  z-index: 1;
}

.corpolate_link_box {
  max-width: 300px;
  margin-left: auto;
}

.corpolate_link_box a {
  color: #fff !important;
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
  border-radius: 0 0 0.5em 0.5em;
  background: #b4253d;
  display: block;
  position: relative;
  margin-right: 6%;
  padding: 1em 2em;
}

.corpolate_link_box a:hover {
  opacity: 0.8;
  transition: 0.3s;
}

.corpolate_link_box a i {
  vertical-align: baseline;
  margin-left: 0.5em;
}

@media print, screen and (max-width: 576px) {
  .header_content:before {
    height: 70px;
  }
    
  .header_content h1 img {
    width: 300px;
    height: auto;
  }
  
  .corpolate_link_box {
    margin: 0 auto;
  }
  
  .corpolate_link_box a {
    margin-right: 0;
  }
}

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

  Contents

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

  「筑紫島（つくしのしま）」とは

---------------------------------*/
.about_wrap {
  position: relative;
}

.about_wrap::before {
  content: '';
  width: 100%;
  height: 220px;
  background: #f5f5f5;
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}

.about_content .text_box p {
  font-size: clamp(14px, 2vw, 18px);
  text-align: center;
}

.about_content .text_box p a {
  color: #b4253d;
  text-decoration: underline;
}

.about_content .text_box p span {
  display: inline-block;
}

.about_overview_box {
  margin-top: 3em;
}

.about_overview_box dl {
  display: flex;
  flex-wrap: wrap;
  border-top: solid 1px #dfe1e5;
}

.about_overview_box dl dt,
.about_overview_box dl dd {
  border-bottom: solid 1px #dfe1e5;
  padding: 1.5em;
}

.about_overview_box dl dt {
  width: 20%;
  min-width: 170px;
  background: #faf8f5
}

.about_overview_box dl dd {
  width: calc(100% - 20%);
  max-width: calc(100% - 170px);
}

.about_overview_box dl dd ul li span {
  display: inline-block;
}

.about_history_box {
  margin-top: 3em;
}

.about_history_box dl {
  display: flex;
  flex-wrap: wrap;
}

.about_history_box dl dt,
.about_history_box dl dd {
  padding: 1em 1.5em;
}

.about_history_box dl dt {
  width: 20%;
  min-width: 170px;
  position: relative;
}

.about_history_box dl dt::before {
	content: "\f111";
	font-family: 'Font Awesome 5 Free';
  color: #b4253d;
  font-weight: 600;
  margin-right: 0.5em;
}

.about_history_box dl dd {
  width: calc(100% - 20%);
  max-width: calc(100% - 170px);
}

.about_thumb_box {
  margin-top: 5em;
  padding-bottom: 5em;
}

.about_thumb_box ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.about_thumb_box ul li {
  width: calc(100% / 3 - 2em);
  margin: 1em;
}

.about_thumb_box ul li img {
  background: #ccc;
}

@media print, screen and (max-width: 834px) {
  .about_wrap::before {
    height: 460px;
  }
  
  .about_thumb_box ul li {
    width: calc(100% / 2 - 2em);
  }
}

@media print, screen and (max-width: 576px) {
  .about_wrap::before {
    height: 720px;
  }
  
  .about_overview_box dl,
  .about_history_box dl {
    flex-direction: column;
  }
  
  .about_overview_box dl dt,
  .about_overview_box dl dd,
  .about_history_box dl dt,
  .about_history_box dl dd {
    width: 100%;
  }
  
  .about_overview_box dl dt {
    border-bottom: none;
  }
  
  .about_overview_box dl dt,
  .about_history_box dl dt {
    font-weight: 600;
    padding: 0.5em 1em;
  }
  
  .about_overview_box dl dd,
  .about_history_box dl dd {
    max-width: none;
    padding: 1em;
  }
  
  .about_history_box dl dt {
    padding-bottom: 0;
  }
  
  .about_history_box dl dd {
    padding-top: 0.5em;
  }
  
  .about_thumb_box ul li {
    width: 100%;
  }
}

/*---------------------------------
  会社の特徴
---------------------------------*/
.features_box {
  display: flex;
  flex-wrap: wrap;
}

.features_inner_thumb {
  width: 30%;
  margin-right: auto;
}

.features_inner_thumb img {
  max-width: 400px;
  background: #ccc;
  margin: 0 auto;
}

.features_inner {
  width: 60%;
}

.features_inner .text_box p {
  line-height: 2.5em;
}

@media print, screen and (max-width: 576px) {
  .features_box {
    flex-direction: column;
  }
  
  .features_inner_thumb,
  .features_inner {
    width: 100%;
  }
  
  .features_inner {
    margin-top: 3em;
  }
}

/*---------------------------------
  ブランド商品
---------------------------------*/
.products_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.products_inner {
  width: 45%;
}

.products_inner:nth-of-type(n+3) {
  margin-top: 3em;
}

.products_inner_thumb {
  min-height: 250px;
  object-fit: cover;
  background: #ccc;
}

.products_inner_block {
  padding: 2em 0.5em;
}

.products_inner_title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 0.5em;
}

.products_inner_title h3 {
  font-size: clamp(16px, 2.5vw, 21px);
  margin-right: auto;
}

.products_inner_title p {
  color: #fff;
  font-size: clamp(12px, 2vw, 14px);
  border-radius: 3px;
  background: #333;
  margin: 5px;
  padding: 0 0.5em;
}

.products_inner_price {
  color: #b4253d;
  font-size: clamp(16px, 3vw, 21px);
  font-weight: 600;
  text-align: right;
  border-bottom: solid 1px #333;
  margin-bottom: 1.5em;
}

.products_inner_price::before {
  content: '標準小売価格';
  color: #666;
  font-size: clamp(12px, 2vw, 14px);
  margin-right: 0.5em;
}

.products_inner_price::after {
  content: '円（税込）';
  color: #666;
  font-size: clamp(12px, 2vw, 14px);
  margin-left: 0.5em;
}

.products_inner_block .text_box {
  color: #666;
}

.product_notes {
  margin-top: 1em;
}

.product_notes li {
  color: #666;
  font-size: 12px;
  line-height: 1.8em;
  text-indent: -1em;
  padding-left: 1em;
}

.product_notes li:before {
  content: '※';
}

/*
.products_inner_block .text_box dl {
  display: flex;
  flex-wrap: wrap;
}

.products_inner_block .text_box dl dt {
  width: 110px;
}

.products_inner_block .text_box dl dt::before {
  content: '・';
}

.products_inner_block .text_box dl dd {
  width: calc(100% - 110px);
}
*/

@media print, screen and (max-width: 834px) {
  .products_box {
    flex-direction: column;
  }
  
  .products_inner {
    width: 100%;
  }
  
  .products_inner:nth-of-type(n+2) {
    margin-top: 3em;
  }
}

/*---------------------------------
  おおいた源兵衛
---------------------------------*/
.oita_box .text_box p {
  text-align: center;
  line-height: 2.5em;
}

.oita_thumb_box ul {
  display: flex;
  flex-wrap: wrap;
  margin-top: 3em;
}

.oita_thumb_box li {
  width: calc(100% / 4 - 2em);
  margin: 1em;
}

.oita_thumb_box li img {
  background: #ccc;
}

@media print, screen and (max-width: 834px) {
  .oita_thumb_box li {
    width: calc(100% / 2 - 2em);
  }
}

@media print, screen and (max-width: 576px) {
  .oita_thumb_box li {
    width: 100%;
  }
  
  .oita_box .text_box p {
    text-align: left;
  }
  
  .oita_box .text_box p br {
    display: none;
  }
}

/*---------------------------------
  お問い合わせ
---------------------------------*/
.contact_wrap {
  background: #f5f5f5;
  padding: 7em 0;
}

.form_content .text_box p {
  text-align: center;
  line-height: 2.5em;
}

@media print, screen and (max-width: 576px) {
  .form_content .text_box p {
    text-align: left;
  }
}

/*---------------------------------
  Thanks
---------------------------------*/
.thanks_wrap {
  margin-bottom: 7em;
}

.thanks_content .text_box p:nth-last-child(2)	{
	font-size: 21px;
	font-weight: 600;
  letter-spacing: 0.1em;
}

.thanks_content .text_box p:nth-last-child(2)::before {
  content: "\f095";
	font-family: 'Font Awesome 5 Free';
  font-size: 21px;
  font-weight: 600;
  display: inline-block;
	vertical-align: middle;
	margin-right: 0.5em;
}

.thanks_content .btn {
  background: #333;
  margin: 3em auto 0 auto;
}

@media print, screen and (max-width: 834px) {
  .thanks_content .text_box p:nth-last-child(2)	{
    font-size: 18px;
  }
  
  .thanks_content .text_box p:nth-last-child(2)::before {
    font-size: 16px;
  }
}

/*---------------------------------
  Footer
---------------------------------*/
footer {
  color: #fff;
	background: #333;
  background-image: 
          repeating-linear-gradient(45deg, rgba(102, 102, 102, 0.1) 0, rgba(102, 102, 102, 0.1) 1px, transparent 1px, transparent 20px),
          repeating-linear-gradient(-45deg, rgba(102, 102, 102, 0.1) 0, rgba(102, 102, 102, 0.1) 1px, transparent 1px, transparent 20px);
          backgroundSize: 40px 40px;
  padding: 7em 0;
}

.footer_box {
  font-size: clamp(12px, 2vw, 14px);
  text-align: center;
}

.footer_box h2 {
  font-size: clamp(16px, 2vw, 18px);
  margin-bottom: 0.5em;
}

footer a {
  color: #fff !important;
}

.link_box ul li {
  font-size: clamp(12px, 2vw, 14px);
}

address {
	font-size: 0.7em;
	font-style: normal;
	text-align: center;
  margin-top: 4em
}

/*---------------------------------
  PageTop
---------------------------------*/
.pagetop {
	width: 60px;
	height: 60px;
	line-height: 55px;
	border-radius: 50%;
	color: #fff !important;
	font-size: clamp(14px, 2vw, 18px);
  font-weight: 600;
	text-align: center;
	background: rgba(180, 37, 61, 0.9);
	display: block;
	position: fixed;
	right: 40px;
	bottom: 40px;
	z-index: 999;
}

.pagetop:hover {
	opacity: 0.8;
	transition: 0.3s;
}

.pagetop:hover i {
  position: relative;
  top: -2px;
  transition: 0.3s;
}

@media screen and (max-width: 834px) {
	.pagetop {
		width: 50px;
		height: 50px;
		line-height: 45px;
		right: 10px;
		bottom: 10px;
	}
}

@media screen and (max-width: 576px) {
  .pagetop {
    display: none !important;
  }
}