@charset "UTF-8";

/*-----------------------------------------------------------
Reset
-----------------------------------------------------------*/
html {
  font-size: 100%;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1;
}

div, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, img, ins, kbd, q, samp, sub, sup, var, b, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, caption, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, mark, audio, video, a {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  font-size: 100%;
  font: inherit;
}

span, small, em, time, i {
  font-style: normal;
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

a {
  border: medium;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

legend {
  color: #000;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.8em;
}

main, article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, picture {
  display: block;
}

li {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, select {
  vertical-align: middle;
}

abbr[title], dfn[title] {
  cursor: help;
}

del {
  text-decoration: line-through;
}

ins {
  font-style: oblique;
  text-decoration: none;
}

mark {
  background: transparent;
  font-style: normal;
}

img {
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: inherit;
}

/*-----------------------------------------------------------
Bace
-----------------------------------------------------------*/
/*------------
Body
--------------*/
*, *::before, *::after {
  box-sizing: border-box;
}

::-moz-selection {
  background: #d4dcd6;
}

::selection {
  background: #d4dcd6;
}

img {
  max-width: 100%;
  height: auto;
  -webkit-backface-visibility: hidden;
}

body, html {
  height: 100%;
}

body {
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 2;
  -webkit-text-size-adjust: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.link {
  color: #039BE5;
  text-decoration: underline;
}

.link:hover {
  text-decoration: none;
}

.no-link {
  pointer-events: none;
}

.anchor {
  margin-top: -50px;
  padding-top: 50px;
}

a[href^=tel] {
  cursor: default;
}

.container {
  margin: 0 auto;
  max-width: 848px;
  width: 90%;
}

.container.wide {
  max-width: 1024px;
}

/*------------
Header
--------------*/
.header {
  background: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  padding: 20px;
  position: relative;
}

.h-logo {
  max-width: 206px;
  width: 100%;
  margin-right: 80px;
}

/*------------
G-navi
--------------*/
.g-navi {
  flex: 1;
}

.pc-navi {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
}

.pc-navi>ul {
  display: flex;
}

.pc-navi .dropdown {
  position: relative;
}

.pc-navi .dropdown .child {
  background: #fff;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform: translate(-50%, -10px);
  transform: translate(-50%, -10px);
  text-align: left;
  transition: 0.4s ease-in-out;
  opacity: 0;
  padding: 25px 30px;
  width: 240px;
  z-index: 10;
}

.pc-navi .dropdown:hover .child {
  pointer-events: auto;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  opacity: 1;
}

.pc-navi-list01 {
  font-weight: bold;
}

.pc-navi-list01 li+li {
  margin-left: 2.5vw;
}

.pc-navi-list01 a {
  transition: 0.5s;
}

.pc-navi-list01 a:hover {
  opacity: 0.5;
}

.pc-navi-list02 {
  font-size: 13px;
  line-height: 1;
  color: #424242;
}

.pc-navi-list02 li+li::before {
  content: "|";
  margin: 0 15px;
}

.pc-navi-list02 a {
  transition: 0.5s;
}

.pc-navi-list02 a:hover {
  opacity: 0.5;
}

.sp-navi {
  display: none;
}

/*------------
Hero
--------------*/
.hero {
  padding: 80px 0;
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
  position: relative;
}

.hero-img {
  margin: 0 0 0 auto;
  width: 672px;
}

.hero-desc {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.hero-ttl {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 30px;
}

.hero-sub-ttl {
  font-size: 18px;
}

/*------------
Top contents
--------------*/
.t-ttl01 {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}

.t-ttl01::after {
  flex: 1;
  content: "";
  background: #BDBDBD;
  height: 1px;
  margin-left: 30px;
}

.t-ttl02 {
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}

.btn-style01 {
  display: inline-block;
  background: #039BE5;
  color: #fff;
  transition: 0.5s;
  padding: 3px 40px 3px 20px;
  transition: 0.5s;
}

.btn-style01::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 15px;
  vertical-align: 1.5px;
}

.btn-style01:hover {
  opacity: 0.5;
}

.sec01 {
  padding-bottom: 80px;
}

.sec02 {
  background: #E1F5FE;
  padding: 80px 0;
}

.list-post-item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}

.list-post-item::after {
  content: "";
  width: 31.25%;
}

.list-post-item li {
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
  width: 31.25%;
}

.list-gallery .list-img,
.list-post-item .list-img {
  border: 1px solid #707070;
  margin-bottom: 25px;
  transition: 0.5s;
}

.list-gallery .list-img:hover,
.list-post-item .list-img:hover {
  opacity: 0.5;
}

.list-gallery .list-img img,
.list-post-item .list-img img {
  -o-object-fit: cover;
  object-fit: cover;
  height: 200px;
  width: 100%;
}

.list-post-item .list-desc {
  margin-bottom: 15px;
}

.list-post-item .list-ttl {
  font-size: 17px;
  font-weight: bold;
}

.list-post-item .price {
  font-size: 12px;
}

.list-post-item .price .price-em {
  color: #039BE5;
  font-weight: bold;
  font-size: 17px;
  margin-right: 5px;
}

.list-post-item .price .tax {
  font-size: 1em;
}

.list-post-item .list-btn {
  margin-top: auto;
  text-align: center;
}

.list-post-item .list-btn a {
  display: block;
  background: #fff;
  border: 1px solid #039BE5;
  color: #039BE5;
  transition: 0.5s;
  padding: 3px 40px 3px 20px;
  transition: 0.5s;
}

.list-post-item .list-btn a::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #039BE5 #039BE5 transparent transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-right: 15px;
  vertical-align: 1.5px;
}

.list-post-item .list-btn a:hover {
  opacity: 0.5;
}

.sec03 {
  padding: 80px 0;
}

.sec04 {
  padding: 0 0 80px;
}

.list-post-news {
  margin: 0 0 40px;
}

.list-post-news li {
  border-bottom: 1px dotted #707070;
}

.list-post-news a {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding: 10px 0;
}

.list-post-news a:hover .ttl {
  text-decoration: underline;
}

.list-post-news time {
  color: #666;
  width: 90px;
  margin-right: 80px;
}

/*------------
Footer
--------------*/
.pagetop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1;
}

.pagetop a {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #039BE5;
  border-radius: 50px;
  background: #fff;
  display: inline-block;
  font-weight: bold;
  letter-spacing: 0.1em;
  padding: 20px 0;
  transition: 0.5s;
}

.pagetop a::before {
  content: "";
  display: inline-block;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #039BE5 #039BE5 transparent transparent;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin: 0 0 5px;
}

.pagetop a:hover {
  opacity: 0.5;
}

.footer {
  background: #039BE5;
  color: #fff;
  padding: 25px 0 15px;
}

.footer .container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  margin-bottom: 10px;
}

.f-utility {
  display: flex;
  justify-content: space-between;
  width: 65%;
}

.f-info {
  font-size: 13px;
  text-align: right;
  width: 48%;
}

.f-logo {
  font-size: 20px;
  margin-bottom: 15px;
}

.f-sns {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  line-height: 1;
  margin-top: 15px;
}

.f-sns li {
  margin-left: 15px;
}

.f-sns a {
  transition: 0.5s;
}

.f-sns a:hover {
  opacity: 0.5;
}

.f-map {
  width: 48%;
}

.f-map iframe {
  width: 100%;
  height: 200px;
}

.site-map {
  width: 30%;
}

.site-map ul li {
  font-size: 14px;
  line-height: 1.5;
  padding-left: 25px;
  position: relative;
}

.site-map ul li+li {
  margin-top: 5px;
}

.site-map ul li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 8px;
  height: 8px;
  border: 2px solid;
  border-color: #fff #fff transparent transparent;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.site-map a:hover {
  text-decoration: underline;
}

.copyright {
  text-align: center;
}

/*------------
Under layout
--------------*/
.page-ttl {
  background: #E1F5FE;
  display: flex;
  align-items: center;
  height: 200px;
  margin: 0 auto 15px;
  padding: 0 calc((100% - 1024px)/2);
}

.page-ttl h1 {
  color: #424242;
  font-weight: bold;
  font-size: 32px;
  letter-spacing: 0.15em;
}

.breadcrumb {
  margin-bottom: 80px;
}

.breadcrumb ul {
  margin: 0 auto;
  max-width: 1024px;
  width: 90%;
}

.breadcrumb ul li {
  display: inline;
}

.breadcrumb ul li+li:before {
  content: "/ ";
  padding: 0 5px;
  color: #ccc;
}

.u-contents p+p {
  margin-top: 15px;
}

/*------------
Under parts
--------------*/
.u-h2 {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}

.u-h2::after {
  flex: 1;
  content: "";
  background: #BDBDBD;
  height: 1px;
  margin-left: 30px;
}

.u-h3, .postdata h3 {
  border-bottom: 1px solid #ccc;
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
}

.u-h3::before, .postdata h3::before {
  content: "";
  background: #039BE5;
  width: 50px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  z-index: 1;
}

.u-h4, .postdata h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
}

.short+.short {
  margin-top: 50px;
}

.tall {
  padding: 0 0 80px;
}

.tall.bg01 {
  background: #E1F5FE;
  padding: 80px 0;
}

.l-imgR, .l-imgL {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.l-imgR .l-ttl, .l-imgL .l-ttl {
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 25px;
}

.l-imgR .l-img, .l-imgL .l-img {
  margin: 0 5% 0 0;
  width: 48%;
}

.l-imgR .l-desc, .l-imgL .l-desc {
  flex: 1;
}

.l-imgR {
  flex-direction: row-reverse;
}

.l-imgR .l-img {
  margin: 0 0 0 5%;
}

.fl-imgR,
.fl-imgL {
  width: 40%;
}

.fl-imgR {
  float: right;
  margin: 0 0 15px 35px;
}

.fl-imgL {
  float: left;
  margin: 0 35px 15px 0;
}

.l-col2 {
  display: flex;
  justify-content: space-between;
}

.l-col2 .item {
  width: 48%;
}

.l-style01 {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
}

.l-style01 .l-img {
  width: 672px;
}

.l-style01 .l-desc {
  flex: 1;
  margin-right: -100px;
  position: relative;
  z-index: 1;
}

.l-style01 .l-ttl {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
}

.u-map iframe {
  width: 100%;
  height: 300px;
  vertical-align: bottom;
}

.list-disc li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-disc li+li {
  margin-top: 5px;
}

.list-disc li:before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 12px;
  width: 5px;
  height: 5px;
}

.list-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: -25px;
}

.list-gallery::after {
  content: "";
  width: 32%;
}

.list-gallery li {
  width: 32%;
  margin: 0 0 25px;
}

.box-style01 {
  border: 1px solid #333;
  padding: 15px;
}

.box-style01 .box-ttl {
  font-weight: bold;
  margin-bottom: 10px;
}

.table-style01 {
  border-top: 4px solid #039BE5;
}

.table-style01 th, .table-style01 td {
  padding: 15px 0;
  border: 1px solid #dadada;
  border-width: 1px 0;
  vertical-align: middle;
}

.table-style01 th {
  text-align: left;
  vertical-align: top;
  padding-right: 15px;
}

.l-greeting {
  display: flex;
  align-items: center;
}

.l-greeting .l-img {
  width: 232px;
  margin-right: 35px;
}

.l-greeting .l-desc {
  flex: 1;
}

.l-greeting .l-ttl {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 15px;
}

.l-item-detail {
  display: flex;
  margin-bottom: 50px;
}

.l-item-detail .l-img {
  text-align: center;
  width: 50%;
  margin-right: 5%;
}

.l-item-detail .l-desc {
  flex: 1;
}

.l-item-detail .item-receipt {
  margin-bottom: 15px;
}

.l-item-detail .label {
  display: inline-block;
  background: #ccc;
  color: #fff;
  font-size: 13px;
  padding: 0 15px;
  margin-right: 10px;
}

.l-item-detail .label.pharmacy {
  background: #2196F3;
}

.l-item-detail .label.delivery {
  background: #E91E63;
}

.l-item-detail .l-box {
  border: 1px solid #ccc;
  padding: 25px;
  font-size: 14px;
  margin-bottom: 30px;
}

.l-item-detail .l-table {
  font-size: 12px;
  margin-bottom: 30px;
}

.l-item-detail .l-table th,
.l-item-detail .l-table td {
  border: 1px solid #ddd;
  padding: 6px 8px;
}

.l-item-detail .l-table th {
  background: #f6f7f7;
  text-align: left;
}

/*------------
カートパーツ
--------------*/
.itemsoldout {
  color: #039BE5;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 5px;
}

.l-item-detail em.tax {
  font-size: 1em;
}

input.skuquantity {
  -webkit-appearance: none;
  -moz-appearance: none;
  border: solid 1px #ccc;
  padding: 5px 10px;
  text-align: center;
  margin-right: 10px;
  max-width: 60px;
}

input.skubutton {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #039BE5 url(../images/share/icon_cart.svg) no-repeat center left 140px/24px;
  color: #fff;
  border: none;
  border-radius: 5px;
  height: 50px;
  width: 100%;
  padding: 0 50px;
  cursor: pointer;
  transition: 0.5s;
}

input.skubutton::before {
  content: "";
  background: url(../images/share/icon_cart.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  display: inline-block;
}

input.skubutton:hover {
  opacity: 0.5;
}

.field_cprice {
  font-size: 11px;
}

.u-contents #memberpages #memberinfo .member_submenu {
  display: flex;
  justify-content: center;
  margin: 40px auto;
}

#memberpages #memberinfo li+li {
  margin-left: 20px;
}

.member_submenu a,
.send input,
.link-btn {
  cursor: pointer;
  background: #039BE5;
  color: #fff;
  font-size: 16px;
  border: 0;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 25px 15px 40px;
  text-align: center;
  transition: .5s;
  width: 250px;
  line-height: 1.3;
  word-break: break-all;
  position: relative;
}

.continue_shopping_button,
.back_cart_button,
.back_to_delivery_button,
.back_to_customer_button {
  background: #666 !important;
}

.add-cart input {
  width: 56px;
  text-align: center;
  padding: 2px 0;
}

.u-intro-block.cart-ttl-block {
  padding: 40px 0;
}

.link-btn .skubutton {
  cursor: pointer;
  background: #039BE5;
  color: #FFF;
  border: 0;
  margin: 0;
}

.list-flow-01 {
  display: flex;
}

.list-flow-01>li {
  padding: 20px 0 0;
  width: 21%;
  position: relative;
  margin: 0 5% 20px 0;
  border: 1px solid #a6a6a6;
}

.list-flow-01>li::after {
  content: "";
  border-style: solid;
  border-width: 12px 0 12px 12px;
  border-color: transparent transparent transparent #a6a6a6;
  position: absolute;
  top: 50%;
  right: -32px;
  transform: translateY(-50%);
}

.list-flow-01>li:last-child {
  margin-right: 0;
}

.list-flow-01>li:last-child::after {
  content: none;
}

.list-flow-01 .num {
  color: #a6a6a6;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0.1em;
  position: absolute;
  top: -10px;
  left: 15px;
  z-index: 10;
  background: #FFFBF4;
}

.list-flow-01 .list-ttl {
  color: #999;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
  margin: 0 0 15px;
}

.list-flow-01>li.current,
.list-flow-01>li.current .num,
.list-flow-01>li.current .list-ttl {
  color: #039BE5;
  border-color: #039BE5;
}

.upbutton {
  margin-bottom: 20px;
}

#delivery-info table,
#customer-info table,
#cart table#cart_table {
  width: 100%;
  table-layout: fixed;
}

.u-contents #info-confirm .send,
.u-contents #delivery-info .send,
.u-contents #customer-info .send,
.u-contents #inside-cart .send {
  border-top: 0;
}

.u-contents #confirm_table h3,
.u-contents #customer-info h5 {
  background: none;
  color: #039BE5;
  font-size: 18px;
}

.u-contents #confirm_table .ttl {
  background: none;
  padding-top: 40px;
  display: block;
  border-bottom: 0;
}

.u-contents #confirm_table td,
.u-contents #confirm_table th,
.u-contents #delivery-info td,
.u-contents #delivery-info th,
.u-contents #customer-info td,
.u-contents #customer-info th {
  background: none;
  border: 0;
}

.u-contents #confirm_table .bdc {
  background: none;
  border-bottom: 1px dashed #CCC;
}

.contact-form table tr.other {
  border-bottom: 0;
}

.u-contents #confirm_table th,
.u-contents #delivery-info th,
.u-contents #customer-info th {
  vertical-align: middle;
  padding: 20px 40px 20px 0;
}

.u-contents #confirm_table td,
.u-contents #delivery-info td,
.u-contents #customer-info td {
  padding: 20px 0;
  font-size: 14px;
}

.u-contents #confirm_table .customer_form input,
.u-contents #delivery-info .customer_form input,
.u-contents #customer-info .customer_form input {
  margin-bottom: 10px;
}

.u-contents #confirm_table .customer_form input,
.u-contents #delivery-info .customer_form input,
.u-contents #delivery-info .customer_form tr.inp2 input,
.u-contents #delivery-info .customer_form tr.inp1 input,
.u-contents #delivery-info #delivery_table input,
.u-contents #delivery-info #delivery_table tr.inp2 input,
.u-contents #customer-info .customer_form input,
.u-contents #customer-info .customer_form tr.inp2 input,
.u-contents #customer-info .customer_form tr.inp1 input {
  width: 100%;
}

.u-contents #delivery-info .customer_form tr#furikana_row.inp1 input,
.u-contents #delivery-info .customer_form tr.inp1 .name_td input,
.u-contents #customer-info .customer_form tr#furikana_row.inp1 input,
.u-contents #customer-info .customer_form tr.inp1 .name_td input {
  width: 80%;
}

#info-confirm #cart .action {
  display: none;
}

.back_to_delivery_button,
.back_to_customer_button,
.back_cart_button {
  background: #999;
}

.send input[type=submit] {
  padding: 14px 15px;
}

.send input[type=submit]+input[type=submit] {
  margin-left: 20px;
}

#memberpages #memberinfo .history-area {
  height: auto;
  max-height: 700px;
}

#memberpages #memberinfo th {
  font-size: 14px;
}

/* ------
会員ログインページ
-------------*/
.u-contents #memberpages div.loginbox {
  max-width: 1024px;
  width: 100%;
  background: none;
  border: 0;
}

.u-contents #memberpages {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

.error_message {
  color: #F00;
}

.u-contents #memberpages input.loginpass,
.u-contents #memberpages input.loginmail {
  width: 100%;
  font-size: 16px;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f1f1f1;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
}

.u-contents .submit {
  text-align: center;
}

.u-contents .submit #member_login {
  cursor: pointer;
  background: #039BE5;
  color: #fff;
  font-size: 16px;
  border: 0;
  border-radius: 40px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 14px 25px 15px 40px;
  text-align: center;
  transition: .5s;
  width: 250px;
  line-height: 1.3;
  word-break: break-all;
  position: relative;
}

/*-----------------------------------------------------------
お問い合わせ
-----------------------------------------------------------*/
.contact-form table {
  border-collapse: collapse;
  margin: 0 0 50px;
  width: 100%;
}

.contact-form table tr {
  border-bottom: 1px dashed #CCC;
}

.contact-form table th {
  padding: 20px 40px 20px 0;
  vertical-align: middle;
  text-align: left;
}

.contact-form table td {
  padding: 20px 0;
}

.contact-form .hissu,
.contact-form .kakunin {
  display: inline-block;
  background: #E57373;
  border-radius: 3px;
  color: #fff;
  font-size: 10px;
  padding: 1px 8px;
  margin-left: 15px;
  vertical-align: 1px;
}

.contact-form .kakunin {
  background: #4CAF50;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form input[type=number],
.contact-form select,
.contact-form textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #f1f1f1;
  border: none;
  border-radius: 2px;
  font-size: 16px;
  padding: 10px;
  width: 100%;
}

.contact-form select::-ms-expand {
  display: none;
}

.contact-form textarea {
  height: 200px;
}

.contact-form input[type=file] {
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form input[type=number]:focus,
.contact-form textarea:focus,
.contact-form select:focus {
  outline: 1px solid #419caf;
}

.contact-form .select-wrap {
  position: relative;
}

.contact-form .select-wrap::after {
  content: "";
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #333 transparent transparent transparent;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 10;
}

.contact-form .mwform-radio-field,
.contact-form .mwform-checkbox-field {
  display: inline-block;
  margin-right: 15px;
  margin-left: 0 !important;
}

.contact-form .mwform-radio-field input[type=radio] {
  display: none;
}

.contact-form .mwform-radio-field label {
  display: inline-block;
  border-radius: 2px;
  position: relative;
  cursor: pointer;
  padding: 0 0 0 30px;
  line-height: 1;
}

.contact-form .mwform-radio-field label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 50%;
  box-sizing: border-box;
}

.contact-form .mwform-radio-field .mwform-radio-field-text:after {
  content: "";
  border-radius: 50%;
  background: #419caf;
  position: absolute;
  top: 50%;
  left: 5px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  transition: 0.4s;
  -webkit-transform: scale(0);
  transform: scale(0);
}

.contact-form .mwform-radio-field input[type=radio]:checked+.mwform-radio-field-text:after {
  -webkit-transform: scale(1);
  transform: scale(1);
}

.contact-form .mwform-checkbox-field input[type=checkbox] {
  display: none;
}

.contact-form .mwform-checkbox-field label {
  display: inline-block;
  cursor: pointer;
  line-height: 1;
  padding: 0 0 0 30px;
  position: relative;
}

.contact-form .mwform-checkbox-field label:before {
  content: "";
  background: #fff;
  border: 2px solid #ddd;
  border-radius: 3px;
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  box-sizing: border-box;
}

.contact-form .mwform-checkbox-field .mwform-checkbox-field-text:after {
  content: "";
  border-bottom: 3px solid #419caf;
  border-right: 3px solid #419caf;
  width: 7px;
  height: 12px;
  position: absolute;
  top: 1px;
  left: 7px;
  transition: 0.3s;
  -webkit-transform: scale(0) rotate(45deg);
  transform: scale(0) rotate(45deg);
}

.contact-form .mwform-checkbox-field input[type=checkbox]:checked+.mwform-checkbox-field-text:after {
  -webkit-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg);
}

.contact-form .mwform-tel-field {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-form .mwform-tel-field input[type=text] {
  width: 29%;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(1) {
  margin-right: 10px;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(2) {
  margin: 0 10px;
}

.contact-form .mwform-tel-field input[type=text]:nth-of-type(3) {
  margin-left: 10px;
}

.contact-form .mwform-zip-field input[type=text] {
  width: 15%;
  min-width: 80px;
  margin: 0 10px;
}

.contact-form .preferred-date {
  overflow: hidden;
}

.contact-form .preferred-date .date {
  width: 45%;
  float: left;
}

.contact-form .preferred-date .time {
  display: flex;
  align-items: center;
  float: right;
  width: 50%;
}

.contact-form .preferred-date .time select {
  width: 80px;
}

.contact-form .preferred-date .time .hour {
  margin: 0 10px;
}

.contact-form .preferred-date .time .minute {
  margin: 0 0 0 10px;
}

.contact-form .birthday {
  display: flex;
  align-items: center;
}

.contact-form .birthday select {
  width: 100px;
}

.contact-form .birthday .year {
  margin: 0 10px;
}

.contact-form .birthday .month {
  margin: 0 10px;
}

.contact-form .birthday .day {
  margin: 0 0 0 10px;
}

.contact-form .submit-btn {
  display: flex;
  justify-content: center;
}

.contact-form .submit-btn [type=submit] {
  -webkit-appearance: none;
  background: #039BE5;
  border: 1px solid #039BE5;
  border-radius: 0;
  outline: none;
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  padding: 22px 40px;
  letter-spacing: 3px;
  transition: 0.3s;
  width: 250px;
}

.contact-form .submit-btn [type=submit]:hover {
  opacity: 0.7;
}

.contact-form .submit-btn [type=submit].back-btn {
  background: #999;
  border: none;
  margin-right: 50px;
}

.mw_wp_form_confirm .select-wrap::after {
  display: none;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .contact-form table {
    margin: 0 0 30px;
  }

  .contact-form table tr {
    border-bottom: 1px dashed #CCC;
  }

  .contact-form table th, .contact-form table td {
    display: block;
  }

  .contact-form table th {
    padding: 15px 0 10px;
  }

  .contact-form table td {
    padding: 0 0 15px;
  }

  .contact-form .preferred-date {
    overflow: hidden;
  }

  .contact-form .preferred-date .date {
    width: 100%;
    float: none;
    margin: 0 0 10px;
  }

  .contact-form .preferred-date .time {
    width: 100%;
  }

  .contact-form .birthday select {
    width: auto;
    padding: 15px 30px 15px 15px;
  }

  .contact-form .birthday .year {
    margin: 0 5px;
  }

  .contact-form .birthday .month {
    margin: 0 5px;
  }

  .contact-form .birthday .day {
    margin: 0 0 0 5px;
  }

  .contact-form .submit-btn [type=submit] {
    padding: 15px;
    width: 250px;
  }

  .contact-form .submit-btn [type=submit].back-btn {
    margin-right: 25px;
  }
}

/*------------
個人情報保護方針
--------------*/
.dl-privacy dt {
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding: 0 0 5px;
  margin: 0 0 15px;
}

.dl-privacy dd+dt {
  margin-top: 30px;
}

.list-privacy li {
  position: relative;
  padding: 0 0 0 15px;
}

.list-privacy li+li {
  margin-top: 3px;
}

.list-privacy li:before {
  background: #333;
  border-radius: 50%;
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
}

/*-----------------------------------------------------------
投稿
-----------------------------------------------------------*/
/*詳細ページ*/
.l-post-single {
  margin-bottom: 80px;
}

.l-post-single .l-ttl {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 40px;
}

.l-post-single .l-ttl::after {
  flex: 1;
  content: "";
  background: #BDBDBD;
  height: 1px;
  margin-left: 30px;
}

.l-post-single .post-data {
  text-align: right;
  margin: 0 0 20px;
}

.l-post-single .post-data time {
  display: inline-block;
  color: #98918c;
  font-size: 14px;
}

.l-post-single .post-data .category {
  border: 1px solid #039BE5;
  color: #039BE5;
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  padding: 5px 8px 4px;
  margin: 0 10px 0 0;
}

/*詳細ページ*/
.postdata p, .postdata ul, .postdata ol {
  margin-bottom: 15px;
}

.postdata a {
  text-decoration: underline;
}

.postdata a:hover {
  text-decoration: none;
}

.postdata strong {
  font-weight: bold;
}

.postdata em {
  font-style: italic;
}

.postdata ul li {
  list-style: inside disc;
}

.postdata ul li>ul {
  margin: 0 0 0 15px;
}

.postdata ol li {
  list-style: inside decimal;
}

.postdata ol li>ol {
  margin: 0 0 0 15px;
}

/*ページャー*/
.post-number {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.post-number span, .post-number a {
  display: inline-block;
  color: #039BE5;
  border: 1px solid #039BE5;
  font-size: 13px;
  text-align: center;
  min-width: 30px;
  height: 30px;
  line-height: 30px;
  padding: 0 4px;
  margin: 0 4px;
}

.post-number a:hover {
  background: #039BE5;
  color: #fff;
}

.post-number .current {
  background: #039BE5;
  color: #fff;
}

.post-number-single {
  display: flex;
  justify-content: center;
  text-align: center;
}

.post-number-single a {
  display: inline-block;
}

.post-number-single .all {
  background: #039BE5;
  border: 1px solid #039BE5;
  color: #fff;
  font-size: 13px;
  line-height: 28px;
  max-width: 200px;
  margin: 0 10px;
  height: 30px;
  width: 100%;
}

.post-number-single .all:hover {
  background: #fff;
  color: #039BE5;
}

.post-number-single .prev,
.post-number-single .next {
  border: 1px solid #039BE5;
  width: 30px;
  height: 30px;
  position: relative;
}

.post-number-single .prev::before,
.post-number-single .next::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  border-bottom: 1px solid #039BE5;
  margin: 0 auto;
  top: 12px;
}

.post-number-single .prev:hover,
.post-number-single .next:hover {
  background: #039BE5;
}

.post-number-single .prev:hover::before,
.post-number-single .next:hover::before {
  border-color: #fff;
}

.post-number-single .prev::before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 13px;
  border-left: 1px solid #039BE5;
}

.post-number-single .next::before {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 13px;
  border-right: 1px solid #039BE5;
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*詳細ページ*/
  .l-post-single .l-ttl {
    margin: 0 0 30px;
  }

  .l-post-single .l-ttl::after {
    display: none;
  }
}

/*-----------------------------------------------------------
Utility
-----------------------------------------------------------*/
.clearfix:after {
  clear: both;
  content: "";
  display: block;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.fade {
  transition: 0.5s;
}

.fade:hover {
  opacity: 0.5;
}

.fs11 {
  font-size: 11px;
}

.bold, strong {
  font-weight: bold;
}

.red {
  color: #F44336;
}

.marker {
  background: linear-gradient(transparent 50%, #ffe7a5 50%);
}

.notice {
  font-size: 14px;
  text-indent: -1.5em;
  padding: 0 0 0 1.5em;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mbS {
  margin-bottom: 15px !important;
}

.mbM {
  margin-bottom: 30px !important;
}

.mbL {
  margin-bottom: 60px !important;
}

.mbXL {
  margin-bottom: 80px !important;
}

.mb30{
	margin-bottom: 30px;
}

.mt0 {
  margin-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.sp-map iframe {
  vertical-align: bottom;
}

.video {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.video iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 800px) and (min-width: 0px) {
  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .sp-tac {
    text-align: center !important;
  }

  .sp-tar {
    text-align: right !important;
  }

  .sp-tal {
    text-align: left !important;
  }

  .mbL {
    margin-bottom: 30px !important;
  }

  .mbXL {
    margin-bottom: 50px !important;
  }

  .sp-map {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    overflow: hidden;
  }

  .sp-map iframe,
  .sp-map object,
  .sp-map embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

@media screen and (max-width: 800px) and (min-width: 0px) {

  /*-----------------------------------------------------------
  Responsive
  -----------------------------------------------------------*/
  /*-------------
  Body
  -------------*/
  body {
    line-height: 1.8;
  }

  /*------------
  Header
  --------------*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    padding: 0 2.5vw;
    height: 60px;
    width: 100%;
    z-index: 5;
  }

  .h-logo {
    max-width: 150px;
    width: 100%;
    margin: 0 auto;
  }

  /*------------
  G-navi
  --------------*/
  .pc-navi {
    display: none;
  }

  .sp-navi {
    display: block;
  }

  .humberger {
    cursor: pointer;
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 60px;
    height: 60px;
    transition: 0.5s;
    z-index: 150;
  }

  .humberger span {
    background: #333;
    position: absolute;
    left: 50%;
    width: 25px;
    height: 2px;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: 0.4s;
  }

  .humberger span:nth-of-type(1) {
    top: 18px;
  }

  .humberger span:nth-of-type(2) {
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .humberger span:nth-of-type(3) {
    bottom: 18px;
  }

  .sp-navi-contents {
    background: #fff;
    border-left: 3px solid #039BE5;
    padding: 20px 0 30px 20px;
    width: calc(100vw - 60px);
    height: 100%;
    -webkit-text-size-adjust: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    right: calc(-100vw - 60px);
    transition: 0.5s;
    overflow: scroll;
    z-index: 200;
  }

  .sp-navi-contents.is-open {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    right: 0px;
  }

  .sp-close {
    background: #039BE5;
    border-radius: 3px;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 40px;
    height: 40px;
    z-index: 10;
  }

  .sp-close::before, .sp-close::after {
    content: "";
    background: #fff;
    width: 25px;
    height: 2px;
    position: absolute;
    top: 20px;
    left: 7px;
  }

  .sp-close::before {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }

  .sp-close::after {
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }

  .sp-navi-list {
    margin: 0 0 30px;
  }

  .sp-navi-list>li {
    border-bottom: 1px solid #e2e2e4;
  }

  .sp-navi-list>li>a {
    display: block;
    font-size: 16px;
    font-weight: bold;
    padding: 10px 0;
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown {
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown::after {
    background: url(../images/share/ico_arrow_down.svg) no-repeat 50% 50%/30px;
    content: "";
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    transition: 0.35s;
    width: 48px;
    height: 48px;
  }

  .sp-navi-list>li.sp-dropdown.is-on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sp-navi-list>li.sp-dropdown .child ul {
    padding: 0 0 15px;
  }

  .sp-navi-list>li.sp-dropdown .child ul>li+li {
    margin-top: 3px;
  }

  .sp-navi-list>li.sp-dropdown .child ul>li>a {
    display: block;
    padding: 0 0 0 15px;
    position: relative;
  }

  .sp-navi-list>li.sp-dropdown .child ul>li>a:before {
    content: "";
    background: #000;
    width: 5px;
    height: 2px;
    position: absolute;
    left: 0;
    top: 12px;
  }

  .sp-navi-list .is-on::after {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  .sp-navi-other {
    padding: 0 20px 0 0;
  }

  /*------------
  Hero
  --------------*/
  .hero {
    padding: 0 0 50px;
    margin: 60px auto 0;
    width: 100%;
  }

  .hero-img {
    margin: 0 0 30px;
    width: 100%;
  }

  .hero-desc {
    position: static;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    padding: 0 5vw;
  }

  .hero-ttl {
    font-size: 22px;
    margin-bottom: 15px;
  }

  .hero-sub-ttl {
    border-left: 1px solid #039BE5;
    padding-left: 5vw;
    font-size: 13px;
  }

  /*------------
  Top contents
  --------------*/
  .btn-style01 {
    display: block;
    text-align: center;
    padding: 10px 40px 10px 20px;
  }

  .t-ttl01 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .t-ttl01::after {
    margin-left: 25px;
  }

  .sec01 {
    padding-bottom: 50px;
  }

  .sec02 {
    padding: 50px 0;
  }

  .sec03 {
    padding: 50px 0;
  }

  .list-post-item {
    display: block;
    margin-bottom: 30px;
  }

  .list-post-item::after {
    display: none;
  }

  .list-post-item li {
    margin-bottom: 50px;
    width: 100%;
  }

  .list-gallery .list-img img,
  .list-post-item .list-img img {
    height: 20vh;
    min-height: 200px;
    width: 100%;
  }

  .list-post-item .list-btn a {
    padding: 10px 40px 10px 20px;
  }

  .sec04 {
    padding: 0 0 50px;
  }

  .list-post-news {
    margin: 0 0 40px;
  }

  .list-post-news a {
    font-size: 14px;
  }

  .list-post-news time {
    margin-right: 25px;
  }

  /*------------
  Footer
  --------------*/
  .pagetop {
    bottom: 15px;
    right: 40px;
  }

  .pagetop a {
    font-size: 12px;
    padding: 20px 0;
  }

  .pagetop a::before {
    top: 8px;
    width: 6px;
    height: 6px;
    margin: 0 0 5px;
  }

  .footer {
    padding: 50px 0 15px;
  }

  .footer .container {
    display: block;
    margin-bottom: 30px;
  }

  .f-utility {
    display: block;
    width: 100%;
  }

  .f-info {
    text-align: left;
    width: 100%;
  }

  .f-logo {
    margin-bottom: 15px;
  }

  .f-sns {
    justify-content: flex-start;
    margin-bottom: 25px;
  }

  .f-sns li {
    margin: 0 15px 0 0;
  }

  .f-map {
    width: 100%;
    margin-bottom: 30px;
  }

  .f-map iframe {
    width: 100%;
    height: 250px;
  }

  .site-map {
    width: 100%;
  }

  .copyright {
    text-align: center;
  }

  /*------------
  Under layout
  --------------*/
  .page-ttl {
    margin: 60px auto 15px;
    padding: 0 5vw;
  }

  .page-ttl h1 {
    font-size: 25px;
  }

  .breadcrumb {
    overflow: auto;
    white-space: nowrap;
    margin-bottom: 50px;
  }

  /*------------
  Under parts
  --------------*/
  .short+.short {
    margin-top: 30px;
  }

  .tall {
    padding: 0 0 50px;
  }

  .tall.bg01 {
    padding: 50px 0;
  }

  .l-imgR, .l-imgL {
    display: block;
  }

  .l-imgR .l-ttl, .l-imgL .l-ttl {
    margin-bottom: 15px;
  }

  .l-imgR .l-img, .l-imgL .l-img {
    margin: 0 0 30px;
    text-align: center;
    width: 100%;
  }

  .l-imgR .l-img {
    margin: 0 0 30px;
  }

  .fl-imgR,
  .fl-imgL {
    float: none;
    margin: 0 0 15px;
    width: 100%;
  }

  .l-col2 {
    display: block;
  }

  .l-col2 .item {
    width: 100%;
  }

  .l-col2 .item+.item {
    margin-top: 30px;
  }

  .l-style01 {
    display: block;
  }

  .l-style01 .l-img {
    width: 100%;
    margin-bottom: 30px;
  }

  .l-style01 .l-desc {
    margin-right: 0;
  }

  .l-style01 .l-ttl {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .u-map iframe {
    height: 250px;
  }

  .list-gallery {
    justify-content: space-between;
    margin-bottom: -4%;
  }

  .list-gallery::after {
    display: none;
  }

  .list-gallery li {
    width: 48%;
    margin: 0 0 4%;
  }

  .table-style01 th, .table-style01 td {
    font-size: 14px;
    padding: 10px;
  }

  .table-style01.sp-block th, .table-style01.sp-block td {
    border: none;
    display: block;
    height: auto !important;
  }

  .table-style01.sp-block th {
    padding: 10px 0 5px;
  }

  .table-style01.sp-block td {
    border: 1px solid #dadada;
    border-width: 0 0 1px;
    padding: 0 0 10px;
  }

  .l-greeting {
    display: block;
  }

  .l-greeting .l-img {
    width: 232px;
    margin: 0 auto 25px;
  }

  .l-greeting .l-ttl {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .l-item-detail {
    display: block;
    margin-bottom: 50px;
  }

  .l-item-detail .l-img {
    width: 100%;
    margin: 0 0 30px;
  }

  .l-item-detail .l-table {
    font-size: 12px;
  }

  .l-item-detail .l-table th {
    width: 100px;
  }

  input.cart-link-btn {
    background: #039BE5 url(../images/share/icon_cart.svg) no-repeat center left 15px/24px;
  }

  /* cart */
  .list-flow-01 {
    flex-wrap: wrap;
  }

  .list-flow-01>li {
    width: 100%;
    margin: 0 0 40px 0;
  }

  .list-flow-01>li::after {
    top: initial;
    bottom: -30px;
    right: 50%;
    transform: rotate(90deg)
  }

  .cart-link-btn {
    margin: 0 auto;
    display: block;
    -webkit-appearance: none;
  }

  .u-contents #memberpages #memberinfo .member_submenu {
    flex-wrap: wrap;
  }

  .u-contents #memberpages #memberinfo li+li,
  .send input[type=submit]+input[type=submit] {
    margin-left: 0;
  }

  .u-contents #memberpages #memberinfo li,
  .send input {
    margin-bottom: 10px;
  }

  /* Cart */
  #cart table#cart_table thead {
    display: none;
  }

  .u-contents #cart>tbody tr {
    display: block;
    margin-bottom: 40px;
  }

  .u-contents #cart th,
  .u-contents #cart td {
    /* reset */
    border-top: 1px solid #FFFBF4;
    font-size: 15px;
    padding: 10px;
    text-align: center;
  }

  .u-contents #cart .upbutton {
    padding-right: 0;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
  }

  .u-contents #cart .upbutton input {
    margin-top: 10px;
  }

  .u-contents #cart td {
    display: flex;
    width: 100%;
  }

  #cart_table>tbody>tr td:before {
    display: block;
    width: 120px;
    min-width: 120px;
    color: #999;
    font-weight: bold;
    text-align: left;
  }

  #cart_table tr>.thumbnail img {
    display: block;
    margin: 0 auto;
  }

  #cart_table>tbody>tr>td.num:before {
    content: "No.";
  }

  #cart_table>tbody>tr>td.productname:before {
    content: "商品名";
  }

  #cart_table>tbody>tr>td.unitprice:before {
    content: "単価";
  }

  #cart_table>tbody>tr>td.quantity:before {
    content: "数量";
  }

  #cart_table>tbody>tr>td.subtotal:before {
    content: "金額（税抜）";
  }

  #cart_table>tbody>tr>td.stock:before {
    content: "在庫状態";
  }

  #cart_table tfoot {
    margin-top: 20px;
  }

  #cart_table>tfoot>tr>.thumbnail,
  #cart_table>tfoot>tr>.num,
  #cart_table>tfoot>tr>.stock,
  #cart_table>tfoot>tr>.action {
    display: none;
  }

  #cart_table>tfoot>tr>.aright {
    background: none;
    color: #999;
    font-weight: bold;
    border-bottom: 0;
    display: block;
    width: 100%;
    padding: 0;
    margin-top: 20px;
    text-align: center;
  }

  #cart_table>tfoot>tr>.subtotal {
    margin-top: 0;
    color: #F00;
    font-size: 18px;
    padding-bottom: 20px;
  }

  .u-contents #confirm_table th,
  .u-contents #delivery-info th,
  .u-contents #customer-info th {
    display: block;
    width: 100%;
    padding: 10px 0 0;
  }

  .u-contents #cart_table .action {
    justify-content: center;
    border-bottom: 0;
  }

  .u-contents #cart input.quantity {
    font-size: 16px;
    width: 60px;
  }

  #info-confirm #cart_table .total_items_price,
  #info-confirm #cart_table .shipping_charge,
  #info-confirm #cart_table .tax,
  #info-confirm #cart_table .total_full_price {
    display: flex;
  }

  #info-confirm #cart_table .total_full_price {
    padding-bottom: 20px;
  }

  #info-confirm #cart_table .totallabel {
    width: 30%;
    border-right: 0;
    text-align: left;
    padding: 0 10px;
  }

  #info-confirm #cart_table .totalend {
    flex: 1 1 0%;
    text-align: right;
    border-right: 0;
    padding: 0 10px;
  }

  #info-confirm #cart_table .total_full_price .totalend {
    color: #F00;
  }

  .u-contents #confirm_table th {
    width: 35%;
    display: inline-block;
    font-size: 14px;
    padding: 20px 0;
  }

  .u-contents #confirm_table td {
    display: inline-block;
    width: 65%;
  }

  .u-contents .send {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
    align-items: center;
    margin-bottom: 20px;
  }

  .u-contents .send .cart-link-btn {
    margin: 0;
  }

  .u-contents .send .back_to_top_button,
  .u-contents .send .checkout_button {
    margin-bottom: 20px;
  }

  .cart-link-btn+.cart-link-btn {
    margin-left: 0;
  }

  .continue_shopping_button {
    background: #999;
  }

  .u-contents #cart #point_table td {
    height: auto;
  }
}
