@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&family=Zen+Kaku+Gothic+New:wght@400;500;700;900&display=swap');
@import url('https://cdn.jsdelivr.net/npm/yakuhanjp@4.0.0/dist/css/yakuhanjp.css');

:root {
  --font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo,sans-serif;
  --font-family-en: "Roboto", sans-serif;
  --main-color: #333;
  --base-color: #165ca9;
  --accent-color: #009fe8;
  --point-color: #bd8968;
  --price-color: #e50012;
  --kitchen-color: #ea6877;
  --kitchen-bg: #fef2f4;
  --kitchen-title-line: #f19da7;
  --kitchen-line: #ef8e99;
  --bathroom-color: #1f96cd;
  --bathroom-bg: #e5f4fc;
  --bathroom-title-line: #6dbbde;
  --sanitary-color: #329677;
  --sanitary-bg: #eaf5ec;
  --sanitary-title-line: #7abba7;
  --safety-color: #67835e;
  --safety-bg: #e9ece7;
  --safety-title-line: #9cae96;
  --living-color: #eb7c07;
  --living-bg: #fcf6e1;
  --living-title-line: #f2aa5e;
  --living-line: #f09d45;
  --section-bg: #f5f5f5;  
  --lettering-base: .03em;
  --lettering-en: .08em;
  --section-padding: 130px;
  --section-padding-sp: 10.416667vw;
  --section-end-padding: 55px;
  --section-end-padding-sp: 7.8125vw;
  --product-area-padding: 120px;
  --product-image-margin-mid: 45px;
  --product-image-margin-sp: 28px;
  --whole-padding: 40px;
  --whole-padding-sp: 5.208333vw;
  --header-hight: 80px;
  --header-hight-sp: 60px;
}
* {
  --min-viewport: 375;
  --max-viewport: 1280;
  --slope: calc((var(--max-size) - var(--min-size)) / (var(--max-viewport) - var(--min-viewport)));
  --intercept: calc(var(--min-size) - var(--slope) * var(--min-viewport));
  --fluid-size: calc(var(--slope) * 100vw + var(--intercept) / 10 * 1rem);
  --clamp-size: clamp(var(--min-size) / 10 * 1rem, var(--fluid-size), var(--max-size) / 10 * 1rem);
  min-height: 0vw;
}
body {
  position: relative;
  line-height: 1.85;
  letter-spacing: var(--lettering-base);
  font-size: 1.6rem;
  font-family: var(--font-family);
  font-weight: 500;
  color: var(--main-color);
}
.wrap {
  display: flex;
}
.fits {
  justify-content: space-between;
}
.vertical {
  align-items: center;
}
.return {
  flex-flow: row wrap;
}
.column {
  flex-direction: column;
}
.midst {
  justify-content: center;
}
.gridbox {
  display: grid;
}
section, .section {
  padding: var(--section-padding) 0;
}
.flat-section {
  padding-bottom: 0!important;
}
.end-section {
  padding-bottom: var(--section-end-padding);
}
.container {
  margin: 0 auto;
  width: 100%;
  max-width: 1800px;
}
@media screen and (max-width: 2560px) {
  .container {
    padding: 0 8.334%;
  }
}
.turn {
  background: var(--section-bg);
}
.turn-kitchen {
  background: var(--kitchen-bg);
}
.turn-bathroom {
  background: var(--bathroom-bg);
}
.turn-sanitary {
  background: var(--sanitary-bg);
}
.turn-safety {
  background: var(--safety-bg);
}
.turn-living {
  background: var(--living-bg);
}
.en {
  letter-spacing: var(--lettering-en);
  font-family: var(--font-family-en);
}
.heading, .head-subtxt {
  text-align: center;
}
.heading {
  line-height: 1;
  font-weight: 500;
  --max-size: 58;
  --min-size: 28;
  font-size: var(--clamp-size);
  color: var(--main-color);
}
.head-subtxt {
  margin: .55em 0 50px;
  line-height: 1.4;
  --max-size: 23;
  --min-size: 14;
  font-size: var(--clamp-size);
  font-weight: 700;
  color: var(--base-color);
}
.newline {
  display: inline-block;
}
/* パーツ */
.slash-heading span {
  position: relative;
  display: inline-block;
  padding: 0 2.2em;
  letter-spacing: .05em;
  line-height: 1.4;
  --max-size: 29;
  --min-size: 18;
  font-size: var(--clamp-size);
  font-weight: 700;
  color: var(--base-color);
}
.slash-heading span::before, .slash-heading span::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 40px;
  height: 3px;
  background: var(--accent-color);
  transform: rotate(70deg);
}
.slash-heading span::before {
  left: 0;
}
.slash-heading span::after {
  right: 0;
  transform: rotate(-70deg);
}
.slash-heading span.newline {
  padding: 0;
}
.slash-heading span.newline::before, .slash-heading span.newline::after {
  content: none;
}
.kitchen-slash span {
  color: var(--kitchen-color);
}
.bathroom-slash span {
  color: var(--bathroom-color);
}
.sanitary-slash span {
  color: var(--sanitary-color);
}
.safety-slash span {
  color: var(--safety-color);
}
.living-slash span {
  color: var(--living-color);
}
.kitchen-slash span::before, .kitchen-slash span::after {
  background: var(--kitchen-color);
}
.bathroom-slash span::before, .bathroom-slash span::after {
  background: var(--bathroom-color);
}
.sanitary-slash span::before, .sanitary-slash span::after {
  background: var(--sanitary-color);
}
.safety-slash span::before, .safety-slash span::after {
  background: var(--safety-color);
}
.living-slash span::before, .living-slash span::after {
  background: var(--living-color);
}
.circle-link-btn {
  display: inline-block;
  margin-top: auto;
  width: 100%;
}
.product__link .circle-link-btn {
  width: auto;
}
.circle-btn {
  position: relative;
  overflow: inherit!important;
}
.c-btn-txt {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 260px;
  width: calc(100% - 70px);
  height: 62px;
  background: var(--point-color);
  border-radius: 9999px;
  font-weight: 700;
  --max-size: 17;
  --min-size: 15;
  font-size: var(--clamp-size);
  color: #fff;
}
.request-btn .c-btn-txt {
  font-size: 1.9rem;
}
.btn-icon {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  width: 62px;
  height: 62px;
}
.btn-icon-base {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 50%;
  background: var(--point-color);
  z-index: 1;
}
.btn-icon-arrow {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-position: 51%;
  background-repeat: no-repeat;
  background-size: 7px 12px;
  background-image: url(../images/arrow_w.svg);
  z-index: 2;
}
.product__link.-detail + .product__link {
  margin-top: 18px;
}
.product__link.-detail .c-btn-txt, .product__link.-detail .btn-icon-base {
  background: #fff;
  border: solid 1px var(--point-color);
  color: var(--point-color);
}
.product__link.-detail .btn-icon-arrow {
  background-image: url(../images/arrow_br.svg);
}
.shadow-title {
  border-style: solid;
  border-width: 1px;
  border-radius: 40px;
  background: #fff;
  text-align: center;
  line-height: 1;
  font-weight: 700;
  --max-size: 23;
  --min-size: 17;
  font-size: var(--clamp-size);
}
.kitchen-shadow {
  border: solid 1px var(--kitchen-title-line);
  box-shadow: 0 3px 8px rgba(234, 104, 119, 0.3);
}
.bathroom-shadow {
  border-color: var(--bathroom-title-line);
  box-shadow: 0 3px 8px rgba(31, 150, 205, 0.3);
}
.sanitary-shadow {
  border-color: var(--sanitary-title-line);
  box-shadow: 0 3px 8px rgba(50, 150, 119, 0.3);
}
.safety-shadow {
  border-color: var(--safety-title-line);
  box-shadow: 0 3px 8px rgba(103, 131, 94, 0.3);
}
.living-shadow {
  border: solid 1px var(--living-title-line);
  box-shadow: 0 3px 8px rgba(255, 124, 7, 0.3);
}
.base-shadow {
  border-color: #457dba;
  box-shadow: 0 3px 8px rgba(69, 125, 186, 0.3);
}
.dashed-line {
  background-image: linear-gradient(to right, var(--base-color) 5px, transparent 5px);
  background-size: 8px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
}
.kitchen-dashed {
  background-image: linear-gradient(to right, var(--kitchen-color) 5px, transparent 5px);
}
.bathroom-dashed {
  background-image: linear-gradient(to right, var(--bathroom-color) 5px, transparent 5px);
}
.sanitary-dashed {
  background-image: linear-gradient(to right, var(--sanitary-color) 5px, transparent 5px);
}
.safety-dashed {
  background-image: linear-gradient(to right, var(--safety-color) 5px, transparent 5px);
}
.living-dashed {
  background-image: linear-gradient(to right, var(--living-color) 5px, transparent 5px);
}
.circle-list-item {
  text-indent: calc(-11px + (-.5em));
  margin-left: calc(11px + .5em);
  line-height: 1.6;
}
.circle-list-item::before {
  content: '';
  display: inline-block;
  margin-right: 7px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--kitchen-color);
}
.circle-list-item + .circle-list-item {
  margin-top: .5em;
}
.details__list .circle-list-item {
  text-indent: calc(-10px + (-.5em));
  margin-left: calc(10px + .5em);
}
.details__list .circle-list-item::before {
  width: 10px;
  height: 10px;
}
.bathroom-c-list .circle-list-item::before {
  background: var(--bathroom-color);
}
.sanitary-c-list .circle-list-item::before {
  background: var(--sanitary-color);
}
.safety-c-list .circle-list-item::before {
  background: var(--safety-color);
}
.living-c-list .circle-list-item::before {
  background: var(--living-color);
}
html, body {
  height: 100%;
}
header {
  height: var(--header-hight);
  padding: 0 var(--whole-padding);
  background: #fff;
}
.headbox__logo a {
  display: block;
}
#gnavi {
  margin-left: auto;
}
.gnavilist {
  position: relative;
}
.gnavilist__item {
  line-height: 1;
  letter-spacing: .07em;
  font-size: 1.5rem;
  font-weight: 700;
}
.gnavilist__item + .gnavilist__item {
  margin-left: 2.222222vw;
}
.gnavilist__item a {
  display: block;
}
.gnavi-flow a, .gnavi-contact a {
  padding: .6em 1.5em;
  border-radius: 2em;
  font-size: 1.4rem;
  color: #fff;
}
.gnavi-flow a {
  background: var(--accent-color);
}
.gnavi-contact a {
  background: var(--base-color);
}
.gnavilist__item.gnavi-contact {
  margin-left: .69444444vw;
}
.page-head {
  width: 100%;
  height: 400px;
  background-size: cover!important;
}
.page-head__title {
  text-align: center;
}
.page-head__txt {
  display: block;
  margin-top: .2em;
  line-height: 1;
  font-weight: 700;
  --max-size: 38;
  --min-size: 23;
  font-size: var(--clamp-size);
  color: #fff;
}
.product-area {
  padding: var(--product-area-padding) 0;
}
.product-first-area {
  padding-bottom: var(--product-area-padding);
}
.product-end-area {
  padding-top: var(--product-area-padding);
}
.leading {
  margin-bottom: 65px;
  text-align: center;
}
.leading span {
  --max-size: 27;
  --min-size: 18;
  font-size: var(--clamp-size);
}
.product-cat {
  margin: 0 auto;
  padding: .8em 1em;
  width: 380px;
}
.product__article {
  margin: 70px 0 115px;
}
.product__outline {
  width: 50.8333333%;
}
.product-imgbox {
  width: 44.1666666%;
}
.product__category {
  padding-bottom: .5em;
  font-size: 1.8rem;
  color: var(--kitchen-color);
}
.product-title {
  padding: 22px 0;
  border-top: solid 3px var(--kitchen-line);
}
.name-head__number {
  margin-right: 15px;
  width: 32px;
  height: 32px;
  border-radius: 3px;
  background: var(--main-color);
}
.name-head__number > span {
  position: relative;
  line-height: 1;
  letter-spacing: -.045em;
  font-weight: 500;
  font-size: 2.0rem;
  color: #fff;
}
.name-head__number > span.shift {
  right: .02em;
}
.name-head__number > span.shift2 {
  right: .045em;
}
.name-head__logo {
  display: flex;
  margin-right: 15px;
}
.product__model {
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
  --max-size: 20;
  --min-size: 17;
  font-size: var(--clamp-size);
}
.product-summary {
  padding-top: 25px;
}
.product__price {
  position: relative;
  font-size: 1.5rem;
}
.retail-price {
  line-height: 1.75;
}
.price-details {
  margin-top: 15px;
  color: var(--price-color);
}
.price-title {
  width: 144px;
  height: 37px;
  margin-right: 18px;
  padding: .3em .8em;
  border: solid 1px var(--main-color);
  border-radius: 4px;
  line-height: 1.4;
  text-align: center;
  font-size: 1.4rem;
  color: var(--main-color);
}
.pricetitle-m {
  width: 160px;
  height: 58px;
}
.pricetitle-l {
  width: 170px;
  height: 65px;
}
.price-txt {
  margin-top: -.4em;
  line-height: 1;
  font-weight: 700;
  font-size: 1.5rem;
}
.emphasis-price .price-txt {
  font-size: 1.7rem;
}
.price {
  font-size: 4.0rem;
}
.emphasis-price .price {
  font-size: 4.6rem;
}
.yen {
  font-size: 2.0rem;
}
.emphasis-price .yen {
  font-size: 2.3rem;
}
.price-off {
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: var(--price-color);
  border-radius: 50%;
  line-height: 1;
  letter-spacing: .02em;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
}
.discount-rate {
  font-size: 3.0rem;
}
.product__article .product-details {
  margin-top: 20px;
}
.details-item {
  letter-spacing: 0;
  line-height: 1.4;
}
.details-item + .details-item {
  margin-top: .4em;
}
.product__summary .notes.product__notes {
  margin-top: .8em;
}
.notes {
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.55;
  font-size: 1.3rem;
}
.notes-s {
  font-size: 1.2rem;
}
.notes li + li {
  margin-top: .3em;
}
.point-image {
  overflow: hidden;  
  width: 49.0566038%;
  max-height: 200px;
}
.point-summary {
  width: 45.2830189%;
  line-height: 1.65;
}
.point-summary__title {
  margin-bottom: .5em;
  text-align: left;
  line-height: 1.4;
  font-weight: 700;
  font-size: 1.7rem;
  color: var(--kitchen-color);
}
.point-summary dd {
  font-size: 1.5rem;
}
.product__movie {
  margin: 130px auto 0;
  width: 78.3333333%;
  min-width: 940px;
}
.product__movie.-short-area {
  width: 100%;
}
.movie-box__video {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.movie-box__video iframe {
  width: 100%;
  height: 100%;
}
.movie-box__head {
  position: relative;
  display: block;
  margin-bottom: 30px;
  padding: .8em 1.25em;
  border-radius: 9999px;
  border-radius: 5px;
  background: #f1e500;
  text-align: center;
  line-height: 1.5;
  --max-size: 21;
  --min-size: 16;
  font-size: var(--clamp-size);
}
.movie-illust {
  position: absolute;
  bottom: -36px;
  right: 3.4vw;
  z-index: 2;
}
.product__movie .notes {
  margin-top: 1.5em;
  text-align: center;
}
.product__link {
  margin-top: 60px;
  text-align: center;
}
.product__link .c-btn-txt {
  width: 490px;
}
.large-btn .c-btn-txt {
  width: 460px;
  height: 68px;
  font-size: 2.0rem;
}
.large-btn .btn-icon {
  width: 68px;
  height: 68px;
}
.product__list {
  gap: 95px 6.6666666%;
  grid-template-columns: 1fr 1fr;
}
.product__list + .differ-list {
  margin-top: 120px;
  grid-template-columns: 46.666666%;
  justify-content: center;
}
.product__item {
  width: 100%;
}
.product__image {
  padding-top: 38px;
}
.product__image {
  aspect-ratio: 5 / 2;
  text-align: center;
}
.product__image.differ-image {
  aspect-ratio: 28 / 13;
}
.product__image.-unset {
  aspect-ratio: auto;	
}
.model-image {
  width: 64.2857143%;
}
.product__image.-unset .model-image {
  width: 71.6%;
}
.model-image img {
  width: 100%;
  height: auto;
}
.product__summary {
  flex-grow: 1;
}
.product__item .product-summary {
  padding: 25px 0 30px;
}
.product__summary__price {
  position: relative;
  font-size: 1.5rem;
  justify-content: space-between;
}
.price-area .price-off {
  position: static;
  margin-left: 25px;
}
.product__summary__price .price-details {
  margin-top: 15px;
}
.product__details {
  margin-top: 1.2em;
}
.details__list {
  gap: .3em 20px;
  grid-template-columns: 1fr 1fr;
  font-size: 1.5rem;
}
.details__list .details-item {
  margin-top: 0;
}
.product__summary .notes {
  margin-top: 1em;
}
.product-point__list {
  column-gap: 2.5%;
  grid-template-columns: 1fr 1fr 1fr;
  width: 100%;
}
.product-point__list li {
  width: 380px;
  width: 100%;
}
.product__list__link .c-btn-txt {
  width: 490px;
  width: calc(100% - 70px);
}
.special-price {
  border-color: var(--price-color);
  background: #fff;
  color: var(--price-color);
}
.special-price > span {
  font-size: 1.5rem;
}
.other-lead {
  padding: 1.7em 0 1.3em;
  text-align: center;
  line-height: 1.5;
  font-size: 2.2rem;
  color: var(--kitchen-color);
}
.other .product__image {
  text-align: center;
}
.nogridlist .details-item + .details-item {
  margin-top: .3em;
}
.medama {
  position: relative;
}
.medama-mark {
  top: inherit;
  bottom: -10px;
  right: inherit;
  left: -28px;
  width: 96px;
  height: 96px;
  background: #dbe900;
  background: #f2e603;
  line-height: 1.2;
  font-size: 2.1rem;
  color: var(--main-color);
}
.product__price .medama-mark {
  top: 15px;
  bottom: inherit;
  right: 0;
  left: inherit;
}
.discount-box {
  margin-top: -20px;
  padding: 1.5em 1em;
  width: 200px;
  width: 35.7142857%;
  border: solid 1px #b5b5b5;
  border-radius: 10px;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
}
.discount-box.-sp {
  display: none;
}
.discount {
  display: block;
  font-size: 2.0rem;
  color: var(--price-color);
}
.discount .price {
  font-size: 2.8rem;
}
.discount .yen {
  font-size: 1.5rem;
}
.discount .zei {
  font-size: 1.2rem;
}
.komelist {
  text-indent: -1.8em;
  margin-left: .8em;
}
.pointlist {
  margin-top: 50px;
}
.pointlist .pointlist-img {
  width: 55.2631579%;
}
.pointlist .point-summary {
  width: 38.4210526%;
  line-height: 1.5;
}
.product__list.-specicon .product__image {
  position: relative;
}
.product__list.-specicon .model-image__caption {
  position: absolute;
  top: 25px;
  left: 0;
}
.model-image__caption img.plasma-c {
  width: 54px;
  height: 54px;
}
.square-image img {
  width: 100%;
}
.short-cont-area {
  margin: 0 auto;
  width: 78.3333333%;
  min-width: 940px;
}
.short-wrap {
  margin: 45px 0 0 0;
}
.short-wrap .product-summary {
  flex-grow: inherit;
  padding-top: 0;
  width: 580px;
  width: 61.7021277%;
}
/* 共通 */
.flow__summary {
  padding-bottom: var(--section-padding);
}
.flow__summary__item {
  position: relative;
  margin-top: 12px;
  padding: 42px 40px 35px;
  border: solid 2px var(--base-color);
  border-radius: 12px;
  background: #fff;
  line-height: 1.7;
}
.step-number {
  position: absolute;
  top: -23px;
  left: -23px;
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--base-color);
  letter-spacing: 0;
  line-height: 1;
  font-size: 3.5rem;
  color: #fff;  
}
.flow__summary li:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: -40px;
  margin: auto;
  width: 24px;
  height: 24px;
  border-top: 3px solid var(--accent-color);
  border-right: 3px solid var(--accent-color);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.flow__summary {
  grid-template-columns: repeat(3, 1fr);
  column-gap: 66px;
}
.flow__summary__item__icon {
  margin-bottom: 22px;
  height: 92px;
}
.flow__summary__item__txt {
  --max-size: 17;
  --min-size: 15;
  font-size: var(--clamp-size);
}
.showroom__section__head {
  text-align: center;
}
.showroom__section__subhead {
  margin: 20px 0 60px;
}
.another-holiday {
  display: block;
  margin-top: .5em;
  --max-size: 18;
  --min-size: 14;
  font-size: var(--clamp-size);
}
.reserve-txt {
  display: block;
  margin: 35px 0 .25em;
}
.reserve-notes {
  display: block;
  margin-top: 26px;
  font-size: 1.4rem;
}
.showroom__list {
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 4.1666666%;
}
.showroom__list__item {
  line-height: 1.5;
}
.showroom__list__item dl {
  width: 33.0434783%;
}
.showroom__list__item__name {
  margin-bottom: 1em;
  --max-size: 20;
  --min-size: 17;
  font-size: var(--clamp-size);
  font-weight: 700;
}
.showroom__list__item__link a {
  display: block;
  margin-top: 18px;
  padding: .7em;
  background: var(--point-color);
  border-radius: 4px;
  text-align: center;
  font-size: 1.4rem;
  color: #fff;
}
.showroom__list__item__map {
  width: 60.8695652%;
  border: solid 1px #c9caca;
}
.showroom__list__item__map img {
  width: 100%;
}
.annotation {
  padding-top: 80px;
  width: 100%;
  letter-spacing: .02em;
  --max-size: 14;
  --min-size: 12.5;
  font-size: var(--clamp-size);
}
.annotation__item {
  display: inline;
  margin-right: .35em;
}
.contact {
  text-align: center;
}
.contact-subhead {
  --max-size: 19;
  --min-size: 15;
  font-size: var(--clamp-size);
}
.business-hours {
  display: inline-block;
  margin: 0 .7em 0 .6em;
  padding: 0 .6em;
  border: solid 1px #333;
  --max-size: 16;
  --min-size: 13;
  font-size: var(--clamp-size);
}
.contact__list {
  grid-template-columns: repeat(auto-fit, minmax(380px,1fr));
  gap: 22px 32px;
  margin-top: 47px;
}
.contact__list__item {
  padding: 35px;
  border-radius: 12px;
  background: var(--base-color);
  line-height: 1.65;
  font-weight: 700;
  color: #fff;
}
.contact__list__item__branch {
  margin-bottom: .1em;
  --max-size: 26;
  --min-size: 19;
  font-size: var(--clamp-size);
}
.branch-name {
  display: block;
  --max-size: 18;
  --min-size: 14;
  font-size: var(--clamp-size);
  font-weight: 500;
}
.contact__list__item__tel, .contact__list__item__tel a {
  letter-spacing: .05em;
  --max-size: 34;
  --min-size: 22;
  font-size: var(--clamp-size);
  color: var(--section-bg-org);
}
.contact__list__item__tel::before {
  content: '';
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 24px;
  background: url(../images/icon_tel.svg) no-repeat;
  background-size: contain;
}
.contact__section__linkbtn {
  margin: 55px auto 0;
  width: 260px;
}
.contact__section__linkbtn a {
  display: block;
  padding: .5em;
  width: 100%;
  height: 100%;
  border: solid 1px #c9caca;
  border-radius: 5px;
  background: #fff;
  font-size: 1.5rem;
}
footer {
  padding: 35px 0 20px;
  text-align: center;
}
.copyright {
  margin-top: 1.4em;
  letter-spacing: .05em;
  font-size: clamp(1rem, 0.917rem + 0.35vw, 1.2rem);
  font-weight: 400;
}
.for-sp  {
  display: none;
}
.contact-button {
  display: none;
}
@media screen and (min-width: 1366px) {
  .linkbtn, .gnavilist a {
    transition: opacity .5s ease;
  }
  .linkbtn:hover, .gnavilist a:hover {
    opacity: .6;
  } 
  h1 a:hover img {
    opacity: 1;
  }
}

/*-------------------------------------------------
 * mediaqueriess
-------------------------------------------------*/
@media screen and (max-width: 1279px) {
  section, .section, .product-area {
    padding: var(--section-padding-sp) 0;
  }
  .end-section {
    padding-bottom: var(--section-end-padding-sp);
  }
  .product-first-area {
    padding-bottom: var(--section-padding-sp);
  }
  .product-end-area {
    padding-top: var(--section-padding-sp);
  }
  .container {
    padding: 0 var(--whole-padding-sp);
  }
  .head-subtxt {
    margin: .35em 0 5.208333vw;
  }
  @media screen and (max-width: 1179px) {
    .headbox {
      width: 100%;
      z-index: 9999;
    }
    .no-scroll .headbox {
      background: #fff;
    }
    .headbox__toggle {
      display: flex;
      align-items: center;
      justify-content: center;
      -webkit-transition: all .4s;
      transition: all .4s;
      z-index: 9999;
    }
    .headbox__toggle__trigger, .headbox__toggle__trigger span {
      display: inline-block;
      -webkit-transition: all .4s;
      transition: all .4s;
    }
    .headbox__toggle__trigger {
      position: relative;
      width: 34px;
      height: 28px;
      cursor: pointer;
    }
    .headbox__toggle__trigger span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 2px;
      border-radius: .001%;
      background: var(--accent-color);
      z-index: 9999;
    }
    .headbox__toggle__trigger span:nth-of-type(1) {
      top: 0;
    }
    .headbox__toggle__trigger span:nth-of-type(2) {
      top: 13px;
    }
    .headbox__toggle__trigger span:nth-of-type(2)::after {
      position: absolute;
      top: 0;
      left: 0;
      content: '';
      width: 100%;
      height: 2px;
      border-radius: .001%;
      background: var(--accent-color);
      -webkit-transition: all .4s;
      transition: all .4s;
    }
    .headbox__toggle__trigger span:nth-of-type(3) {
      bottom: 0;
    }
    .headbox__toggle__trigger.active span:nth-of-type(1) {
      -webkit-transform: translateY(8px) scale(0);
      transform: translateY(8px) scale(0);
    }
    .headbox__toggle__trigger.active span:nth-of-type(2) {
      -webkit-transform: rotate(-45deg);
      transform: rotate(-45deg);
    }
    .headbox__toggle__trigger.active span:nth-of-type(2)::after {
      -webkit-transform: rotate(90deg);
      transform: rotate(90deg);
    }
    .headbox__toggle__trigger.active span:nth-of-type(3) {
      -webkit-transform: translateY(-8px) scale(0);
      transform: translateY(-8px) scale(0);
    }
    .hide {
      overflow: hidden;
      visibility: hidden;
      opacity: 0;
    }
    .animation {
      -webkit-transition-property: opacity, visibility;
      transition-property: opacity, visibility;
      -webkit-transition-duration: .3s;
      transition-duration: .3s;
      -webkit-transition-timing-function: ease-in;
      transition-timing-function: ease-in;
    }
    .no-scroll {
      overflow: hidden;
    }
    #gnavi {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      margin: var(--header-hight) 0 0 0;
      width: 100%;
      height: calc(100% - var(--header-hight));
      -webkit-overflow-scrolling: touch;
      overflow: auto;
      background: #f1f5fa;
      z-index: 99;
    }
    #gnavi nav {
      display: flex;
      align-items: center;
      margin: 0 auto;
      width: 100%;
      height: 100%;
    }
    .gnavilist {
      flex-flow: row wrap;
      justify-content: space-between;
      padding: 0 var(--whole-padding-sp);
      width: 100%;
      max-height: 100%;
    }
    .gnavilist__item {
      width: calc((100% - 2.65625vw) / 2);
      height: auto;
      border-bottom: solid 1px var(--accent-color);
      text-align: center;
      font-size: 1.6rem;
    }
    .gnavilist__item:nth-child(-n+2) {
      border-top: solid 1px var(--accent-color);
    }
    .gnavilist__item:nth-last-child(-n+2) {
      margin-top: 40px;
      border: none;
    }
    .gnavilist__item a {
      display: block;
      padding: 1.15em 0;
      width: 100%;
      height: auto;
    }
    .gnavilist__item + .gnavilist__item {
      margin-left: 0;
    }
    .gnavi-flow a, .gnavi-contact a {
      font-size: 1.6rem;
    }
  }
  .page-head {
    height: 300px;
  }
  .leading {
    margin-bottom: 5.208333333vw;
  }
  .product__article {
    margin: 5.20833333vw 0 var(--section-padding-sp);
  }
  .product-title, .price-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .product__model {
    margin-top: .35em;
  }
  .price-txt {
    margin-top: .5em;
  }
  .product-point__list {
    margin-top: 42px;
  }
  .product__list {
    gap: 50px;
  }
  .product__summary__price {
    justify-content: space-between;
  }
  .medama-mark {
    width: 88px;
    height: 88px;
    font-size: 1.9rem;
  }
  .product__movie {
    min-width: inherit;
    max-width: 860px;
    width: 100%;
  }
  .product__link {
    margin-top: 46px;
  }
  .short-cont-area {
    width: 100%;
    min-width: 100%;
  }
  @media screen and (max-width: 1023px) {
    .product__article, .product__body {
      flex-direction: column;
      align-items: flex-start;
    }
    .product__outline, .product-imgbox {
      width: 100%;
    }
    .product-title, .price-details {
      flex-direction: row;
      align-items: center;
    }
    .product__model {
      margin: 0;
    }
    .price-txt {
      margin-top: -.4em;
    }
    .product__movie {
      margin-top: 60px;
    }
    .product__list {
      gap: 60px 0;
      grid-template-columns: 1fr;
    }
    .product__image {
      width: 88%;
      margin: 0 auto;
    }
    .square-image {
      margin: 0 auto 55px;
      width: 68%;
    }
    .product-point__list {
      column-gap: 26px;
    }
    .pointlist-item.horizontal {
      flex-direction: column;
      justify-content: flex-start;
    }
    .pointlist .pointlist-img, .pointlist .point-summary {
      width: 100%;
    }
    .point-summary__title {
      margin: .8em 0 .4em;
    }
    .discount-box.-sp {
      padding: .9em .85em;
      width: 100%;
      border-radius: 8px;
      line-height: 1.2;
    }
    .product__list.-specicon .model-image__caption {
      left: -5.3385vw;
    }
    .short-wrap {
      flex-direction: column;
      row-gap: 40px;
    }
    .short-wrap .product-summary {
      width: 100%;
    }
    .notes-br {
      display: block;
      text-indent: 0;
    }
  }
  /* 共通 */
  .flow__summary {
    padding-bottom: var(--section-padding-sp);
  }
  @media screen and (max-width: 1079px) {
    .flow__summary {
      grid-template-columns: 1fr;
      row-gap: 40px;
    }
    .flow__summary li:not(:last-child)::after {
      top: auto;
      bottom: -33px;
      right: calc(50% - 12px);
      transform: rotate(135deg);
    }
    .step-number {
      top: -18px;
      left: -18px;
      width: 54px;
      height: 54px;
      font-size: 3.2rem;
    }
  }
  .showroom__section__subhead {
    margin-bottom: 5.859375vw;
  }
  .reserve-txt {
    margin-top: 4.8vw;
  }
  .showroom__list__item {
    flex-direction: column-reverse;
  }
  .showroom__list__item dl, .showroom__list__item__map {
    width: 100%;
  }
  .showroom__list__item dl {
    margin-top: 16px;
  }
  .showroom__list__item__name {
    margin-bottom: .2em;
  }
  .contact__section__linkbtn {
    margin-top: 5.20833333vw;
  }
}
@media screen and (max-width: 743px) {
  body {
    font-size: 1.5rem;
  }
  h1, .f-logo {
    width: 124px;
  }
  .head-subtxt {
     font-size: 1.4rem;
  }
  .c-btn-txt {
    width: calc(100% - 52px)!important;
    height: 46px!important;
  }
  .large-btn .c-btn-txt, .request-btn .c-btn-txt {
    font-size: 1.6rem;
  }
  .btn-icon, .large-btn .btn-icon {
    margin-left: 6px;
    width: 46px;
    height: 46px;
  }
  .shadow-title {
    width: 78%;
    padding-top: .65em;
    padding-bottom: .65em;
    box-shadow: 0 2px 5px rgba(234, 104, 119, 0.3);
  }
  .bathroom-shadow {
    box-shadow: 0 2px 5px rgba(31, 150, 205, 0.3);
  }
  .sanitary-shadow {
    box-shadow: 0 2px 5px rgba(50, 150, 119, 0.3);
  }
  .safety-shadow {
    box-shadow: 0 2px 5px rgba(103, 131, 94, 0.3);
  }
  .living-shadow {
    box-shadow: 0 2px 5px rgba(255, 124, 7, 0.3);
  }
  .base-shadow {
    box-shadow: 0 2px 5px rgba(69, 125, 186, 0.3);
  }
  header {
    padding: 0 var(--whole-padding-sp);
    height: var(--header-hight-sp);
  }
  .headbox__toggle__trigger {
    width: 24px;
    height: 18px;
  }
  .headbox__toggle__trigger span, .headbox__toggle__trigger span:nth-of-type(2)::after {
    height: 2px;
  }
  .headbox__toggle__trigger span:nth-of-type(2) {
    top: 8px;
  }
  #gnavi {
    margin-top: var(--header-hight-sp);
    height: calc(100% - var(--header-hight-sp));
  }
  .gnavilist__item, .gnavi-flow a, .gnavi-contact a {
    font-size: 1.4rem;
  }
  .gnavilist__item:nth-last-child(-n+2) {
    margin-top: 25px;
  }
  .gnavilist__item a {
    padding: .95em;
  }
  .page-head {
    height: 150px;
  }
  .product__category {
    font-size: 1.6rem;
  }
  .product-title, .price-details {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-title {
    padding: 15px 0;
  }
  .product__model {
    margin-top: .3em;
  }
  .product__model {
    font-size: 1.7rem;
  }
  .name-head__logo img {
    width: auto;
    height: 18px;
  }
  .name-head__number {
    width: 28px;
    height: 28px;
  }
  .name-head__number > span {
    font-size: 1.8rem;
  }
  .price-title {
    padding: .35em .5em;
    width: 170px;
    height: auto!important;
  }
  .price-title, .special-price > span, .retail-price {
    font-size: 1.4rem;
  }
  .price-txt {
    margin-top: .5em;
  }
  .price-txt, .emphasis-price .price-txt {
    font-size: 1.5rem;
  }
  .price, .emphasis-price .price {
    font-size: 3.3rem;
  }
  .yen, .emphasis-price .yen {
    font-size: 2.0rem;
  }
  .price-off, .price-area .price-off {
    position: absolute;
    top: auto;
    bottom: 0;
    width: 80px;
    height: 80px;
    font-size: 2.2rem;
  }
  .discount-rate {
    font-size: 2.5rem;
  }
  .medama-mark {
    top: 20px;
    left: 0;
    bottom: auto;
    width: 68px;
    height: 68px;
    font-size: 1.6rem;
  }
  .product-point__list li {
    align-items: inherit;
  }
  .point-summary__title {
    margin-top: 0;
    font-size: 1.6rem;
  }
  .point-image {
    height: 39.7333333vw;
  }
  .point-image img {
    object-fit: cover;
    width: auto;
    height: 100%;
  }
  .point-summary dd {
    font-size: 1.4rem;
  }
  .product__movie {
    width: 100%;
  }
  .product__movie {
    margin-top: 70px;
  }
  .movie-box__head {
    margin-bottom: 20px;
    padding-left: 5.5vw;
    padding-right: 5.5vw;
    text-align: left;
  }
  .movie-illust {
    bottom: -1.33333vw;
    width: 26vw;
  }
  .product__list {
    gap: 40px 0;
  }
  .product__item .product-summary {
    padding: 20px 0 25px;
  }
  .product__image {
    flex-direction: column;
    aspect-ratio: auto;
    padding-top: 7.4666666vw;
    width: 100%;
  }
  .model-image {
    width: 90%;
  }
  .other-lead {
    padding: 1em 0;
    font-size: 1.7rem;
  }
  .square-image {
    margin-bottom: 30px;
    width: 100%;
  }
  .product__price .medama-mark {
    top: -55px;
    right: -2px;
  }
  .product-point__list {
    grid-template-columns: 1fr;
    gap: 18px 0;
    margin-top: 30px;
  }
  .pointlist-item.horizontal {
    flex-direction: row;
    justify-content: space-between;
   }
  .pointlist .pointlist-img {
    width: 49.0566038%;
  }
  .pointlist .point-summary {
    width: 45.2830189%;
  }
  .product__link {
    margin-top: 30px;
  }
  .product__link .circle-link-btn {
    width: 100%;
  }
  .product__link.-detail + .product__link {
	  margin-top: 12px;
  }
  .product__list.-specicon .model-image__caption {
    left: 0;
  }
  .model-image__caption img.plasma-c {
    width: 44px;
    height: 44px;
  }
  .short-wrap {
    row-gap: 22px;
    margin-top: 8.5333333vw;
  }
  .discount-box {
    display: none;
  }
  .discount-box.-sp {
    display: block;
    margin-top: 15px!important;
    line-height: 1.4;
  }    
  .discount-box br {
    display: none;
  }
  .discount {
    margin-top: -2px;
  }
  /* 共通 */
  .flow__summary {
    row-gap: 32px;
  }
  .flow__summary__item {
    margin-top: 5px;
    padding: 6.038647vw 6.038647vw 4.830918vw;
  }
  .step-number {
    top: -16px;
    left: -10px;
    width: 42px;
    height: 42px;
    font-size: 2.2rem;
  }
  .flow__summary__item__icon {
    margin-bottom: 12px;
    height: 88px;
  }
  .flow__summary li:first-child img {
    width: auto;
    height: 70px;
  }
  .flow__summary li:nth-child(2) img {
    width: auto;
    height: 88px;
  }
  .flow__summary li:not(:last-child)::after {
    bottom: -26px;
  }
  .showroom__section__subhead {
    margin-bottom: 28px;
    line-height: 1.75;
  }
  .showroom__list {
    row-gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  }
  .reserve-notes {
    margin-top: 4vw;
  }
  .annotation {
    padding-top: 8.454106vw;
  }
  .business-hours {
    margin-top: .2em;
    margin-bottom: .2em;
  }
  .contact__list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 22px;
  }
  .contact__list__item {
    padding: 18px;
  }
  .contact__list__item__tel::before {
    position: relative;
    top: 1px;
    margin-right: 5px;
    width: 14px;
    height: 17px;
  }
  .contact__section__linkbtn a {
    font-size: 1.3rem;
  }
  footer {
    padding: 20px 0 13px;
  }
  .f-logo {
    margin: 0 auto;
  }
  .copyright {
    margin-top: .9em;
  }
  .contact-button {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #fff;
    z-index: 3;
  }
  .contact-button__list {
    gap: 0;
    margin: 0;
  }
  .contact-button__item {
    width: 49.9%;
    width: calc((100% - 2px) / 2);
    padding: 0;
    border-radius: 0;
    line-height: 1.4;
  }
  .contact-button__item a {
    display: block;
    padding: 10px 5px;
  }
  .contact-button__text {
    margin: 0;
    font-size: 1.4rem;
    color: #fff;
  }
  .contact-button__text .branch-name {
    font-size: 1.0rem;
  }
  .contact-button__tel, .contact-button__tel a {
    line-height: 1.3;
    font-size: 1.4rem;
    color: #fff;
  }
  .contact-button__tel::before {
    vertical-align: middle;
    top: 0;
    margin-right: 3px;
    width: 10px;
    height: 14px;
  }
  @media screen and (max-width: 480px) {
    .for-pc {
      display: none;
    }
    .for-sp {
      display: block;
    }
  }
}