@charset "UTF-8";
/*------------------------------------------------------------------------
 ベンダープレフィックス
-------------------------------------------------------------------------*/
/*------------------------------------------------------------------------
 import
-------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: top;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*------------------------------------------------------------------------
 mixin
-------------------------------------------------------------------------*/
html {
  font-family: Arial, Roboto, "Droid Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, sans-serif;
  font-size: 62.5%;
  overflow-y: auto;
  height: 100%;
}

body {
  font-size: 14px;
  font-size: 1.4rem;
  font-weight: 400;
  color: #201818;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  height: 100%;
}

a {
  color: #67317e;
  cursor: pointer;
  text-decoration: none;
  outline: none;
}

a, img, button {
  -webkit-transition: .2s;
  transition: .2s;
}

input, select, textarea {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------------------------------------------------
 Clearfix
 -------------------------------------------------------------------------*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

/* Hide from Mac IE \*/
.clearfix {
  display: block;
}

* html .clearfix {
  height: 1%;
}

/* Hide from Mac IE */
/*------------------------------------------------------------------------
 PC/SP 切り替え
 -------------------------------------------------------------------------*/
@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}
/*------------------------------------------------------------------------
wrapper
-------------------------------------------------------------------------*/
.wrapper {
 background: #000000f;
}

@media screen and (min-width: 769px) {
  .wrapper {
    margin-top: 150px;
  }
  .wrapper #about, .wrapper #product, .wrapper #order, .wrapper #faq, .wrapper #contact {
    margin-top: -150px;
    padding-top: 150px;
  }
}
@media screen and (max-width: 768px) {
  .wrapper {
    padding-top: 115px;
  }
  .wrapper #about, .wrapper #product, .wrapper #order, .wrapper #faq {
    margin-top: -45px;
    padding-top: 45px;
  }
}
/*------------------------------------------------------------------------
contents
 -------------------------------------------------------------------------*/
.contents {
  margin: 0 auto;
  overflow: hidden;
  box-sizing: border-box;
}

@media screen and (min-width: 769px) {
  .contents {
    width: 980px;
    padding: 0 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .contents {
    width: 100%;
    padding: 15px 15px 50px;
  }
}
/*------------------------------------------------------------------------
style
-------------------------------------------------------------------------*/
.noted {
  color: #c61234;
  font-size: 13px;
  font-size: 1.3rem;
  text-align: center;
  padding-top: 20px;
  line-height: 1.6;
  clear: both;
}

h2, h3, h4 {
  text-align: center;
}

@media screen and (min-width: 769px) {
  h2 {
    padding-top: 40px;
  }
  h2 img {
    height: 36px;
  }

  h3 {
    padding-top: 40px;
  }
  h3 img {
    height: 20px;
  }

  h4 img {
    height: 26px;
  }
}
@media screen and (max-width: 768px) {
  h2 {
    padding-top: 30px;
  }
  h2 img {
    height: 24px;
  }

  h3 img {
    height: 15px;
  }

  h4 img {
    height: 20px;
  }
  h4 img h4 img {
    height: 20px;
  }
}
/*------------------------------------------------------------------------
header
-------------------------------------------------------------------------*/
.pcheader {
  width: 100%;
}

.spheader {
  width: 100%;
}

header {
  background: url(../images/bg_header.png) 0 0 repeat-x;
  background-size: auto 100%;
  width: 100%;
}
header .topcontents {
  float: left;
}
header .topcontents h1 {
  padding: 3px 0 3px 5px;
  font-size: 12px;
  font-size: 1.2rem;
  display: inline-block;
  color: #fff;
}
header .logo {
  padding: 0;
}
header .btn_lan {
  float: right;
}
header a:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  .pcheader {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
  }
  .pcheader header {
    height: 100px;
  }
  .pcheader header .contents {
    padding-bottom: 0;
  }
  .pcheader header .logo img {
    height: 64px;
  }
  .pcheader header .btn_lan {
    padding: 19px 0 0;
  }
  .pcheader header .btn_lan img {
    height: 60px;
  }

  .spheader {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header {
    height: 70px;
    position: absolute;
    top: 0px;
  }
  header .contents {
    padding: 0 15px;
  }
  header .topcontents h1 {
    padding: 0;
    font-size: 8px;
    font-size: 0.8rem;
  }
  header .logo img {
    height: 40px;
  }
  header .btn_lan {
    padding: 12px 0;
  }
  header .btn_lan img {
    height: 40px;
  }

  .pcheader {
    display: none;
  }
}
/*------------------------------------------------------------------------
nav
-------------------------------------------------------------------------*/
nav {
  background: url(../images/bg_nav.png) 0 0 repeat-x;
  background-size: auto 100%;
  box-shadow: 0px 5px 5px -5px rgba(170, 170, 170, 0.5);
  width: 100%;
  height: 50px;
}
nav ul li {
  float: left;
  box-sizing: border-box;
  border-right: 1px solid #fcf7fe;
  border-left: 1px solid #c9c3cc;
}
nav ul li.menu_order {
  background: #c61234;
  border: none;
}
nav ul li.menu_order a {
  color: #fff;
}
nav ul li:hover {
  opacity: .8;
}
nav ul li a {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
nav ul li a:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  nav ul {
    height: 50px;
    border-right: 1px solid #c9c3cc;
  }
  nav ul li {
    width: 16.66%;
    height: 50px;
  }
  nav ul li a {
    height: 50px;
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  .sp_menu {
    height: 45px;
    position: absolute;
    top: 70px;
  }
  .sp_menu ul {
    height: 45px;
  }
  .sp_menu ul li {
    width: 25%;
    height: 45px;
    font-size: 13px;
    font-size: 1.3rem;
  }
  .sp_menu ul li:last-of-type {
    border-right: none;
  }
  .sp_menu ul li a {
    height: 45px;
    width: 15%;
  }

  .spheader.fixed .sp_menu {
    position: fixed;
    top: 0px;
  }
}
@media screen and (max-width: 480px) {
  .sp_menu {
    height: 45px;
  }
  .sp_menu ul li {
    width: 22%;
  }
  .sp_menu ul li:first-of-type {
    width: 32%;
  }
  .sp_menu ul li a {
    width: 25%;
  }
}
/*------------------------------------------------------------------------
footer
-------------------------------------------------------------------------*/
footer {
  background: url(../images/bg_header.png) 0 0 repeat-x;
  background-size: auto 100%;
  width: 100%;
  height: 102px;
}

footer img {
  display: block;
}

footer .logo {
  float: left;
}

footer .tel {
  float: right;
}

footer a {
  color: #fff;
}

footer a:hover {
  opacity: .8;
}

@media screen and (min-width: 769px) {
  footer .contents {
    padding: 0;
  }

  footer .logo {
    padding: 13px 0 0;
  }

  footer .logo img {
    height: 74px;
  }
}
@media screen and (max-width: 768px) {
  footer {
    height: 60px;
  }

  footer .contents {
    padding: 5px 15px;
  }

  footer .logo {
    padding: 6px 0 0;
  }

  footer .logo img {
    height: 40px;
  }

  footer .tel {
    line-height: 54px;
  }

  .copy {
    background: #41264d;
    color: #fff;
    font-size: 10px;
    text-align: center;
    height: 20px;
    line-height: 20px;
  }
}
/*------------------------------------------------------------------------
 pagetop
-------------------------------------------------------------------------*/
.pagetop {
  position: fixed;
  z-index: 99;
  -webkit-transition: .2s;
  transition: .2s;
}

.pagetop:hover {
  opacity: .8;
}

.pagetop a {
  display: block;
  text-align: center;
}

.pagetop a img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .pagetop {
    width: 80px;
    height: 80px;
    right: 20px;
    bottom: 10%;
  }
}
@media screen and (max-width: 768px) {
  .pagetop {
    width: 40px;
    height: 40px;
    right: 15px;
    bottom: 18%;
  }
}
/*------------------------------------------------------------------------
main visual
-------------------------------------------------------------------------*/
.mainvisual {
  width: 100%;
}
.mainvisual .visualbox {
  margin: 0 auto;
  text-align: center;
}
.mainvisual .visualbox img {
  display: block;
  margin: 0 auto;
  height: auto;
}
.mainvisual .visualbox img:nth-child(2) {
  margin-bottom: 105px;
}
.mainvisual .visualbox h2 {
  padding: 100px 0 50px;
}

@media screen and (min-width: 769px) {
  .mainvisual {
    background: #746270 url(../images/mainvisual.jpg) center center no-repeat;
    height: 550px;
    margin-top: 150px;
  }
  .mainvisual .visualbox {
    width: 980px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual {
    background: #746270 url(../images/mainvisual_sp.jpg) center center no-repeat;
    background-size: cover;
    height: 450px;
  }
  .mainvisual .visualbox {
    width: 90%;
  }
  .mainvisual .visualbox h2 {
    padding: 60px 0 50px;
  }
  .mainvisual .visualbox h2 img {
    width: 60%;
  }
  .mainvisual .visualbox img:nth-child(2) {
    margin-bottom: 70px;
    width: 50%;
  }
  .mainvisual .visualbox img:nth-child(3) {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual {
    background: #746270 url(../images/mainvisual_sp.jpg) center center no-repeat;
    background-size: cover;
    height: 450px;
  }
  .mainvisual .visualbox {
    width: 90%;
  }
  .mainvisual .visualbox h2 {
    padding: 70px 0 50px;
  }
  .mainvisual .visualbox h2 img {
    width: 100%;
  }
  .mainvisual .visualbox img:nth-child(2) {
    margin-bottom: 70px;
    width: 80%;
  }
  .mainvisual .visualbox img:nth-child(3) {
    width: 100%;
  }
}
/*------------------------------------------------------------------------
about
-------------------------------------------------------------------------*/
.about_area {
  background: #31142e url(../images/bg_sub.jpg) 0 0 repeat;
  color: #fff;
}

.box_inner {
  padding-top: 10px;
}

.box_inner img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  h2 {
    padding-top: 50px;
  }

  .about_area h2 img,
  .item_area h2 img {
    height: 100px;
  }

  .col3_box {
    float: left;
    box-sizing: border-box;
    width: 31.6%;
  }

  .col3_box:nth-of-type(2) {
    padding-left: 24px;
    padding-right: 24px;
    width: 36.5%;
  }

  .box_inner p {
    padding-top: 10px;
  }
}
@media screen and (max-width: 768px) {
  /*  h2 {
  	padding-top: 60px;
  	}*/
  .about_area h2 img,
  .item_area h2 img {
    height: 60px;
  }

  .col3_box {
    padding-top: 40px;
  }

  .box_inner {
    display: table;
    padding-top: 10px;
  }

  .box_inner div,
  .box_inner p {
    display: table-cell;
    vertical-align: top;
    width: 50%;
    box-sizing: border-box;
    font-size: 13px;
  }

  .box_inner div {
    padding-right: 10px;
  }

  .box_inner p {
    padding-left: 10px;
  }
}
/*------------------------------------------------------------------------
item
-------------------------------------------------------------------------*/
.item_area {
  background: #31142e url(../images/bg_sub.jpg) 0 0 repeat;
  color: #fff;
}

.itembox {
  padding-top: 40px;
}

.photo img {
  width: 100%;
}

.btn_more {
  padding: 15px 0;
  text-align: center;
}

.btn_more.active {
  display: none;
}

.btn_more img {
  width: 100%;
}

@media screen and (min-width: 769px) {
  .itembox {
    padding-top: 0;
    background: #fff;
    color: #201818;
    margin: 30px auto;
  }
  .itembox .itembox_inner {
    overflow: hidden;
  }
  .itembox:nth-of-type(even) .photo {
    float: right;
  }
  .itembox:nth-of-type(even) .itemtext {
    float: left;
    padding-left: 40px;
    padding-right: 10px;
  }
  .itembox .photo {
    float: left;
    padding: 0;
  }
  .itembox .photo img {
    display: block;
  }

  .itemtext {
    float: right;
    width: 48%;
    padding-right: 40px;
    padding-left: 10px;
    box-sizing: border-box;
    line-height: 1.8;
  }
  .itemtext h3 {
    padding: 30px 0 10px;
    text-align: left;
  }

  .itembox:last-of-type {
    margin-top: -30px;
    text-align: center;
  }
  .itembox:last-of-type img {
    width: 80%;
    padding: 50px 30px 50px 0;
  }
  .itembox:last-of-type img:last-of-type {
    padding-top: 20px;
  }
}
@media screen and (max-width: 768px) {
  .itembox {
    padding-top: 40px;
  }

  .photo {
    padding-top: 10px;
  }

  .itemtext {
    display: none;
    padding-top: 15px;
  }
}
/*------------------------------------------------------------------------
voice
-------------------------------------------------------------------------*/
.voice_area dl {
  margin-top: 30px;
  border: 1px solid #d9d9d9;
  border-top: 3px solid #743e8b;
  padding: 20px;
  background: #fff;
}

.voice_area dd {
  font-size: 13px;
}

.voice_area dd:first-of-type {
  color: #743e8b;
  font-weight: bold;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 8px 0 5px;
}

@media screen and (min-width: 769px) {
  .voice_area dl {
    float: left;
    box-sizing: border-box;
    width: 32%;
    min-height: 285px;
  }

  .voice_area dl:nth-of-type(2) {
    margin-left: 25px;
    margin-right: 25px;
    width: 30.5%;
  }
}
/*------------------------------------------------------------------------
greeting
-------------------------------------------------------------------------*/
.greeting_area {
  background: #31142e url(../images/bg_sub.jpg) 0 0 repeat;
  color: #fff;
}

.greetingtext {
  padding-top: 15px;
  line-height: 1.8;
}
.greetingtext p:nth-of-type(2) {
  text-align: right;
  padding-top: 15px;
}
.greetingtext p:nth-of-type(2) span {
  font-size: 20px;
  font-size: 2rem;
}
.greetingtext p:nth-of-type(3) {
  height: 20px;
  text-align: right;
  padding-top: 15px;
}

@media screen and (min-width: 769px) {
  .greeting_inner {
    padding-top: 20px;
    display: table;
  }

  .photo {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 50%;
    padding-right: 20px;
    box-sizing: border-box;
  }

  .greetingtext {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 50%;
    padding-left: 20px;
    box-sizing: border-box;
  }
  .greetingtext p:nth-of-type(2) {
    padding-top: 45px;
  }
  .greetingtext p:nth-of-type(2) span {
    font-size: 20px;
    font-size: 2rem;
  }
  .greetingtext p:nth-of-type(3) {
    height: 20px;
    text-align: right;
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .greetingtext {
    display: none;
  }

  p:nth-of-type(3) img {
    height: 40px;
  }
}
/*------------------------------------------------------------------------
product
-------------------------------------------------------------------------*/
.product_area .series h3 {
  height: 30px;
}
.product_area .series h4 {
  padding-bottom: 10px;
}
.product_area .series .product_01 {
  text-align: center;
  margin: 30px auto;
}
.product_area .series .product_01 .product_inner img {
  width: 100%;
}
.product_area .series .product_01 .product_info {
  padding-top: 10px;
}
.product_area .series .product_02 {
  margin: 30px auto;
}
.product_area .series .product_03 h4 {
  margin-top: 15px;
}
.product_area .series .price {
  font-weight: bold;
  color: #31142e;
}

@media screen and (min-width: 769px) {
  .product_area .series {
    clear: both;
  }
  .product_area .series h3 img {
    height: 28px;
  }
  .product_area .series .product_02 {
    width: 80%;
  }
  .product_area .series .product_02 .col2_box {
    width: 45%;
    float: left;
    margin-bottom: 40px;
  }
  .product_area .series .product_02 .col2_box:nth-of-type(even) {
    float: right;
  }
  .product_area .series .product_02 .col2_box .product_inner img {
    width: 100%;
  }
  .product_area .series .product_02 .col2_box .price {
    text-align: center;
  }
  .product_area .series .product_03 .col3_box .product_inner img {
    width: 100%;
  }
  .product_area .series .product_03 .col3_box .price {
    text-align: center;
  }
  .product_area .series .product_info {
    padding-top: 10px;
  }
  .product_area .series .price {
    font-size: 18px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 480px) {
  .product_area .series h3 {
    height: 60px;
    margin: 20px auto 40px;
  }
  .product_area .series h3 img {
    width: 60%;
  }
}
@media screen and (max-width: 768px) {
  .product_area .series h3 {
    height: 60px;
    margin: 20px auto 40px;
  }
  .product_area .series h3 img {
    width: 60%;
    height: auto;
  }
  .product_area .series .product_02 .col2_box .product_inner {
    padding-bottom: 20px;
    overflow: hidden;
  }
  .product_area .series .product_02 .col2_box .product_inner img {
    float: left;
    width: 48%;
    display: block;
  }
  .product_area .series .product_02 .col2_box .product_inner .product_info {
    float: right;
    width: 48%;
  }
  .product_area .series .product_03 .col3_box .product_inner {
    padding-bottom: 20px;
    overflow: hidden;
  }
  .product_area .series .product_03 .col3_box .product_inner img {
    float: left;
    width: 48%;
    display: block;
  }
  .product_area .series .product_03 .col3_box .product_inner .product_info {
    float: right;
    width: 48%;
  }
  .product_area .series .col2_box, .product_area .series .col3_box {
    overflow: hidden;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.5;
  }
  .product_area .series .price {
    font-size: 12px;
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 480px) {
  .product_area .series h3 {
    margin: 20px auto;
  }
  .product_area .series h3 img {
    width: 100%;
    height: auto;
  }
}
/*------------------------------------------------------------------------
order
-------------------------------------------------------------------------*/
input, select {
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
}

select::-ms-expand {
  display: none;
}

select {
  width: 100%;
  height: 100%;
}

button {
  padding: 0;
  margin: 0 auto;
  display: block;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}

.order_area {
  background: url(../images/bg_border.png) 0 0 repeat-x;
}
.order_area h3 {
  padding: 40px 0;
  font-size: 20px;
  font-size: 2rem;
}
.order_area .order_form {
  margin: 0 auto;
}
.order_area .order_form dl {
  border: 1px solid #b390c2;
  display: table;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 20px;
}
.order_area .order_form dl:last-of-type {
  border-bottom: 1px solid #b390c2;
}
.order_area .order_form dl:last-of-type dt, .order_area .order_form dl:last-of-type dd {
  width: 100%;
  display: block;
}
.order_area .order_form dl:last-of-type dd {
  padding: 0;
}
.order_area .order_form dl:last-of-type dd textarea {
  padding: 5px;
  margin: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  display: block;
  box-sizing: border-box;
  resize: vertical;
}
.order_area .order_form dt {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  background: #b390c2;
  width: 25%;
  box-sizing: border-box;
  padding: 5px;
  color: #fff;
}
.order_area .order_form dd {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
  width: 75%;
  box-sizing: border-box;
  padding: 5px;
  background: #fff;
  select-position: relative;
  select-cursor: pointer;
}
.order_area .order_form dd label {
  position: relative;
}
.order_area .order_form dd label:after {
  content: "";
  width: 0;
  height: 0;
  display: block;
  position: absolute;
  right: 5px;
  top: 5px;
  pointer-events: none;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #b390c2 transparent transparent transparent;
}
.order_area .order_form dd .name_box {
  display: table-cell;
  vertical-align: middle;
  text-align: left;
}
.order_area .order_form dd .name_box input {
  border: 1px solid #999;
  padding: 5px;
  box-sizing: border-box;
}
.order_area .order_form dd .name_box:first-of-type {
  padding-right: 20px;
}

@media screen and (min-width: 769px) {
  .order_area .order_form {
    width: 80%;
  }
  .order_area .order_form dt, .order_area .order_form dd {
    padding: 10px;
  }
  .order_area .order_form label:after {
    border-width: 14px 10px 0 10px !important;
  }
}
@media screen and (max-width: 768px) {
  .order_area .order_form {
    width: 100%;
  }
  .order_area .order_form dt, .order_area .order_form dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 480px) {
  .order_area h3 {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .order_area .order_form {
    width: 100%;
  }
  .order_area .order_form dt, .order_area .order_form dd {
    font-size: 13px;
    font-size: 1.3rem;
  }
  .order_area .order_form .name_box input {
    width: 70px;
  }
  .order_area .order_form .name_box:first-of-type {
    padding-right: 10px;
  }
}
.btn_form {
  margin-top: 30px;
}
.btn_form:hover img {
  opacity: .8;
}

.btn_area {
  padding-bottom: 20px;
}

.btn_order {
  display: block;
  margin: 0 auto;
}
.btn_order:hover img {
  opacity: .8;
}
.btn_order img {
  display: block;
  margin: auto;
  text-align: center;
}

@media screen and (min-width: 769px) {
  .btn_order, .btn_form {
    width: 450px;
    height: 70px;
  }

  .btn_area img, .btn_form img {
    width: 450px;
  }
}
@media screen and (max-width: 768px) {
  .btn_area .contents {
    padding-top: 0;
  }

  .btn_order img, .btn_form img {
    width: 80%;
  }
}
/*------------------------------------------------------------------------
faq
-------------------------------------------------------------------------*/
.qa_area {
  background: #31142e url(../images/bg_sub.jpg) 0 0 repeat;
  color: #fff;
}

.qa_box {
  background: #fff;
}
.qa_box:first-of-type {
  margin-top: 30px;
}

.qa_box h3 {
  color: #fff;
  background: #67317e;
  padding: 5px 0;
  text-align: center;
  font-size: 18px;
}

.qa_box dl {
  color: #fff;
}

.qa_box dt {
  color: #67317e;
  border-left: 4px solid #67317e;
  padding: 0px 5px;
  font-size: 15px;
  margin: 18px 15px 8px;
  line-height: 1.2;
}

.qa_box dd {
  margin: 0 15px;
  color: #201818;
  line-height: 1.5;
  padding-bottom: 8px;
}

.qa_box dd span {
  color: #67317e;
  border: 1px solid #67317e;
  padding: 0 4px;
  display: inline-block;
  margin-bottom: 5px;
}

.qa_box dd:last-of-type {
  padding-bottom: 25px;
}

/*------------------------------------------------------------------------
contact
-------------------------------------------------------------------------*/
.contact_area dl {
  line-height: 1.5;
}

.contact_area dt {
  color: #67317e;
}

.contact_area dt:after {
  content: ":";
  padding-left: 5px;
}

.contact_area dd {
  margin-bottom: 13px;
}

@media screen and (min-width: 769px) {
  .contact_area dl {
    margin: 30px 0 50px;
  }

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