@charset "UTF-8";

/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
  tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

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

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
  color: inherit;
  /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

[aria-hidden=false][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

html {
  font-size: 62.5%;
}

@media screen and (max-width: 1200px) {
  html {
    font-size: 0.83vw;
  }
}

@media screen and (max-width: 767.9px) {
  html {
    font-size: 2.4vw;
  }
}

.pc-none {
  display: none;
}

.sp-none {
  display: block;
}

/*
@include pc-ex {
	html {
		font-size: 0.724vw;
	}
}
@include pc {
	html {
		font-size: 0.76vw;
	}
}
@include tab {
	html {
		font-size: 2.0vw;
	}
}
@include sp {
	html {
		font-size: 2.2vw;
	}
}
*/
body {
  font-size: 1.6rem;
  font-family: -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Roboto", "メイリオ", "Meiryo", sans-serif;
  line-height: 1.75;
  letter-spacing: 0.03em;
}

_:-ms-input-placeholder,
:root body {
  font-family: Meiryo, sans-serif;
}

@media screen and (max-width: 767.9px) {
  body {
    min-width: 100vw;
    position: relative;
  }
}

img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 1201px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #000;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}

a:link,
a:active,
a:visited {
  text-decoration: none;
}

a:hover,
a:focus {
  color: #333;
  text-decoration: underline;
}

.f-container {
  max-width: calc(1200px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .f-container {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .fixed {
    position: fixed;
    width: 100%;
    height: 100%;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 100;
}

.top-header.l-header {
  opacity: 0;
}

@media screen and (max-width: 767.9px) {
  .l-header.home {
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 767.9px) {
  #top.l-header.home {
    background: transparent;
    -webkit-transition: 0.4s;
    transition: 0.4s;
    opacity: 1;
  }
}

@media screen and (max-width: 767.9px) {
  .fixed .l-header.home {
    display: block;
    background: #fff !important;
  }
}

.l-header.scroll {
  pointer-events: all;
  opacity: 1 !important;
}

@media screen and (max-width: 767.9px) {
  #top.l-header.scroll {
    background: #fff;
    opacity: 1;
  }
}

.l-header__wrap {
  position: relative;
}

.l-header__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 120px;
  border-bottom: 1px solid #DEDEDE;
  -o-border-image: linear-gradient(to right, #fff 8.75em, #DEDEDE 100%);
  border-image: -webkit-gradient(linear, left top, right top, color-stop(8.75em, #fff), to(#DEDEDE));
  border-image: linear-gradient(to right, #fff 8.75em, #DEDEDE 100%);
  border-image-slice: 1;
}

@media screen and (max-width: 1200px) {
  .l-header__container {
    padding: 0 10vw;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header__container {
    height: 16.4vw;
    padding: 0 0 0 5%;
    border: none;
    border-bottom: 1px solid #DEDEDE;
  }

  .home .l-header__container {
    border-bottom: none;
  }
}

@media screen and (max-width: 767.9px) {
  .scroll .l-header__container {
    border-bottom: 1px solid #DEDEDE;
  }
}

.l-header__logo {
  position: relative;
  top: 1.5em;
  font-size: 1.6rem;
  margin: 0;
  z-index: 10000;
}

.l-header__logo img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover .l-header__logo img {
  opacity: 0.7;
}

@media screen and (max-width: 1200px) {
  .l-header__logo {
    width: 8.2em;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header__logo {
    top: auto;
    width: 27vw;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }
}

@media screen and (max-width: 767.9px) {
  .home .l-header__logo {
    pointer-events: none;
    opacity: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .home.scroll .l-header__logo {
    pointer-events: all;
    opacity: 1;
  }
}

#menu-open,
#menu-close {
  display: none;
}

@media screen and (max-width: 767.9px) {

  #menu-open,
  #menu-close {
    position: relative;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    width: 16.533vw;
    height: 16.533vw;
    background: #000;
    cursor: pointer;
    z-index: 200;
    -webkit-transition: 0.4s;
    transition: 0.4s;
  }

  .l-header__toggle--inner {
    width: 7.467vw;
    height: 4.267vw;
    position: relative;
  }
}

.l-header__line {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 50%;
  border-radius: 3px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.home.scroll .l-header__line {
  background: #000;
}

.l-header__line--01 {
  top: 0;
}

.fixed .l-header__line--01 {
  top: calc(50% - 1px);
  left: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.l-header__line--02 {
  top: 50%;
  margin-top: -1px;
}

.fixed .l-header__line--02 {
  width: 0;
  left: 50%;
}

.l-header__line--03 {
  bottom: 0;
}

.fixed .l-header__line--03 {
  top: calc(50% - 1px);
  bottom: auto;
  left: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

@media screen and (max-width: 767.9px) {
  .l-header.home .l-header__line {
    background: #fff;
  }

  .l-header-nav {
    display: none;
    position: fixed;
    top: 16.4vw;
    left: 0;
    width: 100%;
    background: #fff;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__inner {
    height: calc(100vh - 16.4vw);
    overflow-y: scroll;
    padding: 5.8vw 5vw 40vw;
  }
}

.l-header-nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__lists {
    display: block;
  }
}

.l-header-nav__list {
  font-size: 16px;
  margin-left: 0.5em;
}

@media screen and (max-width: 800px) {
  .l-header-nav__list {
    font-size: 15px;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__list {
    font-size: 1.6rem;
    margin: 0 0 5vw;
  }

  .l-header-nav__list:nth-child(3) {
    padding: 0 0 9vw;
    border-bottom: 1px solid #DEDEDE;
    margin: 0 0 3.5vw;
  }

  .l-header-nav__list:last-child {
    margin: 0 0 0;
  }
}

.l-header-nav__list.on,
.l-header-nav__list:hover {
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {

  .l-header-nav__list.on,
  .l-header-nav__list:hover {
    background: inherit;
  }
}

.l-header-nav__parent {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
  height: 3.625em;
  padding: 0 1.25em 0 1.875em;
  -webkit-transition: none;
  transition: none;
  cursor: pointer;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent {
    display: block;
    height: auto;
    padding: 5.5vw 3vw 9vw;
    font-size: 5.4vw;
    font-weight: 600;
  }
}

.l-header-nav__parent span {
  font-size: 20px;
}

.l-header-nav__parent img {
  width: 1em;
  height: 0.6em;
  margin-left: 0.75em;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent img {
    display: none;
  }
}

.l-header-nav__parent:hover {
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent:hover {
    font-weight: bold;
    letter-spacing: inherit;
  }

  .l-header-nav__parent a:hover {
    text-decoration: none;
  }
}

.l-header-nav__parent.active {
  pointer-events: none;
  color: #DEDEDE;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent.active {
    pointer-events: all;
    color: #000;
    background: inherit;
    opacity: 1;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent--top {
    position: relative;
  }

  .l-header-nav__parent--top::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 5vw;
    width: 4.7vw;
    height: 2.4vw;
    background: url(../../img/noifulSite/common/ico_nav_arrow_bk.svg) 0 0 no-repeat;
    background-size: 100% auto;
    -webkit-transform: translateY(-105%);
    transform: translateY(-105%);
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__parent--open::before {
    -webkit-transform: translateY(-105%) rotate(180deg);
    transform: translateY(-105%) rotate(180deg);
  }
}

.l-header-nav__children {
  pointer-events: none;
  opacity: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #DEDEDE;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__children {
    pointer-events: all;
    position: relative;
    top: auto;
    left: auto;
    opacity: 1;
    border: 0;
    -webkit-transition: none;
    transition: none;
    padding: 0 0 0 8.8vw;
  }
}

.l-header-nav__children.open {
  pointer-events: all;
  opacity: 1;
}

.l-header-nav__children.active {
  pointer-events: all;
  opacity: 1;
  z-index: -1;
}

.l-header-nav__children.active {
  height: auto !important;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__children.active {
    z-index: auto;
  }
}

.l-header-nav__children.active.open {
  z-index: 1;
}

.l-header-nav__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0 120px;
}

@media screen and (max-width: 1200px) {
  .l-header-nav__menus {
    padding: 0 10vw;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__menus {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.l-header-nav__menu {
  font-size: 14px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

@media screen and (max-width: 800px) {
  .l-header-nav__menu {
    font-size: 13px;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__menu {
    font-size: 2rem;
    margin: 0 0 7.6vw;
  }

  .l-header-nav__menu:last-child {
    margin-bottom: 0;
  }
}

.l-header-nav__menu span {
  font-size: 14px;
  line-height: 1;
  padding-top: 0.2rem;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__menu span {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__menu.current {
    background: none;
    font-weight: normal;
  }
}

.l-header-nav__menu.current a {
  pointer-events: none;
  color: #DEDEDE;
}

.l-header-nav__menu .l-header-nav__link {
  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;
  height: 3.43em;
  text-decoration: none;
}

.l-header-nav__link {
  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;
  height: 3.75em;
  padding: 0 1em;
  -webkit-transition: none;
  transition: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__menu .l-header-nav__link {
    display: block;
    height: auto;
    line-height: 1.2;
    padding: 0 0;
  }
}

.l-header-nav__link.active,
.l-header-nav__link.current {
  color: #DEDEDE;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {

  .l-header-nav__link.active,
  .l-header-nav__link.current {
    background: #fff;
    color: #000;
    opacity: 1;
  }
}

.l-header-nav__link.active {
  pointer-events: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__link.active {
    pointer-events: all;
  }
}

.l-header-nav__link:hover {
  font-weight: bold;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav__link:hover {
    font-weight: inherit;
  }
}

.l-header-nav-btn {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-nav-btn {
    display: block;
    width: 80vw;
    margin: 9vw auto 0;
  }
}

.l-header-nav-btn__link {
  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;
  background: #fff;
  line-height: 1;
  border-radius: 3em;
  padding: 1.125em 0;
}

.l-header-nav-btn__ico {
  width: 1em;
  height: auto;
  margin-right: 0.8em;
}

.l-header-btn {
  position: fixed;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 66px;
  z-index: 20;
  display: block;
}

.l-header-btn.bkn_btn {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .l-header-btn {
    display: none;
  }

  .l-header-btn.bkn_btn {
    top: auto;
    bottom: 0;
    width: 100vw;
    height: 12vw;
    -webkit-transform: none;
    transform: none;
    display: block;
  }

  .l-header-btn.bkn_btn.header-btn--other {
    height: 13.867vw;
  }

  .l-header-btn.bkn_btn .l-header-btn__link {
    background: #D9A634;
    border-radius: unset;
    position: relative;
  }

  .l-header-btn.bkn_btn .l-header-btn__link:before {
    content: '';
    position: absolute;
    background: url(../../img/noifulSite/common/icn_contact.png)no-repeat center /cover;
    width: 4.9vw;
    height: 3.7vw;
    top: 4.2vw;
    left: 21vw;
  }

  .l-header-btn.bkn_btn .l-header-btn__link .noicon-header__txt {
    padding: 0 0 0 7vw;
    font-size: 4.3vw;
    letter-spacing: 0.01em;
  }

}

@media screen and (max-width: 767.9px) {
  .top_header-btn {
    width: 37vw;
    position: fixed;
  }
}

.l-header-btn__link {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  background: #000;
  font-size: 1.4rem;
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px;
  padding: 1.6em 0;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
  letter-spacing: 0.12em;
}

/* アイコンのないフロートバナーの余白消す */
.l-header-btn__link .noicon-header__txt {
  margin: unset;
}

@media screen and (max-width: 767.9px) {
  .l-header-btn__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row;
    flex-flow: row;
    width: 100%;
    height: 100%;
    padding: 0;
  }

  .l-header-btn__link .noicon-header__txt {
    padding-left: 1.067vw;
  }

}

.l-header-btn__link:hover {
  text-decoration: none;
  background: #8B8B8B;
}

@media screen and (max-width: 767.9px) {
  .l-header-btn__link:hover {
    background: #000;
    border: 1px solid #000;
  }
}

.l-header-btn__ico {
  width: 1.3em;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .l-header-btn__ico {
    width: auto;
    height: 1em;
    margin-right: 0.5em;
  }
}

.l-header-btn__txt {
  font-size: 1.4rem;
  color: #fff;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  font-weight: bold;
  margin: 1em 0 0;
}

@media screen and (max-width: 767.9px) {
  .l-header-btn__txt {
    -webkit-writing-mode: inherit;
    -ms-writing-mode: inherit;
    writing-mode: inherit;
    margin: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .l-header--open {
    background: #fff;
  }

  .l-header--open::before {
    -webkit-transform: translateY(-50%) rotate(180deg);
    transform: translateY(-50%) rotate(180deg);
  }
}

@media screen and (max-width: 767.9px) {
  .l-header--open .l-header__logo {
    pointer-events: all;
    opacity: 1;
  }
}

.l-header--open .l-header__container {
  border-bottom: 1px solid #DEDEDE;
}

.l-header--open .l-header-nav {
  pointer-events: all;
  opacity: 1;
  z-index: 1000;
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }

  1% {
    display: block;
    opacity: 0;
  }

  100% {
    display: block;
    opacity: 1;
  }
}

.path-wrap {
  width: 100%;
  padding: 0 15px;
  background: #f5f5f5;
}

#path {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 0 6px;
  display: flex;
  align-items: center;
  font-size: 12px;
}

.path__arw {
  width: 7px;
  height: 10px;
  margin: 0 15px;
  background: url(/img/noifulSite/common/icn_path_arw.png) center / contain no-repeat;
  display: block;
}

#path a {
  text-decoration: underline;
  flex-shrink: 0;
}

#path a:hover {
  opacity: .6;
  text-decoration: none;
}

#path strong {
  font-weight: normal;
}

@media screen and (max-width: 767.9px) {
  .path-wrap {
    padding: 0;
  }

  #path {
    width: 100%;
    padding: 3.2vw 6.667vw 2.8vw;
    font-size: 3.2vw;
    overflow-x: scroll;
  }

  #path span,
  .path__arw,
  #path strong {
    flex-shrink: 0;
  }
}


.l-footer {
  padding: 3.375em 0 0;
}

@media screen and (max-width: 767.9px) {
  .l-footer {
    padding: 12vw 0 0;
  }
}

.l-footer__menus {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  list-style: none;
  margin-bottom: 3.375em;
}

@media screen and (max-width: 767.9px) {
  .l-footer__menus {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .l-footer__menus {
    display: block;
    width: auto;
    padding: 0 7vw;
    margin-bottom: 11.5vw;
  }
}

@media screen and (max-width: 767.9px) {
  .l-footer__menu {
    margin: 0 0 8.5vw;
  }

  .l-footer__menu:first-child {
    margin-top: 0;
  }
}

.l-footer__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1em;
}

@media screen and (max-width: 767.9px) {
  .l-footer__ttl {
    font-size: 2rem;
    margin: 0 0 3.5vw 0vw;
    font-weight: 600;
  }

  .l-footer__ttl a {
    text-decoration: none;
  }
}

.l-footer__lists {
  list-style: none;
  padding: 0;
}

.l-footer__link:hover {
  opacity: 0.6;
  text-decoration: none;
}

.l-footer-btm {
  text-align: center;
  border-top: 1px solid #DEDEDE;
  padding: 3.75em 0 1.375em;
}

@media screen and (max-width: 767.9px) {
  .l-footer__lists {
    margin: 0 0 0 4vw;
  }

  .l-footer__list {
    line-height: 1.2;
    margin: 0 0 4.2vw;
  }

  .l-footer__list a {
    font-size: 4.8vw;
    font-weight: 400;
  }

  .l-footer-btm {
    padding: 15vw 0 6.7vw;
  }
}

.l-footer-btm__logo {
  text-align: center;
}

.l-footer-btm__txt {
  text-align: center;
  font-size: 1.4rem;
  line-height: 1;
  margin: 1.3em 0 1em;
}

.l-footer-btm__lists {
  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;
  list-style: none;
  padding: 0;
  margin: 4.25em 0 2.5em;
}

@media screen and (max-width: 767.9px) {
  .l-footer-btm__lists {
    margin: 11.6vw 0 5.8vw;
  }
}

.l-footer-btm__list {
  width: 1.125em;
  line-height: 1;
}

.l-footer-btm__list+.l-footer-btm__list {
  margin-left: 1em;
}

.l-footer-btm__list a {
  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: 100%;
}

.l-footer-btm__list img {
  width: 100%;
  height: auto;
}

.l-footer-btm__menus {
  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;
  list-style: none;
  margin: 5em 0 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .l-footer-btm__menus {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-top: 14.5vw;
  }
}

.l-footer-btm__menu {
  font-size: 1.4rem;
}

.l-footer-btm__menu+.l-footer-btm__menu {
  margin-left: 2em;
}

@media screen and (max-width: 767.9px) {
  .l-footer-btm__menu+.l-footer-btm__menu {
    margin-left: 1em;
  }
}

@media screen and (max-width: 767.9px) {
  .l-footer-btm__menu {
    line-height: 2.5;
    margin: 0 1em;
  }
}

.l-footer-btm__menu a:hover {
  opacity: 0.6;
  text-decoration: none;
}

.l-footer-btm__copy {
  margin: 1.375em 0 0;
}

@media screen and (max-width: 767.9px) {
  .l-footer-btm__copy {
    margin: 6.7vw 0 0;
  }
}

.c-aspectRatio {
  position: relative;
  width: 100%;
}

.c-aspectRatio__inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-inputCheckbox__input,
.c-inputRadio__input {
  display: none;
}

.c-inputCheckbox__mark,
.c-inputRadio__mark {
  display: inline-block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0 0 0 1.8em;
}

.c-inputCheckbox__mark::before,
.c-inputRadio__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ccc;
  width: 1.5em;
  height: 1.5em;
}

.c-inputCheckbox__mark::after,
.c-inputRadio__mark::after {
  position: absolute;
  top: -0.2em;
  left: 0.15em;
  width: 1.8em;
  height: 0.8em;
  border-left: 3px solid #64A8BE;
  border-bottom: 3px solid #64A8BE;
  -webkit-transform: rotate(-53deg) skewX(-10deg);
  transform: rotate(-53deg) skewX(-10deg);
}

.c-inputRadio__mark::before,
.c-inputRadio__mark::after {
  border-radius: 50%;
}

:checked+.c-inputCheckbox__mark::after,
:checked+.c-inputRadio__mark::after {
  content: "";
}

.c-serviceBlock {
  position: relative;
  padding: 5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock {
    padding: 8vw 0 0;
  }
}

.c-serviceBlock+.c-serviceBlock {
  margin-top: 3.75em;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock+.c-serviceBlock {
    margin-top: 14.5vw;
  }
}

.c-serviceBlock::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: calc((100% - 1200px) / 2);
  height: calc(100% - 5em);
  background: #F5F5F5;
}

.c-serviceBlock__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #F5F5F5;
  padding: 3.75em 0;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock__inner {
    padding: 46vw 0 7.7vw;
  }
}

.c-serviceBlock__inner::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: -3.25em;
  width: 3.25em;
  height: 100%;
  background: #F5F5F5;
}

.c-serviceBlock__img {
  position: absolute;
  top: -5em;
  left: 0;
  vertical-align: top;
  width: 42.5em;
  height: 28.75em;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  z-index: 2;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock__img {
    top: -8vw;
    width: 93vw;
    height: 64vw;
  }
}

.c-serviceBlock__content {
  position: relative;
  width: 37.5em;
  background: #fff;
  margin: 0 0 0 auto;
  padding: 5em 6.875em 5em 8.75em;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock__content {
    width: calc(100% - 7vw);
    padding: 21vw 7vw 12vw;
  }
}

.c-serviceBlock__ttl {
  font-size: 2.6rem;
  text-align: center;
  color: #D9A634;
  line-height: 1;
  margin: 0;
}

.c-serviceBlock__txt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 1.6em 0;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock__txt {
    margin: 6.7vw 0 7.7vw;
    letter-spacing: 0;
  }
}

.c-serviceBlock__lists {
  list-style: none;
  padding: 0;
  margin: 0;
}

.c-serviceBlock__list {
  width: 18em;
  font-size: 1.4rem;
  text-align: center;
  border: 1px solid #000;
  color: #000;
  line-height: 1;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock__list {
    width: 85%;
    font-size: 1.6rem;
    border: 0.5vw solid #000;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list,
  .sp-wrap .c-serviceBlock__list {
    width: 46%;
    height: 15vw;
    font-size: 1.6rem;
    font-weight: 500;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2vw 0 0;
    font-weight: 600;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list,
  .sp-wrap .c-serviceBlock__list {
    padding: 0vw 0 3.3vw;
    position: relative;
  }

  .sp-wrap .p-property__text--room .c-serviceBlock__list {
    padding: 0.8vw 0 0;
    border: 0.5vw solid #000;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__brackets,
  .sp-wrap .c-serviceBlock__brackets {
    padding: 0.5vw 0 0;
    margin: 0 auto;
    width: fit-content;
    font-weight: 300;
    font-size: 3vw;
    position: absolute;
    bottom: 3vw;
  }

  .p-property__main-inner--life .c-serviceBlock__list+.c-serviceBlock__list {
    padding: 4.4vw 0 0;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list:last-child,
  .sp-wrap .c-serviceBlock__list:last-child {
    margin: 0 !important;
    padding: 0 0 3.3vw;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list:last-child span,
  .sp-wrap .c-serviceBlock__list:last-child span {
    text-align: center;
    position: absolute;
    bottom: 3vw;
    font-size: 3vw;
    font-weight: 300;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list:last-child:before,
  .sp-wrap .c-serviceBlock__list+.c-serviceBlock__list::before {
    transform: rotateZ(0deg);
    left: -6.9vw;
    margin: 0 auto;
    width: fit-content;
    font-weight: bold;
    top: 4.5vw;
    font-size: 6.7vw;
  }

  .p-feature-block.life .p-property__list .c-serviceBlock__list:last-child:before,
  .sp-wrap .p-property__text--life .c-serviceBlock__list+.c-serviceBlock__list::before {
    transform: rotateZ(45deg);
    left: -7.4vw;
  }
}

.c-serviceBlock__list+.c-serviceBlock__list {
  position: relative;
  margin: 2.1em auto 0;
}

.c-serviceBlock__list+.c-serviceBlock__list::before {
  content: "＋";
  position: absolute;
  top: -1.25em;
  left: 50%;
  color: #000;
  font-weight: normal;
  font-size: 2rem;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.c-serviceBlock__list+.p-property__txt {
  margin: 3.5em auto 0;
}

.p-property__ttl {
  margin: 0 0 1em;
}

.p-property__text--life {
  width: 22em;
  margin-left: 2.500em;
}

.p-property__text--room {
  width: 18.5em;
  margin-right: 5.625em;
}

.sp-wrap .p-property__text--room {
  width: 22em;
}

.p-property__txt+.p-property__txt::before {
  top: -1.7em;
}

.c-serviceBlock__brackets {
  display: block;
  width: calc(100% - 1em);
  line-height: 1;
  background: #fff;
  text-indent: 0.3em;
  margin: -1px auto;
  padding: 0.75em 0;
}

.c-serviceBlock__brackets span {
    margin-top: 10px;
    display: block;
    font-size: 1.1rem;
}

.c-serviceBlock--life::before {
  right: auto;
  left: 0;
  background: #F5F5F5;
}

.c-serviceBlock--life .c-serviceBlock__inner::before {
  left: auto;
  right: -3.25em;
  width: 3.25em;
}

.c-serviceBlock--life .c-serviceBlock__img {
  left: auto;
  right: 0;
}

.c-serviceBlock--life .c-serviceBlock__content {
  margin: 0 auto 0 0;
  padding: 5em 8.75em 5em 6.875em;
}

@media screen and (max-width: 767.9px) {
  .c-serviceBlock--life .c-serviceBlock__content {
    padding: 21vw 7vw 12vw;
  }
}

.c-serviceBlock--life .c-serviceBlock__ttl {
  color: #64A8BE;
}

@media screen and (max-width: 767.9px) {
  .price-section {

    margin: 0 0 25vw;
  }

  .price-section .price-about {
    border: unset;
  }

  .price-section .price-about dd {
    border: unset;
  }

  .price-section .price__ttl {
    font-size: 6.4vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    margin: 0 0 5vw;
  }

  .price-section .price__inner {
    background: unset;
    padding: 0 5.0vw 0;
    border: unset;
  }

  .price-section .price__inner--ttl {
    font-size: 4vw;
    margin-bottom: 8.2vw;
  }

  .price-section .price__inner--list {
    position: relative;
    margin: 0 0 15vw;
  }

  .price-section .price__list--ttl {
    text-align: center;
    margin: 0 auto 2.5vw;
    line-height: 1.7;
  }

  .price-section .price__list--text {
    margin-bottom: 4.5vw;
  }

  .price-section .price__list--img {
    width: 73.5vw;
    margin: 0 auto 10vw;
    position: relative;
    border: 1px solid #F5F5F5;
  }

  .price-section .price__list--img:before {
    content: '';
    background: #F5F5F5;
    position: absolute;
    width: 83.6vw;
    height: 76vw;
    top: 5vw;
    left: 3vw;
    right: 0;
    margin: 0 auto;
    z-index: -1;
  }

  .price__inner--list:last-child .price__list--img:before {
    right: 0;
    left: -34vw;
    width: 93vw;
    height: 54vw;
  }

  .price-section .price__list--text-sub {
    font-size: 3.2vw;
    margin: 0 2vw;
    line-height: 1.8;
  }

  .available-section {
    margin: 0 0 15.5vw;
  }

  .available-section .available {
    margin: 0;
  }

  .available-section .available__ttl {
    font-size: 6.5vw;
    font-weight: 600;
    text-align: center;
    line-height: 1.2;
  }

  .available-section dd {
    position: relative;
    width: 99%;
  }

  .available-section .available__inner--section {
    padding: 5vw 0 0;
  }

  .available-section .available__inner--list {
    width: 99vw !important;
    margin: 0 4vw 0;
    text-align: center;
  }

  .available-section .available__list--img {
    margin: 0 22vw 5vw;
  }

  .available-section .available__list--ttl {
    font-weight: 600;
  }

  .available-section .available__list--text {
    margin: 0px 5vw 2vw;
  }

  .available-section .available__list--text span {
    font-weight: 600;
  }

  .available-section .c-featureDetail__lists .slick-dots {
    margin: 4.5vw 0 0;
  }

  .available-section .c-featureDetail__lists .slick-dots li {
    margin: 0 2vw 0;
  }

  .available-section .slick-arrow {
    border: unset;
    position: absolute;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    width: 7vw;
    height: 7vw;
    transform: rotate(45deg);
    font-size: 0;
    background: unset;
    top: 45%;
    left: 6vw;
    z-index: 1;
  }

  .available-section .slick-next {
    left: unset;
    right: 6vw;
    transform: rotate(-130deg);
  }

  .available-section .slick-dots {

    margin-top: 4.5vw;
  }

  .available-section .slick-dots li {

    margin: 0 1.2vw;
  }

  .available-section .slick-dots li button {
    border-radius: unset;
    width: 3vw;
    height: 3vw;
  }

  .available-section .slick-dots li.slick-active button {
    background: #333;
  }
}

.c-featureBlock {
  position: relative;
  overflow: hidden;
}

.c-featureBlock+.c-featureBlock {
  margin-top: 6.25em;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock+.c-featureBlock {
    margin-top: 3.125em;
  }
}

.c-featureBlock::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: calc((100% - 1200px) / 2);
  height: 100%;
  background: #F5F5F5;
}

.c-featureBlock__inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  background: #F5F5F5;
  padding: 10.25em 0 3.75em;
  z-index: -2;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock {
    margin: 0 0 20.5vw;
  }

  .c-featureBlock-space {
    margin: 0 0 19vw;
  }

  .c-featureBlock__inner {
    background: none;
    padding: 0;
    z-index: 0;
  }

  .c-featureBlock::before {
    display: none;
  }
}

.c-featureBlock__content {
  width: 32.5em;
  height: fit-content;
  background: #fff;
  margin: 0 0 0 auto;
  padding: 7.75em 6.2em 7.75em 5em;
  z-index: 2;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__content {
    width: auto;
    height: auto;
    padding: 0;
  }
}

.c-featureBlock__img {
  position: absolute;
  top: 4em;
  left: -7.5em;
  width: 56.25em;
  height: 37.5em;
  z-index: -1;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__img {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    height: 16.25em;
    background: #F5F5F5;
    z-index: 0;
    padding: 0 6.3vw 6.3vw 0;
  }

  .c-featureBlock__img::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6.3vw;
    background: #fff;
  }
}

.c-featureBlock__img img {
  position: relative;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  z-index: 2;
}

.c-featureBlock__pre {
  color: #D9A634;
  font-size: 1.8rem;
  line-height: 1;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__pre {
    font-size: 2.2rem;
    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;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -ms-flex-flow: column-reverse;
    flex-flow: column-reverse;
  }
}

.c-featureBlock__pre span {
  font-size: 4rem;
  margin-left: 0.3em;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__pre span {
    margin: 0 0 0.4em;
  }
}

.c-featureBlock__ttl {
  font-size: 3rem;
  line-height: 1.4;
  margin: 0.6em 0 0.55em;
}

.c-featureBlock__ttl small {
  font-size: 50%;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__ttl {
    font-size: 6.4vw;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0;
    margin: 0 auto 5vw;
  }
}

.c-featureBlock__ttl .none {
  display: inline;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__ttl .none {
    display: none;
  }
}

.c-featureBlock__txt {
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock__txt {
    padding: 2em calc(5vw + 1em) 0;
  }
}

.c-featureBlock--reverse::before {
  right: auto;
  left: 0;
  background: #F5F5F5;
}

.c-featureBlock--reverse .c-featureBlock__content {
  margin: 0 auto 0 0;
  padding: 7.75em 5em 7.75em 6.2em;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock--reverse .c-featureBlock__content {
    padding: 0;
  }
}

.c-featureBlock--reverse .c-featureBlock__img {
  left: auto;
  right: -7.5em;
}

@media screen and (max-width: 767.9px) {
  .c-featureBlock--reverse .c-featureBlock__img {
    left: auto;
    right: auto;
    padding: 0 0 6.3vw 6.3vw;
  }
}

.c-featureBlock--life .c-featureBlock__pre {
  color: #64A8BE;
}

.c-featureDetail {
  padding: 3.75em 0 6.25em 0;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail {
    padding: 19.3vw 0;
  }
}

.c-featureDetail__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  line-height: 1;
  margin: 0 0 1.85em;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail__ttl {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 0 0 1.5em;
  }
}

.c-featureDetail__sub small {
  font-size: 50%;
}

.c-featureDetail__sub {
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.5;
  margin: 0.2em 0 0.4em;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail__sub {
    font-size: 2.2rem;
    margin: 0vw 0 2vw;
  }
}

.c-featureDetail__number {
  font-size: 1.8rem;
  margin: 1em 0 0;
}

.c-featureDetail__txt {
  margin: 0;
}

.c-featureDetail__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: calc(1200px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  list-style: none;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail__lists {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail__lists {
    width: 100vw;
    margin: 0;
    padding: 0;
  }
}

.c-featureDetail__lists::after {
  content: "";
  display: block;
  width: 23.125em;
}

.c-featureDetail__list {
  width: 23.125em !important;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail__inner {
    width: 88.8vw;
    padding: 0 2vw;
  }

  .c-featureDetail__inner img {
    width: 100%;
  }

  .c-featureDetail__number {
    color: #D9A634;
    font-weight: 600;
  }

  .p-feature-block.life .c-featureDetail__number {
    color: #64A8BE;
  }

  .p-feature-block.life .c-featureBlock-space .c-featureDetail__number {
    color: #333;
  }
}

.c-featureDetail-img {
  position: relative;
}

.c-featureDetail-img__pop {
  position: absolute;
  bottom: -1em;
  right: -3em;
  width: 14.875em;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .c-featureDetail-img__pop {
    width: 13em;
    height: auto;
  }
}

.c-featureModel {
  position: relative;
}

.c-featureModel.pc-wrap {
  display: block;
}

.c-featureModel.sp-wrap {
  display: none
}

.c-featureModel__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 7.8em;
  line-height: 1;
  text-align: center;
  border: 1px solid #000;
  background: #000;
  color: #fff;
  margin: 0;
  padding: 0.7em 0;
  z-index: 1;
}

.c-featureModel__link {
  display: block;
}

.c-featureModel__link:hover,
.c-featureModel__link:active,
.c-featureModel__link:focus {
  text-decoration: none;
}

.c-featureModel__ttl {
  font-size: 1.8rem;
  line-height: 1.3;
  font-weight: bold;
  margin: 0.4em 0 0.2em;
}

@media screen and (max-width: 767.9px) {
  .c-featureModel__ttl {
    font-size: 2.6rem;
    margin: 3vw 0 2vw;
  }

  .c-featureModel.sp-wrap {
    display: block;
  }

  .c-featureModel.pc-wrap {
    display: none;
  }

  .c-featureModel__link-under {
    background: #D9A634;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68vw;
    height: 11.5vw;
    border-radius: 7vw;
    margin: 0 auto;
    color: #fff;
    font-size: 4vw;
  }

  .c-featureModel__link-under:hover {
    color: #D9A634;
    text-decoration: none;
    background: #fff;
    border: 1px solid #D9A634;
  }
}

.c-featureModel__txt {
  font-size: 1.4rem;
  margin: 1.2em 0 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ie .c-featureModel__txt {
  max-height: 3.5em;
}

.c-featureModel__price {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 0.3rem;
}

.c-featureModel__price.c-featureModel__point {
  font-weight: 400;
  font-size: 1.4rem;
}

.c-featureModel__data {
  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;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-featureModel__datum {
  font-size: 1.4rem;
}

.c-featureModel__datum::after {
  content: "｜";
}

.c-featureModel__datum:last-child::after {
  content: none;
}

.c-featureModel__access {
  font-size: 1.4rem;
  margin: 0;
}

.c-featureModel__hashes {
  display: -webkit-box;
  display: -ms-flexbox;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-featureModel__hash {
  font-size: 1.4rem;
  margin-right: 1em;
  display: inline;
}

.c-featureModel__hash:last-child {
  margin-right: 0;
}

.c-featureModel__pic {
  position: relative;
  height: 25em;
}

.c-featureModel__pic::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

.c-featureModel__thumb {
  position: relative;
  width: 100%;
  height: 13em;
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .c-featureModel__thumb {
    display: flex;
    margin: 0 0 5vw;
  }

  .c-featureModel__thumb.sp-wrap {
    height: 15.625em;
    display: flex;
    overflow: unset;
    margin: 0 0 6vw;
  }
}

.c-featureModel__status {
  position: absolute;
  top: 0;
  left: 0;
  line-height: 1;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  padding: 0.5em 1em;
  z-index: 2;
  margin: 0;
}

.c-featureModel__status--end {
  background: #fff;
  color: #000;
}

.c-featureModel__status--modelRoom {
  background: #fff;
  color: #000;
}

.c-featureModel__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

a:hover .c-featureModel__img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

@media screen and (max-width: 767.9px) {
  .bknImg {
    width: 100%;
    display: flex;
  }

  .bknImg img {
    width: 50%;
    object-fit: cover;
  }

  .c-featureModel__thumb.sp-wrap .c-featureModel__img {
    width: 50%;
  }

  a:hover .c-featureModel__img {
    -webkit-transform: none;
    transform: none;
  }
}

.c-featureModel__caption {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}

.c-featureModel__caption p {
  text-align: center;
  color: #fff;
  line-height: 1;
}

.c-featureModel__soon {
  font-size: 3rem;
  margin: 0 0 1.2em;
}

@media screen and (max-width: 767.9px) {
  .c-featureModel__soon {
    margin: 0 0 1em;
  }
}

.c-featureModel__name {
  font-size: 2rem;
  margin: 0 0 1.4em;
}

.c-featureModel__place {
  font-size: 1.4rem;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .c-featureModel__content {
    padding: 0 6.2vw 6vw;
  }

  .c-featureModel__txt {
    margin: 0;
    line-height: 1.58;
  }
}

.c-featureModel--pic {
  margin-bottom: 0;
}

.c-featureModel--end .c-featureModel__link {
  pointer-events: none;
}

.c-featureModel--end .c-featureModel__label {
  background: #fff;
  color: #000;
}

.c-featureModel--modelRoom .c-featureModel__label {
  background: #fff;
  color: #000;
}

.c-featureModel.is-hidden {
  display: none;
}

.slick-list {
  padding: 0 !important;
}

.slick-dots {
  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;
  list-style: none;
  width: 100%;
  margin: 3.125em 0 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .slick-dots {
    margin: 2.5em 0 0;
  }

  .c-featureDetail__lists .slick-dots {
    margin: 6vw 0 0;
  }

  .c-featureDetail__lists .slick-dots li {
    margin: 0 1.6vw 0;
  }

  .c-featureDetail__lists .slick-dots li button {
    border-radius: unset;
    width: 3vw;
    height: 3vw;
  }

  .c-featureDetail__lists .slick-dots li.slick-active button {
    background: #333;
  }
}

.slick-dots li {
  font-size: 0;
  margin: 0 1rem;
}

.slick-dots li button {
  width: 1.2rem;
  height: 1.2rem;
  border: none;
  background: #dedede;
  font-size: 0;
  padding: 0;
  border-radius: 100%;
}

.slick-dots li.slick-active button {
  background: #8B8B8B;
}

.c-btn {
  width: 17.5em;
  height: 3.25em;
  font-size: 1.6rem;
  border: 1px solid #0D0908;
  border-radius: 3em;
  overflow: hidden;
  margin: 0 auto;
}

.c-btn__link {
  position: relative;
  height: 100%;
  line-height: 1;
  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;
}

.c-btn__link::after {
  position: absolute;
  top: 50%;
  right: 1.4em;
  content: "";
  width: 0.5em;
  height: 0.68em;
  background: url(../../img/noifulSite/common/ico_less_bk.png) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.c-btn__link:hover {
  text-decoration: none;
  color: #fff;
  background: #000;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.c-btn__link:hover::after {
  background: url(../../img/noifulSite/common/ico_less_wh.png) center center no-repeat;
  background-size: 100% auto;
}

.c-img-btn {
  width: 17.5em;
  font-size: 1.6rem;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 767.9px) {
  .c-img-btn {
    width: 67vw;
    font-size: 1.6rem;
  }
}

.c-img-btn__link {
  position: relative;
  display: block;
}

.c-img-btn__link:hover .c-img-btn__img--on {
  opacity: 1;
}

@media screen and (max-width: 767.9px) {
  .c-img-btn__link:hover .c-img-btn__img--on {
    opacity: 0;
  }
}

.c-img-btn__link:hover .c-img-btn__img--off {
  opacity: 0;
}

@media screen and (max-width: 767.9px) {
  .c-img-btn__link:hover .c-img-btn__img--off {
    opacity: 1;
  }
}

.c-img-btn__img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.c-img-btn__img--on {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.c-img-btn__img--off {
  opacity: 1;
}

.c-img-btn--small {
  width: 17.5em;
  font-size: 1.6rem;
}

.c-serviceImg__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

@media screen and (max-width: 767.9px) {
  .c-serviceImg__block {
    display: block;
  }
}

.c-serviceImg__inner+.c-serviceImg__inner {
  margin-left: 3em;
}

@media screen and (max-width: 767.9px) {
  .c-serviceImg__inner+.c-serviceImg__inner {
    margin: 9.6vw 0 0 0;
  }
}

.c-serviceImg__inner--outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.c-serviceImg__txt {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 1em;
}

.c-serviceImg__img {
  display: block;
  width: 13.0625em;
  height: auto;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .c-serviceImg__img {
    width: 48vw;
  }
}

.c-owLow__ttl {
  font-size: 3.4rem;
  font-weight: normal;
  text-align: center;
  line-height: 1;
  margin: 0 0 1.5em;
}

@media screen and (max-width: 767.9px) {
  .c-owLow__ttl {
    font-size: 2.2rem;
    line-height: 1.4;
    margin: 0 0 9.8vw;
  }
}

.c-contact {
  padding-top: calc(105px + 6.3em);
}

@media screen and (max-width: 767.9px) {
  .c-contact {
    padding-top: 23vw;
  }
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
.u-sp {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .u-pc {
    display: none;
  }

  .u-sp {
    display: block;
  }
}

/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}

.u-margin.-middle {
  margin-bottom: 32px;
}

.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

@-webkit-keyframes scrollAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(3em);
    transform: translateX(3em);
  }
}

@keyframes scrollAnim {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(3em);
    transform: translateX(3em);
  }
}

@-webkit-keyframes scrollAnimSp {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(10em);
    transform: translateX(10em);
  }
}

@keyframes scrollAnimSp {
  0% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }

  100% {
    -webkit-transform: translateX(10em);
    transform: translateX(10em);
  }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  -webkit-animation: scrollAnim 5.5s linear 0s 1 normal both;
  animation: scrollAnim 5.5s linear 0s 1 normal both;
}

@media screen and (max-width: 767.9px) {

  .swiper-slide-active .slide-img,
  .swiper-slide-duplicate-active .slide-img,
  .swiper-slide-prev .slide-img {
    width: 170vw;
    margin-left: -50vw;
    -webkit-animation: scrollAnimSp 5s linear 0s 1 normal both;
    animation: scrollAnimSp 5s linear 0s 1 normal both;
  }
}

.swiper-container {
  z-index: -1;
}

@media screen and (max-width: 767.9px) {
  .swiper-container {
    overflow: visible;
  }
}

.p-mv {
  position: relative;
  height: 635px;
  padding: 0;
  overflow: hidden;
  vertical-align: middle;
  display: block;
}

.p-mv__head-txt-box {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 27em;
  height: 14.6em;
}
.p-mv__head-txt1{
  width: 100%;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin: 0 0 1em;
}
.p-mv__head-txt2{
  width: 100%;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0;
  text-align: center;
  margin: 1em 0 0;
}

.p-mv__head-txt1.u-sp,
.p-mv__head-txt2.u-sp {
  display: none !important;
}

@media screen and (max-width: 767.9px) {
  .p-mv__head-txt-box {
    position: unset;
    margin: auto;
    width: auto;
    height: auto;
  }
  .p-mv__head-txt1{
    width: 100%;
    font-size: 3.2vw;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    margin: 1em 0;
    position: absolute;
    top: 13vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
  .p-mv__head-txt2{
    width: 100%;
    font-size: 4.267vw;
    font-weight: 400;
    letter-spacing: 0;
    text-align: center;
    margin: 1em 0 0;
    position: absolute;
    top: 32.6vw;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }

  .p-mv__head-txt1.u-sp,
  .p-mv__head-txt2.u-sp {
    display: block !important;
  }
}

.p-mv__txt {
  display: none;
  width: 20.4em;
  margin: 0 auto;
}

.p-mv__txt img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767.9px) {
  .p-mv__txt {
    width: 45vw;
    top: 24vw;
    position: absolute;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
  }
}

.p-mv__img {
  display: block;
  width: 100vw;
  height: 635px;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
  -o-object-fit: cover;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

@media screen and (max-width: 767.9px) {
  .p-mv__img {
    width: 100%;
    -webkit-transform: none;
    transform: none;
  }
}

.p-mv__slider {
  width: 100%;
  height: 635px;
}

@media screen and (max-width: 767.9px) {
  .p-mv__slider {
    overflow: hidden;
  }
}

.p-mv__over {
  pointer-events: none;
  position: absolute;
  bottom: 1.375em;
  left: 10.25em;
  width: 30.8125em;
  height: auto;
}

@media screen and (max-width: 1420px) {
  .p-mv__over {
    left: 8%;
    width: 34%;
  }
}

@media screen and (max-width: 767.9px) {
  .p-mv__over {
    width: 80vw;
    height: auto;
    bottom: 0;
    left: 17vw;
  }
}

.p-mv__scroll {
  position: absolute;
  bottom: 56px;
  left: 50%;
  -webkit-animation: arrowmove 1.4s ease-in-out infinite;
  animation: arrowmove 1.4s ease-in-out infinite;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

@media screen and (max-width: 767.9px) {
  .p-mv__scroll {
    width: 20vw;
    height: auto;
    -webkit-animation: arrowmovesp 1.4s ease-in-out infinite;
    animation: arrowmovesp 1.4s ease-in-out infinite;
  }
}

@media screen and (max-width: 767.9px) {
  .more-btn {
    width: 100%;
  }

  .p-mv_btn {
    background: rgba(0, 0, 0, .25);
    padding: 2.133vw 0;
    position: absolute;
    bottom: 0;
  }

  .more-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 68vw;
    height: 11.2vw;
    line-height: 1;
    margin: 0 auto;
    background: #D9A634;
    border-radius: 100vh;
    font-size: 3.733vw;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
    letter-spacing: 0;
  }
}

@-webkit-keyframes arrowmove {
  0% {
    bottom: 56px;
  }

  50% {
    bottom: 70px;
  }

  100% {
    bottom: 56px;
  }
}

@keyframes arrowmove {
  0% {
    bottom: 56px;
  }

  50% {
    bottom: 70px;
  }

  100% {
    bottom: 56px;
  }
}

@-webkit-keyframes arrowmovesp {
  0% {
    bottom: 4em;
  }

  50% {
    bottom: 5em;
  }

  100% {
    bottom: 4em;
  }
}

@keyframes arrowmovesp {
  0% {
    bottom: 4em;
  }

  50% {
    bottom: 5em;
  }

  100% {
    bottom: 4em;
  }
}

.p-mv__lists {
  position: absolute;
  bottom: 5.125em;
  left: 1.68em;
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-mv__list {
  width: 1.375em;
  line-height: 1;
}

@media screen and (max-width: 767.9px) {
  .p-mv__list {
    display: none;
  }
}

.p-mv__list img {
  width: 100%;
  height: auto;
}

.p-mv__list+.p-mv__list {
  margin-top: 2em;
}

.bnr-cont {
  width: 80vw;
  max-width: 1130px;
  margin: 0 auto;
  padding-top: 40px;
}

.bnr-cont-corp {
  width: 80vw;
  max-width: 1130px;
  margin: 0 auto;
  padding-top: 40px;
}

.bnr-item {
  width: 100% !important;
  max-width: 360px;
  margin: 0 25px 0 0;
}

.bnr-item a:hover {
  opacity: .7;
}

.bnr-item img {
  width: 100%;
}

.bnr-item-corp {
  width: 33% !important;
  max-width: 360px;
}

.bnr-item-whitespace {
  margin: 0 25px 25px 0;
}

.bnr-item-corp a:hover {
  opacity: .7;
}

.bnr-item-corp img {
  width: 100%;
}

.bnr-cont .slick-dots {
  margin-top: 24px;
}

.bnr-cont .slick-dots li {
  margin: 0 7px;
}

.bnr-cont .slick-dots li button {
  width: 12px;
  height: 12px;
  background: #dedede;
  border-radius: 0;
}

.bnr-cont .slick-dots .slick-active button {
  background: #000;
}

[class*="bnr-slidearw"] {
  width: 2rem;
  height: 3.6rem;
  margin: auto;
  background: url(/img/noifulSite/home/bnr_slide_arw.jpg) center / contain no-repeat;
  display: block;
  position: absolute;
  top: 4rem;
  z-index: 1;
}

.bnr-slidearw-prev {
  left: -3.5rem;
}

.bnr-slidearw-next {
  right: -3.5rem;
  transform: rotateZ(180deg);
}

@media screen and (max-width: 1415px) {
  .bnr-cont .slick-slide {
    width: 25.4vw;
    margin: 0 2vw 0 0;
  }
}

@media screen and (max-width: 767.9px) {
  .bnr-cont {
    width: 100%;
    margin: 0;
    padding: 7.467vw 8vw 0;
    overflow: hidden;
  }

  .bnr-cont .slick-slide {
    margin: unset;
  }

  .bnr-item {
    width: 100% !important;
    max-width: unset;
    padding: 0 2vw;
  }

  .bnr-item img {
    width: 100%;
    vertical-align: bottom;
  }

  .bnr-cont .slick-list {
    overflow: visible;
  }
}

.p-whats {
  position: relative;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .p-whats {
    position: relative;
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-whats .f-container {
    background: #F5F5F5;
    width: auto;
    padding: 0;
  }
}

.p-whats__container {
  padding: 1px 0 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-whats__container {
    background: #fff;
    margin: 0;
    padding: 10vw 5vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-whats__container img {
    width: calc(100% - 10vw);
    margin: 0 5vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-whats__container>div:first-of-type .p-whats__sub {
    margin-top: 0;
  }
}

.p-whats__intro {
  padding: 7.5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-whats__intro {
    background: #fff;
    margin: 0;
    padding: 12.5vw 10vw;
  }
}

.p-whats__ttl {
  font-size: 1.6rem;
  text-align: center;
  margin: 0 0 3em;
}

@media screen and (max-width: 767.9px) {
  .p-whats__ttl {
    background: #fff;
    padding: 0 10vw 7.6vw 10vw;
    margin: 0;
  }
}

.p-whats__ttl img {
  width: 340px;
  height: auto;
}

@media screen and (max-width: 767.9px) {
  .p-whats__ttl img {
    width: 68vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-whats__ttl--sub {
    font-size: 4.267vw;
    font-weight: 600;
    line-height: 1.3125;
    letter-spacing: 0;
    text-align: center;
    margin: 6.2vw auto 1.933vw;
  }

  .subTtl--room {
    color: #D9A634;
  }

  .subTtl--life {
    color: #64A8BE;
  }
}

.p-whats__sub {
  text-align: center;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1;
  margin: 4.6em 0 1.3em;
}

@media screen and (max-width: 767.9px) {
  .p-whats__sub {
    font-size: 2.4rem;
    margin: 2.8em 0 1em;
  }

  .p-whats__sub:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 767.9px) and (max-width: 767.9px) {
  .p-whats__sub:first-child {
    margin-top: 2.8em;
  }
}

.p-whats__txt {
  text-align: center;
  margin: 0 0 3.125em;
}

@media screen and (max-width: 767.9px) {
  .p-whats__txt {
    text-align: left;
    margin: 0 5vw 1.5em;
  }
}

.p-whats__txt--top {
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-whats__txt--top {
    background: #fff;
    padding: 0;
    text-align: center;
    font-size: 3.733vw;
    line-height: 1.857142857142857;
    letter-spacing: 0;
    font-weight: 300;
  }
}

@media screen and (max-width: 767.9px) {
  .p-whats__txt_btn {
    margin-top: 5.667vw;
  }
}

.p-service {
  padding: 10em 0 0;
  overflow: hidden;
}

@media screen and (max-width: 767.9px) {
  .p-service {
    padding: 19vw 0 0;
  }
}

.p-service__ttl {
  font-size: 28px;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin: 0 0 1.765em;
}

.p-service__ttl small{
  font-size: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-service__ttl {
    font-size: 3rem;
    margin: 0 0 1.34em;
  }
}

.p-feature {
  padding: 7.5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-feature {
    padding: 17vw 0 0;
    margin-top: -17vw;
  }
}

.p-feature+.p-feature {
  padding: 7.5em 0 0;
  margin-top: 2.5em;
}

@media screen and (max-width: 767.9px) {
  .p-feature+.p-feature {
    margin: 0;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature-block {
    padding: 0 0 0vw;
  }

  .p-feature-block::before {
    pointer-events: none;
    content: "";
    display: block;
    width: 1px;
    height: 16vw;
    margin-top: -16vw;
  }
}

.p-feature__ttl {
  font-size: 3.8rem;
  text-align: center;
  color: #D9A634;
  line-height: 1;
  font-weight: 600;
  margin: 0 0 1.579em;
}

.p-feature__ttl small {
  font-size: 50%;
}

@media screen and (max-width: 767.9px) {
  .p-feature__ttl {
    font-size: 5.7vw;
    letter-spacing: 0;
    margin: 13vw 0 5vw;
    color: #000000;
    font-weight: 600;
  }
}

.p-feature__lead {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 4.44em;
}

.ui-color--life {
  color: #64A8BE;
}

.ui-color--room {
  color: #D9A634;
}

@media screen and (max-width: 767.9px) {
  .p-feature__lead {
    margin: 0 0 1em 0;
    letter-spacing: 0;
    font-weight: 600;
  }

  .p-feature-block.life .p-feature__lead {
    margin: 0 6vw 4.5vw;
    font-size: 4vw;
    line-height: 1.9;
    color: #333;
    text-align: center;
    font-weight: normal;
  }

  .p-feature-block.room .p-feature__lead.ui-color--room {
    margin: 0 6vw 4.5vw;
    font-size: 4vw;
    line-height: 1.9;
    color: #333;
    text-align: center;
    font-weight: normal;
  }

  .p-feature-block.life .p-feature__lead.ui-color--life {
    text-align: left;
  }

  .p-feature-block.life .p-feature__lead--life {
    font-weight: bold;
  }
}

.p-feature--life .p-feature__ttl {
  color: #64A8BE;
}

@media screen and (max-width: 767.9px) {
  .p-feature--life .p-feature-block {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .contract-flow {}

  .contract-flow .flow-ttl {
    margin: 0 0 4vw;
    text-align: center;
    font-weight: 600;
    font-size: 6.5vw;
  }

  .contract-flow .flow__list {
    text-align: center;
    padding: 0 7vw 0;
    margin: 0;
  }

  .contract-flow .flow__list--inner {}

  .contract-flow .flow__list--inner::marker {
    font-size: 0;
  }

  .contract-flow .flow__list--inner dl {
    border-bottom: 1.5px solid #E2E2E2;
    padding: 0 0 4vw;
    margin: 0 0 5.5vw;
  }

  .contract-flow .flow__list--inner:last-child dl {
    border: none;
  }

  .contract-flow .flow__list--inner dt {
    color: #D9A634;
    margin: 0 0 1vw;
    font-weight: 600;
    font-size: 3.6vw;
  }

  .contract-flow .flow__list--inner dt span {
    color: #D9A634;
    font-size: 4.7vw;
  }

  .contract-flow .flow__list--inner dd {
    font-size: 3.5vw;
    line-height: 1.95;
    font-weight: normal;
  }

  .contract-flow .sub_txt {
    margin: 3vw 0 0;
    font-size: 3.2vw;
    line-height: 1.8;
    text-align: left;
    font-weight: 400;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature__catch {
    margin: 0 calc(2.9vw + 1em) 7.533vw;
    padding: 0;
    display: flex;
    justify-content: space-between;
    position: relative;
  }

  .p-feature__catch::before,
  .p-feature__catch::after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 0.8vw;
    height: 3.467vw;
    background-color: #000;
  }

  .p-feature__catch::after {
    transform: rotate(90deg);
  }

  .p-feature__catch li {
    width: 40vw;
    height: 14.933vw;
    border: 0.5vw solid #000;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-size: 3.733vw;
    font-weight: bold;
    text-align: center;
    line-height: 1.2;
    padding-top: 0.8vw;
    letter-spacing: 0.04em;
    font-weight: 600;
  }

  .p-feature__catch li span {
    font-size: 3vw;
    font-weight: 300;
  }

  .p-feature__txt {
    font-size: 3.733vw;
    letter-spacing: 0;
    line-height: 1.857142857142857;
    margin: 0 calc(2.9vw + 1em) 10vw;
  }

  .p-feature__osusume {
    margin: 0 calc(2.9vw + 1em) 19.8vw;
    background: #F5F5F5;
    padding: 6.4vw 6.667vw;
  }

  .p-feature-block.life .p-feature__osusume {
    padding: 7.5vw 6.6vw 6vw;
  }

  .p-feature__osusume--ttl {
    font-size: 4.267vw;
    font-weight: 600;
    text-align: center;
    line-height: 1;
    letter-spacing: 0;
    margin: 0 auto 4vw;
  }

  .p-feature__osusume--list {
    padding: 0;
    margin: 0;
  }

  .p-feature__osusume--list li {
    position: relative;
    padding: 0 0 0 2.933vw;
    font-size: 3.2vw;
    line-height: 1.75;
    letter-spacing: 0;
    list-style: none;
  }

  .p-feature__osusume--list li:not(:last-child) {
    margin-bottom: 1.667vw;
  }

  .p-feature__osusume--list li::before {
    content: '';
    position: absolute;
    top: 1.333vw;
    left: 0;
    width: 1.6vw;
    height: 1.6vw;
    background: #D9A634;
    border-radius: 50%;
  }

  .p-feature-block.life .p-feature__osusume--list li::before {
    background: #64A8BE;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature-wrap {
    padding: 10vw 0 0;
  }
}

.p-feature-wrap__content {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-feature-wrap__content {
    position: sticky;
    position: -webkit-sticky;
    width: 100%;
    top: 16.2vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: #fff;
    z-index: 10;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature-wrap__ttl {
    font-size: 8.533vw;
    font-weight: 600;
    letter-spacing: 0;
    line-height: 1.375;
    text-align: center;
    margin: 0 auto 3.467vw;
  }
}

.p-feature-wrap__txt {
  width: 50%;
  margin: 0;
}

.p-feature-wrap__txt a {
  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;
  height: 15vw;
  text-align: center;
  font-size: 2.2rem;
  line-height: 1;
  text-decoration: none !important;
  font-weight: 500;
}

.p-feature-wrap__txt--room {
  color: #8B8B8B;
  border-bottom: 2px solid #8B8B8B;
}

.p-feature-wrap__txt--room.current {
  color: #D9A634;
  border-bottom: 2px solid #D9A634;
}

.p-feature-wrap__txt--life {
  color: #8B8B8B;
  border-bottom: 2px solid #8B8B8B;
}

.p-feature-wrap__txt--life.current {
  color: #64A8BE;
  border-bottom: 2px solid #64A8BE;
}

.p-feature-model {
  margin: 7.5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-feature-model {
    margin: 0 0 15.5vw;
    background: #F5F5F5;
    padding: 13vw 0 12vw;
  }

  .p-feature-block.life .p-feature-model {
    margin: 0 0 0;
  }
}

.p-feature-model__ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: normal;
  line-height: 1;
  margin: 0 auto 1.765em;
}

@media screen and (max-width: 767.9px) {
  .p-feature-model__ttl {
    font-size: 6.5vw;
    margin: 0 0 1em;
    font-weight: 600;
  }

  .p-feature-block.life .p-feature-model__ttl {
    font-size: 6.4vw;
    text-align: center;
    font-weight: 600;
    margin: 0 0 4.7vw;
  }
}

.p-feature-model-inner__block {
  width: 23.125em;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-feature-model-inner__block {
    width: 85vw;
    margin: 0 2.5vw;
  }
}

@media screen and (max-width: 1245px) {
  .p-feature-model__wrap {
    overflow: hidden;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature-model__wrap {
    padding: 0;
  }

  .p-feature-model .c-img-btn a {
    background: #D9A634;
    border-radius: 10vw;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    height: 11vw;
  }
}

.p-feature-model__block--slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  max-width: calc(1200px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-feature-model__block--slider {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-feature-model__block--slider {
    width: 100%;
    display: block;
  }
}

.p-feature-model .c-img-btn {
  margin-top: 3.75em;
}

.p-news {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  padding-top: 10em;
}

@media screen and (max-width: 767.9px) {
  .p-news {
    width: 90%;
    padding: 0;
  }

  .p-feature-model .c-img-btn {
    margin-top: 12vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-news {
    padding-top: 14vw;
  }
}

.p-news__ttl {
  font-weight: normal;
  line-height: 1;
  font-size: 3.4rem;
  text-align: center;
  margin: 0 0 1.47em;
}

@media screen and (max-width: 767.9px) {
  .p-news__ttl {
    font-size: 6.4vw;
    margin: 0 0 1.2em;
    font-weight: 600;
  }
}

.p-news__lists {
  border-top: 1px solid #DEDEDE;
  padding: 0;
  margin: 0;
  overflow-y: scroll;
  height: 1040px;
}

@media screen and (max-width: 767.9px) {
  .p-news__lists {
    border-top: 0;
    overflow-y: scroll;
    height: 1800px;
  }
}

.p-news__date {
  clear: left;
  float: left;
  font-size: 1.6rem;
  width: 10em;
  padding: 1.625em 0;
  display: flex;
  align-items: center;
}

.p-news__newIcon {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 0 0 0 1.5rem;
}

@media screen and (max-width: 767.9px) {
  .p-news__date {
    float: none;
    width: auto;
    padding: 1em 1em 0;
  }

  .p-news__date:first-child {
    padding-top: 0;
  }
}

.p-news__txt {
  font-size: 1.6rem;
  padding-left: 10em;
  border-bottom: 1px solid #DEDEDE;
  padding: 1.625em 0 1.625em 10em;
}

@media screen and (max-width: 767.9px) {
  .p-news__txt {
    padding: 1em;
  }
}

.p-news__txt a {
  text-decoration: underline;
}

.p-news__txt a:hover {
  text-decoration: none;
}

.p-news__list {
  width: calc((100% - 9em) / 3);
  padding: 0.5em 0 1em 0;
}

@media screen and (max-width: 767.9px) {
  .p-news__list {
    width: 100%;
    border-bottom: 1px solid #DEDEDE;
    padding: 0 5vw 6.7vw;
  }
}

.p-news__list+.p-news__list {
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .p-news__list+.p-news__list {
    padding-top: 9.6vw;
  }
}

.p-news__list+.p-news__list::before {
  content: "";
  position: absolute;
  left: -2.25em;
  top: 0;
  width: 1px;
  height: 100%;
  background: #DEDEDE;
}

@media screen and (max-width: 767.9px) {
  .p-news__list+.p-news__list::before {
    content: none;
  }
}

.p-faq {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  padding-top: 10em;
}

@media screen and (max-width: 767.9px) {
  .p-faq {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-faq {
    padding-top: 28vw;
    padding-top: 12vw;
  }

  .p-faq.bkn_faq {
    padding: 32vw 0 0;
    display: block;
  }
}

.p-faq__ttl {
  font-weight: normal;
  line-height: 1;
  font-size: 3.4rem;
  text-align: center;
  margin: 0 0 1.47em;
}

@media screen and (max-width: 767.9px) {
  .p-faq__ttl {
    font-size: 8.4vw;
    margin: 0 0 1.2em;
    font-weight: 600;
  }

  .bkn_faq .p-faq__ttl {
    margin-bottom: 7.5vw;
  }

  .bkn_faq .p-faq__lists {
    margin-bottom: 14vw;
  }

  .p-faq__link a:hover {
    text-decoration: none;
    background: #D9A634;
    color: #fff;
  }

  .p-faq__link a {
    border: 1px solid #D9A634;
    border-radius: 10vw;
    color: #D9A634;
    font-size: 4.1vw;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 68vw;
    height: 11.5vw;
    margin: 0 auto 6vw;
  }
}

.p-faq__lists {
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 3.75em;
}

@media screen and (max-width: 767.9px) {
  .p-faq__lists {
    margin-bottom: 11.6vw;
  }
}

.p-faq__txt {
  width: calc(100% - 3em);
  font-size: 1.8rem;
  margin: 0;
}

.p-faq__txt.p-faq__txt--ans.second-qa {
  margin-bottom: 8px;
}

.p-faq__txt.p-faq__txt--ans.first-qa {
  margin-bottom: 20px;
}

@media screen and (max-width: 767.9px) {
  .p-faq__txt--ans-inner {

    width: 68vw;
  }

  .p-faq__txt--ans.p-faq__txt {
    line-height: 1.69;
    font-weight: 500;
  }

  .p-faq__txt.p-faq__txt--ans .ttl span {
    font-size: 6vw;
    color: #383838;
  }

  .ttl {
    display: flex;
    align-items: center;
    line-height: 1;
  }

  .p-faq__txt.p-faq__txt--ans.first-qa {
    margin-bottom: 4vw;
    line-height: 1.7;
  }

  .p-faq__txt.p-faq__txt--ans.first-Notes {
    font-weight: 300;
    font-size: 3.2vw;
    margin: 0 0 10vw;
  }

  .p-faq__txt.p-faq__txt--ans.second-qa {
    margin-bottom: 2.133vw;
  }

  .cont-width {
    width: 77.8vw;
  }

  .p-faq__answer .price__list--img {
    width: 69vw;
    margin-bottom: 3.5vw;
  }

  .p-faq__answer .price__list--img:nth-of-type(7) {
    margin-bottom: 8vw;
  }
}

.p-faq__txt--ans {
  font-size: 1.4rem;
  width: 100%;
}

.p-faq__en {
  display: block;
  width: 2em;
  font-size: 3.2rem;
  line-height: 1;
}

@media screen and (max-width: 767.9px) {
  .p-faq__en {
    font-size: 2.8rem;
    width: 1.5em;
  }

  .p-faq__txt_wrap {
    width: 67vw;
  }
}

.p-faq__txt_wrap {
  margin: auto 0;
  width: 94%;
}

.p-faq__question {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  border-top: 1px solid #DEDEDE;
  background: #fff;
  padding: 1.4em 4em 1.4em 2em;
  cursor: pointer;
}

@media screen and (max-width: 767.9px) {
  .p-faq__question {
    padding: 5vw 10vw 5.4vw 5vw;
  }
}

.p-faq__question::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  width: 1.6em;
  height: 0.84em;
  background: url(../../img/noifulSite/common/ico_accordion_down.svg) 0 0 no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767.9px) {
  .p-faq__question::after {
    right: 2.5vw;
    width: 4.8vw;
    height: 2.9vw;
  }
}

.p-faq__question--open::after {
  background: url(../../img/noifulSite/common/ico_accordion_up.svg) 0 0 no-repeat;
  background-size: 100% auto;
}

.p-faq__answer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
  font-size: 1.4rem;
  line-height: 2;
  background: #F5F5F5;
  border-top: 1px solid #DEDEDE;
  padding: 2.3em;
}

@media screen and (max-width: 767.9px) {
  .p-faq__answer {
    font-size: 3.2vw;
    padding: 6.5vw 7vw 5vw 5vw;
  }
}

.p-faq__answer a {
  text-decoration: underline;
}

.p-faq__answer a:hover {
  text-decoration: none;
}

.p-faq--owner {
  max-width: 980px;
  padding: 9.875em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-faq--owner {
    width: 100%;
    padding: 18vw 0 0;
  }
}

.p-faq--owner .p-faq__ttl {}

@media screen and (max-width: 767.9px) {
  .p-faq--owner .p-faq__ttl {
    font-size: 3rem;
  }
}

.p-faq--owner .p-faq__lists {
  border-bottom: 1px solid #8B8B8B;
  margin-bottom: 0;
}

.p-faq--owner .p-faq__question {
  border-top: 1px solid #8B8B8B;
}

.p-faq--owner .p-faq__answer {
  border-top: 1px solid #8B8B8B;
}

.p-mm {
  padding-top: 4.375em;
  margin-top: 5.625em;
}

@media screen and (max-width: 767.9px) {
  .p-mm {
    padding-top: 16.4vw;
    margin-top: 12.6vw;
  }
}

.p-mm__inner {
  background: #F5F5F5;
  border-top: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  padding: 3.75em 0;
}

@media screen and (max-width: 767.9px) {
  .p-mm__inner {
    padding: 15vw 0;
  }
}

.p-mm__ttl {
  font-weight: normal;
  line-height: 1;
  font-size: 3.6rem;
  text-align: center;
  margin: 0 0 0.5em;
}

@media screen and (max-width: 767.9px) {
  .p-mm__ttl {
    font-size: 3.2rem;
  }
}

.p-mm__txt {
  text-align: center;
  margin: 0 0 1.625em;
}

.p-mm__block {
  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;
}

.p-mm__mail {
  width: 17em;
  height: 2.5em;
  border: 1px solid #DEDEDE;
  font-size: 1.6rem;
  padding: 0 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.p-mm__submit {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  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: 4.75em;
  height: 2.5em;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 1.6rem;
  margin-left: 0.75em;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.p-mm__submit:hover {
  background: #fff;
  color: #000;
}

.p-property {
  padding-top: calc(105px + 6.3em);
  padding-bottom: 9.5em;
}

@media screen and (max-width: 767.9px) {
  .p-property {
    position: relative;
    width: 100%;
    padding: 25vw 0 26.1vw;
    overflow: hidden;
  }
}

.p-property__content--hide {
  display: none;
}

[class*="service__txt--"] {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  width: 29em;
  margin: 0 auto;
  padding-bottom: 0.325em;
}

.service__txt--life {
  color: #64A8BE;
  border-bottom: 2px solid #64A8BE;
}

.service__txt--life--indention {
  color: #64A8BE;
  padding-bottom: unset;
}

.service__txt--room {
  color: #D9A634;
  border-bottom: 2px solid #D9A634;
}

.service__txt--room--indention {
  color: #D9A634;
  padding-bottom: unset;
}

.p-property__content--room .c-inputCheckbox__mark:after,
.p-property__content--room .c-inputRadio__mark:after {
  border-color: #D9A634;
}

.p-property__content--room .p-property-check__ttl {
  border-color: #D9A634;
}

.banner__ttl {
  font-size: 2.6rem;
  font-weight: bold;
  text-align: center;
  width: 29em;
  margin: 0 auto;
  padding-bottom: 0.325em;
  color: #D9A634;
  border-bottom: 2px solid #D9A634;
}

.banner__img {
  margin: 2em auto 2.5em;
}

.pc-banner {
  display: block;
}

.sp-banner {
  display: none;
}

[class*="p-property__main-inner--"] {
  display: flex;
  flex-wrap: wrap;
  width: 50.4em;
  height: 17em;
  margin: 0 auto 1.7em;
  align-items: center;
}

.p-property__main-inner--life {
  background: url("/img/noifulSite/home/pic_service_02.jpg")no-repeat right / contain;
}

.p-property__main-inner--life.pc-wrap {
  display: flex;
}

.p-property__main-inner--life.sp-wrap {
  display: none;
}

.p-property__main-inner--room {
  background: url(/img/noifulSite/home/pic_service_01.jpg)no-repeat left / contain;
  flex-direction: row-reverse;
}

.p-property__main-inner--room.sp-wrap {
  display: none;
}

.p-property__main-inner--room.pc-wrap {
  display: flex;
}

@media screen and (max-width: 767.9px) {
  .p-property__txt {
    width: 20em;
  }

  .p-property__text {
    padding: unset;
    margin: 0 auto;
  }

  .p-property__text--room,
  .p-property__text--life {
    margin: 0 auto;
  }

  .slide_wrap {
    border-top: 1px solid #DEDEDE;
    margin: 0 7vw 8.5vw;
  }

  .p-feature-block.life .slide_wrap {
    border: unset;
    margin: 0 0 14vw;
  }

  .slide_wrap dl {
    text-align: center;
    margin: 0;
    height: auto;
    padding: 0 0 0;
  }

  .p-property__main-inner--life .slide_wrap dl {
    padding: 0 0 0vw;
  }

  .life-about {}

  .p-feature-block.life .slide_wrap dt.life__ttl {
    height: auto;
    font-size: 6.4vw;
    font-weight: 600;
    margin: 0 0 4vw;
    border: unset;
  }

  .life__inner {
    padding: 7.5vw 6vw 6vw;
  }

  .p-feature-block.life .slide_wrap .life__inner {
    padding: 0vw 7vw 0;
  }

  .life__inner--text {
    margin: 0;
    text-align: left;
    line-height: 1.8;
    font-weight: normal;
  }

  .p-feature-block.life .slide_wrap .life__inner--text {
    line-height: 1.9;
  }

  .slide_wrap dt {
    position: relative;
    font-size: 4.2vw;
    font-weight: 600;
    height: 15vw;
    border-bottom: 1px solid #DEDEDE;
    padding: 0 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .slide_wrap dt:after {
    content: '';
    position: absolute;
    border-bottom: 2px solid #333;
    border-left: 2px solid #333;
    width: 14px;
    height: 14px;
    transform: rotate(-45deg);
    transition: 0.5s;
    top: 5vw;
    right: 2.5vw;
  }

  .slide_wrap dt.is-selected:after {
    transform: rotate(135deg);
    top: 7.1vw;
  }

  .p-feature-block.life .slide_wrap dt.life__ttl:after {
    display: none;
  }

  .slide_wrap dd {
    display: block;
  }

  .sp-wrap .slide_wrap dd {
    background: #F5F5F5;
  }

  .p-feature-block.life .slide_wrap dd {
    background: unset;
  }

  .available {}

  .available__ttl {}

  .available__inner--section {
    padding: 7.5vw 0 2vw;
    margin: 0;
  }

  .p-property__main-inner--room.sp-wrap .available__inner--section {
    border-bottom: 1px solid #DEDEDE;
  }

  .available__inner--list {
    list-style-type: none;
    margin: 0 5vw 6vw;
  }

  .available__list--img {
    margin: 0 11vw 5.5vw;
  }

  .available__list--ttl {
    margin: 0 0 1.5vw;
    line-height: 1.38;
    font-size: 5vw;
    font-weight: 600;
  }

  .available__list--text {
    margin: 0 0 1.6vw;
    font-size: 3.6vw;
    line-height: 1.57;
    font-weight: 300;
  }

  .available__list--text span {
    font-weight: bold;
  }

  .p-property__scroll .modelRoom__ex {
    margin: 6vw 0 -3vw;
    display: block;
  }

  .modelRoom__ex dl {
    background: #F5F5F5;
    margin: 0 7vw 0;
    padding: 3.9vw 3.4vw 2vw;
  }

  .modelRoom__ex dt {
    font-size: 4.4vw;
    line-height: 1.2;
    margin: 0 0 1.1vw;
    font-weight: 600;
  }

  .modelRoom__ex dd {
    font-size: 4vw;
    line-height: 1.44;
    font-weight: 300;
  }

  .price__inner {
    background: #F5F5F5;
    padding: 8vw 5.4vw 2vw;
    border-bottom: 1px solid #DEDEDE;
  }

  .price__inner--ttl {
    margin: 0 0 7vw;
    text-align: left;
    font-size: 3.7vw;
    line-height: 1.8;
    padding: 0 1.5vw;
  }

  .price__inner--section {
    padding: 0;
  }

  .price__inner--list {
    list-style-type: none;
    margin: 0 0 7.6vw;
    height: 100%;
  }

  .price__list--ttl {
    color: #D9A634;
    width: fit-content;
    font-size: 4.2vw;
    font-weight: 600;
    margin: 0 auto 2vw 1vw;
    line-height: 1.2;
    text-align: initial;
  }

  .price__list--text {
    margin: 0 auto 3vw 1vw;
    width: fit-content;
    text-align: center;
    font-weight: normal;
  }

  .price__list--img {
    margin: 0vw 0 5.3vw;
  }

  .price__list--text-sub {
    font-size: 3.5vw;
    font-weight: 300;
    text-align: left;
    margin: 0;
    line-height: 1.61;
  }

  .room__link {}

  .room__link a,
  .life__link a {
    border: 1px solid #D9A634;
    border-radius: 9vw;
    color: #D9A634;
    width: 67vw;
    height: 11vw;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3.7vw;
    font-weight: normal;
    padding: 0 0 0;
    text-decoration: unset;
  }

  .life__link a {
    color: #64A8BE;
    border: 1px solid #64A8BE;
    margin: 9.5vw auto 0;
    padding: 0;
  }

  .room__link a:hover,
  .life__link a:hover {
    background: #D9A634;
    color: #fff;
  }

  .life__link a:hover {
    background: #64A8BE;
  }

  .room_ttl {
    color: #D9A634;
    font-size: 6vw;
    letter-spacing: 0.05em;
    font-weight: 600;
    text-align: center;
    margin: 0 0 2.5vw;
  }

  .p-property__main-inner--life .room_ttl {
    color: #64A8BE;
  }

  .p-property__ttl {
    margin: 0 auto 4.5vw;
    text-align: center;
    font-size: 4.4vw;
    line-height: 1.64;
  }

  .p-property__main-inner--life .p-property__ttl {
    font-weight: bold;
    margin-bottom: 5.1vw;
  }

  [class*="p-property__main-inner--"] {
    width: 26em;
    background: unset;
    height: unset;
    margin: unset;
  }

  .p-property__main-inner--room.sp-wrap,
  .p-property__main-inner--life.sp-wrap {
    display: block;
  }

  .p-property__main-inner--life.pc-wrap,
  .p-property__main-inner--room.pc-wrap {
    display: none;
  }

  .p-property__list {
    display: flex;
    justify-content: space-between;
    margin: 0 0 8.5vw;
  }

  .p-feature-block .p-property__list {
    margin: 0 7vw 8.5vw;
  }

  .p-feature-block.life .p-property__list,
  .p-property__main-inner--life .p-property__list {
    margin-bottom: 10.5vw;
  }

  [class*="service__txt--"] {
    width: 92vw;
    margin: 0 4vw;
    font-size: 5.5vw;
  }

  .service__txt--life,
  .service__txt--life--indention {
    width: 76vw;
    margin: 4vw auto 0;
    color: #333;
    display: block;
    border-bottom: unset;
  }

  [class*="service__txt--"] span {
    font-size: 4vw !important;
    line-height: 1.71;
    display: block;
  }

  .p-property__text--ex {
    margin: 0 0 11.8vw;
    font-size: 3.7vw;
    line-height: 1.98;
    font-weight: 500;
  }

  .banner__ttl {
    width: 92vw;
    margin: 0 4vw;
    font-size: 5.5vw;
  }

  .banner__img {
    margin: 10.667vw 4vw;
  }

  .pc-banner {
    display: none;
  }

  .sp-banner {
    display: block;
  }
}

.p-property__images img {
  top: 17.875em;
  right: 1.938em;
  left: unset;
}

.p-property__list .p-property__line:not(:last-child)::after {
  content: "＋";
  display: flex;
  justify-content: center;
}

.p-property__tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  list-style: none;
  margin: 0 0 1.7em;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-property__tabs {
    margin: 0 0 11.5vw;
  }
}

.p-property__tab {
  width: 50%;
  font-size: 3.4rem;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .p-property__tab {
    font-size: 5.7vw;
  }
}

.p-property__tab--ttl {
  margin: inherit;
  font-size: inherit;
}

.p-property__tab a {
  display: block;
  line-height: 1;
  padding: 0 0 0.7em;
  font-weight: 500;
}

.p-property__tab a:hover {
  text-decoration: none;
}

.p-property__tab--room {
  border-bottom: 2px solid #DEDEDE;
}

.p-property__tab--room a {
  color: #DEDEDE;
}

.p-property__tab--room.select {
  border-bottom: 2px solid #D9A634;
}

.p-property__tab--room.select a {
  color: #D9A634;
}

.p-property__tab--life {
  border-bottom: 2px solid #DEDEDE;
}

.p-property__tab--life a {
  color: #DEDEDE;
}

.p-property__tab--life.select {
  border-bottom: 2px solid #64A8BE;
}

.p-property__tab--life.select a {
  color: #64A8BE;
}

.p-property__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #F5F5F5;
  padding: 1.75em 2em;
}

@media screen and (max-width: 767.9px) {
  .p-property__menu {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: space-between;
    padding: 15vw 0 4.4vw;
    background: unset;
  }
}

.p-property__trigger {
  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;
  height: 2.36em;
  line-height: 1;
  font-size: 1.4rem;
  border-radius: 0;
  padding: 0;
  cursor: pointer;
}

@media screen and (max-width: 767.9px) {
  .p-property__trigger {
    width: 50vw;
    height: 11vw;
    border: 1px solid #000;
    border-left: unset;
    border-right: unset;
    background: #000;
    color: #fff;
    position: relative;
    padding: 0 0vw 0 8.5vw;
    font-size: 4vw;
    font-weight: 600;
  }

  .p-property__trigger:before {
    content: '';
    position: absolute;
    background: url(/img/noifulSite/home/icn_kodawari.png)no-repeat center / cover;
    width: 5.5vw;
    height: 4vw;
    left: 9.5vw;
  }
}

.p-property__trigger img {
  width: 1.2em;
  height: auto;
  margin-right: 0.3em;
}

@media screen and (max-width: 767.9px) {
  .p-property__trigger img {
    margin-right: 0.5em;
  }
}

.p-property__sort {
  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;
  position: relative;
  min-width: 9.8em;
  height: 2.36em;
  line-height: 1;
  font-size: 1.4rem;
  margin-right: 2em;
}

@media screen and (max-width: 767.9px) {
  .p-property__sort {
    margin-right: 0;
    height: 11vw;
    border: 1px solid #000;
    border-left: unset;
    border-right: unset;
    width: 50vw;
  }
}

.p-property__sort::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1em;
  height: 1em;
  background: url(../../img/noifulSite/common/ico_nav_arrow_bk.png) center center no-repeat;
  background-size: 100% auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-property__select {
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  text-align: right;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  color: unset;
  font-family: inherit;
  cursor: pointer;
  padding-right: 1.5em;
}

.p-property__select::-ms-expand {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-property__select {
    font-size: 4vw;
    padding: 0 8.5vw 0 5vw;
    text-align: left;
    font-weight: 600;
  }

  .p-property__sort::after {
    right: 5vw;
  }
}

.p-property__posts {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 4.3em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-property__posts {
    margin: 2.59em 0 0;
  }
}

.p-property__posts::after {
  content: "";
  display: block;
  width: 23.125em;
}

.jscroll-added .p-property__posts {
  margin-top: 5.875em;
}

@media screen and (max-width: 767.9px) {
  .jscroll-added .p-property__posts {
    margin-top: 17vw;
  }
}

.p-property__none {
  width: 100%;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  margin: 0;
}

.p-property .c-featureModel {
  width: 23.125em;
  margin-top: 5.875em;
}

@media screen and (max-width: 767.9px) {
  .p-property .c-featureModel {
    width: 100%;
    margin-top: 0;
  }
}

.p-property .c-featureModel:nth-child(-n + 6) {
  margin-top: 0;
}

@media screen and (max-width: 767.9px) {
  .p-property .c-featureModel:not(:last-child) {
    margin: 0 0 14.6vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-property .c-featureModel:first-child {
    margin-top: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-property .c-featureModel__ttl {
    font-size: 6.2vw;
    margin: 4vw 0 1.1vw;
  }

  .c-featureModel__price {
    margin: 0 0 0;
  }

  .c-featureModel__price span {
    display: block;
  }

  .c-featureModel__datum {
    font-size: 3.4vw;
    margin: 1vw 0 0;
  }

  .c-featureModel__datum,
  .c-featureModel__access {
    letter-spacing: 0.1em !important;
  }
}

.p-property-check {
  opacity: 1;
  position: fixed;
  top: 0;
  right: 0;
  width: 48em;
  height: 100%;
  background: #fff;
  overflow-y: scroll;
  z-index: 101;
  padding: 4.375em 4.75em 0;
  -webkit-transform: translateX(58em);
  transform: translateX(58em);
  -webkit-transition: 0.5s ease;
  transition: 0.5s ease;
}

@media screen and (max-width: 767.9px) {
  .p-property-check {
    position: fixed;
    right: -100vw;
    width: 100%;
    height: auto;
    padding: 5vw 9vw 0 9vw;
    -webkit-transform: none;
    transform: none;
  }
}

.p-property-check.opened {
  opacity: 1;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

@media screen and (max-width: 767.9px) {
  .p-property-check.opened {
    height: 100vh;
    right: 0;
    -webkit-transform: none;
    transform: none;
  }
}

.p-property-check__head {
  position: relative;
}

.p-property-check__result {
  font-size: 2.4rem;
  text-align: center;
  line-height: 1;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__result {
    font-size: 1.8rem;
  }
}

.p-property-check__close {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 2.4rem;
  color: #8B8B8B;
  line-height: 1;
  margin: 0;
  cursor: pointer;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__close {
    font-size: 1.8rem;
  }
}

.p-property-check__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  border-left: 3px solid #64A8BE;
  line-height: 1;
  padding: 0 0 0 0.5em;
  margin: 3em 0 1.5em;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__ttl {
    font-size: 1.8rem;
  }
}

.p-property-check__ttl:first-of-type {
  margin-top: 1.8em;
}

.p-property-check__sub {
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  margin: 3.6em 0 1em;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__sub {
    font-size: 1.2rem;
    margin: 2em 0 1em;
  }
}

.p-property-check__sub--top {
  margin-top: 0;
}

.p-property-check__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__lists {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}

.p-property-check__list {
  width: 32%;
  line-height: 1;
  margin-right: 2%;
  margin-top: 3em;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__list {
    width: 49%;
    margin-top: 6.5vw;
    margin-right: 0;
  }
}

.p-property-check__list:nth-child(3n) {
  margin-right: 0;
}

.p-property-check__list:nth-child(-n+3) {
  margin-top: 0;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__list:nth-child(-n+3) {
    margin-top: 6.5vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-property-check__list:nth-child(-n+2) {
    margin-top: 0;
  }
}

.p-property-check__btn {
  position: sticky;
  position: -webkit-sticky;
  bottom: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  padding: 2em 0 4.375em;
  background: #fff;
  margin-top: 3em;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__btn {
    display: block;
    width: 100%;
    padding: 2em calc((100% - 67vw) / 2) 10vw;
    margin: 1.5em auto 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .iphone .p-property-check__btn {
    padding-bottom: 30vw;
  }
}

.p-property-check__submit {
  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: 17.5em;
  height: 3.3em;
  font-size: 1.6rem;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: center;
  background: #000;
  border: 1px solid #000;
  font-family: inherit;
  color: #fff;
  line-height: 1;
  border-radius: 3em;
  padding: 1.7em 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__submit {
    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: 100%;
    height: 11vw;
    font-size: 1.4rem;
    margin: 1.8em 0 0 0;
    padding: 0;
  }
}

.p-property-check__submit:hover {
  background: #fff;
  color: #000;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__submit:hover {
    background: #000;
    color: #fff;
  }
}

.p-property-check__clear {
  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: 17.5em;
  height: 3.3em;
  font-size: 1.6rem;
  -webkit-appearance: none;
  border-radius: 0;
  text-align: center;
  background: #fff;
  border: 1px solid #000;
  font-family: inherit;
  color: #000;
  line-height: 1;
  border-radius: 3em;
  padding: 1.7em 0;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__clear {
    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: 60vw;*/
    width: 100%;
    height: 11vw;
    font-size: 1.4rem;
    padding: 0;
  }
}

.p-property-check__clear:hover {
  background: #000;
  color: #fff;
}

@media screen and (max-width: 767.9px) {
  .p-property-check__clear:hover {
    background: #fff;
    color: #000;
  }
}

@media screen and (max-width: 767.9px) {
  .pager {
    padding: 0 6.6vw 1.5vw;
  }

  .pager .total-number__count {
    font-size: 6.4vw;
  }
}

.total-number {
  color: black;
  font-size: 1.8rem;
}

.total-number__count {
  font-size: 3.4rem;
  font-weight: bold;
}

.p-property__overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(255, 255, 255, 0.6);
  width: 100%;
  height: 100%;
  z-index: 100;
}

.modelRoom__ex {
  display: none;
}

.p-detail {
  padding-top: calc(105px + 6.3em);
}

.back__btn {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-detail {
    overflow: hidden;
    padding: 22vw 0 0;
  }

  .back__btn {
    display: block;
    margin: 0 0 7.5vw;
  }

  .back__btn a {
    position: relative;
    display: block;
    margin: 0 0 0 7vw;
    padding: 0 0 0vw 3.2vw;
    font-size: 3.3vw;
  }

  .back__btn a:before {
    content: '';
    position: absolute;
    border-bottom: 1px solid #333;
    border-left: 1px solid #333;
    width: 2.3vw;
    height: 2.3vw;
    transform: rotate(45deg);
    left: 0;
    top: 1.6vw;
  }
}

.p-detail-settings {
  margin: 0 0 6.25em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-settings {
    padding: 0 8.6vw;
    margin: 0 0 8.5vw;
  }
}

.p-detail-settings__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  margin: 0 0 0.4em;
}

.p-detail-settings__txt {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin: 0 0 1em;
}

.p-detail-settings__price {
  font-size: 2.4rem;
  line-height: 1.4;
  font-weight: bold;
  text-align: center;
  margin: 0 0 0.4em;
}

.p-detail-settings__point {
  font-size: 1.6rem;
  line-height: 1.4;
  text-align: center;
  margin: 0 0 1em;
}

.p-detail-settings__hashes {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-detail-settings__hash {
  font-size: 1.8rem;
  text-align: center;
}

.p-detail__dismiss {
  position: absolute;
  top: 0;
  right: 0;
  color: #000;
  line-height: 1;
  font-size: 2.4rem;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-detail__dismiss:hover {
  opacity: 0.6;
}

.p-detail__slider {
  position: relative;
}

.p-detail__mv {
  position: relative;
}

.p-detail-settings,
.p-detail__slides {
  position: relative;
  width: 1200px;
  z-index: 1;
  margin: 0 auto 60px;
}

@media screen and (max-width: 1360px) {
  .hash-pc {
    display: none;
  }

  .p-detail-settings,
  .p-detail__slides {
    width: 86%;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail__mv {
    margin: 0 0 18vw;
  }

  .p-detail-settings,
  .p-detail__slides {
    padding: 0;
    margin: 0 auto 7.5vw;
  }

  .p-detail-settings__txt {
    font-size: 3.7vw;
    margin: 0 0 3.2vw;
    font-weight: 700;
  }

  .p-detail-settings__ttl {
    font-size: 5vw;
    margin: 0 0 4.4vw;
  }

  .p-detail-settings__price {
    font-size: 5vw;
    margin: 0 0 1.5vw;
    line-height: 1.5;
  }

  .p-detail-settings__point {
    font-size: 3.5vw;
    margin-bottom: 3.5vw;
    display: block;
  }

  .p-detail-settings__txt span {
    font-size: 3.2vw;
    font-weight: normal;
    display: block;
    line-height: 2;
  }

  .p-detail-settings__hash {
    font-size: 3.7vw;
  }
}

.hashtagList-detail {
  display: inline-block;
}

.p-detail__arrow {
  width: 3.125em;
  height: 3.125em;
  outline: none;
  z-index: 10;
}

.p-detail__arrow::after {
  content: none;
}

.p-detail__arrow--prev {
  left: calc(((100% - 1200px) / 2) - 4em);
  background: url(../../img/noifulSite/common/ico_swiper_prev.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1360px) {
  .p-detail__mv .p-detail__arrow--prev {
    left: 1.25em;
    top: 44%;
  }
}

@media screen and (max-width: 760px) {
  .p-detail__mv .p-detail__arrow--prev {
    top: 33%;
  }
}

.p-detail__arrow--next {
  right: calc(((100% - 1200px) / 2) - 4em);
  background: url(../../img/noifulSite/common/ico_swiper_next.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1360px) {
  .p-detail__mv .p-detail__arrow--next {
    right: 1.25em;
    top: 44%;
  }
}

@media screen and (max-width: 760px) {
  .p-detail__mv .p-detail__arrow--next {
    top: 33%;
  }
}

.p-detail__arrow.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.p-detail__slide {
  width: 23.125em;
  height: 100%;
}

.contact-link__wrap {
  display: none;
}

.p-detail__mv--contact-link,
.sp-view--contact-link,
.model-room__contact-link {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-detail__slide {
    height: 100%;
    margin: 0;
  }

  .p-detail__mv--contact-link,
  .sp-view--contact-link,
  .model-room__contact-link,
  .p-detail-plan__btn--sp a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D9A634;
    width: 69vw;
    height: 11vw;
    margin: 0 auto;
    border-radius: 10vw;
    position: relative;
    font-size: 3.6vw;
    font-weight: 600;
    padding: 0 0 0 6vw;
  }

  .contact-link__wrap {
    display: block;
    width: 84vw;
    margin: 0 auto;
  }

  .p-detail-plan__btn--sp a {
    padding-left: 0;
    background: #000;
  }

  .p-detail__mv--contact-link:before,
  .sp-view--contact-link:before,
  .p-detail__link:before,
  .model-room__contact-link:before {
    content: '';
    position: absolute;
    background: url(../../img/noifulSite/common/icn_contact.png)no-repeat center /cover;
    width: 4.9vw;
    height: 3.6vw;
    top: 3.6vw;
    left: 9vw;
  }

  .p-detail__mv--contact-link:hover:before,
  .sp-view--contact-link:hover:before,
  .p-detail__link:hover:before,
  .model-room__contact-link:hover:before {
    background: url(../../img/noifulSite/common/icn_contact_yellow.png)no-repeat center /cover;
  }

  .p-detail__mv--contact-link:hover,
  .sp-view--contact-link:hover,
  .model-room__contact-link:hover,
  .p-detail__btn--sp-view .p-detail__link:hover {
    color: #D9A634 !important;
    text-decoration: unset;
    background: #fff;
    border: 1px solid #D9A634;
  }

  [class*="contact-link__btn"] {
    position: relative;
  }

  [class*="contact-link__btn"] {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #D9A634;
    width: 84vw;
    height: 11.2vw;
    margin: 0 auto 10px;
    border-radius: 10vw;
    position: relative;
    font-size: 3.733vw;
    font-weight: 600;
    padding: 0 0 0 19vw;
    letter-spacing: 0;
  }

  [class*="contact-link__btn"]:hover,
  [class*="contact-link__btn"]:focus {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
  }

  [class*="contact-link__btn"] .contact-btn--free {
    position: absolute;
    left: 0;
    width: 19.2vw;
    height: 11.2vw;
    background: #000000;
    border-radius: 10vw 0 0 10vw;
    padding: 2.4vw 4.8vw 2.667vw 6.4vw;
  }

  [class*="contact-link__btn"] p {
    margin: 0;
    display: flex;
    align-items: center;
  }

  [class*="contact-link__btn"] p:before {
    content: '';
    position: relative;
    background: url(../../img/noifulSite/common/icon_window.png) no-repeat center /cover;
    width: 4.8vw;
    height: 4.267vw;
    display: block;
    margin-right: 8px;
  }

  .contact-link__wrap--float {
    background: #FFFFFF;
  }

  .contact-link__btn--float {
    width: 100%;
    height: 13.867vw;
    border-radius: 0;
    margin: 0;
    font-size: 4.267vw;
    padding: 0 0 0 18.667vw;
  }

  .contact-link__btn--float .contact-btn--free {
    height: 13.867vw;
    border-radius: 0;
    padding: 3.733vw 5.333vw;
  }

  .contact-link__btn--float .contact-btn--text {
    display: flex;
    flex-direction: column;
  }

  .contact-link__btn--float .contact-btn--text p {
    margin-top: 1.067vw;
  }

  .contact-link__btn--float .contact-btn--text p:before {
    background: url(../../img/noifulSite/common/icon_window-float.png) no-repeat center /cover;
    width: 5.333vw;
    height: 4.8vw;
    margin-right: 2.133vw;
  }

  .contact-link__btn--float .contact-btn--text span {
    font-size: 2.4vw;
    line-height: 1.2;
    margin-left: 1.067vw;
  }

  .p-detail-plan__btn--sp a:hover {
    color: #000 !important;
    text-decoration: unset;
    background: #fff;
    border: 1px solid #000;
  }
}

.p-detail__slide img {
  height: 100%;
  width: auto;
}

@media screen and (max-width: 767.9px) {
  .p-detail__slide img {
    width: auto;
    height: 100%;
  }
}

.p-detail__slide a {
  display: block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 208px;
  overflow: hidden;
  text-align: center;
}

.p-detail__slide a:hover {
  opacity: 0.6;
}

.p-detail-tour {
  margin: 4em auto 0;
}

.change-pc-view {
  display: block;
}

.change-sp-view {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-detail-tour {
    margin: 6vw 0 7.4vw;
  }

  .change-pc-view {
    display: none;
  }

  .change-sp-view {
    display: block;
  }
}

.p-detail-tour__frame {
  position: relative;
  width: 50em;
  height: 37.5em;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-detail-tour__frame {
    width: 100%;
    height: 75vw;
  }
}

.p-detail-tour__frame iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-detail-tour__txt {
  text-align: center;
  margin: 1em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-tour__txt {
    text-align: left;
    padding: 0 8.6vw;
  }
}

.p-detail-plan {
  margin: 7em auto 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan {
    margin: 17vw auto 15.4vw;
  }
}

.p-detail-plan__slides {
  position: relative;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__slides {
    width: calc(100% - 17.2vw);
    margin: 0 auto;
  }
}

.p-detail-plan__slider {
  position: relative;
  width: 1200px;
  z-index: 1;
  margin: 0 auto;
}

@media screen and (max-width: 1360px) {
  .p-detail-plan__slider {
    width: 86%;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__slider {
    width: 100%;
    padding: 0 8.6vw;
  }
}

.p-detail-plan__slider.min .swiper-wrapper {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__slider.min .swiper-wrapper {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

@media screen and (max-width: 1360px) {
  .p-detail-plan__slider.min {
    width: 1200px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
}

@media screen and (max-width: 1280px) {
  .p-detail-plan__slider.min {
    width: 100%;
    padding: 0 1.25em;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__slider.min {
    padding: 0;
  }
}

.swiper-counter {
  margin-top: 0.4em;
}

.swiper-counter__wrapper {
  font-size: 1.8rem;
  text-align: center;
  color: black;
}

@media screen and (max-width: 767.9px) {
  .swiper-counter {
    margin-top: 2vw;
  }

  .swiper-counter__wrapper {
    font-weight: 600;
    font-size: 3.9vw;
  }
}

.p-detail-plan__arrow {
  top: 6em;
  width: 3.125em;
  height: 3.125em;
  z-index: 10;
}

.p-detail-plan__arrow::after {
  content: none;
}

.p-detail-plan__arrow--prev {
  left: calc(((100% - 1200px) / 2) - 4em);
  background: url(../../img/noifulSite/common/ico_swiper_prev.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1360px) {
  .p-detail-plan__arrow--prev {
    left: 1.25em;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan .p-detail-plan__arrow--prev {
    left: -0.75em;
    top: 36%;
  }
}

.p-detail-plan__arrow--next {
  right: calc(((100% - 1200px) / 2) - 4em);
  background: url(../../img/noifulSite/common/ico_swiper_next.png) 0 0 no-repeat;
  background-size: 100% 100%;
}

@media screen and (max-width: 1360px) {
  .p-detail-plan__arrow--next {
    right: 1.25em;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan .p-detail-plan__arrow--next {
    right: -0.75em;
    top: 36%;
  }
}

.p-detail-plan__arrow.swiper-button-disabled {
  opacity: 0;
}

.p-detail-plan__ttl {
  max-width: calc(1200px + 1.54em);
  padding: 0 0.77em;
  font-size: 2.6rem;
  line-height: 1;
  margin: 0 auto 1em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__ttl {
    font-size: 6vw;
    padding: 0 8.6vw;
  }
}

.p-detail-plan__ttl span {
  display: block;
  font-size: 1.4rem;
  margin: 1em 0 0;
  line-height: 1.75em;
}

.p-detail-plan__point {
  font-size: 1.8rem;
  text-align: left;
  margin: 0.5em 0 1.5em;
}

.p-detail-plan__point--center {
  text-align: center;
}

.p-detail-plan__txt {
  margin: 0.5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__txt {
    font-size: 1.3rem;
  }

  .p-detail-plan__ttl span {
    line-height: 1.7;
    font-size: 4vw;
    font-weight: 400;
    margin: 3vw 0 0;
  }
}

.p-detail-plan__txt--center {
  text-align: center;
  margin: 20px 0 0;
}

.p-detail-plan__txt--center--sp-view {
  display: none;
}

.p-detail-plan__btn {
  width: 17.5em;
  height: 3.3em;
  margin: 3.8em auto 0;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
}

.p-detail-plan__btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  border-radius: 2em;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  border: 1px solid #000;
}

.p-detail-plan__btn a:hover {
  background: #8B8B8B;
  border: 1px solid #8B8B8B;
  text-decoration: none;
}

.p-detail-plan__notes {
  max-width: calc(1200px + 2.856em);
  padding: 0 1.428em;
  font-size: 1.4rem;
  margin: 2em auto 0;
}

.contact__link {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__txt--center {
    display: none;
  }

  .p-detail-plan__txt--center--sp-view {
    display: block;
    font-size: 3.3vw;
    margin: 6vw 0 0;
  }

  .p-detail-plan__notes {
    padding: 0 8.6vw 9.1vw;
  }

  .contact__link {
    display: block;
  }

  .contact__link a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #D9A634;
    border-radius: 10vw;
    width: 67vw;
    height: 11vw;
    margin: 0 auto 6.5vw;
    color: #D9A634;
    font-size: 3.7vw;
    font-weight: 600;
  }

  .contact__link a:hover,
  .contact__link a:hover {
    text-decoration: none;
    background: #D9A634;
    color: #fff;
  }
}

.p-detail-plan__pic {
  width: 17.125em;
  overflow: hidden;
  text-align: center;
}

@media screen and (max-width: 767.9px) {
  .p-detail-plan__pic {
    width: calc((100% - 20px) / 2);
    padding: 0;
  }
}

.p-detail-plan__pic img {
  height: 151px;
  width: auto;
  object-fit: contain;
}

.blog__thumbnail-contents {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  margin-top: 5.625em;
}

.blog__thumbnail-contents .p-detail-plan__ttl {
  padding: 0;
}

.thumbnail__list {
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2.5em 1.25em;
  list-style: none;
}

.thumbnail__item {
  width: 100%;
  list-style: none;
}

.thumbnail__item a:hover {
  text-decoration: none;
  opacity: .8;
}

.card__img {
  width: 100%;
  height: 12.688em;
  margin: 0 0 0.313em;
}

.card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__ttl {
  font-size: 0.75em;
  color: #000000;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-weight: 600;
  margin: 0;
}

.card__day {
  font-size: 0.75em;
  color: #8B8B8B;
  text-align: left;
  letter-spacing: 0.03em;
  margin-top: 0.625em;
  margin-bottom: 0;
}

.card__tag-wrap {
  display: flex;
  align-items: baseline;
  margin-top: 0.25em;
}

.card__category-name {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  height: fit-content;
  background: #F5F5F5;
  font-size: 0.75em;
  padding: 0.125em 0.5em;
  float: left;
  margin: 0 0.5em 0 0;
  white-space: nowrap;
}

.card__tag-list {
  display: flex;
  flex-wrap: wrap;
  max-width: 100%;
  width: 100%;
  padding: 0;
}

.card__tag-item {
  width: fit-content;
  line-height: 1.4;
  list-style: none;
}

.card__tag-item:not(:last-child) {
  margin-right: 0.625em;
}

.card__tag-item a {
  font-size: 0.75em;
}

@media screen and (max-width: 767.9px) {
  .blog__thumbnail-contents .p-detail-plan__ttl {
    padding: 0 8.6vw;
  }

  .blog__thumbnail-contents {
    width: auto;
    padding: 0;
    margin-top: 15.9vw;
  }

  .thumbnail__list {
    display: block;
    padding: 0 8.6vw;
  }

  .thumbnail__item:not(:last-child) {
    margin-bottom: 7.467vw;
  }

  .card__img {
    width: 100%;
    height: 56vw;
    margin-bottom: 3.2vw;
  }

  .card__ttl {
    font-size: 3.733vw;
    font-weight: 600;
    margin: 0;
  }

  .card__day {
    font-size: 3.2vw;
    color: #8B8B8B;
    text-align: left;
    letter-spacing: 0.03em;
    margin-top: 2vw;
    margin-bottom: 0;
  }

  .card__tag-wrap {
    gap: 2.133vw;
    margin-top: 1.067vw;
    align-items: baseline;
  }

  .card__category-name {
    background: #F5F5F5;
    font-size: 3.2vw;
    padding: 0.533vw 1.6vw;
    margin: 0 2.133vw 0 0;
  }

  .card__tag-list {
    display: flex;
    flex-wrap: wrap;
    max-width: 100%;
    width: 100%;
    padding: 0;
  }

  .card__tag-item {
    float: unset;
    width: fit-content;
  }

  .card__tag-item:not(:last-child) {
    margin-right: 2.667vw;
  }

  .card__tag-item a {
    font-size: 3.2vw;
  }
}

.p-detail-outline {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  margin-top: 5.625em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-outline {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-detail-outline {
    width: auto;
    padding: 0 8.6vw;
    margin-top: 15.9vw;
  }
}

.p-detail-outline__other {
  padding-bottom: 3.75em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-outline__other {
    padding: 0 5vw 14vw;
  }
}

.p-detail-outline__ttl {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-outline__ttl {
    font-size: 1.4rem;
  }
}

.p-detail-outline__txt {
  font-size: 1.8rem;
  margin: 0 0 2.5em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-outline__txt {
    font-size: 1.4rem;
    margin: 0 0 1em;
  }
}

.p-detail-outline__txt:last-child {
  margin: 0;
}

.p-detail-table {
  table-layout: auto;
  width: 100%;
  border-left: 1px solid #DEDEDE;
  border-bottom: 1px solid #DEDEDE;
  margin-bottom: 3.75em;
}

.p-detail-table__head {
  background: #F5F5F5;
  font-size: 1.8rem;
  text-align: left;
  border-top: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  padding: 0.5em 2em 0.5em 5em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-table {
    margin-bottom: 8vw;
  }

  .p-detail-table__head {
    font-size: 1.4rem;
    padding: 0.5em 1em;
  }
}

.p-detail-table__ttl {
  width: 18em;
  font-size: 1.8rem;
  text-align: left;
  border-top: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  padding: 0.5em 2em 0.5em 5em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-table__ttl {
    width: 30%;
    font-size: 3vw;
    padding: 0.5em 1em;
  }
}

.p-detail-table__ttl span {
  font-size: 1rem;
  vertical-align: top;
}

.p-detail-table__txt {
  width: calc(100% - 18em);
  font-size: 1.8rem;
  border-top: 1px solid #DEDEDE;
  border-right: 1px solid #DEDEDE;
  padding: 0.5em 2em 0.5em 5em;
}

.p-detail-table__txt ul {
  padding: 0;
  margin: 0;
}

.p-detail-table__txt .p-detail-settings__hash {
  list-style: none;
  text-align: left;
  font-size: 1.8rem;
}

@media screen and (max-width: 767.9px) {
  .p-detail-table__txt {
    width: 50%;
    font-size: 1.4rem;
    padding: 0.5em 1em;
  }

  .p-detail-table__txt ul {
    padding: 0;
    margin: 0;
  }

  .p-detail-table--sp {
    display: contents;
  }

  .p-detail-table .p-detail-table__txt .p-detail-settings__hash {
    font-size: 1.4rem;
  }
}

.p-detail-table__txt a {
  text-decoration: underline;
}

.p-detail-table__txt a:hover {
  opacity: .6;
  text-decoration: none;
}

.p-detail-notes {
  font-size: 1.6rem;
}

@media screen and (max-width: 767.9px) {
  .p-detail-notes {
    font-size: 3.7vw;
  }
}

.model-room__wrap {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .model-room__wrap {
    display: block;
  }

  .model-room__ttl {
    margin: 0 0 1.3vw;
    font-size: 6.4vw;
    font-weight: bold;
  }

  .model-room__txt {
    margin: 0 0 4.5vw;
    font-size: 3.8vw;
    line-height: 1.83;
  }

  .model-room__contact-link {
    margin: 6vw auto 6vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-left: 2vw;
  }

  .model-room__contact-link:before {
    left: 10.3vw;
  }

  .model-room__ex {
    margin: 0 0 15vw;
    font-size: 3.5vw;
    line-height: 1.6;
  }
}

.p-detail__btn {
  width: 17.5em;
  height: 3.3em;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  margin: 1.8em auto 0;
}

.p-detail__btn--sp-view {
  display: none;
}

.p-detail__link {
  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: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  color: #fff !important;
  background: #000;
  border: 1px solid #000;
  border-radius: 2em;
}

.p-detail__link:hover {
  background: #8B8B8B;
  border: 1px solid #8B8B8B;
  text-decoration: none;
}

.p-detail__link span {
  display: block;
  font-weight: normal;
  font-size: 1.4rem;
  margin: 0.3em 0 0;
}

.p-detail-company {
  max-width: calc(980px + 2.5em);
  padding: 0;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-company {
    width: 90%;
    padding: 0;
    margin-bottom: 10.667vw;
  }
}

.p-detail-company__ttl {
  font-size: 2.6rem;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail-company__ttl {
    font-size: 1.8rem;
  }
}

.p-detail-company__txt {
  font-size: 1.8rem;
  margin: 0;
}

.p-detail-company__txt a {
  text-decoration: underline;
}

.p-detail-company__txt a:hover {
  opacity: .6;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .p-detail-company__txt {
    font-size: 1.4rem;
  }
}

.p-detail-share {
  margin: 8.4375em 0 0;
  padding: 0 0 7em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-share {
    margin: 19vw 0 0;
    padding-bottom: 25.5vw;
  }

  .p-detail-share .p-detail-more__items a {
    border: 1px solid #D9A634;
    color: #D9A634 !important;
  }

  .p-detail-share .p-detail-more__items a:hover {
    color: #fff !important;
    border: 1px solid #D9A634;
    background: #D9A634;
  }
}

.p-detail-share__ttl {
  font-size: 3.4rem;
  text-align: center;
  line-height: 1;
  margin: 0 0 1.6em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-share__ttl {
    font-size: 2rem;
  }
}

.p-detail-share__lists {
  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;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-detail-share__list {
  width: 2.8125em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-share__list:first-child {
    width: 6.4vw;
  }

  .p-detail-share__list:nth-child(2),
  .p-detail-share__list:last-child {
    width: 8.733vw;
  }
}

.p-detail-share__list+.p-detail-share__list {
  margin-left: 3.5em;
}

@media screen and (max-width: 767.9px) {
  .p-detail-share__list+.p-detail-share__list {
    margin-left: 8vw;
  }
}

.p-detail-share__list a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-detail-share__list a:hover {
  opacity: 0.7;
}

.p-detail-share__img {
  width: 100%;
  height: auto;
}

.p-detail-share--other {
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-detail__btn--sp-view {
    font-size: 1.4rem;
    margin: 11.5vw auto 0;
    display: block;
  }

  .p-detail__btn {
    display: none;
  }
}

.p-detail-more__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: unset;
  padding: unset;
}

.p-detail-more {
  padding-bottom: 11.2rem;
}

.p-detail-more__items {
  width: 17.5em;
  height: 2.87em;
  font-size: 1.6rem;
  text-align: center;
  font-weight: bold;
  line-height: 1.4;
  list-style: none;
}

.p-detail-more__list li:not(:last-child) {
  margin: 0 2em 0 0;
}

.p-detail-more__items a {
  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: 100%;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  color: #000 !important;
  background: #fff;
  border: 1px solid #000;
  box-sizing: border-box;
  border-radius: 2em;
}

.p-detail-more__items a:hover {
  text-decoration: none;
  color: #fff !important;
  background: #000;
  border: 1px solid #000;
}

@media screen and (max-width: 767.9px) {

  .p-detail-more,
  .p-detail-more__list li:not(:last-child) {
    display: none;
  }

  .p-detail__link {
    width: 68vw;
    height: 11vw;
    font-size: 3.6vw;
    letter-spacing: 0.03em;
    margin: 0 auto;
    background: #D9A634;
    border: unset;
    font-weight: 600;
    padding: 0 0 0 6vw;
    position: relative;
  }

  .p-detail-more__items:last-child {
    display: none;
  }

  .p-detail-more__items:last-child {
    display: none;
  }
}

.mfp-zoom-out-cur .mfp-image-holder .mfp-close {
  display: none;
}

img.mfp-img {
  padding: 2em 0 0;
}

.mfp-bg {
  background: #fff;
}

.mfp-figure:after {
  content: none;
}

.fixed_menu {
  position: fixed;
  width: 100%;
  height: 100%;
}

.swiper-button-prev01,
.swiper-button-prev02,
.swiper-button-prev03,
.swiper-button-next01,
.swiper-button-next02,
.swiper-button-next03 {
  outline: none;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  cursor: pointer;
}

.swiper-button-prev01,
.swiper-button-next01 {}

.model-room__slides {
  position: relative;
}

.swiper-button-prev03 {
  top: calc(50% - 2rem);
  left: -4vw;
}

.swiper-button-next03 {
  top: calc(50% - 2rem);
  right: -4vw;
}

.p-ownerMv {
  position: relative;
  background: #e4eaed;
  padding-top: 105px;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv {
    background: #e4eaed;
    padding: 16.4vw 0 0;
  }
}

.p-ownerMv__inner {
  position: relative;
  max-width: 1200px;
  height: 27.5em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
  margin: 0 auto;
  padding: 0 0 0 6em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__inner {
    display: block;
    height: auto;
    min-height: 135vw;
    padding: 9.6vw 0 0;
  }
}

.p-ownerMv__inner--center {
  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;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__inner--center {
    padding: 0 15vw;
  }

  .p-ownerMv__inner--center::before {
    content: none;
  }
}

.p-ownerMv__ttl {
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1;
  margin: 0 0 1em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__ttl {
    font-size: 3.2rem;
    text-align: center;
    line-height: 1.375;
    margin: 0 0 0.5em;
  }
}

.p-ownerMv__ttl--center {
  text-align: center;
  margin: 0;
}

.p-ownerMv__ttl--center img {
  display: block;
  margin: 0 auto;
}

.p-ownerMv__txt {
  font-size: 2.6rem;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__txt {
    font-size: 1.8rem;
    text-align: center;
  }
}

.p-ownerMv__img {
  position: absolute;
  top: 50%;
  right: 4em;
  width: 29.5em;
  height: auto;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__img {
    display: block;
    position: relative;
    top: auto;
    right: auto;
    width: 80%;
    height: auto;
    -webkit-transform: none;
    transform: none;
    margin: 10vw auto 0;
  }
}

.p-ownerMv__scroll {
  display: none;
}

@media screen and (max-width: 767.9px) {
  .p-ownerMv__scroll {
    display: block;
    position: absolute;
    width: 14.5vw;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    -webkit-animation: arrowowner 1.4s ease-in-out infinite;
    animation: arrowowner 1.4s ease-in-out infinite;
  }
}

@-webkit-keyframes arrowowner {
  0% {
    bottom: 4vw;
  }

  50% {
    bottom: 8vw;
  }

  100% {
    bottom: 4vw;
  }
}

@keyframes arrowowner {
  0% {
    bottom: 4vw;
  }

  50% {
    bottom: 8vw;
  }

  100% {
    bottom: 4vw;
  }
}

.p-ownerWrap {
  padding: 0 1.25em 6.25em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWrap {
    padding: 0 5%;
  }
}

.p-ownerWrap--lower {
  padding: 8.7em 1.25em 5.625em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWrap--lower {
    padding: 16vw 0 18vw;
  }
}

.p-ownerWrap__ttl {
  text-align: center;
  max-width: 1200px;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: normal;
  margin: 3.8em auto 4.4em;
  padding: 0 0 1em;
  color: #D9A634;
  border-bottom: 1px solid #D9A634;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWrap__ttl {
    font-size: 2.4rem;
    margin: 12vw auto 17vw;
    padding-bottom: 0.5em;
  }
}

.p-ownerWrap__ttl--life {
  color: #64A8BE;
  border-bottom: 1px solid #64A8BE;
}

.p-ownerWrap__txt {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 0 0 8.3em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWrap__txt {
    font-size: 2.4rem;
    font-weight: bold;
    margin: 0 0 17vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-ownerWrap__indent {
    display: block;
    text-indent: 0.5em;
  }
}

.p-ownerWhats {
  max-width: 1200px;
  margin: 0 auto;
  padding: 9.6875em 0 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats {
    padding: 19.3vw 5vw 0;
  }
}

.p-ownerWhats__ttl {
  text-align: center;
  line-height: 1;
  font-size: 1.6rem;
  margin: 0 0 2.5em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__ttl {
    width: 68vw;
    margin: 0 auto 8.5vw;
  }
}

.p-ownerWhats__ttl img {
  width: 20em;
  height: auto;
}

.p-ownerWhats__txt {
  text-align: center;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__txt {
    text-align: left;
  }
}

.p-ownerWhats__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  list-style: none;
  margin: 2.8em 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__lists {
    display: block;
    margin: 10vw 0 0;
  }
}

.p-ownerWhats__list {
  width: 13.125em;
  margin: 0 0.93em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__list+.p-ownerWhats__list {
    margin-top: 9.6vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__list {
    width: 48vw;
    text-align: center;
    margin: 0 auto;
  }
}

.p-ownerWhats__caption {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin: 0 0 1em;
}

.p-ownerWhats__img {
  display: block;
  margin: 2em auto 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerWhats__img {
    width: 32vw;
  }
}

.p-ownerWhats__img--none {
  margin: 0 auto;
}

.p-ownerService {
  margin: 10.3125em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService {
    margin: 18vw 0 0;
  }
}

.p-ownerService__ttl {
  font-size: 3.4rem;
  text-align: center;
  font-weight: normal;
  margin: 0 auto 1em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService__ttl {
    font-size: 2.4rem;
    line-height: 1.4;
    margin: 0 0 8.5vw;
  }
}

.p-ownerService-block {
  text-align: center;
  margin: 0 auto;
  /*
  &__btn{
  	width: 18.4em;
  	height: 3.4em;
  	font-size: 2.2rem;
  	margin: 2.7em auto 0;
  	@include deviceSP{
  		width: 67vw;
  		height: 12.5vw;
  		font-size: 1.6rem;
  		margin: 10vw auto 0;
  	}
  	&--normal{
  		width: 19.2em;
  		height: 3.65em;
  		font-size: 2.6rem;
  		margin-top: 1.92em;
  		@include deviceSP{
  			width: 67vw;
  			height: 12.5vw;
  			font-size: 1.6rem;
  		}
  	}
  }
  &__link{
  	position: relative;
  	@include flex(center,center);
  	width: 100%;
  	height: 100%;
  	background: $wh-color;
  	color: $bk-color;
  	border: 1px solid $bk-color;
  	border-radius: 3em;
  	&::before{
  		position: absolute;
  		top: 50%;
  		right: 1.3em;
  		content: '';
  		width: 0.5em;
  		height: 0.68em;
  		background: url(../img/common/ico_less_bk.png) 0 0 no-repeat;
  		background-size: 100% auto;
  		transform: translateY(-50%);
  	}
  	&:hover{
  		background: $bk-color;
  		color: $wh-color;
  		text-decoration: none;
  		&::before{
  			background: url(../img/common/ico_less_wh.png) 0 0 no-repeat;
  			background-size: 100% auto;
  		}
  	}
  	&--normal{
  		&::before{
  			content: none;
  		}
  	}
  }
  */
}

.p-ownerService-block+.p-ownerService-block {
  margin-top: 9.5em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block+.p-ownerService-block {
    margin-top: 30vw;
  }
}

.p-ownerService-block__ttl {
  font-size: 3.4rem;
  text-align: center;
  color: #D9A634;
  line-height: 1;
  margin: 0 0 0.8em;
  font-weight: normal;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__ttl {
    font-size: 2.4rem;
    margin: 0 0 8.5vw;
  }
}

.p-ownerService-block__ttl--bk {
  color: #000;
}

.p-ownerService-block__txt {
  text-align: center;
  font-weight: bold;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__txt {
    font-size: 1.9rem;
  }
}

.p-ownerService-block__lists {
  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;
  list-style: none;
  padding: 0;
  margin: 2.2em 0 4.7em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__lists {
    display: block;
    margin: 6vw 0 12vw;
  }
}

.p-ownerService-block__list {
  position: relative;
  width: 16em;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
  padding: 0;
  padding: 0.6em;
  margin: 0 1.25em;
}

.p-ownerService-block__list::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.5em;
  height: 100%;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  border-bottom: 1px solid #000;
}

.p-ownerService-block__list::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 0.5em;
  height: 100%;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
}

@media screen and (max-width: 1200px) {
  .p-ownerService-block__list {
    width: 16em;
  }
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__list {
    width: 58vw;
    margin: 0 auto;
  }

  .p-ownerService-block__list+.p-ownerService-block__list {
    margin-top: 5.3vw;
  }
}

.p-ownerService-block__btn {
  margin: 2.75em auto 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__btn {
    font-size: 1.6rem;
    margin: 10vw auto 0;
  }
}

.p-ownerService-block__info {
  font-size: 2.8rem;
  text-align: center;
  font-weight: bold;
  margin: 1.2em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerService-block__info {
    font-size: 1.4rem;
    margin: 14vw 0 0;
  }
}

.p-ownerService-block--life .p-ownerService-block__ttl {
  color: #64A8BE;
}

.p-ownerContact {
  margin: 6.875em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerContact {
    margin: 17vw 0 0;
    padding: 0 0 15vw;
  }
}

.p-ownerContact__ttl {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin: 0 0 2.1em;
}

@media screen and (max-width: 767.9px) {
  .p-ownerContact__ttl {
    font-size: 1.4rem;
  }
}

.p-ownerContact__btn {
  width: 18.5em;
  height: 3.3em;
  font-size: 1.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-ownerContact__btn {
    width: 67vw;
    height: 12.5vw;
    font-size: 1.4rem;
  }
}

.p-ownerContact__link {
  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: 100%;
  height: 100%;
  background: #000;
  font-weight: bold;
  color: #fff !important;
  border: 1px solid #000;
  border-radius: 3em;
  text-decoration: none !important;
}

.p-ownerContact__link:hover {
  background: #8B8B8B;
  border: 1px solid #8B8B8B;
  text-decoration: none;
}

@media screen and (max-width: 767.9px) {
  .p-ownerContact__link:hover {
    background: #000;
    border: 1px solid #000;
  }
}

.p-ownerContact__material {
  font-size: 1.8rem;
  text-align: center;
  font-weight: bold;
  margin: 2.8em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-ownerContact__material {
    margin: 8.8vw 0 0;
  }
}

.p-ownerContact__dl {
  border-bottom: 1px solid #000;
  padding: 0 0 0.3em;
}

.p-ownerContact__dl:hover {
  text-decoration: none;
}

.p-owLowRecommend__ttl {
  font-size: 3.4rem;
  font-weight: bold;
  text-align: center;
  color: #D9A634;
  line-height: 1;
  margin: 0 0 2em;
}

.p-owLowRecommend__block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__block {
    padding: 0 10vw;
  }
}

.p-owLowRecommend__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__lists {
    display: block;
  }
}

.p-owLowRecommend__list {
  width: 17em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__list {
    width: auto;
  }
}

.p-owLowRecommend__list+.p-owLowRecommend__list {
  margin-left: 6em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__list+.p-owLowRecommend__list {
    margin-left: 0;
    margin-top: 12vw;
  }
}

.p-owLowRecommend__list--life {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-owLowRecommend__list--outline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-flow: column;
  flex-flow: column;
}

.p-owLowRecommend__list--outline img {
  -ms-flex-negative: 0;
  flex-shrink: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__img {
    display: block;
  }
}

.p-owLowRecommend__txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 1.5em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowRecommend__txt {
    font-size: 1.9rem;
    margin: 0 0 1em;
  }
}

.p-owLowFeature {
  margin: 10em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature {
    margin: 18vw 0 0;
  }
}

.p-owLowFeature__block {
  max-width: 1200px;
  text-align: center;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__block {
    padding: 0 10vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__img {
    display: block;
    width: 100%;
    margin: 0 auto;
  }
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__img--small {
    width: 74%;
  }
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__img--min {
    width: 60%;
  }
}

.p-owLowFeature__ttl {
  font-weight: bold;
  font-size: 1.8rem;
  text-align: center;
  margin: 6.25em 0 1.6em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__ttl {
    font-size: 1.9rem;
    margin: 14vw 0 9.6vw;
  }
}

.p-owLowFeature__ttl:first-child {
  margin-top: 0;
}

.p-owLowFeature__ttl--life {
  margin: 5.8em 0 1em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__ttl--life {
    margin: 14vw 0 9.6vw;
  }
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__ttl--middle {
    margin-bottom: 1em;
  }
}

.p-owLowFeature__ttl--none {
  margin-bottom: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__ttl--none {
    margin-bottom: 9.6vw;
  }
}

.p-owLowFeature__txt {
  text-align: center;
  margin: 2.5em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFeature__txt {
    text-align: left;
    margin-top: 2em;
  }
}

.p-owLowFlow {
  margin: 13.125em 0 5.625em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow {
    margin: 28vw 0 18vw 0;
  }
}

.p-owLowFlow__block {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 6.875em 5.625em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__block {
    padding: 0 10vw 18vw;
  }
}

.p-owLowFlow__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__lists {
    display: block;
  }
}

.p-owLowFlow__list {
  width: 16em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__list {
    width: 100%;
  }

  .p-owLowFlow__list+.p-owLowFlow__list {
    margin-top: 12vw;
  }

  .swiper-slide.model-room__slide {
    width: 323px;
    height: 208px;
    display: flex;
  }

  .swiper-slide.model-room__slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}

.p-owLowFlow__ttl {
  width: 10.8em;
  height: 10.8em;
  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;
  font-size: 1.8rem;
  text-align: center;
  line-height: 2;
  font-weight: bold;
  background: url(../../img/noifulSite/owner/img_circle.png) 0 0 no-repeat;
  background-size: 100% auto;
  border-radius: 100%;
  margin: 0 auto 1.5em;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__ttl {
    width: 43vw;
    height: 43vw;
    background: url(../../img/noifulSite/owner/img_circle_sp.png) 0 0 no-repeat;
    background-size: 100% auto;
  }
}

.p-owLowFlow__txt {
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__txt {
    width: 67vw;
    text-align: justify;
    margin: 0 auto;
  }
}

.p-owLowFlow__indent {
  text-indent: -1em;
  padding-left: 1em;
  margin: 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__indent {
    width: 67vw;
    margin: 0 auto;
  }
}

.p-owLowFlow__detail {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 2.4em 0;
}

@media screen and (max-width: 767.9px) {
  .p-owLowFlow__detail {
    font-size: 1.4rem;
    margin: 16vw 0 7.4vw;
  }
}

.p-dl {
  padding: 10.625em 0;
}

@media screen and (max-width: 767.9px) {
  .p-dl {
    padding: 33vw 9.6vw;
  }
}

.p-dl__ttl {
  text-align: center;
  font-size: 3.4rem;
  line-height: 1;
  margin: 0 0 2.65em;
}

@media screen and (max-width: 767.9px) {
  .p-dl__ttl {
    font-size: 3.2rem;
    margin: 0 0 12vw;
  }
}

.p-dl__info {
  text-align: center;
  font-size: 2.6rem;
  line-height: 1;
  font-weight: bold;
  margin: 0 0 1.4em;
}

@media screen and (max-width: 767.9px) {
  .p-dl__info {
    font-size: 1.8rem;
    margin: 0 0 1em;
  }
}

.p-dl__caution {
  text-align: center;
  margin: 0 0 2.5em;
}

@media screen and (max-width: 767.9px) {
  .p-dl__caution {
    text-align: left;
  }
}

.p-dl__notes {
  text-align: center;
  margin: 1.6em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-dl__notes {
    font-size: 1.4rem;
    margin: 1em 0 0;
  }
}

.p-dl-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.p-dl-form__input {
  width: 17em;
}

.p-dl-form__input p {
  color: #ff0000;
  font-size: 1.4rem;
  text-align: center;
  font-weight: bold;
}

.p-dl-form__txt {
  width: 100%;
  height: 2.5em;
  border: 1px solid #DEDEDE;
  font-size: 1.6rem;
  text-align: center;
  padding: 0 0.5em;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
}

.p-dl-form__btn {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border-radius: 0;
  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: 4.75em;
  height: 2.5em;
  background: #000;
  border: 1px solid #000;
  color: #fff;
  font-size: 1.6rem;
  margin-left: 0.75em;
  cursor: pointer;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.p-dl-form__btn:hover {
  background: #fff;
  color: #000;
}

.p-dl__block {
  margin: 5.96em 0 0;
}

@media screen and (max-width: 767.9px) {
  .p-dl__block {
    margin: 12vw 0 0;
  }
}

.p-dl__btn {
  width: 19.2em;
  height: 3.65em;
  font-size: 2.6rem;
  margin: 0 auto;
}

@media screen and (max-width: 767.9px) {
  .p-dl__btn {
    width: 68vw;
    height: 12vw;
    font-size: 1.4rem;
  }
}

.p-dl__btn+.p-dl__btn {
  margin-top: 1.8em;
}

.p-dl__link {
  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: 100%;
  height: 100%;
  color: #fff;
  background: #000;
  border-radius: 3em;
}

.p-dl__link:hover {
  text-decoration: none;
  color: #fff;
  opacity: 0.7;
}

.p-dl__link:focus,
.p-dl__link:active {
  color: #fff;
  text-decoration: none;
}

.p-dl__link img {
  width: auto;
  height: 1em;
  margin: 0 0 0.25em 0.5em;
}

.p-text {
  max-width: calc(980px + 2.5em);
  padding: 0 1.25em;
  margin: 0 auto;
  padding-top: 10em;
  padding-bottom: 10em;
}

@media screen and (max-width: 767.9px) {
  .p-text {
    width: 90%;
    padding: 0;
  }
}

@media screen and (max-width: 767.9px) {
  .p-text {
    width: auto;
    padding: 36vw 9.6vw 16vw;
  }
}

.p-text__ttl {
  text-align: center;
  font-size: 3.4rem;
  letter-spacing: 0.06em;
  margin: 0 0 2em;
}

@media screen and (max-width: 767.9px) {
  .p-text__ttl {
    font-size: 3.2rem;
    margin: 0 0 9.6vw;
  }
}

.p-text__sub {
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  margin: 0 0 1em;
}

@media screen and (max-width: 767.9px) {
  .p-text__sub {
    font-size: 1.7rem;
    margin: 0 0 0.5em;
  }
}

.p-text__section {
  font-weight: bold;
  margin: 2em 0 0;
  font-size: 1.17em;
}

@media screen and (max-width: 767.9px) {
  .p-text__section {
    font-size: 1.17em;
  }
}

.p-text__numbers {
  counter-reset: number;
  list-style-type: none;
  padding: 0;
  margin: 0.5em 0 0 0;
}

.p-text__number {
  position: relative;
  margin: 0;
  padding: 0 0 0 2em;
}

.p-text__number::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: number;
  content: "(" counter(number) ")";
  margin-right: 0.5em;
}

.p-text__number+.p-text__number {
  margin-top: 1em;
}

.p-text__number .p-text__lists {
  margin: 0.5em 0 0 0;
}

.p-text__lists {
  counter-reset: circle;
  list-style-type: none;
  padding: 0;
  margin: 1em 0 0 0;
}

.p-text__bottom {
  margin-top: 1em;
  display: block;
}

.p-text__list {
  position: relative;
  text-indent: -1.2em;
  margin: 0;
  padding: 0 0 0 1.2em;
}

.p-text__list span {
  padding-right: 0.2em;
}

.p-text__list+.p-text__list {
  margin-top: 0.5em;
}

.p-text__dots {
  counter-reset: dot;
  list-style-type: none;
  padding: 0.5em 0 0 0;
  margin: 0;
}

.p-text__dot {
  position: relative;
  padding: 0 0 0 2em;
  margin: 0;
}

.p-text__dot+.p-text__dot {
  margin-top: 1em;
}

.p-text__dot::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: dot;
  content: counter(dot) ".";
  margin-right: 0.5em;
}

.p-text__dot .p-text__brackets {
  margin: 0.5em 0 0 0;
}

.p-text__brackets {
  counter-reset: brackets;
  list-style-type: none;
  padding: 0;
  margin: 0;
}

.p-text__bracket {
  position: relative;
  padding: 0 0 0 2em;
  margin: 0;
}

.p-text__bracket+.p-text__bracket {
  margin-top: 0.5em;
}

.p-text__bracket::before {
  position: absolute;
  top: 0;
  left: 0;
  counter-increment: brackets;
  content: "(" counter(brackets) ")";
  margin-right: 0.5em;
}

.p-text__date {
  margin: 2em 0 0 0;
}

.p-text__content {
  margin: 0.5em 0 0 0;
}

.p-text-point {
  color: #00b050;
}

.p-text__table {
  margin: 15px 0 0 30px;
}

.p-text__thead,
.p-text__cont {
  border: 1px solid #aaa;
  padding: 5px 15px;
}

@media screen and (max-width: 767.9px) {
  .p-text__table {
    margin: 15px 0 0 0;
  }

  .p-text__thead,
  .p-text__cont {
    border: 1px solid #aaa;
    padding: 5px 8px;
  }
}

/*modal*/
.contact-modal__inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-flow: column;
  align-items: flex-end;
}

.contact-modal__inner .p-detail__dismiss {
  position: unset;
  padding: 0.2em 0;
}

.contact-modal__wrap {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  width: 100%;
  height: 100%;
  display: none;
}

.contact-modal__bg {
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .8);
}

.contact-modal__wrap.is-active {
  display: block;
}

.contact-modal__contents {
  border: 1px solid #000;
  background-color: #fff;
  text-align: center;
  padding: 1em;
}

.modal__note {
  font-size: 14px;
}

.modal__note a {
  text-decoration: underline;
}

@media screen and (max-width: 767.9px) {
  .contact-modal__contents {
    width: 90vw;
  }

  .modal__note {
    font-size: 2.8vw;
  }
}

/*cookie表示*/
.cokkie_footer_sticky {
  width: 90%;
  max-width: 994px;
  margin: auto;
  padding: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, .28);
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 10001;
}

.cookie_accept {
  margin: 0 0 20px;
}

.cookie_accept_text {
  width: 100%;
  font-size: 15px;
  color: #000;
  text-align: center;
  display: block;
  line-height: 1.6;
  letter-spacing: 0;
}

.cookie_accept_text a {
  text-decoration: underline;
}

.cookie_accept_btn {
  width: 200px;
}

.cookie_accept_btn a {
  padding: 7px 0;
  font-size: 15px;
  color: #fff;
  background: #000;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cookie_accept_btn a:hover {
  background: #8B8b8b;
  text-decoration: none;
}


@media (max-width: 767.9px) {
  .cokkie_footer_sticky {
    width: 90.667vw;
    padding: 8vw;
    top: 50vw;
    right: 0;
    left: 0;
    transform: none;
  }

  .cookie_accept {
    margin-bottom: 2.667vw;
  }

  .cookie_accept_text {
    font-size: 3.733vw;
    display: inline;
  }

  .cookie_accept_btn {
    width: 100%;
  }

  .cookie_accept_btn a {
    padding: 2.667vw 0;
    font-size: 3.733vw;
  }
}

@media screen and (max-width:767.9px) and (orientation: landscape) {
  .cokkie_footer_sticky {
    width: 86vw;
    padding: 4vw;
    top: 2vw;
    right: 0;
    left: 0;
    transform: none;
  }

  .cookie_accept {
    margin-bottom: 2.667vw;
  }

  .cookie_accept_text {
    font-size: 3.2vw;
  }

  .cookie_accept_btn {
    width: 60%;
  }

  .cookie_accept_btn a {
    padding: 1vw;
    font-size: 3.2vw;
  }
}

.room_banner_img {
  width: 100%;
}

#corp-pc-area {
  display: block;
}

#corp-sp-area {
  display: none;
}

#corp-sp-area img {
  width: 100%;
}

@media (max-width: 767.9px) {
  #corp-pc-area {
    display: none;
  }

  #corp-sp-area {
    display: block;
  }
}

.corp-message {
    text-align: center !important;
    width: auto !important;
}