@charset "UTF-8";
:root {
  --design-width-desktop: 1440;
  --design-width-mobile: 375;
  --header-height: 80px;
  --space-m: 20px;
  /* z-index */
  --z-index-header: 100;
  --z-index-modal: 200;
  --z-index-bg: -10;
  /* fonts */
  --font-en: "Jost", sans-serif;
  --font-gothic: "Noto Sans JP", sans-serif;
  /* font-weight */
  --fw-thin: 100;
  --fw-ex-light: 200;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semi-bold: 600;
  --fw-bold: 700;
  --fw-ex-bold: 800;
  --fw-black: 900;
  /* colors */
  --color-main: #ed6c00;
  --color-accent: #e30012;
  --color-light-grey: #e3e3e3;
}

/*------------------------------
    RESET
--------------------------------*/
* {
  box-sizing: border-box;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  color: #333;
  font-size: 1.6rem;
  line-height: 1.75;
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "游ゴシック  Medium", meiryo, sans-serif;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
body, div, dl, dt, dd, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, ul, ol, li, figure {
  margin: 0;
  padding: 0;
}

body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a:hover img {
  opacity: 0.8;
}

table {
  border-collapse: collapse;
}

@media screen and (max-width: 767px) {
  .visible-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .visible-sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .sp-text-left {
    text-align: left;
  }
}
a {
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
}

/*------------------------------
    HEADER
--------------------------------*/
@media screen and (max-width: 767px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
    background-color: #fff;
  }
}
.header .logo-block {
  position: relative;
  width: 100%;
  height: 100px;
}

@media screen and (max-width: 767px) {
  .header .logo-block {
    height: 65px;
    text-align: center;
  }
}
.header .logo-block .logo {
  position: absolute;
  top: 17px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .header .logo-block .logo {
    position: relative;
    top: 10px;
  }
}
.header .logo-block .logo img {
  width: 439px;
  height: 58px;
}

@media screen and (max-width: 767px) {
  .header .logo-block .logo img {
    width: 110px;
    height: 45px;
  }
}
.header .header-nav {
  position: absolute;
  top: 30px;
  right: 0;
}

@media screen and (max-width: 767px) {
  .header .header-nav {
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    z-index: 2;
    background-color: #fff;
  }
}
.header .header-nav > ul > li {
  display: block;
  float: left;
  line-height: 40px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .header .header-nav > ul > li {
    width: 50%;
  }
}
.header .header-nav > ul > li a {
  display: block;
  padding: 0 20px;
  background-color: #f15a24;
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .header .header-nav > ul > li a {
    padding: 0;
  }
}
.header .header-nav > ul > li a:hover {
  opacity: 0.8;
}

.header .header-nav > ul > li + li {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .header .header-nav > ul > li + li {
    margin-left: 0;
    border-left: 1px solid #fff;
  }
}
@media screen and (max-width: 767px) {
  .header-nav ul li:nth-child(1) {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .header-nav ul li:nth-child(3) {
    display: none;
  }
}

.header .container {
  max-width: 1480px;
}
@media (min-width: 768px) {
  .header .container {
    padding-right: 80px;
    box-sizing: border-box;
  }
}

.gnav {
  background-color: #666;
  font-size: 15px;
}

/*------------------------------
    GNAV
--------------------------------*/
.overlay {
  display: block;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  content: "";
}

.side-open .overlay {
  visibility: visible;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.side-open-slide {
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
}

.side-open .side-open-slide {
  transform: translate3d(-300px, 0, 0);
  -webkit-transform: translate3d(-300px, 0, 0);
}

.gnav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 2;
  transform: translateX(300px);
  width: 300px;
  height: 100%;
  padding-top: 60px;
  background: #333;
  font-size: 1.8rem;
  text-align: left;
  transition: all 0.5s ease;
  -webkit-transform: translateX(300px);
  -webkit-transition: all 0.5s ease;
}

.gnav ul {
  list-style: none;
}

.gnav ul li a {
  display: block;
  padding: 1em;
  border-bottom: 1px solid #444;
  color: #fff;
  text-decoration: none;
}

.side-open .gnav {
  transform: translateX(0);
  -webkit-transform: translateX(0);
}

.nav-button {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 10000;
  width: 50px;
  height: 50px;
  padding-bottom: 2px;
  font-size: 10px;
  cursor: pointer;
  transition: ease 0.5s;
}
@media (min-width: 768px) {
  .nav-button {
    top: 20px;
    right: 20px;
    scale: 1.2;
  }
}

.nav-button .bar {
  position: absolute;
  transform: translate(-50%, -50%);
  width: 30px;
  height: 2px;
  background: #000;
  transition: ease 0.5s;
}

.side-open .nav-button .bar {
  background: #fff;
}

.nav-button .bar:nth-child(1) {
  top: 20%;
  left: 50%;
}

.side-open .nav-button .bar:nth-child(1) {
  top: 40%;
  transform: translate(-50%, -50%) rotate(45deg);
}

.nav-button .bar:nth-child(2) {
  top: 38%;
  left: 50%;
}

.side-open .nav-button .bar:nth-child(2) {
  opacity: 0;
  top: 40%;
  transform: translate(-50%, -50%);
}

.nav-button .bar:nth-child(3) {
  top: 56%;
  left: 50%;
}

.side-open .nav-button .bar:nth-child(3) {
  top: 40%;
  transform: translate(-50%, -50%) rotate(-45deg);
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
}

/*------------------------------
    FOOTER
--------------------------------*/
.footer .copyright {
  padding: 5px 0;
  background-color: #000;
  color: #fff;
  font-size: 1.2rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .footer .copyright {
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .footer {
    margin-bottom: 40px;
  }
}
.footer-nav-block {
  padding: 40px 0;
  background-color: #acacac;
}

@media screen and (max-width: 767px) {
  .footer-nav-block {
    padding: 10px 0;
  }
}
.footer-text {
  margin-bottom: 1em;
  color: #fff;
  font-size: 1.5rem;
}

@media screen and (max-width: 767px) {
  .footer-text br {
    display: none;
  }
}
.footer-nav {
  display: table;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-nav {
    display: block;
  }
}
.footer-nav .inner {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .footer-nav .inner {
    display: block;
  }
}
.footer-nav .inner:first-child {
  width: 221px;
  padding-right: 60px;
  font-size: 1.4rem;
  text-align: center;
}

.footer-nav .inner:first-child img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .footer-nav .inner:first-child {
    width: 161px;
    margin: 0 auto 20px;
    padding-right: 0;
  }
}
.footer-nav .inner:first-child .logo-gd {
  margin: 20px 0 10px;
}

@media screen and (max-width: 767px) {
  .footer-nav .inner:first-child .logo-gd {
    margin: 10px 0;
  }
}
.footer-nav .inner ul {
  list-style: none;
}

.footer-nav .inner ul li a {
  display: block;
  color: #fff;
  text-decoration: none;
}

.footer-nav .page-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  float: left;
  width: 75%;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .footer-nav .page-nav {
    display: block;
    float: none;
    width: 100%;
    margin-bottom: 10px;
  }
}
.footer-nav .page-nav li {
  flex-basis: calc(33.3333333333% - 20px);
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .footer-nav .page-nav li {
    flex-basis: 100%;
  }
}
.footer-nav .page-nav li a {
  border-bottom: 1px solid #fff;
}

.footer-nav .page-nav li a:hover {
  border-bottom: 1px solid #000;
  color: #000;
}

.footer-nav .contact-nav {
  float: right;
  width: calc(25% - 20px);
}

@media screen and (max-width: 767px) {
  .footer-nav .contact-nav {
    float: none;
    width: 100%;
  }
}
.footer-nav .contact-nav li {
  margin-bottom: 5px;
  line-height: 2;
}

.footer-nav .contact-nav li a {
  background-color: #666;
  text-align: center;
}

.footer-nav .contact-nav li a:hover {
  background-color: #000;
}

.footer-nav .name {
  clear: both;
  color: #fff;
}

.footer-nav .contact-info {
  clear: both;
  font-size: 14px;
}

.page-top {
  display: none;
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 51px;
  height: 51px;
  background-image: url(./images/common/gototop.png);
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .page-top {
    right: 0;
    bottom: 40px;
    width: 35px;
    height: 35px;
  }
}
.page-top:hover {
  opacity: 0.8;
}

/*------------------------------
    BLOCK
--------------------------------*/
.section + .section {
  margin-top: 4em;
}

@media screen and (max-width: 767px) {
  .section + .section {
    margin-top: 1em;
  }
}
.home .section + .section {
  margin-top: 0;
}

.section-dark {
  padding: 50px 0 100px;
  background-image: url(./images/common/bg.png);
  color: #fff;
}

@media screen and (max-width: 767px) {
  .section-dark {
    padding: 10px 0 10px;
  }
}
.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.row + .row {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .row + .row {
    margin-top: 10px;
  }
}
.row.row__block {
  display: block;
}

.col-1 {
  width: 100%;
}

.col-2 {
  width: 48.2%;
}

.col-3 {
  width: calc((100% - 80px) / 3);
}

.col-4 {
  width: calc((100% - 120px) / 4);
}

.col-5 {
  width: 17.12%;
}

.col-6 {
  width: calc((100% - 200px) / 6);
}

@media screen and (max-width: 767px) {
  .col-2, .col-3, .col-4, .col-5, .col-6 {
    width: 100%;
    margin-bottom: 10px;
  }
  .col-sp-2 {
    width: calc((100% - 10px) / 2);
  }
  .col-sp-3 {
    width: calc((100% - 20px) / 3);
  }
  .col-sp-4 {
    width: calc((100% - 30px) / 4);
  }
}
/*------------------------------
    LAYOUT
--------------------------------*/
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: content-box;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 20px;
    box-sizing: border-box;
  }
}
.container.container__wide {
  max-width: 100%;
  padding: 20px;
  background-color: #ccc;
}

.main {
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .main {
    /* padding-top: 65px; */
    padding-bottom: 10px;
  }
}
.main.home {
  padding-bottom: 0;
}

.main .container + .container {
  margin-top: 50px;
}

/*------------------------------
    COMMON DECORATION
--------------------------------*/
.img-fl {
  float: left;
  margin-right: 2em;
}

@media screen and (max-width: 767px) {
  .img-fl {
    margin-right: 10px;
  }
}
.img-fr {
  float: right;
  margin-left: 2em;
}

@media screen and (max-width: 767px) {
  .img-fr {
    margin-right: 10px;
  }
}
.img-center {
  display: block;
  margin: 0 auto;
}

.txt-s {
  font-size: 1.4rem;
}

/*------------------------------
    COMMON PARTS
--------------------------------*/
.main-visual {
  height: 51.72413vw;
  max-height: 600px;
  margin-bottom: 3em;
  background-position: center center;
  background-size: cover;
}

@media screen and (max-width: 767px) {
  .main-visual {
    margin-bottom: 1em;
  }
}
.merit .main-visual {
  background-image: url(./images/merit/main_visual.jpg);
}

.after .main-visual {
  background-image: url(./images/after/main_visual.jpg);
}

.voice .main-visual {
  background-image: url(./images/voice/main_visual.jpg);
}

.gokuraku .main-visual {
  background-image: url(./images/gokuraku/main_visual.png);
}

.concent .main-visual {
  background-image: url(./images/concent/main_visual.png);
}

.system .main-visual {
  height: auto;
  max-height: none;
  background: linear-gradient(to bottom, #005b90 0%, #0075b7 10%, #1e95d0 30%, #c5d9ed 50%, #fff 100%);
  background-image: none;
  background-color: #ccc;
}

.main-visual .ttl-block {
  position: relative;
  top: 2.5862vw;
  color: #fff;
  font-weight: bold;
  font-size: 38px;
  font-size: 3.275862069vw;
  line-height: 1;
}

@media screen and (min-width: 1160px) {
  .main-visual .ttl-block {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .main-visual .ttl-block {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1160px) {
  .main-visual .ttl-block {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .main-visual .ttl-block {
    top: 10px;
  }
}
.main-visual .ttl-block .ttl {
  font-weight: bold;
  font-size: 55px;
  font-size: 4.7413793103vw;
}

@media screen and (min-width: 1160px) {
  .main-visual .ttl-block .ttl {
    font-size: 5.5rem;
  }
}
@media screen and (max-width: 767px) {
  .main-visual .ttl-block .ttl {
    font-size: 2.6rem;
  }
}
.main-visual .ttl-block p {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .main-visual .ttl-block p {
    margin-bottom: 5px;
  }
}
.page-ttl {
  margin-top: 2.5862vw;
  margin-bottom: 0.5em;
  font-weight: bold;
  font-size: 40px;
  font-size: 3.4482758621vw;
  line-height: 1.1;
}

@media screen and (min-width: 1160px) {
  .page-ttl {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .page-ttl {
    padding-bottom: 5px;
    font-size: 2.6rem;
  }
}
.sec-ttl {
  margin-bottom: 1em;
  padding-bottom: 10px;
  border-bottom: 1px solid #29abe2;
  color: #29abe2;
  font-weight: bold;
  font-size: 36px;
  font-size: 3.1034482759vw;
  line-height: 1.3;
}

@media screen and (min-width: 1160px) {
  .sec-ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .sec-ttl {
    padding-bottom: 5px;
    font-size: 2rem;
  }
}
.merit-winter .sec-ttl {
  border-bottom: 1px solid #ea5e00;
  color: #ea5e00;
}

.merit-cost .sec-ttl {
  border-bottom: 1px solid #928075;
  color: #928075;
}

.system .sec-ttl {
  border-bottom: 1px solid #0e357f;
  color: #0e357f;
}

.after .sec-ttl {
  border-bottom: 1px solid #97005d;
  color: #97005d;
}

.voice .sec-ttl {
  border-bottom: 1px solid #f4a93b;
  color: #f4a93b;
}

.desc-copy {
  margin-bottom: 0.5em;
  font-size: 38px;
  font-size: 3.275862069vw;
  line-height: 1.3;
}

@media screen and (min-width: 1160px) {
  .desc-copy {
    font-size: 3.8rem;
  }
}
@media screen and (max-width: 767px) {
  .desc-copy {
    font-size: 2.2rem;
  }
}
.desc p + p {
  margin-top: 1em;
}

.desc .ttl {
  margin-bottom: 5px;
  color: #29abe2;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1.3;
}

.merit-winter .desc .ttl {
  color: #ea5e00;
}

.after .desc .ttl {
  color: #97005d;
}

@media screen and (max-width: 767px) {
  .desc .ttl {
    font-size: 1.6rem;
  }
}
/*------------------------------
    CONTENTS
--------------------------------*/
/*----------ホーム----------*/
.top-main-visual {
  background: #eb5f00;
  color: #fff;
}

.top-main-visual .inner {
  position: relative;
  text-align: center;
}

.top-main-visual .inner .logo {
  position: absolute;
  top: 11.01vw;
  left: 50.42vw;
  width: 37.54vw;
  font-size: 14px;
  font-size: 1.2068965517vw;
  letter-spacing: 1px;
  text-align: center;
  -webkit-animation-name: RightToLeft;
          animation-name: RightToLeft;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
}

.top-main-visual .inner .logo img {
  margin: 0vw 0vw 4.23vw 0vw;
}

.top-main-visual .inner .logo img.copy {
  width: 20.42vw;
  margin: 0vw 0vw 2.54vw 0vw;
}

@media screen and (max-width: 767px) {
  .top-main-visual .inner .logo {
    display: none;
  }
}
.top-main-visual .inner .award {
  position: absolute;
  top: 2.54vw;
  right: 1.69vw;
  width: 15.93vw;
}

@media screen and (max-width: 767px) {
  .top-main-visual .inner .award {
    display: none;
  }
}
@media screen and (min-width: 1160px) {
  .top-main-visual .inner .logo {
    top: 130px;
    left: 595px;
    width: 443px;
    font-size: 14px;
  }
  .top-main-visual .inner .logo img {
    margin-bottom: 50px;
  }
  .top-main-visual .inner .logo img.copy {
    width: 241px;
    margin-bottom: 30px;
  }
  .top-main-visual .inner .award {
    top: 30px;
    right: 20px;
    width: 188px;
  }
}
/*右から左*/
@-webkit-keyframes RightToLeft {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateX(100px);
    /* X軸方向に50px */
  }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateX(0);
    /* X軸方向に0px */
  }
}
@keyframes RightToLeft {
  0% {
    opacity: 0;
    /* 透明 */
    transform: translateX(100px);
    /* X軸方向に50px */
  }
  100% {
    opacity: 1;
    /* 不透明 */
    transform: translateX(0);
    /* X軸方向に0px */
  }
}
.top-topics {
  margin: 2em 0 2em;
}

.top-topics .ttl {
  margin-bottom: 0.5em;
  color: #ea5a24;
  font-size: 32px;
  font-size: 2.7586206897vw;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-topics .ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-topics .ttl {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.top-ttl {
  margin-bottom: 50px;
  font-size: 30px;
  font-size: 2.5862068966vw;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .top-ttl {
    margin-bottom: 10px;
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.top-page-nav {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-bottom: 100px;
}

@media screen and (max-width: 767px) {
  .top-page-nav {
    margin-bottom: 20px;
  }
}
.top-page-nav > li {
  flex-basis: 33.333333%;
  height: 233px;
  background-image: url(./images/home/nav01.jpg);
  background-position: center center;
  background-size: cover;
  line-height: 233px;
  text-align: center;
}

.top-page-nav > li *::-ms-backdrop, .top-page-nav > li {
  flex-basis: 33.333333%;
  /* IE11 */
}

@media screen and (max-width: 767px) {
  .top-page-nav > li {
    flex-basis: 50%;
    height: 100px;
    line-height: 100px;
  }
}
@media screen and (max-width: 767px) {
  .top-page-nav > li:nth-child(6), .top-page-nav > li:nth-child(7) {
    height: 100px;
    line-height: 100px;
  }
}
.top-page-nav > li:nth-child(2) {
  background-image: url(./images/home/nav03.jpg);
}

.top-page-nav > li:nth-child(3) {
  background-image: url(./images/home/nav02.jpg);
}

.top-page-nav > li:nth-child(4) {
  background-image: url(./images/home/nav10.jpg);
}

.top-page-nav > li:nth-child(5) {
  background-image: url(./images/home/nav08_2.jpg);
}

.top-page-nav > li:nth-child(6) {
  background-image: url(./images/home/nav09.jpg);
}

.top-page-nav > li:nth-child(7) {
  background-image: url(./images/home/nav05.jpg);
}

.top-page-nav > li:nth-child(8) {
  background-image: url(./images/home/nav04.jpg);
}

.top-page-nav > li:nth-child(9) {
  background-image: url(./images/home/nav06.jpg);
}

.top-page-nav > li:nth-child(10) {
  background-image: url(./images/home/nav07.jpg);
}

.top-page-nav > li a {
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  font-size: 26px;
  font-size: 2.2413793103vw;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
}

@media screen and (min-width: 1160px) {
  .top-page-nav > li a {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 767px) {
  .top-page-nav > li a {
    font-size: 1.4rem;
  }
}
.top-page-nav > li a span {
  padding: 5px 10px;
}

.top-page-nav > li a:hover {
  background-color: rgba(0, 0, 0, 0);
  color: #fff;
}

.top-page-nav > li a:hover span {
  background-color: #ea5a24;
}

.top-movie {
  width: 84.31372%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .top-movie {
    width: 100%;
  }
}
.top-movie .ttl {
  margin-bottom: 40px;
  color: #ea5a24;
  font-size: 32px;
  font-size: 2.7586206897vw;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-movie .ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-movie .ttl {
    margin-bottom: 10px;
    font-size: 2rem;
    line-height: 1.5;
  }
}
.top-movie .top-movie-video {
  width: 100%;
  margin-bottom: 40px;
  border: none;
}

@media screen and (max-width: 767px) {
  .top-movie .top-movie-video {
    margin-bottom: 10px;
    border: 1px solid #555;
  }
}
.top-award {
  padding: 25px;
  background-color: #fff;
  color: #333;
}

@media screen and (max-width: 767px) {
  .top-award {
    padding: 10px;
  }
}
.top-award .top-award-ttl {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 30px;
  font-size: 2.5862068966vw;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-award .top-award-ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .top-award .top-award-ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
.top-award .block {
  display: table;
  margin-bottom: 30px;
  border-bottom: 1px solid #333;
}

@media screen and (max-width: 767px) {
  .top-award .block {
    display: block;
    margin-bottom: 10px;
  }
}
.top-award .block .inner {
  display: table-cell;
  padding-bottom: 10px;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .top-award .block .inner {
    display: block;
  }
}
.top-award .block .inner:first-child {
  width: 50%;
  padding-right: 40px;
}

.top-award .block .inner:first-child img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .top-award .block .inner:first-child {
    width: 80%;
    margin: 0 auto;
    padding-right: 0;
  }
}
.top-award .number {
  display: table;
  margin: 0 auto;
  font-size: 2.9rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .top-award .number {
    display: block;
    font-size: 2rem;
    line-height: 1.5;
    text-align: center;
  }
}
.top-award .number span {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 767px) {
  .top-award .number span {
    display: block;
  }
}
.top-award .number span:first-child {
  padding-right: 0.5em;
}

@media screen and (max-width: 767px) {
  .top-award .number span:first-child {
    padding-right: 0;
  }
}
.top-award .number span:last-child {
  padding: 0 2em;
  background-color: #666;
  color: #fff;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-award .number span:last-child {
    display: inline-block;
    font-size: 1.4rem;
  }
}
.top-copy {
  width: 100%;
  height: 50vw;
  background-image: url(./images/home/top_lead_foot.jpg);
  background-position: center center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-copy {
    height: 580px;
  }
}
.top-copy .top-copy-mask {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50vw;
  background-color: rgba(0, 0, 0, 0.5);
}

@media screen and (min-width: 1160px) {
  .top-copy .top-copy-mask {
    height: 580px;
  }
}
.top-copy p {
  font-size: 49px;
  font-size: 4.224137931vw;
  line-height: 1.2;
}

@media screen and (min-width: 1160px) {
  .top-copy p {
    font-size: 4.9rem;
  }
}
@media screen and (max-width: 767px) {
  .top-copy p {
    font-size: 2.2rem;
  }
}
.top-copy p .text-s {
  font-size: 42px;
  font-size: 3.6206896552vw;
}

@media screen and (min-width: 1160px) {
  .top-copy p .text-s {
    font-size: 4.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top-copy p .text-s {
    font-size: 1.4rem;
  }
}
.top-copy p .text-l {
  margin: 0 10px;
  font-size: 70px;
  font-size: 6.0344827586vw;
}

@media screen and (min-width: 1160px) {
  .top-copy p .text-l {
    font-size: 7rem;
  }
}
@media screen and (max-width: 767px) {
  .top-copy p .text-l {
    margin: 0;
    font-size: 4rem;
  }
}
.top-copy p strong {
  color: #ff0;
}

.top-copy-foot {
  padding: 25px 0;
  background-color: #fff;
  color: #333;
  font-size: 32px;
  font-size: 2.7586206897vw;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-copy-foot {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 767px) {
  .top-copy-foot {
    padding: 10px 0;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.top-voice {
  padding: 50px 0;
  background-color: #ffe4b9;
  color: #333;
}

@media screen and (max-width: 767px) {
  .top-voice {
    padding: 10px 0;
  }
}
.top-voice .ttl {
  color: #ea5a24;
  font-weight: bold;
  font-size: 33px;
  font-size: 2.8448275862vw;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .top-voice .ttl {
    font-size: 3.3rem;
  }
}
@media screen and (max-width: 767px) {
  .top-voice .ttl {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}
.top-voice .ttl::before {
  content: "＼";
}

@media screen and (max-width: 767px) {
  .top-voice .ttl::before {
    display: none;
  }
}
.top-voice .ttl::after {
  content: "／";
}

@media screen and (max-width: 767px) {
  .top-voice .ttl::after {
    display: none;
  }
}
.top-voice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.top-voice-list > li {
  flex-basis: calc(50% - 20px);
  position: relative;
  margin-top: 40px;
  padding: 10px;
  background-color: #fff;
}

.top-voice-list > li *::-ms-backdrop, .top-voice-list > li {
  flex-basis: 46.5%;
  /* IE11 */
}

@media screen and (max-width: 767px) {
  .top-voice-list > li {
    flex-basis: 100%;
    margin-top: 10px;
    font-size: 1.2rem;
  }
}
.top-voice-list > li a {
  display: block;
  overflow: hidden;
  color: #333;
  text-decoration: none;
}

.top-voice-list > li a::after {
  display: block;
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 20px;
  background-color: #c59b6d;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  content: "続きを読む";
}

@media screen and (max-width: 767px) {
  .top-voice-list > li a::after {
    position: relative;
    right: auto;
    bottom: auto;
    width: 7em;
    margin: 10px auto 0;
    padding: 5px;
    font-size: 1rem;
    text-align: center;
  }
}
.top-voice-list > li .thumb {
  float: left;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .top-voice-list > li .thumb {
    width: 80px;
    margin-bottom: 10px;
  }
}
.top-voice-list > li .voice-ttl {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 2.2rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .top-voice-list > li .voice-ttl {
    margin-bottom: 5px;
    font-size: 1.4rem;
  }
  .top-voice-list > li .voice-ttl br {
    display: none;
  }
}
.top-voice-list > li:hover .thumb {
  opacity: 0.8;
}

.top-voice-list > li:hover .voice-ttl {
  color: #ea5a24;
}

.top-voice-list > li:hover::after {
  opacity: 0.8;
}

.voice-more {
  margin-top: 2.5em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice-more {
    margin-top: 10px;
  }
}
.voice-more a {
  display: inline-block;
  min-width: 50%;
  border-radius: 50px;
  background-color: #c59b6d;
  color: #fff;
  font-size: 2rem;
  line-height: 50px;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .voice-more a {
    min-width: 80%;
    font-size: 1.6rem;
    line-height: 30px;
  }
}
.voice-more a:hover {
  opacity: 0.8;
}

/*----------メリット----------*/
.merit-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 3em;
  font-size: 25px;
  font-size: 2.1551724138vw;
  line-height: 1.3;
}

@media screen and (min-width: 1160px) {
  .merit-nav {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-nav {
    margin-bottom: 1em;
    font-size: 1.4rem;
  }
}
.merit-nav li {
  width: calc(33.3333333333% - 20px);
  text-align: center;
}

@media screen and (max-width: 767px) {
  .merit-nav li {
    width: calc(33.3333333333% - 1px);
  }
}
.merit-nav li a {
  display: block;
  padding: 10px;
  border: 2px solid #29abe2;
  color: #29abe2;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .merit-nav li a {
    padding: 10px 5px;
    border-width: 1px;
  }
}
.merit-nav li:nth-child(2) a {
  border-color: #ea5e00;
  color: #ea5e00;
}

.merit-nav li:nth-child(3) a {
  border-color: #928075;
  color: #928075;
}

.merit-nav li.active a, .merit-nav li a:hover {
  background-color: #29abe2;
  color: #fff;
}

.merit-nav li:nth-child(2).active a, .merit-nav li:nth-child(2) a:hover {
  background-color: #ea5e00;
}

.merit-nav li:nth-child(3).active a, .merit-nav li:nth-child(3) a:hover {
  background-color: #928075;
}

@media screen and (max-width: 767px) {
  .merit-wind-img {
    width: 40%;
  }
}
.merit-summer-ex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

.merit-summer-ex > li {
  flex-basis: calc(20% - 5px);
  position: relative;
}

@media screen and (max-width: 767px) {
  .merit-summer-ex > li {
    text-align: center;
  }
}
.merit-summer-ex > li span {
  position: absolute;
  top: 0;
  right: 0;
  padding: 5px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  .merit-summer-ex > li span {
    display: block;
    top: 0;
    width: 100%;
    font-size: 1rem;
  }
}
.merit-cost-ttl {
  padding: 0.5em;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  font-size: 36px;
  font-size: 3.1034482759vw;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .merit-cost-ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-cost-ttl {
    font-size: 1.8rem;
  }
}
.merit-cost-ttl strong {
  color: #ff0;
}

.merit-cost-desc {
  position: relative;
  padding: 1em;
  background: linear-gradient(to bottom, #a98456 0%, #6f4e25 100%);
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  font-size: 1.724137931vw;
  line-height: 1.5;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .merit-cost-desc {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-cost-desc {
    font-size: 1.4rem;
    text-align: left;
  }
  .merit-cost-desc br {
    display: none;
  }
}
.merit-cost-desc::after {
  display: block;
  position: absolute;
  bottom: -20px;
  left: 50%;
  width: 0;
  height: 0;
  border-width: 20px 13.5px 0 13.5px;
  border-style: solid;
  border-color: #6f4e25 transparent transparent transparent;
  content: "";
}

.merit-cost-desc .large {
  font-weight: normal;
  font-size: 40px;
  font-size: 3.4482758621vw;
}

@media screen and (min-width: 1160px) {
  .merit-cost-desc .large {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-cost-desc .large {
    display: block;
    font-size: 1.8rem;
    text-align: center;
  }
}
.merit-cost-result {
  background-image: url(./images/merit/cost/result_bg.jpg);
  background-position: center center;
  background-size: cover;
  text-align: center;
}

.merit-cost-result .mask {
  padding: 40px 20px 20px;
  background-color: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width: 767px) {
  .merit-cost-result .mask {
    padding: 40px 10px 10px;
  }
}
.merit-cost-result-month {
  margin: 2em 0 3em;
}

@media screen and (max-width: 767px) {
  .merit-cost-result-month {
    margin: 10px 0;
  }
}
.merit-cost-result-month .ttl {
  margin-bottom: 10px;
  font-weight: bold;
  font-size: 2rem;
}

.merit-cost-result-month ul {
  list-style: none;
  margin-bottom: 2em;
}

@media screen and (max-width: 767px) {
  .merit-cost-result-month ul {
    margin-bottom: 10px;
  }
}
.merit-cost-result-month ul li {
  display: inline-block;
  padding: 0 20px;
}

@media screen and (max-width: 767px) {
  .merit-cost-result-month ul li {
    padding: 10px;
  }
}
.merit-cost-result-caution {
  text-align: left;
}

@media screen and (max-width: 767px) {
  .merit-cost-result-caution {
    font-size: 1.2rem;
  }
}
.merit-cost-hikaku {
  padding: 50px;
  background-color: #fef7e6;
}

@media screen and (max-width: 767px) {
  .merit-cost-hikaku {
    padding: 30px 10px 10px;
  }
}
.merit-cost-hikaku .ttl {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 30px;
  font-size: 2.5862068966vw;
  line-height: 1;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .merit-cost-hikaku .ttl {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-cost-hikaku .ttl {
    font-size: 1.6rem;
  }
}
.merit-cost-hikaku .ttl strong {
  font-size: 40px;
  font-size: 3.4482758621vw;
}

@media screen and (min-width: 1160px) {
  .merit-cost-hikaku .ttl strong {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .merit-cost-hikaku .ttl strong {
    font-size: 2rem;
  }
}
.merit-cost-hikaku .ttl span {
  display: inline-block;
  min-width: 65%;
  padding: 0.5em;
  border-radius: 50px;
  background-color: #ff8c1e;
  color: #fff;
}

@media screen and (min-width: 1160px) {
  .merit-cost-hikaku .ttl span {
    min-width: auto;
  }
}
.merit-cost-hikaku.merit-cost-hikaku__winter {
  background-color: #e6f4f8;
}

.merit-cost-hikaku.merit-cost-hikaku__winter .ttl span {
  background-color: #0080cb;
}

.merit-cost-hikaku.merit-cost-hikaku__winter .sub-ttl {
  margin-bottom: 1em;
  background-color: #00a9c2;
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.merit-cost-hikaku.merit-cost-hikaku__winter .sub-ttl.sub-ttl__sec4 {
  background-color: #00a296;
}

@media screen and (max-width: 767px) {
  .merit-cost-hikaku.merit-cost-hikaku__winter .sub-ttl {
    font-size: 1.6rem;
  }
}
.merit-cost-hikaku-caution {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .merit-cost-hikaku-caution {
    padding: 10px;
    font-size: 1.2rem;
  }
}
/*----------システム----------*/
.system-more {
  max-width: 357px;
  margin: 0 auto 2em;
}

.system-more dt {
  width: 100%;
  margin-bottom: 2em;
  border-radius: 50px;
  background-color: #0e357f;
  color: #fff;
  font-size: 2rem;
  line-height: 50px;
  text-align: center;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .system-more dt {
    font-size: 1.6rem;
    line-height: 2;
  }
}
.system-more dd {
  display: none;
}

.system-more dd .ttl {
  margin-top: 10px;
  color: #29abe2;
  font-weight: bold;
  font-size: 20px;
}

.system-sub-ttl {
  margin-bottom: 20px;
  padding: 5px 10px;
  background-color: #0e357f;
  color: #fff;
  font-size: 2rem;
  line-height: 1.3;
}

@media screen and (max-width: 767px) {
  .system-sub-ttl {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 767px) {
  .system-wind-controll {
    width: 40%;
  }
}
/*----------よくあるご質問----------*/
.faq-list {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .faq-list {
    margin-top: 10px;
  }
}
.faq-list dt {
  position: relative;
  padding: 20px 20px 20px 80px;
  border-top: 1px dotted #ccc;
  color: #0071b5;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.0689655172vw;
  cursor: pointer;
}

@media screen and (min-width: 1160px) {
  .faq-list dt {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 767px) {
  .faq-list dt {
    padding: 10px 10px 10px 50px;
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.faq-list dt:first-child {
  border-top: none;
}

.faq-list dd {
  display: none;
  padding: 0 20px 20px 80px;
}

@media screen and (max-width: 767px) {
  .faq-list dd {
    padding: 0 10px 10px 50px;
  }
}
.faq-list .icon-toggle {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 36px;
  height: 36px;
  margin-top: -18px;
}

@media screen and (max-width: 767px) {
  .faq-list .icon-toggle {
    width: 36px;
    height: 36px;
  }
}
.faq-list .icon-toggle::before, .faq-list .icon-toggle::after {
  position: absolute;
  top: 50%;
  right: 10px;
  background-color: currentColor;
  content: "";
  transition: all 500ms ease 0ms;
}

.faq-list .icon-toggle::before {
  width: 1px;
  height: 36px;
  margin-top: -18px;
}

@media screen and (max-width: 767px) {
  .faq-list .icon-toggle::before {
    height: 20px;
    margin-top: -10px;
  }
}
.faq-list .icon-toggle::after {
  width: 36px;
  height: 1px;
  margin-right: -18px;
}

@media screen and (max-width: 767px) {
  .faq-list .icon-toggle::after {
    width: 20px;
    margin-right: -10px;
  }
}
.faq-list .icon-toggle.active::before {
  opacity: 0;
  transform: rotate(90deg);
}

.faq-list .icon-toggle.active::after {
  width: 36px;
  height: 1px;
  margin-right: -18px;
}

@media screen and (max-width: 767px) {
  .faq-list .icon-toggle.active::after {
    width: 20px;
    margin-right: -10px;
  }
}
/*----------企業概要----------*/
.profile-detail {
  margin-top: 20px;
  margin-bottom: 40px;
  border-top: 1px dotted #666;
  font-size: 1.8rem;
}

@media screen and (max-width: 767px) {
  .profile-detail {
    margin-bottom: 20px;
    border-top: none;
    font-size: 1.4rem;
  }
}
.profile-detail dt {
  float: left;
  width: 200px;
  padding: 15px 0;
  border-bottom: 1px dotted #666;
}

@media screen and (max-width: 767px) {
  .profile-detail dt {
    float: none;
    width: 100%;
    padding: 10px;
    border-bottom: none;
    background-color: #f5f5f5;
  }
}
.profile-detail dd {
  margin-left: 200px;
  padding: 15px 0;
  border-bottom: 1px dotted #666;
}

@media screen and (max-width: 767px) {
  .profile-detail dd {
    width: 100%;
    margin-left: 0;
    padding: 10px;
    border-bottom: none;
  }
}
#map-canvas {
  width: 100%;
  height: 437px;
}

@media screen and (max-width: 767px) {
  #map-canvas {
    height: 300px;
  }
}
/*----------アフターメンテナンス----------*/
@media screen and (max-width: 767px) {
  .after-repair {
    width: 95px;
  }
}
/*----------お客様の声----------*/
.voice-ex-ttl {
  margin-bottom: 10px;
  border-bottom: none;
  color: #f4a93b;
  font-weight: bold;
  font-size: 36px;
  font-size: 3.1034482759vw;
  line-height: 1.3;
  text-align: center;
}

@media screen and (min-width: 1160px) {
  .voice-ex-ttl {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 767px) {
  .voice-ex-ttl {
    font-size: 1.6rem;
  }
}
.voice-ex-ttl span {
  display: inline-block;
  position: relative;
}

.voice-ex-ttl span::before, .voice-ex-ttl span::after {
  display: block;
  position: absolute;
  width: 2px;
  height: 8.18965vw;
  background-color: #f4a93b;
  content: "";
}

@media screen and (min-width: 1160px) {
  .voice-ex-ttl span::before, .voice-ex-ttl span::after {
    height: 95px;
  }
}
@media screen and (max-width: 767px) {
  .voice-ex-ttl span::before, .voice-ex-ttl span::after {
    display: none;
  }
}
.voice-ex-ttl span::before {
  top: 0;
  left: -10px;
  transform: skewX(-150deg);
}

.voice-ex-ttl span::after {
  top: 0;
  right: -10px;
  transform: skewX(150deg);
}

.voice-ex-sub-ttl {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice-ex-sub-ttl {
    font-size: 1.4rem;
  }
}
.voice-ex-btn {
  display: block;
  padding: 10px;
  border-radius: 50px;
  background-color: #29abe2;
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .voice-ex-btn {
    font-size: 1.4em;
  }
}
.voice-ex-btn.voice-ex-btn__winter {
  background-color: #f7931e;
}

.voice-ex-btn:hover {
  opacity: 0.8;
}

.voice-tab {
  display: table;
  width: 100%;
  margin-top: 2em;
  padding: 0;
  background-color: #fff;
}

.voice-tab li {
  display: table-cell;
  position: relative;
  padding-bottom: 20px;
  text-align: center;
}

.voice-tab li a {
  display: block;
  opacity: 0.5;
  background-color: #2c6cb4;
  color: #fff;
  font-size: 3rem;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  .voice-tab li a {
    font-size: 1.8rem;
  }
}
.voice-tab li a.active a, .voice-tab li a a:hover {
  opacity: 1;
}

.voice-tab li a:after {
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -15px;
  border-width: 20px 15px 0 15px;
  border-style: solid;
  border-color: #2c6cb4 transparent transparent transparent;
  content: "";
}

.voice-tab li.active a, .voice-tab li a:hover {
  opacity: 1;
}

.voice-tab li:first-child a {
  background-color: #df6337;
}

.voice-tab li:first-child a:after {
  border-color: #df6337 transparent transparent transparent;
}

.voice-area-inner {
  padding: 50px;
}

@media screen and (max-width: 767px) {
  .voice-area-inner {
    padding: 20px;
  }
}
.voice-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .voice-list {
    display: block;
  }
}
.voice-list > li {
  flex-basis: 27.2%;
  margin-bottom: 1.78571vw;
  font-size: 12px;
}

@media screen and (min-width: 1160px) {
  .voice-list > li {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice-list > li {
    width: 100%;
    margin-bottom: 20px;
  }
}
.voice-list > li a {
  display: block;
  position: relative;
  color: #000;
  text-decoration: none;
}

.voice-list > li a::before {
  display: block;
  opacity: 0;
  position: absolute;
  top: 55%;
  left: 15%;
  z-index: 9;
  width: 70%;
  margin: 0 auto;
  padding: 5px 0;
  border-radius: 30px;
  background-color: #e55a24;
  color: #fff;
  text-align: center;
  content: "詳細を見る";
  transition: all 0.2s ease;
  -webkit-transition: all 0.2s ease;
}

@media screen and (max-width: 767px) {
  .voice-list > li a::before {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .voice-list > li a::after {
    display: block;
    width: 70%;
    margin: 0 auto;
    padding: 5px 0;
    border-radius: 30px;
    background-color: #e55a24;
    color: #fff;
    text-align: center;
    content: "詳細を見る";
  }
}
.voice-list > li a:hover::before {
  opacity: 1;
}

.voice-list > li .-ttl {
  font-size: 16px;
}

.voice-list > li img {
  display: block;
  margin: 0 auto 10px;
}

.remodal.voice {
  max-width: 800px;
  padding: 0 0 30px;
  background-color: #fcf4e5;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .remodal.voice {
    width: 90%;
  }
}
.detail-ttl-block {
  position: relative;
}

.detail-ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px 30px;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-weight: bold;
  font-size: 28px;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .detail-ttl {
    padding: 5px 20px;
    font-size: 16px;
  }
}
.detail {
  padding: 30px;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .detail {
    padding: 20px;
    overflow: hidden;
  }
}
.detail-main {
  float: left;
  width: 64%;
}

@media screen and (max-width: 767px) {
  .detail-main {
    float: none;
    width: 100%;
  }
}
.detail-main .-ttl {
  margin-bottom: 5px;
  font-weight: bold;
  font-size: 17px;
}

.detail-main dl {
  margin-top: 10px;
  padding-top: 30px;
  border-top: 1px solid #e55a24;
}

@media screen and (max-width: 767px) {
  .detail-main dl {
    padding-top: 10px;
  }
}
.detail-main dl dt {
  margin-bottom: 10px;
  color: #e55a24;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .detail-main dl dt {
    margin-bottom: 5px;
  }
}
.detail-main dl dd {
  margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
  .detail-main dl dd {
    margin-bottom: 10px;
  }
}
.detail-sub {
  float: right;
  width: 32%;
}

@media screen and (max-width: 767px) {
  .detail-sub {
    float: none;
    width: 100%;
  }
}
.detail-sub figure {
  margin-bottom: 15px;
  text-align: center;
}

.detail-sub figure:last-child {
  margin-bottom: 0;
}

.detail-close {
  text-align: center;
}

.detail-close-btn {
  display: inline-block;
  min-width: 260px;
  margin: 0;
  padding: 5px 0;
  overflow: visible;
  border: 4px solid #e55a24;
  border-radius: 30px;
  background-color: #fff;
  color: #e55a24;
  font-size: 19px;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
}

/*お問い合わせ*/
.reserve {
  padding-top: 3em;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .reserve {
    padding-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  .thanks-text {
    text-align: left;
  }
}
.reserve-ttl {
  display: inline-block;
  margin-bottom: 1em;
  padding: 0.5em 1em;
  background-color: #ea5a24;
  color: #fff;
  font-weight: bold;
  font-size: 3rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .reserve-ttl {
    font-size: 1.8rem;
  }
}
.reserve-ttl h1 {
  font-weight: bold;
  font-size: 4rem;
}

@media screen and (max-width: 767px) {
  .reserve-ttl h1 {
    font-size: 1.8rem;
  }
}
.reserve-detail {
  margin: 1em auto;
  text-align: left;
}

.reserve-detail td, .reserve-detail th {
  padding: 1em;
  border: 1px solid #ccc;
  vertical-align: top;
}

.reserve-detail th {
  background-color: #f5f5f5;
  font-weight: normal;
}

.reserve-form {
  margin-top: 1em;
}

.reserve-form form input[type=text], .reserve-form form input[type=email], .reserve-form form input[type=tel] {
  padding: 10px;
  font-size: 1.6rem;
}

.reserve-form form input[type=radio] {
  margin-right: 0.5em;
}

.reserve-form form select {
  font-size: 1.6rem;
}

.reserve-form form textarea {
  width: 100%;
  height: 160px;
  padding: 10px;
  border: 1px solid #9abccf;
  font-size: 18px;
}

.reserve-form table {
  margin: 1em auto;
}

@media screen and (max-width: 767px) {
  .reserve-form table {
    width: 100%;
  }
}
.reserve-form table th, .reserve-form table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

.reserve-form table th {
  width: 200px;
  background-color: #f5f5f5;
  font-weight: normal;
}

.reserve-form table th .must {
  float: right;
  color: #900;
}

.reserve-form table .caution {
  color: #999;
  font-size: 1.4rem;
}

.confirm-ttl {
  margin-top: 1em;
  color: #ea5a24;
}

.form-button, .mfp_buttons {
  padding-top: 1em;
  text-align: center;
}

.form-button button, #mfp_button_send {
  min-width: 346px;
  padding: 5px 10px;
  border: none;
  border-radius: 50px;
  background: #ea5a24;
  color: #fff;
  font-size: 2.3rem;
  cursor: pointer;
}

#mfp_button_cancel {
  margin-top: 2em;
  padding: 5px 10px;
  border: none;
  border-radius: 50px;
  background: #333;
  color: #fff;
  cursor: pointer;
}

.form-button button:hover, .mfp_buttons button:hover {
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .reserve-form form input {
    border: 1px solid #ccc;
  }
  .reserve-form form input[type=text], .reserve-form form input[type=email], .reserve-form form input[type=tel] {
    width: 100%;
    font-size: 1.6rem;
  }
  .reserve-form form input.size-s {
    width: auto;
  }
  .reserve-form table th, .reserve-form table td {
    display: block;
    border: 1px solid #ccc;
    border-bottom: none;
  }
  .reserve-form table th {
    width: 100%;
  }
  .reserve-form table tr:last-child td {
    border-bottom: 1px solid #9abccf;
  }
  .reserve-form table .caution {
    font-size: 1.2rem;
  }
  .form-button button {
    min-width: 90%;
    font-size: 2rem;
  }
}
.merit-nav-foot {
  margin-top: 5em;
}

@media screen and (max-width: 767px) {
  .merit-nav-foot {
    margin-top: 1em;
  }
}
/*----------------------------------
 mystory
-----------------------------------*/
#mystory {
  padding: 0 0 5em;
}

@media screen and (max-width: 767px) {
  #mystory {
    padding: 0 0 1em;
  }
}
#mystory * {
  box-sizing: border-box;
}

#mystory img {
  max-width: 100%;
  height: auto;
}

#mystory .mystory-wrap + .mystory-wrap {
  margin-top: 5em;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-wrap + .mystory-wrap {
    margin-top: 2em;
  }
}
#mystory .mystory-lead {
  padding: 180px 150px 0;
  overflow: hidden;
  background: url("https://www.hinokiya.jp/z/images/mystory/myz_bg.jpg") no-repeat center top;
  background-size: contain;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-lead {
    padding: 80px 0 0;
  }
}
#mystory .mystory-lead .ttl {
  float: left;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-lead .ttl {
    float: none;
    margin-right: 0;
  }
}
#mystory .mystory-lead .ttl img {
  width: 420px;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-lead .ttl img {
    display: block;
    width: 70%;
    margin: 0 auto 30px;
  }
}
#mystory .mystory-lead .btn {
  margin-top: 1em;
  line-height: 1;
  text-align: center;
}

#mystory .mystory-lead .btn a {
  display: block;
  padding: 15px 10px;
  border: 2px solid #f7931e;
  border-radius: 50px;
  color: #f7931e;
  font-weight: bold;
  text-decoration: none;
}

#mystory .mystory-lead .btn a:hover {
  background: #f7931e;
  color: #fff;
}

#mystory .mystory-lead p {
  overflow: hidden;
}

#mystory .mystory-lead .mystory-ttl {
  margin-bottom: 0.5em;
}

#mystory .mystory-ttl {
  margin-bottom: 1em;
  color: #ee732d;
  font-weight: bold;
  font-size: 30px;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-ttl {
    font-size: 26px;
  }
}
#mystory .mystory-sub-ttl {
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-sub-ttl {
    font-size: 18px;
  }
}
#mystory .mystory-movie ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin-top: -3%;
}

#mystory .mystory-movie ul li {
  width: 22.75%;
  margin-top: 3%;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-movie ul li {
    width: 48.5%;
  }
}
#mystory .mystory-movie ul li .ttl {
  display: table;
  width: 100%;
  margin-bottom: 25px;
  font-size: 16px;
  text-align: center;
}

#mystory .mystory-movie ul li .ttl span {
  display: table-cell;
  position: relative;
  width: 100%;
  height: 60px;
  border-radius: 50px;
  background: #f8d964;
  line-height: 1.5;
  vertical-align: middle;
}

#mystory .mystory-movie ul li .ttl span strong {
  display: block;
}

#mystory .mystory-movie ul li .ttl span::after {
  position: absolute;
  bottom: -15px;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border-width: 15px 10px 0 10px;
  border-style: solid;
  border-color: #f8d864 transparent transparent transparent;
  content: "";
}

#mystory .mystory-movie ul li .images {
  display: block;
  position: relative;
  border: 1px solid #ccc;
}

#mystory .mystory-movie ul li .images a {
  display: block;
}

#mystory .mystory-movie ul li .images a::after {
  display: block;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  margin-left: -20px;
  background-image: url("https://www.hinokiya.jp/z/images/mystory/arrow.svg");
  background-size: cover;
  content: "";
}

#mystory .mystory-cast + .mystory-cast {
  margin-top: 3em;
}

#mystory .mystory-cast .cast-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-top: -3%;
}

#mystory .mystory-cast .cast-list .inner {
  display: flex;
  width: 48.5%;
  margin-top: 3%;
  padding: 1.5em;
  border: 1px solid #ccc;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-cast .cast-list .inner {
    width: 100%;
    padding: 1em;
  }
}
#mystory .mystory-cast .cast-list .inner figure {
  width: 30%;
  margin-right: 20px;
}

@media screen and (max-width: 767px) {
  #mystory .mystory-cast .cast-list .inner figure {
    width: 25%;
    margin-right: 10px;
  }
}
#mystory .mystory-cast .cast-list .inner .detail {
  width: 70%;
  padding: 0;
}

#mystory .mystory-cast .cast-list .inner .detail dt {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #ccc;
  line-height: 2;
}

#mystory .mystory-cast .cast-list .inner .detail .name {
  margin-bottom: 0.5em;
  font-size: 18px;
}

#mystory .mystory-cast .cast-list .inner .detail .ttl {
  display: inline-block;
  margin-bottom: 0.5em;
  padding: 5px;
  border-radius: 4px;
  background: rgba(238, 115, 45, 0.8);
  color: #fff;
  font-size: 13px;
  line-height: 1;
}

#mystory .mystory-cast .cast-list .inner .detail ul {
  margin-left: 1.5em;
}

#mystory .mystory-cast .cast-list .inner .detail ul li {
  list-style: disc;
}

#mystory .mystory-cast .cast-list.cast-list__design .inner {
  width: 100%;
}

#mystory .mystory-cast .cast-list.cast-list__design .inner .detail {
  width: 100%;
}

/*contact*/
.contact-form {
  margin-top: 1em;
}

.contact-form table {
  width: 100%;
  margin: 1em auto;
}

@media screen and (max-width: 767px) {
  .contact-form table {
    border-bottom: 1px solid #ccc;
  }
}
.contact-form table th, .contact-form table td {
  padding: 10px;
  border: 1px solid #ccc;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .contact-form table th, .contact-form table td {
    display: block;
    border-bottom: none;
  }
}
.contact-form table th {
  background-color: #f5f5f5;
  font-weight: normal;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .contact-form table th {
    width: 1px;
  }
}
.contact-form table th .must {
  display: inline-block;
  margin-right: 10px;
  padding: 2px 5px;
  border-radius: 4px;
  background: #900;
  color: #fff;
  font-size: 10px;
}

.contact-form table th .must.must__not {
  background: #555;
}

.contact-form table .caution {
  color: #999;
  font-size: 14px;
}

.contact-form input[type=text], .contact-form input[type=email], .contact-form input[type=tel] {
  padding: 10px;
  font-size: 16px;
}

@media screen and (max-width: 767px) {
  .contact-form input[type=text]:not(.size-s), .contact-form input[type=email]:not(.size-s), .contact-form input[type=tel]:not(.size-s) {
    width: 100%;
  }
}
.contact-form input[type=radio] {
  margin-right: 5px;
}

.contact-form label {
  display: block;
  padding: 5px;
}

@media screen and (min-width: 768px) {
  .contact-form label {
    display: inline-block;
    padding: 10px;
  }
}
.contact-form select {
  padding: 10px;
  font-size: 16px;
}

.contact-form .name-wrap {
  display: flex;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .contact-form .name-wrap li {
    flex-basis: 50%;
  }
  .contact-form .name-wrap li input[type=text] {
    width: 100%;
  }
}
.contact-form .name-wrap li + li {
  margin-left: 10px;
}

.contact-form .address-wrap {
  list-style: none;
}

.contact-form .address-wrap li + li {
  margin-top: 10px;
}

.contact-form .address-wrap li input[type=text] {
  width: 100%;
}

@media screen and (min-width: 768px) {
  .contact-form .address-wrap li input[type=text] {
    width: 80%;
  }
}
.living-sensor {
  display: flex;
  flex-direction: column;
  margin-top: clamp(5rem, 3.3031674208rem + 4.5248868778vw, 10rem);
  font-size: clamp(1.6rem, 1.5321266968rem + 0.1809954751vw, 1.8rem);
  text-align: left;
  gap: clamp(1.5rem, 0.9909502262rem + 1.3574660633vw, 3rem);
}
.living-sensor__header {
  text-align: center;
}
.living-sensor__body {
  display: flex;
  gap: clamp(2rem, 0.9819004525rem + 2.7149321267vw, 5rem);
}
@media screen and (max-width: 768px) {
  .living-sensor__body {
    flex-direction: column;
  }
}
.living-sensor__body > div {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 15px;
}

.living-sensor-release-title {
  font-weight: 600;
  font-size: clamp(1.9rem, 1.3909502262rem + 1.3574660633vw, 3.4rem);
}

.living-sensor-title {
  display: flex;
  align-items: center;
  color: #e95513;
  font-weight: 600;
  font-size: clamp(2.5rem, 1.9909502262rem + 1.3574660633vw, 4rem);
  line-height: 1;
  gap: 0.5em;
}
.living-sensor-title span {
  display: grid;
  padding: 10px;
  background-color: #e50012;
  color: #fff;
  font-weight: normal;
  font-size: clamp(1.8rem, 1.5285067873rem + 0.7239819005vw, 2.6rem);
  place-items: center;
}

.living-sensor-copy {
  color: #e95513;
  font-weight: 600;
  font-size: clamp(2rem, 1.7285067873rem + 0.7239819005vw, 2.8rem);
  line-height: 1.5;
}

.living-sensor-benefit-list {
  display: flex;
  list-style: none;
}

.living-sensor-note {
  display: flex;
  gap: 1em;
}
@media (max-width: 767px) {
  .living-sensor-note {
    flex-direction: column;
  }
}
.living-sensor-note > * {
  flex: 1;
  padding: 10px;
  border: 1px solid currentColor;
  border-radius: 10px;
  text-align: center;
}
.living-sensor-note > *:first-child {
  border-color: #f5deb2;
  background-color: #f5deb2;
}
@media (min-width: 768px) {
  .living-sensor-note br {
    display: none;
  }
}
.living-sensor-note strong {
  color: #e95513;
}
.living-sensor-note small {
  font-size: clamp(1.2rem, 1.1321266968rem + 0.1809954751vw, 1.4rem);
}

.living-sensor-caution {
  margin-top: 0.5em;
  font-size: clamp(1.2rem, 1.1321266968rem + 0.1809954751vw, 1.4rem);
}

/*--------------------------------
  汎用クラス（utility）
--------------------------------*/
@media (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

@media (min-width: 768px) {
  .sp-only {
    display: none;
  }
}

/*------------------------------
    マンションタイプ
--------------------------------*/
.mansion_fv {
  max-width: 1480px;
  margin-inline: auto;
}
.mansion_fv img {
  width: 100%;
}

.mansion_contents {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}

.mansion_heading {
  color: var(--color-main);
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 1.4570135747rem + 1.4479638009vw, 3.6rem);
  line-height: 1.5;
  text-align: center;
}

.mansion_copy {
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 1.392760181rem + 1.0859728507vw, 3rem);
  line-height: 1.5;
  text-align: center;
}
.mansion_copy--accent {
  color: var(--color-accent);
}

.mansion_merit_num {
  display: none;
  border-bottom: 3px solid currentColor;
  color: #bac9d1;
  font-weight: var(--fw-semi-bold);
  font-size: clamp(2.6rem, 2.1248868778rem + 1.2669683258vw, 4rem);
}

.mansion_section {
  padding-block: clamp(2.5rem, 1.6515837104rem + 2.2624434389vw, 5rem);
}

.manstion-price-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
@media (max-width: 767px) {
  .manstion-price-wrap {
    max-width: 320px;
  }
}

.manstion-price {
  display: flex;
  font-size: clamp(1.8rem, 1.6642533937rem + 0.3619909502vw, 2.2rem);
  text-align: center;
  margin-bottom: 5px;
  flex-direction: column;
}
@media (min-width: 768px) {
  .manstion-price {
    flex-direction: row;
    min-width: 650px;
  }
}
@media (max-width: 767px) {
  .manstion-price {
    width: 100%;
  }
}
.manstion-price dt {
  background-color: #000;
  color: #fff;
  padding: 10px 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .manstion-price dt {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .manstion-price dt {
    padding-inline: 0;
  }
}
.manstion-price dd {
  border: 1px solid #000;
  padding: 10px 20px;
  line-height: 1.3;
}
@media (min-width: 768px) {
  .manstion-price dd {
    white-space: nowrap;
  }
}
@media (max-width: 767px) {
  .manstion-price dd {
    padding-inline: 0;
  }
}
.manstion-price dd .-num {
  font-size: 1.5em;
  margin-left: 10px;
  font-weight: 700;
}
.manstion-price dd .-num span {
  font-size: 1.5em;
}
.manstion-price dd .-note {
  font-size: 0.8em;
}
.manstion-price dl {
  flex: 1;
}
.manstion-price dl:not(:first-child) dt {
  border-left: 1px solid #fff;
}
@media (min-width: 768px) {
  .manstion-price dl:not(:first-child) dd {
    border-left: none;
  }
}

.manstion-price-note {
  font-size: clamp(1.3rem, 1.2660633484rem + 0.0904977376vw, 1.4rem);
}

.mansion-intro-lead {
  text-align: center;
}

.mansion-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .mansion-intro {
    gap: 50px;
  }
}
.mansion-intro__mv {
  max-width: 1000px;
}
.mansion-intro__point {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  list-style: none;
  gap: 15px;
}
@media (min-width: 768px) {
  .mansion-intro__point {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
}
.mansion-intro__point > li {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mansion-intro__point > li p:first-child {
  background-color: var(--color-main);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: clamp(1.5rem, 1.3981900452rem + 0.2714932127vw, 1.8rem);
  text-align: center;
}
.mansion-intro__point > li p:last-child {
  font-size: 1.4rem;
}

.mansion_merit-1_images {
  display: flex;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (max-width: 767px) {
  .mansion_merit-1_images {
    flex-direction: column;
  }
  .mansion_merit-1_images img {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .mansion_merit-1_images {
    justify-content: center;
  }
}

.mansion_merit-2_body {
  display: flex;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (max-width: 767px) {
  .mansion_merit-2_body {
    flex-direction: column-reverse;
    align-items: center;
  }
}
@media (min-width: 768px) {
  .mansion_merit-2_body {
    justify-content: center;
  }
}
.mansion_merit-2_body > div:last-child {
  display: flex;
  flex-direction: column;
  max-width: clamp(30rem, 25.3617977528rem + 6.0393258427vw, 34.3rem);
  font-size: 14px;
  line-height: 1.5;
  gap: 1em;
}

.mansion_system, .mansion_cost, .mansion_feature {
  margin-top: clamp(2.5rem, 1.6515837104rem + 2.2624434389vw, 5rem);
  padding-block: clamp(2.5rem, 1.6515837104rem + 2.2624434389vw, 5rem);
  background-color: var(--color-light-grey);
}
.mansion_system__mv, .mansion_cost__mv, .mansion_feature__mv {
  margin-bottom: clamp(2.5rem, 1.6515837104rem + 2.2624434389vw, 5rem);
  text-align: center;
}

.mansion_feature {
  background-color: #c3996d;
}
.mansion_feature .mansion_copy {
  color: #fff;
}

.mansion_system_points {
  display: flex;
  gap: clamp(2rem, -0.1573033708rem + 2.808988764vw, 4rem);
}
@media (max-width: 767px) {
  .mansion_system_points {
    flex-direction: column;
    align-items: center;
    gap: 50px;
  }
}

.mansion_system_point {
  display: flex;
  flex: 1;
  flex-direction: column;
  position: relative;
  padding: 40px clamp(2rem, 1.6606334842rem + 0.9049773756vw, 3rem) clamp(2rem, 1.6606334842rem + 0.9049773756vw, 3rem);
  border: 2px solid var(--color-accent);
  background-color: #fff;
  font-size: 14px;
  line-height: 1.65;
  gap: clamp(1rem, 0.6606334842rem + 0.9049773756vw, 2rem);
}
.mansion_system_point__num {
  display: grid;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--color-accent);
  color: #fff;
  font-weight: var(--fw-bold);
  font-size: 20px;
  place-items: center;
}
.mansion_system_point__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(0.5rem, 0.3303167421rem + 0.4524886878vw, 1rem);
}
.mansion_system_point__title {
  color: var(--color-main);
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.5321266968rem + 0.1809954751vw, 1.8rem);
  text-align: center;
}

.mansion_system_images {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-block: clamp(1rem, 0.6606334842rem + 0.9049773756vw, 2rem);
  gap: clamp(0.5rem, 0.3303167421rem + 0.4524886878vw, 1rem);
}

.mansion_slider {
  position: relative;
  margin-top: clamp(2.5rem, 1.6515837104rem + 2.2624434389vw, 5rem);
}
.mansion_slider .swiper-slide {
  display: flex;
  max-width: clamp(32rem, 8.9230769231rem + 61.5384615385vw, 100rem);
  height: auto;
}
.mansion_slider .swiper-slide > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: clamp(1.5rem, 0.3122171946rem + 3.1674208145vw, 5rem);
  border: 1px solid #ccc;
  box-sizing: border-box;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
  background: #fff;
  gap: 50px;
}
.mansion_slider .swiper-slide > div.mansion_slider__gokuraku {
  background-color: #edffed;
}
.mansion_slider .swiper-slide > div.mansion_slider__maxair {
  background-color: #dcf5ff;
}
.mansion_slider .swiper-slide > div.mansion_slider__concent {
  background-color: #f0edff;
}
.mansion_slider__btn {
  display: grid;
  width: clamp(22rem, 18.2669683258rem + 9.9547511312vw, 33rem);
  max-width: 100%;
  aspect-ratio: 330/50;
  border-radius: 50px;
  background-color: #c4af96;
  color: #fff;
  font-weight: var(--fw-semi-bold);
  font-size: clamp(1.6rem, 1.4642533937rem + 0.3619909502vw, 2rem);
  text-decoration: none;
  place-items: center;
}
@media (hover: hover) and (pointer: fine) {
  .mansion_slider__btn:hover {
    background-color: #b29675;
  }
}
.mansion_slider .swiper-button-prev, .mansion_slider .swiper-button-next {
  width: clamp(3rem, 1.9819004525rem + 2.7149321267vw, 6rem);
  height: clamp(3rem, 1.9819004525rem + 2.7149321267vw, 6rem);
  border-radius: 50%;
  background-color: #555;
}
.mansion_slider .swiper-button-prev svg, .mansion_slider .swiper-button-next svg {
  width: 50%;
  height: 50%;
}
.mansion_slider .swiper-button-prev svg path, .mansion_slider .swiper-button-next svg path {
  fill: #fff;
}

.mansion_experience {
  display: flex;
  font-size: 14px;
  gap: clamp(4rem, 2.6425339367rem + 3.6199095023vw, 8rem);
}
@media (max-width: 767px) {
  .mansion_experience {
    flex-direction: column;
    max-width: 300px;
  }
}
.mansion_experience > * {
  display: flex;
  flex: 1;
  flex-direction: column;
  color: #000;
  text-decoration: none;
  gap: clamp(0.5rem, 0.3303167421rem + 0.4524886878vw, 1rem);
}
.mansion_experience > * img {
  width: 100%;
  transition: 0.3s;
}
.mansion_experience__name {
  color: var(--color-main);
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 1.5285067873rem + 0.7239819005vw, 2.6rem);
  line-height: 1.5;
}

.mansion_feature_item {
  display: flex;
  flex-direction: column;
  max-width: 1000px;
  margin-inline: auto;
  gap: clamp(1.5rem, 0.9909502262rem + 1.3574660633vw, 3rem);
}
.mansion_feature_item__head {
  display: flex;
  align-items: center;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (max-width: 767px) {
  .mansion_feature_item__head {
    flex-direction: column;
  }
}
.mansion_feature_item__icon {
  color: #009c74;
  font-weight: var(--fw-bold);
  font-size: 14px;
  text-align: center;
}
.mansion_feature_item__icon img {
  width: clamp(8rem, 6.3031674208rem + 4.5248868778vw, 13rem);
}
.mansion_feature_item__icon figcaption {
  margin-top: 5px;
  line-height: 1.3;
}
.mansion_feature_item__target {
  margin-bottom: 0.5em;
  color: #006837;
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.4642533937rem + 0.3619909502vw, 2rem);
  line-height: 1.5;
}
.mansion_feature_item__title {
  color: var(--color-main);
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 1.5891402715rem + 1.628959276vw, 4rem);
  line-height: 1.3;
}
.mansion_feature_item__subtitle {
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 1.5963800905rem + 0.5429864253vw, 2.4rem);
  text-align: center;
}
.mansion_feature_item__lead {
  font-size: clamp(1.6rem, 1.5321266968rem + 0.1809954751vw, 1.8rem);
}
.mansion_feature_item__lead > *:not(:last-child) {
  margin-bottom: 0.5em;
}
.mansion_feature_item__points {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (min-width: 1024px) {
  .mansion_feature_item__points {
    flex-direction: row;
  }
}
.mansion_feature_item__points > div {
  flex: 1;
}
.mansion_feature_item__points > div > *:not(:last-child) {
  margin-bottom: 10px;
}
.mansion_feature_item__points > div .-title {
  border: 1px solid currentColor;
  color: #009c74;
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.3285067873rem + 0.7239819005vw, 2.4rem);
  text-align: center;
}
.mansion_feature_item__name {
  font-weight: var(--fw-bold);
  font-size: clamp(2rem, 1.8642533937rem + 0.3619909502vw, 2.4rem);
}
.mansion_feature_item--developer .mansion_feature_item__icon, .mansion_feature_item--developer .mansion_feature_item__target, .mansion_feature_item--developer .mansion_feature_item__points .-title {
  color: #005891;
}
.mansion_feature_item--owner .mansion_feature_item__icon, .mansion_feature_item--owner .mansion_feature_item__name {
  color: #b976ad;
}
.mansion_feature_item--owner .mansion_feature_item__target {
  color: #662d8e;
}

.mansion_feature_owner_contents {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mansion_feature_owner_contents__flex {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (min-width: 1024px) {
  .mansion_feature_owner_contents__flex {
    flex-direction: row;
  }
}
.mansion_feature_owner_contents__title {
  margin-bottom: 0.5em;
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.3963800905rem + 0.5429864253vw, 2.2rem);
  line-height: 1.5;
}
.mansion_feature_owner_contents__subtitle {
  margin-bottom: 0.5em;
  font-weight: var(--fw-bold);
  font-size: clamp(1.6rem, 1.4642533937rem + 0.3619909502vw, 2rem);
  line-height: 1.5;
}
.mansion_feature_owner_contents--reform .mansion_feature_owner_contents__flex > div:first-child {
  flex-shrink: 0;
  max-width: 400px;
}

.mansion_equip {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1000px;
  height: 100%;
  margin-inline: auto;
  gap: clamp(1.5rem, 0.9909502262rem + 1.3574660633vw, 3rem);
}
.mansion_equip__title {
  color: #008f45;
  font-weight: var(--fw-bold);
  font-size: clamp(2.2rem, 1.5891402715rem + 1.628959276vw, 4rem);
  line-height: 1.3;
  text-align: center;
}
.mansion_equip__subtitle {
  color: var(--color-main);
  font-weight: var(--fw-bold);
  font-size: clamp(1.8rem, 1.5963800905rem + 0.5429864253vw, 2.4rem);
}
@media screen and (max-width: 768px) {
  .mansion_equip__subtitle {
    text-align: center;
  }
}
.mansion_equip__subtitle span {
  font-size: 0.8em;
}
.mansion_equip__contents {
  display: flex;
  flex-direction: column;
  gap: clamp(2rem, 1.3212669683rem + 1.8099547511vw, 4rem);
}
@media (min-width: 1024px) {
  .mansion_equip__contents {
    flex-direction: row;
  }
}
.mansion_equip__cluster {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 0.6606334842rem + 0.9049773756vw, 2rem);
}
@media (min-width: 1024px) {
  .mansion_equip__cluster {
    flex-direction: row;
  }
}
.mansion_equip__cluster > div {
  flex: 1;
}
.mansion_equip__btn {
  margin-top: auto;
}
.mansion_equip--maxair .mansion_equip__title {
  color: #3fa7f3;
}
@media (min-width: 1024px) {
  .mansion_equip--maxair .mansion_equip__contents {
    align-items: end;
    position: relative;
    top: -50px;
  }
}
.mansion_equip--concent .mansion_equip__title {
  color: #000;
}

.mansion_equip_maxair_logo {
  max-width: clamp(20rem, 13.2126696833rem + 18.0995475113vw, 40rem);
}

.mansion_equip_maxair_card {
  display: flex;
  flex-direction: column;
  font-size: clamp(1.4rem, 1.3660633484rem + 0.0904977376vw, 1.5rem);
  gap: 20px;
}

.mansion_equip_concent_title {
  color: #4591ce;
  font-weight: var(--fw-bold);
  font-size: clamp(3.6rem, 2.1067873303rem + 3.9819004525vw, 8rem);
  line-height: 1.3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .mansion_equip_concent_title {
    margin-block: 0.8em 0.5em;
  }
}

.mansion_gokurak_concent {
  max-width: 150px;
}
@media screen and (max-width: 768px) {
  .mansion_gokurak_concent {
    margin-inline: auto;
  }
}

@media screen and (max-width: 768px) {
  .mansion_concent_note {
    width: 180px;
    margin-top: 20px;
    margin-inline: auto;
  }
}

.mansion_faq_section {
  background-color: #fcf7d6;
}

.mansion_faq {
  width: 100%;
}

.faqList {
  list-style: none;
  background: #fff;
}

.faqItem {
  padding: 2rem 0;
}

.faqItem + .faqItem {
  border-top: 1px solid #ccc;
}

.faqItem__Qbox {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.faqItem__Abox {
  margin-top: 2rem;
}

.faqItem:not(:nth-child(1)) .faqItem__Abox {
  display: none;
}

.faqItem__Q {
  display: flex;
  align-items: baseline;
  position: relative;
  color: #dd5d0f;
  font-weight: bold;
}

.faqItem__Q::before {
  content: "Q.  ";
}

.faqItem__Qbtn {
  position: relative;
  margin-left: 0.8rem;
  border: 2px solid #dd5d0f;
  border-radius: 50%;
  content: "";
}

.faqItem__Qbtn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  height: 2px;
  background-color: #dd5d0f;
  content: "";
}

.faqItem__Qbtn::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(90deg);
  width: 50%;
  height: 2px;
  background-color: #dd5d0f;
  content: "";
  transition: 0.2s all;
}

.faqItem__Qbtn.-active::after {
  transform: translate(-50%, -50%) rotate(0);
}

@media screen and (min-width: 768px) {
  .faqList {
    padding: 6rem 8rem;
  }
  .faqItem__Q {
    font-size: 2rem;
  }
  .faqItem__Q::before {
    margin-right: 2rem;
  }
  .faqItem__A {
    font-size: 1.6rem;
  }
  .faqItem__Qbtn {
    min-width: 3.2rem;
    height: 3.2rem;
  }
}
@media screen and (max-width: 768px) {
  .faqList {
    padding: 0 2rem;
  }
  .faqItem__Q, .faqItem__A {
    font-size: 1.4rem;
  }
  .faqItem__Q::before {
    margin-right: 0.5rem;
  }
  .faqItem__Qbtn {
    min-width: 2.4rem;
    height: 2.4rem;
  }
}
.mansion_slider_nav {
  display: flex;
  list-style: none;
  gap: 1em;
  flex-wrap: wrap;
  justify-content: center;
}
.mansion_slider_nav a {
  background-color: #ccc;
  color: #000;
  padding: 0.6em 1em;
  border-radius: 1em;
  text-decoration: none;
  display: inline-block;
}
.mansion_slider_nav a:hover {
  background-color: #555;
  color: #fff;
}

.top-mansion-banner {
  width: 84.31372%;
  margin-inline: auto;
  margin-bottom: 50px;
}