@charset "UTF-8";
/**********
all
**********/
html {
  font-family: "Noto Serif JP", serif;
}

a {
  text-decoration: none;
  color: #000;
}
a:hover {
  cursor: pointer;
}

li {
  list-style: none;
}

.contents_wrap {
  width: 1300px;
  margin: 0 auto;
}

/*バナーエリア*/
.btnarea {
  display: flex;
  justify-content: center;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
.btnarea .btn {
  border: 2px solid #000;
  filter: drop-shadow(8px 8px 0px rgba(31, 23, 20, 0.2039215686));
  position: relative;
  width: 530px;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.btnarea .btn a {
  color: #fff;
  text-align: center;
  display: block;
  height: 100%;
}
.btnarea .title {
  font-size: 1.8rem;
  padding-bottom: 30px;
}
.btnarea .subtitle {
  color: #000;
  font-size: 1.5rem;
  width: 345px;
  background-color: #fff;
  border: 2px solid #000;
  padding: 10px 0px;
  filter: drop-shadow(6px 6px 0px rgba(31, 23, 20, 0.2039215686));
  border-radius: 100px;
  text-align: center;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  position: relative;
}
.btnarea .subtitle:after, .btnarea .subtitle:before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
}
.btnarea .subtitle:after {
  border-color: rgba(255, 255, 255, 0);
  border-top-width: 10px;
  border-bottom-width: 10px;
  border-left-width: 10px;
  border-right-width: 10px;
  margin-left: -10px;
  border-top-color: #FFFFFF;
}
.btnarea .subtitle:before {
  border-color: rgba(0, 0, 0, 0);
  border-top-width: 12px;
  border-bottom-width: 12px;
  border-left-width: 12px;
  border-right-width: 12px;
  margin-left: -12px;
  margin-top: 1px;
  border-top-color: #000000;
}
.btnarea .btn_catalog {
  background-color: #ff6600;
  margin-right: 30px;
}
.btnarea .btn_catalog .title::before {
  content: "";
  background-image: url(../images/btn_ico-catalog.png);
  background-size: contain;
  display: inline-block;
  width: 53px;
  height: 53px;
  margin-right: 1rem;
  vertical-align: middle;
}
.btnarea .btn_catalog:hover {
  background: hsl(24, 100%, 70%);
  transform: translateY(3px);
}
.btnarea .btn_catalog:active {
  transition-duration: 0.3s, 0.3s, 0.6s, 0.6s;
}
.btnarea .btn_modelhouse {
  background-color: #ffcc33;
}
.btnarea .btn_modelhouse .title::before {
  content: "";
  background-image: url(../images/btn_ico-modelhouse.png);
  background-size: contain;
  display: inline-block;
  width: 53px;
  height: 53px;
  margin-right: 1rem;
  vertical-align: middle;
}
.btnarea .btn_modelhouse:hover {
  background: hsl(45, 100%, 70%);
  transform: translateY(3px);
}
.btnarea .btn_modelhouse:active {
  transition-duration: 0.3s, 0.3s, 0.6s, 0.6s;
}

/*コンバージョン*/
.conversion {
  background-color: #f1f1f1;
  padding: 65px 0;
}
.conversion .cv_txt {
  font-size: 2rem;
  text-align: center;
  line-height: 4rem;
  margin-bottom: 70px;
}
.conversion .cv_txt .marker {
  background: linear-gradient(transparent 50%, #ffdd00 50%);
  padding-bottom: 0.3em;
}

@media screen and (max-width: 736px) {
  body {
    overflow-x: hidden;
  }
  img {
    width: 100%;
    height: auto;
  }
  .btnarea {
    width: 95%;
    margin: 0 auto;
  }
  .btnarea .btn {
    width: 50%;
    border: 1px solid;
    filter: drop-shadow(5px 5px 0px rgba(31, 23, 20, 0.2));
  }
  .btnarea .subtitle {
    font-size: 0.75rem;
    width: 90%;
    border: 1px solid #000;
    padding: 3px 0px;
    filter: drop-shadow(5px 5px 0px rgba(31, 23, 20, 0.2));
    border-radius: 10px;
    top: -15px;
  }
  .btnarea .subtitle:after {
    border-color: rgba(255, 255, 255, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-top: -1px;
    margin-left: -10px;
    border-top-color: #FFFFFF;
  }
  .btnarea .subtitle:before {
    border-color: rgba(0, 0, 0, 0);
    border-top-width: 10px;
    border-bottom-width: 10px;
    border-left-width: 10px;
    border-right-width: 10px;
    margin-left: -10px;
    margin-top: 1px;
    border-top-color: #000000;
  }
  .btnarea .btn_catalog {
    margin-right: 10px;
  }
  .btnarea .btn_catalog .title {
    font-size: 0.9rem;
    padding-bottom: 5px;
  }
  .btnarea .btn_catalog .title span {
    font-size: 0.7rem;
  }
  .btnarea .btn_catalog .title::before {
    width: 20px;
    height: 20px;
    margin-right: 2px;
  }
  .btnarea .btn_modelhouse .title {
    font-size: 0.9rem;
    padding-bottom: 5px;
  }
  .btnarea .btn_modelhouse .title::before {
    width: 20px;
    height: 20px;
    margin-right: 0;
  }
  .conversion {
    padding: 40px 0;
  }
  .conversion .cv_txt {
    font-size: 1.3rem;
    line-height: 3rem;
    margin-bottom: 50px;
  }
  .sp-none {
    display: none;
  }
}
/**********
header
**********/
header {
  position: fixed;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 10px 25px;
  background-color: #fff;
}

header .contents_wrap {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .btnarea .subtitle {
  font-size: 0.875rem;
  padding: 3px 10px;
  top: -15px;
  width: 80%;
}
header .btnarea .title {
  font-size: 1.125rem;
  padding-bottom: 10px;
}


header .btnarea .title span {
  font-size: 0.75rem;
}
header .btnarea .btn_catalog {
  width: 250px;
  margin-right: 20px;
}
header .btnarea .btn_catalog .title::before {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}
header .btnarea .btn_modelhouse {
  width: 250px;
}
header .btnarea .btn_modelhouse .title::before {
  width: 40px;
  height: 40px;
  margin-right: 0.5rem;
}


@media screen and (max-width: 736px) {
  header {
    position: initial;
    width: 100%;
  }
  header .contents_wrap {
    width: 100%;
  }
  header h1 {
    width: 30%;
    margin: 0 auto;
  }
  header nav {
  width: 100%;
   position: fixed;
  bottom: 0px;
  left: 0;
  background-color: #fff;
  padding: 20px 0 10px 0;
  z-index: 999;
  }
  header .btnarea .subtitle {
    font-size: 0.75rem;
    padding: 3px 10px;
    top: -15px;
    width: 90%;
    border-radius: 10px;
  }
  header .btnarea .title {
    font-size: 1.125rem;
    padding-bottom: 10px;
  }
  header .btnarea .title span {
    font-size: 0.75rem;
  }
  header .btnarea .btn_catalog {
    width: 50%;
    margin-right: 10px;
  }
  header .btnarea .btn_catalog .title::before {
    width: 20px;
    height: 20px;
    margin-right: 2px;
  }
  header .btnarea .btn_modelhouse {
    width: 50%;
  }
  header .btnarea .btn_modelhouse .title::before {
    width: 20px;
    height: 20px;
    margin-right: 2px;
  }
}
/**********
mainvisual
**********/
.mainvisual {
  background-image: url(../images/mainvisual_bk-pc.jpg);
  background-size: cover;
  min-height: 763px;
  margin-top: 130px;
  padding-top: 30px;
}

.mainvisual_ttl {
  color: #fff;
  text-align: center;
  font-weight: normal;
}
.mainvisual_ttl .title {
  font-size: 2.5rem;
  letter-spacing: 0.3rem;
  margin-bottom: 30px;
}
.mainvisual_ttl .subtitle {
  margin: 0 auto;
  position: relative;
}

.mainvisual_img {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.mainvisual_img .cvarea {
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.mainvisual_img .cvarea:hover {
  opacity: 0.8;
  transform: translateY(3px);
}

@media screen and (max-width: 767px) {
  .mainvisual {
    background-image: url(../images/mainvisual_bk-sp.jpg);
    background-size: contain;
    min-height: auto;
    margin-top: 0;
  }
  .mainvisual_ttl .title {
    font-size: 1.5rem;
  }
  .mainvisual_ttl .subtitle {
    width: 50%;
    display: block;
    margin: 0 auto;
    position: relative;
  }
  .mainvisual_img {
    flex-direction: column;
    width: 95%;
    margin: 0 auto;
  }
  .mainvisual_img .cvarea {
    order: 2;
    display: block;
    margin-top: 10px;
  }
  .mainvisual_img .cvarea img {
    width: 100%;
    height: auto;
  }
  .mainvisual_img .photo {
    order: 1;
  }
  .mainvisual_img .photo img {
    width: 100%;
    height: auto;
  }
}
/**********
animation
**********/
.animation .ornament {
  background-color: #f1f1f1;
  position: relative;
  z-index: -1;
  margin-top: -50px;
}
.animation .ornament::after {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 165px;
}

.animation_ttl {
  text-align: center;
  width: 1030px;
  margin: 80px auto 35px auto;
}
.animation_ttl .lead {
  font-size: 1.25rem;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.animation_ttl .lead::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 2px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  transform: rotate(-25deg);
}
.animation_ttl .lead::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  transform: rotate(25deg);
}
.animation_ttl picture {
  display: block;
}

.animation_content {
  width: 1030px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.animation_content .text {
  padding-top: 30px;
  padding-left: 55px;
}

#minihouseArea {
  width: 840px;
  max-width: 100%;
  overflow: hidden;
  position: relative;
}

.minihouse {
  position: relative;
  width: 100%;
  height: auto;
}

.minihouse img {
  max-width: 100%;
  height: auto;
}

.minihouse .minihouse_parts {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.minihouse #minihouseParts01.minihouse_parts {
  z-index: 1;
}

.minihouse #minihouseParts02.minihouse_parts {
  z-index: 2;
}

.minihouse #minihouseParts03.minihouse_parts {
  z-index: 3;
}

.minihouse #minihouseParts04.minihouse_parts {
  z-index: 4;
}

.minihouse #minihouseParts05 {
  position: relative;
  z-index: 5;
}

.minihouse #minihouseParts06.minihouse_parts {
  z-index: 6;
}

.minihouse #minihouseParts07.minihouse_parts {
  z-index: 7;
}

.minihouse #minihouseParts08.minihouse_parts {
  z-index: 8;
}

.minihouse #minihouseParts09.minihouse_parts {
  z-index: 9;
}

.minihouse #minihouseParts10.minihouse_parts {
  z-index: 10;
}

.minihouse #minihouseParts11.minihouse_parts {
  z-index: 11;
}

.minihouse .minihouse_parts img {
  position: relative;
  opacity: 0;
}

.minihouse .minihouse_parts img.doAnimate {
  animation-name: setting;
  animation-duration: 0.4s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}

.minihouse #minihouseParts11.minihouse_parts img {
  animation: none;
  opacity: 1;
}

.minihouse .center {
  position: absolute;
  width: 40%;
  margin: 0 auto;
  bottom: 40%;
  left: 30%;
  z-index: 20;
}

figcaption.corner {
  padding: 0.1em 0.5em;
  position: absolute;
  bottom: 50px;
  left: 0px;
  font-size: 10px;
  color: #000;
  background-color: rgba(255, 255, 255, 0.6);
}

@keyframes setting {
  0% {
    bottom: 20vw;
    opacity: 0;
    transform-origin: bottom center;
    transform: scaleY(1);
  }
  50% {
    opacity: 0.8;
  }
  85% {
    bottom: 0;
    opacity: 1;
    transform: scaleY(0.9);
  }
  97% {
    bottom: 0;
    opacity: 1;
    transform: scaleY(1.09);
  }
  100% {
    bottom: 0;
    opacity: 1;
    transform: scaleY(1);
  }
}
@media screen and (max-width: 767px) {
  .animation .ornament {
    margin-top: -20px;
  }
  .animation .ornament::after {
    height: 60px;
  }
  .animation_ttl {
    text-align: center;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .animation_ttl img {
    width: 85%;
  }
  .animation_ttl .lead {
    font-size: 1rem;
    margin-bottom: 30px;
    padding: 0 40px;
    line-height: 2;
  }
  .animation_ttl .lead::before {
    width: 1px;
  }
  .animation_ttl .lead::after {
    width: 1px;
  }
  .animation_content {
    width: 95%;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    flex-direction: column;
  }
  .animation_content .text {
    padding-top: 0px;
    padding-left: 0px;
  }
  .animation_content .text img {
    width: 100%;
    height: auto;
  }
  #minihouseArea {
    padding-bottom: 15px;
    position: relative;
    margin: 10px auto 40px;
  }
  .minihouse {
    width: 100%;
  }
  figcaption.corner {
    bottom: 0px;
  }
}
/**********
madori
**********/
.madori {
  padding: 50px 0;
}
.madori hr {
  border: 3px solid #000;
  margin: 65px 0;
}

.madori_heading {
  width: 532px;
  margin: 0 auto;
  font-size: 4.25rem;
  font-weight: normal;
  color: #714812;
}
.madori_heading::before {
  content: "";
  background-image: url(../images/madori_ttl-icon.png);
  background-size: contain;
  display: inline-block;
  width: 97px;
  height: 57px;
  margin-right: 20px;
}
.madori_heading .rem3-75 {
  font-size: 3.75rem;
}
.madori_heading .rem1-25 {
  font-size: 1.25rem;
  margin-left: 130px;
}

.madori_nav {
  display: flex;
  justify-content: center;
  text-align: center;
  margin-top: 50px;
}
.madori_nav li {
  width: 267px;
  border: solid 2px #000;
  box-shadow: 10px 10px 0px #a9a6a5;
  margin: 10px;
  transition: color 0.3s, background 0.3s, box-shadow 0.3s, transform 0.3s;
}
.madori_nav li:hover {
  background: hsl(41, 19%, 80%);
  transform: translateY(3px);
}
.madori_nav li a {
  padding: 0 20px 10px 20px;
  display: block;
}
.madori_nav .tsubo {
  border-bottom: 2px solid;
  margin-bottom: 10px;
  font-size: 1.5rem;
}
.madori_nav .tsubo .rem3-00 {
  font-size: 3rem;
  margin-right: 10px;
}

.madori_contents {
  width: 1020px;
  margin: 0 auto;
}
.madori_contents .title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 2px solid #000;
  padding: 25px;
}
.madori_contents .title .heading {
  color: #886925;
  font-size: 2.25rem;
  font-weight: normal;
}
.madori_contents .title .tag {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  align-items: center;
  width: 375px;
}
.madori_contents .title .tag li {
  margin-bottom: 10px;
  height: 38px;
}
.madori_contents .information {
  border: 2px solid #000;
  padding: 25px;
  border-top: none;
  margin-bottom: 20px;
}
.madori_contents .information ul {
  display: flex;
  align-items: center;
  justify-content: space-around;
  text-align: center;
}
.madori_contents .information li {
  border-right: 3px solid #000;
  padding: 0 20px;
}
.madori_contents .information li .rem2 {
  font-size: 2rem;
}
.madori_contents .information li .rem1-5 {
  font-size: 1.5rem;
}
.madori_contents .information li .pc-none {
  display: none;
}
.madori_contents .information li:last-child {
  border-right: none;
}
.madori_contents .content .photo {
  display: block;
  margin-bottom: 25px;
}
.madori_contents .content .point {
  background-color: #d7d1c4;
  padding: 30px;
  font-size: 1.5rem;
  line-height: 3rem;
  width: 513px;
  box-shadow: 10px 10px 0px #a9a6a5;
  animation: fuwafuwa 3s linear infinite;
}
@keyframes fuwafuwa {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.madori_contents .content .arrow {
  animation: flash 2s linear infinite;
}
@keyframes flash {
  0%, 100% {
    opacity: 100%;
  }
  50% {
    opacity: 10%;
  }
}
.madori_contents .content .voice {
  background-color: #f2f2f2;
  padding: 30px;
  font-size: 1.5rem;
  line-height: 3rem;
  width: 486px;
}
.madori_contents .content .voice span {
  background: linear-gradient(transparent 50%, #ffdd00 50%);
  padding-bottom: 0.3em;
}
.madori_contents .content .voice h3 {
  border-bottom: 1px solid #000;
  margin-bottom: 20px;
}

#less30 .layout01 {
  position: relative;
  min-height: 320px;
  margin-bottom: 25px;
}
#less30 .layout01 .point {
  position: relative;
  top: 100px;
  left: -30px;
  z-index: 3;
}
#less30 .layout01 .arrow {
  z-index: 2;
  position: absolute;
  left: 417px;
  bottom: 82px;
}
#less30 .layout01 .madorizu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#less30 .layout02 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#upwards30 {
  margin-bottom: 50px;
}
#upwards30 .layout01 {
  position: relative;
}
#upwards30 .layout01 .point {
  position: relative;
  top: 50px;
  left: -30px;
  z-index: 3;
}
#upwards30 .layout01 .arrow {
  position: absolute;
  left: 306px;
  bottom: -135px;
  z-index: 2;
}
#upwards30 .layout01 .madorizu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#upwards30 .layout02 {
  position: relative;
  min-height: 900px;
}
#upwards30 .layout02 .voice {
  position: absolute;
  bottom: 0;
  right: 15px;
}
#upwards30 .layout02 .sub {
  position: absolute;
  top: 130px;
  left: 50px;
}

#upwards40 {
  margin-top: 50px;
}
#upwards40 .information {
  padding-right: 0;
  padding-left: 0;
}
#upwards40 .information li:first-child {
  padding-right: 10px;
  padding-left: 10px;
}
#upwards40 .information li:last-child {
  padding-right: 0;
  padding-left: 10px;
}
#upwards40 .information li .rem1-5 {
  letter-spacing: -0.02rem;
}
#upwards40 .layout01 {
  position: relative;
  min-height: 320px;
}
#upwards40 .layout01 .point {
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 3;
}
#upwards40 .layout01 .arrow {
  position: absolute;
  top: -8px;
  right: 200px;
  z-index: 2;
}
#upwards40 .layout01 .madorizu {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
#upwards40 .layout02 {
  position: relative;
  min-height: 465px;
}
#upwards40 .layout02 .voice {
  position: absolute;
  bottom: 10px;
  right: 0px;
  z-index: 2;
}
#upwards40 .layout02 .sub {
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 1;
}

#upwards50 .information {
  padding-right: 0;
  padding-left: 0;
}
#upwards50 .information li:last-child {
  padding-right: 0;
  padding-left: 10px;
}
#upwards50 .layout01 {
  position: relative;
}
#upwards50 .layout01 .point {
  position: relative;
  top: 50px;
  left: -30px;
  z-index: 3;
}
#upwards50 .layout01 .arrow {
  position: absolute;
  left: 306px;
  bottom: -150px;
  z-index: 2;
}
#upwards50 .layout01 .madorizu {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
#upwards50 .layout02 {
  position: relative;
  min-height: 900px;
}
#upwards50 .layout02 .voice {
  position: absolute;
  bottom: 0;
  right: 0px;
}
#upwards50 .layout02 .sub {
  position: absolute;
  top: 130px;
  left: 30px;
}

@media screen and (max-width: 736px) {
  .madori hr {
    border: 1px solid #000;
    margin: 65px 0;
  }
  .madori_heading {
    width: 78%;
    font-size: 2.5rem;
  }
  .madori_heading::before {
    width: 56px;
    height: 36px;
    margin-right: 10px;
  }
  .madori_heading .rem3-75 {
    font-size: 2rem;
  }
  .madori_heading .rem1-25 {
    font-size: 1rem;
    margin-left: 54px;
  }
  .madori_nav li {
    width: auto;
    border: solid 1px #000;
    box-shadow: 5px 5px 0px #a9a6a5;
    margin: 0px 7px 0px 0px;
  }
  .madori_nav li a {
    padding: 0 7px 10px 7px;
  }
  .madori_nav .tsubo {
    border-bottom: 1px solid;
    margin-bottom: 10px;
    font-size: 1rem;
  }
  .madori_nav .tsubo .rem3-00 {
    font-size: 1.5rem;
    margin-right: 0px;
  }
  .madori_nav .sp_txt {
    font-size: 0.8rem;
    font-size: 0.75rem;
    letter-spacing: -1.5px;
  }
  .madori_contents {
    width: 100%;
    padding: 0 10px;
  }
  .madori_contents .title {
    border: none;
    flex-direction: column;
    padding: 0;
  }
  .madori_contents .title .heading {
    font-size: 1.8rem;
  }
  .madori_contents .title .tag {
    width: auto;
  }
  .madori_contents .title .tag li {
    width: calc(33.3333333333% - 5px);
    margin-bottom: 0px;
    height: auto;
  }
  .madori_contents .information {
    padding: 0px;
    border: none;
  }
  .madori_contents .information ul {
    flex-direction: column;
  }
  .madori_contents .information li {
    width: 97%;
    font-size: 0.7rem;
    border-right: 0;
    border-bottom: 1px solid;
    padding: 10px 0;
  }
  .madori_contents .information li:last-child {
    border-bottom: none;
  }
  .madori_contents .information li .rem2 {
    font-size: 1rem;
  }
  .madori_contents .information li .rem1-5 {
    font-size: 1rem;
  }
  .madori_contents .information li .pc-none {
    display: initial;
  }
  .madori_contents .content .point {
    width: 50%;
    padding: 10px;
    font-size: 0.8rem;
    line-height: 1.5rem;
    box-shadow: 5px 5px 0px #a9a6a5;
  }
  .madori_contents .content .voice {
    padding: 20px;
    width: 100%;
    font-size: 1.2rem;
    line-height: 2.5rem;
  }
  .madori_contents .content .voice h3 img {
    width: 100px;
    height: auto;
  }
  #less30 .title {
    margin-bottom: 100px;
  }
  #less30 .title .tag {
    position: relative;
    margin-bottom: -240px;
  }
  #less30 .information {
    margin-bottom: 100px;
  }
  #less30 .information ul {
    margin-top: -40px;
  }
  #less30 .layout01 {
    position: relative;
    min-height: 90px;
    margin-bottom: 0px;
  }
  #less30 .layout01 .point {
    width: 45%;
    height: auto;
    top: 50px;
    left: 0px;
  }
  #less30 .layout01 .arrow {
    width: 60%;
    height: auto;
    top: 70px;
    left: 20%;
    bottom: 0px;
  }
  #less30 .layout01 .madorizu {
    width: 56%;
    height: auto;
    top: 0;
    right: 0;
  }
  #less30 .layout02 {
    flex-direction: column;
  }
  #less30 .layout02 .voice {
    order: 1;
    margin-top: 20px;
  }
  #upwards30 {
    margin-bottom: 50px;
  }
  #upwards30 .title {
    margin-bottom: 100px;
  }
  #upwards30 .title .tag {
    position: relative;
    margin-bottom: -240px;
  }
  #upwards30 .information {
    margin-bottom: 100px;
  }
  #upwards30 .information ul {
    margin-top: -40px;
  }
  #upwards30 .layout01 .point {
    top: 30px;
    left: -10px;
  }
  #upwards30 .layout01 .arrow {
    left: initial;
    right: 15px;
    bottom: 0px;
  }
  #upwards30 .layout01 .madorizu {
    width: 56%;
    top: 0;
    right: -5px;
  }
  #upwards30 .layout02 {
    min-height: 550px;
    z-index: 2;
  }
  #upwards30 .layout02 .voice {
    bottom: 0;
    right: 0px;
  }
  #upwards30 .layout02 .sub {
    top: 73px;
    left: 0px;
    width: 48%;
  }
  #upwards40 {
    margin-top: 50px;
  }
  #upwards40 .title {
    text-align: center;
    margin-bottom: 140px;
  }
  #upwards40 .title .tag {
    position: relative;
    margin-bottom: -320px;
  }
  #upwards40 .information {
    margin-bottom: 100px;
  }
  #upwards40 .information ul {
    margin-top: -40px;
  }
  #upwards40 .information li:first-child {
    padding-left: 0px;
    padding-right: 0px;
  }
  #upwards40 .information li .rem1-5 {
    display: block;
  }
  #upwards40 .layout01 {
    position: relative;
    min-height: 200px;
  }
  #upwards40 .layout01 .point {
    top: 50px;
    right: 0px;
  }
  #upwards40 .layout01 .arrow {
    top: -6px;
    right: inherit;
    left: 73px;
    width: 285px;
  }
  #upwards40 .layout01 .madorizu {
    top: 0px;
    left: -5px;
    width: 50%;
  }
  #upwards40 .layout02 {
    position: relative;
    min-height: 380px;
  }
  #upwards40 .layout02 .voice {
    bottom: 10px;
    right: 0px;
  }
  #upwards40 .layout02 .sub {
    top: 0px;
    left: 0px;
  }
  #upwards50 .title {
    text-align: center;
    margin-bottom: 100px;
  }
  #upwards50 .title .tag {
    position: relative;
    margin-bottom: -280px;
  }
  #upwards50 .information {
    margin-bottom: 100px;
  }
  #upwards50 .information ul {
    margin-top: -40px;
  }
  #upwards50 .information li .rem1-5 {
    display: block;
  }
  #upwards50 .layout01 {
    position: relative;
  }
  #upwards50 .layout01 .point {
    top: 35px;
    left: -5px;
  }
  #upwards50 .layout01 .arrow {
    left: inherit;
    right: 70px;
    bottom: -12px;
    width: 293px;
  }
  #upwards50 .layout01 .madorizu {
    top: 0;
    right: -5px;
    width: 55%;
  }
  #upwards50 .layout02 {
    position: relative;
    min-height: 485px;
    z-index: 1;
  }
  #upwards50 .layout02 .voice {
    bottom: 0;
    right: 0px;
  }
  #upwards50 .layout02 .sub {
    top: 55px;
    left: 0px;
    width: 155px;
  }
}
/**********
push
**********/
.push {
  padding: 60px 0;
  text-align: center;
  background-color: #d7d1c4;
}
.push .contents_wrap {
  max-width: 1110px;
  margin: 0 auto;
}
.push .lead {
  font-size: 1.75rem;
  margin-bottom: 30px;
  position: relative;
  display: inline-block;
  padding: 0 30px;
}
.push .lead::before {
  position: absolute;
  left: 0;
  top: 0;
  content: "";
  width: 2px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  transform: rotate(-25deg);
}
.push .lead::after {
  position: absolute;
  content: "";
  right: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #000;
  border-radius: 3px;
  transform: rotate(25deg);
}
.push .lead span {
  display: block;
  font-size: 1.25rem;
  margin-top: 15px;
}
.push .push_ttl {
  margin-bottom: 20px;
}
.push .push_picture {
  display: block;
  margin-bottom: 20px;
}
.push .btnarea .btn_catalog {
  width: 100%;
  margin-right: 0;
}
.push .btnarea .subtitle {
  width: 60%;
  font-size: 2rem;
  padding: 5px 0px;
  border-radius: 20px;
}
.push .btnarea .maintitle {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: -35px;
}
.push .btnarea .push_btn {
  margin-top: -10px;
  margin-bottom: 20px;
}

@media screen and (max-width: 736px) {
  .push .contents_wrap {
    max-width: 95%;
    margin: 0 auto;
  }
  .push .lead {
    font-size: 1.2rem;
    padding: 0 10px;
  }
  .push .lead span {
    font-size: 1rem;
  }
  .push .lead::before {
    width: 1px;
  }
  .push .lead::after {
    width: 1px;
  }
  .push .btnarea .subtitle {
    font-size: 0.8rem;
    border-radius: 10px;
    left: 35%;
    transform: initial;
  }
  .push .btnarea .push_btn {
    margin: 0;
    padding: 10px;
  }
}
/**********
footer
**********/
footer .heading {
  font-size: 1.25rem;
  font-weight: normal;
  border-bottom: 1px solid;
  padding-bottom: 40px;
  margin-top: 150px;
  margin-bottom: 30px;
}
footer aside, footer article {
  width: 1300px;
  margin: 0 auto;
}
footer .kw_trend {
  font-size: 1.25rem;
  line-height: 3rem;
  display: flex;
  flex-wrap: wrap;
}
footer .kw_trend li::after {
  content: "｜";
}
footer .kw_trend li:last-child::after {
  content: "";
}
footer .kw_osusume {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  overflow: hidden;
}
footer .kw_osusume li {
  font-size: 1.5rem;
  border: 2px solid;
  border-radius: 20px;
  padding: 6px 15px 0px 15px;
  margin-right: 5px;
  margin-bottom: 5px;
}
footer .kw_osusume li::before {
  content: "";
  background-image: url(../images/kw_osusume.png);
  background-size: contain;
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: 5px;
  margin-bottom: 10px;
  vertical-align: middle;
}
footer .company_profile {
  font-size: 1.5rem;
  display: flex;
  flex-wrap: wrap;
}
footer .company_profile dt {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
}
footer .company_profile dd {
  padding: 10px;
  margin: 0;
  width: 70%;
  box-sizing: border-box;
}
footer .company_profile li {
  margin-bottom: 20px;
}
footer .ornament {
  background-color: #f1f1f1;
  margin-top: -40px;
  position: relative;
  z-index: -1;
}
footer .ornament::after {
  content: "";
  display: block;
  background-color: #fff;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
  width: 100%;
  height: 165px;
}
footer .copy {
  text-align: center;
  display: block;
  padding: 10px 0;
}

@media screen and (max-width: 736px) {
  footer aside, footer article {
    width: auto;
    margin: 0 20px;
  }
  footer .heading {
    padding-bottom: 20px;
    margin-top: 70px;
    margin-bottom: 20px;
  }
  footer .kw_trend {
    font-size: 1rem;
    line-height: 2.5rem;
  }
  footer .kw_osusume li {
    font-size: 1rem;
    padding: 5px 10px 2px 10px;
    border: 1px solid;
    border-radius: 10px;
  }
  footer .kw_osusume li::before {
    width: 23px;
    height: 23px;
    margin-right: 0.2rem;
    margin-bottom: 5px;
  }
  footer .company_profile {
    font-size: 1rem;
  }
  footer .ornament::after {
    height: 60px;
  }
}/*# sourceMappingURL=style.css.map */



.inmv_catalog_arrow {
	position: absolute;
	left: 1%;
	bottom: 14%;
	width: 30%;
	z-index: 1;
	-webkit-animation: animateCv 2s ease-out infinite;
	animation: animateCv 2s ease-out infinite;
}








.r_mdl {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}
.r_mdl .bg {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

.r_mdl .box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.r_mdl .inn {
	pointer-events: all;
	background: #fff;
	padding: calc(50% / 12.8);
	width: 95%;
	max-width: 1280px;
	max-height: 98vh;
	overflow-y: auto;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn {
		padding: calc(30% / 12.8) calc(50% / 12.8);
	}
}
.r_mdl .inn .ttl {
	font-size: clamp(16px, calc(28vw / 12.8), 28px);
	text-align: center;
	margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .ttl {
		margin-bottom: 1.2em;
	}
}
.r_mdl .inn .list_wrap {
	display: flex;
	justify-content: center;
	gap:calc(50% / 11.8);
	flex-wrap: wrap;
}
.r_mdl .inn .list_wrap .list {
	width: calc(257% / 11.8);
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap {
		justify-content: space-between;
		gap:0;
	}
	.r_mdl .inn .list_wrap .list {
		width: 47%;
	}
}

.r_mdl .inn .list_wrap .list .l_ttl {
	font-size: clamp(15px, calc(26vw / 11.4), 26px);
	padding-left: 0.6em;
	line-height: 1;
	margin-bottom: 0.6em;
	font-weight: 600;
}
.r_mdl .inn .list_wrap .list .l_ttl.c1 {
	border-left:  solid 4px #f06782;
}
.r_mdl .inn .list_wrap .list .l_ttl.c2 {
	border-left:  solid 4px #5eaee9;
}
.r_mdl .inn .list_wrap .list .l_ttl.c3 {
	border-left:  solid 4px #4ab15b;
}
.r_mdl .inn .list_wrap .list .l_ttl.c4 {
	border-left:  solid 4px #fee502;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap .list .l_ttl {
		margin-bottom: 0.3em;
	}
}

.r_mdl .inn .m_close{
	font-size: clamp(12px, calc(18vw / 12.8), 18px);
	text-align: center;
	padding-bottom: 0.4em;
	cursor: pointer;
}
.r_mdl .inn .list_wrap .list ul li {
	border-bottom: dotted 3px #c2c2c2;
}
.r_mdl .inn .list_wrap .list ul li a {
	padding: 15px 0;
	color: #555555;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: clamp(13px, calc(20vw / 12.8), 20px);
	line-height: 1;
}
.r_mdl .inn .list_wrap .list ul li a .icon {
	width: 22px;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap .list ul {
		margin-bottom: 25px;
	}
	.r_mdl .inn .list_wrap .list ul li {
		border-bottom: dotted 2px #c2c2c2;
	}
	.r_mdl .inn .list_wrap .list ul li a {
		padding: 8px 0;
	}
}

.inmv_catalog_arrow {
	position: absolute;
	left: 1%;
	bottom: 14%;
	width: 30%;
	z-index: 1;
	-webkit-animation: animateCv 2s ease-out infinite;
	animation: animateCv 2s ease-out infinite;
}


.r_mdl {
	display: none;
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	z-index: 999999;
}
.r_mdl .bg {
	position: absolute;
	top:0;
	left:0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.6);
}

.r_mdl .box{
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
	z-index: 2;
	pointer-events: none;
}

.r_mdl .inn {
	pointer-events: all;
	background: #fff;
	padding: calc(50% / 12.8);
	width: 95%;
	max-width: 1280px;
	max-height: 98vh;
	overflow-y: auto;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn {
		padding: calc(30% / 12.8) calc(50% / 12.8);
	}
}
.r_mdl .inn .ttl {
	font-size: clamp(16px, calc(28vw / 12.8), 28px);
	text-align: center;
	margin-bottom: 1.5em;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .ttl {
		margin-bottom: 1.2em;
	}
}
.r_mdl .inn .list_wrap {
	display: flex;
	justify-content: center;
	gap:calc(50% / 11.8);
	flex-wrap: wrap;
}
.r_mdl .inn .list_wrap .list {
	width: calc(257% / 11.8);
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap {
		justify-content: space-between;
		gap:0;
	}
	.r_mdl .inn .list_wrap .list {
		width: 47%;
	}
}

.r_mdl .inn .list_wrap .list .l_ttl {
	font-size: clamp(15px, calc(26vw / 11.4), 26px);
	padding-left: 0.6em;
	line-height: 1;
	margin-bottom: 0.6em;
	font-weight: 600;
}
.r_mdl .inn .list_wrap .list .l_ttl.c1 {
	border-left:  solid 4px #f06782;
}
.r_mdl .inn .list_wrap .list .l_ttl.c2 {
	border-left:  solid 4px #5eaee9;
}
.r_mdl .inn .list_wrap .list .l_ttl.c3 {
	border-left:  solid 4px #4ab15b;
}
.r_mdl .inn .list_wrap .list .l_ttl.c4 {
	border-left:  solid 4px #fee502;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap .list .l_ttl {
		margin-bottom: 0.3em;
	}
}

.r_mdl .inn .m_close{
	font-size: clamp(12px, calc(18vw / 12.8), 18px);
	text-align: center;
	padding-bottom: 0.4em;
	cursor: pointer;
}
.r_mdl .inn .list_wrap .list ul li {
	border-bottom: dotted 3px #c2c2c2;
}
.r_mdl .inn .list_wrap .list ul li a {
	padding: 15px 0;
	color: #555555;
	text-decoration: none;
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: clamp(13px, calc(20vw / 12.8), 20px);
	line-height: 1;
}
.r_mdl .inn .list_wrap .list ul li a .icon {
	width: 22px;
}
@media screen and (max-width: 768px) {
	.r_mdl .inn .list_wrap .list ul {
		margin-bottom: 25px;
	}
	.r_mdl .inn .list_wrap .list ul li {
		border-bottom: dotted 2px #c2c2c2;
	}
	.r_mdl .inn .list_wrap .list ul li a {
		padding: 8px 0;
	}
}


.r_mdl {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  z-index: 999999;
  }
  .r_mdl .bg {
  position: absolute;
  top:0;
  left:0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  }
  
  .r_mdl .box{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
  }
  
  .r_mdl .inn {
  pointer-events: all;
  background: #fff;
  padding: calc(50% / 12.8);
  width: 95%;
  max-width: 1280px;
  max-height: 98vh;
  overflow-y: auto;
  }
  @media screen and (max-width: 768px) {
  .r_mdl .inn {
  padding: calc(30% / 12.8) calc(50% / 12.8);
  }
  }
  .r_mdl .inn .ttl {
  font-size: clamp(16px, calc(28vw / 12.8), 28px);
  text-align: center;
  margin-bottom: 1.5em;
  }
  @media screen and (max-width: 768px) {
  .r_mdl .inn .ttl {
  margin-bottom: 1.2em;
  }
  }
  .r_mdl .inn .list_wrap {
  display: flex;
  justify-content: center;
  gap:calc(50% / 11.8);
  flex-wrap: wrap;
  }
  .r_mdl .inn .list_wrap .list {
  width: calc(257% / 11.8);
  }
  @media screen and (max-width: 768px) {
  .r_mdl .inn .list_wrap {
  justify-content: space-between;
  gap:0;
  }
  .r_mdl .inn .list_wrap .list {
  width: 47%;
  }
  }
  
  .r_mdl .inn .list_wrap .list .l_ttl {
  font-size: clamp(15px, calc(26vw / 11.4), 26px);
  padding-left: 0.6em;
  line-height: 1;
  margin-bottom: 0.6em;
  font-weight: 600;
  }
  .r_mdl .inn .list_wrap .list .l_ttl.c1 {
  border-left:  solid 4px #f06782;
  }
  .r_mdl .inn .list_wrap .list .l_ttl.c2 {
  border-left:  solid 4px #5eaee9;
  }
  .r_mdl .inn .list_wrap .list .l_ttl.c3 {
  border-left:  solid 4px #4ab15b;
  }
  .r_mdl .inn .list_wrap .list .l_ttl.c4 {
  border-left:  solid 4px #fee502;
  }
  @media screen and (max-width: 768px) {
  .r_mdl .inn .list_wrap .list .l_ttl {
  margin-bottom: 0.3em;
  }
  }
  
  .r_mdl .inn .m_close{
  font-size: clamp(12px, calc(18vw / 12.8), 18px);
  text-align: center;
  padding-bottom: 0.4em;
  cursor: pointer;
  }
  .r_mdl .inn .list_wrap .list ul li {
  border-bottom: dotted 3px #c2c2c2;
  }
  .r_mdl .inn .list_wrap .list ul li a {
  padding: 15px 0;
  color: #555555;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(13px, calc(20vw / 12.8), 20px);
  line-height: 1;
  }
  .r_mdl .inn .list_wrap .list ul li a .icon {
  width: 22px;
  }
  @media screen and (max-width: 768px) {
  .r_mdl .inn .list_wrap .list ul {
  margin-bottom: 25px;
  }
  .r_mdl .inn .list_wrap .list ul li {
  border-bottom: dotted 2px #c2c2c2;
  }
  .r_mdl .inn .list_wrap .list ul li a {
  padding: 8px 0;
  }
  }
  
  .inmv_catalog_arrow {
  position: absolute;
  left: 1%;
  bottom: 14%;
  width: 30%;
  z-index: 1;
  -webkit-animation: animateCv 2s ease-out infinite;
  animation: animateCv 2s ease-out infinite;
  }
  