body{
	margin: 0;
}


/* FAQ タイトル */
.faq_title{
	margin: 30px 0px;
}
.faq_title h2{
	margin: 0;
	text-align: center;
	font-size: 40px;
	color: #4B4B4B;
}


/* FQAラジオボタン */
  .tab-group {
    display: table;
    margin: auto;
    max-width: 1500px;
}

.tab-button {
    display: flex;
    justify-content: center;
    list-style: none;
    cursor: pointer;
    padding: 0;
    margin: auto;
    gap: 20px;
}

.tab-button .is-active {
    background: #E53742;
    color: #FFF;
}

.tab {
    padding: 10px;
    height: 45px;
    border-left: #fff 2px solid;
    transition: .5s;
    display: flex;
    align-items: center;
    text-decoration: none;
    border: solid 1px #E53742;
    color: #E53742;
    border-radius: 8px;
	font-size: 18px;
}

.tab-contents {
    border-top: none;
}

.content {
    display: none;
    padding: 8px;
    text-align: left;
}

.content.is-display {
    display: block;
}



/* FQA　ご注文方法について */

.accordion{
	max-width: 1000px;
    margin: auto;
    margin-top: 50px;
    margin-bottom: 100px;
}
.accordion h2{
	margin: auto;
    text-align: center;
    font-size: 30px;
    color: #E53742;
	margin-bottom: 20px
}

.accordion * {
  box-sizing: border-box;
}
.radio-area a{
	text-decoration: none;
}
.accordion_row {
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    max-width: 1000px;
    margin: auto;
}
.accordion_row:last-child {
  margin-bottom: 0;
}
.accordion_header {
    padding: 1em 2.8em 1em 2em;
	border-bottom: solid 1px #ccc;
    cursor: pointer;
    position: relative;
    justify-content: flex-start;
    align-items: center;
	display: grid;
    grid: 1fr auto/ 4em 1fr;
}
.accordion_barBox {
  display: block;
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 1.5em;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.accordion_bar {
  display: block;
  width: 1em;
  height: 3px;
  background: #E53742;
  position: absolute;
  top: 50%;
  left: 50%;
}
.accordion_bar:nth-of-type(1) {
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.accordion_bar:nth-of-type(2) {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
  -ms-transform: translate(-50%, -50%) rotate(90deg);
  transform: translate(-50%, -50%) rotate(90deg);
  transition: 0.3s linear;
}
.accordion_content {
  display: none;
  width: 100%;
  height: auto;
}

.accordion_content-bg {
    padding: 1em 2.8em 1em 2em;
    background: #fff;
    cursor: pointer;
    position: relative;
    justify-content: flex-start;
    align-items: flex-start;
	display: grid;
    grid: 1fr auto/ 4em 1fr;
	margin-bottom: 20px;
}
.accordion_content-bg_b{
	 padding: 1em 2.8em 1em 2em;
    background: #fff;
    cursor: pointer;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
	margin-bottom: 20px;
}
.accordion_header_Q{
	font-size: 25px;
    color: #ffff;
    margin-right: 15px;
    background-color: #E53742;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
}
.accordion_header_A{
	font-size: 25px;
    color: #ffff;
    margin-right: 15px;
    background-color: #AAAAAA;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: center;
    border-radius: 50%;
}
.accordion_header p,
.accordion_content p {
	margin: 0;
    color: #4B4B4B;
	font-size: 17px;
}
.accordion_content p {
	color: #4B4B4B;
	font-size: 17px;
}
/* アコーディオンが開いている時 */
.accordion_row.-active .accordion_bar:nth-of-type(2) {
  opacity: 0;
}


/* 送料について */
.guide_text a{
    text-decoration: none;
    color: #E53742;
    border-bottom: solid 1px;
}

.guide_text a:hover {
    opacity: 0.7;
}


/* 問い合わせボタン */

.contact{
	margin: auto;
    text-align: center;
    background-color: #FBEFF0;
    padding: 40px;
}

.contact_contents{
	max-width: 1000px;
    margin: auto;
    text-align: center;
}

.contact_contents h2{
	margin: 0;
    font-size: 15px;
    font-weight: 400;
    color: #4B4B4B;
	margin-bottom: 20px;
}

.contact_contents a{
	display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background-color: #E53742;
    gap: 15px;
    color: #fff;
    width: 190px;
    height: 50px;
    font-weight: 400;
    border-radius: 100vh;
    transition: 0.5s;
    font-size: 18px;
    margin-right: -25px;
    margin: auto;
}

.contact_contents a:hover {
    opacity: 0.7;
}