@charset "UTF-8";
/*レイアウトの基本定義
max960pxのcontainerを中央に配置し、コンテンツはsection毎に区切って配置。sectionの中に更にitemを内包させる。
sectionはflex、itemはblockに設定している。
最終sectionはbottomにmarginを設定し、footerに備えてある。----------*/
@media screen and (width >= 960px) {
  .container {
    display: block;
    margin: 0 auto;
    max-width: 960px;
    margin-bottom: 4em;
  }
  .section,
  .section_flex {
    display: flex;
    flex-shrink: 1;
    gap: 3em;
    justify-content: space-between;
    margin-top: 1em;
  }
  .section:nth-child(5) {
    margin-top: 4em;
  }
}
@media screen and (width < 960px) {
  .container {
    display: block;
    margin: 0 auto;
    padding: 0em, 4em, 0em, 4em;
  }
  .section {
    display: block;
    margin-top: 1em;
  }
  .section:nth-child(5) {
    margin-top: 2em;
  }
  .section_flex {
    display: flex;
    flex-shrink: 1;
    gap: 1em;
    justify-content: space-between;
    margin-top: 2em;
    margin-bottom: 2em;
  }
}
.item, .item_date, .item_char_right, .item_char_left {
  display: block;
  width: 100%;
}

.item_char_left {
  width: 20%;
}

.item_char_right {
  width: 80%;
}

.item_date {
  text-align: right;
}

.item_attach {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4em;
}

h1 {
  background-color: #fff !important;
  border-left: solid 8px #c00000;
  color: #333 !important;
}

h2 {
  background-color: #fff !important;
  padding: 0.6em 0em 0.6em 0.8em !important;
  margin-top: 2em !important;
  font-size: 1.5rem !important;
  color: #333 !important;
  border-bottom: solid 2px #c00000 !important;
}

h2:first-child {
  margin-top: 0 !important;
}

h3 {
  background-color: #efefef !important;
  padding: 0.6em 0em 0.6em 0.8em !important;
  margin: 0 !important;
  font-weight: normal;
  border: none !important;
}

.column {
  display: flex;
  margin-bottom: 0.6em;
}
.column .column_left {
  display: block;
  width: 30%;
  padding: 0.8em 0.8em 0.8em 1.2em;
  border-right: solid 1px #ccc;
}
.column .column_right {
  display: block;
  width: 70%;
  padding: 0.8em 0.8em 0.8em 1.2em;
}

.click_button_column {
  margin-top: 2em;
}

.pPanel {
  padding: 0.5em !important;
  line-height: 1.6em !important;
  font-size: 1rem !important;
}

img {
  max-width: 100%;
}

/* small{
    font-size: 0.5rem;
} */
/* html {
    //iPhone5などの画面幅320pxのときは基準のフォントサイズを10pxとし、ルートより下ではremを使用
    //あるいはiPhone5はもう考慮しなくても良いのかも
    font-size: min(calc((100vw - 320px) / 244 + 10px), 12px);
} */
body {
  line-height: 1.5em !important;
}

.acdCheck {
  display: none;
}

.acdLabel {
  border: solid 1px #ccc;
  padding: 1em;
  display: block;
  color: #333;
  font-size: 1.2em;
  font-weight: bold;
  position: relative;
  margin-bottom: 1px;
  cursor: pointer;
}

.acdLabel:nth-child(even) {
  background-color: #eeffee;
}

.acdLabel::after,
.acdLabel::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: 1.25em;
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.1s;
}

.acdLabel::after {
  transform: rotate(90deg);
}

.acdCheck:checked + .acdLabel::after {
  background-color: #fff;
}

.acdCheck:checked + .acdLabel::before {
  transform: rotate(90deg) !important;
}

.acdCheck:checked + .acdLabel {
  background-color: #004cc0;
  color: #fff;
}

.acdOpen {
  height: 0;
  opacity: 0;
  transition: 0.1s;
  visibility: hidden;
}
.acdOpen .acdTitle {
  display: flex;
  flex-wrap: wrap;
  flex-shrink: 0;
  margin-top: 0.5em;
  align-items: center;
}
.acdOpen .acdTitle.acdTitle:nth-child(1) {
  padding: 1em 0 1em 0;
  border-bottom: solid 1px #ccc;
}
.acdOpen .acdTitle.acdTitle:nth-child(even) {
  background-color: #eeffee;
}
.acdOpen .acdTitle div {
  display: flex;
  width: 25%;
  align-items: center;
  justify-content: center;
}
.acdOpen .acdTitle:nth-last-child(1) {
  margin-bottom: 2em;
}

.acdCheck:checked + .acdLabel + .acdOpen {
  display: block;
  height: auto;
  opacity: 1;
  visibility: visible;
} 
/*タブ切り替え全体のスタイル*/
.tabs {
  background-color: #fff;
  width: 100%;
  margin: 2em auto 0 auto;
}

/*タブのスタイル*/
.tab_item {
  width: 50%;
  margin-bottom: 1em;
  height: 3em;
  border-bottom: 4px solid #c00000;
  background-color: #fff;
  line-height: 3em;
  font-size: 1.2em;
  text-align: center;
  color: #333;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  cursor: pointer;
}

.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name=tab_item] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
  display: none;
  clear: both;
  overflow: hidden;
}

/*選択されているタブのコンテンツのみを表示*/
#all:checked ~ #all_content,
#reNumberOrder:checked ~ #reNumberOrder_content,
#design:checked ~ #design_content {
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #c00000;
  color: #fff;
}

.dl_news {
  padding: 0.2em 0em 0.4em 0.6em;
  border-bottom: 1px solid #333;
}

.date_time {
  display: inline-block;
  font-weight: bolder;
}

.label {
  border: 1px #ccc solid;
  border-radius: 0.3em;
  font-size: 0.8em;
  font-weight: bolder;
  background: #eeffee;
  display: inline-block;
  margin: 0 2em 1em 1em;
  padding: 0.1em 1em 0.1em 1em;
}

.newArrival::after {
  display: inline-block;
  content: "NEW";
  font-size: 0.8em;
  color: #c00000;
  border: 1px solid #c00000;
  padding: 0.1em 1em 0.1em 1em;
  margin: 0 0 0 2em;
}

/*登録産品ページのレイアウトの定義
----------*/
.click_button {
  display: block;
  padding: 0.8em !important;
  width: 13em;
  background: #c00000;
  margin-top: 0.2em;
  font-weight: bold;
  color: #fff;
  text-align: center;
  text-decoration: none;
}

.click_button:hover {
  background: #004cc0;
  color: #fff;
}/*# sourceMappingURL=style.css.map */