@import url("https://fonts.googleapis.com/css?family=Playfair+Display:400,700,900|Roboto:300,400,500,700,900");

/* animation
**************************************** */
  .fadein {
    display: block;
    transform : translate(0, 48px);
    -moz-transition: all 2.5s cubic-bezier(.165, .84, .44, 1);
    -webkit-transition: all 2.5s cubic-bezier(.165, .84, .44, 1);
    -ms-transition: all 2.5s cubic-bezier(.165, .84, .44, 1);
    transition: all 2.5s cubic-bezier(.165, .84, .44, 1);
  }
  .bokashi {
    -webkit-filter: blur(6px);
    filter: blur(6px);
    opacity : 0;
	color:#000;
  }
  .fadein.scrollin {
    opacity : 1;
    transform : translate(0, 0);
    -webkit-filter: blur(0px);
    filter: blur(0px);
  }

  @keyframes scroll_down {
    0% {
      opacity: 0;
      transform: translateY(0);
    }
    30% {
      opacity: 1;
    }
    50% {
      transform: translateY(57px); /* 60px */
    }
    80% {
      opacity: 0;
      transform: translateY(57px); /* 60px */
    }
    100% {
      opacity: 0;
      transform: translateY(0);
    }
  }

  @media screen and (max-width: 767px) {
    @keyframes scroll_down {
      0% {
        opacity: 0;
        transform: translateY(0);
      }
      30% {
        opacity: 1;
      }
      50% {
        transform: translateY(20px); /* 40px */
      }
      80% {
        opacity: 0;
        transform: translateY(20px); /* 40px */
      }
      100% {
        opacity: 0;
        transform: translateY(0);
      }
    }
    .sp-no-fadein {
      opacity : 1;
      transform : translate(0, 0);
    }
  }


/* ##############################################################################

    COMMON

############################################################################## */

  html {
    height: 100%;
    overflow-y: scroll;
  }
  body {
    height: 100%;
    background-color: #f9f9ff;
    -webkit-font-smoothing: antialiased;
	font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
  }
  .main {
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
  }
  
  .s-fnt-18 {
		font-size:20px;
		}

  @media screen and (max-width: 767px) {
    body::before {
      content: "";
      display: block;
      width: 100%;
      height: 100%;
      background: rgb(0 0 0 / 95%);
      position: fixed;
      z-index: 100;
      opacity: 0;
      pointer-events: none;
      -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
      -moz-transition: all 1s cubic-bezier(.5,0,0,1);
      transition: all 1s cubic-bezier(.5,0,0,1);
    }
    body.gnav-active::before {
      opacity: 1;
    }
    body.gnav-active .main {
      pointer-events: none;
    }
	
	.s-fnt-18 {
		font-size:18px;
		}
	
  }
  
  p {
	  font-size: 12px;
	  letter-spacing:-0.5px;
	  }
  

/* layout
**************************************** */

  /* --- inner --- */
  .inner {
    width: 92%;
    max-width: 1100px;
    margin: 0 auto;
  }
  .inner-sm { max-width: 880px; }
  .inner-lg { max-width: 1680px; }

  /* --- section_pdg --- */
  .section_pdg {
    padding-top: 6px;
    padding-bottom: 96px;
  }

  /* --- float --- */
  .flt-rgt { float: right; }
  .flt-lft { float: left; }

  /* --- position --- */
  .pos_rel {
    position: relative;
    z-index: 0;
  }

  /* --- margin --- */
  .mgn-btm8 { margin-bottom: 8px; }
  .mgn-btm16 { margin-bottom: 16px; }
  .mgn-btm24 { margin-bottom: 24px; }
  .mgn-btm32 { margin-bottom: 32px; }
  .mgn-btm40 { margin-bottom: 40px; }
  .mgn-btm48 { margin-bottom: 48px; }
  .mgn-btm56 { margin-bottom: 56px; }
  .mgn-btm64 { margin-bottom: 64px; }
  .mgn-btm72 { margin-bottom: 72px; }
  .mgn-btm80 { margin-bottom: 80px; }
  .mgn-btm88 { margin-bottom: 88px; }
  .mgn-btm96 { margin-bottom: 96px; }
  .mgn-btm104 { margin-bottom: 104px; }
  .mgn-btm112 { margin-bottom: 112px; }
  .mgn-btm120 { margin-bottom: 120px; }
  .mgn-btm200 { margin-bottom: 200px; }
  .mgn-top48 { margin-top: 48px; }
  .mgn-top60 { margin-top: 60px; }
  .mgn-top200 { margin-top: 200px; }
  .mgn-top400 { margin-top: 400px; }
  .opacity50 {
    opacity: .5 !important;
  }
  
  .fs-14{
	  font-size:14px;
	  }
  
  /* --- video --- */
  video {
    max-width: 100%;
    width: 100%;
    height: auto;
  }

  /* --- ruby --- */
  ruby rt {
    padding: 0 6%;
    letter-spacing: 0;
    transform: translateY(-.5em);
    font-size: 33%;
  }

  sup {
    font-size: 50%;
    letter-spacing: 0;
    position: relative;
    transform: translateY(-.5em);
    display: inline-block;
    margin-right: 2px;
  }

  
  /* --- ブロック要素 --- */
  .flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  /* --- インライン要素 --- */
  .flex-inline {
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }

  /* --- 逆向き --- */
  .flex-reverse {
    -webkit-flex-direction: row-reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
  
  /* --- 縦並び --- */
  .flex-column {
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
  }

  /* --- 水平方向揃え --- */
  .flex-j-start {
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
  .flex-j-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
  }
  .flex-j-ctr {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .flex-j-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
  .flex-j-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
  }

  /* --- 垂直方向揃え --- */
  .flex-a-start {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .flex-a-end {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
  }
  .flex-a-ctr {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .flex-a-baseline {
    -webkit-align-items: baseline;
    -ms-flex-align: baseline;
    align-items: baseline;
  }
  .flex-a-stretch {
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
  }

  /* --- 子要素の折り返し設定 --- */
  .flex-c-nowrap {
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .flex-c-wrap {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  /* --- 子要素の複数行設定 --- */
  .flex-c-reverse {
    -webkit-flex-wrap: wrap-reverse;
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
  .flex-c-start {
    -webkit-align-content: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-start {
    -webkit-align-items: flex-start;
    -ms-flex-line-pack: start;
    align-content: flex-start;
  }
  .flex-c-end {
    -webkit-align-content: flex-end;
    -ms-flex-line-pack: end;
    align-content: flex-end;
  }
  .flex-c-ctr {
    -webkit-align-content: center;
    -ms-flex-line-pack: center;
    align-content: center;
  }
  .flex-c-baseline {
    -webkit-align-content: baseline;
    -ms-flex-line-pack: baseline;
    align-content: baseline;
  }
  .flex-c-stretch {
    -webkit-align-content: stretch;
    -ms-flex-line-pack: stretch;
    align-content: stretch;
  }
  
  /* --- ざっくりflexレイアウト --- */
  .flex-col2,
  .flex-col3,
  .flex-col4 {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .flex-col2 > * {
    width: 46.5%;
    margin-right: 7%;
    margin-bottom: 7%;
  }
  .flex-col2 > *:nth-child(even) { margin-right: 0; }
  .flex-col3 > * {
    width: 31.33%;
    margin-right: 1%;
    margin-bottom: 1%;
  }
  .flex-col3 > *:nth-child(3n+3) { margin-right: 0; }
  .flex-col4>* {
    width: 23.5%;
    margin-right: 2%;
    margin-bottom: 2%;
  }
  .flex-col4 > *:nth-child(4n+4) { margin-right: 0; }

  .pc-none,
  .pc-none-inline,
  .pc-none-table,
  .pc-none-flex { display: none; }
  .sp-none { display: block; }
  .sp-none-inline { display: inline; }
  .sp-none-table { display: table; }
  .sp-none-flex {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }

  @media screen and  (max-width: 767px) {
    .inner { width: 84%; }
    .section_pdg {
    padding-top: 48px;
    padding-bottom: 48px;
    }
    .mgn-btm16 { margin-bottom: 8px; }
    .mgn-btm24 { margin-bottom: 16px; }
    .mgn-btm32 { margin-bottom: 16px; }
    .mgn-btm40 { margin-bottom: 24px; }
    .mgn-btm48 { margin-bottom: 24px; }
    .mgn-btm56 { margin-bottom: 32px; }
    .mgn-btm64 { margin-bottom: 32px; }
    .mgn-btm72 { margin-bottom: 40px; }
    .mgn-btm80 { margin-bottom: 40px; }
    .mgn-btm88 { margin-bottom: 48px; }
    .mgn-btm96 { margin-bottom: 48px; }
    .mgn-btm104 { margin-bottom: 56px; }
    .mgn-btm112 { margin-bottom: 56px; }
    .mgn-btm120 { margin-bottom: 64px; }

    /* --- 縦並び - sp --- */
    .flex-sp-block {
      -webkit-flex-direction: column;
      -ms-flex-direction: column;
      flex-direction: column;
    }
    
    /* --- ざっくりflexレイアウト - sp --- */
    .flex-sp-col2 > *,
    .flex-sp-col2.flex-col3 > *:nth-child(3n+3) {
      width: 48.5%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col2 > *:nth-child(even) { margin-right: 0; }
    .flex-sp-col3 > *,
    .flex-sp-col3.flex-col4 > *:nth-child(4n+4) {
      width: 31.33%;
      margin-right: 3%;
      margin-bottom: 3%;
    }
    .flex-sp-col3 > *:nth-child(3n+3) { margin-right: 0; }
    .flex-sp-block.flex-col2 > *,
    .flex-sp-block.flex-col3 > * {
      width: 100%;
      margin-right: 0;
      margin-bottom: 6%;
    }
    .sp-none,
    .sp-none-inline,
    .sp-none-table,
    .sp-none-flex { display: none; }
    .pc-none { display: block; }
    .pc-none-inline { display: inline; }
    .pc-none-table { display: table; }
    .pc-none-flex {
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
    }
    ruby rt {
      padding: 0;
    }
  }


/* bg
**************************************** */
  .bg-kirakira {
    position: relative;
  }
  .bg-kirakira::before {
    content: "";
    position: absolute;
    width: 100%;
    padding-top: 100%;
    left: 0;
    top: 8%;
    background: url(../images/body-bg.png) center top;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    opacity: .5;
  }
  .home_waterflow .bg-kirakira::before {
    top: -26%;
  }
  .home_others .bg-kirakira::before {
    top: -6%;
  }


/* txt
**************************************** */
  .deco-jp {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: .2em;
  }
  .deco-en-book {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
    -webkit-font-smoothing: auto;
  }
  .deco-en-medium {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 500;
    font-style: normal;
    -webkit-font-smoothing: auto;
  }
  .deco-en-serif {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 400;
    font-style: normal;
	color: rgba(128,128,128,1.00);
  }
  .deco-din {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  .txt-pink {
    color: #dcb2c7 !important;
  }
  .txt-blue {
    color: #b2f8f4 !important;
  }
  .txt-orange {
    color: #f6ab53 !important;
  }
  .bold {
    font-weight: 700;
  }

  /* font-size */
  .txt18 {
    font-size: 18px ;
  }
  .txt18-2 {
    font-size: 18px ;
	letter-spacing:-1px;
  }
  .txt24-2 {
    font-size: 24px ;
	letter-spacing:-1px;
  }
  .txt12 {
    font-size: 12px;
  }
  .txt14 {
    font-size: 14px;
  }
  .txt16 {
    font-size: 16px;
  }
  .txt-lg { font-size: 107%; }
  .txt-sm { 
    font-size: 12px;
    line-height: 1.85;
    letter-spacing: .08em;
	color:#000;
  }
  .txt-xs {
    font-size: 80%;
    line-height: 1.6;
    letter-spacing: .05em;
  }
  .txt-xxs {
    font-size: 73%;
    line-height: 1.5;
    letter-spacing: .01em;
  }
  .txt-ctr { text-align: center; }
  .txt-rgt { text-align: right; }
  .txt-justify {
    -ms-text-justify: inter-ideograph;
    text-justify: inter-ideograph;
    text-align: justify;
  }
  .txt-attention {
    font-size: 88%;
    color: #000;
  }
  .txt-attention-kome {
    position: relative;
    padding-left: 1.4em;
  }
  .txt-attention-kome::before {
    content: '※';
    position: absolute;
    left: 0;
    top: 0;
  }
  .txtarea p:not(:last-child) { margin-bottom: 1em; }

  /* line-height */
  .line-wide {
    line-height: 2.2;
    letter-spacing: .18em;
    font-feature-settings: normal;
  }
  @media screen and (max-width: 767px) {
    .txtarea p:not(:last-child) { margin-bottom: 1.5em; }

    /* line-height */
    .line-wide {
      letter-spacing: .1em;
    }
    .txt18 {
      font-size: 107%;
    }
    .txt-ctr-sp { text-align: center; }
    .txt-lft-sp { text-align: left; }
  }

/* ttl
**************************************** */

  /* --- section_ttl --- */
  .section_ttl {
    font-size: 1075%;
    font-weight: 200;
    line-height: 1;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    letter-spacing: .06em;
    color: #000;
  }
  .section_ttl .flat {
    transform: scale(1, .9);
    display: block;
	letter-spacing:-1px;
  }
  .section_ttl-sm {
    font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
  }
  .section_ttl-sl {
	letter-spacing: -4px;
	font-weight:600;
  }
  .section_catch {
    text-align: center;
    font-size: 120%;
    font-weight: 700;
  }

  .section_ttl-jp {
    position: relative;
    white-space: nowrap;
    display: block;
    color: #000;
  }
  .section_ttl-jp .back {
    position: absolute;
    z-index: -1;
    font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
    line-height: 1.8;
    color: #000;
    line-height: 1;
    max-width: 100%;
    white-space: nowrap;
    display: block;
    overflow: hidden;
    margin-top: -1.2em;
    left: 0;
    right: 0;
    text-align: center;
  }
  .section_ttl-jp {
    letter-spacing: .26em;
  }
  
  /* --- heading --- */
  .heading-0 {
    font-size: 174%;
    letter-spacing: .1em;
    font-weight: normal;
    color: #000;
	margin-top:50px;
  }
  .heading-0 .small {
    font-size: 72%;
    position: relative;
    top: -4px;
  }
  .heading-1 {
    font-size: 317.5%; /* 48 */
    letter-spacing: .1em;
    font-weight: normal;
    color: #000;
  }
  .heading-2 { 
    font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
    line-height: 1.8;
    color: #000;
  }
   .heading-2-2 { 
    font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
    color: #000;
  }
  .heading-3 {
    font-size: 210%; /* 32 */
    letter-spacing: .1em;
    line-height: 1.8;
    color: #000f;
  }
  .heading-4 {
    font-size: 160%; /* 24 */
    letter-spacing: .1em;
    line-height: 1.75;
    color: #000;
  }


  @media screen and (max-width: 767px) {
	  .heading-2-2 { 
    font-size: 28px;
	letter-spacing: -4px;
	font-weight:600;
    color: #000;
  }
	  
    .section_ttl {
      font-size: 600%;
    }
    .section_ttl-jp .back {
      font-size: 390%;
    }
    .section_ttl-sm {
      font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
    line-height: 1.8;
    color: #000;
    }
    .heading-0 {
      font-size: 120% !important;
    }
	.top-spece{
		margin-top:100px;
		}
    .heading-1 {
      font-size: 200%;
      letter-spacing: .3em;
      line-height: 1.6;
    }
    .heading-2 {
      font-size: 48px;
	letter-spacing: -4px;
	font-weight:600;
    line-height: 1.8;
    color: #000;
    }
    .heading-3 {
      font-size: 150%;
      line-height: 1.6;
      letter-spacing: .2em;
    }
    .heading-4 {
      font-size: 133.5%;
      letter-spacing: .2em;
      line-height: 1.6;
    }
  }



/* table & list
**************************************** */
  table { width: 100%; }
  
  /* --- table_default --- */
  .table_default th, 
  .table_default td {
    padding: 16px 8px;
  }
  .table_default th {
    border-bottom: 2px solid #666;
  }
  .table_default td {
    padding: 16px 16px;
    border-bottom: 1px solid #666;
    border-left: 4px solid #fff;
  }

  /* --- table_line --- */
  .table_line th,
  .table_line td {
    padding-top: 6px;
    padding-bottom: 6px;
    padding-left: 24px;
    padding-right: 24px;
  }
  .table_line th {
    background-color: #666;
    border: 1px solid #666;
    color: #fff;
    font-size: 107%;
  }
  .table_line td {
    border: 1px solid #D2D2D2;
    font-size: 93%;
  }

  /* --- list ---- */
  .list { list-style-type: none; }
  .list li:not(:last-child) { margin-bottom: 8px; }
  .list li {
    position: relative;
    padding-left: 1.4em;
    line-height: 1.6;
  }
  .list-disc li::before,
  .list-square li::before,
  .list-circle li::before {
    content: '';
    position: absolute;
    left: 0;
    top: .6em;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: #dcb2c7;
  }
  /* 数字付きリスト */
  .list-num {
    padding-left: 1.4em;
    list-style-type: decimal;
  }
  .list-num li { padding-left: 0; }
  .list-num li::before { display: none; }
  /* 白丸付きリスト */
  .list-circle li::before {
    border: 1px solid #666;
    background-color: transparent;
  }
  /* 四角付きリスト */
  .list-square li::before {
    border-radius: 0;
    background-color: #666;
  }
  /* 入れ子のスタイル */
  .list li ul { margin-top: 16px; }
  .list li ul li::before {
    width: 6px;
    height: 6px;
    top: .8em;
  }

  /* --- dlリスト --- */
  .list-dl {
    position: relative;
    border-top: 1px solid #BFBFBF;
  }
  .list-dl dt {
    position: absolute;
    padding-top: 16px;
    color: #666;
    font-weight: 700;
  }
  .list-dl dd {
    padding-left: 140px;
    padding-top: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #BFBFBF;
  }

/* btn
**************************************** */
  .btn {
    text-align: center;
    display: block;
    width: 400px;
    height: 64px;
    line-height: 64px;
    margin: 0 0 16px;
    color: #fff;
    border: 1px solid #666;
	z-index:99;
  }
  .btn img {
    top: -3px;
    position: relative;
    margin-right: 16px;
  }
  .btn:hover {
    color: #fff;
    opacity: .5;
  }

  @media screen and (max-width: 767px) {
    .btn {
      width: 100%;
      margin-bottom: 8px;
    }
  }

.form-control {
    display: block;
    width: 100%;
    height: calc(2.25rem + 2px);
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    color: #495057;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: .25rem;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out
}

@media screen and (prefers-reduced-motion:reduce) {
    .form-control {
        transition: none
    }
}

.form-control::-ms-expand {
    background-color: transparent;
    border: 0
}

.form-control:focus {
    color: #495057;
    background-color: #fff;
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 .2rem rgba(0, 123, 255, .25)
}

.form-control::-webkit-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-moz-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::-ms-input-placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control::placeholder {
    color: #6c757d;
    opacity: 1
}

.form-control:disabled,
.form-control[readonly] {
    background-color: #e9ecef;
    opacity: 1
}

select.form-control:focus::-ms-value {
    color: #495057;
    background-color: #fff
}

.form-control-file,
.form-control-range {
    display: block;
    width: 100%
}

.col-form-label {
    padding-top: calc(.375rem + 1px);
    padding-bottom: calc(.375rem + 1px);
    margin-bottom: 0;
    font-size: inherit;
    line-height: 1.5
}

.col-form-label-lg {
    padding-top: calc(.5rem + 1px);
    padding-bottom: calc(.5rem + 1px);
    font-size: 1.25rem;
    line-height: 1.5
}

.col-form-label-sm {
    padding-top: calc(.25rem + 1px);
    padding-bottom: calc(.25rem + 1px);
    font-size: .875rem;
    line-height: 1.5
}

.form-control-plaintext {
    display: block;
    width: 100%;
    padding-top: .375rem;
    padding-bottom: .375rem;
    margin-bottom: 0;
    line-height: 1.5;
    color: #212529;
    background-color: transparent;
    border: solid transparent;
    border-width: 1px 0
}

.form-control-plaintext.form-control-lg,
.form-control-plaintext.form-control-sm {
    padding-right: 0;
    padding-left: 0
}

.form-control-sm {
    height: calc(1.8125rem + 2px);
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    border-radius: .2rem
}

.form-control-lg {
    height: calc(2.875rem + 2px);
    padding: .5rem 1rem;
    font-size: 1.25rem;
    line-height: 1.5;
    border-radius: .3rem
}

select.form-control[multiple],
select.form-control[size] {
    height: auto
}

textarea.form-control {
    height: auto
}

.form-group {
    margin-bottom: 1rem
}

.form-text {
    display: block;
    margin-top: .25rem
}

.form-row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px
}

.form-row>.col,
.form-row>[class*=col-] {
    padding-right: 5px;
    padding-left: 5px
}

.form-check {
    position: relative;
    display: block;
    padding-left: 1.25rem
}

.form-check-input {
    position: absolute;
    margin-top: .3rem;
    margin-left: -1.25rem
}

.form-check-input:disabled~.form-check-label {
    color: #6c757d
}

.form-check-label {
    margin-bottom: 0
}

.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: .75rem
}

.form-check-inline .form-check-input {
    position: static;
    margin-top: 0;
    margin-right: .3125rem;
    margin-left: 0
}

.valid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #28a745
}

.valid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(40, 167, 69, .9);
    border-radius: .25rem
}

.custom-select.is-valid,
.form-control.is-valid,
.was-validated .custom-select:valid,
.was-validated .form-control:valid {
    border-color: #28a745
}

.custom-select.is-valid:focus,
.form-control.is-valid:focus,
.was-validated .custom-select:valid:focus,
.was-validated .form-control:valid:focus {
    border-color: #28a745;
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-select.is-valid~.valid-feedback,
.custom-select.is-valid~.valid-tooltip,
.form-control.is-valid~.valid-feedback,
.form-control.is-valid~.valid-tooltip,
.was-validated .custom-select:valid~.valid-feedback,
.was-validated .custom-select:valid~.valid-tooltip,
.was-validated .form-control:valid~.valid-feedback,
.was-validated .form-control:valid~.valid-tooltip {
    display: block
}

.form-control-file.is-valid~.valid-feedback,
.form-control-file.is-valid~.valid-tooltip,
.was-validated .form-control-file:valid~.valid-feedback,
.was-validated .form-control-file:valid~.valid-tooltip {
    display: block
}

.form-check-input.is-valid~.form-check-label,
.was-validated .form-check-input:valid~.form-check-label {
    color: #28a745
}

.form-check-input.is-valid~.valid-feedback,
.form-check-input.is-valid~.valid-tooltip,
.was-validated .form-check-input:valid~.valid-feedback,
.was-validated .form-check-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid~.custom-control-label,
.was-validated .custom-control-input:valid~.custom-control-label {
    color: #28a745
}

.custom-control-input.is-valid~.custom-control-label::before,
.was-validated .custom-control-input:valid~.custom-control-label::before {
    background-color: #71dd8a
}

.custom-control-input.is-valid~.valid-feedback,
.custom-control-input.is-valid~.valid-tooltip,
.was-validated .custom-control-input:valid~.valid-feedback,
.was-validated .custom-control-input:valid~.valid-tooltip {
    display: block
}

.custom-control-input.is-valid:checked~.custom-control-label::before,
.was-validated .custom-control-input:valid:checked~.custom-control-label::before {
    background-color: #34ce57
}

.custom-control-input.is-valid:focus~.custom-control-label::before,
.was-validated .custom-control-input:valid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.custom-file-input.is-valid~.custom-file-label,
.was-validated .custom-file-input:valid~.custom-file-label {
    border-color: #28a745
}

.custom-file-input.is-valid~.custom-file-label::after,
.was-validated .custom-file-input:valid~.custom-file-label::after {
    border-color: inherit
}

.custom-file-input.is-valid~.valid-feedback,
.custom-file-input.is-valid~.valid-tooltip,
.was-validated .custom-file-input:valid~.valid-feedback,
.was-validated .custom-file-input:valid~.valid-tooltip {
    display: block
}

.custom-file-input.is-valid:focus~.custom-file-label,
.was-validated .custom-file-input:valid:focus~.custom-file-label {
    box-shadow: 0 0 0 .2rem rgba(40, 167, 69, .25)
}

.invalid-feedback {
    display: none;
    width: 100%;
    margin-top: .25rem;
    font-size: 80%;
    color: #dc3545
}

.invalid-tooltip {
    position: absolute;
    top: 100%;
    z-index: 5;
    display: none;
    max-width: 100%;
    padding: .25rem .5rem;
    margin-top: .1rem;
    font-size: .875rem;
    line-height: 1.5;
    color: #fff;
    background-color: rgba(220, 53, 69, .9);
    border-radius: .25rem
}

.custom-select.is-invalid,
.form-control.is-invalid,
.was-validated .custom-select:invalid,
.was-validated .form-control:invalid {
    border-color: #dc3545
}

.custom-select.is-invalid:focus,
.form-control.is-invalid:focus,
.was-validated .custom-select:invalid:focus,
.was-validated .form-control:invalid:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-select.is-invalid~.invalid-feedback,
.custom-select.is-invalid~.invalid-tooltip,
.form-control.is-invalid~.invalid-feedback,
.form-control.is-invalid~.invalid-tooltip,
.was-validated .custom-select:invalid~.invalid-feedback,
.was-validated .custom-select:invalid~.invalid-tooltip,
.was-validated .form-control:invalid~.invalid-feedback,
.was-validated .form-control:invalid~.invalid-tooltip {
    display: block
}

.form-control-file.is-invalid~.invalid-feedback,
.form-control-file.is-invalid~.invalid-tooltip,
.was-validated .form-control-file:invalid~.invalid-feedback,
.was-validated .form-control-file:invalid~.invalid-tooltip {
    display: block
}

.form-check-input.is-invalid~.form-check-label,
.was-validated .form-check-input:invalid~.form-check-label {
    color: #dc3545
}

.form-check-input.is-invalid~.invalid-feedback,
.form-check-input.is-invalid~.invalid-tooltip,
.was-validated .form-check-input:invalid~.invalid-feedback,
.was-validated .form-check-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid~.custom-control-label,
.was-validated .custom-control-input:invalid~.custom-control-label {
    color: #dc3545
}

.custom-control-input.is-invalid~.custom-control-label::before,
.was-validated .custom-control-input:invalid~.custom-control-label::before {
    background-color: #efa2a9
}

.custom-control-input.is-invalid~.invalid-feedback,
.custom-control-input.is-invalid~.invalid-tooltip,
.was-validated .custom-control-input:invalid~.invalid-feedback,
.was-validated .custom-control-input:invalid~.invalid-tooltip {
    display: block
}

.custom-control-input.is-invalid:checked~.custom-control-label::before,
.was-validated .custom-control-input:invalid:checked~.custom-control-label::before {
    background-color: #e4606d
}

.custom-control-input.is-invalid:focus~.custom-control-label::before,
.was-validated .custom-control-input:invalid:focus~.custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.custom-file-input.is-invalid~.custom-file-label,
.was-validated .custom-file-input:invalid~.custom-file-label {
    border-color: #dc3545
}

.custom-file-input.is-invalid~.custom-file-label::after,
.was-validated .custom-file-input:invalid~.custom-file-label::after {
    border-color: inherit
}

.custom-file-input.is-invalid~.invalid-feedback,
.custom-file-input.is-invalid~.invalid-tooltip,
.was-validated .custom-file-input:invalid~.invalid-feedback,
.was-validated .custom-file-input:invalid~.invalid-tooltip {
    display: block
}

.custom-file-input.is-invalid:focus~.custom-file-label,
.was-validated .custom-file-input:invalid:focus~.custom-file-label {
    box-shadow: 0 0 0 .2rem rgba(220, 53, 69, .25)
}

.form-inline {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: row wrap;
    flex-flow: row wrap;
    -ms-flex-align: center;
    align-items: center
}

.form-inline .form-check {
    width: 100%
}

@media (min-width:576px) {
    .form-inline label {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 0
    }
    .form-inline .form-group {
        display: -ms-flexbox;
        display: flex;
        -ms-flex: 0 0 auto;
        flex: 0 0 auto;
        -ms-flex-flow: row wrap;
        flex-flow: row wrap;
        -ms-flex-align: center;
        align-items: center;
        margin-bottom: 0
    }
    .form-inline .form-control {
        display: inline-block;
        width: auto;
        vertical-align: middle
    }
    .form-inline .form-control-plaintext {
        display: inline-block
    }
    .form-inline .custom-select,
    .form-inline .input-group {
        width: auto
    }
    .form-inline .form-check {
        display: -ms-flexbox;
        display: flex;
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center;
        width: auto;
        padding-left: 0
    }
    .form-inline .form-check-input {
        position: relative;
        margin-top: 0;
        margin-right: .25rem;
        margin-left: 0
    }
    .form-inline .custom-control {
        -ms-flex-align: center;
        align-items: center;
        -ms-flex-pack: center;
        justify-content: center
    }
    .form-inline .custom-control-label {
        margin-bottom: 0
    }
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out
}
.contact_info .info_item {
  position: relative;
  padding-left: 45px; }
  .contact_info .info_item i {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 20px;
    line-height: 24px;
    color: #000;
    font-weight: 600; }
  .contact_info .info_item h6 {
    font-size: 16px;
    line-height: 24px;
    color: "Roboto", sans-serif;
    font-weight: bold;
    margin-bottom: 0px;
    color: #222222; }
    .contact_info .info_item h6 a {
      color: #222222; }
  .contact_info .info_item p {
    font-size: 14px;
    line-height: 24px;
    padding: 2px 0px; }

.contact_form .form-group {
  margin-bottom: 10px; }
  .contact_form .form-group .form-control {
    font-size: 13px;
    line-height: 26px;
    color: #999;
    border: 1px solid #eeeeee;
    font-family: Arial, Helvetica, sans-serif;
    border-radius: 0px;
    padding-left: 20px; }
    .contact_form .form-group .form-control:focus {
      box-shadow: none;
      outline: none; }
    .contact_form .form-group .form-control.placeholder {
      color: #999; }
    .contact_form .form-group .form-control:-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-moz-placeholder {
      color: #999; }
    .contact_form .form-group .form-control::-webkit-input-placeholder {
      color: #999; }
  .contact_form .form-group textarea {
    resize: none; }
    .contact_form .form-group textarea.form-control {
      height: 140px; }
.contact_form .submit_btn {
  margin-top: 20px;
  cursor: pointer; }

/* Contact Success and error Area css
============================================================================================ */
.modal-message .modal-dialog {
  position: absolute;
  top: 36%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%) !important;
  margin: 0px;
  max-width: 500px;
  width: 100%; }
  .modal-message .modal-dialog .modal-content .modal-header {
    text-align: center;
    display: block;
    border-bottom: none;
    padding-top: 50px;
    padding-bottom: 50px; }
    .modal-message .modal-dialog .modal-content .modal-header .close {
      position: absolute;
      right: -15px;
      top: -15px;
      padding: 0px;
      color: #fff;
      opacity: 1;
      cursor: pointer; }
    .modal-message .modal-dialog .modal-content .modal-header h2 {
      display: block;
      text-align: center;
      color: #f42f2c;
      padding-bottom: 10px;
      font-family: Arial, Helvetica, sans-serif; }
    .modal-message .modal-dialog .modal-content .modal-header p {
      display: block; }

/* End Contact Success and error Area css
============================================================================================ */
/*---------------------------------------------------- */
/*----------------------------------------------------*/
/*============== Elements Area css ================*/
.mb-20 {
  margin-bottom: 20px; }

.mb-30 {
  margin-bottom: 30px; }

.sample-text-area {
  padding: 100px 0px; }
  .sample-text-area .title_color {
    margin-bottom: 30px; }
  .sample-text-area p {
    line-height: 26px; }
    .sample-text-area p b {
      font-weight: bold;
      color: #f42f2c; }
    .sample-text-area p i {
      color: #f42f2c;
      font-style: italic; }
    .sample-text-area p sup {
      color: #f42f2c;
      font-style: italic; }
    .sample-text-area p sub {
      color: #f42f2c;
      font-style: italic; }
    .sample-text-area p del {
      color: #f42f2c; }
    .sample-text-area p u {
      color: #f42f2c; }

.submit_btn {
  width: auto;
  display: inline-block;
  background: #000;
  padding: 0px 30px;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  height: 50px;
  line-height: 50px;
  border-radius: 5px;
  outline: none !important;
  box-shadow: none !important;
  border: 1px solid #6B6B6B;
  text-align: center;
  cursor: pointer;
  transition: all 300ms linear 0s; }
  .submit_btn:hover {
    color: #6B6B6B;
    background: transparent; }

.white_btn {
  display: inline-block;
  background: #f9f9ff;
  padding: 0px 50px;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-weight: 500;
  line-height: 50px;
  border-radius: 0px;
  outline: none !important;
  box-shadow: none !important;
  text-align: center;
  cursor: pointer;
  transition: all 300ms linear 0s; }
  .white_btn:hover {
    background: #f42f2c;
    color: #fff; }
/* ##############################################################################

    HEADER

############################################################################## */

  .header {
    position: fixed;
    top: 56px;
    left: 0;
    right: 0;
    width: 100%;
    margin: auto;
    z-index: 99999;
  }
  .header--inner {
    position: relative;
    padding: 0 16px;
  }
  .header--menu {
    cursor: pointer;
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
  }
  .header a:hover,
  .header--menu:hover {
    opacity: .5;
  }
  .header--logo {
    width: 200px;
    display: block;
  }
  .cls-1 {
    fill: #fff;
    fill-rule: evenodd;
  }
  .mix_blend {
    mix-blend-mode: exclusion;
  }
  .gnav a {
    font-size: 13px;
    margin-left: 20px;
	font: "Roboto", sans-serif;
	font-weight:600;
	letter-spacing:-0.1px;
	color:#000;
  }
  .gnav a:hover {
	  color:rgba(208,208,208,1.00);
  }
  .gnav .cartbtn {
    background: #fff;
    padding: 8px 24px;
    border-radius: 25px;
    color: #000;
    margin-left: 24px;
  }
  .gnav .cartbtn .icon-bag {
    vertical-align: middle;
    top: -2px;
    position: relative;
    margin-right: 4px;
  }

  @media all and (-ms-high-contrast:none) {
    .cls-1 {
      fill: #000 !important;
    }
    .gnav-active #gnav_menu.cls-1 {
      fill: #fff !important;
    }
  }

  @supports (-ms-ime-align: auto)  {
    .cls-1 {
      fill: #000 !important;
    }
    .gnav-active #gnav_menu.cls-1 {
      fill: #fff !important;
    }
  }

  @media screen and (max-width: 1200px) and (min-width: 768px) {
    .header {
      top: 40px;
	  z-index:9999;
    }
  }
  
  @media screen and  (max-width: 767px) {
	  .gnav2 a {
    font-size: 13px;
    margin-left: 20px;
	font: "Roboto", sans-serif;
	font-weight:600;
	letter-spacing:-0.1px;
	color:#000;
  }
  .gnav2 a:hover {
	  color:rgba(208,208,208,1.00);
  }
	  
    .header {
      top: 20px;
    }
	.header a:hover,
  .header--menu:hover {
	  color: rgba(255,255,255,1.00);
    opacity: .5;
  }
  .header2 a:hover,
  .header2--menu:hover {
	  color: rgba(255,255,255,1.00);
    opacity: .5;
  }
    .header--inner {
      width: 88%;
      padding: 0;
      -webkit-align-items: center;
      -ms-flex-align: center;
      align-items: center;
	  color:rgba(255,255,255,1.00);
    }
    .header--logo {
      width: 140px;
    }
    .header--menu svg {
      height: 13px;
      width: 58px;
    }
    .header--buy svg {
      height: 13px;
      width: 60px;
    }
    .header--logo svg {
      height: 18px;
    }
    .gnav {
      opacity: 0;
      pointer-events: none;
      position: fixed;
      top: 120px;
      -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
      -moz-transition: all 1s cubic-bezier(.5,0,0,1);
      transition: all 1s cubic-bezier(.5,0,0,1);
    }
    .gnav-active .gnav {
      opacity: 1;
      pointer-events: auto;
    }
    .gnav li {
      display: block;
      width: 100%;
    }
    .gnav a {
      margin-bottom: 16px;
      margin-left: 0;
      font-size: 150%;
      text-align: left;
      display: block;
	  color:rgba(255,255,255,1.00);
    }
	.gnavc {
      margin-bottom: 16px;
      margin-left: 0;
      font-size: 150%;
      text-align: left;
      display: block;
	  color: rgba(69,69,69,1.00);
    }
    .gnav .cartbtn {
      background: transparent;
      color: #fff;
      padding: 0;
      margin: 0;
    }
    .gnav .cartbtn .icon-bag {
      display: none;
    }

    .sp-cartbtn {
      width: 100px;
      margin-right: 16px;
    }
    .sp-cartbtn img {
      margin-right: 4px;
    }
    
    .gnav_btn {
      width: 32px;
      height: 40px;
      z-index: 9999;
      right: 0;
      transition: all .4s ease-out;
    }
    .gnav_btn--lines {
      position: relative;
      width: 32px;
      height: 10px;
    }
	  
    .gnav_btn--lines span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background-color: #eee;
      transition: all .4s ease-out;
      box-sizing: border-box;
    }
	
    .gnav_btn--lines span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines span:nth-of-type(2) {
      bottom: 0;
    }
    .gnav-active .gnav_btn--lines span:nth-of-type(1) {
      transform: translateY(4px) rotate(-30deg);
    }
    .gnav-active .gnav_btn--lines span:nth-of-type(2) {
      transform: translateY(-4px) rotate(30deg);
    }
	
	.gnav_btn--lines2 {
      position: relative;
      width: 32px;
      height: 10px;
    }
	  
    .gnav_btn--lines2 span {
      position: absolute;
      left: 0;
      width: 100%;
      height: 1.5px;
      background-color: rgba(98,98,98,1.00);
      transition: all .4s ease-out;
      box-sizing: border-box;
    }
	
    .gnav_btn--lines2 span:nth-of-type(1) {
      top: 0;
    }
    .gnav_btn--lines2 span:nth-of-type(2) {
      bottom: 0;
    }
    .gnav-active .gnav_btn--lines2 span:nth-of-type(1) {
      transform: translateY(4px) rotate(-30deg);
    }
    .gnav-active .gnav_btn--lines2 span:nth-of-type(2) {
      transform: translateY(-4px) rotate(30deg);
    }
    

  }


/* ##############################################################################

    FOOTER

############################################################################## */

  .footer_buy .inner {
    padding-bottom: 104px;
    border-bottom: 1px solid #4d4d4f;
  }
  .footer_buy a {
    display: inline-block;
    color: #b3f8f4;
    padding: 0 40px;
  }
  .footer_buy-buy {
    font-size: 425%;
    line-height: 1;
    margin: 40px 0 24px;
    letter-spacing: .12em;
    padding-left: 10px;
  }
  .footer_buy-click {
    font-size: 87%;
    letter-spacing: .18em;
  }
  .footer_buy_sm {
    width: 100%;
    max-width: 350px;
    margin: auto;
  }
  .footer_buy_sm a {
    padding: 28px;
  }
  .footer_buy_sm .footer_buy-buy {
    font-size: 300%;
    margin: 16px 0 0;
    padding-left: 4px;
  }
  .footer {
    text-align: center;
    padding: 104px 0;
    line-height: 1;
  }
  .footer a,
  .footer_buy a {
    display: block;
  }
  .footer a:hover,
  .footer_buy a:hover {
    opacity: .5;
  }
  .footer--sns,
  .footer--copyright,
  .pbl {
    opacity: .5;    
  }
  .footer--sns li {
    margin: 0 12px;
  }
  .footer--copyright {
    font-size: 80%;
    letter-spacing: .15em;
    margin-bottom: 24px;
  }

  .table-line {
    width: 100%;
  }
  .table-line tr {
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
  }
  .table-line th {
    width: 26%;
    background: transparent!important;
    padding: 17px 32px;
    color: #a5cdcf;
    font-weight: 400;
  }
  .table-line td {
    width: 80%;
    background: transparent!important;
  }
  .agency table {
    max-width: 540px;
    font-size: 90%;
    margin: auto;
    margin-bottom: 80px;
  }
  .agency a:not([href ^= "tel:"]) {
    color: #AAA;
    text-decoration: underline;
  }

  @media screen and (max-width: 767px) {
    .footer_buy a {
      width: 100%;
    }
    .footer {
      padding: 48px 0;
    }
    .footer_buy-buy {
      font-size: 250%;
      margin-bottom: 8px;
      line-height: 1.25;
      padding-left: .12em;
    }
    .footer--copyright {
      font-size: 79%;
      letter-spacing: .15em;
    }
    .table-line th {
      width: 35%;
      padding: 12px;
      vertical-align: middle;
    }
    .table-line td {
      width: 65%;
      table-layout: fixed;
      word-break: break-all;
      word-wrap: break-all;
      padding: 12px 0;
    }
  }


/* ##############################################################################

    INDEX

############################################################################## */

/* hero
**************************************** */
  .hero {
    position: relative;
    overflow: hidden;
  }
  .hero .bg img {
    width: 100%;
  }
  .hero .inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10;
    max-width: 1400px;
  }
  .hero .txtarea {
    text-align: center;
  }
  .hero--ttl {
    font-weight: normal;
    font-size: 25px;
    line-height: 2.4;
    letter-spacing: .5em;
    padding-left: .75em;
  }
  .scroll-area {
    letter-spacing: .25em;
  }
  .scroll-mark {
    display: block;
    width: 1px;
    height: 64px;
    background-color: #fff;
    margin: 20px auto 0;
    opacity: .5;
  }
  .scroll-ball {
    display: block;
    width: 7px;
    height: 7px;
    border-radius: 4px;
    background-color: #fff;
    margin-left: -3px;
    animation: scroll_down 2.5s cubic-bezier(.5, -.1, .5, 1) infinite;
  }

  @media screen and (max-width: 767px) {
    .hero {
      width: 100%;
    }
    .hero-logo {
      width: 120px;
      margin: 0 auto 32px;
    }
    .hero--ttl {
      font-size: 14px;
      line-height: 2;
    }
    .scroll-mark {
      height: 24px;
      margin-top: 8px;
    }
    .scroll-ball {
      width: 5px;
      height: 5px;
      margin-left: -2px;
    }
  }


/* home_message
**************************************** */
  .home_message {
	margin-top: 0px;
  }
  .img01 {
    position: relative;
    padding-bottom: 40px;
  }

  @media screen and (max-width: 767px) {
    .home_message {
      margin-top: 0px;
    }
  }



/* home_cm
**************************************** */
  .home_cm {
    position: relative;
    padding-bottom: 40px;
  }
  .home_cm .awa {
    content: "";
    position: absolute;
    width: 1322px;
    max-width: 100%;
    height: 400px;
    left: 0;
    right: 0;
    bottom: 240px;
    margin: auto;
    background-size: contain;
    z-index: -1;
  }
  .home_cm .awa01 {
    top: -30%;
    background-image: url(../images/intro-awa01.png);
    background-position: center top;
  }
  .home_cm .section_ttl {
    font-size: 800%;
    margin-left: -36px;
    margin-top: -40px;
    margin-bottom: 40px;
  }
  .home_cm .cm {
    padding: 24px;
    background-color: rgba(13, 13, 13, .95);
    border: 1px solid #626262;
    line-height: 0;
  }
  .home_cm .cm video {
    border: 1px solid #114450;
  }

  @media screen and (max-width: 767px) {
    .home_cm .awa {
      width: 100%;
      height: 110px;
      bottom: 150px;
    }
    .home_cm .cm {
      padding: 8px;
    }
    .home_cm .section_ttl {
      font-size: 200%;
      margin-left: -9px;
      margin-top: 24px;
      margin-bottom: -8px;
    }
  }


/* home_intro
**************************************** */
  .home_intro {
    position: relative;
    z-index: 2;
    padding-bottom: 0;
  }
  .home_intro .txtarea {
    max-width: 448px;
    -ms-text-justify: inter-ideograph;
    text-justify: inter-ideograph;
    text-align: justify;
  }
  .home_intro p {
    position: relative;
    z-index: 10;
    pointer-events: none;
  }
  .home_intro .imgarea {
    width: 872px;
    margin-right: -100px;
    overflow: hidden;
    margin-left: -120px;
    margin-top: -160px;
  }

  @media screen and (max-width: 767px) {
    .home_intro .imgarea {
      width: 117%;
      margin-right: 0;
      margin-left: 0;
      margin-top: -48px;
      overflow: hidden;
    }
    .home_intro .imgarea img {
      max-width: 428px;
    }
    .home_intro .txtarea img {
      max-width: 220px;
    }
  }
  

/* home_ultrafinebubble
**************************************** */
  .home_ultrafinebubble {
    position: relative;
	margin-top:150px;
  }
  .home_ultrafinebubble::after {
    content: "";
    position: absolute;
    width: 100%;
    padding-top: 100px;
    left: 0;
    top: -100px;
    background: url(../images/ultrafinebubble-bg.png) center top;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
  }
  .home_ultrafinebubble .section_ttl-jp {
	  margin-top:100px;
    }
  .home_ultrafinebubble .video-area {
    line-height: 1;
    padding: 8px;
    border: 1px solid rgba(179, 248, 244, .5);
    background: rgba(36, 35, 47, .5);
  }

  @media screen and (max-width: 767px) {
	  .home_ultrafinebubble {
    position: relative;
	margin-top:60px;
  }
	  
    .home_ultrafinebubble .section_ttl-jp {
      margin-bottom: 32px;
	  margin-top:80px;
    }
    .home_ultrafinebubble::after {
      background-image: url(../images/ultrafinebubble-bg_sp.png);
      top: -80px;
      bottom: 0;
    }
  }


/* home_technology
**************************************** */
  .home_technology {
    padding-bottom: 0;
  }
  .home_technology::after {
    content: "";
    position: absolute;
    width: 100%;
    padding-top: 100%;
    left: 0;
    top: 0;
    background: url(../images/technology-bg.png) center top;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
  }
  .home_technology .section_ttl-jp .back {
    margin-top: -2.3em;
  }
  
  @media screen and (max-width: 780px) {
  .home_technology .section_ttl-jp .back {
    margin-top: -5em;
	width:70%;
	margin-left:auto;
	margin-right:auto;
	position:relative;
	margin-bottom:100px;
  }
  
  }
  
  .home_technology .inner {
    max-width: 1160px;
  }
  .technology-column {
    position: relative;
  }
  .technology-column.powerful {
    margin-top: 160px;
	margin-left:auto;
	margin-right:auto;
  }
  .technology-column .section_ttl {
    position: absolute;
    z-index: -1;
    top: -64px;
    right: -48px;
    font-size: 600%;
    text-transform: initial;
    -webkit-font-smoothing: antialiased;
  }
  .technology-column .imgarea {
    line-height: 1;
    padding: 12px;
  }
  .technology-column.powerful .imgarea {
    border-color: rgba(179, 248, 244, .5);
  }
  .technology-column .imgarea .video {
	  width:60%;
	  margin-left:auto;
	  margin-right:auto;
  }

  @media screen and (max-width: 1280px) and (min-width: 768px) {
    .technology-column .section_ttl {
      right: -16px;
    }
  }

  @media screen and (max-width: 767px) {
	  .technology-column .imgarea .video {
	  width:90%;
	  margin-left:auto;
	  margin-right:auto;
  }
	  
    .home_technology {
      padding-bottom: 40px;
	  margin-top:250px;
    }
    .home_technology::after {
      background-image: url(../images/technology-bg_sp.png);
      bottom: 0;
    }
    .home_technology .section_ttl-jp {
      margin-bottom: 32px;
	  margin-top:-130px;
    }
    .technology-column.powerful {
      margin-top: 2px;
      top: 0;
    }
    .technology-column .section_ttl {
      display: none;
    }
    .technology-column .imgarea {
      padding: 8px;
    }
  }


/* home_waterflow
**************************************** */
  .home_waterflow {
    padding-bottom: 0;
	width:100%;
  }

  .home_waterflow .section_ttl-jp .back {
    margin-top: -2.3em;
  }
  .home_waterflow .mode {
    font-size: 40%;
    letter-spacing: .02em;
    position: absolute;
    left: 50%;
    margin-left: 124px;
    bottom: 0;
  }
  .home_waterflow .waterflow-powerful .mode {
    margin-left: 192px;
  }
  .home_waterflow .fixside {
    position: sticky;
    top: -24%;
    margin-top: -280px;
    pointer-events: none;
  }
  .home_waterflow .fixside img {
    width: 100%;
    position: relative;
    z-index: -2;
    margin-top: -120px;
  }
  .home_waterflow .waterflow-powerful .fixside {
    margin-top: -220px;
  }
  .home_waterflow .txtarea {
    max-width: 428px;
    margin-right: calc( (100% - 1100px) / 2);
    margin-left: calc(-428px - ( (100% - 1100px) / 2));
  } 
  .home_waterflow .waterflow-powerful .txtarea {
    padding-top: 80px;
  }
  .waterflow-content {
    position: relative;
  }
  .waterflow-content:not(:last-child) {
    margin-bottom: 128px;
  }
  .waterflow-content .ttl-en {
    margin-bottom: 0 !important;
    font-size: 183%;
    letter-spacing: 0;
  }
  .waterflow-content .ttl-en-refreshing {
    margin-bottom: 24px !important;
    letter-spacing: -.05em;
    overflow: unset;
  }
  .waterflow-content .ttl-ja {
    margin-bottom: 0 !important;
    line-height: 1.6;
  }
  .waterflow-content .catch {
    font-size: 120%;
    display: inline-block;
    margin-bottom: 0 !important;
    padding: 0;
    color: #a2bce2;
    text-align: center;
    line-height: 1.5;
  }
  .waterflow-content .catch .big {
    font-size: 134%;
  }
  .waterflow-content .catch .big .number {
    font-size: 199.5%;
    line-height: 1;
    margin-right: 2px;
  }
  .waterflow-content .box {
    border: 1px solid rgba(162, 166, 223, .5);
    background: rgba(0, 0, 0, .5);
    padding: 22px;
  }
  .waterflow-content .box .txt {
    width: calc(100% - 176px);
  }
  .waterflow-content .box .txt .txt-sm {
    line-height: 1.75;
    margin-bottom: .5em;
    letter-spacing: .05em;
  }
  .colorbox:hover {
    opacity: .5;
  }

  @media screen and (min-width: 1600px) {
    .waterflow-content .ttl-en {
      font-size: 400%;
    }
    .home_waterflow .fixside img {
      margin-top: -200px;
    }
  }

  @media screen and (min-width: 1800px) {
    .home_waterflow .fixside img {
      margin-top: -260px;
    }
  }

  @media screen and (max-width: 1300px) and (min-width: 1160px) {
    .home_waterflow .fixside img {
      margin-top: -60px;
    }
  }

  @media screen and (max-width: 1160px) and (min-width: 768px) {
    .home_waterflow .fixside img {
      margin-top: -20px;
    }
    .home_waterflow .txtarea {
      margin-right: calc( (100% - 540px) / 2);
      margin-left: calc(-428px - ( (100% - 940px) / 2));
    }
    .home_waterflow .waterflow-powerful .txtarea {
      padding-top: 40px;
    }
  }

  @media screen and (max-width: 767px) {
    .home_waterflow {
      padding-bottom: 96px;
    }
    .waterflow-beauty {
      background: url(../images/beauty_bg_sp.png) center bottom no-repeat;
      background-size: contain;
    }
    .waterflow-powerful {
      background: url(../images/powerful_bg_sp.png) center bottom no-repeat;
      background-size: contain;
    }
    .home_waterflow .fixside {
      margin-top: -40px;
    }
    .home_waterflow .txtarea {
      width: 100%;
      margin: 0 auto;
      padding: 0 8%;
    }
    .home_waterflow .mode {
      margin-left: 66px;
      width: 80px;
    }
    .home_waterflow .waterflow-powerful .mode {
      margin-left: 104px;
    }
    .home_waterflow .waterflow-powerful .fixside {
      margin-top: 0;
    }
    .home_waterflow .fixside img {
      margin-top: -40px;
    }
    .waterflow-content:not(:last-child) {
      margin-bottom: 80px;
    }
    .waterflow-content .catch .big {
      font-size: 115%;
    }
    .waterflow-content .box {
      padding: 16px;
    }
    .waterflow-content .box .txt {
      width: calc(100% - 100px);
    }
    .waterflow-content .box .imgarea {
      width: 80px;
    }
    .waterflow-content .ttl-en {
      top: -32px;
      font-size: 250%;
    }
    .waterflow-content h5.txt18,
    .waterflow-content h5.txt-lg {
      display: inline-block;
      font-size: 93%;
      line-height: 1.85;
      letter-spacing: .05em;
    }
    .home_waterflow .waterflow-powerful .txtarea {
      padding-top: 0;
      margin-top: -24px;
    }
    .heat .img {
      max-width: 55%;
    }
    .refreshing .img {
      max-width: 94%;
    }
    .refreshing .catch .txt-xs {
      line-height: 1.5;
      display: inline-block;
    }
  }


/* home_function
**************************************** */
  .home_function {
    padding-top: 0;
    padding-bottom: 140px;
  }
  .home_function02 {
    padding-top: 24px;
    padding-bottom: 50px;
  }
  .home_function .shinkinou .heading-2 .txt-xs {
    position: relative;
    top: -2px;
    margin: 0 8px 0 6px;
    display: inline-block;
  }
  .sessui .heading-1 .number {
    font-size: 161%;
    line-height: 1;
    letter-spacing: .05em;
    font-weight: 500;
    padding-right: 5px;
  }
  .sessui .heading-1 sup {
    font-size: 35%;
    transform: translateY(-1.5em);
    margin-right: 0;
  }
  .sessui .box {
    padding: 24px 40px;
    margin: 0 16px;
    background: rgba(49, 50, 59, .8);
    width: 424px;
    max-width: 100%;
  }
  .box-dl dl {
    padding: 0 10px;
  }
  .box-dl dt {
    background: #000;
    padding: 8px 24px;
    margin-bottom: 8px;
    font-size: 93%;
    border-radius: 24px;
    line-height: 1;
  }
  .box-dl dd {
    font-size: 106.6%;
  }
  .box-dl .number {
    font-size: 200%;
    letter-spacing: 0;
    line-height: 1;
    margin-right: .1em;
    position: relative;
    top: 2px;
  }

  @media screen and (max-width: 767px) {
    .home_function {
      padding-bottom: 96px;
    }
    .home_function02 {
      padding-bottom: 80px;
    }
    .home_function .shinkinou .heading-2 .txt-xs {
      top: -1px;
      margin: 0 6px 0 0;
    }
    .home_function .heading-4 {
      font-family: Arial, Helvetica, sans-serif;
      font-size: 93%;
      line-height: 1.85;
      letter-spacing: .08em;
    }
    .sessui .box {
      padding: 16px 8px;
      margin: 0 0 8px;
      width: 100%;
    }
    .sessui .heading-1 sup {
      margin-left: -5px;
    }
    .box-dl dl {
      padding: 0 6px;
    }
    .box-dl dt {
      padding: 6px;
    }
  }


/* home_column
**************************************** */
  .home_column {
    position: relative;
    background: url(../images/column-bg.png) center top -50px no-repeat;
    background-size: cover;
    padding-bottom: 50px;
	padding-top:50px;
    margin-bottom: 0px;
	background-color:rgba(255,255,255,1.00)
  }
  .home_column::before {
    content: "";
    position: absolute;
    width: 450px;
    height: 566px;
    right: 0;
    bottom: -20px;
    background: url(../images/column-bg02.png) center top;
    background-size: contain;
    z-index: -1;
    pointer-events: none;
    margin: auto;
  }
  .column-box {
    position: relative;
    background: rgba(176,176,176,0.00);
  }
  .column-box-line {
    position: absolute;
    display: block;
    left: 0;
    right: 0;
    height: 7px;
    border-top: 1px solid #444655;
    border-bottom: 1px solid #444655;
  }
  .column-box-line-top {
    top: -22px;
  }
  .column-box-line-btm {
    bottom: -22px;
  }
  .use-box {
    position: relative;
  }
  .use-box-ttl {
    font-size: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1;
    margin-top: -9px;
    opacity: 1.0;
    z-index: 10;
	font-weight:600;
	letter-spacing:-1px;
  }
  .use-box-ttl2 {
    font-size: 18px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1;
    margin-top: -40px;
    opacity: 1.0;
    z-index: 10;
	font-weight:600;
	letter-spacing:-1px;
  }
  .scene {
    width: 312px;
    height: 312px;
    background: #505262;
    margin: 0 16px;
    border-radius: 170px;
  }
  .scene .heading-4 {
    line-height: 1.5;
  }
  .scene-number {
    line-height: 1;
  }

  @media screen and (max-width: 767px) {
    .home_column {
      padding-bottom: 40px;
      margin-bottom: 0;
      background-image: url(../images/column-bg_sp.png);
      background-size: cover;
    }
    .home_column::before {
      width: 225px;
      height: 283px;
      bottom: -128px;
    }
    .column-box {
      padding: 24px 0 32px;
    }
    .column-box .heading-2 {
      margin-bottom: 24px;
      font-weight:600;
	letter-spacing:-1px;
    }
    .home_column .inner,
    .scene-area {
      width: 90%;
      margin: 0 auto;
    }
    .scene-area .txt18 {
      font-size: 100%;
      letter-spacing: .1em;
    }
    .use-box-ttl {
      font-size: 16px;
      margin-top: -10px;
	  margin-left: auto;
	  margin-right:auto;
      right: -9px;
      opacity: .75;
    }
	.use-box-ttl2 {
    font-size: 16px;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
    line-height: 1;
    margin-top: -40px;
    opacity: 1.0;
    z-index: 10;
	font-weight:600;
	letter-spacing:-1px;
  }
    .scene {
      width: 240px;
      height: 240px;
      margin: 0 0 12px;
    }
  }


  /* home_design
  **************************************** */
  .home_design {
    background: url(../images/design-bg.png) bottom center no-repeat;
    background-size: contain;
    padding-bottom: 240px;
  }
  .home_design .section_ttl-jp .back {
    margin-top: -30px;
    right: 0;
    left: 0;
  }
  .home_design .heading-0 {
    font-size: 785%;
    max-width: 100%;
    overflow: hidden;
  }
  .home_design .line-wide {
    letter-spacing: .1em;
  }
  .home_design .txtarea {
    max-width: 608px;
    margin-left: auto;
  }

  @media screen and (max-width: 1280px) and (min-width: 768px) {
    .home_design {
      padding-bottom: 160px;
    }
  }
  
  @media screen and (max-width: 1080px) and (min-width: 768px) {
    .home_design {
      background-size: 115%;
      background-position: bottom 8% right;
    }
  }
  @media screen and (max-width: 767px) {
    .home_design {
      background: url(../images/design-bg_sp.png) bottom 30px right no-repeat;
      background-size: contain;
      padding-bottom: 80px;
    }
    .home_design .section_ttl-jp {
      margin-bottom: 40px;
    }
    .home_design .heading-2 {
      font-size: 150%;
      line-height: 1.6;
      letter-spacing: .2em;
    }
    .home_design .line-wide {
      max-width: 200px;
      font-size: 100%;
      -ms-text-justify: inter-ideograph;
      text-justify: inter-ideograph;
      text-align: justify;
      letter-spacing: 0;
      line-height: 2;
    }
  }

/* home_aqua
**************************************** */
  .home_aqua {
    position: relative;
    color: #333;
  }
  .home_aqua::before,
  .home_aqua::after {
    content: "";
    display: block;
    width: 100%;
    height: 280px;
    position: absolute;
    z-index: -1;
    background-size: 100% 100%;
    pointer-events: none; 
  }
  .home_aqua::before {
    top: -675px;
    background-image: url(../images/aqua-bg-top.png);
    background-position: bottom;
  }
  .home_aqua::after {
    bottom: -675px;
    background-image: url(../images/aqua-bg-btm.png);
    background-position: top;
  }
  .home_aqua .section_ttl-jp {
    top: -120px;
    z-index: 10;
  }
  .home_aqua * {
    color: #000;
  }
  .home_aqua .section_ttl-jp .back {
    font-size: 48px;
	letter-spacing: -1px;
	font-weight:600;
    margin-top: -71px;
  }

  .aqua-about {
    padding: 160px 0 160px;
    position: relative;
    margin-top: -200px;
  }
  .aqua-about .imgarea {
    position: absolute;
    right: -56px;
    top: 0;
    z-index: 0;
  }
  .home_aqua .line-wide {
    letter-spacing: .01em;
	line-height: 3.5em;
  }
  .aqua-logo {
    position: absolute;
    bottom: 80px;
    right: -64px;
    z-index: 0;
  }
  @media screen and (max-width: 1280px) and (min-width: 768px) {
    .home_aqua .section_ttl-jp .heading-0 {
      letter-spacing: 0;
    }
    .aqua-about .imgarea {
      right: -32px;
    }
    .aqua-logo {
      right: 0;
      width: 160px;
    }
  }
  
  @media screen and (max-width: 767px) {
    .home_aqua::before,
    .home_aqua::after {
      height: 280px;
    }
    .home_aqua::before {
      top: -278px;
    }
    .home_aqua::after {
      bottom: -278px;
    }
    .home_aqua .section_ttl-jp {
      top: -48px;
    }
    .aqua-about {
      padding: 464px 0 48px;
      margin-top: -128px;
    }
    .home_aqua .txtarea {
      width: 100%;
    }
    .aqua-about .imgarea {
      right: -24px;
      left: 0;
    }
    .aqua-logo {
      width: 140px;
      right: auto;
      left: 0;
      bottom: 100px;
    }
  }

/* home_gallery
**************************************** */
  .home_gallery {
    padding-top: 280px;
  }
  .home_gallery .imgarea div {
    width: 50%;
  }

  @media screen and (max-width: 767px) {
    .home_gallery {
      padding-top: 96px;
    }
  }


/* home_lineup
**************************************** */
  .home_lineup {
    position: relative;
    padding-top: 160px;
  }
  .home_lineup::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 920px;
    left: 0;
    right: 0;
    top: -20px;
    background: url(../images/lineup-bg.png) center top;
    background-size: 100% auto;
    z-index: -1;
    pointer-events: none;
    margin: auto;
  }
  .home_lineup .section_ttl {
    font-size: 850%;
  }

  @media screen and (max-width: 767px) {
    .home_lineup {
      padding-top: 96px;
    }
    .home_lineup .section_ttl {
      font-size: 350%;
    }
  }


/* modal - lineup
**************************************** */
  .lineup-box {
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
    z-index: 9999;
  }
  .lineup-box:not(:last-child) {
    margin-bottom: 24px;
  }
  .lineup-box .txtarea {
    width: 40%;
    height: 100%;
    padding: 56px;
    background: #dedde5;
    min-height: 400px;
    color: #000;
  }
  .lineup-box .txtarea .heading-3 {
    color: #000;
    text-transform: none;
    letter-spacing: .03em;
  }
  .lineup-box .txtarea .txt18 {
    letter-spacing: .15em;
    line-height: 1.7;
  }
  .lineup-box .imgarea {
    display: block;
    width: 60%;
    background: #666 url(../images/lineup-img01.jpg) center no-repeat;
    background-size: cover;
  }
  .lineup--avantiaqua .imgarea {
    background-image: url(../images/lineup-img02.jpg);
  }
  .lineup--wideplus .txtarea {
    background: #000;
    color: #fff;
  }
  .lineup--wide .txtarea {
    background: #000;
    color: #fff;
  }
  .lineup--wideplus .txtarea .btn,
  .lineup--wide .txtarea .btn {
    border: 1px solid;
  }

  .lineup--risaia .txtarea {
    background: #ddd;
  }
  .lineup--pulito .txtarea {
    background: #dcefe8;
    background: url(../images/eco-bg.html);
    background-size: cover;
    background-position: center right -600px;
  }
  .lineup--ninfa .txtarea {
    background: #cfe3ea;
    background: url(../images/eco-bg.html);
    background-size: auto 120%;
    background-position: center right;
  }

  @media screen and (max-width: 767px) {
    .lineup-box {
      height: auto;
      height: 100%;
      display: block;
    }
    .lineup-box .imgarea {
      position: relative;
      width: 100%;
      height: 200px;
      bottom: auto;
    }
    .lineup-box .txtarea {
      width: 100%;
      height: auto;
      padding: 24px;
      min-height: auto;
    }
    .lineup-box .txtarea--content,
    .lineup-box .txtarea .btn {
      width: 100%;
    }
    .lineup-box .modal_close {
      position: relative;
      padding: 32px;
      height: auto;
    }
    .lineup-box .section_ttl {
      text-transform: none;
      line-height: 1.2;
    }
  }


/* home_matching
**************************************** */
  .hikaku-btn {
    width: 100%;
    margin: 0 auto 24px;
    letter-spacing: .2em;
    background: #fff;
    color: #000;
    border: none;
    height: 80px;
    line-height: 84px;
    max-width: 100%;
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
	azimuth:9999;
  }
  .hikaku-btn:hover {
    color: #000;
  }
  .hikaku-btn::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #7d7d7d;
    display: inline-block;
    margin-right: 16px;
    position: relative;
    top: -4px;
  }
  .table-area {
    height: 0;
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
    padding: 0 56px;
    color: #191721;
    border-radius: 16px;
  }
  .hikaku-active .table-area {
    height: auto;
    padding: 56px;
    opacity: 1;
  }
  .product_matching--table {
    position: relative;
    table-layout: fixed;
    font-size: 93%;
    line-height: 1.65;
    letter-spacing: .1em;
  }
  .product_matching--table thead.sp-none-table {
    display: table-header-group;
  }
  .product_matching--table tbody.sp-none-table {
    display: table-footer-group;
  }
  .product_matching--table td {
    border: 1px solid #dcdae1;
  }
  .product_matching--table .product_ttl th {
    font-size: 300%;
    font-weight: 500;
  }
  .product_matching--table .product_ttl th a {
    position: absolute;
    top: 0;
    width: calc(100%/2);
    height: 100%;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
  .product_matching--table .product_ttl th a:hover {
    opacity: .5;
  }
  .product_matching--table .product_ttl th:nth-child(1) a { left: 0; }
  .product_matching--table .product_ttl th:nth-child(2) a { left: calc(100/2); }
  .product_matching--table .cel_ttl {
    padding: 0;
    background-color: #dcdae1;
    text-align: center;
  }
  .product_matching--table .product_cel td, 
  .product_matching--table .product_cel {
    position: relative;
    vertical-align: bottom;
    padding: 32px 0;
    overflow: hidden;
  }
  .product_matching--table .product_cel .recommend {
    position: absolute;
    top: 15px;
    right: -24px;
    transform: rotate(35deg);
    width: 120px;
    background-color: #e83428;
    font-size: 80%;
    color: #fff;
    letter-spacing: -.01em;
  }
  .product_matching--table .product_cel .recommend small {
    color: #c2e1f0;
  }
  .product_matching--table .product_cel .recommend small:nth-of-type(1) {
    margin-right: 2px;
  }
  .product_matching--table .product_cel .recommend small:nth-of-type(2) {
    margin-left: 2px;
  }
  .product_matching--table .product_cel td, 
  .product_matching--table .product_cel--color > * {
    text-align: center;
  }
  .product_matching--table .product_cel--color > *:not(:only-child):last-child {
    margin-left: 12px;
  }
  .product_matching--table .product_cel--color {
    font-size: 74%;
    letter-spacing: -.035em;
  }
  .product_matching--table .product_cel--color span {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #dcdae1;
  }
  .product_matching--table .product_cel--color .silver span {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 0%, rgba(133,133,133,1) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(133,133,133,1) 100%);
    background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(133,133,133,1) 100%);
  }
  .product_matching--table .product_cel h3 {
    font-size: 120%;
    line-height: 1.55;
  }
  .product_matching--table .strong_cel td, 
  .product_matching--table .spread_cel td, 
  .product_matching--table .price_cel td {
    padding: 16px;
    height: 64px;
    text-align: center;
    vertical-align: middle;
  }
  .product_matching--table .strong_cel td, 
  .product_matching--table .spread_cel td {
    font-size: 138%;
    letter-spacing: 0;
  }
  .product_matching--table .size_cel dl dt {
    width: calc(100% - 310px);
  }
  .product_matching--table .size_cel td, 
  .product_matching--table .info_cel td {
    padding: 16px 24px;
  }
  .product_matching--table .info_cel td {
    border-bottom: none;
    font-size: 94%;
    border-bottom: 1px solid #dcdae1;
  }
  .product_matching--table .info_cel .list li {
    padding-left: .8em;
    line-height: 1.4;
  }
  .product_matching--table .info_cel .list-disc li::before {
    top: .5em;
    width: 5px;
    height: 5px;
  }
  .product_matching--table .info_cel .list li:not(:last-child) {
    margin-bottom: 6px;
  }
  .product_matching--table .icons_cel td {
    border-top: none;
    padding: 0 8px 24px;
  }
  .product_matching--table .icons_cel td:nth-child(1), 
  .product_matching--table .icons_cel td:nth-child(3), 
  .product_matching--table .icons_cel td:nth-child(4) {
    padding-left: 18px;
    padding-right: 18px;
  }
  .product_matching--table .icons_cel .icons_cel--icon > * {
    margin: 0 4px 8px;
  }
  .product_matching--table .icons_cel .icons_cel--icon > *:first-child {
    margin-left: 0;
    margin-right: 4px;
  }
  .product_matching--table .icons_cel .icons_cel--icon > *:last-child {
    margin-left: 4px;
    margin-right: 0;
  }

  @media screen and (max-width: 767px) {
    .table-area {
      overflow-x: scroll;
      border-right: 1px solid #aaa;
      padding: 0 24px;
      width: calc(100% + 18px);
      margin-left: -9px;
      border-radius: 6px;
    }
    .hikaku-active .table-area {
      padding: 24px;
    }
    .product_matching--table {
      width: 100%;
      letter-spacing: .07em;
      border-bottom: 1px solid #dcdae1;
    }
    .product_matching--table td {
      vertical-align: top;
      padding: 8px 12px !important;
      line-height: 1.5;
      letter-spacing: .05em;
    }
    .product_matching--table .txt-xs {
      display: inline-block;
      line-height: 1.5;
    }
    .product_matching--table .product_cel .recommend {
      top: 6px;
      width: 83px;
    }
    .product_matching--table .product_cel .recommend small {
      display: none;
    }
    .product_matching--table .product_cel td {
      vertical-align: top;
      padding: 16px 0 8px;
      border-bottom: 1px dotted #dcdae1;
    }
    .product_matching--table .matching-logo {
      height: 94px;
      margin-bottom: 0;
    }
    .product_matching--table .handle {
      margin-bottom: 12px;
    }
    .product_matching--table .handle img {
      height: 85px;
      width: auto;
      margin: 8px auto 0;
    }
    .product_matching--table .product_cel--color {
      margin-bottom: 8px;
      font-size: 65%;
    }
    .product_matching--table .product_cel--color span {
      width: 16px;
      height: 16px;
      display: inline-block;
      top: 4px;
      position: relative;
      margin-right: 3px;
    }
    .product_matching--table .product_cel h3 {
      font-size: 100%;
      text-align: left;
    }
    .product_matching--table .strong_cel td,
    .product_matching--table .spread_cel td,
    .product_matching--table .price_cel td {
      height: auto;
      font-size: 100%;
      text-align: left;
      padding: 0 12px;
      border-bottom: none;
      border-top: none;
      vertical-align: top;
    }
    .product_matching--table .strong_cel td {
      padding-top: 4px;
      text-align: center;
    }
    .product_matching--table .spread_cel td {
      padding-bottom: 4px;
    }
    .product_matching--table .price_cel td {
      border-bottom: 1px dotted #dcdae1;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .product_matching--table .strong_cel td::before,
    .product_matching--table .spread_cel td::before {
      margin-right: 4px;
      color: #111;
      width: 6em;
      display: inline-block;
    }
    .product_matching--table .size_cel td,
    .product_matching--table .info_cel td {
      padding: 4px 12px;
    }
    .product_matching--table .size_cel td {
      border-top: 1px dotted #dcdae1;
      border-bottom: 1px dotted #dcdae1;
    }
    .product_matching--table .size_cel dl dt {
      width: calc(100% - 44px);
    }
    .product_matching--table .info_cel td {
      border-top: none;
      -ms-text-justify: inter-ideograph;
      text-justify: inter-ideograph;
      text-align: justify;
      letter-spacing: 0;
    }
    .product_matching--table .info_cel .list li {
      display: inline;
      padding: 0
    }
    .product_matching--table .info_cel .list-disc li::before {
      display: none;
    }
    .product_matching--table .info_cel .list-disc li::after {
      content: "。";
    }
  }
  
  /* home_matching2
**************************************** */
  .hikaku-btn2 {
    width: 100%;
    margin: 0 auto 24px;
    letter-spacing: .2em;
    background: #fff;
    color: #000;
    border: none;
    height: 80px;
    line-height: 84px;
    max-width: 100%;
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
	azimuth:9999;
  }
  .hikaku-btn2:hover {
    color: #000;
  }
  .hikaku-btn2::before {
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 8px;
    border-color: transparent transparent transparent #7d7d7d;
    display: inline-block;
    margin-right: 16px;
    position: relative;
    top: -4px;
  }
  .table-area2 {
    height: 0;
    -webkit-transition: all 1s cubic-bezier(.5,0,0,1);
    -moz-transition: all 1s cubic-bezier(.5,0,0,1);
    transition: all 1s cubic-bezier(.5,0,0,1);
    overflow: hidden;
    background: rgba(255, 255, 255, .95);
    padding: 0 56px;
    color: #191721;
    border-radius: 16px;
  }
  .hikaku-active .table-area2 {
    height: auto;
    padding: 56px;
    opacity: 1;
  }
  .product_matching--table2 {
    position: relative;
    table-layout: fixed;
    font-size: 93%;
    line-height: 1.65;
    letter-spacing: .1em;
  }
  .product_matching--table2 thead.sp-none-table {
    display: table-header-group;
  }
  .product_matching--table2 tbody.sp-none-table {
    display: table-footer-group;
  }
  .product_matching--table2 td {
    border: 1px solid #dcdae1;
  }
  .product_matching--table2 .product_ttl th {
    font-size: 300%;
    font-weight: 500;
  }
  .product_matching--table2 .product_ttl th a {
    position: absolute;
    top: 0;
    width: calc(100%/2);
    height: 100%;
    background-color: #fff;
    opacity: 0;
    z-index: 1;
    pointer-events: none;
  }
  .product_matching--table2 .product_ttl th a:hover {
    opacity: .5;
  }
  .product_matching--table2 .product_ttl th:nth-child(1) a { left: 0; }
  .product_matching--table2 .product_ttl th:nth-child(2) a { left: calc(100/2); }
  .product_matching--table2 .cel_ttl {
    padding: 0;
    background-color: #dcdae1;
    text-align: center;
  }
  .product_matching--table2 .product_cel td, 
  .product_matching--table2 .product_cel {
    position: relative;
    vertical-align: bottom;
    padding: 32px 0;
    overflow: hidden;
  }
  .product_matching--table2 .product_cel .recommend {
    position: absolute;
    top: 15px;
    right: -24px;
    transform: rotate(35deg);
    width: 120px;
    background-color: #e83428;
    font-size: 80%;
    color: #fff;
    letter-spacing: -.01em;
  }
  .product_matching--table2 .product_cel .recommend small {
    color: #c2e1f0;
  }
  .product_matching--table2 .product_cel .recommend small:nth-of-type(1) {
    margin-right: 2px;
  }
  .product_matching--table2 .product_cel .recommend small:nth-of-type(2) {
    margin-left: 2px;
  }
  .product_matching--table2 .product_cel td, 
  .product_matching--table2 .product_cel--color > * {
    text-align: center;
  }
  .product_matching--table2 .product_cel--color > *:not(:only-child):last-child {
    margin-left: 12px;
  }
  .product_matching--table2 .product_cel--color {
    font-size: 74%;
    letter-spacing: -.035em;
  }
  .product_matching--table2 .product_cel--color span {
    display: block;
    width: 24px;
    height: 24px;
    margin: 0 auto;
    border-radius: 50%;
    border: 1px solid #dcdae1;
  }
  .product_matching--table2 .product_cel--color .silver span {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(-45deg,  rgba(255,255,255,1) 0%, rgba(133,133,133,1) 100%);
    background: -webkit-linear-gradient(-45deg,  rgba(255,255,255,1) 0%,rgba(133,133,133,1) 100%);
    background: linear-gradient(135deg,  rgba(255,255,255,1) 0%,rgba(133,133,133,1) 100%);
  }
  .product_matching--table2 .product_cel h3 {
    font-size: 120%;
    line-height: 1.55;
  }
  .product_matching--table2 .strong_cel td, 
  .product_matching--table2 .spread_cel td, 
  .product_matching--table2 .price_cel td {
    padding: 16px;
    height: 64px;
    text-align: center;
    vertical-align: middle;
  }
  .product_matching--table2 .strong_cel td, 
  .product_matching--table2 .spread_cel td {
    font-size: 138%;
    letter-spacing: 0;
  }
  .product_matching--table2 .size_cel dl dt {
    width: calc(100% - 310px);
  }
  .product_matching--table2 .size_cel td, 
  .product_matching--table2 .info_cel td {
    padding: 16px 24px;
  }
  .product_matching--table2 .info_cel td {
    border-bottom: none;
    font-size: 94%;
    border-bottom: 1px solid #dcdae1;
  }
  .product_matching--table2 .info_cel .list li {
    padding-left: .8em;
    line-height: 1.4;
  }
  .product_matching--table2 .info_cel .list-disc li::before {
    top: .5em;
    width: 5px;
    height: 5px;
  }
  .product_matching--table2 .info_cel .list li:not(:last-child) {
    margin-bottom: 6px;
  }
  .product_matching--table2 .icons_cel td {
    border-top: none;
    padding: 0 8px 24px;
  }
  .product_matching--table2 .icons_cel td:nth-child(1), 
  .product_matching--table2 .icons_cel td:nth-child(3), 
  .product_matching--table2 .icons_cel td:nth-child(4) {
    padding-left: 18px;
    padding-right: 18px;
  }
  .product_matching--table2 .icons_cel .icons_cel--icon > * {
    margin: 0 4px 8px;
  }
  .product_matching--table2 .icons_cel .icons_cel--icon > *:first-child {
    margin-left: 0;
    margin-right: 4px;
  }
  .product_matching--table2 .icons_cel .icons_cel--icon > *:last-child {
    margin-left: 4px;
    margin-right: 0;
  }

  @media screen and (max-width: 767px) {
    .table-area2 {
      overflow-x: scroll;
      border-right: 1px solid #aaa;
      padding: 0 24px;
      width: calc(100% + 18px);
      margin-left: -9px;
      border-radius: 6px;
    }
    .hikaku-active2 .table-area2 {
      padding: 24px;
    }
    .product_matching--table2 {
      width: 100%;
      letter-spacing: .07em;
      border-bottom: 1px solid #dcdae1;
    }
    .product_matching--table2 td {
      vertical-align: top;
      padding: 8px 12px !important;
      line-height: 1.5;
      letter-spacing: .05em;
    }
    .product_matching--table2 .txt-xs {
      display: inline-block;
      line-height: 1.5;
    }
    .product_matching--table2 .product_cel .recommend {
      top: 6px;
      width: 83px;
    }
    .product_matching--table2 .product_cel .recommend small {
      display: none;
    }
    .product_matching--table2 .product_cel td {
      vertical-align: top;
      padding: 16px 0 8px;
      border-bottom: 1px dotted #dcdae1;
    }
    .product_matching--table2 .matching-logo {
      height: 94px;
      margin-bottom: 0;
    }
    .product_matching--table2 .handle {
      margin-bottom: 12px;
    }
    .product_matching--table2 .handle img {
      height: 85px;
      width: auto;
      margin: 8px auto 0;
    }
    .product_matching--table2 .product_cel--color {
      margin-bottom: 8px;
      font-size: 65%;
    }
    .product_matching--table2 .product_cel--color span {
      width: 16px;
      height: 16px;
      display: inline-block;
      top: 4px;
      position: relative;
      margin-right: 3px;
    }
    .product_matching--table2 .product_cel h3 {
      font-size: 100%;
      text-align: left;
    }
    .product_matching--table2 .strong_cel td,
    .product_matching--table2 .spread_cel td,
    .product_matching--table2 .price_cel td {
      height: auto;
      font-size: 100%;
      text-align: left;
      padding: 0 12px;
      border-bottom: none;
      border-top: none;
      vertical-align: top;
    }
    .product_matching--table2 .strong_cel td {
      padding-top: 4px;
      text-align: center;
    }
    .product_matching--table2 .spread_cel td {
      padding-bottom: 4px;
    }
    .product_matching--table2 .price_cel td {
      border-bottom: 1px dotted #dcdae1;
      padding-top: 4px;
      padding-bottom: 4px;
    }
    .product_matching--table2 .strong_cel td::before,
    .product_matching--table2 .spread_cel td::before {
      margin-right: 4px;
      color: #111;
      width: 6em;
      display: inline-block;
    }
    .product_matching--table2 .size_cel td,
    .product_matching--table2 .info_cel td {
      padding: 4px 12px;
    }
    .product_matching--table2 .size_cel td {
      border-top: 1px dotted #dcdae1;
      border-bottom: 1px dotted #dcdae1;
    }
    .product_matching--table2 .size_cel dl dt {
      width: calc(100% - 44px);
    }
    .product_matching--table2 .info_cel td {
      border-top: none;
      -ms-text-justify: inter-ideograph;
      text-justify: inter-ideograph;
      text-align: justify;
      letter-spacing: 0;
    }
    .product_matching--table2 .info_cel .list li {
      display: inline;
      padding: 0
    }
    .product_matching--table2 .info_cel .list-disc li::before {
      display: none;
    }
    .product_matching--table2 .info_cel .list-disc li::after {
      content: "。";
    }
  }


/* modal - other
**************************************** */
  #lean_overlay {
    position: fixed;
    z-index:9998; 
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background:url(../images/ultrafinebubble-bg.html) center;
    display: none;
    opacity: .5;
  }
  .modal_close {
    text-align: center;
    font-size: 120%;
    letter-spacing: .2em;
    color: #fff;
    padding: 8px;
  }


/* home_others
**************************************** */
  .media-list {
    border-bottom: 1px solid #4d4d4f;
    padding-bottom: 24px;
  }
  .media-list:not(:last-child) {
    margin-bottom: 32px;
  }
  .media-list .heading-4 {
    letter-spacing: .1em;
    line-height: 1.6;
  }

  @media screen and (max-width: 767px) {
    .media-list {
      padding-bottom: 16px;
    }
    .media-list:not(:last-child) {
      margin-bottom: 20px;
    }
  }
  
  .txt-bk{
	  color:#000;
	  }
  .fs-20{
	  font-size:20px;}
.rev{
	width:100%;
	padding-left:10%;
	padding-right:10%;
	background-color:rgba(255,255,255,1.00);
	padding-bottom:30px;
	}
.image_link{
 display:block; 
 position:relative;
 text-decoration:none;
}
.image_link img{
  display:block;
  width:100%;
  transition:0.3s;
}
.image_link:before{
  content:"Online Shop";
  display:block;
  color:#fff;
  line-height:48px;
  width:180px;
  border:solid 1px #fff;
  border-radius:5px;
  text-align:center;
  position:absolute;
  top:50%;
  left:50%;
  margin-top:-1em;
  margin-left:-90px;
  opacity:0;
  z-index:3;
  transition:0.3s;
  font-weight:bold;
  letter-spacing:0.2em;
}
.image_link:hover img{
  filter:blur(5px);
}
.image_link:hover:before{
  opacity:1;
  margin-top:-0.5em;
}

btn-square-so-pop {
  position: relative;
  display: inline-block;
  padding: 0.2em 0.2em;
  text-decoration: none;
  margin-top:5px;
  margin-bottom: 10px;
  font-size:11px;
  color: #5B5B5B;
  background: #DDDFDC;/*色*/
  border-radius: 4px;/*角の丸み*/
  box-shadow: inset 0 2px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(0, 0, 0, 0.05);
  font-weight: bold;
  border: solid 1px #878787;/*線色*/
}

.btn-square-so-pop:active {
  /*押したとき*/
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.30);
}
header {
    width: 100%; /* 幅いっぱいを指定 */
    box-sizing: border-box; /* padding分を含んで幅を100%にするため */
    position: fixed; /* ウィンドウを基準に画面に固定 */
    top: 0; /* 上下の固定位置を上から0pxにする */
    left: 0; /* 左右の固定位置を左から0pxにする */
    display: flex; /* 中の要素を横並びにする */
    align-items: center; /* 中の要素を上下中央に並べる */
	z-index:9999;
	padding-top:20px;
	padding-bottom:20px;
}

header .gnav .menu {
    display: flex; /* 中の要素を横並びにする */
}

header .gnav .menu li {
    list-style: none; /* リストの[・]を消す */
}

main {
    height: 100vw; /* スクロールの演出を見れるようにmainに高さを指定 */
}
.holi-box1{
	width:64%;
	margin-right:6%;}
	.holi-box2{
	width:30%;}
.textbk {
	font-size: 12px;
	color: #000000;
	font-weight: 600;
}
  @media screen and (max-width: 767px) {
	  .holi-box1{
	width:86%;
	margin-right:12%;
	margin-left:12%;}
	.holi-box2{
	width:86%;
	margin-right:12%;
	margin-left:12%;}
	  }
	  
@media screen and (min-width: 750px){   
  .pc-br { display:inline; }
  .sp-br { display:none; }
}
@media screen and (max-width: 751px){   
  .pc-br { display:none; }
  .sp-br { display:inline; }
}

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