/* カスタマイズ用CSS */
/*@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&display=swap');*/
/*@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;700&display=swap");*/

h1 {
    margin: auto;
}

@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: 400;
    src: url('../font/noto-regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Noto Sans JP';
    font-style: normal;
    font-weight: bold;
    src: url('../font/noto-bold.woff') format('woff');
    font-display: swap;
}

@font-face {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    src: url('../font/serif-regular.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 500;
    src: url('../font/serif-med.woff') format('woff');
    font-display: swap;
}
@font-face {
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: bold;
    src: url('../font/serif-bold.woff') format('woff');
    font-display: swap;
}


html {
  scroll-behavior: smooth;
}

body {
  font-size: 17px;
  font-family: 'Noto Sans JP', sans-serif;
  font-family: 'Noto Serif JP', serif !important;
}

.flex {
  display: flex;
  flex-wrap: wrap;
}
.flex.just-center {
  justify-content: center;
}
.flex.just-between {
  justify-content: space-between;
}
.flex.align-start {
  align-items: flex-start;
}
.flex.align-end {
  align-items: flex-end;
}

.inblock {
  display: inline-block;
}

@media screen and (max-width: 480px) {
  body {
    font-size: 16px;
  }
}

/********************************************
* 共通
*********************************************/
.pad-wrap {
  padding-left: 1rem;
  padding-right: 1rem;
}

.big_title {
  width: 100%;
  height: 300px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.big_title.top_contents {
  margin-top: 30px;
}

.big_title.online { background-image: url(/html/user_data/assets/img/underlayer/ttl-online-bg.webp); }
.big_title.chose { background-image: url(/html/user_data/assets/img/underlayer/ttl-chose-bg.webp); }
.big_title.eat { background-image: url(/html/user_data/assets/img/underlayer/ttl-eat-bg.webp); }
.big_title.zuwai { background-image: url(/html/user_data/assets/img/underlayer/ttl-zuwai-bg.webp); }
.big_title.info { background-image: url(/html/user_data/assets/img/underlayer/ttl-info-bg.webp); }
.big_title.contact { background-image: url(/html/user_data/assets/img/underlayer/ttl-contact-bg.webp); }
.big_title.products { background-image: url(/html/user_data/assets/img/underlayer/ttl-products-bg.webp); }

#page_product_list .big_title,
#page_product_detail .big_title,
#page_help_about .big_title,
#page_cart .big_title {
  background-image: url(/html/user_data/assets/img/underlayer/ttl-products-bg.webp);
}

#page_product_list .big_title_txt::before,
#page_product_detail .big_title_txt::before,
#page_help_about .big_title_txt::before,
#page_cart .big_title_txt::before {
  /* content: url(/html/user_data/assets/img/underlayer/ttl-products.png); */
  content: '';
  background-image: url(/html/user_data/assets/img/underlayer/ttl-products.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 127px;
  height: 28px;
}

.big_title_txt {
  width: 90%;
  max-width: 782px;
  min-height: 128px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.8);
}

.big_title_txt img {
  display: block;
  max-width: 96%;
  margin: auto;
}

.link_goods {
  position: relative;
  max-width: 485px;
  width: 85%;
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #004A80;
  font-size: 18px;
  margin: 140px auto 120px;
  border: solid 2px #004A80;
  transition: 0.35s all;
}

.link_goods:hover {
  text-decoration: none;
  background-color: #004A80;
  color: white;
}

.link_goods::before {
  content: '';
  position: absolute;
  right: 10%;
  top: 0;
  bottom: 0;
  width: 0;
  height: 0;
  margin: auto;
  border-style: solid;
  border-width: 7px 0 7px 12px;
  border-color: transparent transparent transparent #004A80;
  transition: 0.35s all;
} 

.link_goods:hover::before {
  border-color: transparent transparent transparent #fff;
}

.blue_line {
  width: 100%;
  display: block;
  height: 50px;
  background-color: #004A80;
  margin-bottom: 50px;
}

.cmn_ttl {
  font-size: 28px;
  margin-bottom: 80px;
  text-align: center;
  font-weight: bold;
  padding: 0 1rem;
}

.cmn_ttl2 {
  font-size: 22px;
  line-height: 1.5;
}

.sb-button {
    transition: 0.3s all;
}

.sidebar-payment-link {
  color: white;
  margin: auto;
  background-color: #B19362;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 190px;
  min-height: 60px;
  transition: 0.3s all;
}

.sidebar-payment-link:hover {
  text-decoration: none;
  color: #B19362;
  background-color: white;
}


@media screen and (max-width: 767px) {
  .big_title.top_contents { width: 96%; margin-left: 2%; margin-right: 2%; }
  .big_title { height: 260px; }
  .big_title_txt { min-height: 100px; }
  .link_goods { margin: 100px auto 80px; }

  .cmn_ttl { margin-bottom: 50px; }
  
  #page_product_list .big_title,
  #page_product_detail .big_title,
  #page_help_about .big_title,
  #page_cart .big_title {
    margin-top: 0;
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 480px) {
  .link_goods { margin: 80px auto 60px; }

  .big_title {
    height: 120px;
    margin-bottom: 30px;
  }
  .big_title_txt {
    min-height: 40px;
  }

  .big_title_txt { width: 95%; }
  .big_title_txt img {
    height: 20px;
  }

  #page_product_list .big_title_txt::before,
  #page_product_detail .big_title_txt::before,
  #page_help_about .big_title_txt::before,
  #page_cart .big_title_txt::before {
    width: 90px;
    height: 20px;
  }
}

/********************************************
* ヘッダー
*********************************************/
.head_top {
  display: flex;
  justify-content: space-between;
}

.head_logo {
  display: flex;
  padding-top: 15px;
}

.head_logo .logo_sp,
.head_logo .logo_sp2,
.head_logo .logo_sp3 {
  display: none;
}

.head_logo_auth {
  display: block;
  margin-left: 45px;
}

.head_logo > a {
  display: flex;
  align-items: center;
}

.head_menu {
  display: flex;
  align-items: flex-start;
}

.head_top_navi {
  display: block;
  padding-top: 30px;
  padding-right: 30px;
}

.head_top_navi_up {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}

.head_insta {
  margin-right: 15px;
  transition: 0.35s all;
}
.head_insta:hover {
  opacity: 0.7;
}

.head_top_navi_down {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  min-width: 710px;
}

.head_top_fax {
  display: block;
}

.head_cart {
  width: 210px;
  height: 185px;
  margin-bottom: 15px;
}

.head_cart a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
  color: white;
  transition: 0.35s all;
  background-color: #0473c4;
}
.head_cart a:hover {
  background-color: #004A80;
  text-decoration: none;
}

.head_cart p {
  width: 100%;
}

.head_cart .cart_icon {
  width: 28px;
  height: 26px;
  display: block;
  margin: 0 auto 7px;
}
.head_cart a:hover .cart_icon {
  filter: drop-shadow(0px 1px 2px #004A80);
}

.head_btn1 {
  min-width: 185px;
  min-height: 35px;
  padding: 5px 15px;
  border: solid 1px #004A80;
  color: #004A80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.35s all;
  margin-left: 5px;
}

.head_btn1:hover {
  color: white;
  border: solid 1px #004A80;
  background-color: #004A80;
  text-decoration: none;
}

.head_btn1:hover .triangle-right-puple {
  border-color: transparent transparent transparent #fff;
}

.head_top_tel {
  padding-top: 5px;
}

.head_top_fax {
  padding-top: 5px;
}

.head_top_navi_line {
  min-height: 85px;
  width: 1px;
  background-color: #B19362;
}

.head_download {
  width: 340px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0473c4;
  color: white;
  text-decoration: none;
  font-size: 18px;
  margin-top: 10px;
}

.head_download:hover {
  color: white;
  background-color: #004A80;
  text-decoration: none;
}

.head_bottom {
  padding: 30px 2% 25px;
  background-color: #EEF4F7;
  width: 100%;
  margin: auto;
}

.head_bottom_list {
  display: flex;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: auto;
  line-height: 1.5;
  letter-spacing: 1px;
  font-size: 18px;
  text-align: center;
}

.head_bottom_list a:hover {
  text-decoration: none;
}

.head_bottom_list > li {
  position: relative;
  pointer-events: none;
}

.head_bottom_list > li:not(:last-child)::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 8px solid transparent;
  transition: 0.35s all;
  margin: auto;
  position: absolute;
  bottom: -11px;
  right: 0;
  left: 0;
}
.head_bottom_list > li:not(:last-child):hover::before {
  border-top: 8px solid #E7211A;
}

.head_bottom_list > li a {
  pointer-events: auto;
}

.head_bottom_list > li:nth-child(1) a img { width: 86px; }
.head_bottom_list > li:nth-child(2) a img { width: 128px; }
.head_bottom_list > li:nth-child(3) a img { width: 120px; }
.head_bottom_list > li:nth-child(4) a img { width: 116px; }
.head_bottom_list > li:nth-child(5) a img { width: 130px; }

.head_bottom_list > li a img { padding-top: 10px; }

.head_contact_link {
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 60px;
  transition: 0.3s all;
}
.head_contact_link:hover {
  background-color: #004A80;
  color: white;
  text-decoration: none;
}

.head_contact_link img {
  display: block;
  margin-right: 18px;
}

.head_menu_sp {
  display: none;
}

@media screen and (max-width: 1620px) {
  .head_logo .logo_pc { display: none; }
  .head_logo .logo_sp { display: block; }
  .head_logo_auth { width: 125px; height: 107px; }
  .head_cart { width: 170px; height: 140px; padding-bottom: 10px; margin-bottom: 0; }

  .head_menu_sp { display: flex; }
  .head_download { width: 280px; }
  .head_menu_sp_right { padding-top: 15px; padding-right: 20px; }
  .head_menu_sp_left { padding-top: 15px; padding-right: 25px; }
  .head_btn1 { min-width: 151px; margin-left: 0; border: none; border-bottom: solid 1px #004A80; padding: 5px 10px; }
  .triangle-right-puple { margin-left: 10px !important; }
  .head_insta { margin-right: 0; }
}

@media screen and (max-width: 1280px) {
  .head_logo_auth { display: none; }
}

@media screen and (max-width: 1100px) {
  header {
    box-shadow: 0 5px 5px rgb(0 0 0 / 10%);
    position: fixed; background-color:white;
    z-index: 100;
  }
  .head_logo { max-width: 64%; padding-top: 4px; }
  .head_logo .logo_sp { display: none; }
  .head_logo .logo_sp2 { display: block; }
  .head_bottom { display: none; }
  .head_cart { display: none; }
  .head_logo_auth { display: none; }
  .head_menu_sp_right { display: none; }

  section.top { padding-top: 70px; }

  .head_menu_sp_left { display: none; }
}

@media screen and (max-width: 767px) {
  section.top { padding-top: 90px; }
}

@media screen and (max-width: 500px) {
  .head_logo .logo_sp2 { display: none; }
  .head_logo .logo_sp3 { display: block; height: auto; }
}

/********************************************
* フッター 
*********************************************/
footer {
  margin-top: 100px;
}

.foot_contact {
  width: 100%;
  padding: 140px 10px 160px;
  background-image: url(../img/footer/foot-01.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}

.foot_contact_ttl {
  font-size: 34px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.foot_contact_ttl::before {
  content: url(../img/footer/foot-02.png);
  margin-right: 10px;
}

.foot_contact_tel {
  font-size: 30px;
  margin-right: 25px;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.foot_contact_tel::before {
  content: url(../img/footer/tel.png);
  margin-right: 10px;
}

.foot_contact_fax {
  font-size: 18px;
  padding-top: 10px;
  padding-bottom: 5px;
}

.foot_contact_holiday {
  margin-top: 20px;
}

.foot_contact_link {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 40px auto 0;
  max-width: 600px;
  width: 100%;
  height: 60px;
  color: white;
  background-color: #004A80;
  font-size: 20px;
  transition: 0.35s all;
  text-decoration: none;
}
.foot_contact_link:hover {
  background-color: white;
  text-decoration: none;
  color: #004A80;
}

.triangle-right {
  display: inline-block;
  border-style: solid;
  border-width: 10px 0 10px 18px;
  border-color: transparent transparent transparent #fff;
  margin-left: 20px;
  transition: 0.35s all;
}
a:hover > .triangle-right {
  border-color: transparent transparent transparent #004A80;
}

.foot_map {
	position: relative;
	height: 0;
  width: 100%;
	padding-bottom: 450px; /* 縦横比の指定 */	
	overflow: hidden;
}
.foot_map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.foot_bottom {
  position: relative;
  color: white;
}
.foot_bottom::before,
.foot_bottom::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
}

.foot_bottom::after {
  background-image: url(../img/footer/foot-bg.webp);
  z-index: -1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.foot_bottom_left,
.foot_bottom_right {
  width: 50%;
  padding: 80px 10px 10px;
}

.foot_bottom_right {
  background-color: #003968;
}

.foot_bottom_left_inner {
  max-width: 810px;
  width: 100%;
  margin-left: auto;
  padding-left: 5%;
}

.foot_bottom_right_inner {
  max-width: 810px;
  width: 100%;
  margin-right: auto;
  display: flex;
  flex-wrap: wrap;
  padding-left: 5%;
}

.foot_bottom_info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 400px;
  margin-top: 40px;
}

.foot_bottom_address {
  width: 100%;
  margin-bottom: 45px;
  line-height: 1.5;
}

.foot_bottom_insta {
  margin-left: 40px;
  display: block;
  transition: 0.35s all;
}
.foot_bottom_insta:hover {
  opacity: 0.7;
}

.foot_bottom_list {
  margin-top: 40px;
}

.foot_bottom_list > li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 25px;
  line-height: 1.7;
}

.foot_bottom_list > li::before {
  content: '';
  position: absolute;
  background-color: #B19362;
  width: 23px;
  height: 2px;
  left: 0;
  top: 15px;
}

.foot_bottom a {
  text-decoration: none;
}

.foot_bottom a:hover {
  text-decoration: none;
  color: skyblue;
}

.foot_bottom_ttl {
  width: 294px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  border: solid 1px white;
  font-size: 26px;
  padding: 20px 5px;
}

.foot_howto {
  margin-right: 70px;
}

.foot_bottom_telfax {
  font-size: 28px;
  font-weight: bold;
}

.foot_btn1 {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004A80;
  background-color: #979DB4;
  transition: 0.35s all;
  font-size: 18px;
  min-height: 40px;
  margin-top: 15px;
}

.foot_btn1:hover {
  color: #004A80 !important;
  background-color: white;
}

.triangle-right-puple {
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #003968;
  margin-left: 20px;
  transition: 0.35s all;
}

.foot_bottom_banner {
  margin-top: 24px;
  background-color: #003968;
  display: flex;
  width: 100%;
  padding: 10px;
  position: relative;
  z-index: 5;
}

.foot_bottom_banner_inner {
  max-width: 1620px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.foot_bottom_banner_inner a {
  margin-right: 20px;
  font-size: 14px;
  transition: 0.3s all;
}

.foot_btn2 {
  min-width: 185px;
  min-height: 35px;
  padding: 5px 15px;
  background-color: #004A80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
}

.foot_btn2:hover {
  color: #004A80 !important;
  background-color: white;
}

.triangle-right2 {
  display: inline-block;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #fff;
  margin-left: 20px;
  transition: 0.35s all;
}
a:hover > .triangle-right2 {
  border-color: transparent transparent transparent #004A80;
}

.foot_bottom_copyright {
  text-align: center;
  width: 100%;
  padding: 20px 10px 25px;
}

@media screen and (max-width: 1450px) {
  .foot_bottom_left, .foot_bottom_right {
    width: 100%;
    padding-top: 60px;
  }

  .foot_bottom_left_inner {
    max-width: 700px;
    padding-left: 0;
    margin: auto;
  }

  .foot_bottom_right_inner {
    justify-content: space-around;
    margin: auto;
    padding-left: 0;
  }
}

@media screen and (max-width: 900px) {
  .foot_bottom_banner_inner {
    display: block;
    padding: 20px 0;
  }
  
  .foot_bottom_banner_inner .flex {
    justify-content: center;
    padding: 20px 0;
  }

  .foot_bottom_banner_inner .flex:first-child {
    width: auto;
  }
}

@media screen and (max-width: 767px) {
  .foot_contact {
    padding: 90px 10px 100px;
  }

  .foot_bottom_left {
    padding-bottom: 30px;
  }

  .foot_bottom_left_inner {
    text-align: center;
  }
  
  .foot_bottom_left_inner .foot_bottom_list {
    display: none;
  }

  .foot_bottom_left_inner .flex {
    justify-content: center;
  }

  .foot_bottom_info {
    justify-content: center;
  }

  .foot_bottom_right_inner {
    display: block;
  }

  .foot_howto {
    margin: auto;
    padding-bottom: 25px;
  }

  .foot_bottom_ttl {
    margin: auto;
    font-size: 22px;
  }

  .foot_bottom_list {
    width: 100%;
    max-width: 290px;
    margin-top: 25px;
    margin-left: auto;
    margin-right: auto;
  }

  .foot_map {
    padding-bottom: 60vw;
  }

}

@media screen and (max-width: 500px) {

  .foot_bottom_banner_inner {
    padding: 0;
  }

  .foot_bottom_banner_inner .flex {
    padding: 10px 0;
  }

  .foot_bottom_banner_inner a {
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .foot_bottom_copyright {
    font-size: 12px;
  }
}

@media screen and (max-width: 480px) {
  .foot_bottom_auth {
    width: 130px;
  }
  
  .foot_bottom_auth img {
      width: 100%;
      height: auto;
  }

  .foot_bottom_insta {
    margin-left: 25px;
  }

  .foot_contact_ttl {
    font-size: 30px;
  }

  .foot_contact_link {
    font-size: 18px;
  }
}

/********************************************
* サイドバー
*********************************************/
.btn_next_month,
.btn_prev_month {
  background-color: white;
  border-color: #D0DFE8;
  border-radius: 5px;
}

.ec-calendar tr th, .ec-calendar tr td {
  border-bottom: none;
}

.ec-calendar__sun {
  color: #C41F71;
}
.ec-calendar__sat {
  color: #298CC5;
}

.calendar_note {
  color: red;
}

@media screen and (max-width: 767px) {
  .sidebar-click {
    position: relative;
    margin-top: 6px;
    margin-bottom: 10px;
  }

  .sidebar-click::before {
    position: absolute;
    content: '';
    left: 0px;
    top: -2px;
    bottom: -2px;
    width: 220px;
    border: solid #D0DFE8 2px;
    /* background-color: #D0DFE8; */
    border-left: none;
    background-color: white;
    border-color: #D0DFE8;
    border-radius: 0 6px 6px 0;
    z-index: -1;
    box-shadow: 1px 2px 2px #dbdbdb;
  }
  
  .sidebar-click::after {
    content: 'カテゴリ一覧';
    position: absolute;
    left: 52px;
    top: 0;
    bottom: 0;
    margin: auto;
    display: flex;
    align-items: center;
    font-size: 16px;
  }
}

/********************************************
* プライバシーポリシー
*********************************************/
.privacy_wrap {
  line-height: 1.5;
}

.privacy_ttl {
  background-color: #D3DEE5;
  width: 100%;
  padding: 30px 60px;
  font-size: 21px;
}

.privacy_txt {
  padding: 60px 60px;
}

@media screen and (max-width: 767px) {
  .privacy_txt { padding: 20px 30px 30px; font-size: 16px; }
  .privacy_ttl { padding: 15px 30px; font-size: 19px; }
}

@media screen and (max-width: 480px) {
  .privacy_txt { padding: 20px 15px 30px; }
  .privacy_ttl { padding: 15px 12px; }
}

/********************************************
* サイドメニュー
*********************************************/
.cat_toggle {
  display: none;
}

.ac_menu {
  border-top: solid 2px #D0DFE8;
}

.ac_option {
  position: relative;
}

.cat_ttl,
.ac_content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.cat_ttl {
  border-bottom: solid 2px #D0DFE8;
  min-height: 64px;
  display: flex;
  align-items: center;
  padding-left: 20px;
  padding-right: 35px;
  transition: 0.35s all;
  font-family: 'Noto Serif JP', serif;
}
.cat_ttl:hover {
  background-color: #D0DFE8;
  /* background-color: #EEF4F7; */
}

.sidebar_cat_icon {
  display: block;
  margin-right: 18px;
}

.cat_ttl::after,
.cat_ttl::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 26px;
  width: 2px;
  height: 0.75em;
  background-color: #231815;
  transition: all 0.3s;
}
.cat_ttl::after {
  transform: rotate(90deg);
}

.ac_content {
  max-height: 0;
  overflow: hidden;
}

.cat_toggle:checked + .cat_ttl + .ac_content {
  max-height: 1000px;
  transition: all 1.5s;
}
.cat_toggle:checked + .cat_ttl::before {
  transform: rotate(90deg) !important;
}

.subcat_item a {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  padding-left: 27px;
  min-height: 54px;
  border-bottom: solid 2px #D0DFE8;
  opacity: 0.35s all;
  font-family: 'Noto Serif JP', serif;
  transition: 0.3s all;
}

.subcat_item a:hover {
  text-decoration: none;
  background-color: #D0DFE8;
}

@media screen and (max-width: 767px) {
  .subcat_item a { padding-left: 15px; font-size: 15px; }
}


/********************************************
* ネット通販がお得な理由
*********************************************/
.online_01 {
  position: relative;
}

.online_wrap1 {
  display: block;
  width: 52%;
}

.online_img01 {
  display: block;
  width: 100%;
}

.online_img02 {
  display: block;
  margin-top: 25px;
  max-width: 400px;
  width: 60%;
}

.online_wrap2 {
  width: 40%;
  padding-top: 75px;
  line-height: 2.5;
  max-width: 500px;
  position: relative;
}

.online_txt {
  min-height: 220px;
}

.online_img04 {
  display: block;
  width: 86%;
  margin-top: 30px;
  max-width: 430px;
  margin-left: auto;
}

.online_img03 {
  position: absolute;
  bottom: -100px;
  left: -20%;
}

.online_img05 {
  display: block;
  width: 100%;
  margin-top: 120px;
}

.online-sp-wrap {
  display: none;
}

@media screen and (max-width: 900px) {
  .online_wrap2 {
    padding-top: 20px;
    width: 42%;
  }
  .online_img03 {
    left: -50%;
  }
}

@media screen and (max-width: 767px) {
  .online_wrap1 {
    width: 47%;
  }

  .online_wrap2 {
    width: 48%;
  }

  .online_img02 {
    width: 80%;
  }
}

@media screen and (max-width: 550px) {
  .online-pc-wrap {
    display: none;
  }

  .online-sp-wrap {
    display: block;
  }
  
  .online-sp-wrap p {
    line-height: 1.8;
    padding-top: 15px;
    margin-bottom: 30px;
  }
  
  .online-sp-wrap .flex > img {
    display: block;
    width: 49%;
    margin-bottom: 15px;
  }

  .online_img05 {
    margin-top: 40px;
  }
}

/********************************************
* 越前がにがおいしい理由
*********************************************/
.chose_wrap1 {
  max-width: 1250px;
  width: 100%;
  margin: auto;
}

.chose_txt {
  display: block;
  width: 45%;
}
.chose_wrap1 .chose_txt {
  max-width: 520px;
  padding-top: 100px;
  padding-left: 1rem;
  line-height: 2.2;
  font-size: 20px;
}

.chose_img {
  display: block;
  width: 50%;
}

.chose_list {
  margin-top: 140px;
}
.chose_list > li {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 130px;
}

.chose_list > li::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 100px;
  width: 100%;
  height: 200px;
  margin: auto;
  background-color: #EEF4F7;
  z-index: -2;
}

.chose_list > li::after {
  position: absolute;
  content: url(/html/user_data/assets/img/underlayer/chose-03.png);
  bottom: 140px;
  z-index: -1;
}
.chose_list > li:nth-child(odd):after {
  right: 10%;
}
.chose_list > li:nth-child(even):after {
  left: 30%;
}

.chose_list .chose_txt {
  padding-right: 1rem;
  width: 45%;
}

.chose_list .chose_txt .inner {
  max-width: 530px;
  text-align: left;
}

.chose_list > li:nth-child(even) .chose_txt {
  padding-left: 1rem;
  padding-right: 0;
}

.chose_list > li:nth-child(even) .chose_txt .inner {
  margin-left: auto;
}

.chose_list_img {
  display: block;
  width: 50%;
  min-height: 630px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.chose_list > li:nth-child(1) .chose_list_img { background-image: url(/html/user_data/assets/img/underlayer/chose-02.webp); }
.chose_list > li:nth-child(2) .chose_list_img { background-image: url(/html/user_data/assets/img/underlayer/chose-04.webp); }
.chose_list > li:nth-child(3) .chose_list_img { background-image: url(/html/user_data/assets/img/underlayer/chose-05.webp); }

.chose_list > li:nth-child(even) .chose_list_img {
  order: 2;
}

.chose_ttl {
  padding-top: 70px;
}
.chose_ttl img:first-child {
  width: 158px;
  display: block;
  margin: auto;
}
.chose_ttl img.ttl01,
.chose_ttl img.ttl02,
.chose_ttl img.ttl03 {
  width: 100%;
  margin: 30px auto 30px;
  display: block;
}
.chose_ttl img.ttl01 { max-width: 310px; }
.chose_ttl img.ttl02 { max-width: 440px; }
.chose_ttl img.ttl03 { max-width: 573px; }

.chose_list .chose_txt p {
  line-height: 2;
  font-size: 17px;
}

@media screen and (max-width: 1100px) {
  .chose_list_img {
    min-height: 530px;
  }
}

@media screen and (max-width: 900px) {
  .chose_list_img {
    min-height: 410px;
  }

  .chose_list .chose_txt {
    width: 47%;
  }
}

@media screen and (max-width: 767px) {
  .chose_wrap1 .chose_txt {
    width: 100%;
    margin: auto;
    padding: 0;
    font-size: 18px;
    line-height: 1.9;
  }

  .chose_img {
    margin: 25px auto 0;
    width: 80%;
    max-width: 500px;
  }

  .chose_ttl {
    padding-top: 30px;
  }

  .chose_list {
    margin-top: 60px;
  }

  .chose_list > li::before,
  .chose_list > li::after {
    display: none;
  }

  .chose_list > li {
    flex-wrap: wrap;
    margin-bottom: 60px;
  }

  .chose_list_img {
    width: 100%;
    order: 2;
  }

  .chose_list .chose_txt {
    width: 100%;
    padding: 0 !important;
  }

  .chose_list .chose_txt .inner {
    margin: auto !important;
    padding-bottom: 20px;
  }

  .chose_list_img {
    min-height: 44vw;
  }

  .chose_list > li:nth-child(3) .chose_list_img {
    min-height: 73vw;
  }

  .chose_list .chose_txt p {
    line-height: 1.7;
    font-size: 16px;
  }

  .chose_ttl img.ttl01, .chose_ttl img.ttl02, .chose_ttl img.ttl03 {
    margin-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  .chose_wrap1 .chose_txt {
    font-size: 17px;
    line-height: 1.7; }
}

@media screen and (max-width: 450px) {
  .chose_ttl img.ttl01 { max-width: 270px; }

  .chose_ttl img.ttl01,
  .chose_ttl img.ttl02,
  .chose_ttl img.ttl03 {
    margin-left: 0;
    padding-left: 10px; }
}

/********************************************
* 越前がにがおいしい理由
*********************************************/
.eat_top_ttl {
  margin: 30px auto 150px;
  padding-top: 120px;
  position: relative;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}

.eat_top_ttl::before {
  position: absolute;
  content: url(/html/user_data/assets/img/underlayer/eat-01.png);
  bottom: -35px;
  left: 0;
  right: 0;
  margin: auto;
}

.eat_list > li {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}

.eat_list > li:last-child {
  margin-bottom: 0;
}

.eat_list_num {
  display: flex;
  width: 240px;
  align-items: flex-start;
}

.eat_list_num p {
  padding-top: 12px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: 24px;
  padding-left: 20px;
  letter-spacing: 3px;
  line-height: 1.4;
}

.eat_list_pic {
  display: block;
  width: calc(100% - 240px);
  padding-top: 12px;
}

.eat_list_pic p {
  margin-top: 20px;
  line-height: 1.5;
}

.eat_line {
  display: block;
  margin-top: 120px;
  width: 100%;
  height: 8px;
  background-color: #D3DEE5;
}

.eat_page_link {
  width: 100%;
  max-width: 750px;
  margin: auto;
  display: flex;
  justify-content: space-between;
}

.eat_page_link a {
  position: relative;
  max-width: 350px;
  width: 49%;
  height: 86px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #004A80;
  font-size: 20px;
  border: solid 1px #004A80;
  transition: 0.35s all;
}

.eat_page_link a:hover {
  text-decoration: none;
  background-color: #004A80;
  color: white;
}

.eat_page_link a::before {
  position: absolute;
  content: '';
  border-style: solid;
  border-width: 12px 7px 0 7px;
  border-color: #004A80 transparent transparent transparent;
  height: 0;
  width: 0;
  right: 10%;
  transition: 0.35s all;
}

.eat_page_link a:hover::before {
  border-color: #fff transparent transparent transparent;
}

@media screen and (max-width: 767px) {
  .eat_page_link {
    flex-wrap: wrap;
  }

  .eat_page_link a {
    width: 100%;
    max-width: none;
    height: 55px;
    border-radius: 10px;
  }
  .eat_page_link a:first-child {
    margin-bottom: 10px;
  }

  .eat_top_ttl {
    margin: 0 auto 120px;
    padding-top: 100px;
  }

  .eat_list > li {
    flex-wrap: wrap;
    margin-bottom: 80px;
  }

  .eat_list_num {
    width: 100%;
  }

  .eat_list_num p {
    writing-mode: horizontal-tb;
    letter-spacing: 0;
  }
  
  .eat_list_num p br {
    display: none;
  }

  .eat_list_pic {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .eat_list > li {
    margin-bottom: 50px;
  }
}

/********************************************
* ズワイガニひとくちメモ
*********************************************/
.zuwai_list > li {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  position: relative;
}

.zuwai_list_img {
  width: 43%;
  order: 1;
  display: block;
  max-width: 100%;
}

.zuwai_list > li:nth-child(1)::before {
  position: absolute;
  content: url(/html/user_data/assets/img/underlayer/zuwai-07.png);
  left: 36%;
  bottom: 0;
  z-index: -1;
}

.zuwai_list_ttl {
  width: 10%;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #004A80;
  font-size: 36px;
  display: flex;
  align-items: center;
  order: 2;
  padding-top: 27px;
  position: relative;
}

.zuwai_list_ttl::before {
  position: absolute;
  content: url(/html/user_data/assets/img/underlayer/zuwai-06.png);
  top: 0;
  left: 10%;
  z-index: -1;
}

.zuwai_list_txt {
  width: 43%;
  order: 3;
  line-height: 1.8;
  padding-left: 2.5%;
  padding-right: 2.5%;
}

.zuwai_list > li:nth-child(1) .zuwai_list_txt {
  padding-top: 27px;
}

.zuwai_list > li:nth-child(even) .zuwai_list_img {
  order: 3;
}
.zuwai_list > li:nth-child(even) .zuwai_list_txt {
  order: 1;
}

.tihoumei {
  max-width: 400px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 30px;
  margin: 20px 0;
  background-color: #EEF4F7;
}

.tihoumei > li {
  margin-bottom: 15px;
  min-width: 48%;
}

.zuwai_list .img_sp {
  display: none;
}

@media screen and (max-width: 850px) {
  .zuwai_list > li {
    flex-wrap: wrap;
  }

  .zuwai_list_ttl {
    order: 0;
    width: 100%;
    writing-mode: horizontal-tb;
    line-height: 1.5;
    margin-bottom: 25px;
    padding-left: 4%;
  }

  .zuwai_list_img,
  .zuwai_list > li:nth-child(1)::before { display: none; }

  .zuwai_list > li:nth-child(1) .zuwai_list_txt { padding-top: 0; }
  .zuwai_list_txt { width: 100%; padding: 0; }
  .zuwai_list_ttl::before { left: 1%; }

  .zuwai_list .img_sp { display: block; width: 40%; max-width: 320px; margin-bottom: 5px; }
  .zuwai_list > li:nth-child(odd) .img_sp { float:left; margin-right: 10px; }
  .zuwai_list > li:nth-child(even) .img_sp { float:right; margin-left: 10px; }
}

@media screen and (max-width: 700px) {
  .zuwai_list_ttl { font-size: 32px; }
}

@media screen and (max-width: 480px) {
  .zuwai_list > li:nth-child(1) .img_sp { max-width: 125px; }
  .zuwai_list_ttl { font-size: 24px; padding-top: 4px; }
  .zuwai_list_ttl::before { content: ''; background-color: #D2DEE5; width: 25px; height: 25px; left: 0; }
}

/********************************************
* 店舗情報
*********************************************/
.info_table {
  display: block;
  width: 100%;
  margin-top: 60px;
}
.info_table tbody {
  display: block;
  width: 100%;
}

.info_table tr {
  display: flex;
  border-bottom: solid 1px #231815;
}
.info_table th {
  width: 30%;
  padding-left: 45px;
  font-weight: normal;
}
.info_table td {
  width: 70%;
  padding-right: 20px;
  display: flex;
  align-items: center;
}

.info_table th,
.info_table td {
  padding-top: 25px;
  padding-bottom: 25px;
  line-height: 1.7;
}

@media screen and (max-width: 767px) {
  .info_table tr { flex-wrap: wrap; }
  .info_table tr th { width: 100%; padding: 20px 0 0 5px; font-weight: bold; }
  .info_table tr td { width: 100%; padding: 10px 0px 20px 20px; }
}

@media screen and (max-width: 480px) {
  .tihoumei { width: 100%; margin-left: auto; margin-right: auto; }
}

/********************************************
* お問い合わせ
*********************************************/
.contact_lead {
  margin: 150px auto;
  text-align: center;
  font-size: 20px;
  line-height: 1.5;
}

.contact_tel {
  display: flex;
  align-items: center;
  margin-bottom: 80px;
}

.contact_mail {
  display: flex;
  align-items: center;
  margin-bottom: 140px;
}

.contact_ttl {
  font-size: 24px;
  margin-left: 60px;
  line-height: 1.2;
}
.contact_ttl span {
  font-size: 18px;
}

.contact_mail .span_sp {
  display: none;
}

.contact_tel_num {
  margin-left: 70px;
}

.contact_table,
.contact_table tbody {
  width: 100%;
  display: block;
  margin: auto;
}

.contact_table tr {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 40px;
}
.contact_table th {
  width: 260px;
  font-size: 22px;
  font-weight: normal;
}
.contact_table td {
  width: calc(97% - 260px);
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.contact_table .hissu {
  color: #E60012;
  font-size: 17px;
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
}

.contact_table .note {
  display: none;
}

.contact_table input {
  min-height: 60px;
  padding: 10px 20px;
}

span.note {
  color: #E60012;
}

.note_txt {
  font-size: 15px;
  margin-top: 20px;
  max-width: 250px;
  color: #E60012;
}

.td-address {
  width: 100%;
}

.contact_table td .td-address:not(:last-child) {
  margin-bottom: 15px;
}

#contact_phone_number {
  max-width: 600px;
  width: 100%;
}

#contact_email {
  width: 100%;
}

#contact_contents {
  width: 100%;
  padding: 10px 20px;
  min-height: 380px;
}

.contact_table .span-note {
  display: block;
  font-size: 16px;
  color: #E60012;
  line-height: 1.5;
  margin-top: 40px;
}

.contact_table td.td-block {
  display: block;
}

.contact_table td.td-submit {
  width: 100%;
  margin-top: 80px;
}

.btn_submit {
  display: block;
  margin: auto;
  background-color: white;
  border: solid 2px #004A80;
  width: 300px;
  min-height: 85px;
  font-size: 20px;
  font-weight: bold;
  transition: 0.35s all;
}
.btn_submit:hover {
  background-color: #004A80;
  color: white;
}

.contact_table .ec-errorMessage {
  margin-bottom: 20px;
  margin-top: 5px;
  font-size: 14px;
  font-weight: bold;
  color: #DE5D50;
}

@media screen and (max-width: 767px) {
  .contact_lead { margin: 100px auto; }
  .contact_mail { justify-content: center; }

  .contact_tel { flex-wrap: wrap; justify-content: center; }
  .contact_tel_num { display: block; width: 254px; margin: 15px auto; }

  .note_txt {
    margin-top: 0;
    margin-bottom: 10px;
    max-width: none;
  }
  
}

@media screen and (max-width: 600px) {
  .contact_ttl { margin-left: 20px; }
  .contact_tel .tel_icon { width: 50px; }

  .contact_mail { flex-wrap: wrap; }
  .contact_mail .mail_icon { width: 50px; }
  .contact_mail .span_sp { display: block; margin-top: 20px; }
  .contact_mail .span_pc { display: none; }

  .label-full { display: block; margin-bottom: 10px; font-size: 15px; }
  .contact_table td.td-address { display: block; }

  #contact_address_addr01,
  #contact_address_addr02 { width: 100%; }

  .btn_submit { min-height: 67px; }
}

/********************************************
* 特定商取引
*********************************************/
.trade_table,
.trade_table tbody {
  display: block;
  width: 100%;
  line-height: 1.7;
}

.trade_table tr {
  display: flex;
  border-bottom: solid 1px #231815;
}

.trade_table th,
.trade_table td {
  padding: 20px 10px 20px 30px;
}

.trade_table th {
  font-weight: normal;
  width: 25%;
}

.trade_table td {
  width: 75%;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .trade_table tr { flex-wrap: wrap; }
  .trade_table th,
  .trade_table td { width: 100%; }

  .trade_table th { 
    padding-bottom: 0;
    padding-left: 15px;
    font-weight: bold;
  }
  
  .trade_table td {
    display: block;
    padding-top: 7px;
    padding-bottom: 14px;
  }

}

/********************************************
* お支払いについて
*********************************************/
.payment_ttl1 {
  font-size: 22px;
  padding: 10px 0 30px;
}

.payment_ttl2 {
  color: white;
  background-color: #004A80;
  font-size: 20px;
  padding: 15px 25px;
}

.payment_ttl2_wrap {
  padding: 27px 0 60px 10px;
  line-height: 1.5;
}

.payment_ttl2_wrap p {
  padding-bottom: 22px;
}

.payment_list {
  padding-top: 25px;
}

.payment_list > li:not(:last-child) {
  padding-bottom: 37px;
}

.payment_list .case {
  padding-bottom: 20px;
}

.payment_list p {
  padding-left: 17px;
  padding-bottom: 0;
}

.daibiki_wrap {
  margin-top: 40px;
  border: solid 3px #004A80;
  border-radius: 7px;
  padding: 35px 5% 25px;
}

.daibiki_wrap > div {
  font-size: 20px;
  color: #004A80;
  text-align: center;
  margin-bottom: 25px;
  font-weight: bold;
}

/********************************************
* 商品一覧
*********************************************/
.child-title {
  color: black;
  background: #e8f5fd;
  border-left: 15px solid #004A80;
  border-right: 15px solid #004A80;
}

#page_product_list .child .list,
#page_homepage .child .list {
  position: relative;
  padding: 0 2.5%;
  background-image: url(/html/user_data/assets/img/underlayer/product-bg.webp);
  padding-top: 50px;
  margin-top: 50px;
  box-shadow: 0px 3px 6px #c3c3c3;
}

#page_product_list .child .list .product,
#page_homepage .child .list .product {
  width: 32.3%;
  margin-bottom: 20px;
  padding-top: 20px;
}

#page_product_list .child .list .product a,
#page_homepage .child .list .product a {
  transition: 0.2s all;
}

#page_product_list .child .list .product a:hover,
#page_homepage .child .list .product a:hover {
  opacity: 0.7;
  text-decoration: none;
}

.category_name {
  width: 100%;
  text-align: center;
  /*margin-bottom: 30px;*/
  font-size: 20px;
  font-weight: bold;
  font-family: 'Noto Serif JP', serif;
  min-height: 22px;
}



.detail-title {
  font-family: 'Noto Serif JP', serif;
}

.product_deco {
  position: absolute;
  left: 0;
  right: 0;
  top: -45px;
  margin: auto;
}

.product_echizen {
  margin-top: 80px;
  display: none;
}
.product_echizen.show {
  display: block !important;
}

.product_echizen.show.sp {
  display: none !important;
}

.kani_size_pc {
  margin-top: 80px;
  display: block !important;
  height: auto;
}
.kani_size_sp {
  display: none !important;
  height: auto;
}


.soldout_txt,
.soldout_txt span {
  color: #f00;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
.soldout_txt span {
  display: inline-block;
}

.product-title {
  font-family: 'Noto Serif JP', serif;
}

.sort {
    margin-top: 30px;
}

.sort .sort-btn {
  font-family: 'Noto Serif JP', serif;
}

.note-haisou {
  font-size: 16px;
  text-align: right;
  color: red;
  width: 100%;
  margin-bottom: 10px;
}

.price-preview {
  line-height: 1.4;
  border: 6px #D3DEE5 solid;
  margin-bottom: 10px;
  padding: 15px 5px 10px 10px;
}

.product-kikaku-price {
  color: #004A80;
  font-size: 17px;
  font-weight: bold;
  text-align: right;
}

.product-kikaku-price .sold {
  font-size: 14px;
}

.product-kikaku-price .tax {
  font-size: 12px;
}

.product-kikaku-time {
  color: #4b88d3;
  font-size: 17px;
  font-weight: 500;
}

.price-preview-note {
  color:#545454;
  font-size:16px;
  line-height: 1.2;
  margin-bottom: 20px;
}

.price-preview-note span {
  position: absolute;
  left: 0;
}

.ec-modal-box .ec-inlineBtn--action {
  background-color: #0473c4;
}

@media screen and (max-width: 767px) {
  .product-title { font-size: 18px; }
  .product_echizen.show.pc { display: none !important; }
  .product_echizen.show.sp { display: block !important; }
  .kani_size_pc { display: none !important; }
  .kani_size_sp { display: block !important; margin-top: 60px; }
}

@media screen and (max-width: 600px) {
  #page_product_list .child .list .product,
  #page_homepage .child .list .product { width: 49%; }
  .product_deco { 
    display: block;
    width: 256px;
    height: 50px;
    top: -15px; }
  #page_product_list .child .list,
  #page_homepage .child .list {
    margin-top: 20px;
    padding-top: 40px; }
  .sort { margin-top: 24px; }
  
  .note-haisou { font-size: 14px; }
}

@media screen and (max-width: 480px) {
  #page_product_list .child .list,
  #page_homepage .child .list {
    margin-top: 50px; }

  .note-haisou {
    position: absolute;
    top: -45px;
    right: 0; }

  #page_product_list .child .list .product,
  #page_homepage .child .list .product { 
    width: 100%;
    border-bottom: dotted 1px gray;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px; }
  #page_product_list .child .list .product:last-child ,
  #page_homepage .child .list .product:last-child {
    border-bottom: none;
    padding-bottom: 0; }
  #page_product_list .child .list .product a img,
  #page_homepage .child .list .product a img { 
    width: 75%;
    margin: auto;
    object-fit: cover;
    height: 150px;
    display: block; }
  .product-title { 
    font-size: 15px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto; }
  .sort { margin-bottom: 10px; }
  .sort .sort-btn { padding: 3px 15px; }
  .product-price { padding-top: 5px; }
}



/********************************************
* 商品詳細
*********************************************/
.cart-mini-btn:disabled {
  background-color: #DE5D50;
  opacity: 0.65;
}

.detail-price span,
.detail-cart-price span {
  color: #004A80;
}

.detail-cart {
  border: 6px solid #D3DEE5;
}
.cart-mini-qualitytext {
  color: black;
}
.cart-mini-qualitynum input {
  border-color: black;
  border-radius: 0;
}

.cart-mini-btn {
  background: #0473c4;
  transition: 0.35s all;
  font-family: 'Noto Serif JP', serif !important;
}
.cart-mini-btn:hover {
  background: #004A80;
}

.seiko-note {
  padding-bottom: 7px;
  font-size: 15px;
  color: #4b88d3;
  font-weight: bold;
  line-height: 1.4;
}


/********************************************
* ショッピングカート
*********************************************/
body#page_cart .cmn_ttl2 {
  text-align: center;
  margin-bottom: 40px;
}

.ec-cartHeader .ec-cartHeader__label {
  background: #004A80;
  color: white;
}

.ec-blockBtn--action {
  background-color: #0473c4;
  border-color: #0473c4;
  text-decoration: none;
  font-family: 'Noto Serif JP', serif;
}
.ec-blockBtn--cancel {
  font-family: 'Noto Serif JP', serif;
}

.ec-blockBtn--action:active, .ec-blockBtn--action.active, .open > .ec-blockBtn--action.dropdown-toggle,
.ec-blockBtn--action:hover,
.ec-blockBtn--action:focus,
.ec-blockBtn--action.focus {
  background-color: #004A80;
  border-color: #004A80;
  text-decoration: none;
}

.ec-blockBtn--action:active:hover,
.ec-blockBtn--action:active:focus,
.ec-blockBtn--action:active.focus,
.ec-blockBtn--action.active:hover,
.ec-blockBtn--action.active:focus,
.ec-blockBtn--action.active.focus,
.open > .ec-blockBtn--action.dropdown-toggle:hover,
.open > .ec-blockBtn--action.dropdown-toggle:focus,
.open > .ec-blockBtn--action.dropdown-toggle.focus {
  background-color: #004A80;
  border-color: #004A80;
  text-decoration: none;
}

.ec-blockBtn--action.disabled,
.ec-blockBtn--action[disabled],
fieldset[disabled] .ec-blockBtn--action {
  background-color: #DE5D50;
  border-color: #DE5D50;
}

.ec-blockBtn--action[disabled]:hover,
.ec-blockBtn--action[disabled]:focus,
.ec-blockBtn--action[disabled].focus,
fieldset[disabled] .ec-blockBtn--action:hover,
fieldset[disabled] .ec-blockBtn--action:focus,
fieldset[disabled] .ec-blockBtn--action.focus {
  background-color: #DE5D50;
  border-color: #DE5D50;
}

.ec-orderDelivery,
.ec-orderPayment {
  margin-bottom: 30px;
}

.Delivery_map {
  margin-top: 25px;
}

.Delivery_map p {
  font-size: 15px;
}

.Delivery_map ul li {
  position: relative;
  padding-left: 16px;
  font-size: 15px;
}

.Delivery_map ul li span {
  position: absolute;
  left: 0;
}

.Delivery_kome {
  color: #0689e7;
  font-size: 14px;
  margin-bottom: 10px;
}

.ec-cartRow__summary .ec-cartRow__name {
  color: #5252e7;
}

.ec-cartRow__summary .ec-cartRow__name a {
  color: #525263;
}

/********************************************
* スライダー
*********************************************/
#sync1 {
  /*margin-bottom: 100px;*/
  margin-bottom: 50px;
  display: block;
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

#sync1-sp {
  display: none;
  animation: fadeIn 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  
  20% {
      opacity: 0;
  }
  
  100% {
    opacity: 1;
  }
}

#sync1-sp {
  display: none;
}

#sync1 {
/*.owl-stage-outer {*/
  margin-top: 30px;
}

.owl-dots {
  text-align: center;
  bottom: 5px;
  width: 100%;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  padding-top: 10px;
}

.owl-dot {
  border-radius: 50px;
  height: 10px;
  width: 10px;
  display: inline-block;
  background: rgba(127,127,127, 0.5) !important;
  margin-left: 7px;
  margin-right: 7px;
}

.owl-dot.active {
  /* background-color: #ea5514 !important; */
  background-color: #004A80 !important;
}

.owl-dots {
  text-align: center;
}

.owl-carousel .owl-item img {
    height: auto;
}

#sync1 .item {
    opacity: 0;
}

#sync1 .owl-item .item {
    opacity: 1;
}

@media screen and (max-width: 1920px) {
    #sync1 {
        height: 28.5vw
    }
    
    #sync1 .item {
        height: 26.9vw;
    }
}

@media screen and (max-width: 768px) {
    #sync1 {
        height: 58.1vw
    }
    
    #sync1 .item {
        height: 54.1vw;
    }
}

@media screen and (max-width: 480px) {
  #sync1 {
    display: none;
  }
  #sync1-sp {
    display: block;
    padding-bottom: 15px;
  }
  #sync1-sp .top-img {
    margin-top: 10px;
    margin-bottom: 10px;
    display: block;
    width: 100%;
  }
  #sync1-sp .mini-slider {
      height: 31.6vw;
      width: 100%;
      display: block;
  }
  #sync1-sp .mini-slider .owl-stage-outer {
      height: 31.6vw;
  }
  
  #sync1-sp .item {
      opacity: 0;
  }
  #sync1-sp .owl-item .item {
      opacity: 1;
  }
  
  .top_bottom_content .mini-slider { display: none; }
}

/********************************************
* TOPページ
*********************************************/
.top_bottom_content {
  margin-top: 100px;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}

.top_bottom_ttl {
  position: relative;
  color: #004A80;
  font-size: 44px;
  text-align: center;
  justify-content: space-between;
  padding-top: 50px;
  padding-bottom: 170px;
}

.top_bottom_ttl img {
  max-width: 743px;
  width: 100%;
  margin: auto;
  display: block;
}

.top_bottom_ttl::before {
  content: '';
  background-image: url(/html/user_data/assets/img/top/top-17.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  top: -2vw;
  left: 0;
  margin: auto;
  position: absolute;
  width: 100%;
  height: 20vw;
  z-index: -1;
}

.top_bottom_content1,
.top_bottom_content2,
.top_bottom_content3 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  line-height: 1.8;
}

.top_bottom_content1 {
  padding-bottom: 150px;
}

.top_bottom_content1_left {
  position: relative;
  width: 44%;
}
.top_bottom_content1_right {
  width: 54%;
}
.top_bottom_content1_right .txtarea {
  max-width: 740px;
  margin-right: auto;
  padding-right: 10px;
}

.top_bottom_content1_right .txtarea .inner {
  max-width: 480px;
  margin-left: auto;
}
.top_bottom_content1_right .txtarea .inner p {
  padding-top: 40px;
  padding-left: 10px;
  padding-bottom: 65px;
}

.top_bottom_img1,
.top_bottom_img5,
.top_bottom_img6,
.top_bottom_img7,
.top_bottom_img8 {
  display: block;
  width: 100%;
  height: auto;
}

.top_bottom_img2 {
  display: block;
  width: 55%;
  margin-left: 10%;
  margin-top: 60px;
}

.top_bottom_img3 {
  position: absolute;
  display: block;
  width: 45%;
  right: 1%;
  bottom: -100px;
}

.top_bottom_img4 {
  display: block;
  width: 100%;
  height: auto;
  max-width: 470px;
}

.top_bottom_img6 {
    height: auto;
}

.top_bottom_content2 {
  padding-bottom: 150px;
}

.top_bottom_content2_left {
  width: 49%;
}

.top_bottom_content2_right {
  position: relative;
  width: 49%;
}

.top_bottom_content3 {
  padding-bottom: 300px;
}

.top_bottom_content2_left .txtarea {
  width: 100%;
  max-width: 630px;
  margin-left: auto;
  padding-left: 10px;
}

.top_bottom_content2_left .txtarea .inner {
  max-width: 563px;
}

.top_bottom_content2_left .txtarea .inner p {
  max-width: 460px;
  padding-top: 50px;
  padding-bottom: 100px;
}

.top_bottom_img9 {
  display: block;
  width: 60%;
  max-width: 560px;
  margin-right: 7%;
  margin-left: auto;
  margin-top: 55px;
}

.top_bottom_img10 {
  display: block;
  width: 37%;
  max-width: 350px;
  position: absolute;
  bottom: -120px;
  left: 3.5%;
}

.top_bottom_content3 {
  position: relative;
}
.top_bottom_content3::before {
  content: '';
  position: absolute;
  width: 929px;
  height: 659px;
  margin: auto;
  left: 20%;
  right: 0;
  top: 0;
  background-image: url(/html/user_data/assets/img/top/top-16.webp);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: -1;
}

.top_bottom_content3::after {
  content: '';
  background-image: url(/html/user_data/assets/img/top/top-17.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  width: 100%;
  height: 20vw;
  z-index: -1;
}

.top_bottom_content3_top {
  width: 100%;
}

.top_bottom_content3_top_flex {
  display: flex;
  justify-content: space-between;
}

.top_bottom_content3_top_flex_left {
  width: 45%;
}

.top_bottom_content3_top_flex_right {
  width: 50%;
}
.top_bottom_content3_top_flex .txtarea {
  max-width: 650px;
  margin-right: auto;
  padding-right: 10px;
}

.top_bottom_content3_top_flex .txtarea .inner {
  max-width: 540px;
  margin-left: auto;
}

.top_bottom_content3_top_flex .txtarea .inner p {
  padding-top: 40px;
  padding-left: 60px;
}

.top_bottom_img11 {
  width: 100%;
  display: block;
  margin-left: 6%;
  height: auto;
}

.top_bottom_img12 {
  max-width: 525px;
  display: block;
}

.top_bottom_content3_bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 70px;
  margin-top: -200px;
}

.top_bottom_img13 {
  display: block;
  width: 35.6%;
}
.top_bottom_img14 {
  display: block;
  width: 30.4%;
}
.top_bottom_img15 {
  display: block;
  width: 31.7%;
  z-index: -1;
}

.top_bottom_content .img_sp  {
  display: none;
}


@media screen and (max-width: 1620px) {
  .head_top_navi {
    display: none;
  }

  .top_bottom_content3_bottom {
    margin-top: -8vw;
  }
}

@media screen and (max-width: 1200px) {
  .top_bottom_content3::before { width: 80%; height: 54vw; }
}

@media screen and (max-width: 767px) {
  .top_bottom_content .img_pc { display: none !important; }
  .top_bottom_content .img_sp { display: block; }

  .top_bottom_ttl .img_sp,
  .top_bottom_content1_right .img_sp { margin: auto; width: 100%; }
  
  .top_bottom_ttl .img_sp { max-width: 445px; }
  .top_bottom_content1_right .img_sp { max-width: 630px; }

  .top_bottom_content1,
  .top_bottom_content2,
  .top_bottom_content3 { flex-wrap: wrap; }

  .top_bottom_content1_left,
  .top_bottom_content1_right,
  .top_bottom_content2_left,
  .top_bottom_content2_right { width: 100%; }

  .top_bottom_content1_left,
  .top_bottom_content2_right,
  .top_bottom_content3_top_flex_left { order: 2; display: flex; justify-content: space-between; }

  .top_bottom_content1_left > img,
  .top_bottom_content2_right > img { display: block; width: 49%; }

  .top_bottom_content1_right .txtarea,
  .top_bottom_content2_left .txtarea { padding: 0; }

  .top_bottom_content1_right .txtarea .inner,
  .top_bottom_content2_left .txtarea .inner,
  .top_bottom_content3_top_flex .txtarea .inner { width: 100%; margin: auto; }

  .top_bottom_content3_top_flex { flex-wrap: wrap; }
  
  .top_bottom_content3_top_flex_left,
  .top_bottom_content3_top_flex_right { width: 100%; }
  
  .top_bottom_content3_bottom { display: none; }

  .top_bottom_img11 { margin-left: 0; width: 60%; }
  .top_bottom_img11.img_sp { width: 38%; }

  .top_bottom_content1_right .txtarea .inner p,
  .top_bottom_content2_left .txtarea .inner p,
  .top_bottom_content3_top_flex .txtarea .inner p { padding-bottom: 30px; }

  .top_bottom_content1,
  .top_bottom_content2 { padding-bottom: 75px; }
  .top_bottom_content3 { padding-bottom: 120px; }

  .top_bottom_ttl { padding-bottom: 100px; }

  .top_bottom_content2_left .txtarea .inner p { padding-left: 10px; }

  .top_bottom_content3_top_flex .txtarea { margin-left: auto; }

  .top_bottom_content3_top_flex .txtarea .inner p { padding-left: 10px; max-width: 480px; }

  .top_bottom_ttl,
  .top_bottom_content1,
  .top_bottom_content2,
  .top_bottom_content3 { padding-left: 1rem; padding-right: 1rem; }

  .top_bottom_content3::before { left: 20%; opacity: 0.7; }
}

/********************************************
* マイページ
*********************************************/
body.mypage .child-content .ec-navlistRole .ec-navlistRole__navlist li:nth-child(2).ec-navlistRole__item  {
  display: none;
}



/********************************************
* 新着情報
*********************************************/
.orig_newslist {
  display: flex;
  flex-wrap: wrap;
  background-image: url(/html/user_data/assets/img/underlayer/product-bg.webp);
  border: 8px solid #F8F8F8 !important;
}

.orig_newslist .ec-newsRole__newsItem {
  width: 25%;
  padding: 5px;
}

.orig_newslist .ec-newsRole__news {
  padding-bottom: 10px;
}

.orig_newslist .ec-newsRole .ec-newsRole__newsHeading {
  display: block;
}

.orig_newslist .ec-newsRole__newsItem:not(:last-of-type) {
  border-bottom: none;
}

.orig_newslist .ec-newsRole__newsTitle {
  width: 100%;
  color: #333;
}

.orig_newslist .ec-newsRole__newsColumn {
  width: 100%;
  min-width: auto;
}

.news_thum_wrap {
  display: inline-block;
  width: 100%;
  height: 160px;
  overflow: hidden;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.35s all;
}

.orig_newslist .ec-newsRole__newsTitle:hover .news_thum_wrap {
  opacity: 0.7;
}

.news_thum_wrap img {
  height: 80px;
}

.orig_newslist .textarea {
  padding: 10px;
}

.orig_newslist .ec-newsRole__newsDate {
  font-size: 12px;
  padding-top: 5px;
  display: block;
  color: #7D7D7D;
}

.orig_newslist .ec-newsRole__newsHeading {
  height: 100%;
  background-color: white;
  box-shadow: 0px 3px 6px #c3c3c3;
}

.orig_newslist .ec-newsRole__newsItem.news_more_link {
  width: 100%;
  padding-top: 30px;
}

.news_more_link .btn-default {
  border: 1px solid #ccc !important;
}

.npsr-title {
  color: #000000;
  font-weight: 500;
  margin-bottom: 10px;
}

.npsr-content {
  color: #000000;
  padding-top: 30px;
}

.news_list_child {
  padding: 5px 0 15px;
}

.news_list_child a {
  display: flex;
  align-items: center;
}

.newslist_thum {
  width: 150px;
  height: 100px;
  margin-right: 20px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.news_desc_orig {
  color: #7D7D7D;
  font-size: 12px;
}

.orig_newslist a:hover {
  text-decoration: none;
}

.orig_newslist a:hover .news_title_orig {
  text-decoration: underline;
}

@media screen and (max-width: 1100px) {
  .orig_newslist {
    justify-content: center;
    padding: 15px 5px 0;
  }

  .orig_newslist .ec-newsRole__newsItem {
    width: 50%;
    max-width: 350px;
  }

  .orig_newslist .ec-newsRole__newsItem.news_more_link {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .orig_newslist .ec-newsRole__newsDate {
    margin-top: 0;
  }
}

@media screen and (max-width: 480px) {
  .orig_newslist {
    border: none !important;
    padding: 15px 8px 0;
  }
  .orig_newslist .ec-newsRole__newsItem {
    width: 100%;
  }
  .newslist_thum {
    width: 120px;
    height: 80px;
    margin-right: 12px;
  }
}

.ec-pagerRole > ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 15px;
}
.ec-pagerRole > ul li {
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 1px #999;
    margin: 2px 5px;
    padding: 2px 5px;
}
.ec-pagerRole > ul li.ec-pager__item--active {
    color: white;
    background: #999;
}