@charset "UTF-8";
/* slick.css */
.slick-slider {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.slick-list, .slick-slider {
  position: relative;
  display: block;
}

.slick-list {
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: 0;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-list, .slick-slider .slick-track {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
}

.slick-track:after, .slick-track:before {
  display: table;
  content: '';
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
    height: auto!important;
}

[dir='rtl'] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}
.slick-initialized .slick-slide.interviewItem {
         background: #fff;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-loading .slick-list {
  background: #fff url(../css/ajax-loader.gif) center center no-repeat;
}

@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  src: url(../css/fonts/slick.eot);
  src: url("../css/fonts/slick.eot?#iefix") format("embedded-opentype"), url("../css/fonts/slick.woff") format("woff"), url("../css/fonts/slick.ttf") format("truetype"), url("../css/fonts/slick.svg#slick") format("svg");
}

.slick-next, .slick-prev {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  -webkit-transform: translate(0, -50%);
  transform: translate(0, -50%);
  cursor: pointer;
  border: 0 0;
}

.slick-next, .slick-next:focus, .slick-next:hover, .slick-prev, .slick-prev:focus, .slick-prev:hover {
/*
    color: transparent;
    background: transparent;
*/
    outline: 0;
}

.slick-next:focus:before, .slick-next:hover:before, .slick-prev:focus:before, .slick-prev:hover:before {
  opacity: 1;
}

.slick-next.slick-disabled:before, .slick-prev.slick-disabled:before {
  opacity: .25;
}

.slick-next:before, .slick-prev:before {
  font-family: slick;
  font-size: 20px;
  line-height: 1;
  opacity: .75;
  color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: '←';
}

[dir='rtl'] .slick-prev:before {
  content: '→';
}

.slick-next {
  right: -25px;
}

[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: '→';
}

[dir='rtl'] .slick-next:before {
  content: '←';
}

.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}

.slick-dots li, .slick-dots li button {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  padding: 5px;
  color: transparent;
  border: 0;
  outline: 0;
  background: transparent;
}

.slick-dots li button:focus, .slick-dots li button:hover {
  outline: 0;
}

.slick-dots li button:focus:before, .slick-dots li button:hover:before {
  opacity: 1;
}

.slick-dots li button:before {
  font-family: slick;
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: .25;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  opacity: .75;
  color: #000;
}

/* colorbox.css */
/*
    Colorbox Core Style:
    The following CSS is consistent between example themes and should not be altered.
*/
#colorbox, #cboxOverlay, #cboxWrapper {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 9999;
  overflow: hidden;
  -webkit-transform: translate3d(0, 0, 0);
}

#cboxWrapper {
  max-width: none;
}

#cboxOverlay {
  position: fixed;
  width: 100%;
  height: 100%;
}

#cboxMiddleLeft, #cboxBottomLeft {
  clear: left;
}

#cboxContent {
  position: relative;
}

#cboxLoadedContent {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

#cboxTitle {
  margin: 0;
}

#cboxLoadingOverlay, #cboxLoadingGraphic {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#cboxPrevious, #cboxNext, #cboxClose, #cboxSlideshow {
  cursor: pointer;
}

.cboxPhoto {
  float: left;
  margin: auto;
  border: 0;
  display: block;
  max-width: none;
  -ms-interpolation-mode: bicubic;
}

.cboxIframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
  padding: 0;
  margin: 0;
}

#colorbox, #cboxContent, #cboxLoadedContent {
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
}

/*
    User Style:
    Change the following styles to modify the appearance of Colorbox.  They are
    ordered & tabbed in a way that represents the nesting of the generated HTML.
*/
#cboxOverlay {
  background: rgba(0, 0, 0, 0.6) repeat 0 0;
}

#colorbox {
  outline: 0;
}

#cboxContent {
  background: #fff;
  overflow: hidden;
  border-radius: 10px;
}

.cboxIframe {
  background: #fff;
}

#cboxError {
  padding: 50px;
  border: 1px solid #ccc;
}

#cboxLoadedContent {
  margin-bottom: 28px;
}

#cboxTitle {
  position: absolute;
  bottom: 4px;
  left: 0;
  text-align: center;
  width: 100%;
  color: #949494;
}

#cboxCurrent {
  position: absolute;
  bottom: 4px;
  left: 58px;
  color: #949494;
}

/*#cboxLoadingOverlay{background:url(../images/loading_background.png) no-repeat center center;}*/
/*#cboxLoadingGraphic{background:url(../images/loading.gif) no-repeat center center;}*/
/* these elements are buttons, and may need to have additional styles reset to avoid unwanted base styles */
#cboxPrevious, #cboxNext, #cboxSlideshow, #cboxClose {
  border: 0;
  padding: 0;
  margin: 0;
  overflow: visible;
  width: auto;
  background: none;
}

/* avoid outlines on :active (mouseclick), but preserve outlines on :focus (tabbed navigating) */
#cboxPrevious:active, #cboxNext:active, #cboxSlideshow:active, #cboxClose:active {
  outline: 0;
}

#cboxSlideshow {
  position: absolute;
  bottom: 4px;
  right: 30px;
  color: #0092ef;
}

/*#cboxPrevious{position:absolute; bottom:0; left:0; background:url(../images/btn-prev.png) no-repeat -75px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxPrevious:hover{background-position:-75px -25px;}
        #cboxNext{position:absolute; bottom:0; left:27px; background:url(../images/btn-next.png) no-repeat -50px 0; width:25px; height:25px; text-indent:-9999px;}
        #cboxNext:hover{background-position:-50px -25px;}*/
#cboxClose {
  position: absolute;
  top: 15px;
  right: 15px;
  background: url(../images/btn-close.png) no-repeat center center;
  width: 25px;
  height: 25px;
  text-indent: -9999px;
}

/*
  The following fixes a problem where IE7 and IE8 replace a PNG's alpha transparency with a black fill
  when an alpha filter (opacity change) is set on the element or ancestor element.  This style is not applied to or needed in IE9.
  See: http://jacklmoore.com/notes/ie-transparency-problems/
*/
.cboxIE #cboxTopLeft,
.cboxIE #cboxTopCenter,
.cboxIE #cboxTopRight,
.cboxIE #cboxBottomLeft,
.cboxIE #cboxBottomCenter,
.cboxIE #cboxBottomRight,
.cboxIE #cboxMiddleLeft,
.cboxIE #cboxMiddleRight {
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#00FFFFFF,endColorstr=#00FFFFFF);
}

/* style.css */
audio:not([controls]) {
  display: none;
}

button {
  overflow: visible;
  -webkit-appearance: button;
}

details {
  display: block;
}

html {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
}

input {
  -webkit-border-radius: 0;
}

input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
}

input[type="number"] {
  width: auto;
}

input[type="search"] {
  -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

main {
  display: block;
}

pre {
  overflow: auto;
}

progress {
  display: inline-block;
}

small {
  font-size: 75%;
}

summary {
  display: block;
}

svg:not(:root) {
  overflow: hidden;
}

template {
  display: none;
}

textarea {
  overflow: auto;
}

[hidden] {
  display: none;
}

/*
 * Universal inheritance
 */
*,
::before,
::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

* {
  font-size: inherit;
  line-height: inherit;
}

::before,
::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

/*
 * Opinionated defaults
 */
*,
::before,
::after {
  border-style: solid;
  border-width: 0;
}

* {
  background-repeat: no-repeat;
  margin: 0;
  padding: 0;
}

:root {
  background-color: #FFFFFF;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #000000;
  cursor: default;
  font: 100%/1.5 sans-serif;
  text-rendering: optimizeLegibility;
}

a {
  -webkit-text-decoration: none;
  text-decoration: none;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  background-color: transparent;
}

button,
input,
select,
textarea {
  color: inherit;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
}

button,
[type="button"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="reset"],
[type="search"],
[type="submit"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"],
select,
textarea {
  min-height: 1.5em;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

nav ol,
nav ul {
  list-style: none;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

select::-ms-expand {
  display: none;
}

select::-ms-value {
  color: currentColor;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

textarea {
  resize: vertical;
}

::-moz-selection {
  background-color: #B3D4FC;
  color: #ffffff;
  text-shadow: none;
}

::-moz-selection {
  background-color: #B3D4FC;
  color: #ffffff;
  text-shadow: none;
}

::selection {
  background-color: #B3D4FC;
  color: #ffffff;
  text-shadow: none;
}

[aria-busy="true"] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

[hidden][aria-hidden="false"] {
  clip: rect(0 0 0 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden="false"]:focus {
  clip: auto;
}

/* -----------------------------------------------------------------------
## Reset #################################################################
----------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin: 0;
}

ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

img {
  vertical-align: bottom;
}

a:focus {
  outline: none;
}

/* -----------------------------------------------------------------------
## Base ##################################################################
----------------------------------------------------------------------- */
:root {
  font-size: 14px;
}

body {
    width: 100%;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    background-color: #fff;
    padding-bottom: 50px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.txt_thin {
  font-weight: normal;
}

.inner {
    padding-left: calc( 100vw * 50 / 750);
    padding-right: calc( 100vw * 50 / 750);
    overflow: hidden;
}

.inner.unit {
  margin-top: calc( 100vw * 35 / 750);
  padding: 0;
}

.hover {
  -webkit-transition: opacity .2s;
  transition: opacity .2s;
}

.hover:hover {
  opacity: 0.6;
}

.sp-none {
  display: none !important;
}

/* -----------------------------------------------------------------------
## Common ################################################################
----------------------------------------------------------------------- */
/* main: style.scss*/
@font-face {
  font-family: CONDENSEicon;
  src: url("../font/CONDENSEicon.eot");
}

@font-face {
  font-family: CONDENSEdesignicon;
  src: url("../font/CONDENSEdesignicon.eot");
}

@font-face {
  font-family: 'CONDENSEicon';
  src: url("../font/CONDENSEicon.woff") format("woff"), url("../font/CONDENSEicon.otf") format("opentype");
}

@font-face {
  font-family: 'CONDENSEdesignicon';
  src: url("../font/CONDENSEdesignicon.woff") format("woff"), url("../font/CONDENSEdesignicon.otf") format("opentype");
}

/* -----------------------------------------------------------------------
## Header ################################################################
----------------------------------------------------------------------- */
.header {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  background-color: #fff;
}

.header .inner {
  padding-left: calc( 100vw * 25 / 750);
  padding-right: calc( 100vw * 25 / 750);
}

.headerContents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
          align-items: center;
}

.header #mainLogoBase {
    padding-top: calc( 100vw * 26 / 750);
    padding-bottom: calc( 100vw * 26 / 750);
}

.header #mainLogoBase > a {
    display: block;
    width: calc( 100vw * 250 / 750);
}

.header-cvTel {
  width: calc( 100vw * 283 / 750);
}

/* -----------------------------------------------------------------------
## mainContents ##########################################################
----------------------------------------------------------------------- */
.mainContents {
    padding-top: calc( 100vw * 90 / 750);
}

/* -----------------------------------------------------------------------
## mv ####################################################################
----------------------------------------------------------------------- */
.mv {
  background-color: #887d68;
}
.mv img {
    width: 100%;
    height: auto;
}
.mv_txt {
  padding-top: calc( 100vw * 10 / 750);
  padding-left: 1em;
  font-size: 12px;
  text-indent:-1.3em;
}
/* -----------------------------------------------------------------------
## cv ####################################################################
----------------------------------------------------------------------- */
.cv .cvArea_balloon {
    position: absolute;
    left: 0;
    top: calc( 100vw * 18 / 750);
    width: calc( 100vw * 124 / 750);
}

.cv .inner {
    padding: 0;
    overflow: unset;
}

.cvArea_wrap {
    width: 100%;
    text-align: center;
}

.cv .cvArea_txt {
    display: inline-block;
    position: relative;
}

.cv .cvArea .cvBtn > a {
    display: block;
    margin: calc(50 / 750 * 100%) auto;
}

.cv .cvArea .cvBtn__tm {
    width: calc(272 / 750 * 100vw);
    margin-inline: auto;
}
.cv.pc-none {
  width: 100%;
  padding: 0;
  position: absolute;
  top: 0;
}
.cv .reasonItem03_img {
  width: 100%;
  margin: 27px 0 0 0;
}
/* -----------------------------------------------------------------------
## bnr ###################################################################
----------------------------------------------------------------------- */
.bnr {

}

.bnr .bnrArea > p {

}

.bnr .bnrArea > p:not(:first-child) {
    margin-top: calc( 100vw * 70 / 750);
}

/* -----------------------------------------------------------------------
## present ###############################################################
----------------------------------------------------------------------- */
.present {
    padding: calc(100vw* 80 / 750) 0 calc(100vw* 38 / 750);
    background: url(../images/bg_present_sp.png) no-repeat center top / cover;
}

.present .inner {
    padding-left: calc(25 / 750 * 100vw);
    padding-right: calc(25 / 750 * 100vw);
}

.present__tm {
    width: calc(245 / 750 * 100vw);
    margin: calc(40 / 750 * 100vw) auto 0;
  }

.presentInner {
  width: calc(100vw * 730 / 750);
  margin: 0 auto;
}

.presentTtl {
  margin-bottom: calc(40 / 750 * 100vw);
}
.presentTtl img {
  display: inline;
}

.presentContainer {
  margin-top: calc(100vw * 50 / 750);
}

.presentItem {
  padding: calc(100vw * 42 / 750) calc(100vw * 50 / 750) calc(100vw * 120 / 750);
  background-color: #f8f8f8;
  border-radius: calc( 100vw * 16 / 750);
}

.presentItem:not(:first-child) {
  margin-top: calc(100vw * 38 / 750);
}

.presentItem > a {
  display: block;
  color: #393939;
}

.presentItemHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.presentItemNumber {
  padding: calc(100vw * 6 / 750) calc(100vw * 16 / 750);
  background-color: #d33661;
  color: #fff;
  font-size: calc(100vw * 24 / 750);
  line-height: 1;
}

.presentItemLabel {
  padding: calc(100vw * 6 / 750) calc(100vw * 16 / 750);
  margin-left: calc( 100vw * 10 / 750);
  border: 1px solid #d33661;
  color: #d33661;
  font-size: calc(100vw * 24 / 750);
  line-height: 1;
}

.presentItemTtl {
  padding-top: calc(100vw * 35 / 750);
}

.presentItemTtl > small {
  display: block;
  font-size: calc(100vw * 26 / 750);
  font-weight: normal;
}

.presentItemTtl > strong {
  display: block;
  margin-top: calc(100vw * 12 / 750);
  font-size: calc(100vw * 40 / 750);
  font-weight: normal;
}

.presentItemTtl > span {
  display: block;
  margin-top: calc(100vw * 14 / 750);
  font-size: calc(100vw * 32 / 750);
  font-weight: 200;
}

.presentItemImage {
  position: relative;
  margin-top: calc(100vw * 42 / 750);
}

.presentItemImage > img {
  border-radius: 8px;
}

.presentItemPop {
  position: absolute;
  right: calc(100vw * -26 / 750);
  top: calc(100vw * -66 / 750);
  width: calc(100vw * 139 / 750);
}

.presentItemZoom {
  position: absolute;
  right: calc(100vw * -20 / 750);
  bottom: calc(100vw * -90 / 750);
  display: block;
  width: calc(100vw * 62 / 750);
}

.presentDetail {
  margin-top: calc(100vw * 72 / 750);
}

.presentDetail > a {
  display: block;
  width: calc(100vw * 340 / 750);
  margin-left: auto;
  margin-right: auto;
  padding: 1.3em;
  border-radius: 1.8em;
  text-align: center;
  border: 1px solid #c6c1b0;
  color: #393939;
  font-size: calc(100vw * 28 / 750);
  line-height: 1;
}

.presentDetail > a:before {
  display: inline-block;
  width: calc(100vw * 21 / 750);
  height: calc(100vw * 22 / 750);
  margin-right: calc(100vw * 22 / 750);
  vertical-align: calc(100vw * -3 / 750);
  background: url(../images/ico_window.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.preTxt01 {
    position: relative;
    width: calc(100vw * 537 / 750);
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5vw;
}
.present ul li:not(:last-child) {
    margin-bottom: calc(10 / 750 * 100vw);
}

.present__Btn {
    display: block;
    width: calc(620 / 750 * 100vw);
    margin: calc(50 / 750 * 100vw) auto 0;
}
/* -----------------------------------------------------------------------
## present02 ###############################################################
----------------------------------------------------------------------- */
.present02 {
    padding: calc(80 / 750 * 100vw) 0 calc(27 / 750 * 100vw);
    text-align: center;
    background: url(../images/bg_present.png) no-repeat center top / cover;
}
.present02 .inner {
    padding-left: calc(30 / 750 * 100vw);
    padding-right: calc(30 / 750 * 100vw);
}
/* -----------------------------------------------------------------------
## reason ################################################################
----------------------------------------------------------------------- */
.reason {
  padding-top: calc(100vw * 115 / 750);
}
.reasonTtl {
  text-align: center;
  font-size: calc(100vw * 46 / 750);
  font-weight: normal;
  line-height: 1.35;
  color: #7f7f7f;
}
.reasonTtl img {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  margin-bottom: 10vw;
}
.reasonTtl > strong {
  font-size: calc(100vw * 50 / 750);
  font-weight: normal;
}
.reasonTtl > span {
  color: #008fd0;
  font-size: calc(100vw * 68 / 750);
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.reasonIndex {
  margin-top: calc(100vw * 86 / 750);
}
.reasonIndexItem {
  position: relative;
  padding-left: calc(100vw * 62 / 750);
  padding-right: calc(100vw * 180 / 750);
}
.reasonIndexItem:not(:first-child) {
  margin-top: calc(100vw * 85 / 750);
}
.reasonIndexItemNum {
  position: absolute;
  left: 0;
  top: calc(100vw * 10 / 750);
  display: block;
  text-align: center;
  color: #baa469;
  font-size: calc(100vw * 24 / 750);
  line-height: 1;
}
.reasonIndexItemImage {
  position: absolute;
  right: 0;
  top: 0;
  width: calc(100vw * 160 / 750);
}
.reasonIndexItemTtl {
  font-size: calc(100vw * 32 / 750);
  font-weight: normal;
  line-height: 1.5;
}
.reasonIndexItemTxt {
  margin-top: calc(100vw * 16 / 750);
  font-size: calc(100vw * 26 / 750);
  line-height: 1.75;
}
.reasonContainer {
  margin-top: calc(100vw * 80 / 750);
}
.reasonItem:not(:first-child) {
  padding-top: calc(100vw * 90 / 750);
}
.reasonItemTtl {
  text-align: center;
}
.reasonItemTtl > span {
  font-family: 'DIN Alternate Bold';
  position: relative;
  color: #008fd0;
  font-size: calc(100vw * 90 / 750);
  font-weight: normal;
  line-height: 1;
  display: inline-block;
  margin-bottom: calc(100vw * 30 / 750);
}
.reasonItemTtl > span:before {
  position: absolute;
  left: calc(100vw * -56 / 750);
  top: calc(100vw * -44 / 750);
  width: calc(100vw * 97 / 750);
  height: calc(100vw * 74 / 750);
  background: url(../images/reason_point.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.reasonItemTtl {
  display: block;
  margin-top: calc(100vw * 30 / 750);
  font-size: calc(100vw * 46 / 750);
  font-weight: 300;
}
.reasonItemTtl > strong {
  font-weight: 700;
}
.reasonItemTtl > strong > span {
  font-weight: 300;
}
.reasonItemTtl > strong > span > sub {
  font-size: calc(20 / 750 * 100vw);
  vertical-align: baseline;
}
.reasonItemNote {
  width: 94%;
  margin: calc(40 / 750 * 100vw) auto calc(30 / 750 * 100vw);
  font-size: calc(20 / 750 * 100vw);
  color: #7f7f7f;
  letter-spacing: .025em;
}
.gdArea {
  width: calc(100% + 60px);
  margin: 27px 0 0px -30px;
}
.reasonItemLead {
  margin-top: calc(100vw * 35 / 750);
  font-size: calc(100vw * 28 / 750);
  line-height: 2;
}
.reasonItem01_outline {
  margin-top: calc(100vw * 118 / 750);
}
.reasonItem01_outline > dt {
  width: calc(100vw * 343 / 750);
  margin-left: auto;
  margin-right: auto;
}
.reasonItem01_outline > dd {
  margin-top: calc(100vw * 38 / 750);
  text-align: center;
  font-size: calc(100vw * 32 / 750);
  line-height: 1.875;
}
.reasonItem01_graph img {
  display: block;
  width: calc(100vw * 693 / 750);
  margin-left: auto;
  margin-right: auto;
}
.reasonItem01_no1 {
  margin-top: calc(100vw * 40 / 750);
  position: relative;
}
.reasonItem01_no1Box {
  margin-left: calc(100vw * -10 / 750);
  margin-right: calc(100vw * -10 / 750);
  border-radius: calc(100vw * 16 / 750);
  background-color: #ede9e3;
  overflow: hidden;
}
.reasonItem01_no1Content {
  padding: calc(100vw * 40 / 750) calc(100vw * 48 / 750) calc(100vw * 100 / 750);
}
.reasonItem01_no1Ttl {
  text-align: center;
  font-size: calc(100vw * 36 / 750);
}
.reasonItem01_no1Txt {
  margin-top: calc(100vw * 48 / 750);
  font-size: calc(100vw * 26 / 750);
  line-height: 1.76923;
}
.reasonItem01_no1Notes01, .reasonItem01_no1Notes02 {
  display: block;
  color: #7f7f7f;
  font-size: calc(100vw * 20 / 750);
  line-height: 1.6;
}
.reasonItem01_no1Notes01 {
  margin-top: calc(100vw * 46 / 750);
}
.reasonItem01_no1Notes02 {
  margin-top: calc(100vw * 36 / 750);
  margin-left: calc(100vw * 8 / 750);
  margin-right: calc(100vw * -8 / 750);
  position: relative;
  padding-left: calc(100vw * 20 / 750);
  font-weight: 300;
}
.reasonItem01_no1Notes02:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
.reasonItem01_zero {
  margin-top: calc(100vw * 120 / 750);
}
.reasonItem01_zeroTtl {
  text-align: center;
  font-size: calc(100vw * 36 / 750);
  font-weight: normal;
  line-height: 1.66667;
}
.reasonItem01_zeroTtl strong {
  margin-left: 2px;
  margin-right: 2px;
  font-size: calc(100vw * 56 / 750);
  font-weight: normal;
  line-height: 1;
}
.reasonItem01_zeroList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-top: calc(100vw * 56 / 750);
  padding-left: calc(100vw * 10 / 750);
  padding-right: calc(100vw * 10 / 750);
}
.reasonItem01_zeroItem {
  width: calc(100% * 140 / 608);
  padding: calc(100vw * 32 / 750) calc(100vw * 24 / 750);
  border: 1px solid #baa469;
  border-radius: calc(100vw * 16 / 750);
  text-align: center;
}
.reasonItem01_zeroItemTtl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  height: 2.72727em;
  text-align: center;
  font-size: calc(100vw * 22 / 750);
  font-weight: normal;
  line-height: 1.36364;
}
.reasonItem01_zeroItemIcon {
  width: calc(100vw * 78 / 750);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(100vw * 24 / 750);
}
.reasonItem01_zeroItemPrice {
  margin-top: calc(100vw * 28 / 750);
  color: #baa469;
  font-size: calc(100vw * 28 / 750);
  line-height: 1;
}
.reasonItem01_zeroItemPrice > strong {
  font-size: calc(100vw * 82 / 750);
  font-weight: normal;
  line-height: 1;
}
.reasonItem01_zeroNotes {
  display: block;
  padding-left: 1em;
  margin-top: calc(100vw * 24 / 750);
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc(100vw * 24 / 750);
}
.reasonItem01 .cv {
  margin-top: calc(100vw * 112 / 750);
}
.reasonItem02_waterserver {
  margin-top: calc(100vw * 118 / 750);
}
.reasonItem02_waterserverItem:not(:first-child) {
  margin-top: calc(100vw * 160 / 750);
}
.reasonItem02_waterserverItemImage {
  width: 100%;
}
.reasonItem02_waterserverItemSlider .slick-dots {
  bottom: calc(100vw * -60 / 750);
  font-size: 0;
  line-height: 0;
  pointer-events: none;
}
.reasonItem02_waterserverItemSlider .slick-dots li {
  width: calc(100vw * 40 / 750);
  height: calc(100vw * 40 / 750);
  margin-left: 0;
  margin-right: 0;
}
.reasonItem02_waterserverItemSlider .slick-dots li button {
  width: calc(100vw * 40 / 750);
  height: calc(100vw * 40 / 750);
  position: relative;
  padding: 0;
  pointer-events: auto;
}
.reasonItem02_waterserverItemSlider .slick-dots li button:before {
  left: 50%;
  top: 50%;
  width: calc(100vw * 16 / 750);
  height: calc(100vw * 16 / 750);
  border-radius: calc(100vw * 8 / 750);
  background-color: #dfdedb;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  content: '';
}
.reasonItem02_waterserverItemSlider .slick-dots li.slick-active button:before {
  background-color: #55b6d5;
}
.reasonItem02_waterserverItemSlide {
  position: relative;
  border-radius: calc(100vw * 16 / 750);
  overflow: hidden;
}
.reasonItem02_waterserverItemSlide:after {
  position: absolute;
  left: calc(100vw * 20 / 750);
  bottom: calc(100vw * 20 / 750);
  width: calc(100vw * 60 / 750);
  height: calc(100vw * 60 / 750);
  background: url(../images/reason_zoom.png) no-repeat;
  background-size: 100% 100%;
  pointer-events: none;
  content: '';
}
.reasonItem02_waterserverItemContent {
  margin-top: calc(100vw * 100 / 750);
}
.reasonItem02_waterserverItemCatch {
  text-align: center;
  font-size: calc(100vw * 26 / 750);
  line-height: 1.38462;
}
.reasonItem02_waterserverItemLogo {
  position: relative;
  margin-top: calc(100vw * 36 / 750);
  margin-left: auto;
  margin-right: auto;
}
.reasonItem02_waterserverItem01 .modalProduct {
  width: 100vw;
  margin-left: calc(-100vw * 60 / 750);
}
.reasonItem02_waterserverItem01 .modalProductTtl {
  font-size: calc(100vw * 36 / 750);
}
.reasonItem02_waterserverItem01 .modalProductSect:nth-child(2n+1) .modalProductSectContent {
  padding-left: calc(100vw * 190 / 750);
}
.reasonItem02_waterserverItem01 .modalProductInner {
  padding-bottom: 0;
}
.reasonItem02_waterserverItem01 .reasonItem02_waterserverItemLogo {
  width: calc(100vw * 486 / 750);
}
.reasonItem02_waterserverItem02 .reasonItem02_waterserverItemLogo {
  width: calc(100vw * 318 / 750);
}
.reasonItem02_waterserverItem03 .reasonItem02_waterserverItemLogo {
  width: calc(100vw * 274 / 750);
}
.reasonItem02_waterserverItemPop {
  position: absolute;
  display: block;
  width: calc(100vw * 124 / 750);
}
.reasonItem02_waterserverItem01 .reasonItem02_waterserverItemPop {
  left: calc(100vw * 414 / 750);
  top: calc(100vw * -66 / 750);
}
.reasonItem02_waterserverItem02 .reasonItem02_waterserverItemPop {
  left: calc(100vw * -142 / 750);
  top: calc(100vw * -88 / 750);
}
.reasonItem02_waterserverItem03 .reasonItem02_waterserverItemPop {
  left: calc(100vw * 310 / 750);
  top: calc(100vw * -68 / 750);
}
.reasonItem02_waterserverItemDetail {
  margin-top: calc(100vw * 48 / 750);
}
.reasonItem02_waterserverItemDetail > a {
  display: block;
  width: calc(100vw * 424 / 750);
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  border: 1px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  color: #393939;
  font-size: calc(100vw * 28 / 750);
  line-height: 1;
}
.reasonItem02_waterserverItemDetail > a:before {
  display: inline-block;
  width: calc(100vw * 21 / 750);
  height: calc(100vw * 22 / 750);
  margin-right: calc(100vw * 26 / 750);
  vertical-align: calc(100vw * -3 / 750);
  background: url(../images/ico_zoom.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.reasonItem02_waterserverItemNotes {
  display: block;
  margin-top: calc(100vw * 46 / 750);
  text-align: center;
  color: #7f7f7f;
  font-size: calc(100vw * 20 / 750);
}
.reasonItem02 .cv {
  margin-top: calc(100vw * 110 / 750);
}
.reasonItem03 {
  position: relative;
  overflow: hidden;
}
.reasonItem03_water {
  padding-top: calc(100vw * 120 / 750);
}
.reasonItem03_waterItem {
  position: relative;
}
.reasonItem03_waterItemTtl {
  font-size: calc(100vw * 40 / 750);
  font-weight: normal;
  line-height: 1.65;
}
.reasonItem03_waterItemTxt {
  margin-top: calc(100vw * 25 / 750);
  font-size: calc(100vw * 26 / 750);
  line-height: 1.92307;
}
.reasonItem03_waterItemDetail {
  position: relative;
  top: calc(100vw * 420 / 750);
}
.reasonItem03_waterItemDetail > a {
  display: block;
  width: calc(100vw * 544 / 750);
  margin-left: auto;
  margin-right: auto;
  padding-top: 1.3em;
  padding-bottom: 1.3em;
  border: 2px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  color: #393939;
  font-size: calc(100vw * 26 / 750);
  line-height: 1;
}
.reasonItem03_waterItemDetail > a:before {
  display: inline-block;
  width: calc(100vw * 21 / 750);
  height: calc(100vw * 22 / 750);
  margin-right: calc(100vw * 8 / 750);
  vertical-align: calc(100vw * -3 / 750);
  background: url(../images/ico_zoom.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.reasonItem03_waterItemBadges {
  width: calc(100vw * 520 / 750);
  margin-top: calc(100vw * -112 / 750);
  margin-bottom: calc(100vw * 38 / 750);
  margin-left: auto;
  margin-right: auto;
}
.reasonItem03_waterItemImage {
  margin-left: calc(100vw* 50 / 750);
  margin-right: calc(100vw* 50 / 750);
}
.reasonItem03_waterItemNotes {
  display: block;
  margin-top: calc(100vw * 15 / 750);
  padding-left: calc(100vw * 50 / 750 + 1em);
  padding-right: calc(100vw * 50 / 750);
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc(100vw * 22 / 750);
  line-height: 1.8;
}
.reasonItem03_waterItem01:before {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc(100vw * 731 / 750);
  background: url(../images/water_bg01.png) no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  content: '';
}
.reasonItem03_waterItem01 .reasonItem03_waterItemContent {
  position: relative;
  padding-bottom: calc(100vw * 635 / 750);
}
.reasonItem03_waterItem02 {
  margin-top: calc(100vw * 120 / 750);
}
.reasonItem03_waterItem02:before {
  position: absolute;
  left: 0;
  bottom: calc(100vw * 68 / 750);
  width: 100%;
  height: calc(100vw * 732 / 750);
  background: url(../images/water_bg02.png) no-repeat;
  background-size: 100% auto;
  pointer-events: none;
  content: '';
}
.reasonItem03_waterItem02 .reasonItem03_waterItemContent {
  position: relative;
}
.reasonItem03_waterItem02 .reasonItem03_waterItemDetail {
  margin-top: calc(100vw * 588 / 750);
}
.reasonItem03_waterItem03 {
  margin-top: calc(100vw * 100 / 750);
  color: #393939;
}
.reasonItem03_waterItem04 {
  margin-top: calc(100vw * 50 / 750);
}
.reasonItem03_waterItem04 .inner {
  padding-left: 0;
  padding-right: 0;
  padding-bottom: calc(100vw * 48 / 750);
  margin-left: calc(100vw * 50 / 750);
  margin-right: calc(100vw * 50 / 750);
  background-color: #ebfbff;
}
.reasonItem03_waterItem04 .reasonItem03_waterItemTtl {
  text-align: center;
}
.reasonItem03_waterItem04 .reasonItem03_waterItemTtl small {
  font-size: calc(100vw * 28 / 750);
  font-weight: 300;
}
.reasonItem03_waterFeature {
  margin: calc(100vw * 50 / 750) 0;
  padding-left: calc(100vw * 48 / 750);
  padding-right: calc(100vw * 48 / 750);
}
.reasonItem03_waterFeatureItem {
  position: relative;
  padding-left: calc(100vw * 150 / 750);
}
.reasonItem03_waterFeatureItem:not(:first-child) {
  margin-top: calc(100vw * 80 / 750);
}
.reasonItem03_waterFeatureItem:last-child {
  margin-top: calc(100vw * 50 / 750);
}
.reasonItem03_waterFeatureItemIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw * 120 / 750);
}
.reasonItem03_waterFeatureItemTtl {
  font-size: calc(100vw * 28 / 750);
  font-weight: 500;
  color: #393939;
}
.reasonItem03_waterFeatureItemTxt {
  margin-top: calc(100vw * 5 / 750);
  font-size: calc(100vw * 24 / 750);
  line-height: 1.66667;
  color: #393939;
}
.reasonItem03_waterFeatureItemTxt small {
  display: block;
  margin-top: calc(100vw * 16 / 750);
  padding-left: 1em;
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc(100vw * 20 / 750);
  line-height: 1.4;
}
.reasonItem03_note {
  width: 90%;
  margin-inline: auto;
  padding: calc(100vw* 30 / 750) 5%;
  background: #fff;
}
.reasonItem03_note-ttl {
  margin-bottom: calc(100vw* 20 / 750);
  color: #027dc3;
  font-size: calc(100vw* 28 / 750);
  font-weight: 500;
  text-align: center;
}
.reasonItem03_note_txt {
  font-size: calc(100vw* 24 / 750);
}
.reasonItem03_waterFoot {
  margin-top: calc(100vw * 60 / 750);
  text-align: center;
  font-size: calc(100vw * 28 / 750);
  line-height: 1.57143;
}
.reasonItem03_waterBottle {
  margin-top: calc(100vw * 54 / 750);
  background: url(../images/water_bottle_bg_sp.jpg) no-repeat center center;
  background-size: cover;
}
.reasonItem03_waterBottleFlex {
  padding-top: calc(100vw * 90 / 750);
  padding-bottom: calc(100vw * 70 / 750);
}
.reasonItem03_waterBottleImage {
  position: relative;
  width: calc(100vw * 520 / 750);
  margin-left: auto;
  margin-right: auto;
}
.reasonItem03_waterBottleProduct {
  position: absolute;
  left: calc(100vw * 120 / 750);
  top: calc(100vw * 164 / 750);
  width: calc(100vw * 322 / 750);
}
.reasonItem03_waterBottleContent {
  margin-top: calc(100vw * 145 / 750);
}
.reasonItem03_waterBottleTtl {
  text-align: center;
  color: #fff;
  font-size: calc(100vw * 44 / 750);
  line-height: 1.45455;
}
.reasonItem03_waterBottleTtl small {
  display: block;
  font-size: calc(100vw * 28 / 750);
}
.reasonItem03_waterBottlePrice {
  margin-top: calc(100vw * 8 / 750);
  text-align: center;
  color: #fff;
  font-size: calc(100vw * 32 / 750);
  line-height: 1.2;
}
.reasonItem03_waterBottlePrice strong {
  font-size: calc(100vw * 66 / 750);
  font-weight: normal;
  font-family: 'DIN Alternate Bold';
  display: inline-block;
  padding: 0 3px 0 0;
  letter-spacing: 1.4px;
}
.reasonItem03_waterBottlePrice small {
  display: inline-block;
  font-size: calc(100vw * 26 / 750);
  font-weight: normal;
}
.reasonItem03_Btn {
  margin-top: 10px;
  text-align: center;
}
.reasonItem03_Btn > a {
  display: block;
  position: relative;
  width: calc(365 / 750 * 100vw);
  padding: calc(20 / 750 * 100vw) calc(50 / 750 * 100vw) calc(20 / 750 * 100vw) calc(80 / 750 * 100vw);
  margin: 0 auto;
  border: 2px solid #545454;
  border-radius: 100vw;
  background: #fff;
  color: #393939;
  font-size: calc(24 / 750 * 100vw);
  line-height: 1;
}
.reasonItem03_Btn > a:before {
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: calc(39 / 365 * 100%);
  width: calc(21 / 750 * 100vw);
  height: auto;
  aspect-ratio: 21 / 22;
  background: url(../images/ico_zoom.png) no-repeat;
  background-size: contain;
  content: "";
}
.reasonItem03_waterBottleNotes {
  display: block;
  margin-top: calc(100vw * 5 / 750);
  text-align: center;
  color: #fff;
  font-size: calc(100vw * 26 / 750);
}
.unitCont {
  background: #ebf9ff;
  padding: 15px 15px;
  width: 100%;
  max-width: 900px;
  margin-top: calc(100vw * 35 / 750);
}
.unitCont > figure {
  width: 100%;
  max-width: 632px;
  margin: 0 auto;
}
.reasonItem.reasonItem01 .p_commitMaintenance01__video01 {
  position: relative;
  width: calc(100% + 60px);
  margin: 27px 0 27px -30px;
}
.reasonItem.reasonItem01 .p_commitMaintenance01__video01 video {
  width: 100%;
  height: auto;
}
.reasonItem.reasonItem01 .p_commitMaintenance01__img01 {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 26.66%;
}
.reasonItem01_graph {
  margin-top: 5vw;
}
.reasonItem03_img {
  position: relative;
  width: calc(100% + 60px);
  margin: 27px 0 0px -30px;
}
/* -----------------------------------------------------------------------
## design ################################################################
----------------------------------------------------------------------- */
.design {
  padding-top: calc(100vw * 110 / 750);
  background: linear-gradient(180deg, #fff 0%, #eee 25%, #eee 25%, #eee 100%);
  /* background: linear-gradient(180deg, #eee 0%, #eee 55%, #ffffff 25%, #ffffff 100%);
  background: #eee;	*/
  padding-bottom: calc(100vw * 150 / 750);
}
.designTtl {
  font-size: calc(100vw * 46 / 750);
  font-weight: normal;
  line-height: 1.5;
  text-align: center;
  margin-bottom: calc(100vw * 40 / 750);
}
.designTtl.gray {
  color: #7f7f7f;
}
.designImage {
  margin-top: calc(100vw * 64 / 750);
  margin-left: calc(100vw * -10 / 750);
  margin-right: calc(100vw * -10 / 750);
  border-radius: calc(100vw * 16 / 750) calc(100vw * 16 / 750) 0 0;
  overflow: hidden;
}
.designMama {
  margin-left: calc(100vw * -10 / 750);
  margin-right: calc(100vw * -10 / 750);
  padding-left: calc(100vw * 48 / 750);
  padding-right: calc(100vw * 48 / 750);
  padding-bottom: calc(100vw * 102 / 750);
  border-radius: 0 0 calc(100vw * 16 / 750) calc(100vw * 16 / 750);
  background-color: #ede9e3;
}
.designMamaNo1 {
  width: calc(100vw * 172 / 750);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(100vw * -120 / 750);
}
.designMamaTtl {
  margin-top: calc(100vw * 32 / 750);
  text-align: center;
  font-size: calc(100vw * 36 / 750);
  line-height: 1.5;
}
.designMamaPoint {
  margin-top: calc(100vw * 56 / 750);
}
.designMamaPointTtl {
  text-align: center;
  color: #e75e67;
  font-size: calc(100vw * 30 / 750);
  font-weight: normal;
}
.designMamaPointTtl:before, .designMamaPointTtl:after {
  display: inline-block;
  width: calc(100vw * 26 / 750);
  height: calc(100vw * 46 / 750);
  content: '';
}
.designMamaPointTtl:before {
  margin-right: calc(100vw * 22 / 750);
  vertical-align: calc(100vw * -14 / 750);
  background: url(../images/design_mama_before.png) no-repeat;
  background-size: 100% 100%;
}
.designMamaPointTtl:after {
  margin-left: calc(100vw * 16 / 750);
  vertical-align: calc(100vw * -14 / 750);
  background: url(../images/design_mama_after.png) no-repeat;
  background-size: 100% 100%;
}
.designMamaPointList {
  margin-top: calc(100vw * 50 / 750);
}
.designMamaPointItem {
  position: relative;
  padding-left: calc(100vw * 150 / 750);
}
.designMamaPointItem:not(:first-child) {
  margin-top: calc(100vw * 60 / 750);
}
.designMamaPointItemIcon {
  position: absolute;
  left: 0;
  top: 0;
  width: calc(100vw * 120 / 750);
}
.designMamaPointItemTtl {
  font-size: calc(100vw * 28 / 750);
  font-weight: normal;
  line-height: 1.42857;
}
.designMamaPointItemTxt {
  margin-top: calc(100vw * 24 / 750);
  font-size: calc(100vw * 24 / 750);
  line-height: 1.66667;
}
.compactBody {
  display: flex;
  flex-direction: column;
  border: 1px solid #e7e6e6;
  padding-top: calc(100vw * 45 / 750);
  padding-bottom: calc(100vw * 45 / 750);
  padding-right: calc(100vw * 45 / 750);
  padding-left: calc(100vw * 45 / 750);
  width: 100%;
  max-width: 900px;
  margin: 5vw auto 0;
  background: #fff;
}
.compactBody > .txt {}
.compactBody > .txt > p.one {
  font-size: calc(100vw * 30 / 750);
  margin-bottom: calc(100vw * 15 / 750);
  font-weight: 600;
}
.compactBody > .txt > p.two {
  font-size: calc(100vw * 24 / 750);
  line-height: 1.8;
  margin: 0 0 10px;
  line-height: 1.83333;
}
.compactBody > figure {
  order: -1;
  margin-bottom: calc(100vw * 30 / 750);
}
.compactBody > .txt > figure {
  width: calc(100vw * 367 / 750);
  margin: 0 auto;
}
/* -----------------------------------------------------------------------
## sect ##################################################################
----------------------------------------------------------------------- */
.sectTtl {
  color: #7f7f7f;
}
.sectTtl > span {
  display: block;
  font-size: calc(100vw * 72 / 750);
  font-weight: normal;
  line-height: 1;
}
.sectTtl > strong {
  display: block;
  margin-top: calc(100vw * 20 / 750);
  font-size: calc(100vw * 22 / 750);
  font-weight: normal;
  line-height: 1;
}

/* -----------------------------------------------------------------------
## hikaku #############################################################
----------------------------------------------------------------------- */
.hikaku {
  background: #eee;
  padding-top: calc(100vw * 120 / 750);
  padding-bottom: calc(100vw * 120 / 750);
}
.hikaku > .inner {
  padding: 0;
}
.hikakuBox {
  background: url(../images/hikaku-bg-01.jpg) no-repeat center center;
  background-size: cover;
  padding-left: calc(100vw * 48 / 750);
  width: 100%;
  max-width: 1000px;
  margin-bottom: calc(100vw * 170 / 750);
  height: calc(100vw * 340 / 750);
}
.hikakuBox > div {
  width: calc(100vw * 326 / 750);
  background: #fff;
  padding: calc(100vw * 30 / 750);
  position: relative;
  top: calc(100vw * 150 / 750);
}
.hikakuBox > div > p.txt {
  font-size: calc(100vw * 18 / 750);
  margin-bottom: calc(100vw * 20 / 750);
}
.hikakuBox > div > .ttl {
  margin-bottom: calc(100vw * 20 / 750);
}
.hikakuBox > div > .reasonItem02_waterserverItemDetail {
  margin: 0;
}
.hikakuBox > div > .reasonItem02_waterserverItemDetail > a {
  width: 100%;
  font-size: calc(100vw * 18 / 750);
  border-radius: 0;
}
.hikakuBox > div > .reasonItem02_waterserverItemDetail > a:before {
  margin-right: calc(100vw * 5 / 750);
}
h3.hikakuTtl02 {
  font-size: calc(100vw * 36 / 750);
  text-align: center;
  font-weight: 400;
  margin: 0 0 calc(100vw * 50 / 750);
}
h3.hikakuTtl02 > span {
  display: block;
  margin: 0 auto calc(100vw * 25 / 750);
  width: calc(100vw * 386 / 750);
}
.hikaku-img-01 {
  width: calc(100vw * 650 / 750);
  margin: 0 auto;
}
/* -----------------------------------------------------------------------
## feature #############################################################
----------------------------------------------------------------------- */
.feature {
  background: #eee;
  padding: 0 0 calc(100vw * 120 / 750);
}
.feature > .inner {}
.feature > .inner > .designTtl {}
.feature > .inner > figure {
  margin: 0 auto calc(100vw * 75 / 750);
  width: calc(100vw * 626 / 750);
}
.faature > .inner > figure > img {}
ul.feat-list {}
ul.feat-list > li {
  padding: calc(100vw * 360 / 750) 0 0;
  margin: 0 0 90px;
  height: calc(100vw * 500 / 750);
}
ul.feat-list > li:first-child {
  background: url(../images/feat-bg-01_sp.jpg) no-repeat center right;
  background-size: contain;
  margin-bottom: calc(100vw * 620 / 750);
}
ul.feat-list > li:nth-child(2) {
  background: url(../images/feat-bg-02_sp.jpg) no-repeat center right;
  background-size: contain;
  margin-bottom: calc(100vw * 760 / 750);
}
ul.feat-list > li:nth-child(3) {
  background: url(../images/feat-bg-03_sp.jpg) no-repeat center right;
  background-size: contain;
  margin-bottom: calc(100vw * 780 / 750);
}
ul.feat-list > li:nth-child(4) {
  background: url(../images/feat-bg-04_sp.jpg) no-repeat center right;
  background-size: contain;
  margin-bottom: calc(100vw * 730 / 750);
}
ul.feat-list > li > .inner {
  overflow: visible;
}
ul.feat-list > li > .inner > div {
  background: #fff;
  padding: calc(100vw * 70 / 750);
  position: relative;
  width: 100%;
}
ul.feat-list > li > .inner > div:before {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw * 28 / 750);
  left: calc(100vw * 28 / 750);
  width: calc(100vw * 61 / 750);
  height: calc(100vw * 59 / 750);
}
ul.feat-list > li:first-child > div.inner > div:before {
  background: url(../images/feat-nm-01.png) no-repeat top left;
  background-size: contain;
}
ul.feat-list > li:nth-child(2) > div.inner > div:before {
  background: url(../images/feat-nm-02.png) no-repeat top left;
  background-size: contain;
}
ul.feat-list > li:nth-child(3) > div.inner > div:before {
  background: url(../images/feat-nm-03.png) no-repeat top left;
  background-size: contain;
}
ul.feat-list > li:nth-child(4) > div.inner > div:before {
  background: url(../images/feat-nm-04.png) no-repeat top left;
  background-size: contain;
}
ul.feat-list > li > div.inner > div:after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw * 30 / 750);
  right: calc(100vw * 30 / 750);
}
ul.feat-list > li:first-child > div.inner > div:after {
  background: url(../images/feat-icon-01_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 50 / 750);
  height: calc(100vw * 67 / 750);
}
ul.feat-list > li:nth-child(2) > div.inner > div:after {
  background: url(../images/feat-icon-02_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 31 / 750);
  height: calc(100vw * 67 / 750);
}
ul.feat-list > li:nth-child(3) > div.inner > div:after {
  background: url(../images/feat-icon-03_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 44 / 750);
  height: calc(100vw * 67 / 750);
}
ul.feat-list > li:nth-child(4) > div.inner > div:after {
  background: url(../images/feat-icon-04_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 32 / 750);
  height: calc(100vw * 66 / 750);
}
ul.feat-list > li:first-child {}
ul.feat-list > li:first-child > div.inner > div {}
ul.feat-list > li > div.inner > div > h4, ul.feat-list-two > li > div > .txt > h4 {
  font-size: 24px;
  margin: 0 0 15px;
}
ul.feat-list > li > div.inner > div > h4, ul.feat-list-two > li > div > .txt > h4 {
  font-size: calc(100vw * 34 / 750);
  margin: 0 0 calc(100vw * 20 / 750);
  line-height: 1.4705;
}
ul.feat-list > li > div.inner > div > figure {}
ul.feat-list > li:nth-child(3) > div.inner > div > figure {
  background: #ebf9ff;
  padding: 15px 20px;
}
ul.feat-list > li > .inner > div > p.label {
  position: absolute;
  right: calc(100vw * -25 / 750);
  top: calc(100vw * -65 / 750);
  width: calc(100vw * 90 / 750);
}
ul.feat-list > li > div.inner > div > p, ul.feat-list-two > li > div > .txt > p {
  margin: 0 0 calc(100vw * 20 / 750);
  font-size: calc(100vw * 26 / 750);
  line-height: 1.9;
}
ul.feat-list-two > li > div > .txt > p.label {
  width: calc(100vw * 61 / 750);
  height: calc(100vw * 59 / 750);
  position: absolute;
  left: calc(100vw * 30 / 750);
  top: calc(100vw * 30 / 750);
}
ul.feat-list-two {
  width: calc(100vw * 650 / 750);
  margin: 0 auto;
}
ul.feat-list-two > li {
  display: flex;
  flex-direction: column;
  margin: 0 0 calc(100vw * 100 / 750);
}
ul.feat-list-two > li > div {
  background: #fff;
  position: relative;
  width: 100%;
  padding: calc(100vw * 70 / 750);
}
ul.feat-list-two > li > figure {
  order: -1;
  flex: 0 0 auto;
}
ul.feat-list-two > li > div:after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw * 30 / 750);
  right: calc(100vw * 25 / 750);
}
ul.feat-list-two > li:first-child > div:after {
  background: url(../images/feat-icon-05_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 36 / 750);
  height: calc(100vw * 67 / 750);
}
ul.feat-list-two > li:nth-child(2) > div:after {
  background: url(../images/feat-icon-06_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 70 / 750);
  height: calc(100vw * 63 / 750);
}
ul.feat-list-two > li:nth-child(3) > div:after {
  background: url(../images/feat-icon-07_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 61 / 750);
  height: calc(100vw * 61 / 750);
}
ul.feat-list-two > li:nth-child(4) > div:after {
  background: url(../images/feat-icon-08_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 52 / 750);
  height: calc(100vw * 52 / 750);
}
ul.feat-list-two > li:nth-child(5) > div:after {
  background: url(../images/feat-icon-09_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw * 54 / 750);
  height: calc(100vw * 46 / 750);
}
ul.feat-list-two > li > div > .txt {}
ul.feat-list-two > li > div > .txt > p.cau {
  position: relative;
  padding: 0 0 0 calc(100vw * 23 / 750);
  font-size: 12px;
  line-height: 1.8;
  margin: calc(100vw * 10 / 750) 0 0;
}
ul.feat-list-two > li > div > .txt > p.cau:before {
  content: "※";
  position: absolute;
  left: 0;
  top: 0;
}
ul.feat-list-two > li > div > .txt > label {}
ul.feat-list-two > li > div > .txt > label > img {}
ul.feat-list-two > li > div > figure {
  flex: 0 0 auto;
}
ul.feat-list-two > li > div > figure > img {}
/* -----------------------------------------------------------------------
## family #############################################################
----------------------------------------------------------------------- */
.family {
  padding: calc(100vw * 120 / 750) 0 0;
  margin-bottom: 3.5rem;
}
ul.fam-list {
  width: 100%;
  max-width: 85%;
  margin: 0 auto;
}
ul.fam-list li.slick-slide {
  position: relative;
  border: 2px solid #eeeeee;
  padding: calc(100vw * 40 / 750) calc(100vw * 60 / 750);
}
ul.fam-list li.slick-slide:nth-child(2) {
  display: grid;
  place-content: center;
}
ul.fam-list li:first-child, ul.fam-list li:nth-child(3) {
  /*margin: 0 0 calc(100vw * 90 / 750); */
}
ul.fam-list li:nth-child(2) {
  /*margin: 0 0 calc(100vw * 500 / 750); */
}
ul.fam-list li div.txt h4 {
  font-size: calc(100vw * 30 / 750);
  font-weight: normal;
  line-height: 1.53333;
  margin: 0 0 calc(100vw * 35 / 750);
}
ul.fam-list li:first-child div.txt h4 {
  margin: calc(100vw * 80 / 750) 0 calc(100vw * 25 / 750);
}
ul.fam-list li div.txt p {
  font-size: calc(100vw * 24 / 750);
  line-height: 1.9;
}
ul.fam-list li figure {
  width: 90%;
  margin: 0 auto;
  /*width: calc(100vw * 596 / 750); */
}
ul.fam-list li:first-child figure {}
ul.fam-list li:nth-child(2) figure {
  /*position: absolute;
  bottom: calc(100vw * -410 / 750);
  left: calc(100vw * 50 / 750);
  z-index: 1; */
}
ul.fam-list li:nth-child(3) figure {
  /*margin-left: calc(100vw * 50 / 750); */
}
ul.fam-list > li > figure > img {}
ul.fam-list li:nth-child(2) div.txt {}
ul.fam-list li div.txt {
  margin: 0 0 calc(100vw * 30 / 750);
  position: relative;
  z-index: 2;
}
.familySlider .slick-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 22px;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}
.familySlider .slick-arrow.slick-disabled {
  opacity: .4;
  cursor: default;
}
.familySlider .slick-prev:before, .familySlider .slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #393939;
  border-left: 1px solid #393939;
  font-size: 0;
  content: '';
}
.familySlider .slick-prev {
  left: calc(100vw* -70 / 750);
  z-index: 10;
}
.familySlider .slick-prev::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.familySlider .slick-next {
  right: calc(100vw* -70 / 750);
  left: auto;
}
.familySlider .slick-next::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.familySlider .slick-prev::before, .familySlider .slick-next::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 0px;
  content: "";
  border-top: 1px solid rgb(57, 57, 57);
  border-left: 1px solid rgb(57, 57, 57);
}
.familySlider .slick-dots {
  bottom: -8vw;
}
.familySlider .slick-dots li button:before {
  font-size: 10px;
  opacity: 1;
  color: #eee;
}
.familySlider .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #008ed3;
}
.familySlider .slick-dots li, .familySlider .slick-dots li button {
  margin: 0 3px;
}
/* -----------------------------------------------------------------------
## interview #############################################################
----------------------------------------------------------------------- */
.interview {
  position: relative;
  width: 100%;
  padding-top: calc(100vw * 200 / 750);
  overflow: hidden;
  background: #ebf6fb;
  padding-bottom: calc(100vw * 120 / 750);
}
.interview .inner {
  overflow: visible;
}
.interviewTtl {
  position: relative;
}
.interviewTtl::before {
  content: '';
  display: inline-block;
  width: calc(269 / 750 * 100vw);
  height: auto;
  aspect-ratio: 269 / 60;
  background: url(../images/img_interview.png) no-repeat center center;
  background-size: contain;
  position: absolute;
  left: 0;
  bottom: calc(100% + 1.8vw);
}
.interview__txt {
  font-size: calc(100vw * 24 / 750);
  margin-top: calc(40 / 750 * 100vw);
}
.interviewList {
  margin-top: calc(100vw * 84 / 750);
  margin-left: calc(100vw * 100 / 750);
}
.slick-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 22px;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}
.slick-arrow.slick-disabled {
  opacity: .4;
  cursor: default;
}
.slick-prev:before, .slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #393939;
  border-left: 1px solid #393939;
  font-size: 0;
  content: '';
}
.slick-prev {
  left: calc(100vw * -78 / 750);
}
.slick-prev:before {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.slick-next {
  right: calc(100vw * 22 / 750);
  left: auto;
}
.slick-next:before {
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.interviewItem {
  width: calc(100vw * 530 / 750);
}
.interviewItem:not(:first-child) {
  margin-left: calc(100vw * 70 / 750);
}
.interviewItemImage {}
.interviewItemContent {
  padding-top: calc(100vw * 48 / 750);
  padding-left: calc(100vw * 40 / 750);
  padding-right: calc(100vw * 40 / 750);
  padding-bottom: calc(100vw * 45 / 750);
}
.interviewItemTtl {
  font-size: calc(100vw * 32 / 750);
  font-weight: 400;
  line-height: 1.5625;
}
.interviewItemTxt {
  margin-top: calc(100vw * 24 / 750);
  font-size: calc(100vw * 24 / 750);
  line-height: 1.6;
}
.sectTtl.interviewTtl > span {
  font-family: 'DIN Alternate Bold';
  display: block;
  font-size: calc(100vw * 50 / 750);
  font-weight: bold;
  line-height: 1;
  color: #000;
  letter-spacing: 2.4px;
}
/* -----------------------------------------------------------------------
## price #################################################################
----------------------------------------------------------------------- */
.price {
  margin-top: calc(100vw * 120 / 750);
  margin-bottom: calc(100vw* 60 / 750);
}
.price .sectTtl.priceTtl {}
.price .sectTtl.priceTtl > span {
  color: #000;
  font-size: calc(100vw * 50 / 750);
  text-align: center;
  letter-spacing: 2px;
  font-weight: 700;
}
.price .sectTtl.priceTtl > strong {
  text-align: center;
}
.priceLead {
  margin-top: calc(100vw * 40 / 750);
  font-size: calc(100vw * 40 / 750);
  line-height: 1.5;
  text-align: center;
}
.priceBox {
  margin-top: calc(100vw * 50 / 750);
  padding-top: calc(100vw * 70 / 750);
  padding-bottom: calc(100vw * 50 / 750);
  padding-left: calc(100vw * 64 / 750);
  padding-right: calc(100vw * 64 / 750);
  background-color: #f8f8f8;
}
.priceBoxCatch {
  display: block;
  text-align: center;
  font-size: calc(100vw * 34 / 750);
  font-weight: normal;
  white-space: nowrap;
}
.priceBoxCatch > span {
  position: relative;
  display: inline-block;
}
.priceBoxCatch > span:before {
  position: absolute;
  left: 50%;
  top: calc(100vw * -16 / 750);
  width: calc(100vw * 7 / 750);
  height: calc(100vw * 7 / 750);
  border-radius: calc(100vw * 4 / 750);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #008fd0;
  content: '';
}
.priceBoxFlex {
  margin-top: calc(100vw * 68 / 750);
}
.priceBoxImage {
  width: calc(100vw * 273 / 750);
  margin-left: auto;
  margin-right: auto;
}
.priceBoxContent {
  margin-top: calc(100vw * 48 / 750);
}
.priceBoxTtl {
  text-align: center;
  font-size: calc(100vw * 24 / 750);
  font-weight: normal;
}
.priceBoxPrice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: calc(100vw * 20 / 750);
  justify-content: center;
}
.priceBoxPrice > dt {
  padding: calc(100vw * 8 / 750) calc(100vw * 14 / 750);
  background-color: #008fd0;
  text-align: center;
  color: #fff;
  font-size: calc(100vw * 20 / 750);
  line-height: 1.4;
  height: calc(100vw * 72 / 750);
}
.priceBoxPrice > dd {
  margin-left: calc(100vw * 20 / 750);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #008fd0;
  font-size: calc(100vw * 76 / 750);
  line-height: 1;
  position: relative;
  top: calc(100vw * -5 / 750);
}
.priceBoxPrice > dd > span:nth-child(2) {
  margin-left: calc(100vw * 12 / 750);
  font-size: calc(100vw * 36 / 750);
  top: calc(100vw * 9 / 750);
  position: relative;
}
.priceBoxPrice > dd > span:nth-child(2) small {
  display: block;
  margin-top: 2px;
  font-size: calc(100vw * 20 / 750);
}
.priceBoxPrice > dd > span:first-child {
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
  font-size: calc(100vw * 86 / 750);
}
.priceBoxNotes {
  display: block;
  margin-top: calc(100vw * 1 / 750);
  text-align: center;
  color: #7f7f7f;
  font-size: calc(100vw * 20 / 750);
}
.priceZero {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  margin-top: calc(100vw * 80 / 750);
  flex-wrap: wrap;
}
.priceZeroItem {
  width: 47%;
  padding: calc(100vw * 20 / 750) calc(100vw * 20 / 750);
  border: 1px solid #008fd0;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.priceZeroItem:nth-child(1), .priceZeroItem:nth-child(2) {
  margin-bottom: calc(100vw * 42 / 750);
}
.priceZeroItem:first-child {
  border: 1px solid #d33661;
}
.priceZeroItem:first-child .priceZeroItemPrice, .priceZeroItem:first-child .priceZeroItemTtl {
  color: #d33661;
}
.priceZeroItem:first-child > .priceZeroItemTtl {}
.priceZeroItemTtl {
  text-align: center;
  font-size: calc(100vw * 22 / 750);
  font-weight: normal;
  line-height: 1.36364;
}
.priceZeroItemIcon {
  width: calc(100vw * 78 / 750);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(100vw * 12 / 750);
}
.priceZeroItem:first-child > div > figure {
  width: calc(100vw * 54 / 750);
  height: calc(100vw * 73 / 750);
}
.priceZeroItem:nth-child(2) > div > figure {
  width: calc(100vw * 49 / 750);
  height: calc(100vw * 81 / 750);
}
.priceZeroItem:nth-child(3) > div > figure {
  width: calc(100vw* 95 / 750);
  height: calc(100vw* 61 / 750);
}
.priceZeroItem:nth-child(4) > div > figure {
  width: calc(100vw * 72 / 750);
  height: calc(100vw * 68 / 750);
}
.priceZeroItemPrice {
  margin-left: calc(100vw * 18 / 750);
  color: #008fd0;
  font-size: calc(100vw * 46 / 750);
  line-height: 1;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.priceZeroItemPrice > strong {
  font-size: calc(100vw * 110 / 750);
  font-weight: normal;
  line-height: 1;
}
.priceZeroItemPrice > strong.is-small {
  font-size: calc(100vw * 52 / 750);
  padding-top: 0.3em;
  display: block;
}
.priceZero > .priceZeroItem > p.label {
  position: absolute;
  left: calc(100vw * -30 / 750);
  top: calc(100vw * -35 / 750);
  width: calc(100vw * 80 / 750);
}
.priceNotes {
  display: block;
  padding-left: 1em;
  margin-top: calc(100vw * 25 / 750);
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc(100vw * 22 / 750);
  line-height: 1.36364;
  font-weight: 300;
}
.price .cv {
  margin-top: calc(100vw * 20 / 750);
}
.priceBnr {
  position: relative;
  margin-top: 13vw;
}
.priceBnr::before {
  content: "";
  position: absolute;
  top: -8.6vw;
  left: 50%;
  width: 6.5vw;
  aspect-ratio: 49/35;
  transform: translateX(-50%);
  background: url(../images/price_arrow.svg) no-repeat 0 0 / contain;
}
/* -----------------------------------------------------------------------
## faq ###################################################################
----------------------------------------------------------------------- */
.faq {
  padding-top: calc(100vw * 90 / 750);
  padding-bottom: calc(100vw * 120 / 750);
  background: #eee;
  margin-top: 5rem;
}
.sectTtl.faqTtl {}
.sectTtl.faqTtl > span {
  color: #000;
  font-size: calc(100vw * 50 / 750);
  text-align: center;
  letter-spacing: 2px;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.faqHeading .sectTtl.faqTtl > strong {
  text-align: center;
}
.faqContainer {
  margin-top: calc(100vw * 45 / 750);
  border-top: 1px solid #e5e5e5;
}
.faqItem {
  padding: calc(100vw * 30 / 750) calc(100vw * 8 / 750);
  border-bottom: 1px solid #e5e5e5;
}
.faqItem > dt {
  position: relative;
  padding-left: calc(100vw * 40 / 750);
  font-size: calc(100vw * 26 / 750);
  line-height: 1.78571;
}
.faqItem > dt:before {
  position: absolute;
  left: 0;
  top: calc(100vw * 8 / 750);
  width: calc(100vw * 24 / 750);
  height: calc(100vw * 31 / 750);
  background: url(../images/faq_ico_q.png) no-repeat center center;
  background-size: 100% 100%;
  content: '';
}
.faqItem > dd {
  position: relative;
  padding-left: calc(100vw * 40 / 750);
  margin-top: calc(100vw * 15 / 750);
  font-size: calc(100vw * 22 / 750);
  line-height: 1.78571;
}
.faqItem > dd:before {
  position: absolute;
  left: 0;
  top: calc(100vw * 6 / 750);
  width: calc(100vw * 25 / 750);
  height: calc(100vw * 31 / 750);
  background: url(../images/faq_ico_a.png) no-repeat center center;
  background-size: 100% 100%;
  content: '';
}
.faqItem > dd small {
  color: #7f7f7f;
  font-size: calc(100vw * 24 / 750);
}
/* -----------------------------------------------------------------------
## support ###############################################################
----------------------------------------------------------------------- */
.support {
  padding-top: calc(100vw * 90 / 750);
}
.sectTtl.supportTtl > strong {
  text-align: center;
}
.support .sectTtl.supportTtl > span {
  color: #000;
  font-size: calc(100vw * 50 / 750);
  text-align: center;
  letter-spacing: 2px;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.supportCatch {
  font-weight: normal;
  margin-top: calc(100vw * 45 / 750);
  font-size: calc(100vw * 34 / 750);
  line-height: 1.5;
  text-align: center;
  font-weight: 500;
}
.supportContainer {
  margin-top: calc(100vw * 75 / 750);
}
.supportItem:not(:first-child) {
  padding-top: calc(100vw * 120 / 750);
}
.supportItemTtl {
  position: relative;
  font-size: calc(100vw * 36 / 750);
  font-weight: normal;
  line-height: 1.55556;
  text-align: center;
}
.supportItemTtl > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: calc(100vw * 65 / 750);
  height: calc(100vw * 65 / 750);
  border-radius: 250px;
  background-color: #008fd0;
  color: #fff;
  font-size: calc(100vw * 39 / 750);
  line-height: 1;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
  margin: 0 auto calc(100vw * 20 / 750);
}
.supportItemFlex {
  margin-top: calc(100vw * 30 / 750);
}
.supportItemImage {
  width: calc(100vw * 319 / 750);
  margin-left: auto;
  margin-right: auto;
}
.supportItemContent {
  margin-top: calc(100vw * 32 / 750);
}
.supportItemTxt {
  font-size: calc(100vw * 24 / 750);
  line-height: 1.92857;
  width: calc(100vw * 550 / 750);
  margin: 0 auto;
}
.supportItemBox {
  margin-top: calc(100vw * 25 / 750);
  border: 1px solid #008fd0;
  padding: calc(100vw * 30 / 750);
}
.supportItemBox01 dl dt {
  text-align: center;
  font-size: calc(100vw * 28 / 750);
  line-height: 1;
  margin-bottom: calc(100vw * 16 / 750);
}
.supportItemBox01 dl dd {
  margin-top: calc(100vw * 16 / 750);
  text-align: center;
}
.supportItemBox01 dl dd a {
  display: block;
  text-align: center;
  color: #393939;
}
.supportItemBox01 dl dd strong {
  position: relative;
  display: inline-block;
  padding-left: calc(100vw * 80 / 750);
  font-size: calc(100vw * 56 / 750);
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.supportItemBox01 dl dd strong:before {
  position: absolute;
  left: 0;
  top: calc(100vw * 6 / 750);
  width: calc(100vw * 75 / 750);
  height: calc(100vw * 43 / 750);
  background: url(../images/ico_freedial.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}
.supportItemBox01 dl dd small {
  display: block;
  margin-top: calc(100vw * 5 / 750);
  text-align: center;
  color: #7f7f7f;
  font-size: calc(100vw * 22 / 750);
  font-weight: 100;
}
.supportItemBox02 {
  padding: calc(100vw * 30 / 750) calc(100vw * 100 / 750);
  border: 1px solid #008fd0;
}
.supportItemBox02 dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: relative;
  position: relative;
  justify-content: center;
}
.supportItemBox02 dl:nth-child(1) dt {
  margin-right: calc(100vw * 16 / 750);
  margin-bottom: calc(100vw * 3 / 750);
  font-size: calc(100vw * 30 / 750);
  line-height: 1;
}
.supportItemBox02 dl:nth-child(1) dd {
  font-size: calc(100vw * 30 / 750);
  line-height: 1;
}
.supportItemBox02 dl:nth-child(1) dd strong {
  font-size: calc(100vw * 58 / 750);
  font-weight: normal;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
  letter-spacing: 1px;
}
.supportItemBox02 dl:nth-child(1) dd small {
  position: absolute;
  right: 0;
  top: calc(100% + 4px);
  color: #7f7f7f;
  font-size: 14px;
  line-height: 1;
  left: 0;
  margin: auto;
  width: calc(100vw * 164 / 750);
  font-size: calc(100vw * 24 / 750);
}
.supportItemBox02 dl:nth-child(2) {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-top: calc(100vw * 55 / 750);
  padding-top: calc(100vw * 25 / 750);
  border-top: 1px solid #d0cfca;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.supportItemBox02 dl:nth-child(2) dt {
  padding: 0.3em 0.7em 0.4em;
  background-color: #008fd0;
  border-radius: 0.8em;
  color: #fff;
  font-size: calc(100vw * 22 / 750);
  line-height: 1;
}
.supportItemBox02 dl:nth-child(2) dd {
  position: relative;
  margin-top: calc(100vw * 10 / 750);
  padding-left: calc(100vw * 6 / 750);
  font-size: calc(100vw * 24 / 750);
  line-height: 1;
  color: #595959;
}
.supportItemBox02 dl:nth-child(2) dd strong {
  position: absolute;
  left: 100%;
  top: calc(100vw * -45 / 750);
  padding-left: calc(100vw * 22 / 750);
  color: #008fd0;
  font-size: calc(100vw * 64 / 750);
  font-weight: normal;
  line-height: 1;
  white-space: nowrap;
}
.support .cv {
  margin-top: calc(100vw * 85 / 750);
  margin-bottom: calc(100vw * 120 / 750);
  padding: 0;
}
.hokkaido-delivery_notes {
  margin: 26px 15px 35px;
  padding: 10px;
  border: 1px solid #00a2de;
  border-radius: 5px;
}
.hokkaido-delivery_notes h2 {
  padding-bottom: 10px;
  border-bottom: 1px solid #00a2de;
  color: #00a2de;
  font-size: 1.6rem;
}
.hokkaido-delivery_notes li {
  margin-top: 10px;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 1.2rem;
  line-height: 1.6;
}
/* -----------------------------------------------------------------------
## aboutus ###############################################################
----------------------------------------------------------------------- */
.aboutus {
  padding-top: calc(100vw * 60 / 750);
  padding-bottom: calc(100vw * 90 / 750);
}
.aboutusLogo {
  width: calc(100vw * 302 / 750);
  margin-left: auto;
  margin-right: auto;
  margin-top: calc(100vw * 45 / 750);
}
.sectTtl.aboutusTtl > span {
  color: #000;
  font-size: calc(100vw * 50 / 750);
  text-align: center;
  letter-spacing: 2px;
  font-family: 'DIN Alternate Bold';
  font-weight: normal;
}
.sectTtl.aboutusTtl > strong {
  text-align: center;
}
.aboutusContainer {
  margin-top: calc(100vw * 60 / 750);
}
.aboutusColumn table {
  width: 100%;
  text-align: left;
  font-size: calc(100vw * 26 / 750);
}
.aboutusColumn table:first-child {
  border-top: 1px solid #d1d1d1;
}
.aboutusColumn table th, .aboutusColumn table td {
  padding-top: calc(100vw * 30 / 750);
  padding-bottom: calc(100vw * 30 / 750);
  border-bottom: 1px solid #d1d1d1;
  font-size: calc(100vw * 27 / 750);
}
.aboutusColumn table th.last, .aboutusColumn table td.last {
  border: none;
}
.aboutusColumn table th {
  padding-left: calc(100vw * 16 / 750);
  font-weight: 500;
}
.aboutusColumn table td {
  padding-left: calc(100vw * 60 / 750);
  font-weight: 400;
}

/* -----------------------------------------------------------------------
## footer ################################################################
----------------------------------------------------------------------- */
.footer {
  padding-top: calc(100vw * 80 / 750);
  padding-bottom: calc(100vw * 80 / 750);
  background-color: #655f5b;
}

.footerCopyright {
  text-align: center;
  color: #afacaa;
  font-size: 12px;
  line-height: 1;
}

/* -----------------------------------------------------------------------
## float #################################################################
----------------------------------------------------------------------- */

.float {
  z-index: 9999;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  padding-top: calc(100vw * 20 / 750);
  padding-bottom: calc(100vw * 20 / 750);
  background-color: #ffffff;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform .4s ease-out;
  transition: -webkit-transform .4s ease-out;
  transition: transform .4s ease-out;
  transition: transform .4s ease-out, -webkit-transform .4s ease-out;
}

.float.is-visible {
  -webkit-transform: translateY(0%);
          transform: translateY(0%);
}

.floatInner {
  padding-left: calc(100vw * 20 / 750);
  padding-right: calc(100vw * 16 / 750);
}

.floatFlex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}


.floatTel {
  width: calc( 100vw * 242 / 750);
}


.floatPop {
  width: calc(100vw * 86 / 750);
  margin-left: auto;
  margin-top: calc(100vw * -6 / 750);
}

.floatCv {
  width: calc(100vw * 400 / 750);
}

.floatCv > a {
  display: block;
  padding: 1em 0;
  background-color: #55b6d5;
  border-radius: 1.5em;
  text-align: center;
  color: #fff;
  font-size: calc( 100vw * 24 / 750);
  line-height: 1;
}

/* -----------------------------------------------------------------------
## colorbox ##############################################################
----------------------------------------------------------------------- */
#cboxLoadedContent {
  margin-bottom: 0;
}

#colorbox {
  overflow: visible !important;
}

#cboxClose {
  top: calc( 100vw * -48 / 750);
  right: 0;
  width: calc( 100vw * 35 / 750);
  height: calc( 100vw * 35 / 750);
  min-height: 0;
  background-image: url(../images/modal_close.png);
  background-size: 100% 100%;
}

/* -----------------------------------------------------------------------
## modalPresent ##########################################################
----------------------------------------------------------------------- */
.modalPresent {
  width: 100%;
  margin: 0;
  background-color: #f3f1eb;
}

.modalPresentInner {
  padding: calc( 100vw * 80 / 750) calc( 100vw * 76 / 750) calc( 100vw * 116 / 750);
}

.modalPresentHeading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.modalPresentLabel {
  padding: calc( 100vw * 6 / 750) calc( 100vw * 10 / 750);
  border: 1px solid #d33661;
  color: #d33661;
  font-size: calc( 100vw * 22 / 750);
  line-height: 1;
}

.modalPresentLabel:not(:first-child) {
  margin-left: calc( 100vw * 8 / 750);
}

.modalPresentTtl {
  padding-top: calc( 100vw * 28 / 750);
  text-align: center;
}

.modalPresentTtl > small {
  display: block;
  font-size: calc( 100vw * 28 / 750);
  font-weight: normal;
}

.modalPresentTtl > strong {
  display: block;
  margin-top: calc( 100vw * 8 / 750);
  font-size: calc( 100vw * 40 / 750);
  font-weight: normal;
}

.modalPresentImage {
  position: relative;
  margin-top: calc( 100vw * 54 / 750);
}

.modalPresentImage > img {
  display: block;
  width: 100%;
  border-radius: 8px;
}

.modalPresentImage > span {
  position: absolute;
  right: calc( 100vw * -26 / 750);
  top: 0;
  width: calc( 100vw * 139 / 750);
  margin-top: calc( 100vw * -32 / 750);
}

.modalPresentTxt {
  margin-top: calc( 100vw * 48 / 750);
  font-size: calc( 100vw * 24 / 750);
  line-height: 1.83333;
}

.modalPresentNotes {
  display: block;
  padding-left: 1em;
  margin-top: calc( 100vw * 54 / 750);
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc( 100vw * 20 / 750);
  line-height: 1.4;
}

.modalPresentClose {
  margin-top: calc( 100vw * 32 / 750);
}

.modalPresentClose > button {
  display: block;
  width: calc( 100vw * 226 / 750);
  padding-top: 1.05em;
  padding-bottom: 1.1em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  font-size: calc( 100vw * 28 / 750);
  line-height: 1;
  cursor: pointer;
}

.modalPresentClose > button:before {
  display: inline-block;
  width: calc( 100vw * 17 / 750);
  height: calc( 100vw * 17 / 750);
  margin-right: calc( 100vw * 28 / 750);
  vertical-align: middle;
  background: url(../images/ico_close.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}

/* -----------------------------------------------------------------------
## modalPresentDetail ####################################################
----------------------------------------------------------------------- */
.modalPresentDetail {
  width: 100%;
  margin: 0;
  background-color: #f3f1eb;
}

.modalPresentDetailInner {
  padding: calc( 100vw * 84 / 750) calc( 100vw * 60 / 750) calc( 100vw * 104 / 750);
}

.modalPresentDetailTtl {
  text-align: center;
  color: #7f7f7f;
  font-size: calc( 100vw * 44 / 750);
  font-weight: normal;
}

.modalPresentDetailContent {
  margin-top: calc( 100vw * 98 / 750);
}

.modalPresentDetailSect {
  padding-bottom: calc( 100vw * 80 / 750);
  border-bottom: 1px solid #e5e5e5;
}

.modalPresentDetailSect:not(:first-child) {
  padding-top: calc( 100vw * 80 / 750);
}

.modalPresentDetailSectTtl {
  font-size: calc( 100vw * 36 / 750);
  font-weight: normal;
}

.modalPresentDetailTxt {
  margin-top: calc( 100vw * 52 / 750);
  font-size: calc( 100vw * 26 / 750);
  line-height: 1.61538;
}

.modalPresentDetailTxt li {
  position: relative;
  padding-left: calc( 100vw * 32 / 750);
}

.modalPresentDetailTxt li:before {
  position: absolute;
  left: calc( 100vw * 12 / 750);
  top: calc( 100vw * 12 / 750);
  width: calc( 100vw * 6 / 750);
  height: calc( 100vw * 6 / 750);
  border-radius: calc( 100vw * 3 / 750);
  background-color: #393939;
  content: '';
}

.modalPresentDetailTxt li ul {
  padding-left: calc( 100vw * 24 / 750);
}

.modalPresentDetailNotes {
  margin-top: calc( 100vw * 40 / 750);
  color: #7f7f7f;
  font-size: calc( 100vw * 22 / 750);
  line-height: 1.45455;
}

.modalPresentDetailNotes li {
  padding-left: 2.5em;
  text-indent: -2.5em;
}

.modalPresentDetailCv {
  margin-top: calc( 100vw * 80 / 750);
}

.modalPresentDetailCvTtl {
  text-align: center;
  font-size: calc( 100vw * 32 / 750);
  font-weight: normal;
}

.modalPresentDetailCvTtl:before, .modalPresentDetailCvTtl:after {
  display: inline-block;
  width: calc( 100vw * 34 / 750);
  height: calc( 100vw * 67 / 750);
  vertical-align: calc( 100vw * -18 / 750);
  content: '';
}

.modalPresentDetailCvTtl:before {
  margin-right: 0.5em;
  background: url(../images/modal_cv_before.png) no-repeat;
  background-size: 100% 100%;
}

.modalPresentDetailCvTtl:after {
  margin-left: 0.5em;
  background: url(../images/modal_cv_after.png) no-repeat;
  background-size: 100% 100%;
}

.modalPresentDetailCvBtn {
  width: 100%;
  margin: calc( 100vw * 24 / 750) auto 0;
}

.modalPresentDetailCvBtn > a {
  position: relative;
  display: block;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  background-color: #55b6d5;
  border-radius: 1.95em;
  text-align: center;
  color: #fff;
  font-size: calc( 100vw * 28 / 750);
  line-height: 1.42857;
}

.modalPresentDetailCvBtn > a:after {
  position: absolute;
  right: calc( 100vw * 48 / 750);
  top: 50%;
  width: calc( 100vw * 23 / 750);
  height: calc( 100vw * 20 / 750);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: url(../images/cv_arw.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}

.modalPresentDetailClose {
  margin-top: calc( 100vw * 120 / 750);
}

.modalPresentDetailClose > button {
  display: block;
  width: calc( 100vw * 226 / 750);
  padding-top: 1.05em;
  padding-bottom: 1.1em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  font-size: calc( 100vw * 28 / 750);
  line-height: 1;
  cursor: pointer;
}

.modalPresentDetailClose > button:before {
  display: inline-block;
  width: calc( 100vw * 17 / 750);
  height: calc( 100vw * 17 / 750);
  margin-right: calc( 100vw * 28 / 750);
  vertical-align: middle;
  background: url(../images/ico_close.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}

/* -----------------------------------------------------------------------
## modalProduct ##########################################################
----------------------------------------------------------------------- */
.modalProduct {
  width: 100%;
  margin: 0;
  background-color: #f3f1eb;
}

.modalProductInner {
  padding: calc( 100vw * 74 / 750) 0 calc( 100vw * 104 / 750);
}

.modalProductLogo {
  margin-left: auto;
  margin-right: auto;
}

.modalProduct01 .modalProductLogo {
  width: calc( 100vw * 358 / 750);
}

.modalProduct02 .modalProductLogo {
  width: calc( 100vw * 276 / 750);
}

.modalProduct03 .modalProductLogo {
  width: calc( 100vw * 246 / 750);
}

.modalProductTtl {
  margin-top: calc( 100vw * 16 / 750);
  text-align: center;
  color: #7f7f7f;
  font-size: calc( 100vw * 22 / 750);
  font-weight: normal;
}

.modalProductContent {
  margin-top: calc( 100vw * 96 / 750);
}

.modalProductSect {
  position: relative;
}

.modalProductSect:not(:first-child) {
  margin-top: calc( 100vw * 160 / 750);
}

.modalProductSectNum {
  position: absolute;
  top: 0;
  color: #7f7f7f;
  font-size: calc( 100vw * 30 / 750);
}

.modalProductSect:nth-child(2n+1) .modalProductSectNum {
  left: calc( 100vw * 60 / 750);
}

.modalProductSect:nth-child(2n) .modalProductSectNum {
  right: calc( 100vw * 60 / 750);
}

.modalProductSectImage {
  width: calc( 100vw * 560 / 750);
}

.modalProductSect:nth-child(2n+1) .modalProductSectImage {
  margin-left: auto;
}

.modalProductSectContent {
  margin-top: calc( 100vw * 64 / 750);
}

.modalProductSect:nth-child(2n+1) .modalProductSectContent {
  padding-left: calc( 100vw * 130 / 750);
  padding-right: calc( 100vw * 60 / 750);
}

.modalProductSect:nth-child(2n) .modalProductSectContent {
  padding-left: calc( 100vw * 60 / 750);
  padding-right: calc( 100vw * 130 / 750);
}

.modalProductSectTtl {
  font-size: calc( 100vw * 36 / 750);
  font-weight: normal;
  line-height: 1.55556;
}

.modalProductSect > .modalProductSectTtl {
  text-align: center;
}

.modalProductSectTxt {
  display: block;
  margin-top: calc( 100vw * 64 / 750);
  font-size: calc( 100vw * 26 / 750);
  line-height: 1.92308;
}

.modalProductSectTxt + .modalProductSectTxt {
  margin-top: 16px;
}

.modalProductSectFigure {
  margin-top: calc( 100vw * 64 / 750);
}

.modalProductSect > .modalProductSectFigure {
  width: calc( 100vw * 590 / 750);
  margin-top: calc( 100vw * 70 / 750);
  margin-left: auto;
  margin-right: auto;
}

.modalProductSectNotes {
  display: block;
  margin-top: calc( 100vw * 44 / 750);
  color: #7f7f7f;
  font-size: calc( 100vw * 22 / 750);
  line-height: 1.5;
}

.modalProductNotes {
  display: block;
  margin-top: calc( 100vw * 60 / 750);
  padding-left: calc( 100vw * 60 / 750 + 1.5em);
  padding-right: calc( 100vw * 60 / 750);
  text-indent: -1em;
  color: #7f7f7f;
  font-size: calc( 100vw * 22 / 750);
  line-height: 1.5;
}

.modalProductClose {
  margin-top: calc( 100vw * 80 / 750);
}

.modalProductClose > button {
  display: block;
  width: calc( 100vw * 226 / 750);
  padding-top: 1.05em;
  padding-bottom: 1.1em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  font-size: calc( 100vw * 28 / 750);
  line-height: 1;
  cursor: pointer;
}

.modalProductClose > button:before {
  display: inline-block;
  width: calc( 100vw * 17 / 750);
  height: calc( 100vw * 17 / 750);
  margin-right: calc( 100vw * 28 / 750);
  vertical-align: middle;
  background: url(../images/ico_close.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}

ul.cau-list {
  margin-top: calc( 100vw * 36 / 750);
}
ul.cau-list > li {
  position: relative;
  margin-top: 5px;
  margin-left: calc( 100vw * 8 / 750);
  margin-right: calc( 100vw * -8 / 750);
  padding-left: calc( 100vw * 20 / 750);
  font-weight: 300;
  color: #7f7f7f;
  font-size: calc( 100vw * 20 / 750);
  line-height: 1.6;
}
ul.cau-list > li:before {
  content: '※';
  position: absolute;
  left: 0;
  top: 0;
}
ul.cau-list > li > span {
  font-weight: 500;
}

/* -----------------------------------------------------------------------
## modalArea #############################################################
----------------------------------------------------------------------- */
.modalArea {
  width: 100%;
  margin: 0;
  background-color: #f3f1eb;
}

.modalAreaInner {
  padding: calc( 100vw * 86 / 750) calc( 100vw * 40 / 750) calc( 100vw * 98 / 750);
}

.modalAreaTtl {
  text-align: center;
  font-size: calc( 100vw * 32 / 750);
  font-weight: normal;
  line-height: 1.5625;
}

.modalAreaFlex {
  margin-top: calc( 100vw * 60 / 750);
}

.modalAreaMap {
  width: calc( 100vw * 602 / 750);
  margin-left: auto;
  margin-right: auto;
}

.modalAreaContent {
  margin-top: calc( 100vw * 55 / 750);
}

.modalAreaTxt {
  display: block;
  text-align: center;
  font-size: calc( 100vw * 24 / 750);
  line-height: 1.83333;
}

.modalAreaNotes {
  display: block;
  margin-top: calc( 100vw * 40 / 750);
  text-align: center;
  color: #7f7f7f;
  font-size: calc( 100vw * 20 / 750);
  line-height: 1.8;
}

.modalAreaClose {
  margin-top: calc( 100vw * 60 / 750);
}

.modalAreaClose > button {
  display: block;
  width: calc( 100vw * 226 / 750);
  padding-top: 1.05em;
  padding-bottom: 1.1em;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid #d0cfca;
  border-radius: 1.9em;
  text-align: center;
  font-size: calc( 100vw * 28 / 750);
  line-height: 1;
  cursor: pointer;
}

.modalAreaClose > button:before {
  display: inline-block;
  width: calc( 100vw * 17 / 750);
  height: calc( 100vw * 17 / 750);
  margin-right: calc( 100vw * 28 / 750);
  vertical-align: middle;
  background: url(../images/ico_close.png) no-repeat;
  background-size: 100% 100%;
  content: '';
}

/* -----------------------------------------------------------------------
## modalZoom #############################################################
----------------------------------------------------------------------- */
.modalZoom {
  width: 100%;
  height: 100%;
  margin: 0;
  background-color: #fff;
}

.modalZoomInner {
  width: 100%;
  height: 100%;
}

.modalZoomFlex {
  position: relative;
  width: 100%;
  height: 100%;
}

.modalZoomMain {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: calc( 100% - (100vw * 200 / 750 ));
}

.modalZoomSlider {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.modalZoomSlider .slick-list,
.modalZoomSlider .slick-track {
  height: 100%;
}

.modalZoomSlider.slick-initialized .slick-slide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.modalZoomSlide {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  padding: calc( 100vw * 60 / 750);
  cursor: none;
  overflow: hidden;
}

.modalZoomZoomer {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: calc( 100vw * 280 / 750);
  height: calc( 100vw * 280 / 750);
  border-radius: calc( 100vw * 16 / 750);
  background: rgba(255, 255, 255, 0.6) url(../images/ico_wipe.png) no-repeat center center;
  background-size: calc( 100vw * 143 / 750) calc( 100vw * 125 / 750);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  pointer-events: none;
}

.modalZoomThumb {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: calc( 100vw * 200 / 750);
  background-color: #f3f1eb;
}

.modalZoomThumbInner {
  padding-top: calc( 100vw * 38 / 750);
  padding-bottom: calc( 100vw * 38 / 750);
  padding-left: calc( 100vw * 60 / 750);
  padding-right: calc( 100vw * 60 / 750);
}

.modalZoomThumb .slick-arrow {
  width: calc( 100vw * 60 / 750);
  height: calc( 100vw * 200 / 750);
  z-index: 1;
  cursor: pointer;
}

.modalZoomThumb .slick-arrow.slick-disabled {
  opacity: .4;
  cursor: default;
}

.modalZoomThumb .slick-prev:before,
.modalZoomThumb .slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: calc( 100vw * 15 / 750);
  height: calc( 100vw * 15 / 750);
  border-top: 2px solid #393939;
  border-left: 2px solid #393939;
  font-size: 0;
  content: '';
}

.modalZoomThumb .slick-prev {
  left: calc( 100vw * -60 / 750);
}

.modalZoomThumb .slick-prev:before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.modalZoomThumb .slick-next {
  right: calc( 100vw * -60 / 750);
}

.modalZoomThumb .slick-next:before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
          transform: translateX(-50%) translateY(-50%) rotate(135deg);
}

.modalZoomThumb ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.modalZoomThumb ul li {
  width: calc( 100vw * 124 / 750);
  border: 2px solid #f3f1eb;
  border-radius: calc( 100vw * 8 / 750);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: hidden;
  cursor: pointer;
}

.modalZoomThumb ul li:not(:first-child) {
  margin-left: calc( 100vw * 4 / 750);
}

.modalZoomThumb ul li.slick-current {
  border-color: #55b6d5;
  pointer-events: none;
  cursor: default;
}

.modalZoomThumb ul li.slick-current:hover {
  opacity: 1;
}

.overlayModal {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10000;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.overlayModalHead {
  position: absolute;
  left: 0;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: calc( 100vw * 120 / 750);
  padding-left: calc( 100vw * 34 / 750);
  padding-right: calc( 100vw * 34 / 750);
  background-color: #f3f1eb;
}

.overlayModalClose {
  position: relative;
  padding-left: calc( 100vw * 72 / 750);
  font-size: calc( 100vw * 28 / 750);
  line-height: 2;
  cursor: pointer;
}

.overlayModalClose:before {
  position: absolute;
  left: 0;
  top: 0;
  width: calc( 100vw * 56 / 750);
  height: calc( 100vw * 56 / 750);
  border: 1px solid #d1d1d1;
  border-radius: calc( 100vw * 28 / 750);
  content: '';
}

.overlayModalClose:after {
  position: absolute;
  left: calc( 100vw * 29 / 750);
  top: calc( 100vw * 28 / 750);
  width: calc( 100vw * 8 / 750);
  height: calc( 100vw * 8 / 750);
  border-top: 1px solid #393939;
  border-left: 1px solid #393939;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
          transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  content: '';
}

.overlayModalContent {
  position: absolute;
  left: 0;
  top: calc( 100vw * 120 / 750);
  bottom: 0;
  width: 100%;
  overflow-y: scroll;
}

#modalZoom01 .slick-arrow{
    border: none;
    background: none;
}

/* -----------------------------------------------------------------------
## modalWater #############################################################
----------------------------------------------------------------------- */
.modalWater {
  width: 100%;
  margin: 0;
  background-color: #ffffff;
}
.modalWaterInner {
  padding: calc(63 / 750 * 100vw) calc(32 / 750 * 100vw);
}
.modalWaterTtl {
  text-align: center;
  font-size: calc(34 / 750 * 100vw);
  letter-spacing: .025em;
  line-height: 1.2;
  margin-bottom: calc(40 / 750 * 100vw);
}
.modalWaterTtl span {
  color: #a6925d;
  font-size: calc(50 / 750 * 100vw);
  font-weight: 700;
}
.modalwaterImg {
  display: flex;
  justify-content: space-between;
  row-gap: calc(13 / 750 * 100vw);
  flex-wrap: wrap;
  margin-bottom: calc(30 / 750 * 100vw);
}
.modalwaterImg li {
  width: 32%;
}
.modalwaterImg li img {
  width: 100%;
  height: auto;
}
.modalWaterWrap {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: auto;
  overflow-y: hidden;
  scrollbar-gutter: stable both-edges;
}
.modalWaterTable {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  line-height: 1;
  -webkit-overflow-scrolling: touch;
}
.modalWaterTable th {
  font-size: calc(20 / 750 * 100vw);
  padding: calc(10 / 750 * 100vw) 0;
  line-height: 1.5;
}
.modalWaterTable td {
  width: calc(112 / 585 * 100%);
  font-size: calc(20 / 750 * 100vw);
  padding: calc(18 / 750 * 100vw) 0;
  text-align: center;
  font-weight: 500;
  border-right: 1px solid #9c9c9c;
  border-bottom: 1px solid #d7d7d7;
}
.modalWaterTable tr:first-child th {
  background: #9c9c9c;
  color: #fff;
  border-right: 1px solid #fff;
}
.modalWaterTable tr:not(:first-child) th {
  background: #e5f4fa;
  color: #008fd0;
  border-bottom: 1px solid #d7d7d7;
  width: calc(117 / 585 * 100%);
}
.modalWaterTable tr:not(:first-child) th span {
  font-size: calc(14 / 750 * 100vw);
}
.modalWaterTable tr:not(:first-child) td:nth-last-child(4) {
  width: calc(132 / 585 * 100%);
  color: #008fd0;
}
.modalWaterTable tr:not(:first-child) td:last-child {
  border-right: none;
}
.modalWaterNotes {
  margin-top: calc(40 / 750 * 100vw);
}
.modalWaterNotes li {
  margin-bottom: calc(40 / 750 * 100vw);
  font-size: calc(20 / 750 * 100vw);
  letter-spacing: .025em;
  color: #7f7f7f;
  line-height: 1.8;
}
.modalWaterNotes li a {
  color: #7f7f7f;
  text-decoration: underline;
}

/* -----------------------------------------------------------------------
## award ###################################################################
----------------------------------------------------------------------- */
.award {
  padding: 10vw 0 12vw;
  /*background: #f8f8f8 url(../images/award_bg_sp.jpg) no-repeat 50% 100% / 100% auto; */
  background: url(../images/award_bg_sp.png) no-repeat;
  background-size: cover;
  margin-top: 10vw;
}
.awardTtl01 {
  width: calc(600 / 750 * 100vw);
  margin-inline: auto;
}
.awardTtl02 {
  margin: 10vw auto 5vw;
  text-align: center;
}
.awardList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5vw;
}
/* -----------------------------------------------------------------------
## ranking ###################################################################
----------------------------------------------------------------------- */
.ranking {
  padding: calc(100vw * 50 / 750) 0;
  ;
  background: url(../images/bg_ranking.jpg) no-repeat center / cover;
}
.ranking__inr {
  margin: 0 calc(100vw* 50 / 750);
}
.ranking__ttl {
  margin-bottom: calc(100vw * 50 / 750);
}
.ranking__reason {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: calc(100vw * (20 / 750));
}
.ranking__reason li {
  width: 100%;
}
/* -----------------------------------------------------------------------
## reviews ##################################################################
----------------------------------------------------------------------- */
.reviews {
  padding: 12vw 0;
}
.reviews .inner {
  overflow: visible;
}
.sectTtl.reviewsTtl > span {
  font-family: 'DIN Alternate Bold';
  display: block;
  font-size: calc(100vw * 50 / 750);
  font-weight: bold;
  line-height: 1;
  color: #000;
  letter-spacing: 2.4px;
}
.reviews__txt {
  font-size: calc(100vw * 24 / 750);
  margin-top: calc(40 / 750 * 100vw);
}
.reviewsBox {
  padding: 5.3vw;
  margin-top: calc(36 / 750 * 100vw);
  background-color: #f8f8f8;
  border-radius: 10px;
}
.reviewsBoxHead {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #e4f0f6;
  padding: 2.6vw;
  border-radius: 10px;
}
.reviewsBoxHeadTtl {
  color: #393939;
  font-size: 4vw;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}
.reviewsBoxHeadNum {
  color: #008fd0;
  font-family: 'DIN Alternate Bold';
  font-size: 11.4vw;
  line-height: 1;
}
.reviewsBoxHeadStar {
  width: 31%;
  margin: 0 3%;
}
.reviewsBoxBody {
  margin-top: 4.5vw;
  padding-top: 8vw;
  /* padding: 35px 9% 20px; */
}
.reviewsItem {
  padding: 4vw 0;
  border-bottom: 2px dotted #b3b3b3;
}
.reviewsItemHead {
  margin-bottom: 1vw;
}
.reviewsItemName {
  display: inline;
  font-size: 2.93vw;
}
.reviewsItemStar {
  display: inline;
  color: #008fd0;
  font-size: 2.93vw;
}
.reviewsItemMore {
  width: fit-content;
  margin-left: auto;
  margin-top: 1em;
  color: #7f7f7f;
  font-size: 3.46vw;
  cursor: pointer;
}
.reviewsItemText, .reviewsItemTextAll {
  font-size: 3.733vw;
  line-height: 1.4;
}
.reviewsItemTextAll {
  display: none;
}
/*slider*/
.reviewsSlider .slick-next, .reviewsSlider .slick-prev {
  top: -8vw;
  width: 3vw;
  height: 5vw;
  background: url(../images/reviews_arrow.svg) no-repeat 0 0 / contain;
  transform: none;
  cursor: pointer;
}
.reviewsSlider .slick-next.slick-disabled, .reviewsSlider .slick-prev.slick-disabled {
  opacity: .5;
}
.reviewsSlider .slick-next::before, .reviewsSlider .slick-prev::before {
  content: "";
  border: none;
}
.reviewsSlider .slick-next {
  right: 0;
}
.reviewsSlider .slick-prev {
  right: 18.5vw;
  left: auto;
  transform: rotate(180deg);
}
.reviewsSlider .slick-arrow {
  border: none;
}
.reviewsSlider .slick-num {
  position: absolute;
  top: -8.5vw;
  right: 7vw;
  color: #393939;
  font-size: 3.733vw;
  font-weight: 400;
}
/* -----------------------------------------------------------------------
## new_model ##################################################################
----------------------------------------------------------------------- */
.new_model {
  margin-top: 15vw;
}
.new_model h2 {
  margin-bottom: 50px;
  text-align: center;
}
.new_model .reasonItemTtl {
  color: #008fd0;
}
.new_model .reasonItemTtl > strong > span {
  font-weight: 700;
  color: #000000;
}
/* -----------------------------------------------------------------------
## add_new ##################################################################
----------------------------------------------------------------------- */
.add_new {
  margin: 15vw 0;
}
.add_new .reasonItemTtl {
  color: #008fd0;
}
.add_new .reasonItemTtl > strong > span {
  font-weight: 700;
  color: #000000;
}
.add_new .reasonItemTtl sup {
  font-size: 16px;
}
.add_new .img {
  text-align: center;
  margin: 10vw 0;
}
.add_new .reasonItemNote {
  width: 100%;
}
/* -----------------------------------------------------------------------
## panelList ##################################################################
----------------------------------------------------------------------- */
.panelList {
  background: #eeeeee;
  padding-top: 10vw;
  padding-bottom: 10vw;
  margin-top: 10vw;
  margin-bottom: 10vw;
}
.panelList h3 {
  text-align: center;
  font-size: calc(40 / 750 * 100vw);
  font-weight: 400;
  margin-bottom: 2rem;
}
.panelSlider {
  width: 90%;
  margin: 0 auto;
}
.panelList section.box {}
.panelList section.box .flex_box {
  display: flex;
  flex-direction: column-reverse;
}
.panelList section.box .flex_box div.txt {
  background: #fff;
  position: relative;
  width: 100%;
  padding: calc(100vw* 70 / 750);
  min-height: 450px;
}
.panelList .box01 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-01_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 50 / 750);
  height: calc(100vw* 67 / 750);
}
.panelList .box02 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-02_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 31 / 750);
  height: calc(100vw* 67 / 750);
}
.panelList .box03 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 30 / 750);
  background: url(../images/feat-icon-03_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 44 / 750);
  height: calc(100vw* 67 / 750);
}
.panelList .box04 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 30 / 750);
  background: url(../images/feat-icon-04_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 32 / 750);
  height: calc(100vw* 66 / 750);
}
.panelList .box05 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-05_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 36 / 750);
  height: calc(100vw* 67 / 750);
}
.panelList .box06 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-06_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 70 / 750);
  height: calc(100vw* 63 / 750);
}
.panelList .box07 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-07_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 61 / 750);
  height: calc(100vw* 61 / 750);
}
.panelList .box08 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-08_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 52 / 750);
  height: calc(100vw* 52 / 750);
}
.panelList .box09 .flex_box .txt::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(100vw* 30 / 750);
  right: calc(100vw* 25 / 750);
  background: url(../images/feat-icon-09_sp.png) no-repeat top left;
  background-size: contain;
  width: calc(100vw* 54 / 750);
  height: calc(100vw* 46 / 750);
}
.panelList section.box .flex_box div.txt .label {
  margin: 0 0 calc(100vw* 20 / 750);
  font-size: calc(100vw* 26 / 750);
  line-height: 1.9;
  width: calc(100vw* 61 / 750);
  height: calc(100vw* 59 / 750);
  position: absolute;
  left: calc(100vw* 30 / 750);
  top: calc(100vw* 30 / 750);
}
.panelList section.box .flex_box div.txt h4 {
  font-size: calc(100vw* 34 / 750);
  margin: 0 0 calc(100vw* 20 / 750);
  line-height: 1.4705;
}
.panelList section.box .flex_box div.txt p {
  margin: 0 0 calc(100vw* 20 / 750);
  font-size: calc(100vw* 26 / 750);
  line-height: 1.9;
}
.panelList section.box .flex_box div.txt p.cau {
  font-size: 12px;
  text-indent: -1em;
  padding-left: 1em;
}
.panelList section.box .flex_box figure picture img {
  width: 100%;
}
.panelList .slick-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 22px;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}
.panelList .slick-arrow.slick-disabled {
  opacity: .4;
  cursor: default;
}
.panelList .slick-prev:before, .panelList .slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #393939;
  border-left: 1px solid #393939;
  font-size: 0;
  content: '';
}
.panelList .slick-prev {
  left: calc(100vw* -25 / 750);
  z-index: 10;
}
.panelList .slick-prev::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.panelList .slick-next {
  right: calc(100vw* -25 / 750);
  left: auto;
}
.panelList .slick-next::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.panelList .slick-prev::before, .panelList .slick-next::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 0px;
  content: "";
  border-top: 1px solid rgb(57, 57, 57);
  border-left: 1px solid rgb(57, 57, 57);
}
.panelList .slick-dots {
  bottom: -8vw;
}
.panelList .slick-dots li button:before {
  font-size: 10px;
  opacity: 1;
  color: #ffffff;
}
.panelList .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #008ed3;
}
.panelList .slick-dots li, .panelList .slick-dots li button {
  margin: 0;
}
.panelList .box08 .flex_box figure img {
/*  object-fit: cover;
  height: 185px;
  width: 100%;
  object-position: top;*/
}
.panelList .box03 .flex_box .txt figure {
  background: #ebf9ff;
  padding: 1rem 1.5rem;
}
/* -----------------------------------------------------------------------
## room_interior ##################################################################
----------------------------------------------------------------------- */
.room_interior {
  margin-top: 10vw;
}
.room_interior .inner {
  margin: auto;
  width: 100%;
  padding: 0;
}
.room_interior h3 {
  text-align: center;
  color: #7f7f7f;
  margin-bottom: 30px;
  font-size: calc(100vw* 60 / 750);
  font-weight: 400;
}
.room_interior .slick-slide {
  margin: 0 10px;
}
.room_interior .slick-arrow {
  width: 30px;
  height: 30px;
  border: 1px solid #d1d1d1;
  border-radius: 22px;
  cursor: pointer;
  z-index: 1;
  background: #fff;
}
.room_interior .slick-arrow.slick-disabled {
  opacity: .4;
  cursor: default;
}
.room_interior .slick-prev:before, .room_interior .slick-next:before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 1px solid #393939;
  border-left: 1px solid #393939;
  font-size: 0;
  content: '';
}
.room_interior .slick-prev {
  left: calc(100vw* 25 / 750);
  z-index: 10;
}
.room_interior .slick-prev::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}
.room_interior .slick-next {
  right: calc(100vw* 25 / 750);
  left: auto;
}
.room_interior .slick-next::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(135deg);
  transform: translateX(-50%) translateY(-50%) rotate(135deg);
}
.room_interior .slick-prev::before, .room_interior .slick-next::before {
  position: absolute;
  left: 50%;
  top: 50%;
  display: block;
  width: 6px;
  height: 6px;
  font-size: 0px;
  content: "";
  border-top: 1px solid rgb(57, 57, 57);
  border-left: 1px solid rgb(57, 57, 57);
}