@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Marcellus&display=swap');

:root {
  --soyul-color : #FBCF3B;
  --font-Marcellus : "Marcellus", serif;
}

html {
  margin: 0;
  padding: 0;
  overflow-y: scroll;
  height: 100%;
  font-size: 0.67vw;
  font-size: 62.5%;
}
body {
  margin: 0;
  padding: 0;
  font-family: 'Noto Sans JP',sans-serif;
  color: #1e2123;
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  font-feature-settings: "palt" 1;
}
/*
.faqNav {
  display: none !important;
}
*/

label {
  width: auto;
  max-width: auto;
}
p {
  line-height: 1.6;
}
a {
  text-decoration: underline;
}
a:link {
  text-decoration: underline;
}
a:visited {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}
a:active {
  color: rgba(71, 71, 71, 1.00);
}
a img {
  transition: 0.5s;
}
a:hover img {
  opacity: 0.8;
  transition: 0.5s;
}
@media screen and (min-width:598px) {
  a.tel_link {
    color: inherit;
    text-decoration: none;    
  }
}
.hover_img {
  overflow: hidden;
  display: block;
}
.hover_img img{
 transition:1s all;
}
.hover_img img:hover{
  transform:scale(1.04,1.04);
  transition:0.4s all;
}
table {
  line-height: 1.6;
}
a.btn {
  text-decoration: none;
}
a.btn:link {
  text-decoration: none;
}
a.btn:visited {
  text-decoration: none;
}
a.btn:hover {
  text-decoration: none;
}
/*-form
-------------------------------------------------------------------*/
 
.form_small {
  width: 5rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(247,247,247,1.00);
}
.form_middle {
  width: 1.2rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
.form_long {
  width: 26rem;
  height: 1.4rem;
  font-size: 1.2rem;
  background-color: rgba(255,255,255,1.00);
}
input[type="text"],input[type="email"],input[type="tel"],textarea {
  box-shadow: none;
  border: none;
  padding: 1.5rem;
  border-radius: 1rem;
  width: 100%;
  background-color: rgba(255,255,255,1.00);
}
/*  header#globalHeader　----------------------------------------------------*/
header#globalHeader {
  position: relative;
  width: 100%;
  background-color: #ffffff;
}
header#globalHeader ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
header#globalHeader ul li {
  list-style: none;
  display: inline;
  padding: 0;
  margin: 1rem 3rem 0 0;
  font-size: 1.6rem;
  font-family: var(--font-Marcellus);
  letter-spacing: 0.2rem;
}
header#globalHeader ul li.iconNav {
  margin-top: 0;
}
header#globalHeader ul li a {
  text-decoration: none;
  color: #666;
  position: relative;
  transition: 0.6s;
}
header#globalHeader ul li a:hover {
  color: var(--soyul-color);
  position: relative;
  transition: 0.6s;
}
header#globalHeader ul li a:before {
  background: var(--soyul-color);
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: -3px;
  transform-origin: right top;
  transform: scale(0, 1);
  transition: transform .3s;
}
header#globalHeader ul li a:hover:before {
  transform-origin: center top;
  transform: scale(1, 1);

}
.sub-nav i {
  margin-right: 0.6rem;
}
.sub-nav i img {
  margin-top: -0.2rem;
}
.icon {
  text-align: center;
  display: block;
}
.icon img {
  display: block;
  margin: 0 auto;
}
ul.navbar-nav li a {
  text-decoration: none;
  color: #333333;
}
header#globalHeader.fixed {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 9999;
  width: 100%;
  background-color: #FFFFFF;
  animation: DownAnime 1s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }
  to {
    opacity: 1;
  transform: translateY(0);
  }
}
.navbar-brand {
  padding: 2rem;
  position: relative;
  z-index: 9999;
}
.navbar-brand img {}
.no {display: none}
@media (min-width:768px) {
  header#globalHeader ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: flex-end;
  }
  header#globalHeader.pageNav ul li.pulldown {
    position: relative;
    padding-left: 15px;
  }
  .pulldown:after {
    content: "";
    background: #111111;
    height: calc(tan(10deg) * 60px / 2);
    width: 10px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }
  header#globalHeader ul ul.subNav {
    display: none;
    position: absolute;
    top: 50%;
    left: 0;
    padding: 1rem 1.5rem 0.1rem;
    border: 1px solid #f7f7f7;
    background-color: #ffffff;
    white-space: nowrap;
  }
  header#globalHeader ul .active ul.subNav {
    display: block;
  }
  header#globalHeader ul ul.subNav li {
    margin-left: 0rem;
    margin-bottom: 1rem;
  }
}
@media (max-width: 1145px) {
  header#globalHeader ul li {
    margin: 1rem 1.5rem 0 0;
    font-size: 1.5rem;
    letter-spacing: 0.1rem;
  }
}
/*トグルボタン----------------------------------*/
.toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border-style: none;
  z-index: 9999;
}
.toggle:focus {
  outline: none;
}
.pc {
  display: none;
}
@media (min-width: 991px) {
  .toggle {
    display: none;
  }
  .smp {
    display: none;
  }
  .pc {
    display: block;
  }
}
@media (max-width: 991px) {
  .navbar-collapse {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    margin-top: 0px;
    background-color: rgba(255, 255, 255, 1);
    padding-bottom: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9998;
  }
  body.active {
    height: 100%;
    overflow: hidden;
  }
  header#globalHeader ul.sub-nav {
    display: none;
  }
  header#globalHeader ul.navbar-nav {
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
  header#globalHeader ul.navbar-nav li {
    margin: 1rem 2rem;
    position: relative;
    padding-left: 1.2rem;
  }
  header#globalHeader ul.navbar-nav li a:before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
  }
  header#globalHeader ul.navbar-nav a {
    color: #111111;
  }
  .navbar-brand {
    width: 18rem;
    height: auto;
  }
  .navbar-brand img {
    width: 100%;
    height: auto;
  }
  .icon {

    text-align: center;
    display: flex;
    align-items: center;
  }
  .icon img {
    display: inline-block;
    margin: 0 0.6rem 0 0;
  }
  ul.navbar-nav li a {
    text-decoration: none;
    color: #333333;
  }
}
.navbar-toggle-anime, .navbar-toggle-anime span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}
.navbar-toggle-anime {
  position: relative;
  width: 26px;
  height: 26px;
}
.navbar-toggle-anime span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 4px;
}
.navbar-toggle-anime span:nth-of-type(1) {
  top: 0;
}
.navbar-toggle-anime span:nth-of-type(2) {
  top: 10px;
}
.navbar-toggle-anime span:nth-of-type(3) {
  bottom: 5px;
}
.navbar-toggle-anime.active span:nth-of-type(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.navbar-toggle-anime.active span:nth-of-type(2) {
  opacity: 0;
}
.navbar-toggle-anime.active span:nth-of-type(3) {
  -webkit-transform: translateY(-9px) rotate(315deg);
  transform: translateY(-9px) rotate(315deg);
}

/*  footer#globalFooter　----------------------------------------------------*/
footer#globalFooter {
  clear: both;
  padding: 2rem 2rem 0;
}
footer#globalFooter a {
  color: inherit;
}
.footer {
  display: flex;
  justify-content: space-between;
}
.fnav {
  margin-bottom: 3rem;
}
.fnav ul {
  list-style: none;
  padding: 0;
}
.fnav li {
  margin-bottom: 0.6rem;
}
.fnav a {
  font-size: 1.3rem;
  color: #666666;
  text-decoration: none;
}
.flogo {
  margin-bottom: 3rem;
  text-align: center;
}
.flogo img {
  margin-bottom: 3rem;
  text-align: center;
}
.flogo p {  
  margin-block: 0.6rem 3rem;
  font-size: 1.3rem;
  font-family: serif;
  display: none;
}
.flogo ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 2rem;
  padding: 0;
}
.address {
  text-align: center;
}
.address p {
  margin-bottom: 0rem;
  font-size: 1.3rem;
}
.address h3 {
  font-size: 1.4rem;
  font-weight: 400;
}
.address p.tel {
  font-size: 1.9rem;
  font-weight: 600;
}
.address p.tel a {
  text-decoration: none;
}
.address p.tel i {
  display: inline-block;
  margin-right: 0.5rem;
}
.address p.tel i img {
  margin-top: -3px;
}
.page-top {
  right: -50px;
  bottom: 5px;
  position: fixed;
}
.page-top a {
  border-radius: 10rem;
  background-color: #000000;
  background-size: 40px 40px;
  width: 40px;
  height: 40px;
  background-repeat: no-repeat;
  display:block;
  position: relative;
}
.page-top a:after {
  content: "";
  display: block;
  background: #ffffff;
  height: calc(tan(60deg) * 60px / 2);
  width: 10px;
  height: 10px;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}
/* copyright　----------------------------------------------------*/
.attentionArea {
  font-size: 1.3rem;
  text-align: center;
  padding: 2rem ;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
footer#globalFooter p.copyright {
  text-align: center;
  font-size: 1rem;
  padding-block: 3rem 0;
  margin-bottom: 0;
  color: #000;
}
footer#globalFooter p.cart_copyright  {
  text-align: center;
  font-size: 1rem;
  padding-block: 1rem 0;
  margin-bottom: 0;
  color: #000;
}
@media (max-width: 767px) {
  .footer {
    flex-direction: column;
    align-items: center;
  }
  .fnav ul {
    text-align: center;
  }
}

/*#　contents ----------------------------------------------------*/
main a {
  color: inherit;
  text-decoration: none;
}
main a:link {
  color: inherit;
  text-decoration: none;
}
main a:visited {
  text-decoration: none;
}
main a:hover {
  color: var(--soyul-color);
  text-decoration: none;
}
.contents {
  width: 100%;
}

.flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-start {
	justify-content: flex-start;
}
.flex-center {
	justify-content:center;
}
.flex-end {
	justify-content:flex-end;
}
.flex-around {
	justify-content:space-around;
}
.center_center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (max-width:576px) {
	.flex {
		display: block;
	}
}

.pageTltle{
  position: relative;
}
.pageTltle .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.pageTltle .container h1 {
  color: #ffffff;
  font-size: 6rem;
  font-family: var(--font-Marcellus);
  letter-spacing: 0.2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.15);
}
.pageTltle .container h1.small {
  font-size: 4rem;
}
.centerTitle {
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 767px) {
  .pageTltle .container h1,
  .pageTltle .container h1.small {
    font-size: 2rem;
  }
}

.breadNav {
  padding-block: 1rem;
}
.breadNav ul {
  list-style: none;
  font-size: 1.2rem;
  display: flex;
  padding: 0;
  letter-spacing: 0;
}
.breadNav li {
  margin-right: 2rem;
}
.breadNav li a {
  text-decoration: none;
  position: relative;
}
.breadNav li a:hover {
  text-decoration: underline;
}
.breadNav li a:after {
  content: '';
  width: 5px;
  height: 5px;
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  position: absolute;
  right: -1rem;
  top: 0.7rem;
  transform: rotate(45deg);
}
.breadNav li:last-child a:after {
  display: none;
}
@media (max-width: 767px) {
  .breadNav ul {
    font-size: 0.9rem;
  }
  .breadNav li {
    margin-right: 1rem;
  }
  .breadNav li a:after {
    content: '';
    width: 4px;
    height: 4px;
    border-top: solid 1px #000;
    border-right: solid 1px #000;
    position: absolute;
    right: -0.5rem;
    top: 0.4rem;
    transform: rotate(45deg);
  }
}
/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  margin-block: 10rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h2 {
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}

/**
 * 特商法・会社概要
 * **************************************************************************/
.tokusyoho {
  margin-block: 10rem;
}
.tokusyoho table {
  width: 100%;
}
.tokusyoho table tr:nth-child(even) {
  background-color: rgba(0, 0, 0, 0.05);
}
.tokusyoho table th {
  padding: 2rem;
  font-weight: 400;
}
.tokusyoho table td {
  padding: 2rem;
}
@media (max-width: 767px) {
  .tokusyoho table th {
    border-bottom: 1px solid#c1c1c1;
    display: block;
    width: 100%;
    padding: 2rem 2rem 1rem 2rem;
    font-weight: 700;
  }
  .tokusyoho table td {
    display: block;
    width: 100%;
    padding: 1rem 2rem 2rem 2rem;
  }

}

/* home ------------------------------------------------------------------------------*/
.home #globalHeader {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 99999;
}
.mv-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.mv-wrap .mc {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  font-family: serif;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.slick-img img {
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}
.concept {}
.concept__wrap {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.homeProducts {
  padding-top: 10rem;
}
.concept__wrap .copy {
  font-family: serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
}
.concept__wrap .copy .mark {
  margin-bottom: 2rem;
}
.concept__wrap .copy span {
  display: block;
}
.concept__wrap .copy01 {
  font-family: serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  top: 40%;
  left: 50%;
}
.concept__wrap .copy02 {
  font-family: serif;
  font-size: 2.8rem;
  font-weight: 400;
  color: #ffffff;
  position: absolute;
  bottom: 10%;
  left: 10%;
}
@media (max-width: 767px) {
  .mv-wrap .mc {
    top: 15%;
    left: 10%;
    transform: translateY(0);
    font-size: 1.6rem;
  }
  .concept__wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 100;
  }
  .homeProducts {
    padding-top: 10rem;
  }
  .concept__wrap .copy {
    font-size: 1.8rem;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
  }
  .concept__wrap .copy .mark {
    margin-bottom: 2rem;
  }
  .concept__wrap .copy .mark img {
    width: 18rem;
    height: auto;
  }
  .concept__wrap .copy01 {
    font-size: 1.8rem;
    top: 40%;
    left: 30%;
  }
  .concept__wrap .copy02 {
    font-size: 1.8rem;
    bottom: 10%;
    left: 10%;
  }
  .homeProducts {
    padding-top: 3rem;
  }
}
/***********
 * お問い合わせ
 * *********/
.contact {
  padding-block-end: 10rem;
}
.contact p {
  text-align: center;
}
/
.contact__mc {
  text-align: center;
  border-bottom: 1px solid #939393;
  padding-bottom: 10rem;
}
.contact_tel {
  text-align: center;
  padding-top: 6rem;
  padding-bottom: 7rem;
  border-bottom: 1px solid #939393;
}
.contact_tel h2 {
  margin-bottom: 2rem;
}
.contact_tel .tel {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  padding-block: 0;
  font-size: 4rem;
  line-height: 1;
}
.contact_tel .tel a {
  text-decoration: none;
}
.contact_tel .tel i {
  margin-inline-end: 1rem;
}
.contact_tel .tel i img {
  margin-block-start: -0.8rem;
}
.form {
  padding-top: 5rem;
}
.form h2 {
  text-align: center;
}
.form p {
  margin-bottom: 3rem;
}
.form_title {
  margin-block-end: 3rem;
}
.form p {
  text-align: center;
}
.form__inner {
  width: 100%;
  max-width: 73rem;
  margin-right: auto;
  margin-left: auto;
}
.form__inner dl {
  display: flex;
  margin-bottom: 2.3rem;
  text-align: left;
  align-items: center;
}
.form__inner dl dt {
  width: 25%;
  font-size: 1.3rem;
}
.form__inner span {
  color: red;
}
.form__inner dl dd {
  width: 75%;
}
.form__inner dl dd #preview {
  width: 100%;
  height: auto;
}
.form__inner dl dd a {
  text-decoration: underline;
}
.ex p {
  text-align: left;
  font-size: 1.3rem;
  margin-block-end: 0.5rem;
}
.confirm .form__inner dl {
  text-align: left;
  border-bottom: 1px solid #cccccc;
}
.form.confirm p {
text-align: left;
}
.grecaptcha-badge { visibility: hidden; }

.form.finish p {
 margin-block-end: 3rem;
}

.confirm .btn p {
  display: flex;
  justify-content: center;

}
.form__inner .btn {
  padding-top: 8rem;
}
.form__inner .btn input {
  background-color: #000000;
  width: 26rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  color: #ffffff;
  letter-spacing: 0.2rem;
  border-radius: 6rem;
  margin-block-end: 2rem;
}
input[type="text"],input[type="tel"],input[type="email"],input[type="submit"],textarea {
  width: 100%;
  box-shadow: none;
  border: 1px solid #dfdfdf;
  background-color: #F4F4F4;
  border-radius: 0;
  padding:1rem 1rem;
  border-radius: 8px;
}
.finish__inner {
  text-align: left;
}
.finish__inner h2 {
  font-family: var(--title-font);
  font-size: 2.4rem;
  margin-block-end: 4rem;
  text-align: center;
}
.finish__inner p {
  margin-block-end: 2rem;
}
#formWrap {}
#formWrap dl {
 border-bottom: 1px solid #cccccc;
}
#formWrap dt {
  width: 28%;
}
#formWrap dd {
  width: 72%;
}

.topicsContents {
  padding-block: 5rem 10rem;
}
.topicsSlider {}
.topics__wrap {
  padding-inline: 0;
}
.topics__wrap picture {
  display: block;
  margin-bottom: 1rem;
}
.topics__wrap h3 {
  padding-inline: 15px;
  margin-bottom: 0.6rem;
}
.topics__wrap-box {
  padding-inline: 15px;
  margin-bottom: 4rem;
}
.topics .slick-prev {
    left: 30px;
}
.topics .slick-next {
    right: 30px;
}
.postList {
  margin-bottom: 5rem;
}
.pageNavArea {
  text-align: center;
  display: flex;
  justify-content: center;
  width: 100%;
}
@media (max-width: 767px) {
  .topicsContents {
    padding-block: 2rem 5rem;
  }
}
/*  ------------------------------------------------------------------------------*/
/* BUTTON */
.fixBuy {
  position: fixed;
  bottom: 100px;
  right: 0;
  z-index: 9999;
}
@media (max-width:767px) {
  .fixBuy {
    bottom: 0;
    right: 0;
  }
}
.fixBuy__inner {
  background-color: #fff;
  padding: 1rem 0.6rem 0.5rem;
  box-shadow: 0 0 5px 5px rgba(00,00,00,0.1);

}
.fixBuy .button {
  margin-top: 0.6rem;
}
.html-tag-content { display:none }
button.btn {
  width: 100%;
  cursor: pointer;
  background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
 }
/*　privacy-------------------------------------------------------------------------*/
.privacy {
  text-align: left;
  padding-bottom: 6rem;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.privacy h2 {
  font-size: 2rem;
  margin-top: 5rem;
  margin-bottom: 1.5rem;
}
.privacy h3 {
  font-size:1.8rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h4 {
  font-size: 1.7rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h5 {
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy h6 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1.5rem;
}
.privacy p {
  margin-bottom: 1.5rem;
}
.privacy ul {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ul li{
  margin-bottom: 0.7rem;
}
.privacy ol {
  margin-top: 1rem;
  margin-bottom: 1rem;
  padding-left: 3rem;
  line-height: 1.6;
}
.privacy ol li {
  margin-bottom: 0.7rem;
}
.privacy a {
  text-decoration: underline;
}
/* home ------------------------------------------------------------------------------*/
section {
  position: relative;
}
.buyArea {
  width: 100%;
  height: 39.751098096vw;
  background-image: url("../images/share/buy-area.jpg");
  background-size: cover;
}
.bgContents .row {
  align-items: center;
  height: 100%;
}
.bgContents .container {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.buyArea__inner-content {
  margin-bottom: 2rem;
}
.contents01 {
  background-color: #FFE62B;
  padding-top: 1.5rem;
}
.contents02 {
  position: relative;
  height: 100%;
}
.contents02__title {
  display: block;
  position: absolute;
  top: 2.19619vw;
  left: 50%;
  transform: translateX(-50%);
  margin-bottom: 2rem;
}
.contents02__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  width: 100%;
  letter-spacing: 0.2rem;
}

.contents02__inner h3 {
  font-family: serif;
  font-size: 2.6rem;
  margin-bottom: 2rem;
}
.contents02__inner h4 {
  font-family: serif;
  font-size: 2.5vw;
  line-height: 2;
}
.contents02__inner p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  width: 36%;
}
.riyu__box {
  position: relative;
}
.riyu h2 {
  width: 100%;
  max-width: 58rem;
  margin-bottom: 12rem;
  text-align: center;
  margin-inline: auto;
}
.riyu__box-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.riyu h3 {
  font-size: 4rem;
  font-weight: 700;
  color: #ffffff;
}
.align-center {
  display: flex;
  align-items: center;
}
.riyu h3 i {
  display: block;
}
.riyu__box-inner-box {
  color: #ffffff;
  padding: 2rem;
  background-color: rgba(00, 00, 00, 0.4);
}
.riyu__box-inner-box h4 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}
.riyu01 {}
.riyu02 {}
.riyu03 {}
.riyu04 {}
.riyu05 {}
.contents03 {
  position: relative;
}
.contents03__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.contents03__inner h2 {
  text-align: center;
  margin-bottom: 9rem;
}
.contents03__inner h2 img.pc {
  display: inline-block;
}
.contents03__img {
  padding-right: 5%;
}
.contents03__inner h3 {
  font-size: 3rem;
  margin-bottom: 3rem;
}
.contents03__inner p {
  margin-bottom: 3rem;
}
.contents04 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.contents04__img {
  width: 50%;
}
.contents04__inner {
  width: 50%;
}
.contents04__inner-box {
  padding: 6rem;
}
.contents04__inner-box h2 {
  margin-bottom: 3rem;
}
.history {
  padding-block: 10rem;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.titleSet {
  text-align: center;
  font-family: serif;
  font-size: 3rem;
  margin-bottom: 4rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.titleSet small {
  font-size: 1.4rem;
  font-weight: 700;
  color: #FFC80F;
  display: block;
}
.titleSet img {
  margin-top: 5rem;
}

/**　開発秘話
 * *************************************************/
.history_head {
  margin-block: 0rem 5rem;
}

.history .titleSet {
  margin-bottom: 8rem;
}
.history__wrap {
  margin-bottom: 8rem;
}
.history__wrap h3 {
  text-align: center;
  font-family: serif;
  font-size: 3rem;
  margin-bottom: 4.5rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.history__wrap p {
  line-height: 2.5;
  margin-bottom: 3rem;
}
.history__end {
  text-align: center;
}
.history__end p {
  font-size: 3rem;
  font-family: serif;
  line-height: 1.7;
  margin-top: 3rem;
}
.doctor {
  position: relative;
}
.doctor .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
}
.doctor h2 {
  text-align: center;
  font-family: serif;
  font-size: 3rem;
  margin-bottom: 8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.doctor h3 {
  font-size: 2.6rem;
  margin-bottom: 3rem;
}
.doctor__inner p {
  line-height: 2.2;
}
.doctor .name {
  text-align: right;
  font-size: 1.2rem;
  margin-top: 0.6rem;
}
.doctor-profile {
  padding: 2rem;
  margin-top: 2rem;
  background-color: rgba(255, 255, 255, 1.0);
  position: relative;
}
.doctor-profile h3 {
  font-size: 1.6rem;
  font-family: serif;
  color: #FFC80F;
  position: absolute;
  top: -0.8rem;
  left: -0.8rem;
}
.doctor-profile p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
.doctor-profile p:last-child {
  margin-bottom: 0;
}
.buy {
  padding-block: 10rem;
}
.buy h2 {
  text-align: center;
  font-family: serif;
  font-size: 6rem;
  margin-bottom: 8rem;
  font-weight: 400;
  letter-spacing: 0.2rem;
}
.buy-main {
  margin-bottom: 1rem;
}
.buy_btn {
  margin-bottom: 0.6rem;
}
.attention {
  font-size: 1.3rem;
}
.attention ul {
  border-top: 1px solid #ccc;
  list-style: none;
  padding: 0;
  margin-block: 1rem 3rem;
  padding-top: 2rem;
}
.attention ul li {
  padding: 0 0 0.7rem 1.5rem;
  position: relative;
  color: #666666;
}
.attention ul li:before {
  content: "※";
  position: absolute;
  left: 0;
}
.attention a {
  text-decoration: underline !important;
}
.product {
  margin-block: 10rem;
}
.productContent {
  margin-inline: 1rem;
}
.productContent__wrap {}
.productContent h3 {
  font-size: 2.4rem;
  color: var(--soyul-color);
  margin-bottom: 1rem;
}
.productContent .spec {
  font-size: 1.4rem;
  color: #777777;
  margin-bottom: 2rem;
}
.productContent__wrap-inner {}
.productContent__wrap-inner p {
  margin-bottom: 1.6rem;
}
.productContent__inner {
  text-align: right;
}
.productContent__inner p {
  font-size: 2.6rem;
}
.productContent__inner p small {
  font-size: 1.6rem;
}
.productContent__inner p {
  font-size: 1.5rem;
  color: #666666;
  line-height: 1.8;
}
.productContent__inner p.price {
  margin-top: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  font-size: 2.6rem;
  color: #222222;
  line-height: 1;
}
.productContent__inner p.price .moto {
  font-size: 1.5rem;
  font-weight: 400;
  margin-right: auto;
  color: #666666;
}
.productContent__inner p.price small {
  font-size: 1.5rem;
  color: #666666;
}
.productContent__add {
  margin-top: 4rem;
}
.productContent__add form {
  display: flex;
  flex-wrap: wrap;
}
.productContent__add form .form__line {
  width: 100%;
  display: flex;
}
.productContent__add form div {
  margin-right: 2rem;
}
.productContent__add .btn {
padding-block: 1rem;
border-radius: 100px;
background: #ffdb58;
text-align: center;
display: inline-block;
color: #ffffff;
font-weight: 700;
text-shadow: 1px 1px 1px #8C8C8C;
font-size: 1.8rem;
margin: 2rem auto 2rem;
}
.form-group {
  width: 100%;
  align-items: center;
  white-space: nowrap;
  display: flex;
}
.howto {
  padding-block: 10rem;
  background-size: 100% auto;
  background-repeat: repeat-y;
}
.howto .row {
  justify-content: center;
  color: #666;
}
.howto h2.titleSet {
  font-family: sans-serif;
  font-size: 2.4rem;
}
.howto h2.titleSet small {
  font-size: 1rem;
}
.howoto__wrap {
  
}
.howto__wrap-box {
  padding: 1rem 4rem;
  margin-bottom: 3rem;
}
.howto__wrap-box p {
  margin-top: 0.6rem;
}
@media (max-width: 767px) {
  .product {
    margin-block: 2rem;
  }
}
/**
 * 製品一覧
 * ---------------------------------------------------------------*/
 .all {
  margin-bottom: 5rem;
 }
.products__wrap {
  margin-bottom: 4rem;
 }
.products__wrap picture {
  display: block;
  margin-bottom: 0.6rem;
}
.products__wrap h2 {
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 1rem;
}
.products__wrap a {
  color: inherit;
  text-decoration: none;
}
.products__wrap .spec {
  font-size: 1.3rem;
  margin-bottom: 2rem;
}
.products__wrap .price {
  display: flex;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 700;
  align-items: flex-end;

}
.products__wrap .price small {
  font-weight: 400;
  font-size: 1.3rem;
}
.products__wrap .price .moto {
  font-size: 1.3rem;
  font-weight: 400;
}
.products__wrap .price span {
  margin-left: auto;
}
.products__wrap .price span.moto {
  margin-left: 0;
}

.select {
  padding-block: 10rem;
  background-color: #FFFDF4;
}
/** よくあるご質問
 * ***********************************************************************/
 .faq {
  padding-block: 10rem;
 }
 .faq__inner {
  padding-bottom: 5rem;
 }
 .faq__wrap {}
 .faq__wrap h3 {
  margin-block: 4rem 1rem;
  position: relative;
  padding-left: 1.3rem;
 }
 .faq__wrap h3:before {
  content: "●";
 } 
 .qa-6 {
    margin-bottom: 5px;
    border-bottom: 2px solid #d6dde3;
}

.qa-6 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-6 summary::before,
.qa-6 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-6 summary::before {
    color: #75bbff;
    content: "Q";
}

.qa-6 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-6[open] summary::after {
    transform: rotate(225deg);
}

.qa-6 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-6[open] p {
    transform: none;
    opacity: 1;
}

.qa-6 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}
@media (max-width:767px) {
  .qa-6 summary {
    padding: 1em 1em 1em 2em;
  }
  .qa-6 summary::before,
  .qa-6 p::before {
    left: 0.5em;
  }
}

/**
 * TOPICS *****************************************/
 .widget {
    margin-bottom: 3rem
}
.wp-block-heading {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    border-bottom: 0.1rem solid #666666
}
.widget li {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height:1.4 
}
.widget ul {
    list-style: none;
    padding: 0
}
.postContents {
  margin-bottom: 3rem;
}
.postContents header {
  margin-bottom: 2rem;
}
.postContents header h2 {
  margin-bottom: 1.5rem;
}
.postContents header h2  {
  position: relative;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 20px;
  margin-bottom: 1em;
  color: #222222;
  line-height: 1.3;
}
.postContents header h2::after {
  position: absolute;
  content: '';
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: var(--soyul-color);
}
.header__inner {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
}
.header__inner time {
  
}
.header__inner ul {
  list-style: none;
  padding: 0;
}
.header__inner ul li {}
.postContents main {
  margin-bottom: 3rem;
}
.postContents main p{
  margin-bottom: 2.5rem;
}
.postContents main ul,
.postContents main ol {
  margin-bottom: 2rem;
}
.postContents main li {
  margin-bottom: 0.5rem;
}
.postContents main h1 {
  font-size: 27px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 1em;
  color: #ffffff;
  border-radius: 10px;
  background: #222222;
  line-height: 1.3;
}
.postContents main h2 {
  font-size: 24px;
  font-weight: bold;
  padding: 10px 20px;
  margin-bottom: 1em;
  color: #ffffff;
  border-radius: 10px;
  background: #333333;
  line-height: 1.3;
}
.postContents main h3 {
  font-size: 25px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 1em;
  border-radius: 5px;
  background: #666666;
  line-height: 1.3;
  color: #ffffff;
}
.postContents main h4 {
  font-size: 24px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 1em;
  border-radius: 5px;
  background: #cccccc;
  line-height: 1.3;
}
.postContents main h5 {
  font-size: 20px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 1em;
  border-bottom: 3px double #E7EFEE;
  line-height: 1.3;
}
.postContents main h6 {
  font-size: 15px;
  font-weight: bold;
  padding: 5px 10px;
  margin-bottom: 1em;
  border-bottom: 3px dotted #E7EFEE;
  line-height: 1.3;
}

.archive-title {
  margin-bottom: 3rem;
}
picture.thumb {
  margin-bottom: 3rem;
  display: block;
}
picture.thumb img {
  border-radius: 10px;
}
.postContents footer {}
.postNav {
  display: flex;
  justify-content: space-between;
}
.postNav a {
  display: block;
}
/*　Media Queries　-------------------------------------------------------*/
@media (max-width:1280px) {}
@media (max-width:1120px) {}
@media (max-width:1024px) {}
@media (max-width:767px) {
  .buyArea {
    height: 50.8rem;
    background-image: url("../images/lp/buy-area-smp.jpg");
    background-size: cover;
  }
  .buyArea .col-sm-6 {
    height: 100%;
  }
  .buyArea__content {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
  }
  .buyArea__inner-content {
    margin-bottom: 2rem;
  }
  .contents01 {
    background-color: #FFE62B;
    padding-top: 1.5rem;
  }
  .contents02 {
    background-color: #C4D0E0;
    padding-bottom: 3rem;
  }
  .contents02__inner {
    position: static;
    top: auto;
    left: auto;
    transform: translateY(0);
    width: 90%;
    margin-inline: auto;
    letter-spacing: 0.2rem;
  }
  .contents02__title {
    display: block;
    position: static;
    top: auto;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 2rem;
  }
  .contents02__inner h3 {
    font-family: serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
  }
  .contents02__inner h4 {
    font-family: serif;
    font-size: 1.8rem;
    line-height: 2;
    text-align: center;
  }
  .contents02__inner p {
    font-size: 1.5rem;
    width: 100%;
  }
  .riyu h3 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
  }
   .riyu h3 img {
    width: 7rem;
    height: auto;
    margin-right: 1rem;
   }
   .riyu__box-inner-box h4 {
    font-size: 2rem;
    }
  .contents03__inner h2 {
    text-align: center;
    margin-bottom: 4.5rem;
  }
 .contents03__inner h2 img {
    width: 80%;
    height: auto;
 }
  .contents03__img {
    padding-inline: 5%;
    margin-bottom: 2.5rem;
  }
  .contents03__inner h3 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
  }
  .contents03__inner p {
    margin-bottom: 2rem;
  }
  .contents04 {
    display: block;
  }
  .contents04__img {
    width: 100%;
  }
  .contents04__inner {
    width: 100%;
  }
  .contents04__inner-box {
    padding: 3rem;
  }
  .contents04__inner-box h2 img {
    width: 100%;
    height: auto;
  }
  .history {
    padding-block: 10rem;
    background-size: 100% auto;
    background-repeat: repeat-y;
  }
  .titleSet {
    font-size: 2.5rem;
    margin-bottom: 3rem;
  }
  .titleSet small {
    font-size: 1rem;
  }
  .titleSet img {
    margin-top: 3rem;
  }
  .history .titleSet {
    margin-bottom: 4rem;
  }
  .history__wrap {
    margin-bottom: 4rem;
  }
  .history__wrap h3 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
  }
  .history__wrap p {
    line-height: 2;
    margin-bottom: 2rem;
  }
  .history__wrap img {
    margin-bottom: 2rem;
  }
  .history__end p {
    margin-top: 1.5rem;
    font-size: 1.8rem;
  }
  .doctor h2 {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .doctor h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
  }
  .doctor__inner p {
    line-height: 2;
    margin-bottom: 3rem;
  }
  .select {
    padding-block: 3rem 0;
  }
  .select .col-sm-6 {
    margin-bottom: 3rem;
  }

}