@charset "utf-8";

/*		Contents
---------------------------------------------------------------------------
	h要素
	widget_btn（ボタン）
	widget_select（セレクトボックス）
	widget_list（お知らせ一覧）
	widget_relief（オンラインでも安心してご購入いただけます。）
	widget_category（カテゴリーから探す）
	widget_name（探す / 絞り込む）
	widget_flow（ご注文の流れ）
	widget_other（その他の商品）
	widget_column3（3カラム）
	ec-pager（ページング）
	ec-modal（モーダル）
	EC-CUBE（追加分）
------------------------------------------------------------------------ */

/* ========================================================================
	h要素
======================================================================== */
main h2{
	position:relative;
	margin:0 0 60px 0;
	padding:0 0 10px 0;
	font-size:3.6rem;
	line-height:5.4rem;
}

main h2::before{
	content:'';
	position:absolute;
	bottom:0;
	left:0;
	width:100%;
	height:2px;
	background:linear-gradient(to right, rgba(179,217,219,1) 0%, rgba(179,217,219,1) 50%, rgba(179,217,219,0) 100%);
}

main h3 {
  position: relative;
  margin: 0 0 20px 0;
  padding: 0 0 0 20px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 3rem;
}

main h3::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 30px;
  background: #13b2b9;
  border-radius: 3px;
}

@media screen and (max-width: 767px) {
main h2{
	margin:0 0 30px 0;
	padding:0 0 15px 0;
	font-size:2.4rem;
	line-height:3.4rem;
}

main h3{
	font-size: 2rem;
}
}

/* ========================================================================
	widget_btn（ボタン）
======================================================================== */
.widget_btn {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap:40px;
}

.widget_btn a,
.widget_btn button {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
  min-height: 70px;
  padding: 0 100px;
  background: #ffffff;
  border: 2px solid #13b2b9;
  border-radius: 4px;
  text-align: left;
  font-size: 2rem;
  font-weight: 500;
  color: #13b2b9;
  line-height: 1;
  text-decoration: none;
  transition-duration: 0.2s;
}

.widget_btn a::before,
.widget_btn button::before {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  width: 13px;
  height: 100%;
  background: url(../../img/common/arrow.png) no-repeat center;
  background-size: 13px auto;
}
.widget_btn .back::before {
  transform: scale(-1, 1);
  left: 20px;
}

.widget_btn a:hover,
.widget_btn button:hover {
  background: #13b2b9;
  color: #ffffff;
}
.widget_btn a:hover::before,
.widget_btn button:hover::before {
  background-image: url(../../img/common/arrow_on.png);
}

.widget_btn img {
  margin: 0 15px 0 0;
  vertical-align: text-bottom;
  transition-duration:0.2s;
}
.widget_btn a:hover img,
.widget_btn button:hover img {
  filter: brightness(0) invert(1);
}

@media screen and (max-width: 767px) {
  .widget_btn {
    gap:20px;
  }
  .widget_btn a,
  .widget_btn button {
    min-width: 100%;
	min-height: 60px;
    padding: 12px 43px;
    font-size: 1.8rem;
    line-height: 2.4rem;
  }
  .widget_btn a::before,
  .widget_btn button::before {
    right: 15px;
  }
  .widget_btn .back::before {
    left: 15px;
  }
  .widget_btn img {
    width: 24px;
    margin-right: 10px;
  }
}

/* ========================================================================
	widget_select（セレクトボックス）
======================================================================== */
.widget_select {
  overflow: hidden;
  position: relative;
  display: block;
  width: 360px;
  height: 70px;
  margin: 0 20px;
  padding: 0 20px;
  background: #ffffff;
  border: 2px solid #13b2b9;
  border-radius: 4px;
}

.widget_select::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 46px;
  height: 66px;
  background: #ffffff;
}

.widget_select::after {
  content: '';
  position: absolute;
  top: 0;
  right: 20px;
  width: 16px;
  height: 100%;
  background: url(../../img/common/arrow_select.png) no-repeat center;
  background-size: 16px auto;
}

.widget_select select {
  height: 64px;
  width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  outline: none;
  font-size: 2rem;
  font-weight: 500;
}
.widget_select select option {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .widget_select {
    width: 100%;
    height: 60px;
    margin: 0 0 20px 0;
  }

  .widget_select select {
    height: 56px;
    font-size: 1.8rem;
  }
}

/* ========================================================================
	widget_list（お知らせ一覧）
======================================================================== */
.widget_list li{
	display:flex;
	margin:0 0 20px 0;
}

.widget_list time{
	width:150px;
}

@media screen and (max-width: 767px) {
.widget_list li{
	display:block;
}

.widget_list time{
	display:block;
	width:auto;
}
}


/* ========================================================================
	widget_relief（オンラインでも安心してご購入いただけます。）
======================================================================== */
.widget_relief {
  padding: 120px 0 75px 0;
}

@media screen and (max-width: 767px) {
  .widget_relief {
    padding: 30px 0 10px 0;
  }
}

/* ========================================================================
	widget_category（カテゴリーから探す）
======================================================================== */
.widget_category {
  padding: 120px 0 75px 0;
}

@media screen and (max-width: 767px) {
  .widget_category {
    padding: 30px 0 10px 0;
  }
}

/* ========================================================================
	widget_name（探す / 絞り込む）
======================================================================== */
.widget_name{
	padding:120px 0 50px 0;
}

.widget_name .column{
	display:flex;
	padding:0 0 70px 0;
}

.widget_name .column h2{
	width:50%;
	margin:0;
}

@media screen and (max-width: 767px) {
.widget_name{
	padding:30px 0 0 0;
}

.widget_name .column{
	display:block;
	padding:0 0 10px 0;
}

.widget_name .column h2{
	width:auto;
	margin:0 0 30px 0;
}
}


/* ----------------------------------------
	widget_btn / widget_select
---------------------------------------- */
.widget_name .widget_btn,
.widget_name .widget_select{
	margin:0 auto;
}

@media screen and (max-width: 767px) {
.widget_name .widget_btn,
.widget_name .widget_select{
	margin:0 0 20px 0;
}
}


/* ========================================================================
	widget_flow（ご注文の流れ）
======================================================================== */
.widget_flow{
	padding:120px 0 160px 0;
}

.widget_flow ol {
  padding: 0 0 120px 0;
}

.widget_flow ol > li {
  position: relative;
  min-height: 390px;
  padding: 0 540px 80px 100px;
}
.widget_flow ol > li:last-child {
  min-height: 310px;
  padding-bottom: 0;
}

.widget_flow ol > li::before {
  content: '';
  position: absolute;
  top: 0;
  left: 34px;
  width: 2px;
  height: 100%;
  background: #e6eeed;
}

.widget_flow ol > li > img {
  position: absolute;
  top: 0;
  right: 0;
  border-radius:5px;
}

.widget_flow ol > li > img.num {
  left: 0;
  border-radius: 0;
}

.widget_flow ol > li > h3 {
  margin: 0;
  padding: 17px 0;
  line-height: 3.4rem;
}
.widget_flow ol > li > h3::before {
  content: none;
}

.widget_flow ol ul li{
	position:relative;
	padding:0 0 0 1.0em;
}

.widget_flow ol ul li::before{
	content:"";
	position:absolute;
	top:15px;
	left:4px;
	width:5px;
	height:5px;
	background:#38bec4;
}

@media screen and (max-width: 767px) {
  .widget_flow {
    padding: 30px 0;
  }

  .widget_flow ol {
    padding: 0 0 30px 0;
  }

  .widget_flow ol > li {
    min-height: 0;
    padding: 0 0 30px 13px;
  }
  .widget_flow ol > li:last-child {
    min-height: 0;
    padding-bottom: 10px;
  }

  .widget_flow ol > li::before {
    left: 11px;
  }

  .widget_flow ol > li > img {
    position: static;
	margin: 0 0 10px 0;
	border-top-left-radius:0;
	border-bottom-left-radius:0;
  }

  .widget_flow ol > li > img.num {
    position: absolute;
    top: 0;
    left: -5px;
    width: 34px;
  }

  .widget_flow ol > li > h3 {
    margin: 0 0 20px 0;
    padding: 2px 0 2px 26px;
    line-height: 3rem;
  }

  .widget_flow ol > li > p {
    padding: 0 0 0 15px;
  }

.widget_flow ol ul li{
	margin:0 0 0 15px;
}
}

/* ========================================================================
	widget_other（その他の商品）
======================================================================== */
.widget_other {
  padding: 120px 0 60px 0;
}

.widget_other ul {
	display:grid;
	grid-template-columns:repeat(4,1fr);
	gap:45px;
	margin:0 0 60px 0;
}

.widget_other ul li {
  width: 236px;
  text-align: center;
  line-height: 2.6rem;
}
.widget_other ul li:nth-child(4n) {
  margin-right: 0;
}

.widget_other ul li a {
  text-decoration: none;
}

.widget_other ul li img {
  display: block;
  margin: 0 auto 10px;
  border-radius: 5px;
}

@media screen and (max-width: 767px) {
  .widget_other {
    padding: 30px 0 10px 0;
  }

  .widget_other ul {
	grid-template-columns:repeat(2,1fr);
	gap:20px 15px;
	margin:0 0 20px 0;
  }

  .widget_other ul li {
	width:auto;
    font-size: 1.4rem;
    line-height: 2.4rem;
  }
}

/* ========================================================================
	widget_column3（3カラム）
======================================================================== */
.widget_column3 {
  display: flex;
  flex-wrap: wrap;
}

.widget_column3 li {
  width: 330px;
  margin: 0 45px 45px 0;
}
.widget_column3 li:nth-child(3n) {
  margin-right: 0;
}

.widget_column3 a {
  display: block;
  text-decoration: none;
  transition-duration: 0.2s;
}

.widget_column3 h3 {
  margin: 20px 0 11px 0;
}

@media screen and (max-width: 767px) {
  .widget_column3 {
    justify-content: center;
    margin: 0 -5px;
  }

  .widget_column3 li {
    margin: 0 5px 20px;
  }
  .widget_column3 li:nth-child(3n) {
    margin-right: 5px;
  }
}

/* ----------------------------------------
	trim
---------------------------------------- */
.widget_column3 .trim {
  overflow: hidden;
  display: block;
  position: relative;
  border-radius: 5px;
}

.widget_column3 .trim span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%); /* Android */
  transform: translate(-50%, -50%);
  padding: 0 20px;
  background: #ffffff;
  border-radius: 3px;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 5.0rem;
  white-space: nowrap;
  transition-duration: 0.2s;
}

.widget_column3 a:hover .trim span {
  background: #13b2b9;
  color: #ffffff;
}

.widget_column3 a:hover .trim img {
  transform: scale(1.1);
  transition-duration: 0.2s;
}

/* ========================================================================
	ec-pager（ページング）
======================================================================== */
.ec-pager {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 20px 0 0 0;
  text-align: center;
  line-height: 4rem;
}

.ec-pager li {
  padding: 20px 5px 0;
}

.ec-pager li a {
  display: block;
  padding: 0 15px;
  background: #ffffff;
  border: 2px solid #13b2b9;
  border-radius: 3px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
}

.ec-pager .ec-pager__item--active a {
  background: #13b2b9;
  color: #ffffff;
}

.ec-pager a:hover {
  background: #13b2b9;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .ec-pager {
    margin: 0 -5px;
    padding: 10px 0 20px 0;
    line-height: 3rem;
  }

  .ec-pager li a {
    padding: 0 10px;
  }
}


/* ========================================================================
	ec-modal（モーダル）
======================================================================== */
.ec-modal .ec-role{
	width:auto;
}

@media screen and (max-width: 767px) {
.ec-modal .ec-role,
.ec-modal .ec-role .ec-inlineBtn--cancel,
.ec-modal .ec-role .ec-inlineBtn--action{
	margin-top:10px;
}
}


/* ========================================================================
	EC-CUBE（追加分）
======================================================================== */
#customer_children {
  margin: 60px 0 0 0;
}

#customer_children button.ec-blockBtn--action {
  width: 360px;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  #customer_children {
    margin: 30px 0 0 0;
  }

  #customer_children button.ec-blockBtn--action {
    width: 100%;
  }
}
