@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(ajax-loader.gif) center center no-repeat;
}

@font-face {
  font-family: slick;
  font-weight: 400;
  font-style: normal;
  src: url(fonts/slick.eot);
  src: url("fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./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;
}

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

.hover:hover {
  opacity: 0.6;
}

/* -----------------------------------------------------------------------
## 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");
}

@font-face{font-family:"NotoSansCJKjp";src:url('../fonts/NotoSansCJKjp-Regular.otf')}
@font-face{font-family:"NotoSansCJKjp-Medium";src:url('../fonts/NotoSansCJKjp-Medium.otf')}
@font-face{font-family:"NotoSansCJKjp-Bold";src:url('../fonts/NotoSansCJKjp-Bold.otf')}
@font-face{font-family:"sawarabigothic-medium";src:url('../fonts/sawarabigothic-medium.otf')}


.fourthBtn
{display: flex; align-items: center; justify-content: center; height: calc( 100vw * 115 / 750); width: calc( 100vw * 564 / 750); background: #ed5600; color: #fff; text-align: center; border-radius: 30px; position: relative; font-weight: bold; font-size: calc( 100vw * 28 / 750); line-height: 1.3em;}

.fourthBtn img
{width: 22px; height: 22px; position: absolute; top: 50%; right: 10px; transform: translateY(-50%);}

.fourthBtn:hover
{opacity: 0.8;}


/* -----------------------------------------------------------------------
## Header ################################################################
----------------------------------------------------------------------- */
.header
{width: 100%; text-align: center; background: #fff; padding: 13px 0 4px 0;}

.header a
{display: inline-block;}

.header img
{width: calc( 100vw * 376 / 750);}

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

/* -----------------------------------------------------------------------
## mv ####################################################################
----------------------------------------------------------------------- */
.mv {
  background-color: #887d68;
}

/* -----------------------------------------------------------------------
## cv ####################################################################
----------------------------------------------------------------------- */
.cv {
    padding-top: calc( 100vw * 40 / 750);
    padding-bottom: calc( 100vw * 55 / 750);
}

.cv .cvArea {
    position: relative;
    width: calc( 100vw * 650 / 750);
    margin-left: auto;
    margin-right: auto;
    padding-top: calc( 100vw * 25 / 750);
}

.cv .cvArea_balloon {
    position: absolute;
    left: 0;
    top: calc( 100vw * 18 / 750);
    width: calc( 100vw * 124 / 750);
}

.cv .cvArea_txt {
    width: 100%;
    max-width: 508px;
    margin: 0 auto;
}

.cv .cvArea_txt img,
.cv .cvArea .cvBtn img {
  margin: 0 auto;
}

.cv .cvArea .cvBtn > a {
    position: relative;
    display: block;
    margin-top: 1.5em;
    text-align: center;
}

/* -----------------------------------------------------------------------
## bnr ###################################################################
----------------------------------------------------------------------- */
.bnr {

}

.bnr .bnrArea > p {

}

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

/* -----------------------------------------------------------------------
## present ###############################################################
----------------------------------------------------------------------- */
.present {
    padding-top: calc( 100vw * 120 / 750);
    padding-bottom: calc( 100vw * 50 / 750);
    background-size: 100% auto;
    background: #cce9f6;
}

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

.presentTtl {
  width: 100%;
}

.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;
}

/* -----------------------------------------------------------------------
## 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 > strong {
  font-size: calc( 100vw * 50 / 750);
  font-weight: normal;
}

.reasonTtl > strong > 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);
    color: #7f7f7f;
    font-size: calc( 100vw * 46 / 750);
    font-weight: 300;
}

.reasonItemTtl > strong {
    font-weight: 500;
    color: #000;
}

.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_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 * 80 / 750);
    color: #393939;
}

.reasonItem03_waterItem04 {
    margin-top: calc(100vw * 30 / 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-top: calc( 100vw * 50 / 750);
    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_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.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 * 102 / 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_waterBottleNotes {
    display: block;
    margin-top: calc( 100vw * 5 / 750);
    text-align: center;
    color: #fff;
    font-size: calc( 100vw * 26 / 750);
}

.reasonItem03 .cv {
  margin-top: calc( 100vw * 70 / 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;
}

/* -----------------------------------------------------------------------
## design ################################################################
----------------------------------------------------------------------- */
.design {
    padding-top: calc( 100vw * 110 / 750);
/*     background: linear-gradient(180deg, #eee 0%, #eee 25%, #ffffff 25%, #ffffff 100%); */
    background: linear-gradient(180deg, #eee 0%, #eee 58%, #ffffff 25%, #ffffff 100%);
    padding-bottom: calc( 100vw * 55 / 750);
}

.designTtl {
    font-size: calc( 100vw * 46 / 750);
    font-weight: normal;
    line-height: 1.5;
    text-align: center;
    color: #7f7f7f;
    margin-bottom: calc( 100vw * 40 / 750);
}

.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 {
    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: 0 auto;
    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 {
    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.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.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.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.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.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.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.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.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:first-child > div.inner > div > figure {
    width: calc(100vw * 92 / 750);
}
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 {
    margin: 0 0 calc(100vw * 100 / 750);
}
ul.feat-list-two > li:nth-child(even) {
    flex-direction: row-reverse;
}
ul.feat-list-two > li > div {
    background: #fff;
    position: relative;
    width: 100%;
    padding: calc(100vw * 70 / 750);
}
ul.feat-list-two > li > figure {
    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.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.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.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.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.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 {
    border-top: 1px solid #e7e6e6;
    padding: calc(100vw * 120 / 750) 0 0;
}
ul.fam-list {
    width: 100%;
    max-width: 870px;
    margin: 0 auto;
}
ul.fam-list > li {
    position: relative;
}
ul.fam-list > li:first-child {
    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 * 40 / 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 * 26 / 750);
    line-height: 1.9;
}
ul.fam-list > li > figure {
    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 * -270 / 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;
}


/* -----------------------------------------------------------------------
## interview #############################################################
----------------------------------------------------------------------- */
.interview {
    position: relative;
    width: 100%;
    padding-top: calc( 100vw * 110 / 750);
    overflow: hidden;
    background: #ebf6fb;
    padding-bottom: calc( 100vw * 120 / 750);
}

.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: normal;
    line-height: 1;
    color: #000;
    letter-spacing: 2.4px;
}

/* -----------------------------------------------------------------------
## price #################################################################
----------------------------------------------------------------------- */
.price {
    margin-top: calc( 100vw * 120 / 750);
}
.price .sectTtl.priceTtl {}

.price .sectTtl.priceTtl > span {
    color: #000;
    font-size: calc(100vw * 50 / 750);
    text-align: center;
    letter-spacing: 2px;
}
.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 * 20 / 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 * 105 / 750);
}

/* -----------------------------------------------------------------------
## faq ###################################################################
----------------------------------------------------------------------- */
.faq {
    padding-top: calc( 100vw * 90 / 750);
    padding-bottom: calc( 100vw * 120 / 750);
    background: #eee;
}

.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);
}

.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 * 100 / 750);
    padding: 0;
}

/* -----------------------------------------------------------------------
## キャンペーン概要 #######################################################
----------------------------------------------------------------------- */

.hmBlk24
{width: 100%; padding: 20px 0;}

.hmBlk24 .container
{width: 100%; margin: 0 auto; padding: 0 calc( 100vw * 50 / 750);}

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

.hmBlk24Head h2
{font-size: calc(100vw * 28 / 750);; font-family:"NotoSansCJKjp-Bold"; font-weight: normal; background: #009fe8; color: #fff; display: inline-block; border-radius: 30px; height: 50px; line-height: 50px; min-width: calc(100vw * 480 / 750);}

.hmBlk24Intro
{width: 100%; padding: calc(100vw * 110 / 750) 0 0 0;}

.hmBlk24Sec1
{width: 100%;}

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

.hmBlk24SecHead h3
{color: #009fe8; font-size: calc(100vw * 30 / 750); font-family:"NotoSansCJKjp-Medium"; font-weight: normal;}

.hmBlk24SecIntro
{width: 100%; padding: 30px 0 0 0;}

.hmBlk24Sec1Intro p
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; line-height: 2;}

.hmBlk24Sec1Intro ul li
{font-size: calc(100vw * 24 / 750); font-family: "NotoSansCJKjp"; color: #7f7f7f; line-height: 1.6; position: relative; padding-left: calc( 100vw * 25 / 750);}

.hmBlk24Sec1Intro ul li span
{display: block; position: absolute; top: -1px; left: 0;}

.hmBlk24Sec2
{width: 100%; padding: calc(100vw * 110 / 750) 0 0 0;}

.hmBlk24Sec2IntroRow
{width: 100%;}

.hmBlk24Sec2IntroRow+.hmBlk24Sec2IntroRow
{margin: 25px 0 0 0;}

.hmBlk24Sec2Intro ul li
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; line-height: 2;}

.hmBlk24Sec2Intro ul li span
{font-family:"NotoSansCJKjp-Bold"; display: inline-block; margin: 0 3px 0 0;}

.hmBlk24Sec2Intro p
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f;}

.hmBlk24Sec2Intro p a
{color: #009fe8; text-decoration: underline !important;}

.hmBlk24Sec2Intro p a:hover
{text-decoration: none !important;}

.hmBlk24Sec3
{width: 100%; padding: calc(100vw * 110 / 750) 0 0 0;}

.hmBlk24Sec3 ul li
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; line-height: 2; position: relative;}

.hmBlk24Sec3Intro ul li span
{font-family:"NotoSansCJKjp-Bold"; display: inline-block; margin: 0 3px 0 0;}

.hmBlk24Sec3 ul.hmBlk24Sec3Intro-list li:after
{content: ""; width: 3px; height: 3px; background: #7f7f7f; border-radius: 50%; position: absolute; top: 0.9em; left: 0;}

.hmBlk24Sec3 ul li+li
{margin: calc(100vw * 20 / 750) 0 0 0;}

.hmBlk24Sec3 ul.hmBlk24Sec3Intro-list li
{margin: 0 0 0 0; padding: 0 0 0 calc(100vw * 24 / 750);}

.hmBlk24Sec4
{width: 100%; padding: calc(100vw * 110 / 750) 0 0 0;}

.hmBlk24Sec4IntroRow1
{width: 100%;}

.hmBlk24Sec4IntroRow1 p
{font-size: calc(100vw * 16 / 750); color: #7f7f7f;}

.hmBlk24Sec4IntroRow1 ul li
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; line-height: 2; position: relative;}

.hmBlk24Sec4IntroRow1 ul li span
{font-family:"NotoSansCJKjp-Bold"; display: inline-block; margin: 0 3px 0 0;}

.hmBlk24Sec4IntroRow1 ul li:after
{content: ""; width: 3px; height: 3px; background: #7f7f7f; border-radius: 50%; position: absolute; top: 13px; left: 0;}

.hmBlk24Sec4IntroRow2
{width: 100%; padding: calc(100vw * 40 / 750) 0; text-align: center;}

.hmBlk24Sec4IntroRow2Btn
{display: inline-block; font-size: calc( 100vw * 24 / 750); color: #009fe8; text-align: center; font-family:"NotoSansCJKjp-Medium"; height: calc( 100vw * 105 / 750); min-width: calc( 100vw * 542 / 750); border: 2px solid #009fe8; border-radius: 50px; padding: calc( 100vw * 12 / 750) 0 0 0; position: relative;}

.hmBlk24Sec4IntroRow2Btn span
{display: block; font-size: calc( 100vw * 28 / 750); font-family:"NotoSansCJKjp-Bold";}

.hmBlk24Sec4IntroRow2Btn img
{width: 25px; height: 25px; position: absolute; top: 50%; right: 7px; transform: translateY(-50%);}

.hmBlk24Sec4IntroRow2Btn:hover
{opacity: 0.8;}

.hmBlk24Sec5
{width: 100%; padding: 110px 0 0 0;}

.hmBlk24Sec5IntroRow
{width: 100%;}

.hmBlk24Sec5IntroRow+.hmBlk24Sec5IntroRow
{margin: calc(100vw * 20 / 750) 0 0 0;}

.hmBlk24Sec5IntroRow h5
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp-Bold"; color: #7f7f7f; padding: 0 0 7px 0;}

.hmBlk24Sec5IntroRow ul li
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; position: relative; padding: 0 0 0 16px;}

.hmBlk24Sec5IntroRow ul li span
{position: absolute; top: 0px; left: 0;}

.hmBlk24Sec5IntroRow ul li+li
{margin: calc(100vw * 20 / 750) 0 0 0;}

.hmBlk24Sec5IntroRow ul li ul
{padding: calc(100vw * 15 / 750) 0 0 5px;}

.hmBlk24Sec5IntroRow ul li li
{font-size: calc(100vw * 24 / 750); font-family:"NotoSansCJKjp"; color: #7f7f7f; position: relative; padding: 0 0 0 13px;}

.hmBlk24Sec5IntroRow ul li li:after
{content: ""; width: 3px; height: 3px; background: #7f7f7f; border-radius: 50%; position: absolute; top: 9px; left: 0;}

.hmBlk24Sec5IntroRow ul li li+li
{margin: calc(100vw * 15 / 750) 0 0 0;}


/* -----------------------------------------------------------------------
## aboutus ###############################################################
----------------------------------------------------------------------- */
.aboutus {
    padding-top: calc(100vw * 140 / 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-top: calc(100vw * -6 / 750);
}

.floatCv {
  width: calc(100vw * 622 / 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;
}

.floatCv > a:after {
  position: absolute;
  right: 32px;
  top: 50%;
  width: 15px;
  height: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/cv_arw.png) no-repeat center / contain;
  content: "";
}

/* -----------------------------------------------------------------------
## 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: '';
}

/* -----------------------------------------------------------------------
## 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%;
}

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