@charset "UTF-8";

/* 変数 */

/* mediaquery */

/* font */

/* mixin */

html {
  color: #000;
  background: #FFF;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
select,
main,
address {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
  box-sizing: border-box;
}

a {
  box-sizing: border-box;
}

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

fieldset,
img {
  border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

q:before,
q:after {
  content: '';
}

abbr,
acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  font-family: ヒラギノ角ゴ Pro W3, Hiragino Kaku Gothic Pro, 游ゴシック Medium, 游ゴシック, YuGothic, Noto Sans Japanese, Meiryo, メイリオ, ＭＳ Ｐゴシック, Verdana, Arial, sans-serif;
  -webkit-text-size-adjust: 100%;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

a img {
  opacity: 1;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

p {
  line-height: 180%;
}

ol {
  padding-left: 2rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 8px 10px;
  border: 1px solid  #b7b7b7;
}

select {
  padding: 8px 10px;
  border: 1px solid  #b7b7b7;
}

textarea {
  width: 100%;
  height: 200px;
}

.col {
  display: -webkit-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
}

.col.is_oneline {
  flex-wrap: nowrap;
  -webkit-box-pack: justify;
  justify-content: space-between;
}

.col_contents {
  width: 100%;
  margin-bottom: 30px;
}

.is_oneline .col_contents {
  margin-bottom: 0;
}

.is_oneline .col_contents + .col_contents {
  margin-left: 2%;
}

.is_2 .col_contents {
  max-width: 48%;
}

.is_2 .col_contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}

.is_3 .col_contents {
  max-width: 32%;
}

.is_3 .col_contents:not(:nth-child(3n + 1)) {
  margin-left: calc(2% - 1px);
}

.is_4 .col_contents {
  max-width: 23%;
}

.is_4 .col_contents:not(:nth-child(4n + 1)) {
  margin-left: calc(2.6% - 1px);
}

.col_contents_title {
  margin-bottom: 5px;
}

.col_contents_text {
  margin-top: 5px;
}

.flImgContents_img {
  max-width: 37%;
  width: 100%;
}

.flImgContents_img.is_s {
  max-width: 200px;
}

.flImgContents_img.is_l {
  max-width: 47%;
}

.flImgContents_img.is_fr {
  float: right;
  margin: 0 0 20px 40px;
}

.flImgContents_img.is_fl {
  float: left;
  margin: 0 40px 20px 0;
}

/*　テキスト、フォント　*/

.text_s {
  font-size: 85%;
}

.text_l {
  font-size: 120%;
}

.cl_red {
  color: #ff0000;
}

/* リスト */

.list_normal li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}

.list_normal li::before {
  content: '●';
  margin-right: 5px;
  font-size: 13px;
  font-family: sans-serif;
  color: #ef4d63;
}

.list_number {
  padding: 0 0 0 25px;
}

.list_number li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list_numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}

.list_numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

/* 定義リスト */

.dl_normal dt {
  font-weight: bold;
  font-size: 1.8rem;
}

.dl_normal dd {
  margin-bottom: 30px;
}

.al_r {
  text-align: right;
}

.al_c {
  text-align: center;
}

.full {
  width: 100%;
}

.size_30 {
  width: 30%;
}

.size_60 {
  width: 60%;
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.contents_center {
  max-width: 1000px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

/*　セクション　*/

.section_01 {
  margin-top: 30px;
  margin-bottom: 40px;
}

.section_01:first-child {
  margin-top: 0;
}

.section_02 {
  margin-top: 40px;
  margin-bottom: 70px;
}

.section_02:first-child {
  margin-top: 0;
}

.section_03 {
  margin-top: 40px;
  margin-bottom: 100px;
}

.section_03:first-child {
  margin-top: 0;
}

.small_section {
  margin-top: 20px;
  margin-bottom: 20px;
}

/* テーブル */

.nowrap {
  white-space: nowrap;
}

.caption {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 5px;
}

.table_01 {
  border-collapse: collapse;
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

.table_01 tr {
  border-bottom: 2px dotted #ccc;
}

.table_01 th,
.table_01 td {
  padding: 13px;
}

.table_01 th {
  background: #fcfbf5;
  color: #ef4d63;
}

.table_01 a {
  color: #019ab3;
}

.wfix {
  table-layout: fixed;
}

.soudan_inner {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  align-items: flex-start;
}

.breadcrum-list.soubanBreadcrumList {
  margin-top: 16px;
  margin-bottom: 28px;
}

.breadcrum-list.soubanBreadcrumList li {
  float: left;
}

.breadcrum-list.soubanBreadcrumList li + li {
  margin-left: 15px;
}

.breadcrum-list.soubanBreadcrumList li + li:before {
  content: ">";
  padding-right: 15px;
}

.breadcrum-list.soubanBreadcrumList li a {
  font-size: .8rem;
  color: #737373;
}

.qRoom {
  width: 100%;
  max-width: 920px;
  margin-bottom: 150px;
}

.qRoom_mainTitle {
  position: relative;
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  width: 100%;
  max-width: 920px;
  margin: 8px auto 23px;
  padding-bottom: 20%;
  text-align: center;
  background: url(../img/bg_title.png) center center/contain no-repeat;
}

.qRoom_mainTitle:before {
  content: "";
  position: absolute;
  bottom: 4%;
  left: 8%;
  width: 100%;
  height: 100%;
  background: url(../img/icon_women.png) left top/contain no-repeat;
}

.qRoom_mainTitle:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 6%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  max-width: 144px;
  width: 100%;
  max-height: 113px;
  height: 100%;
  background: url(../img/icon_stationery.png) left top/contain no-repeat;
}

.qRoom_mainTitle_inner {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 100%;
}

.qRoom_mainTitle_main {
  display: inline-block;
  margin-bottom: 27px;
  line-height: 1;
  font-size: 3.9rem;
  font-weight: bold;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-shadow: #fff 2px 0px,#fff -2px 0px, #fff 0px -2px,#fff 0px 2px, #fff 2px 2px ,#fff -2px 2px, #fff 2px -2px,#fff -2px -2px, #fff 1px 2px,#fff -1px 2px, #fff 1px -2px,#fff -1px -2px, #fff 2px 1px,#fff -2px 1px, #fff 2px -1px,#fff -2px -1px;
}

.qRoom_mainTitle_sub {
  display: block;
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-weight: 600;
  text-shadow: #fff 2px 0px 10px,#fff -2px 0px 10px, #fff 0px -2px 10px,#fff 0px 2px 10px, #fff 2px 2px 10px,#fff -2px 2px 10px, #fff 2px -2px 10px,#fff -2px -2px 10px;
}

.qRoom_con_cate {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 5px 15px;
  line-height: 1;
  border: solid 2px #5dbfb4;
  font-size: 1.2rem;
  font-weight: bold;
  color: #5dbfb4;
}

.qRoom_con_cate::after {
  display: none;
}

.qRoom_con_title {
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  margin-top: 20px;
  margin-left: 0;
  margin-bottom: 45px;
  line-height: 1.2;
  font-size: 3.4rem;
  font-weight: bold;
  border-left: none;
  box-shadow: none;
}

.qRoom_con_title_mark {
  margin-right: 20px;
  padding-top: 3px;
  vertical-align: middle;
  font-size: 1.4rem;
  font-weight: bold;
  color: #b2b2b2;
  font-family: linotype-vectora, sans-serif;
  font-weight: 400;
  letter-spacing: 2px;
}

.qRoom_con_title_mark:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 49px;
  margin-right: 6px;
  background: url(../img/icon_q.png) center center/contain no-repeat;
  vertical-align: middle;
}

.qRoom_con_item {
  margin-bottom: 122px;
}

.qRoom_con_item_title {
  margin-bottom: 22px;
  padding: 4px 11px 5px;
  border-top: solid 1px #6b9528;
  border-bottom: solid 1px #6b9528;
  font-size: 1.8rem;
  font-weight: bold;
  color: #6b9528;
}

.qRoom_con_item_title:before {
  content: "";
  display: inline-block;
  min-width: 36px;
  min-height: 42px;
  background: url(../img/icon_memo.png) center center/contain no-repeat;
  vertical-align: middle;
  margin-right: 15px;
}

.qRoom_con_item_img {
  width: 100%;
  margin: 0 auto 40px;
}

.qRoom_con_item_img img {
  width: 100%;
}

.qRoom_con_item_img.is_58 {
  width: 100%;
  max-width: 58%;
  margin-bottom: 90px;
}

.qRoom_con_item_img.is_68 {
  width: 100%;
  max-width: 68%;
}

.qRoom_con_item_text {
  margin-bottom: 45px;
}

.productUsed {
  padding: 50px 10px 60px;
  background: #f7f8f8;
  border: solid 1px #e3e3e3;
}

.productUsed_title {
  margin-bottom: 90px;
  text-align: center;
  border-bottom: none;
}

.productUsed_title_text {
  display: inline-block;
  padding-bottom: 15px;
  font-size: 2.1rem;
  font-weight: bold;
  border-bottom: solid 3px #000;
}

.productUsedItem_wrap {
  display: -webkit-box;
  display: flex;
  -webkit-box-pack: center;
  justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-flow: row wrap;
}

.productUsedItem {
  width: 100%;
  max-width: 39.6%;
  margin-top: 0;
  margin-bottom: 30px;
}

.productUsedItem:nth-child(even) {
  margin-left: calc(9% - 1px);
}

.productUsedItem_img {
  width: 100%;
  margin-bottom: 20px;
}

.productUsedItem_img img {
  width: 100%;
}

.productUsedItem_name {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: bold;
}

.productUsedItem_cap {
  font-size: 1.5rem;
}

.soudanSideNavi {
  width: 100%;
  max-width: 240px;
}

.soudanPickup {
  background-color: #f3f3f3;
}

.soudanPickup_con_title {
  padding-top: 8px;
  line-height: 1;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  font-family: linotype-vectora, sans-serif;
  color: #dc5e6d;
  -webkit-transform: scale(0.8, 1);
  transform: scale(0.8, 1);
  -webkit-transform-origin: top left;
  transform-origin: top left;
  width: 125%;
  letter-spacing: 2px;
}

.soudanPickup_con_title:before {
  content: "";
  display: block;
  width: 34px;
  height: 42px;
  margin: 0 auto 10px;
  background: url(../img/icon_list.png) center/contain no-repeat;
}

.soudanPickup_con_title:after {
  display: none;
}

.soudanPickup_con_img {
  width: 100%;
  max-width: 220px;
  margin: 16px auto 24px;
}

.soudanPickup_con_img img {
  width: 100%;
}

.soudanPickup_con_textArea {
  margin: 22px 20px 20px;
}

.soudanPickup_con_textArea_title {
  margin-bottom: 19px;
  font-size: 1.5rem;
  font-weight: bold;
  color: #dc5e6d;
}

.soudanPickup_btnArea {
  padding: 34px 20px 28px;
  border-top: dashed 1px #aaaaaa;
}

.soudanPickup_btnArea_text {
  margin-bottom: 13px;
  font-weight: bold;
}

.soudanPickup_btnArea_btn {
  margin: 0 auto;
  text-align: center;
}

.soudanPickup_btnArea_btn a {
  display: inline-block;
  width: 202px;
  padding: 10px 0;
  border: solid 1px #dc5e6d;
  line-height: 1;
  font-weight: bold;
  color: #fff235;
  background: -webkit-gradient(linear, left top, left bottom, from(#dc5e6d), color-stop(47%, #dc5e6d), color-stop(50%, #e26f7d), to(#e26f7d));
  background: linear-gradient(to bottom, #dc5e6d, #dc5e6d 47%, #e26f7d 50%, #e26f7d 100%);
}

@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }

  p a:hover {
    color: #019ab3;
  }
}

@media (min-width: 1100px) {
  .sp {
    display: none !important;
  }
}

@media (max-width: 1099px) {
  .contents_center {
    max-width: 90%;
    width: 90%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 70%;
  }

  .pc {
    display: none !important;
  }

  a:active img {
    opacity: 0.8;
  }

  p a:active {
    color: #019ab3;
  }

  .col {
    display: block;
  }

  .col.is_sp_flex {
    display: -webkit-box;
    display: flex;
  }

  #container .col:not(.is_sp_flex) .col_contents {
    max-width: 100%;
    margin: 0 auto 15px;
  }

  #container .col:not(.is_sp_flex) .is_oneline .col_contents + .col_contents {
    margin-left: auto;
    margin-top: 30px;
  }

  .flImgContents_img {
    max-width: 100%;
  }

  .flImgContents_img.is_s {
    max-width: 100%;
  }

  .flImgContents_img.is_l {
    max-width: 100%;
  }

  .flImgContents_img.is_fr {
    margin: 0 auto 20px;
  }

  .flImgContents_img.is_fr:not(.is_sp_float) {
    float: none;
  }

  .flImgContents_img.is_fr.is_sp_float {
    width: 35%;
    margin: 0 0 10px 10px;
  }

  .flImgContents_img.is_fl {
    margin: 0 auto 20px;
  }

  .flImgContents_img.is_fl:not(.is_sp_float) {
    float: none;
  }

  .flImgContents_img.is_fl.is_sp_float {
    width: 35%;
    margin: 0 10px 10px 0;
  }

  .size_30 {
    width: 100%;
  }

  .size_60 {
    width: 100%;
  }

  .sp_space {
    margin-left: auto;
    margin-right: auto;
    max-width: 1000px;
    width: 100%;
  }

  .table_01 th,
  .table_01 td {
    font-size: 1.3rem;
  }

  .table_01.sidetitle th {
    padding: 10px 0;
  }

  .table_01.sidetitle td {
    padding: 20px 0;
  }

  .sidetitle tr {
    display: block;
  }

  .sidetitle th,
  .sidetitle td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .sidetitle th {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }

  .inner.soudanWrap {
    width: 100%;
    min-width: 100%;
    margin: 0;
  }

  .soudan_inner {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }

  .breadcrum-list.soubanBreadcrumList {
    margin-left: 3%;
  }

  .qRoom {
    margin-bottom: 54px;
  }

  .qRoom_mainTitle {
    width: 96%;
    height: auto;
    font-size: 2.5rem;
  }

  .qRoom_mainTitle:before {
    bottom: 4%;
    left: 2%;
  }

  .qRoom_mainTitle:after {
    right: 1%;
    max-width: 99px;
    max-height: 68px;
  }

  .qRoom_mainTitle_inner {
    top: 44%;
  }

  .qRoom_mainTitle_main {
    margin-bottom: 5px;
    font-size: 2rem;
  }

  .qRoom_mainTitle_sub {
    font-size: 1.4rem;
  }

  .qRoom_con_cate {
    margin: 0 3% 12px;
  }

  .qRoom_con_title {
    -webkit-box-align: start;
    align-items: flex-start;
    margin: 0 2% 30px;
    font-size: 2.5rem;
  }

  .qRoom_con_title_mark {
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    margin-right: 7px;
    font-size: 1rem;
  }

  .qRoom_con_title_mark:before {
    width: 26px;
    height: 40px;
  }

  .qRoom_con_item {
    margin-bottom: 48px;
  }

  .qRoom_con_item_title {
    margin-bottom: 18px;
    display: -webkit-box;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }

  .qRoom_con_item_title:before {
    min-width: 24px;
    min-height: 30px;
  }

  .qRoom_con_item_img {
    margin-bottom: 25px;
  }

  .qRoom_con_item_img.is_58 {
    max-width: 94%;
    margin-bottom: 74px;
  }

  .qRoom_con_item_img.is_68 {
    max-width: 94%;
  }

  .qRoom_con_item_text {
    margin: 0 3% 30px;
  }

  .productUsed {
    padding-right: 30px;
    padding-left: 30px;
    padding-bottom: 30px;
  }

  .productUsed_title {
    margin-bottom: 46px;
  }

  .productUsedItem_wrap {
    display: block;
  }

  .productUsedItem {
    max-width: 100%;
    margin-bottom: 46px;
  }

  .productUsedItem:nth-child(even) {
    margin-left: 0;
  }

  .soudanSideNavi {
    max-width: 94%;
    margin: 0 auto 45px;
  }

  .soudanPickup_con_title {
    padding-top: 27px;
  }

  .soudanPickup_con_img {
    max-width: 92.3%;
  }

  .soudanPickup_btnArea {
    margin-right: 20px;
    margin-left: 20px;
    padding-right: 0;
    padding-left: 0;
  }
}

@media (max-width: 767px) and (max-width: 1099px) {
  .sp_space {
    max-width: 90%;
    width: 90%;
  }
}

@media (min-width: 768px) and (max-width: 1099px) {
  .sp {
    display: none !important;
  }

  .qRoom_mainTitle {
    max-width: 96%;
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  body {
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','Noto Sans JP',  "游ゴシック Medium","游ゴシック", YuGothic ,Meiryo,メイリオ,'ＭＳ Ｐゴシック',Verdana,Arial,sans-serif;
  }
}