@charset "UTF-8";
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*add reset styles*/
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

/*Break Point
------------------------------*/
/*font
---------------------------------*/
/*color
---------------------------------*/
body {
  color: #40220f;
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  font-weight: normal;
  line-height: 1.5;
  overflow-x: hidden;
}

html {
  scroll-behavior: smooth;
}
@media print, screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 100px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  html {
    scroll-padding-top: 80px;
  }
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

.header {
  width: 100%;
  background: #fff;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1000;
}
@media print, screen and (min-width: 1024px) {
  .header {
    padding: 15px 40px;
    -webkit-box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header {
    padding: 10px 20px;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
  }
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 auto;
}
@media print, screen and (min-width: 1024px) {
  .header__inner {
    max-width: 1400px;
  }
}

.header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 1024px) {
  .header__left {
    gap: 20px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__left {
    gap: 10px;
  }
}

.header__logo a {
  display: block;
  line-height: 1;
}
.header__logo a img {
  height: auto;
}
@media print, screen and (min-width: 1024px) {
  .header__logo a img {
    width: 300px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__logo a img {
    width: 180px;
  }
}

.header__description {
  font-weight: bold;
  color: #000;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 1024px) {
  .header__description {
    font-size: 12px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__description {
    font-size: 10px;
    display: none;
  }
}

@media print, screen and (min-width: 1024px) {
  .header__hamburger {
    display: none;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__hamburger {
    display: block;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1002;
    cursor: pointer;
  }
  .header__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .header__hamburger span:nth-child(1) {
    top: 0;
  }
  .header__hamburger span:nth-child(2) {
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header__hamburger span:nth-child(3) {
    bottom: 0;
  }
  .header__hamburger.is-active span:nth-child(1) {
    top: 50%;
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
  }
  .header__hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active span:nth-child(3) {
    bottom: 50%;
    -webkit-transform: translateY(50%) rotate(-45deg);
            transform: translateY(50%) rotate(-45deg);
  }
}

@media print, screen and (min-width: 1024px) {
  .header__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 40px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__right {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: #fff;
    z-index: 1001;
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
    -webkit-transition: right 0.4s ease;
    transition: right 0.4s ease;
    padding: 20px;
  }
  .header__right.is-active {
    right: 0;
  }
}

.header__nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media print, screen and (min-width: 1024px) {
  .header__nav ul {
    gap: 30px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
  }
}
.header__nav ul li {
  position: relative;
}
@media print, screen and (min-width: 1024px) {
  .header__nav ul li:not(:last-child)::after {
    content: "|";
    position: absolute;
    right: -17px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    font-size: 10px;
    color: #ccc;
  }
}
.header__nav ul li a {
  font-family: "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif;
  color: #000;
  text-decoration: none;
  letter-spacing: 0.1em;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media print, screen and (min-width: 1024px) {
  .header__nav ul li a {
    font-size: 14px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__nav ul li a {
    font-size: 16px;
    font-weight: bold;
    display: block;
    padding: 10px;
  }
}
.header__nav ul li a:hover {
  opacity: 0.6;
}

.header__cta a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #d66b61;
  color: #fff;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, sans-serif;
  font-weight: bold;
  border-radius: 30px;
  text-decoration: none;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
  letter-spacing: 0.05em;
}
@media print, screen and (min-width: 1024px) {
  .header__cta a {
    font-size: 14px;
    padding: 10px 30px;
  }
}
@media print, screen and (max-width: 1023.9px) {
  .header__cta a {
    font-size: 14px;
    padding: 12px 40px;
    width: 100%;
    max-width: 260px;
  }
}
.header__cta a:hover {
  background-color: rgb(203.4924623116, 69.0703517588, 56.5075376884);
}

.mv {
  width: 90%;
  margin-bottom: 100px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .mv {
    margin-bottom: 50px;
    width: 100%;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .hide-at-sp {
    display: none !important;
  }
}

@media print, screen and (min-width: 1024px) {
  .hide-at-pc {
    display: none !important;
  }
}

.section-heading {
  color: #fff;
  font-size: 40px;
  padding-block: 50px;
  line-height: 1;
  text-align: center;
  background-color: #323232;
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading {
    font-size: 24px;
    padding-block: 30px;
  }
}
.section-heading span {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  position: relative;
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading span {
    font-size: 11px;
  }
}
.section-heading span::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background-color: #fff;
}
@media print, screen and (max-width: 1023.9px) {
  .section-heading span::after {
    bottom: -15px;
  }
}

.contents-wrap {
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .contents-wrap {
    padding-right: 20px;
    padding-left: 20px;
  }
}

.yutori {
  background-color: #e2d9cb;
  padding-top: 100px;
  padding-bottom: 180px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori {
    padding-top: 50px;
    padding-bottom: 90px;
  }
}

.yutori-logo {
  margin-right: auto;
  margin-left: auto;
  width: 300px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-logo {
    width: 200px;
  }
}

.yutori-heading {
  text-align: center;
  font-size: 35px;
  margin-top: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-heading {
    font-size: 20px;
  }
}

.yutori-desc {
  text-align: center;
  font-size: 16px;
  line-height: 2;
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-desc {
    font-size: 12px;
    margin-top: 20px;
    text-align: justify;
  }
}

.yutori-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 55% 80px 1fr;
  grid-template-columns: 55% 1fr;
  gap: 80px;
  margin-top: 80px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 30px;
  }
}

.yutori-text {
  margin-top: 30px;
  text-align: left;
  font-size: 16px;
  line-height: 2;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-text {
    font-size: 12px;
    margin-top: 10px;
    line-height: 1.85;
  }
}

.yutori-cap {
  text-align: right;
  margin-top: 30px;
  font-size: 12px;
}
@media print, screen and (max-width: 1023.9px) {
  .yutori-cap {
    margin-top: 10px;
    font-size: 10px;
  }
}

.choice {
  padding-block: 100px;
  background-image: url(../img/choice-bg.webp);
  background-size: cover;
}
@media print, screen and (max-width: 1023.9px) {
  .choice {
    padding-block: 50px;
  }
}

.choice__heading {
  width: 350px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .choice__heading {
    width: 250px;
  }
}

.choice__copy {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .choice__copy {
    font-size: 18px;
    margin-top: 15px;
  }
}

.choice__text {
  margin-top: 30px;
  text-align: center;
  font-size: 16px;
  line-height: 2;
}
@media print, screen and (max-width: 1023.9px) {
  .choice__text {
    font-size: 12px;
    line-height: 1.85;
    margin-top: 10px;
    text-align: justify;
  }
}

.choice__img {
  margin-top: 50px;
}
@media print, screen and (max-width: 1023.9px) {
  .choice__img {
    margin-top: 25px;
  }
}

.security {
  padding-block: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 80px 52%;
  grid-template-columns: 1fr 52%;
  gap: 80px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .security {
    padding-block: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.iot {
  padding-block: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 35% 40px 1fr 40px 27.5%;
  grid-template-columns: 35% 1fr 27.5%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .iot {
    padding-block: 50px;
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.plan {
  padding-block: 100px;
  background-color: #f3ecea;
}
@media print, screen and (max-width: 1023.9px) {
  .plan {
    padding-block: 50px;
  }
}

.eq-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .eq-row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.eq__name {
  font-size: 18px;
  margin-top: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .eq__name {
    font-size: 14px;
    margin-top: 10px;
  }
}
.eq__name small {
  font-size: 0.6em;
}

.eq__text {
  font-size: 14px;
  line-height: 2;
  margin-top: 15px;
}
@media print, screen and (max-width: 1023.9px) {
  .eq__text {
    margin-top: 5px;
    font-size: 12px;
  }
}

.eq__cap {
  text-align: right;
  font-size: 10px;
  margin-top: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .eq__cap {
    font-size: 8px;
    margin-top: 5px;
    text-align: left;
  }
}

.plan-row {
  margin-top: 80px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 60px;
}
@media print, screen and (max-width: 1023.9px) {
  .plan-row {
    margin-top: 40px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    row-gap: 30px;
  }
}

.plan-cap {
  margin-right: auto;
  margin-left: auto;
  max-width: 500px;
  margin-top: 60px;
}

.movie {
  margin-top: 200px;
}
.movie video {
  max-width: 100%;
}
@media print, screen and (max-width: 1023.9px) {
  .movie {
    margin-top: 50px;
  }
}

.movie__heading {
  margin-right: auto;
  margin-left: auto;
  width: 300px;
  margin-bottom: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .movie__heading {
    width: 200px;
    margin-bottom: 20px;
  }
}

.movie__img {
  margin-top: 30px;
  text-align: center;
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (max-width: 1023.9px) {
  .movie__img {
    margin-top: 15px;
  }
}

.outline {
  padding-block: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline {
    padding-block: 50px;
  }
}

.outline__row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__row {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.outline__cap {
  margin-top: 30px;
  font-size: 10px;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__cap {
    margin-top: 15px;
  }
}

.cta {
  margin-top: 100px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 1fr;
  grid-template-columns: 1fr 1fr;
}
@media print, screen and (max-width: 1023.9px) {
  .cta {
    margin-top: 50px;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
}

.cta__text-area {
  background-color: #fff6d5;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (max-width: 1023.9px) {
  .cta__text-area {
    padding: 60px 0;
  }
}

.cta__text {
  font-size: 20px;
}
@media print, screen and (max-width: 1023.9px) {
  .cta__text {
    font-size: 16px;
  }
}

.cta__btn {
  display: block;
  width: 80%;
  max-width: 300px;
  margin-right: auto;
  margin-left: auto;
}

.location {
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: bottom center;
  padding-block: 100px;
}
@media print, screen and (max-width: 1023.9px) {
  .location {
    padding-block: 50px;
  }
}

.location__sp {
  margin-top: 40px;
}

.location__map {
  margin-top: 40px;
}
@media print, screen and (max-width: 1023.9px) {
  .location__map {
    margin-top: 40px;
  }
}

@media print, screen and (max-width: 1023.9px) {
  .location__heading {
    width: 250px;
  }
}

.outline__list {
  margin-top: 40px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 20% 20px 1fr;
  grid-template-columns: 20% 1fr;
  gap: 20px;
}
.outline__list dt,
.outline__list dd {
  font-size: 14px;
  line-height: 1.8;
}
@media print, screen and (max-width: 1023.9px) {
  .outline__list dt,
  .outline__list dd {
    font-size: 12px;
  }
}

.-form {
  margin-top: 60px;
  max-width: 600px;
}

.exInfo {
  text-align: center;
  padding: 0 20px 100px;
  font-size: 16px;
}
@media print, screen and (max-width: 1023.9px) {
  .exInfo {
    font-size: 14px;
    padding: 20px 20px 60px;
  }
}

.life-info {
  padding-top: 70px;
}

.mapTab {
  max-width: 1240px;
  margin: 0 auto 30px;
}
@media print, screen and (max-width: 1023.9px) {
  .mapTab {
    margin-bottom: 15px;
    padding: 0 10px;
  }
}
.mapTab .tab-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media print, screen and (max-width: 1023.9px) {
  .mapTab .tab-list {
    margin-bottom: 15px;
  }
}
.mapTab .tab-list li {
  width: 24%;
  border: 1px solid #000;
  color: #000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 50px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
@media print, screen and (max-width: 1023.9px) {
  .mapTab .tab-list li {
    width: 49%;
    height: 45px;
    margin-bottom: 8px;
    font-size: 3vw;
  }
}
.mapTab .tab-list li {
  cursor: pointer;
}
.mapTab .tab-list li.on, .mapTab .tab-list li:hover {
  background: #000;
  color: #FFF;
}