@charset "UTF-8";
:root {
  --main-color: #0059eb;
  --base-color:#feffc5;
  --sub-color: #0059eb;
  --sub-color2: #00357a;
}
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
  --min-size: 53;
  --max-size: 146;
  --min-viewport: 375;
  --max-viewport: 1440; 
  --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) * .1rem);
  --clamp-size: clamp(var(--min-size) * .1rem, var(--fluid-size), var(--max-size) * .1rem);
}
body {
  line-height: 1.7;
  --min-size: 15;
  --max-size: 17;
  font-size: var(--clamp-size);
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #333;
  letter-spacing: 0.05em;
}
img {
  vertical-align: bottom;
}
figure {
  margin: 0;
}
iframe {
  width: 100%;
}
table {
  border-spacing: 0;
}
button {
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a,input,textarea {
  transition: all .3s ease-in-out;
}
ol {
  text-align: left;
}
.fot-tsuku{font-family: "fot-tsukuardgothic-std", sans-serif;font-weight: 700;
  font-style: normal;}

/* レイアウト */
.w-container {
  width: min(92%, 1000px);
  margin-inline: auto;
}
.h-container {
  padding: clamp(4rem, 5vw, 70px) 0;
}
/* 見出し */
.heading {
  font-weight: 700;
  --min-size: 26;
  --max-size: 32;
  font-size: var(--clamp-size);
  color: var(--base-color);
}
.subHeading {
  font-weight: 600;
  --min-size: 22;
  --max-size: 28;
  font-size: var(--clamp-size);
  color: var(--sub-color);
}
/* 共通パーツ */
@media (width >= 744px) {  
  .sp-br {
    display: none; 
  }
}
.pc-br {
  display: none;
  @media (width >= 744px) {
    display: block;
  }
}
 .engTxt {
  font-family: "Roboto", sans-serif;
  color: #ff761c;
 }
 .blueBack {
  background: var(--base-color);
  padding-top: 3rem;
 } 
/* header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  background: #fff;
  padding-top: .8rem;
  padding-bottom: .8rem; 
  box-shadow: 0px 3px 10px #00000014;
  @media (width >= 960px) {
    padding-top: .2rem;
    padding-bottom: .2rem; 
  }
}
.headerInner{
  padding: .8rem 4%;
  @media (width >= 960px) {
    padding-top: .2rem;
    padding-bottom: .2rem;
  }
}
.headerLogo {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 10002; 
  max-width: 15rem;
  @media (width >= 744px) {
    position: static;
    padding-right: 20px;
	max-width: 257px;
  }
}
/* gnav */
.hamburger {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  width: 3rem;
  cursor: pointer;
  z-index: 10001;
  position: relative;
  margin-left: auto;
}
.hamburger span {
  height: .3rem;
  background-color: var(--sub-color);
  width: 100%;
  border-radius: .2rem;
  transition: all 0.3s ease;
}
/* メニューオーバーレイ */
.menu-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(30, 46, 57, 0.37); 
  z-index: 10001;
  justify-content: center;
  align-items: start;
  padding-top: 6rem;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.menu-overlay.active {
  display: flex;
  opacity: 1;
}
/* メニュー本体 */
.menu-content {
  background: #fff;
  width: 100%;
  max-width: 100%;
  padding: 2rem;
  position: absolute; 
  top: 0;
  left: 0;
  transform: translateY(-100%);
  transition: transform 0.3s ease;
}
.menu-overlay.active .menu-content {
  transform: translateY(0);
}
/* 閉じるボタン */
.menu-close {
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  width: 3rem;
  height: 2.4rem;
  font-size: 3.2rem; 
  background: none;
  border: none;
  color: var(--sub-color);
  text-align: center;
  line-height: 2.4rem; 
  padding: 0;
  z-index: 10002; 
}
/* メニューリスト */
.menu-list {
  margin-top: 5rem;
}
.menu-list li {
  padding: 2rem 0;
  text-align: center;
}
.menu-list li:not(:last-of-type) {
  border-bottom: .1rem solid var(--base-color);
}
.menu-list a {
  font-size: 1.7rem;
  font-weight: bold;
}
/* PC版では非表示 */
@media (min-width: 744px) {
  .hamburger {
    display: none;
  }
  .menu-overlay {
    display: none !important;
  }
  nav.gnav ul {
    display: flex;
    gap: 2rem;
  }
  nav.gnav li a {
    text-decoration: none;
    color: var(--base-color);
    font-weight: bold;
  }
}
/* PCナビ：スマホでは非表示 */
.pc-nav {
  display: none;
}
@media (min-width: 744px) {
  .headerInner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .pc-nav {
    display: block;
  }
  .pc-nav-list {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    flex-wrap: nowrap;
  }
  .pc-nav-list li {
	flex-basis:auto;
	border-right: 1px solid #b5b5b5;
	padding: 0 4px;
  }
  .pc-nav-list li:first-child {
    border-left: 1px solid #b5b5b5;
  }
  .pc-nav-list li.noborder {
    border: none;
  }
  .pc-nav-list li a {
	text-decoration: none;
    font-size: 1.4rem;
    white-space: nowrap;
  }
  .pc-nav-list li img {
    --min-size: 80;
    --max-size: 164;
    width: var(--clamp-size);
    vertical-align: middle;
	margin: 14px 1px 10px;
  }
  .pc-nav-list li.pdl20 {
    padding-left: 20px;
  }
}
.pc-nav-list li:not(:has(img)) {
  @media (width >= 960px){
    padding-inline: 3rem;
  }
}
/* メイン画像 */
.mainVisual {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  @media (width >= 744px) {
    padding-top: 8rem;
    background-image: url(../img/fv/fv-bg.jpg); 
    background-size: cover;
    background-position: center 8rem;
	background-repeat: no-repeat;
  }
}
.mainVisualImage img {
  max-width: 100rem;  
  height: auto;
}
@media (max-width: 743px) {
  .mainVisual {
    background: none;
    padding-top: 5rem;
  }
  .mainVisualImage img {
    position: static;
    transform: none;
    width: 1
  }
}
/* main */
.topPeriod {
  --min-size: 18;
  --max-size: 24;
  font-size: var(--clamp-size);
  line-height: 1.5;
  background: var(--sub-color);
  color: #FFF962;
  /*font-weight: bold;
  padding-top: 1rem;*/
  padding-bottom: .6rem;
  text-align: center;
}
.large {
  font-size: 1.8em;
}
.kakomi {
  font-size: 1.5rem;
  padding: .2em .4em;
  border: .1rem solid #FFF962;
  display: inline-block;
  margin-top: -0.4em;
  margin-right: .6em;
  vertical-align: middle;
}
.topLink {
  /*background: var(--base-color);*/
  padding: 3rem 0 5rem .3rem;
  text-align: center;
  @media (width >= 744px) {
    padding-top: 6rem;
    padding-bottom: 1rem;
  }

  & h2 {
    text-align: center;
    font-weight: 700;
    --min-size: 18;
    --max-size: 24;
    font-size: var(--clamp-size);
  }
}

.topLink h2 span {
  font-family: aptly, sans-serif;
  font-weight: 500;
  font-style: italic;
  display: block;
  color: #0066ff;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.topLink .w-container {
  width: min(96%, 960px);
}
.topLink ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem .5rem;
  margin-top: 1.5rem;
  @media (width >= 744px) {  
    gap: 0;
  }
}
.topLink ul li {
  width: calc(( 100% - 1rem ) / 2);
  @media (width >= 744px) {  
    width: calc(( 100% - 0rem ) / 4);
  }
}
.topLink ul li img {
  filter: drop-shadow(0 5px 0 #e6e6e6);
  @media (width >= 744px) {  
    filter: drop-shadow(4px 8px 0 #e6e6e6);
  }
}
/* 製品 */
.categoryTop {
  text-align: center;
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: end;
  box-shadow: 0px 4px #cfdfe5;
  background-color:  var(--base-color);
  z-index: 0;
  @media (width >= 744px) {
	background-image: url(../img/common/categoryTop_bg.jpg); 
    background-position: center bottom;
	background-size: auto;
	background-repeat: repeat-x;
	max-height:11.2rem;
	padding-top: 20rem;
    box-shadow: 0px 7px #cfdfe5;
  }
}
.categoryTop img {
  position: absolute
  display: block;
  margin-inline: auto;
  --min-size: 100%;
  --max-size: 1054;
  width: var(--clamp-size);
	@media (width >= 744px) {
	margin-bottom:-1.25rem;
  }
}

.productarea {
  width: 100%;
  padding-top: 7rem;
  padding-bottom: 5rem;
  font-style: normal;
  background: var(--base-color);
  @media (width >= 744px) {
    padding: 11rem 0 2rem;
  }
}
.product.w-container {
  background-color: white;
  border-radius: 1rem;
  box-shadow:0px 3px 3px rgba(190, 190, 190, 1);
  position: relative;
  padding: 1rem; 
  margin-bottom: 0;
	@media (width >= 744px) {  
    padding: 1rem 4rem 4rem;
    box-shadow:3px 7px 10px rgba(190, 190, 190, 1);
	border-radius: 2.4rem;
	}
}
/*.product.w-container:nth-child(2) {
  margin-bottom: 0;
}*/
.product.w-container:nth-child(n+2) {
  margin-top: 8rem;
	@media (width >= 744px) {  
    margin-top: 12rem;
	}
}

.productBox {
  border-radius: 1rem;
  padding: 2rem 1.5rem 1rem;
  background-image: url(../img/common/imadake-y-bg.jpg); 
  background-position: center top;
  background-size: 130%;
  margin: 2.4rem .8rem ;
  outline: 1px solid white;
  outline-offset: -6px;
  @media (width >= 744px) {
    margin: 4rem 0 0;
    padding: 2rem 3rem 3rem;
  background-size: cover;
  }

  & h4 {
    text-align: center;
    color: #0069eb;
    font-weight: 700;
    --min-size: 20;
    --max-size: 34;
    font-size: var(--clamp-size);
	line-height: 1.2;
	margin: 1rem 0 1.5rem;
  }

  & h4 img {
    margin: -1rem auto 0;
	  @media (width >= 744px) {
      margin: 0 auto 2rem;
    }
  }

  & h4 span {
    --min-size: 10;
    --max-size: 24;
    font-size: var(--clamp-size);
	color: #333;
  }

  & p.lead {
	text-align: center;
    --min-size: 10;
    --max-size: 18;
    font-size: var(--clamp-size);
	font-weight: 700;
	margin-bottom: 1.6rem;
	margin-top: -1rem;
	}
}
.productBox.blue {
  background-image: url(../img/common/imadake-b-bg.jpg); 
}

.productWrapper {
    margin-top: 1.8rem;
  @media (width >= 744px) {
    /*display: flex;
    gap: 2rem;*/
	margin-top: 3rem;
  }
  /*@media (width >= 960px) {
    gap: 4rem;
  }*/
}

.productBox img {
  @media (width >= 744px) {
    /* max-width: 25rem !important; */
    display: block;
    margin-inline: auto;
  }
}
.productImgWrapper {
  display: flex;
  flex-direction: column;
  gap: .5rem;
	@media (width >= 744px) {
    flex-direction: row;
    gap:1rem;
	justify-content:space-between;
  }
}
.productImgWrapper .left {
  flex-wrap: wrap;
  width: 100%;
  position: relative;
	@media (width >= 744px) {
	  width: 71%;
  }
  & img.proIcon {
	  position: absolute;
	  width: 12rem;
	  height: auto;
	  bottom: 0;
	  left: 0;
		@media (width >= 744px) {
	  	width: 18rem;
  }
	}
  & img {width: 100%;}
}
.productImgWrapper .right {
  display: flex;
  justify-content:space-between;
  gap: .5rem;
  width: 49%;
	@media (width >= 744px) {
	  flex-wrap: wrap;
	  width: 29%;
	  gap: 1rem;
  }
}

.productImgWrapper.toilet1 .left {
	@media (width >= 744px) {
	  width: 48%;
  }
	& .productBoxTxt img {width: auto;}
}
.productImgWrapper.toilet1 .right { 
	width: 100%;
	display:block;
    @media (width >= 744px) {
	  width: 45%;
     }
	& .productBoxTxt img {width: auto;}
	& .productBoxTxt {display:block !important;width: 100%;}
}

.productBoxFlex {
  display: flex;
  align-items: center;
  gap: 0rem;
  margin-bottom: 1rem;
  padding: 0 !important;
  background-color: white;
  @media (width >= 744px){
	flex: 1;
	flex-direction: column;
	align-items: flex-start;
    /* padding-left: 1.5rem;
    padding-right: 1.5rem; */
    text-align: center;
	gap: 1.5rem;
	margin-bottom: 0;
  }
  & img {
    width: 100%;
	height: 100%;
	object-fit: cover !important;
	
    @media (width >= 744px) {
      width: 100%;
      display: block;
      margin-inline: auto;
	  gap: 1.5rem;
    }
  }
}

._mr .productBoxFlex {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 1rem;
  gap: 1rem;
  padding-top: 1rem !important;
  @media (width >= 744px){
	flex: 1;
	flex-direction: row;
	align-items: center ;
    text-align: center;
	gap: 4rem;
	margin-bottom: 0;
	margin-top: -1rem;
    padding: 2rem !important;
  }
  & .productBoxImg {
    width: 80%;
    @media (width >= 744px) {}
  }
  & .productBoxTxt {
    width: 90%;
	text-align: center !important;
    @media (width >= 744px) {}
  }
}
/*.productBoxFlex:not(._type2) {
  align-items: flex-start;
  background-color: white;
  @media (width >= 744px) {
    align-items: center;
  }
}
.productBoxFlex img.square {
  @media (width >= 744px) {
    max-width: 30rem;
  }
}*/
.productBoxFlex.osusume {
  border: 4px solid #ff6600;
  position: relative;
  @media (width >= 744px) {
    border: .8rem solid #ff6600;
	margin: -.8rem 0 0 -.8rem
  }
}

.osusumeIcon {
  background-color: #ff6600;
  color: white;
  font-size: 1.6rem;
  font-style: italic;
  padding: .2rem .8rem .2rem .6rem;
  position: absolute;
  top:-4px;
  left:-4px;
  @media (width >= 744px) {
    font-size: 2rem;
    top:-0.8rem;
    left:-0.8rem;
  }
}
img.rectangle {
  width: 65% !important;
  display: block;
  margin-inline: auto;
}
.productBoxFlex img.rectangle {
  @media (width >= 744px) {
    width: 100% !important;
    /*max-width: 24rem;*/
  }
}
/* .productBoxFlex .cabinet {
  width: 70%;
  @media (width >= 744px) {
    width: 90%;
  }
} */
.productBox._toilet .productBoxFlex {
  flex-direction: column;
  & img {
    width: 100%;
  }
}
.frp {
  @media (width >= 744px) {
    width: 15% !important;
  }
}
.productBoxAnother {
  & h4 {
    color: var(--sub-color);
    --min-size: 20;
    --max-size: 27;
    font-size: var(--clamp-size);
    font-weight: 700;
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2rem;
    @media (width >= 744px) {
      margin-top: 6rem;
    }

    & + p {
      margin-top: 2rem;
      margin-bottom: 2rem;
      @media (width >= 744px){
        text-align: center;
        margin-bottom: 4rem;
      }

    }
  }
  & img {
    @media (width >= 744px) {
      max-width: 25rem;
    }
  }
}
.productBoxFlex._another {
  flex-direction: column;
  width: 100%;

  & h5 {
    text-align: center;
    font-weight: 700;
    --min-size: 17;
    --max-size: 18;
    font-size: var(--clamp-size);
  }
  & img {
    display: block;
    margin-inline: auto;
  }
  & .productBoxTxt {
    @media (width >= 744px){
      width: 96%;
    }
  }
}
.priceTxt {
  color: var(--sub-color);
  text-align: center;
  --min-size: 16;
  --max-size: 18;
  font-size: var(--clamp-size);
  line-height: 1.4;
  font-weight: bold;
}
.productBoxWrapper {
  @media (width >= 744px){
    display: flex;
    gap: 1rem;
  }
} 
.productBoxWrapper.item2 {
  flex-direction: column;
  width: 100%;
  @media (width >= 744px){
    display: flex;
	flex-direction: row;
    gap: 2rem;
  }
  & .productBoxFlex {flex-direction: column;}
  & .productBoxTxt {
      width:96%;
	  margin-bottom: 1rem;
      @media (width >= 744px){
      margin:0 auto;
    	}
	  }
  & .productBoxTxt p:first-child {
      text-align: center;
	  }
  & .productBoxImg{
    width:100%;
	text-align: center;
	}
} 
.productBoxImg.oflora img {
  padding: 2rem 0 0;
  width: 80%;
}
.productBoxFlex {
  @media (width >= 744px){
    flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  /*justify-content: center;*/
  text-align: center;  
  }
}
/*.productBoxFlex:not(:first-of-type) {
  border-top: .2rem solid #049FD8;
  padding-top: 2rem;
  @media (width >= 744px) {
    border-top: none;
    padding-top: 0;
    border-left: .2rem solid #049FD8;
  }
}*/
/*.productBoxFlex:not(:last-of-type) {
  padding-bottom: 2rem;
  @media (width >= 744px) {
    padding-bottom: 0;
  }
}*/
.productBoxImg {
  width: 53%;
  @media (width >= 744px){
	  width: 100%;}
}
.productBoxTxt {
  padding: 1rem;
  width: 48%;
  @media (width >= 744px){
    width: 100%;
    padding: 0rem 1.2rem 2rem;
  }
	& .small{font-size:75%; color: #999999;}
}
.productBoxTxt ol {
	margin-bottom: 1rem;
	& li {list-style-type: decimal; margin-bottom: .5rem; margin-left: 8%;}
	& li p {color: #333333 !important; text-align: left !important; font-weight: normal !important;}
}

.productBoxWrapper._noct{
  & .productBoxImg {
    width: 60%;
    @media (width >= 744px){
	  width: 100%;}
  }
  & .productBoxTxt {
    width: 40%;
    @media (width >= 744px){
      width: 100%;
    }
  }
}
.productBoxTxt p {
    --min-size: 13 !important;
    --max-size: 18 !important;
  font-size: var(--clamp-size);
  display: flex;
  flex-direction: column;
  line-height: 1.4;
  @media (width >= 744px){
  line-height: 1.6;
  }
}
.productBoxTxt p.txtcenter {
  @media (width >= 744px){
    text-align: center !important;
  }
}	  
.productBoxTxt p:not(:first-of-type) {
  padding-top: 1rem;
  @media (width >= 744px){
    text-align: left;
  }
}
.productBoxTxt p:first-child {
  font-weight: 700;
  --min-size: 17;
  --max-size: 17;
  font-size: var(--clamp-size);
  color: var(--sub-color);
  line-height: 1.4;
  @media (width >= 744px) {
    text-align: center;
  }
}


.productTxtWrapper {
  padding: 0 .8rem;
  @media (width >= 744px) {
    display: flex;
	justify-content:space-between;
    margin-top: 3.5rem;
    gap:2rem;
    padding: 0;
  }
}
.productTxt_item{
	@media (width >= 744px) {
    width:48rem;
  }
}
.productPrice{
  margin: 2rem -1.4rem 0 -1.4rem;
  @media (width >= 744px) {
    margin: 0;
  }
}
/* モーダル */
.modal { 
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
}
.modal.show { 
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-inner {
  position: relative;
  display: inline-block;
}
.modal-content {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  margin-inline: auto;
  @media (width >= 744px)  {
    max-width: 90%;
  }
}
.modal-inner .modal-close {
  position: absolute; 
  top: -4rem;
  right: 2rem;
  cursor: pointer;
  z-index: 10;
}
.modal-inner .modal-close img {
  width: 2.5rem;
  height: 2.5rem;
}
/* タブ切り替え */
.tab-buttons {
  display: flex;
  justify-content: center;
  gap: .5rem;
  padding-top: 3rem;
  background: linear-gradient(180deg, #ffffff 0%, #ffffff 60%, var(--base-color) 60%, var(--base-color) 100%);
	@media (width >= 744px) {border-bottom: .2rem solid var(--sub-color); gap: 1rem; padding-top: 6rem; background:none;}
}
.tab-buttons li {
  font-size: 1.8rem;
  width:45%;
  cursor: pointer;
  padding: 1rem 2rem .8rem;
  font-weight: bold;
  text-align: center;
  color: var(--sub-color);
  border: 2px solid var(--sub-color);
　position: relative;
  background-color: white;
	@media (width >=744px) {
	font-size: 2.2rem;
	width: 45%;
	max-width: 50rem;
	padding: 2rem 2rem 1.6rem;
	border-bottom: none;
　}
}


.tab-buttons li.active {
 background: var(--sub-color);
 color: #fff;
 position: relative;
}
.tab-buttons li.active::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: var(--sub-color) transparent transparent transparent;
    border-width: 16px 20px 0px 20px;
    position: absolute;
    left: calc(50% - 20px);
    bottom: -8px;
	@media (width >= 744px)  {display:none;}
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.productNumber {
  position: absolute;
  top:-4.8rem;
  left:-1rem;
  width: 34rem;
  z-index: 100;
  @media (width >= 744px) {  
    width: 50.8rem;
	height:auto;
	top:-5.9rem;
	left:-2rem;
  }
}
.subject {
  --min-size: 12;
  --max-size: 22;
  font-size: var(--clamp-size);
	line-height: 1;
  width: fit-content;
  margin-inline: auto;
  position: relative;
  display: block;
  color: var(--sub-color);
  font-weight: bold;
  margin-top: 2rem;
  padding: 0 10px;
}
.subject::before {
  	position: absolute;
    left: 0;
    top: 0;
    content: "";
    width: 1px;
    height: 100%;
    background: var(--sub-color);
    border-radius: 3px;
    transform: rotate(-25deg);
}
.subject::after {
  position: absolute;
    content: "";
    right: 0;
    top: 0;
    width: 1px;
    height: 100%;
    background: var(--sub-color);
    border-radius: 3px;
    transform: rotate(25deg);
}
.subject.none, .subject.none::before, .subject.none::after {
  color: white;
  background: white;
}

.brandLogo {
  --min-size: 90;
  --max-size: 110;
  width: var(--clamp-size);
  display: block;
  margin: 1rem 0 .5rem;
  @media (width >= 744px) {
    margin-inline-start: 0;
    margin: 0;
  }
}
.brandLogo._lixil {
  --min-size: 50;
  --max-size: 90;
}
.brandLogo._lixil2 {
  --min-size: 110;
  --max-size: 180;
}
.brandLogo._panasonic {
  --min-size: 80;
  --max-size: 150;
  filter: brightness(0%);
}
.productName {
  font-weight: 700;
  --min-size: 34;
  --max-size: 49;
  font-size: var(--clamp-size);
  margin-bottom: 0;
  margin-top: -1rem;
  @media (width >= 744px) {
    text-align: left;
  }
}
.triangle-down {
  width: 0;
  height: 0;
  border-left: 2.8rem solid transparent;
  border-right: 2.8rem solid transparent;
  border-top: 1.2rem solid #ff761c;
  margin-inline: auto;
  margin: 0 auto .6rem;
}
.must-see {
  background: #d5f1ff;
  padding: 4rem 0;
  margin-top: 8.4rem;
  border-radius: 1rem;
	@media (width >= 744px) 
	{}
  & p.lead {
	text-align: center;
    --min-size: 14;
    --max-size: 22;
    font-size: var(--clamp-size);
	margin-bottom: 0;
	margin-top: 1.4rem;
	color: var(--sub-color2);
	  @media (width >= 744px) {
      margin-bottom: 6rem;
      }
	}
  & p.lead {
	margin-top: 0.5rem;
	  @media (width >= 744px) {margin-top: 1.2rem;}
	}
  & p.lead span {
	background-color: #0a4da4;
	color: white;
	padding: 0.5rem 0.6rem 0.6rem;
	}
  & h5 {
    text-align: center;
    font-weight: 700;
    --min-size: 25;
    --max-size: 34;
    font-size: var(--clamp-size);
	display: flex;
	justify-content: center;
	margin: -7.8rem auto 0;
	max-width: 80%;
    & + p {
      margin-top: 2.5rem;
      @media (width >= 744px) {
        text-align: center;
      }
    }
  }
  & img {
    margin-top: 1rem;
  }
  & .window2 {
    margin-top: 2rem;
    @media (width >= 744px) {
      margin-top: 6rem;
      @media (width >= 960px) {
        margin-top: 6.5rem;
      }
    }
  }
}
.only {
  background: #2495fd;
  color: white;
  text-align: center;
  --min-size: 14;
  --max-size: 20;
    font-size: var(--clamp-size);
    font-weight: 400;
    padding-top: .8rem;
    padding-bottom: .8rem;
    border-radius: 4rem;
    margin-top: 4rem;
	line-height: 1.2;
	@media (width >= 744px) {
	line-height: 1.6;
  }
}
.total {
  --min-size: 17;
  --max-size: 26;
    font-size: var(--clamp-size);
	line-height: 1.2;
    font-weight: 700;
    text-align: center;
	padding: 1rem 0 1rem;
    
    & .kakaku {
      --min-size: 24;
      --max-size: 60;
    font-size: var(--clamp-size);
    } 
    & .kakaku small {
      font-size: 2.2rem;
    } 
}
.pdt0 {
  padding-top: 0;
}
.total ._yellow {
  color: #FFF962;
}
.total._another {
  text-align: center;
  /* margin-top: 2rem; */
  /* @media (width >= 744px) {
    text-align: center;
  } */
}
.detail {
  background: #FFF962;
  color: var(--sub-color);
  text-align: center;
  --min-size: 17;
  --max-size: 20;
    font-size: var(--clamp-size);
    font-weight: 700;
    padding-top: .8rem;
    padding-bottom: .8rem;
    border-radius: 2rem;
    margin-top: 4rem;
}
.must-seeWrapper {
	display: flex;
    gap: 1rem;
	padding-top:2rem;
	text-align:center;
	@media (width >= 744px) {gap: 2rem;}
    & .must-seeWrapper1,
    & .must-seeWrapper2 {
      flex: 1;
	  flex-direction: column;
	  background-color: white;
	  border-radius: .5rem;
	  padding: 0 1rem 1rem;
		@media (width >= 744px) { 
			padding: 0 2rem 2rem; border-radius: 1rem;
		}
	}
	/*& .must-seeWrapper2 {padding-top: 4.1rem;}*/
    & .must-seeWrapper1 .only,
    & .must-seeWrapper2 .only {
      margin-top: 1rem;
		@media (width >= 744px) { margin-top: 1.5rem;}
    }
    & img {
      width: min(100%, 330px);
    }
    & p.small {
      text-align: left;
	  font-size: 1.2rem;
    }
}
/* お問い合わせ */
.contactBlueBackBox {
	background: var(--base-color);
	padding: 50px 0;
}
.contactBlueBack {
  width: min(92%, 1000px);
  background-image: url(../img/cta/sp/bg.gif); 
  background-position: center top;
  background-size: 100%;
  background-repeat: no-repeat;
  margin-inline: auto;
  border: 2px solid #0065eb;
  border-radius: 1rem;
  box-shadow:0px 3px 3px rgba(190, 190, 190, 1);
  @media (width >= 744px) {
    background-image: url(../img/cta/bg.gif); 
    border-radius: 2rem;
	margin:0 auto;
    border: 6px solid #0065eb;
    max-width: 100rem;
  }
}
.contactBlueBack.item_btm { 
  width: auto;
  margin: 3rem -1rem -1rem;
  border-radius: 0 0 1rem 1rem;
  @media (width >= 744px) {
    margin: 6rem -4rem -4rem;
    border-radius: 0 0 2rem 2rem;
  }
}
.period {
  background: #FFF962;
  text-align: center;
  padding-top: 2rem;
  padding-bottom: .8rem;
  max-width: 100rem;
  margin-inline: auto;
  @media (width >= 744px) {
    padding-bottom: 2rem;
  }
  @media (width >= 1000px) {
    border-radius: 2rem 2rem 0 0;
  }
}
.period._mt {
  margin-top: 4rem;
  @media (width >= 744px) {
    margin-top: 10rem;
  }
}
.period._pcmt {
  @media (width >= 1000px) {
    margin-top: 10rem;
  }
}
.period._mt._last {
  margin-top: 3rem;
}
.period p {
  --min-size: 20;
  --max-size: 30;
  font-size: var(--clamp-size);
}
.periodTxt {
  color: #FFF962;
  width: fit-content;
  background: var(--sub-color);
  margin: 0 auto;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-left: 1.4rem;
  padding-right: 1.4rem;
  /* margin-bottom: 2rem; */
}
.period span {
  color: var(--sub-color);
}
.period p:nth-of-type(2) {
  color: var(--sub-color);
  font-weight: 700;
}
.contactWrapper.w-container {
  padding: 7.9rem 1rem 1.5rem 2rem;
  width: 100%;
  @media (width >= 744px) {
	/*padding: 15.2rem 3.5rem 4.4rem 4.1rem;*/
	padding: 15.2% 3.5% 4.4% 4.1%;
    display: flex;
	justify-content: space-between;
    gap: 0;
    align-items: flex-end;
  }
}
.contactWrapper p {
  font-weight: 700;
  --min-size: 15;
  --max-size: 22;
  font-size: var(--clamp-size);
  text-align: center !important;
}

.contactWrapper img {
  width: 100% !important;
}
.contactForm {
  margin: 0;
  @media (width >= 744px) {
    margin: 0;
	width:50%;
  }
}
.contactForm p {
  color: #F57B00;
}
.contactTel {
  margin: 0; 
  @media (width >= 744px) {
    margin: 0;
	width:50%;
  }
}
.ccontactTel p  {
  color:  #1E2E39;
}
/* footer */
.footer {
  background: var(--sub-color2);
  padding: 2rem 0;
  }


/* hover設定 */
@media (hover: hover) {
  a img {
    opacity: 1; 
    transition: opacity 0.3s ease;
  }
  a:hover img {
    opacity: 0.7;
  }
  .pc-nav-list li a:hover {
    opacity: 0.7;
  }
}
 
/* フローティングバナー */
.sp-bar {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.sp-bar.is-show {
  opacity: 1;
  pointer-events: auto;
}

.sp-bar__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  max-width: 720px;
  margin: 0 auto;
  padding: 15px;
  background-color: rgb(62 194 255 / 0.6);
}

.sp-bar__btn {
  display: inline-block;
}

.sp-bar__btn img {
  width: 100%;
  height: auto;
}

/* 744px以上では非表示 */
@media (min-width: 744px) {
  .sp-bar {
    display: none !important;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: block !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pc { display: none !important; }
    .sp { display: block !important; }
}

/* 既存LPのコード */
.br-sm {
  display: none;
}
/* Inner */
/* ================== */
.inner {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  /* padding: 70px 50px; */
  /*padding: 70px 0;*/
}

@media(max-width: 959px) {
  .inner {
      /*padding: 30px 30px;*/
  }
}

@media (max-width:743px) {
  .inner {
      /*padding: 30px 20px;*/
  }
}
/* lv2-heading02 */
/* ================== */
.lv2-heading02 {
  background: #002a68;
  color: #fff;
  font-weight: 700;
  --min-size: 22;
  --max-size: 42;
  font-size: var(--clamp-size) !important;
  padding: 30px 0 !important;
  text-align: center;
  /*max-width: 760px;*/
  width: 100%;
  margin: 0 !important;
  position: relative;
  line-height: 1 !important;
	@media (width >= 744px) { line-height: 1.6 !important; padding: 32px 0  !important; }
}
.lv2-heading02 span {
  font-family: aptly, sans-serif;
  font-weight: 500;
  font-style: italic;
  display: block;
  color: #ffff63;
  font-size: 1.6rem;
  padding-bottom: 1rem;
}
.a-service {
  background-image: url(../img/a-service/bg.jpg); 
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
	@media (width >= 744px) {
    background-image: url(../img/a-service/bg-pc.png); 
  }
}
.a-service__lv3-heading {
  font-weight: 700;
  --min-size: 20;
  --max-size: 48;
  line-height: 1.8;
  font-size: var(--clamp-size) !important;
  text-align: center;
  text-shadow: 2px 2px 10px #ffffff;
  margin-top: 5px;
	@media (width >= 744px) {
  	line-height: 1.6;
  }
}
.a-service__lv3-heading span {
  color: #0069eb;
  border-bottom: double 6px #0069eb;
}

.a-service__box {
  padding: 2rem 2rem 5rem !important;
	@media (width >= 744px) { 
		padding: 50px 35px 145px !important;
	}
}

.a-service__txt {
  font-weight: 500;
  --min-size: 14;
  --max-size: 22;
  font-size: var(--clamp-size) !important;
  line-height: 2;
  margin-top: 1rem;
	@media (width >= 744px) {  
		line-height: 2.5;
		margin-top: 4rem;
	}
}

.a-service__txt-em {
  color: #fff;
  font-weight: 700;
  --min-size: 16;
  --max-size: 24;
  font-size: var(--clamp-size) !important;
  background-color: #ff761c;
  padding: .2rem .5rem .4rem;
  margin: 0 .2rem;
	@media (width >= 744px) {  
		padding: .5rem 1rem .7rem;
	}
}

.a-service__period {
  width: 100%;
  margin: 2rem auto -1rem;
  background-color: #0069eb;
  padding: 5px;
  width: 98%;
	@media (width >= 744px) {  
    margin: 4rem auto -2rem;
  	width: 100%;
  	padding: 1rem;
    }
}

.a-service__period_txt{
  border: 1px solid white;
  text-align: center;
  padding: 3rem;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  @media (width >= 744px) {
    padding: 3rem;
  }
}
.a-service__period .kikan{
  font-size: 3rem;
  letter-spacing: .1em;
  --min-size: 16;
  --max-size: 28;
  font-size: var(--clamp-size) !important;
}
.a-service__period .kikan2{
  color: #ffff63;
  display: inline-block;
  padding-left: 2rem;
  letter-spacing: .1em;
  --min-size: 34;
  --max-size: 54;
  font-size: var(--clamp-size) !important;
}
.a-service__period .note{
  font-weight: normal;
  --min-size: 10;
  --max-size: 14;
  font-size: var(--clamp-size) !important;
}

.a-service__period img {
  width: 100%;
  height: auto;
}

.a-service__flex {
  display: flex;
  justify-content: center;
  margin: 2.8rem auto 0; 
  gap:1rem;
  width: 70%;
	@media (width >= 744px) {
		width:auto;
		margin-top: 4rem; 
	}
}

.a-service__txt-cont {
	@media (width >= 744px) {
    width: min(90%, 800px);
	margin: 0 auto;
  }
}

.a-service__pic {
  width: 340px;
}

.a-service__pic img {
  width: 100%;
  height: auto;
}

@media (max-width:959px) {
  .lv2-heading02 {
      padding: 25px 10px;
      font-size: 24px;
      margin-bottom: 36px;
  }

  .a-service__lv3-heading {
      font-size: 30px;
  }

  .a-service__box {
      padding: 46px 35px;
  }

}

@media (max-width:743px) {
  .a-service__pic {
      max-width: 340px;
      width: 100%;
  }

  .lv2-heading02 {
      line-height: 1.5;
      font-size: 15px;
      padding: 17px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      min-height: 80px;
  }

  .a-service__box {
      padding: 20px;
  }

  .a-service__lv3-heading {
      font-size: 16px;
  }

  /*.a-service__txt {
      font-size: 12px;
      margin-top: 22px;
  }*/

  .a-service__period {
      max-width: 524px;
      margin-top: 20px;
  }

  .a-service__pic {
      margin-top: 18px;
      max-width: 230px;
  }
}

/* about */
/* ================== */
.about {
  background-image: url(../img/about/bg-pc.jpg); 
  background-size: 780px;
  background-position: center top;
  background-color: #c1e5ff;
  background-repeat: repeat-x;
	@media (width >= 744px) {  
   	 background-size: contain;
    }
}
.about__item {
  display: flex;
  align-items: center;
  max-width: 1500px;
  width: 100%;
  margin: 0 auto 70px;
}

.about__head {
  padding: 0;
}


.about__item-col1 {
  width: 80% !important;
  margin: 2rem 0 !important;
  color: #001734;
  background-color: rgba(255,255,255,0.76);
  padding: 2rem !important;
  border-radius: 0 !important;
	@media (width >= 744px) {
    width: 580px !important;
     padding: 32px 80px 20px !important;
     margin: 80px auto 0 !important;
  }
}

.about__item-col1-txt {
  line-height: 1.8;
  font-size: 20px;
  margin-top: 20px;
  font-weight: 600;
}

.about__item-col1-txt span {
  color: #fff;
  font-size: 1.16em;
  font-weight: 700;
  background-color: #ff761c;
  padding: .1rem .3rem .3rem;
  margin: 0 .5rem;
}

.about__item-col2 {
  max-width: 820px;
  width: 100%;
  position: relative;
  margin-left: auto;
}

.about__item-col1-ttl {
  line-height: 1.1;
  font-size: 36px;
  font-weight: 700;
  font-feature-settings: "palt";
  text-align: center;
}

.about__item-col1-ttl span {
  font-size: .70em;
}

.about__item-col1-ttl span.num {
  font-size: 1.2em;
}

.about__item-col1-txt-note {
  margin-top: 10px;
  text-align: right;
  font-size: 11px;
  margin-top: 2rem;
  color: #666666;
}

.about__item-col2 img {
  width: 100%;
  border-radius: 10px 0 0 10px;
}

@media (max-width:959px) {
  .about__item {
      margin-bottom: 30px;
  }

  .about__item-col1 {
      max-width: 560px;
      padding: 30px 35px;
      margin-top: 80px;
  }

  .about__item-col1-ttl {
      font-size: 22px;
  }

  .about__item-col1-txt {
      font-size: 16px;
      margin-top: 20px;
  }

  .about__item-col2 {
      max-width: 480px;
  }
}

@media (max-width:743px) {
  .about__head {
      padding: 0;
  }

  .about__item-col1 {
      position: static;
      margin-top: 0;
      width: calc(100% - 30px);
      border-radius: 10px 0 0 10px;
      margin: 0 -30px -20px 0;
      padding: 25px 35px;
  }

  .about__item {
      flex-direction: column;
      margin-bottom: 0;
  }

  .about__item-col1-ttl {
      font-size: 18px;
  }

  .about__item-col1-txt {
      font-size: 13px;
      margin-top: 10px;
  }
  .about__item-col2 {
      margin-right: auto;
      margin-left: -36px;
  }

  .about__item-col2 img {
      border-radius: 0 10px 10px 0;
  }
}

/* service */
/* ================== */
.service__list {
	padding-bottom: 40px; 
	@media (width >= 744px) {
    padding-bottom: 100px;}
}
.service__item {
  width: min(92%, 1000px);
  background: #fff;
  border-radius: 8px;
  border: #002a68 solid 1px;
  background-image: url(../img/service/bg.jpg); 
  background-size: 300px;
  background-position: right center;
  background-repeat: no-repeat;
  margin: 0 auto;
	@media (width >= 744px) {
		padding: 58px 20px 30px 60px;
  		border: #002a68 solid 2px;
  		background-size: auto;
  		background-position: right top;
        width: min(100%, 1000px);
  }
}

.service__item-ttl {
  --min-size: 18;
  --max-size: 40;
  font-size: var(--clamp-size) !important;
  color: #000;
  font-weight: 600;
  text-align: left;
  line-height: 1.4;
}
.service__item-ttl span {
  color: var(--sub-color);
  border-bottom: double 6px #0069eb;
}

.service__main-list {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: 3rem;
  max-width: 944px;
  width: 100%;
	@media (width >= 744px) {  
  	margin-top: 5rem;
	}
}

.service__main-item-col1 {
  width: 430px;
}

.service__main-item-txt {
  font-weight: 600;
  --min-size: 14;
  --max-size: 18;
  font-size: var(--clamp-size) !important;
  font-size: 18px;
  line-height: 1.8;
  margin-top: 2rem ;
	@media (width >= 744px) { 
		margin-top: 20px;
	}
}
.service__main-item-txt:first-child {
  margin-top: 0;
}

.sp-service__main-item-txt {
  display: none;
}

.service__main-item-txt span {
  color: #fff;
  font-size: 1.1em;
  font-weight: 700;
  background-color: #0069eb;
  padding: .1rem .4rem .2rem;
  margin: 0 2px;
}

.service__main-item-col2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(100% - 450px);
  flex-wrap:wrap;
}

.service__item-col2-box {
  width: calc(50% - 10px);
  margin-left: 10px;
  /*display: flex;
  justify-content: space-between;*/
}

.service__item-pic {
  width: 100%;
}

.service__item-col2-hr {
  position: relative;
}

.service__item-col2-hr::before {
  content: '';
  border: #4aa3fd 1px dashed;
  transform: rotate(-155deg);
  position: absolute;
  left: 20px;
  padding: 0;
  height: 75px;
  bottom: 0;
}

.service__item-col2-hr::after {
  content: '';
  border: #4aa3fd 1px dashed;
  transform: rotate(-23deg);
  position: absolute;
  right: 20px;
  padding: 0;
  height: 75px;
  bottom: 0;
}

.service__item-col2-txt {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #ff8314;
  line-height: 1.4;
  /*margin-bottom: 27px;*/
  padding: 4px 0;
}

.service__item-bottom-txt {
  font-size: 12px;
  margin-left: 50%;
	margin-top: 10px;
	text-align: center;
}

.copyright {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  padding-top: 26px;
  padding-bottom: 26px;
}

.copyright small {
  font-size: inherit;
}

@media (max-width:1279px) {
  .service__item-col2-txt {
      font-size: 16px;
  }
}

@media (max-width:959px) {
  .service__item-ttl {
      font-size: 30px;
  }

  .service__item {
      padding: 46px 35px;
  }

  .service__main-list {
      display: block;
  }

  .service__main-item-col1 {
      width: 100%;
  }

  .service__main-item-col2 {
      width: 100%;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
  }

  .service__item-col2-box {
      width: 100%;
      margin-left: 0;
  }

  .service__item-bottom-txt {
      margin: 40px 0 0 0;
  }
}

@media (max-width:743px) {
  .service__item {
      padding: 20px;
  }

  .service__item-ttl {
      font-size: 16px;
  }

  .service__main-item-txt {
      font-size: 11px;
  }

  .service__main-item-col2 {
      gap: 10px;
      margin: 16px auto 0;
  }

  .service__item-col2-txt {
      font-size: 12px;
      padding: 0;
      margin-bottom: 12px;
  }

  .service__item-col2-hr::after,
  .service__item-col2-hr::before {
      min-height: 26px;
      height: 50px;
  }

  .service__item-col2-hr::before {
      left: 20px;
  }

  .service__item-col2-hr::after {
      right: 20px;
  }

  .service__item-bottom-txt {
      margin-top: 0;
	  margin-left: 0;
  }

  .copyright {
      padding-top: 17px;
      padding-bottom: 17px;
      font-size: 12px;
  }
}
/* 既存LPのコードここまで */










