@charset "UTF-8";
img {
  width: 100%;
}

.test1 {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  -webkit-transition: all 0.4s ease-out 0.01s;
  transition: all 0.4s ease-out 0.01s;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  transform: scale(1);
  transform: rotate(-45deg);
  border-radius: 50%;
  animation: Flash1 1s infinite;
  animation: beyooon_a 1s forwards;
  animation: beyooon_b 1s forwards;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(90deg, rgb(0, 72, 110) 0%, rgb(0, 120, 155) 100%);
}

@keyframes Flash1 {
  50% {
    opacity: 0;
  }
}
@keyframes beyooon_a {
  0% {
    transform: translate(-50%, 0%) scale(0.5);
  }
  16% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1.22);
  }
  28% {
    transform: translate(-50%, 0%) scale(1);
  }
  88% {
    transform: translate(-50%, 0%) scale(1);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0%) scale(1);
  }
}
@keyframes beyooon_b {
  0% {
    transform: scale(0.5);
  }
  16% {
    transform: scale(1.32);
  }
  28% {
    transform: scale(0.87);
  }
  44% {
    transform: scale(1.05);
  }
  59% {
    transform: scale(0.98);
  }
  73% {
    transform: scale(1.01);
  }
  88% {
    transform: scale(1);
  }
  100% {
    transform: scale(1);
  }
}
.test {
  content: "\f105";
  font-family: FontAwesome;
}

.shadow {
  text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4), 1px 3px 3px rgba(0, 0, 0, 0.4), 1px 2px 3px rgba(0, 0, 0, 0.4);
}

/**scss共通ここまで***/
body {
  background-color: #000;
}

body {
  overflow: hidden;
}

main {
  overflow: hidden;
  background-color: #000;
}
main.active1 {
  overflow: hidden;
  height: 100vh;
}
main.active2 {
  overflow: hidden;
  height: auto;
}

#section01 {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  padding: 210px 0 60px 0;
  background-color: #fff;
}
@media screen and (max-width:800px) {
  #section01 {
    padding: 100px 0 35px 0;
  }
}
#section01 h1 {
  width: auto;
  margin: 0 auto 70px auto;
  text-align: center;
}
#section01 h1 figure {
  width: auto;
  height: 60px;
  margin-bottom: 18px;
}
@media screen and (max-width:1200px) {
  #section01 h1 figure {
    height: 4.5vw;
  }
}
@media screen and (max-width:800px) {
  #section01 h1 figure {
    height: 7.5vw;
    margin: 0 auto 25px;
  }
}
#section01 h1 img {
  width: auto;
  height: 60px;
  margin-bottom: 18px;
}
@media screen and (max-width:1200px) {
  #section01 h1 img {
    height: 4.5vw;
  }
}
@media screen and (max-width:800px) {
  #section01 h1 img {
    margin-bottom: 10px;
    height: 7.5vw;
  }
}
#section01 h1 span {
  display: block;
  text-align: center;
  font-size: 22px;
}
@media screen and (max-width:1200px) {
  #section01 h1 span {
    font-size: 1.9vw;
  }
}
@media screen and (max-width:800px) {
  #section01 h1 span {
    font-size: 4.5vw;
  }
}
#section01 .base_text {
  text-align: center;
  width: 90%;
  margin: 0 auto;
  line-height: 180%;
}

#section02 {
  width: 100%;
  font-family: "Noto Serif JP", serif;
}
#section02 figure {
  position: relative;
}
#section02 figure figcaption {
  color: #fff;
  position: absolute;
  bottom: 8px;
  right: 8px;
  line-height: 100%;
}

.orange_line_animate {
  width: 0px;
  height: 5px;
  background-color: #ea5504;
  margin: 0 auto 30px auto;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .orange_line_animate {
    height: 3px;
    margin-bottom: 15px;
    width: 0vw;
  }
}
.orange_line_animate.active {
  width: 86px;
}
@media screen and (max-width:800px) {
  .orange_line_animate.active {
    width: 20vw;
  }
}

#section03_nav {
  padding: 30px 0;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width:800px) {
  #section03_nav {
    padding: 3.5vw 0 1.5vw 0;
  }
}
#section03_nav .section__in {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
#section03_nav ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#section03_nav ul li {
  width: 23.9%;
}
@media screen and (max-width:800px) {
  #section03_nav ul li {
    width: 48.5%;
    margin-bottom: 2vw;
  }
}
#section03_nav ul li a {
  width: 100%;
  display: inline-block;
  padding: 0.5em 0 0.6em 0;
  border: 1px solid #fff;
  text-align: center;
  opacity: 0.5;
  transition: all 0.4s ease-out 0.01s;
  color: #fff;
  position: relative;
}
@media screen and (max-width:800px) {
  #section03_nav ul li a {
    font-size: 3vw;
  }
}
#section03_nav ul li a::after {
  content: "";
  width: 0.5em;
  height: 1em;
  position: absolute;
  top: 50%;
  right: 0.75em;
  background: url(../images/quality/icon_yaji.svg) no-repeat center;
  background-size: contain;
  transform: translate(0, -50%);
}
#section03_nav ul li a.active {
  opacity: 1;
}
#section03_nav ul li a:hover {
  opacity: 1;
}

.section_photo_contena {
  width: 100%;
  overflow: hidden;
  background-color: #000;
}
.section_photo_contena ul {
  display: flex;
  width: 125vw;
  justify-content: space-between;
  margin-bottom: 1vw;
}
.section_photo_contena ul.ul1 {
  margin-left: -10vw;
}
.section_photo_contena ul.ul2 {
  margin-left: -21vw;
}
.section_photo_contena ul li {
  width: 24.5%;
  position: relative;
}
.section_photo_contena ul li .base {
  position: relative;
}
.section_photo_contena ul li .base_1 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 1.75s linear;
  opacity: 0;
}
.section_photo_contena ul li .base_1.active {
  opacity: 1;
}
.section_photo_contena ul li .base_2 {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
  transition: all 1.75s linear;
  opacity: 0;
}
.section_photo_contena ul li .base_2.active {
  opacity: 1;
}

#section04 {
  width: 100%;
  position: relative;
  padding: 130px 0 50px 0;
  /*background-color: #fff;*/
  background-color: black;
}
@media screen and (max-width:800px) {
  #section04 {
    padding: 75px 0 0 0;
  }
}
#section04 .section__in {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
  color: white;
}
#section04 .photobox01 {
  margin-bottom: 25px;
}
@media screen and (max-width:800px) {
  #section04 .photobox01 {
    width: 48.5%;
  }
}
@media screen and (max-width:800px) {
  #section04 .photobox02 {
    width: 48.5%;
  }
}
#section04 .photobox03 {
  margin-bottom: 25px;
}
h2.maintitle {
  text-align: center;
  margin-bottom: 2.5em;
}
@media screen and (max-width:800px) {
  h2.maintitle {
    margin-bottom: 1.5em;
  }
}
h2.maintitle img {
  width: auto;
  height: 30px;
}
@media screen and (max-width:800px) {
  h2.maintitle img {
    height: 6vw;
  }
}

p.maintext {
  text-align: center;
  margin-bottom: 2.5em;
}

h2.titleh2ver01 {
  width: 100%;
  text-align: center;
  background-color: #7d7468;
  color: #fff;
  padding: 0.5em 0 0.6em 0;
  line-height: 100%;
  margin-bottom: 20px;
}
@media screen and (max-width:800px) {
  h2.titleh2ver01 {
    font-size: 4vw;
  }
}
h2.titleh2ver01.color01 {
  background-color: #3a7aab;
}
h2.titleh2ver01.color02 {
  background-color: #ca7f1b;
}
h2.titleh2ver01.color03 {
  background-color: #ae3020;
}

h3.titleh3ver01 {
  width: 100%;
  text-align: center;
  padding: 0.3em 0 0.4em 0;
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  margin-bottom: 30px;
}

p.subtext_base {
  text-align: center;
  margin-bottom: 1.5em;
}
@media screen and (max-width:800px) {
  p.subtext_base {
    text-align: left;
  }
}

.clum2_01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum2_01 .bigs {
  width: 63.8%;
}
@media screen and (max-width:800px) {
  .clum2_01 .bigs {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum2_01 .minis {
  width: 31.2%;
}
@media screen and (max-width:800px) {
  .clum2_01 .minis {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
}
.clum2_01.mb35 {
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum2_01.mb35 {
    margin-bottom: 0px;
  }
}

.clum2_02 {
  width: 100%;
  max-width: 620px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum2_02 li {
  width: 47.5%;
}
@media screen and (max-width:800px) {
  .clum2_02 li {
    width: 48.5%;
    margin-bottom: 35px;
  }
}
.clum2_02 li:last-chird() {
  margin-bottom: 0;
}
.clum2_02.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  .clum2_02.mb50 {
    margin-bottom: 0px;
  }
}

.clum2_03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  .clum2_03 {
    margin-top: 35px !important;
    margin-top: 35px !important;
  }
}
.clum2_03 .list01 {
  width: 63%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list01 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum2_03 .list01 figure {
  width: 100%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list01 figure {
    width: 100%;
    margin: 0 auto;
  }
}
.clum2_03 .list01 .boxin {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width:800px) {
  .clum2_03 .list01 .boxin {
    flex-wrap: wrap;
  }
}
.clum2_03 .list01 .boxin figure {
  width: 67.5%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list01 .boxin figure {
    width: 100%;
    margin-bottom: 0.5em;
  }
}
.clum2_03 .list01 .boxin .text {
  width: 30%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list01 .boxin .text {
    width: 100%;
    margin-top: 0.2vw;
  }
}
.clum2_03 .list02 {
  width: 34%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list02 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum2_03 .list02 figure {
  width: 100%;
  border: 1px solid #666;
}
@media screen and (max-width:800px) {
  .clum2_03 .list02 figure {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width:800px) {
  .clum2_03 .list02 .boxin {
    display: flex;
    justify-content: space-between;
  }
  .clum2_03 .list02 .boxin figure {
    width: 48%;
    margin: 0 auto 0 0;
    display: flex;
    align-items: center;
  }
  .clum2_03 .list02 .boxin .text {
    width: 48%;
  }
}
/*ペット記事*/
.clum2_03 .list04 {
  width: 57%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list04 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum2_03 .list04 figure {
  width: 100%;
}
@media screen and (max-width:800px) {
  .clum2_03 .list04 figure {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width:800px) {
  .clum2_03 .list04 .boxin {
    flex-wrap: wrap;
  }
  .clum2_03 .list04 .boxin figure {
    width: 100%;
  }
}
/*ペット記事*/

.clum2_03.mt50 {
  margin-top: 50px;
}
@media screen and (max-width:800px) {
  .clum2_03.mt50 {
    margin-top: 0px;
  }
}
.clum2_03.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  .clum2_03.mb50 {
    margin-bottom: 0px;
  }
}

.clum3_01 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum3_01 li {
  width: 30%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum3_01 li {
    width: 48.5%;
    margin-bottom: 35px;
  }
}
.clum3_01.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  .clum3_01.mb50 {
    margin-bottom: 0px;
  }
}

.clum3_02 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum3_02 .list01 {
  width: 32.125%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum3_02 .list01 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum3_02 .list01 figure {
  width: 100%;
}
@media screen and (max-width:800px) {
  .clum3_02 .list01 figure {
    width: 65%;
    margin: 0 auto;
  }
}
.clum3_02 .list02 {
  width: 41%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum3_02 .list02 {
    width: 65.8%;
    margin-bottom: 35px;
  }
}
.clum3_02 .list03 {
  width: 19.58%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum3_02 .list03 {
    width: 31.1%;
  }
}
.clum3_02.mb50 {
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  .clum3_02.mb50 {
    margin-bottom: 0px;
  }
}

.clum3_03 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  .clum3_03 {
    display: none;
  }
}
.clum3_03 .list01 {
  width: 39.05%;
  margin-bottom: 25px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  .clum3_03 .list01 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum3_03 .list01 figure {
  width: 55%;
}
.clum3_03 .list01 .text {
  width: 42%;
}
.clum3_03 .list02 {
  width: 26%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  .clum3_03 .list02 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.clum3_03 .list02 figure {
  width: 38%;
}
@media screen and (max-width:800px) {
  .clum3_03 .list02 figure {
    width: 20%;
  }
}
.clum3_03 .list02 .text {
  width: 58%;
}
@media screen and (max-width:800px) {
  .clum3_03 .list02 .text {
    width: 75%;
  }
}
.clum3_03 .list03 {
  width: 25.5%;
}
@media screen and (max-width:800px) {
  .clum3_03 .list03 {
    width: 100%;
  }
}
.clum3_03 .list03 figure {
  width: 105%;
  margin-left: -5%;
}

.clum4_04 {
  width: 100%;
  display: none;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:800px) {
  .clum4_04 {
    display: flex;
  }
}
.clum4_04 li {
  width: 48.5%;
  margin-bottom: 35px;
}

.clum4_05 {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum4_05 li {
  width: 21.66%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum4_05 li {
    width: 48.5%;
  }
}
.clum4_05 li.longs {
  width: 47.18%;
}
@media screen and (max-width:800px) {
  .clum4_05 li.longs {
    width: 100%;
  }
}
.clum4_05 li.longs2 {
  width: 47.18%;
  max-width: 452px;
}
@media screen and (max-width:800px) {
  .clum4_05 li.longs2 {
    width: 100%;
    max-width: 800px;
  }
}
.clum4_05 .text2 {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #666;
}
.clum4_05 .text2 .text2box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  .clum4_05 .text2 .text2box {
    flex-wrap: wrap;
  }
}
.clum4_05 .text2 .text2box.second {
  margin-top: 15px;
}
.clum4_05 .text2 .text2box .ttl {
  width: 46%;
  background-color: #7c7368;
  text-align: center;
  display: flex;
  align-items: center;
  padding: 0.4em 0 0.5em 0;
}
@media screen and (max-width:800px) {
  .clum4_05 .text2 .text2box .ttl {
    width: 100%;
  }
}
.clum4_05 .text2 .text2box .ttl span {
  display: inline-block;
  text-align: center;
  color: #fff;
  width: 100%;
}
.clum4_05 .text2 .text2box .ttx {
  width: 52%;
}
@media screen and (max-width:800px) {
  .clum4_05 .text2 .text2box .ttx {
    width: 100%;
    padding-top: 1vw;
    font-size: 2.75vw;
  }
}

.clum1_01 {
  width: 90%;
  max-width: 410px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width:800px) {
  .clum1_01 {
    width: 100%;
    margin: 0 auto 35px auto;
  }
}
.clum1_01 figure {
  width: 33.65%;
}
.clum1_01 .text {
  width: 62.4%;
}

.clum2_04 {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.clum2_04 li.list01 {
  width: 54.8%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum2_04 li.list01 {
    width: 100%;
    text-align: center;
  }
}
.clum2_04 li.list02 {
  width: 41.5%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .clum2_04 li.list02 {
    width: 85%;
    margin: 0px auto 35px auto;
  }
}
.clum2_04 .text2 {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dotted #666;
}
.clum2_04 .text2 .text2box {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width:800px) {
  .clum2_04 .text2 .text2box {
    flex-wrap: wrap;
  }
}
.clum2_04 .text2 .text2box.second {
  margin-top: 15px;
}
.clum2_04 .text2 .text2box .ttl {
  width: 46%;
}
@media screen and (max-width:800px) {
  .clum2_04 .text2 .text2box .ttl {
    width: 55%;
    margin: 25px auto 0 auto;
  }
}
.clum2_04 .text2 .text2box .ttx {
  width: 52%;
}
@media screen and (max-width:800px) {
  .clum2_04 .text2 .text2box .ttx {
    width: 100%;
    padding-top: 1vw;
    font-size: 2.75vw;
    text-align: left;
  }
}

.list__title {
  width: 100%;
  /*color: #7c7368;*/
  color: white;
  padding: 0.5em 0;
  text-align: left;
  border-bottom: 1px solid #7c7368;
  margin-bottom: 0.5em;
}
@media screen and (max-width:800px) {
  .list__title {
    font-size: 3.5vw;
  }
}
.list__title.notop {
  padding-top: 0;
}

@media screen and (max-width:800px) {
  .list__basetext {
    font-size: 3.2vw;
  }
}

h4 {
  display: flex;
  align-items: center;
}

.wide_text01 {
  display: inline-block;
  transform: scale(0.9, 1);
  width: 120%;
  text-align: left;
  margin-left: -6%;
  margin-right: -14%;
}

.img01 {
  margin-bottom: 50px;
}
@media screen and (max-width:800px) {
  .img01 {
    margin-bottom: 30px;
  }
}

figure {
  position: relative;
}
figure figcaption.base {
  position: absolute;
  bottom: 8px;
  right: 8px;
  color: #fff;
  line-height: 100%;
}
figure figcaption.base.black {
  color: #000;
}

.sp_tops {
  pointer-events: none;
  opacity: 0;
  transition: all 1.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  position: fixed;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
}
.sp_tops.active {
  opacity: 1;
}

.scrolltext2 {
  position: absolute;
  left: 50.2%;
  top: 70%;
  width: 1px;
  height: 40px;
  z-index: 30;
  font-family: "Noto Serif JP", serif;
  opacity: 1;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
}
@media screen and (max-width:800px) {
  .scrolltext2 {
    top: auto;
    display: block;
    bottom: calc(115px + 25vw);
    top: auto;
    bottom: 32.5%;
  }
}
.scrolltext2.active {
  opacity: 0;
  pointer-events: none;
}
.scrolltext2 .scrolltext__moji {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 0%);
  color: #000;
}
.scrolltext2 .scrolltext__moji.active_pc {
  color: #000;
}
@media screen and (max-width:800px) {
  .scrolltext2 .scrolltext__moji.active_pc {
    color: #000;
  }
}
.scrolltext2 .scrolltext__intext {
  width: 100%;
  height: 100%;
  background-color: #000;
  animation: scrollmoves 1.4s ease-in-out infinite;
  position: absolute;
  top: 0;
  left: 0;
}
.scrolltext2 .scrolltext__intext.active_pc {
  background-color: #000;
}
@media screen and (max-width:800px) {
  .scrolltext2 .scrolltext__intext.active_pc {
    background-color: #000;
  }
}
@keyframes scrollmoves {
  0% {
    height: 0;
    top: 0;
    transform: translate(0%, 0%);
  }
  30% {
    height: 40px;
    top: 0%;
    transform: translate(0%, 0%);
  }
  100% {
    height: 0;
    top: 100%;
    transform: translate(0%, 0%);
  }
}

h2.top_first {
  position: absolute;
  bottom: 30px;
  transform: translate(0%, 0%);
  z-index: 40;
  left: 0%;
  width: 100%;
  font-family: "Noto Serif JP", serif;
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1) 0.01s;
  display: none;
}
@media screen and (max-width:800px) {
  h2.top_first {
    display: block;
    top: 75%;
    opacity: 1;
  }
}
h2.top_first.active {
  opacity: 0;
  pointer-events: none;
}
h2.top_first .textsub {
  text-align: center;
  color: #fff;
  font-size: 20px;
  line-height: 160%;
}
@media screen and (max-width:800px) {
  h2.top_first .textsub {
    font-size: 2.8vw;
  }
}
h2.top_first .textmain {
  letter-spacing: -0.05em;
  color: #fff;
  text-align: center;
  font-size: 38px;
  color: #fff;
  line-height: 125%;
}
@media screen and (max-width:800px) {
  h2.top_first .textmain {
    font-size: 5.8vw;
  }
}

.comfort_box {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comfort_box .left {
  width: 54%;
  background-color: #f5f2e9;
  padding: 30px;
}
@media screen and (max-width:800px) {
  .comfort_box .left {
    width: 100%;
    margin-bottom: 30px;
    padding: 5vw 3.5vw;
  }
}
.comfort_box .left .inbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.comfort_box .left .inbox .text {
  width: 45%;
  color: black;
}
@media screen and (max-width:800px) {
  .comfort_box .left .inbox .text p {
    font-size: 2.8vw;
  }
}
.comfort_box .left .inbox figure {
  width: 52.5%;
  padding-top: 1.5em;
}
.comfort_box .right {
  width: 46%;
  background-color: #7d7468;
  padding: 30px 30px 15px 30px;
}
@media screen and (max-width:800px) {
  .comfort_box .right {
    width: 100%;
    padding: 5vw 3.5vw;
  }
}
.comfort_box .right ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comfort_box .right ul li {
  width: 47.8%;
}
.comfort_box .right ul li h4 {
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 0.4em 0;
  border-bottom: 0px solid #fff;
}
.comfort_box .right ul li h4 span {
  display: inline-block;
  width: 100%;
  text-align: center;
}
.comfort_box .right ul li h4.lines {
  border-bottom: 1px solid #fff;
}
.comfort_box .right ul li .list__basetext {
  color: #fff;
}
.comfort_box .right ul li.longs {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.comfort_box .right ul li.longs figure {
  width: 49.5%;
}
.comfort_box .right ul li.longs .text {
  width: 45%;
}
.comfort_box .right ul li.longs .outext {
  text-align: right;
  color: #fff;
}

.boxinbox {
  width: 100%;
  border: 1px solid #333;
  color: black;
  background-color: white;
  padding: 40px;
}
@media screen and (max-width:800px) {
  .boxinbox {
    padding: 5vw 3.5vw;
  }
}
.boxinbox .title2 {
  padding-left: 1em;
  position: relative;
  /*font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;*/
  margin-bottom: 0.75em;
}
@media screen and (max-width:800px) {
  .boxinbox .title2 {
    font-size: 3.4vw;
  }
}
.boxinbox .title2::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width:800px) {
  .boxinbox .f18 {
    font-size: 3.2vw !important;
  }
}
.boxinbox ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.boxinbox ul li {
  width: 47.35%;
  margin-bottom: 35px;
}
@media screen and (max-width:800px) {
  .boxinbox ul li {
    width: 100%;
  }
}
@media screen and (max-width:800px) {
  .boxinbox ul li .f18 {
    font-size: 3.2vw !important;
  }
}
.boxinbox ul li.centerh {
  display: flex;
  align-items: center;
  position: relative;
}
.boxinbox ul li.centerh .texts {
  width: 100%;
}
.boxinbox ul li.centerh .texts p {
  text-align: center;
  margin-bottom: 1em;
}
.boxinbox ul li.centerh::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 100%;
  border-right: 1px dotted #333;
  top: 0;
  right: -5.5%;
}
@media screen and (max-width:800px) {
  .boxinbox ul li.centerh::after {
    border-right: 0px dotted #333;
  }
}
@media screen and (max-width:800px) {
  .boxinbox ul li.centerh {
    border-bottom: 1px dotted #333;
    padding-bottom: 35px;
  }
}
.boxinbox ul li.nobottom1 {
  margin-bottom: 0px;
}
@media screen and (max-width:800px) {
  .boxinbox ul li.nobottom1 {
    margin-bottom: 35px;
  }
}
.boxinbox ul li.nobottom2 {
  margin-bottom: 0px;
}
.boxinbox ul li .mb1em {
  margin-bottom: 1em;
}
.boxinbox ul li .mt05em {
  margin-top: 0.5em;
  display: block;
}
.boxinbox ul li .mt05em2 {
  margin-top: 0.5em;
  display: block;
}
@media screen and (max-width:800px) {
  .boxinbox ul li .mt05em2 {
    font-size: 2.6vw;
    margin-top: 0em;
  }
}
.boxinbox ul li .boxin {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.boxinbox ul li .boxin.bottoms {
  margin-bottom: 25px;
}
.boxinbox ul li .boxin figure {
  width: 37%;
}
.boxinbox ul li .boxin .text {
  width: 60%;
}
.boxinbox ul li h5 {
  margin-top: 1.5em;
}
.boxinbox ul li .imgimgs {
  width: 90%;
  margin: 15px auto 0 auto;
}
.boxinbox ul li .boldtext {
  font-weight: 400;
  color: #000;
}
@media screen and (max-width:800px) {
  .boxinbox ul li .boldtext {
    text-align: center;
    padding-bottom: 0.35em;
  }
}
.boxinbox ul li .boldtext2 {
  font-weight: 400;
  color: #000;
}
@media screen and (max-width:800px) {
  .boxinbox ul li .boldtext2 {
    text-align: left;
    padding-bottom: 0.35em;
    font-size: 2.9vw;
  }
}

.boxinbox2 {
  width: 100%;
  border: 1px solid #333;
  padding: 40px;
  margin-top: 30px;
  background-color: white;
  color: black;
}
@media screen and (max-width:800px) {
  .boxinbox2 {
    padding: 5vw 3.5vw;
  }
}
.boxinbox2 .title2 {
  padding-left: 1em;
  position: relative;
  /*font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;*/
  margin-bottom: 0.75em;
}
@media screen and (max-width:800px) {
  .boxinbox2 .title2 {
    font-size: 3.4vw;
  }
}
.boxinbox2 .title2::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.boxinbox2 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.boxinbox2 ul li.list01 {
  width: 26.9%;
}
@media screen and (max-width:800px) {
  .boxinbox2 ul li.list01 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.boxinbox2 ul li.list01 figure {
  width: 95%;
  margin: 0 auto 0 0;
}
@media screen and (max-width:800px) {
  .boxinbox2 ul li.list01 figure {
    width: 70%;
    margin: 0 auto;
  }
}
@media screen and (max-width:800px) {
  .boxinbox2 ul li.list01 .f18 {
    font-size: 3.2vw !important;
  }
}
.boxinbox2 ul li.list02 {
  width: 69.7%;
}
@media screen and (max-width:800px) {
  .boxinbox2 ul li.list02 {
    width: 100%;
  }
}
.boxinbox2 ul li.list02 figure {
  margin-top: 20px;
}
@media screen and (max-width:800px) {
  .boxinbox2 ul li.list02 .f18 {
    font-size: 3.2vw !important;
  }
}

.boxinbox3 {
  width: 100%;
  border: 1px solid #333;
  padding: 40px;
  margin-top: 30px;
  background-color: white;
  color: black;
}
@media screen and (max-width:800px) {
  .boxinbox3 {
    padding: 5vw 3.5vw;
  }
}
.boxinbox3 .title2 {
  padding-left: 1em;
  position: relative;
  /*font-family: 'Noto Sans JP', BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;*/
  margin-bottom: 0.75em;
}
@media screen and (max-width:800px) {
  .boxinbox3 .title2 {
    font-size: 3.4vw;
  }
}
.boxinbox3 .title2::before {
  content: "";
  width: 4px;
  height: 100%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 0;
}
.boxinbox3 ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.boxinbox3 ul li.list01 {
  width: 47.46%;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list01 {
    width: 100%;
    margin-bottom: 35px;
  }
}
.boxinbox3 ul li.list01 figure {
  width: 95%;
  margin: 0 auto 0 0;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list01 figure {
    width: 85%;
    margin: 25px auto 20px auto;
  }
}
.boxinbox3 ul li.list01 p.base_text {
  text-align: center;
  margin-bottom: 0.5em;
}
.boxinbox3 ul li.list01 p.base_text2 {
  text-align: left;
  margin-top: 0.5em;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list01 .f16 {
    font-size: 3vw;
  }
}
.boxinbox3 ul li.list02 {
  width: 23%;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list02 {
    width: 48.5%;
    margin-bottom: 0px;
  }
}
.boxinbox3 ul li.list02 figure {
  margin-top: 20px;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list02 .f16 {
    font-size: 3vw;
  }
}
.boxinbox3 ul li.list03 {
  width: 23%;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list03 {
    width: 48.5%;
  }
}
.boxinbox3 ul li.list03 figure {
  margin-top: 20px;
}
@media screen and (max-width:800px) {
  .boxinbox3 ul li.list03 .f16 {
    font-size: 3vw;
  }
}

.specialsbana {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 0 auto;
  padding: 25px 0 50px 0;
}/*# sourceMappingURL=quality.css.map */