@charset "UTF-8";
/***********************************************************************
media queries setting
**********************************************************************/
/***********************************************************************
reset
**********************************************************************/
* {
  margin: 0;
  padding: 0;
}

html, body {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  margin: 0;
  padding: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6, p, ul, ol, li, dl, dt, dd, table, th, td, img,
article, footer, header, nav, section {
  margin: 0;
  padding: 0;
  border: none;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  list-style-type: none;
}

th {
  font-weight: normal;
  text-align: inherit;
}

select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 100%;
  font-family: "Noto Serif JP", serif;
}

select {
  cursor: pointer;
}

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

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

*:focus {
  outline: none;
}

img[src$=".svg"] {
  width: 100%;
}

hr {
  display: none;
}

a {
  color: #000;
  text-decoration: none;
  outline: none;
}

/* set html5 elements to block */
article, footer, header, nav, section {
  display: block;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.pc {
  display: block;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
}

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

ul {
  font-size: 0;
}
ul li {
  font-size: 16px;
}
@media (max-width: 768px) {
  ul li {
    font-size: 14px;
  }
}

/********************************************************************************
header
********************************************************************************/
header {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 0;
  padding: 17px 2%;
  width: 100%;
}
@media (max-width: 768px) {
  header {
    padding: 5px 2%;
  }
}
header #logo {
  margin-right: 85px;
  max-width: 317px;
}
@media (max-width: 768px) {
  header #logo {
    max-width: 119px;
  }
}
header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 768px) {
  header ul {
    display: none;
  }
}
header ul li {
  margin-right: 50px;
}
header ul a {
  border-bottom: 1px solid transparent;
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px;
  letter-spacing: 0.3em;
  line-height: 1;
  padding-bottom: 3px;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
header ul a:hover {
  border-bottom: 1px solid #007d93;
  color: #007d93;
}

#fixed-logo {
  display: none;
  position: fixed;
  left: 7%;
  top: 42px;
  max-width: 81px;
  z-index: 5;
}
@media (max-width: 768px) {
  #fixed-logo {
    max-width: 36px;
    left: calc(27px + 4.7%);
    top: 20px;
  }
}

#nav-btn {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
  display: inline-block;
  height: 7px;
  opacity: 0;
  padding: 40px 55px;
  pointer-events: none;
  position: fixed;
  right: 0;
  top: 0;
  visibility: hidden;
  width: 30px;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  z-index: 1000;
}
@media (max-width: 768px) {
  #nav-btn {
    opacity: 1;
    visibility: visible;
    padding: 18px 35px;
    pointer-events: auto;
  }
}
#nav-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
#nav-btn span {
  background: #000;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  height: 1px;
  position: absolute;
  left: calc(50% - 21px);
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  width: 42px;
}
@media (max-width: 768px) {
  #nav-btn span {
    left: calc(50% - 14px);
    width: 28px;
  }
}
#nav-btn span:nth-of-type(1) {
  top: 38px;
}
@media (max-width: 768px) {
  #nav-btn span:nth-of-type(1) {
    top: 14px;
  }
}
#nav-btn span:nth-of-type(2) {
  top: 46px;
}
@media (max-width: 768px) {
  #nav-btn span:nth-of-type(2) {
    top: 22px;
  }
}
#nav-btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(45deg);
          transform: translateY(8px) rotate(45deg);
}
#nav-btn.active span:nth-of-type(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.gnav {
  background: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 100vh;
  max-width: 375px;
  min-height: 100vh;
  overflow-y: auto;
  opacity: 0;
  padding: 100px 50px;
  position: fixed;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  width: 100%;
  z-index: 999;
}
@media (max-width: 768px) {
  .gnav {
    max-width: inherit;
  }
}
.gnav.active {
  visibility: visible;
  opacity: 1;
}
.gnav li {
  margin-bottom: 30px;
}
.gnav li a {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 21px;
  padding-left: 35px;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.gnav li a::before {
  background: #007d93;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 21px;
}
.gnav li a:hover {
  padding-left: 40px;
}
@media (max-width: 768px) {
  .gnav li a:hover {
    padding-left: 35px;
  }
}
@media (max-width: 768px) {
  .gnav .gnav-logo {
    position: absolute;
    left: 2%;
    top: 5px;
    width: 119px;
  }
}

#gnav-overlay {
  background: rgba(178, 178, 178, 0.5);
  backdrop-filter: blur(5px);
  inset: 0;
  opacity: 0;
  pointer-events: none;
  position: fixed;
  -webkit-transition: opacity 0.6s ease, visibility 0.6s ease;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  visibility: hidden;
  z-index: 998;
}
#gnav-overlay.active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

body.nav-open {
  overflow: hidden;
}

/********************************************************************************
content
********************************************************************************/
.wrapper {
  position: relative !important;
  -webkit-transform: none !important;
          transform: none !important;
}

/* op-anim-box */
#op-anim {
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  width: 100%;
  z-index: 99999;
}
#op-anim .op-anim-box {
  background-color: #fff;
  height: 100%;
  position: relative;
  width: 100%;
}
#op-anim .op-anim-box.open {
  -webkit-animation: fadeOut 1.5s forwards;
          animation: fadeOut 1.5s forwards;
}
#op-anim .op-anim-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 40%;
}
@media (max-width: 768px) {
  #op-anim .op-anim-logo {
    width: 65%;
  }
}
#op-anim .op-anim-logo video {
  width: 100%;
}

@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* op-anim-box */
/* main */
#main {
  height: calc(100svh - 102px);
  position: relative;
}
@media (max-width: 768px) {
  #main {
    height: calc(100lvh - 36px);
  }
}
#main .news-box {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 12px 22px 13px;
  position: absolute;
  left: 2%;
  top: 17px;
  z-index: 2;
}
@media (max-width: 768px) {
  #main .news-box {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    padding: 10px 18px;
    top: 10px;
    width: 96%;
  }
}
#main .news-box .head {
  border-bottom: 1px solid #000;
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 7px;
  padding: 0 1px 4px;
}
@media (max-width: 768px) {
  #main .news-box .head {
    font-size: 13px;
  }
}
#main .news-box .new-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#main .news-box .date {
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-right: 15px;
}
@media (max-width: 768px) {
  #main .news-box .date {
    font-size: 12px;
    margin-right: 7px;
    width: 61px;
  }
}
#main .news-box .title {
  width: 330px;
}
@media (max-width: 768px) {
  #main .news-box .title {
    width: calc(100% - 68px);
  }
}
#main .news-box .title a {
  display: block;
  font-family: "Shippori Mincho B1", serif;
  letter-spacing: 0.05em;
  overflow: hidden;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  white-space: nowrap;
  width: 100%;
}
#main .news-box .title a:hover {
  text-decoration-color: #000;
}
@media (max-width: 768px) {
  #main .news-box .title a:hover {
    text-decoration-color: transparent;
  }
}
#main .main-slider {
  height: 100%;
}
#main .main-slider .swiper-slide img {
  -webkit-filter: blur(96px);
          filter: blur(96px);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-filter 3.5s ease;
  transition: -webkit-filter 3.5s ease;
  transition: filter 3.5s ease;
  transition: filter 3.5s ease, -webkit-filter 3.5s ease;
  width: 100%;
}
#main .main-slider .swiper-slide-active img {
  -webkit-filter: blur(0);
          filter: blur(0);
}
#main .main-copy {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: min(2.08vw, 40px);
  letter-spacing: 0.5em;
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  #main .main-copy {
    font-size: 25px;
    line-height: 1.75;
    text-align: left;
    width: inherit;
    white-space: nowrap;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
  }
}
#main .en {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: min(56.4vw, 1083px);
  z-index: 1;
}
@media (max-width: 768px) {
  #main .en {
    width: 92%;
  }
}

/* main */
/* intro */
#intro {
  background: #007d93;
  min-height: 100lvh;
  position: relative;
}
#intro .inner {
  margin: 0 auto;
  max-width: 1590px;
  padding: min(2.08vw, 40px) 0 0;
  width: 90%;
}
@media (max-width: 768px) {
  #intro .inner {
    padding: 20px 0 58px;
    width: 93.5%;
  }
}
#intro .en {
  color: #fff;
  font-family: "Antonio", sans-serif;
  font-size: 17px;
  letter-spacing: 0.7em;
  margin-bottom: min(5.52vw, 100px);
  text-align: center;
}
@media (max-width: 768px) {
  #intro .en {
    font-size: 11px;
    margin-bottom: 28px;
  }
}
#intro .intro-content-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: min(3.645vw, 70px) 0 min(9.375vw, 180px);
}
@media (max-width: 768px) {
  #intro .intro-content-box {
    display: block;
    padding: 0;
  }
}
#intro .image-left {
  width: 25%;
}
@media (max-width: 768px) {
  #intro .image-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 37px;
    width: 100%;
  }
}
#intro .image1 {
  margin-bottom: 15%;
  width: 89%;
}
@media (max-width: 768px) {
  #intro .image1 {
    margin: 11.5% 0 0;
    width: 47.3%;
  }
}
#intro .image2 {
  margin-bottom: 9%;
  margin-left: auto;
  width: 63.5%;
}
@media (max-width: 768px) {
  #intro .image2 {
    margin: 27% -21.1% 0 -15.7%;
    position: relative;
    width: 48.5%;
    z-index: 1;
  }
}
#intro .image3 {
  margin-left: 6.5%;
  width: 82%;
}
@media (max-width: 768px) {
  #intro .image3 {
    margin: 0;
    width: 41%;
  }
}
#intro .image4 {
  margin-bottom: 23%;
  width: 99%;
}
@media (max-width: 768px) {
  #intro .image4 {
    margin: 0 -11.8% 0 0;
    width: 59%;
  }
}
#intro .image5 {
  margin-left: auto;
  width: 79.5%;
}
@media (max-width: 768px) {
  #intro .image5 {
    margin: 15.5% 0 0;
    width: 52.8%;
  }
}
#intro .desc-box {
  margin: 0 5.75%;
  width: 35.5%;
}
@media (max-width: 768px) {
  #intro .desc-box {
    margin: 0 auto 45px;
    width: 84%;
  }
}
#intro .desc-box p {
  color: #fff;
  font-size: min(1.56vw, 30px);
  letter-spacing: 0.1em;
  line-height: 2.6;
  position: relative;
  top: calc(50% - min(5.2vw, 100px));
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  text-align: justify;
}
@media (max-width: 768px) {
  #intro .desc-box p {
    font-size: 20px;
    letter-spacing: 0.05em;
    line-height: 2.15;
    top: inherit;
    -webkit-transform: none;
            transform: none;
  }
}
#intro .image-right {
  margin-top: 3%;
  width: 28%;
}
@media (max-width: 768px) {
  #intro .image-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    width: 95%;
  }
}
#intro .cloud1 {
  height: calc(100vh + 51.3vw);
  position: absolute;
  left: 0;
  bottom: calc(-100vh - 51.3vw);
  pointer-events: none;
  width: 100%;
}
@media (max-width: 768px) {
  #intro .cloud1 {
    height: calc(35vh + 51.3vw);
    bottom: calc(-35vh - 51.3vw);
  }
}
#intro .cloud1::after {
  background: #fff;
  content: "";
  height: 100vh;
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
}
@media (max-width: 768px) {
  #intro .cloud1::after {
    height: 35vh;
  }
}
#intro .cloud1::before {
  background: url("../images/intro-cloud.png") no-repeat center top/cover;
  content: "";
  height: 51.3vw;
  position: absolute;
  left: 0;
  bottom: calc(100vh - 2px);
  width: 100%;
}
@media (max-width: 768px) {
  #intro .cloud1::before {
    bottom: calc(35vh - 2px);
  }
}

/* intro */
/* 01-04 */
.section-box {
  background: #fff;
  margin-bottom: min(42.5vw, 817px);
  position: relative;
}
@media (max-width: 768px) {
  .section-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: min(61vw, 817px);
  }
}
.section-box .inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
@media (max-width: 768px) {
  .section-box .inner {
    width: 91%;
  }
}
.section-box {
  /* band */
}
.section-box .band {
  background: #007d93;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 60px;
  z-index: 5;
}
@media (max-width: 768px) {
  .section-box .band {
    width: 27px;
  }
}
.section-box .fixed-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100vh;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: sticky;
  left: 0;
  top: 0;
  width: 100%;
}
.section-box .fixed-text .num {
  color: #fff;
  font-family: "Antonio", sans-serif;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-bottom: 20px;
  padding: 35px 0 68px;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  .section-box .fixed-text .num {
    font-size: 14px;
  }
}
.section-box .fixed-text .num::before {
  border-right: 1px solid #fff;
  content: "";
  height: 49px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 0;
}
.section-box .fixed-text .head {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px;
  letter-spacing: 0.3em;
  line-height: 1;
  margin: 0 auto;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .section-box .fixed-text .head {
    font-size: 11px;
  }
}
.section-box .fixed-text .en {
  color: #fff;
  font-family: "Antonio", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.4em;
  line-height: 1;
  margin: 0 auto;
  padding-bottom: 35px;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  .section-box .fixed-text .en {
    font-size: 1.75vw;
  }
}
.section-box .fixed-text .en strong {
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section-box .fixed-text .en strong {
    font-size: 15px;
  }
}
.section-box {
  /* band */
  /* section-desc */
}
.section-box .section-desc {
  margin-left: auto;
  width: calc(100% - 60px);
}
@media (max-width: 768px) {
  .section-box .section-desc {
    width: calc(100% - 27px);
  }
}
.section-box .section-desc .num {
  margin-bottom: 100px;
  text-align: center;
}
@media (max-width: 768px) {
  .section-box .section-desc .num {
    margin-bottom: 40px;
  }
}
.section-box .section-desc .num span {
  border-bottom: 1px solid #000;
  display: inline-block;
  font-family: "Antonio", sans-serif;
  font-size: 27px;
  font-weight: 600;
  padding: 0 1px 17px;
}
.section-box .section-desc .num span:first-letter {
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section-box .section-desc .num span {
    font-size: 19px;
    padding: 0 1px 13px;
  }
}
.section-box .section-desc h2 {
  font-family: "Antonio", sans-serif;
  font-weight: 700;
  font-size: 26px;
  letter-spacing: 0.4em;
  line-height: 1.15;
}
@media (max-width: 768px) {
  .section-box .section-desc h2 {
    font-size: 14px;
  }
}
.section-box .section-desc h2 strong {
  display: block;
  font-weight: 400;
  font-size: 113px;
  letter-spacing: 0.2em;
}
@media (max-width: 768px) {
  .section-box .section-desc h2 strong {
    font-size: 53px;
  }
}
.section-box .section-desc h2 strong {
  /* anim */
}
.section-box .section-desc h2 strong span {
  display: inline-block;
  opacity: 0;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
  -webkit-transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: opacity 0.5s, -webkit-transform 0.5s;
  transition: transform 0.5s, opacity 0.5s;
  transition: transform 0.5s, opacity 0.5s, -webkit-transform 0.5s;
}
.section-box .section-desc h2 strong span.show {
  opacity: 1;
  -webkit-transform: rotateY(0deg);
          transform: rotateY(0deg);
}
.section-box .section-desc h2 strong {
  /* anim */
}
.section-box .section-desc .title-jp {
  font-family: "Shippori Mincho B1", serif;
  font-size: 23px;
  letter-spacing: 0.3em;
}
@media (max-width: 768px) {
  .section-box .section-desc .title-jp {
    font-size: 14px;
  }
}
.section-box .section-desc .frame-box {
  position: relative;
  z-index: 1;
}
.section-box .section-desc .frame-box .frame {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
.section-box .section-desc .frame-box .frame::before {
  background: #fff;
  border-radius: 15px;
  content: "";
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  position: absolute;
  left: -10px;
  top: -10px;
}
@media (max-width: 768px) {
  .section-box .section-desc .frame-box .frame::before {
    border-radius: 4px;
    height: calc(100% + 5px);
    width: calc(100% + 5px);
    left: -2.5px;
    top: -2.5px;
  }
}
.section-box .section-desc .frame-box .frame::after {
  background: #007d93;
  content: "";
  height: calc(100% + 22px);
  width: calc(100% + 22px);
  position: absolute;
  left: -11px;
  top: -11px;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-box .section-desc .frame-box .frame::after {
    height: calc(100% + 7px);
    left: -3.5px;
    top: -3.5px;
    width: calc(100% + 7px);
  }
}
.section-box .section-desc .frame-anim {
  overflow: hidden;
  position: relative;
}
.section-box .section-desc .frame-anim::before {
  background: #fff;
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
.section-box .section-desc .frame-anim.bottom.inframe::before {
  -webkit-animation: frame-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
          animation: frame-bottom 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
.section-box .section-desc .frame-anim.right.inframe::before {
  -webkit-animation: frame-right 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
          animation: frame-right 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
.section-box .section-desc .frame-anim.left.inframe::before {
  -webkit-animation: frame-left 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
          animation: frame-left 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.35s forwards;
}
@-webkit-keyframes frame-bottom {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@keyframes frame-bottom {
  100% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
  }
}
@-webkit-keyframes frame-right {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes frame-right {
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes frame-left {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
@keyframes frame-left {
  100% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
.section-box .section-desc .desc-box h3 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 22px;
  padding-left: 65px;
  position: relative;
}
@media (max-width: 768px) {
  .section-box .section-desc .desc-box h3 {
    font-size: 21px;
    margin-bottom: 12px;
    padding-left: 35px;
  }
}
.section-box .section-desc .desc-box h3::before {
  background: #007d93;
  content: "";
  height: 6px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 42px;
}
@media (max-width: 768px) {
  .section-box .section-desc .desc-box h3::before {
    width: 24px;
  }
}
.section-box .section-desc .desc-box p {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding-left: 65px;
  text-align: justify;
}
@media (max-width: 768px) {
  .section-box .section-desc .desc-box p {
    font-size: 15px;
    line-height: 1.75;
    padding-left: 35px;
  }
}
.section-box {
  /* section-desc */
}
.section-box::before, .section-box::after {
  background: linear-gradient(90deg, #007d93 0, #007d93 60px, #fff 60.1px, #fff 100%);
  content: "";
  height: 5.729vw;
  -webkit-mask-size: 100% 100%;
          mask-size: 100% 100%;
  position: absolute;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .section-box::before, .section-box::after {
    background: linear-gradient(90deg, #007d93 0, #007d93 27px, #fff 27.1px, #fff 100%);
  }
}
.section-box::before {
  -webkit-mask-image: url(../images/fixed-frame-top.png);
  mask-image: url(../images/fixed-frame-top.png);
  -webkit-mask-position: left top;
          mask-position: left top;
  bottom: -5.2vw;
}
.section-box::after {
  -webkit-mask-image: url(../images/fixed-frame-bottom.png);
  mask-image: url(../images/fixed-frame-bottom.png);
  -webkit-mask-position: left top;
          mask-position: left top;
  top: -5.2vw;
}

/* freedom */
#freedom {
  padding: 95px 0 160px;
}
@media (max-width: 768px) {
  #freedom {
    padding: 35px 0 65px;
  }
}
#freedom .section-desc {
  overflow-x: hidden;
}
#freedom h2 {
  margin-bottom: -40px;
  position: relative;
  z-index: 3;
}
@media (max-width: 768px) {
  #freedom h2 {
    margin-bottom: -20px;
  }
}
#freedom .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 78px;
}
@media (max-width: 768px) {
  #freedom .flex-box {
    margin-bottom: 40px;
  }
}
#freedom .flex-box .text {
  width: 12%;
}
@media (max-width: 768px) {
  #freedom .flex-box .text {
    width: 13.4%;
  }
}
#freedom .flex-box .text .title-jp {
  margin: 100px auto 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
}
@media (max-width: 768px) {
  #freedom .flex-box .text .title-jp {
    margin-top: 65px;
  }
}
#freedom .flex-box .image {
  width: 76.5%;
}
@media (max-width: 768px) {
  #freedom .flex-box .image {
    width: 86.6%;
  }
}
#freedom .desc-box {
  width: 56.5%;
}
@media (max-width: 768px) {
  #freedom .desc-box {
    width: 100%;
  }
}
#freedom .desc-box.desc1 {
  margin-right: 4.5%;
  margin-left: auto;
}
@media (max-width: 768px) {
  #freedom .desc-box.desc1 {
    margin-right: 0;
  }
}
#freedom .desc-box.desc2 {
  margin-left: 9%;
}
@media (max-width: 768px) {
  #freedom .desc-box.desc2 {
    margin-left: 0;
  }
}
#freedom .image-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 92px;
  margin-left: -3.5%;
  margin-top: 163px;
  width: 107%;
}
@media (max-width: 768px) {
  #freedom .image-list {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 45px;
    margin-left: -3.8%;
    margin-top: 60px;
    width: 102%;
  }
}
#freedom .image-list li {
  width: 30.5%;
}
@media (max-width: 768px) {
  #freedom .image-list li {
    width: 46.5%;
    z-index: 3;
  }
}
#freedom .image-list li img {
  width: 100%;
}
#freedom .image-list li:first-child {
  margin-right: 4.25%;
}
@media (max-width: 768px) {
  #freedom .image-list li:first-child {
    margin-right: 7%;
    margin-top: 24px;
  }
}
#freedom .image-list li:nth-child(2) {
  margin-right: 4.25%;
}
@media (max-width: 768px) {
  #freedom .image-list li:nth-child(2) {
    margin-right: 0;
  }
}
#freedom .image-list li:nth-child(2) .frame-anim::before {
  -webkit-animation-delay: 0.65s;
          animation-delay: 0.65s;
}
@media (max-width: 768px) {
  #freedom .image-list li:last-child {
    margin-left: 20%;
    margin-top: -28px;
    width: 56.5%;
    z-index: 1;
  }
}
#freedom .image-list li:last-child .frame-anim::before {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}
#freedom::after {
  content: none;
}

/* freedom */
/* comfort */
#comfort {
  padding: 7px 0 105px;
}
@media (max-width: 768px) {
  #comfort {
    padding: 40px 0 57px;
  }
}
#comfort .head-box {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 153px;
}
@media (max-width: 768px) {
  #comfort .head-box {
    display: block;
    margin-bottom: 22px;
  }
}
#comfort .head-box h2 {
  margin-right: 105px;
}
@media (max-width: 768px) {
  #comfort .head-box h2 {
    margin-bottom: 20px;
    margin-right: 0;
  }
}
#comfort .head-box .title-jp {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  #comfort .head-box .title-jp {
    margin-bottom: 0;
  }
}
#comfort .image2 {
  position: relative;
  z-index: 1;
}
#comfort .image2 .frame-box {
  -webkit-transform: translate(0, min(25.5vw, 360px));
          transform: translate(0, min(25.5vw, 360px));
}
@media (max-width: 768px) {
  #comfort .image2 .frame-box {
    -webkit-transform: translate(0, min(253%, 318px));
            transform: translate(0, min(253%, 318px));
  }
}
#comfort .desc-box {
  margin: -11px 0 63px;
}
@media (max-width: 768px) {
  #comfort .desc-box {
    margin: 0;
  }
}
#comfort .desc-box h3 {
  margin: 0 auto;
  padding-top: 65px;
  padding-left: 0;
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #comfort .desc-box h3 {
    margin: 0 0 12px;
    padding-left: 35px;
    padding-top: 0;
    -ms-writing-mode: inherit;
    -webkit-writing-mode: inherit;
            writing-mode: inherit;
    white-space: inherit;
  }
}
#comfort .desc-box h3::before {
  height: 42px;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 6px;
}
@media (max-width: 768px) {
  #comfort .desc-box h3::before {
    height: 6px;
    left: 0;
    top: 50%;
    -webkit-transform: translate(0, -50%);
            transform: translate(0, -50%);
    width: 24px;
  }
}
#comfort .desc-box p {
  padding-left: 0;
}
#comfort .proposal {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 155px;
}
@media (max-width: 768px) {
  #comfort .proposal {
    display: block;
    margin-bottom: 60px;
  }
}
#comfort .proposal .image-box {
  margin-left: 0.8%;
  width: 72.3%;
}
@media (max-width: 768px) {
  #comfort .proposal .image-box {
    margin-bottom: 33px;
    margin-left: 0;
    width: 100%;
  }
}
#comfort .proposal .image-box .image1 {
  margin-left: auto;
  width: 74.8%;
}
@media (max-width: 768px) {
  #comfort .proposal .image-box .image1 {
    margin-bottom: -14px;
    width: 66.7%;
  }
}
#comfort .proposal .image-box .image2 {
  width: 53.2%;
}
@media (max-width: 768px) {
  #comfort .proposal .image-box .image2 {
    width: 47.5%;
  }
}
#comfort .proposal .desc-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-left: -0.3%;
  width: 27.2%;
}
@media (max-width: 768px) {
  #comfort .proposal .desc-box {
    margin-left: 0;
    width: 100%;
  }
}
#comfort .support {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 768px) {
  #comfort .support {
    display: block;
  }
}
#comfort .support .image-box {
  width: 68.5%;
}
@media (max-width: 768px) {
  #comfort .support .image-box {
    margin-bottom: 48px;
    width: 100%;
  }
}
#comfort .support .image-box .image1 {
  width: 79%;
}
@media (max-width: 768px) {
  #comfort .support .image-box .image1 {
    margin-bottom: -14px;
    width: 66.7%;
  }
}
#comfort .support .image-box .image2 {
  margin-left: auto;
  width: 52.5%;
}
@media (max-width: 768px) {
  #comfort .support .image-box .image2 {
    width: 47.5%;
  }
}
#comfort .support .desc-box {
  margin-right: 3.3%;
  width: 27.2%;
}
@media (max-width: 768px) {
  #comfort .support .desc-box {
    margin-right: 0;
    width: 100%;
  }
}
#comfort .support .desc-box h3 {
  margin-bottom: 65px;
}
@media (max-width: 768px) {
  #comfort .support .desc-box h3 {
    margin-bottom: 12px;
  }
}

/* comfort */
/* owners */
#owners {
  padding-bottom: 170px;
}
@media (max-width: 768px) {
  #owners {
    padding: 45px 0 80px;
  }
}
#owners h2 {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  #owners h2 {
    margin-bottom: 27px;
  }
  #owners h2 strong {
    width: 5.5em;
  }
}
#owners .title-jp {
  margin-bottom: 100px;
}
@media (max-width: 768px) {
  #owners .title-jp {
    margin-bottom: 20px;
  }
}
#owners .frame-wrap {
  padding-top: 40px;
}
@media (max-width: 768px) {
  #owners .frame-wrap {
    padding-top: 20px;
  }
}
#owners .frame-box {
  margin: 11px;
}
#owners .frame-box .image {
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#owners .frame-box .image .image1 {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
#owners .flex-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 75px;
}
@media (max-width: 768px) {
  #owners .flex-box {
    display: block;
    margin-top: 45px;
  }
}
#owners .flex-box .desc-box {
  max-width: 466px;
  width: 44.5%;
}
@media (max-width: 768px) {
  #owners .flex-box .desc-box {
    max-width: inherit;
    width: 100%;
  }
}
#owners .flex-box .desc-box:first-child {
  margin-right: 11%;
}
@media (max-width: 768px) {
  #owners .flex-box .desc-box:first-child {
    margin-bottom: 40px;
    margin-right: 0;
  }
}

/* owners */
/* ideal */
#ideal {
  margin-bottom: 0;
  padding-bottom: 228px;
}
@media (max-width: 768px) {
  #ideal {
    padding-bottom: 100px;
  }
}
#ideal .head-box {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  #ideal .head-box {
    display: block;
    margin-bottom: 30px;
  }
}
#ideal .head-box h2 {
  margin-right: 48px;
}
@media (max-width: 768px) {
  #ideal .head-box h2 {
    margin-bottom: 15px;
    margin-right: 0;
  }
}
#ideal .head-box .title-jp {
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  #ideal .head-box .title-jp {
    margin-bottom: 0;
  }
}
#ideal .image1, #ideal .image2 {
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  #ideal .image1, #ideal .image2 {
    margin-bottom: 7px;
  }
}
#ideal .image3 {
  margin-bottom: 140px;
}
@media (max-width: 768px) {
  #ideal .image3 {
    margin-bottom: 35px;
  }
}
#ideal .desc {
  font-family: "Shippori Mincho B1", serif;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 2.28;
  margin: 0 auto;
  text-align: justify;
  width: 77%;
}
@media (max-width: 768px) {
  #ideal .desc {
    font-size: 19px;
    letter-spacing: 0.05em;
    line-height: 2.05;
    width: 100%;
  }
}
#ideal::before {
  content: none;
}

/* ideal */
.section-fixed {
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 100lvh;
  position: absolute;
  left: 0;
  bottom: calc(min(42.5vw, 817px) * -1);
  width: 100%;
  z-index: -1;
}
@media (max-width: 768px) {
  .section-fixed {
    background-attachment: scroll;
    bottom: calc(min(61vw, 817px) * -1);
  }
}

.fixed-image1 {
  background-image: url("../images/fixed-image1.jpg");
}

.fixed-image2 {
  background-image: url("../images/fixed-image2.jpg");
}

.fixed-image3 {
  background-image: url("../images/fixed-image3.jpg");
}

/* 01-04 */
/* company */
#company {
  background: #007d93;
  color: #fff;
  padding: 135px 0 118px;
  position: relative;
}
@media (max-width: 768px) {
  #company {
    padding: 65px 0 70px;
  }
}
#company .inner {
  margin: 0 auto;
  max-width: 757px;
  width: 90%;
}
#company h2 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 88px;
  text-align: center;
}
@media (max-width: 768px) {
  #company h2 {
    font-size: 24px;
    margin-bottom: 27px;
  }
}
#company table {
  border-collapse: collapse;
  width: 100%;
}
#company table th, #company table td {
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2;
  padding: 9px 0;
}
@media (max-width: 768px) {
  #company table th, #company table td {
    display: block;
    font-size: 15px;
    line-height: 1.6;
    padding: 0;
  }
}
#company table th {
  padding-left: 40px;
  padding-right: 25px;
  vertical-align: baseline;
}
@media (max-width: 768px) {
  #company table th {
    border-bottom: none;
    padding: 10px 0 0 20px;
  }
}
@media (max-width: 768px) {
  #company table td {
    padding-bottom: 13px;
    padding-left: 37px;
  }
}
#company table tr:first-child th,
#company table tr:first-child td {
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}
@media (max-width: 768px) {
  #company table tr:first-child td {
    border-top: none;
  }
}
#company .cloud2 {
  height: calc(90vh + 51.3vw);
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  width: 100%;
}
@media (max-width: 768px) {
  #company .cloud2 {
    height: calc(35vh + 51.3vw);
  }
}
#company .cloud2::after {
  background: #fff;
  content: "";
  height: 90vh;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
}
@media (max-width: 768px) {
  #company .cloud2::after {
    height: 35vh;
  }
}
#company .cloud2::before {
  background: url("../images/company-cloud.png") no-repeat center top/cover;
  content: "";
  height: 51.3vw;
  position: absolute;
  left: 0;
  top: calc(90vh - 1px);
  width: 100%;
}
@media (max-width: 768px) {
  #company .cloud2::before {
    top: calc(35vh - 1px);
  }
}

/* company */
/********************************************************************************
footer
********************************************************************************/
footer {
  background: #007d93;
  padding-bottom: 7px;
}
footer .inner {
  margin: 0 auto;
  width: 90%;
}
footer .footer-logo {
  margin: 0 auto 127px;
  max-width: 342px;
}
@media (max-width: 768px) {
  footer .footer-logo {
    margin: 0 auto 62px;
    max-width: 218px;
  }
}
footer .copyright {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-align: center;
}

/********************************************************************************
property-list
********************************************************************************/
#property-list {
  background: #007d93;
  padding: 135px 0 118px;
}
@media (max-width: 768px) {
  #property-list {
    padding: 60px 0 90px;
  }
}
#property-list .inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
#property-list h2 {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  #property-list h2 {
    font-size: 21px;
    margin-bottom: 20px;
  }
}
#property-list .contact-box {
  margin: 0 auto 90px;
  max-width: 520px;
}
@media (max-width: 768px) {
  #property-list .contact-box {
    margin-bottom: 50px;
  }
}
#property-list .contact-box .btn {
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  #property-list .contact-box .btn {
    margin-bottom: 10px;
  }
}
#property-list .contact-box .btn a {
  background: #fff;
  border-radius: 55px;
  color: #007d93;
  display: block;
  font-size: 26px;
  letter-spacing: 0.1em;
  outline: 1px solid;
  outline-offset: -5px;
  padding: 30px 0;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
}
@media (max-width: 768px) {
  #property-list .contact-box .btn a {
    font-size: 19px;
    padding: 25px 0;
  }
}
#property-list .contact-box .btn a:hover {
  opacity: 0.8;
}
@media (max-width: 768px) {
  #property-list .contact-box .btn a:hover {
    opacity: 1;
  }
}
#property-list .contact-box .btn a img {
  margin-left: 20px;
  margin-top: -10px;
  vertical-align: middle;
  width: 61px;
}
@media (max-width: 768px) {
  #property-list .contact-box .btn a img {
    margin-left: 10px;
    margin-top: -6px;
    width: 41.5px;
  }
}
#property-list .contact-box .tel {
  text-align: center;
}
#property-list .contact-box .tel a {
  color: #fff;
  font-size: 26px;
  letter-spacing: 0.1em;
}
@media (max-width: 768px) {
  #property-list .contact-box .tel a {
    font-size: 19px;
  }
}
#property-list .contact-box .tel img {
  margin-right: 12px;
  vertical-align: middle;
  width: 20px;
}
@media (max-width: 768px) {
  #property-list .contact-box .tel img {
    margin-right: 10px;
    width: 14px;
  }
}
#property-list .category-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 90px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  #property-list .category-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 45px;
  }
}
#property-list .category-list li {
  background: #007d93;
  border-radius: 15px;
  position: relative;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: calc(22.5% - 2px);
}
@media (max-width: 768px) {
  #property-list .category-list li {
    border-radius: 4px;
    margin-bottom: 4%;
    width: calc(48% - 2px);
  }
}
#property-list .category-list li a {
  color: #fff;
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 23px;
  letter-spacing: 0.3em;
  padding: 17px 0;
  text-align: center;
  width: 100%;
}
@media (max-width: 768px) {
  #property-list .category-list li a {
    font-size: 15px;
    padding: 11px 0;
  }
}
#property-list .category-list li.active {
  background: #3397a8;
  pointer-events: none;
}
#property-list .category-list li:hover {
  background: #3397a8;
}
@media (max-width: 768px) {
  #property-list .category-list li:hover {
    background: #007d93;
  }
}
#property-list .category-list li::before {
  background: #fff;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  z-index: -1;
}
#property-list .property-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: calc(70px - 3.333%);
}
@media (max-width: 768px) {
  #property-list .property-list {
    margin-bottom: calc(50px - 4%);
  }
}
#property-list .property-list > li {
  background: #fff;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 3.333%;
  position: relative;
  width: 22.5%;
}
@media (max-width: 768px) {
  #property-list .property-list > li {
    border-radius: 5px;
    margin-bottom: 4%;
    width: 48%;
  }
}
#property-list .property-list > li:not(:nth-child(4n)) {
  margin-right: 3.333%;
}
@media (max-width: 768px) {
  #property-list .property-list > li:not(:nth-child(4n)) {
    margin-right: 0;
  }
}
@media (max-width: 768px) {
  #property-list .property-list > li:nth-child(odd) {
    margin-right: 4%;
  }
}
#property-list .property-list > li a {
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  height: 100%;
  padding: 10px 10px 34px;
  position: relative;
}
@media (max-width: 768px) {
  #property-list .property-list > li a {
    border-radius: 5px;
    padding: 7px 7px 34px;
  }
}
#property-list .property-list > li a:hover {
  opacity: 0.7;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #property-list .property-list > li a:hover {
    opacity: 1;
  }
}
#property-list .property-list > li.none {
  background: transparent;
  color: #fff;
  padding-bottom: 50px;
  text-align: center;
  width: 100%;
}
#property-list .property-list .new {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
}
#property-list .property-list .new span {
  color: #fff;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3em;
  position: absolute;
  left: 3px;
  top: 12px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
@media (max-width: 768px) {
  #property-list .property-list .new span {
    font-size: 11px;
    left: 0px;
    top: 8px;
  }
}
#property-list .property-list .new::before {
  border: 35px solid #f55536;
  border-right-color: transparent;
  border-bottom-color: transparent;
  border-radius: 15px 0 0 0;
}
@media (max-width: 768px) {
  #property-list .property-list .new::before {
    border: 23px solid #f55536;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-radius: 5px 0 0 0;
  }
}
#property-list .property-list .new::before {
  content: "";
  height: 0;
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
}
#property-list .property-list .image {
  margin-bottom: 8px;
}
#property-list .property-list .image img {
  height: 12vw;
  max-height: 165px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
@media (max-width: 768px) {
  #property-list .property-list .image img {
    min-height: 25vw;
    max-height: none;
  }
}
#property-list .property-list .category {
  color: #007d93;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  #property-list .property-list .category {
    font-size: 12px;
  }
}
#property-list .property-list .category .type {
  border: 1px solid #007d93;
  border-radius: 10px;
  color: #000;
  display: inline-block;
  font-size: 12px;
  line-height: 1;
  padding: 2px 7px;
}
@media (max-width: 768px) {
  #property-list .property-list .category .type {
    font-size: 10px;
    padding: 1px 5px;
  }
}
#property-list .property-list .title {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 23px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  #property-list .property-list .title {
    font-size: 14px;
  }
}
#property-list .property-list ul {
  margin-bottom: 10px;
}
#property-list .property-list ul li {
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1.55;
  padding-left: 28px;
  position: relative;
}
@media (max-width: 768px) {
  #property-list .property-list ul li {
    font-size: 11px;
    line-height: inherit;
    padding-left: 20px;
  }
}
#property-list .property-list ul li:not(:last-child) {
  margin-bottom: 12px;
}
@media (max-width: 768px) {
  #property-list .property-list ul li:not(:last-child) {
    margin-bottom: 7px;
  }
}
#property-list .property-list ul li::before {
  content: "";
  height: 18px;
  position: absolute;
  left: 3px;
  top: 1px;
  width: 12.5px;
}
@media (max-width: 768px) {
  #property-list .property-list ul li::before {
    height: 16px;
    left: 0;
    width: 11px;
  }
}
#property-list .property-list ul li.access::before {
  background: url("../images/property/icon-access.svg") no-repeat center top/contain;
}
#property-list .property-list ul li.address::before {
  background: url("../images/property/icon-address.svg") no-repeat center top/contain;
}
#property-list .property-list ul li.rent::before {
  background: url("../images/property/icon-rent.svg") no-repeat center top/contain;
}
#property-list .property-list ul li.other::before {
  background: url("../images/property/icon-other.svg") no-repeat center top/contain;
}
#property-list .property-list .more-text {
  color: #007d93;
  font-size: 13px;
  letter-spacing: 0.05em;
  padding-right: 30px;
  position: absolute;
  bottom: 15px;
  right: 10px;
}
@media (max-width: 768px) {
  #property-list .property-list .more-text {
    font-size: 11px;
    padding-right: 25px;
  }
}
#property-list .property-list .more-text img {
  margin-right: 3px;
  width: 14px;
}
@media (max-width: 768px) {
  #property-list .property-list .more-text img {
    margin-right: 4px;
    width: 12px;
  }
}
#property-list .property-list .more-text::before {
  background: url(../images/property/list-arrow.svg) no-repeat center/contain;
  content: "";
  height: 7px;
  position: absolute;
  right: 0;
  top: 7px;
  width: 25px;
}
@media (max-width: 768px) {
  #property-list .property-list .more-text::before {
    height: 6px;
    width: 20px;
  }
}
#property-list .pagenation {
  text-align: center;
}
#property-list .pagenation .page-numbers {
  border-bottom: 1px solid #fff;
  border-color: transparent;
  color: #fff;
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  margin: 0 5px;
  padding: 0 5px 3px;
}
#property-list .pagenation .page-numbers.current {
  border-color: #fff;
}
#property-list .pagenation a {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#property-list .pagenation a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  #property-list .pagenation a:hover {
    opacity: 1;
  }
}

/********************************************************************************
news
********************************************************************************/
#news-list {
  background: #007d93;
  padding: 60px 0 118px;
}
@media (max-width: 768px) {
  #news-list {
    padding: 60px 0 90px;
  }
}
#news-list .inner {
  margin: 0 auto;
  max-width: 900px;
  width: 90%;
}
#news-list h2 {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 39px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #news-list h2 {
    font-size: 21px;
  }
}
#news-list .news-list {
  margin-bottom: 70px;
}
@media (max-width: 768px) {
  #news-list .news-list {
    margin-bottom: 50px;
  }
}
#news-list .news-list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.44);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 9px 25px;
}
@media (max-width: 768px) {
  #news-list .news-list li {
    display: block;
    padding: 10px 15px;
  }
}
#news-list .news-list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.44);
}
#news-list .news-list .date {
  color: #fff;
  font-family: "Antonio", sans-serif;
  font-size: 17px;
  letter-spacing: 0.1em;
  margin-right: 25px;
}
@media (max-width: 768px) {
  #news-list .news-list .date {
    font-size: 15px;
    margin-right: 0;
  }
}
#news-list .news-list .title a {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 17px;
  letter-spacing: 0.05em;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #news-list .news-list .title a {
    font-size: 15px;
  }
}
#news-list .news-list .title a:hover {
  text-decoration-color: #fff;
}
@media (max-width: 768px) {
  #news-list .news-list .title a:hover {
    text-decoration-color: transparent;
  }
}
#news-list .pagenation {
  text-align: center;
}
#news-list .pagenation .page-numbers {
  border-bottom: 1px solid #fff;
  border-color: transparent;
  color: #fff;
  display: inline-block;
  font-family: "Shippori Mincho B1", serif;
  margin: 0 5px;
  padding: 0 5px 3px;
}
#news-list .pagenation .page-numbers.current {
  border-color: #fff;
}
#news-list .pagenation a {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#news-list .pagenation a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  #news-list .pagenation a:hover {
    opacity: 1;
  }
}

.article-wrapper {
  background: #007d93;
  padding: 60px 0 118px;
}
.article-wrapper .inner {
  background: #fff;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  max-width: 1000px;
  padding: 40px 50px;
  width: 90%;
}
@media (max-width: 768px) {
  .article-wrapper .inner {
    padding: 30px;
  }
}
.article-wrapper .date {
  color: #007d93;
  font-family: "Antonio", sans-serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.article-wrapper h2 {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 33px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .article-wrapper h2 {
    font-size: 24px;
    line-height: 1.35;
    margin-bottom: 20px;
  }
}
.article-wrapper .content p {
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 15px;
  text-align: justify;
}
@media (max-width: 768px) {
  .article-wrapper .content p {
    font-size: 15px;
    line-height: 1.75;
  }
}
.article-wrapper .content p.has-text-align-center {
  text-align: center !important;
}
.article-wrapper .content a {
  color: #007d93;
  text-decoration: underline;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.article-wrapper .content a:hover {
  opacity: 0.7;
}
@media (max-width: 768px) {
  .article-wrapper .content a:hover {
    opacity: 1;
  }
}
.article-wrapper .page-feed {
  margin-top: 60px;
  text-align: center;
}
@media (max-width: 768px) {
  .article-wrapper .page-feed {
    margin-top: 45px;
  }
}
.article-wrapper .page-feed a {
  color: #000;
  margin: 0 10px;
  padding: 0 4px;
  text-decoration: underline;
  text-decoration-color: transparent;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
.article-wrapper .page-feed a:hover {
  text-decoration-color: #000;
}
@media (max-width: 768px) {
  .article-wrapper .page-feed a:hover {
    text-decoration-color: transparent;
  }
}

/********************************************************************************
contact
********************************************************************************/
#contact {
  background: #007d93;
  padding: 135px 0 118px;
}
@media (max-width: 768px) {
  #contact {
    padding: 65px 0 70px;
  }
}
#contact .inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
#contact .head-wrapper {
  margin-bottom: 40px;
}
#contact .head-wrapper h2 {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  #contact .head-wrapper h2 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
#contact .head-wrapper p {
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
#contact .head-wrapper p span {
  color: #f55536;
}
#contact .head-wrapper .top-btn {
  margin: 40px auto 0;
  position: relative;
  width: 300px;
  z-index: 1;
}
@media (max-width: 768px) {
  #contact .head-wrapper .top-btn {
    margin-top: 30px;
    width: 230px;
  }
}
#contact .head-wrapper .top-btn a {
  background: #007d93;
  border-radius: 15px;
  color: #fff;
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 23px;
  letter-spacing: 0.03em;
  padding: 17px 0;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .head-wrapper .top-btn a {
    font-size: 15px;
    padding: 15px 0;
  }
}
#contact .head-wrapper .top-btn a::before {
  background: #fff;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
  z-index: -1;
}
#contact .head-wrapper .top-btn a:hover {
  background: #3397a8;
}
#contact .contact-wrapper .inner {
  background: #fff;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 50px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .inner {
    padding: 30px;
  }
}
#contact .contact-wrapper li:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper li:not(:last-child) {
    margin-bottom: 20px;
  }
}
#contact .contact-wrapper h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper h3 {
    font-size: 18px;
    margin-bottom: 3px;
  }
}
#contact .contact-wrapper h3 span {
  color: #f55536;
}
#contact .contact-wrapper input[type=text],
#contact .contact-wrapper input[type=email],
#contact .contact-wrapper textarea {
  background: #fff;
  border: 1px solid rgba(83, 83, 83, 0.4);
  border-radius: 5px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 19px;
  letter-spacing: 0.05em;
  padding: 12px;
  width: 100%;
}
@media (max-width: 768px) {
  #contact .contact-wrapper input[type=text],
  #contact .contact-wrapper input[type=email],
  #contact .contact-wrapper textarea {
    font-size: 16px;
    padding: 10px;
  }
}
#contact .contact-wrapper .screen-reader-response {
  display: none;
}
#contact .contact-wrapper .wpcf7-not-valid-tip {
  color: #f55536;
}
#contact .contact-wrapper .privacy-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 28px;
  position: relative;
  white-space: nowrap;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .privacy-check {
    font-size: 13px;
    margin-top: 20px;
  }
}
#contact .contact-wrapper .privacy-check .wpcf7-list-item-label {
  display: none;
}
#contact .contact-wrapper .privacy-check .wpcf7-list-item {
  margin-left: 0;
}
#contact .contact-wrapper .privacy-check input[type=checkbox] {
  border: 1px solid rgba(83, 83, 83, 0.8);
  border-radius: 2px;
  cursor: pointer;
  height: 23px;
  margin-right: 12px;
  width: 23px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .privacy-check input[type=checkbox] {
    height: 18px;
    margin-right: 8px;
    width: 18px;
  }
}
#contact .contact-wrapper .privacy-check a {
  text-decoration: underline;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#contact .contact-wrapper .privacy-check a:hover {
  color: #007d93;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .privacy-check a:hover {
    color: #000;
  }
}
#contact .contact-wrapper .privacy-check .wpcf7-not-valid-tip {
  position: absolute;
  left: 50%;
  top: 100%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
#contact .contact-wrapper .btn-box {
  margin-top: 65px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .btn-box {
    margin-top: 40px;
  }
}
#contact .contact-wrapper .btn-box input {
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-family: "Shippori Mincho B1", serif;
  font-size: 22px;
  letter-spacing: 0.05em;
  padding: 17px 0;
  width: 100%;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .btn-box input {
    font-size: 18px;
    padding: 15px 0;
  }
}
#contact .contact-wrapper .btn-box input:hover {
  opacity: 0.7;
}
#contact .contact-wrapper .back-btn {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  #contact .contact-wrapper .back-btn {
    margin-bottom: 10px;
  }
}
#contact .contact-wrapper .back-btn input {
  background: #fff;
  border: 1px solid #007d93;
  color: #007d93;
}
#contact .contact-wrapper .submit-btn input {
  background: #007d93;
  color: #fff;
}
#contact {
  /*contact-wrapper*/
  /*確認画面と完了画面を非表示*/
}
#contact .confirm-area,
#contact .thanks-area {
  display: none;
}
#contact .thanks-area {
  min-height: calc(100vh - 623px);
}
@media (max-width: 768px) {
  #contact .thanks-area {
    min-height: calc(100vh - 335px);
  }
}
#contact {
  /*デフォルトのサンクスメッセージを非表示*/
}
#contact .wpcf7-response-output {
  display: none;
}
#contact .screen-reader-response {
  display: none;
}

/********************************************************************************
privacy-policy
********************************************************************************/
#privacy-policy {
  background: #007d93;
  padding: 135px 0 118px;
}
@media (max-width: 768px) {
  #privacy-policy {
    padding: 65px 0 70px;
  }
}
#privacy-policy .inner {
  margin: 0 auto;
  max-width: 1000px;
  width: 90%;
}
#privacy-policy .policy-head {
  margin-bottom: 40px;
}
#privacy-policy .policy-head h2 {
  color: #fff;
  font-family: "Shippori Mincho B1", serif;
  font-size: 33px;
  font-weight: 400;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 768px) {
  #privacy-policy .policy-head h2 {
    font-size: 21px;
    margin-bottom: 10px;
  }
}
#privacy-policy .policy-head p {
  color: #fff;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: center;
}
@media (max-width: 768px) {
  #privacy-policy .policy-head p {
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
  }
}
#privacy-policy .policy-desc {
  background: #fff;
  border-radius: 15px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 40px 50px;
}
@media (max-width: 768px) {
  #privacy-policy .policy-desc {
    padding: 30px 30px 30px 15px;
  }
}
#privacy-policy .policy-desc li:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 768px) {
  #privacy-policy .policy-desc li:not(:last-child) {
    margin-bottom: 30px;
  }
}
#privacy-policy .policy-desc h3 {
  font-family: "Shippori Mincho B1", serif;
  font-size: 23px;
  font-weight: 400;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  padding-left: 35px;
  position: relative;
}
@media (max-width: 768px) {
  #privacy-policy .policy-desc h3 {
    font-size: 18px;
    margin-bottom: 7px;
  }
}
#privacy-policy .policy-desc h3::before {
  background: #007d93;
  content: "";
  height: 3px;
  left: 0;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 21px;
}
@media (max-width: 768px) {
  #privacy-policy .policy-desc h3::before {
    top: 12px;
    -webkit-transform: none;
            transform: none;
  }
}
#privacy-policy .policy-desc p {
  letter-spacing: 0.05em;
  padding-left: 35px;
  line-height: 1.6;
  text-align: justify;
}
#privacy-policy .policy-desc p a {
  text-decoration: underline;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}
#privacy-policy .policy-desc p a:hover {
  color: #007d93;
}
@media (max-width: 768px) {
  #privacy-policy .policy-desc p a:hover {
    color: #000;
  }
}

/********************************************************************************
error-404
********************************************************************************/
#error-404 {
  background: #007d93;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: calc(100vh - 370px);
  padding: 80px 0 118px;
}
@media (max-width: 768px) {
  #error-404 {
    min-height: calc(100vh - 200px);
  }
}
#error-404 .inner {
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
#error-404 h2 {
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 39px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-bottom: 30px;
  text-align: center;
}
@media (max-width: 768px) {
  #error-404 h2 {
    font-size: 21px;
  }
}
#error-404 p {
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.05em;
  line-height: 2;
  margin-bottom: 40px;
  text-align: center;
}
@media (max-width: 768px) {
  #error-404 p {
    font-size: 15px;
    line-height: 1.75;
  }
}
#error-404 .link-btn {
  margin: 0 auto;
  position: relative;
  width: 300px;
}
@media (max-width: 768px) {
  #error-404 .link-btn {
    width: 230px;
  }
}
#error-404 .link-btn::before {
  background: #fff;
  content: "";
  height: calc(100% + 2px);
  position: absolute;
  left: -1px;
  top: -1px;
  width: calc(100% + 2px);
}
#error-404 .link-btn a {
  background: #007d93;
  border-radius: 15px;
  color: #fff;
  display: block;
  font-family: "Shippori Mincho B1", serif;
  font-size: 23px;
  letter-spacing: 0.03em;
  padding: 17px 0;
  position: relative;
  text-align: center;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  width: 100%;
  z-index: 1;
}
@media (max-width: 768px) {
  #error-404 .link-btn a {
    font-size: 15px;
    padding: 15px 0;
  }
}
#error-404 .link-btn a:hover {
  background: #3397a8;
}
@media (max-width: 768px) {
  #error-404 .link-btn a:hover {
    background: #007d93;
  }
}