@charset "UTF-8";
@media only screen and (min-width:961px) {
  /* 961px以上 */
}
@media only screen and (max-width:1200px) and (min-width:961px) {
  /* 1200px以下 961px以上 */
}
@media only screen and (max-width:1037px) {
  /* 1037px以下 */
}
@media only screen and (max-width:960px) {
  /* 960px以下 */
}
@media only screen and (max-width:786px) {
  /* 786px以下 */
}
/* root
----------------------------------------------- */
:root {
  --main: #000;
  --white: #fff;
  --key: #E93A28;
  --yellow: #FDD22B;
  --gray1: #191919;
  --gray2: #313131;
  --gray3: #4A4A4A;
  --gray4: #626262;
  --gray5: #7A7A7A;
  --gray6: #939393;
  --gray7: #ABABAB;
  --gray8: #C4C4C4;
  --gray9: #DCDCDC;
  --gray10: #E9E9E9;
}

/* html
----------------------------------------------- */
html {
  scroll-behavior: smooth;
}

/* body
----------------------------------------------- */
body {
  min-width: initial;
  margin: 0;
  padding: 0;
  color: var(--main);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.98;
  letter-spacing: 0.06em;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

ul li {
  list-style: none;
}

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

/* sp */
@media only screen and (max-width:960px) {
  body {
    min-width: initial;
  }
}
/* paragraph
-------------------------------------------- */
p:not([class]) {
  word-break: auto-phrase;
}
p:not([class]) + p:not([class]) {
  margin-top: 1.5em;
}
p:not([class]) a:not([class]) {
  text-decoration: underline;
}

p span.-key {
  color: var(--key);
}
p.-l {
  font-size: 18px;
  line-height: 1.9;
  word-break: auto-phrase;
}
p.-s {
  font-size: 14px;
  line-height: 2;
  word-break: auto-phrase;
}
p.-xs {
  font-size: 12px;
  letter-spacing: 0.04em;
  line-height: 2;
  word-break: auto-phrase;
}
p.-xxs {
  font-size: 11px;
  line-height: 1.8;
  word-break: auto-phrase;
}
p.-center {
  text-align: center;
}

@media only screen and (max-width:960px) {
  p:not([class]) {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
  p.is-sp {
    font-size: 14px;
    letter-spacing: 0.05em;
    line-height: 1.7;
  }
  p.is-sp.-l {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }
  p.is-sp.-s {
    font-size: 13px;
    line-height: 1.65;
  }
  p.is-sp.-xs {
    line-height: 1.6;
  }
  p.is-sp.-xxs {
    letter-spacing: 0.06em;
    line-height: 1.55;
  }
  p.-l {
    font-size: 15px;
    letter-spacing: 0.04em;
    line-height: 1.7;
  }
  p.-s {
    font-size: 13px;
    line-height: 1.65;
  }
  p.-xs {
    line-height: 1.6;
  }
  p.-xxs {
    letter-spacing: 0.06em;
    line-height: 1.55;
  }
}
/* link
-------------------------------------------- */
a:not([class])[target=_blank] {
  text-decoration: underline;
}
a:not([class])[target=_blank]::after {
  width: 15px;
  height: 15px;
  margin-left: 2px;
  margin-right: 0.5em;
  background-image: url(../img/icon_window.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 15px auto;
  display: inline-block;
  transform: translateY(2px);
  content: "";
}

/* font-family
-------------------------------------------- */
.en {
  font-family: var(--en);
}

.serif {
  font-family: var(--serif);
}

/* pc/sp
-------------------------------------------- */
.is-xsmallpc {
  display: none;
}

.is-sp {
  display: none;
}

@media only screen and (max-width:1037px) {
  .is-xsmallpc {
    display: block;
  }
}
@media only screen and (max-width:960px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
.l-wrapper__outer {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  padding: 120px 100px 0px;
}
@media only screen and (max-width:960px) {
  .l-wrapper{
    margin-top:120px;
  }
  .l-wrapper__outer {
    padding: 0px;
  }
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 100;
  background: #fff;
}
.l-header__outer {
  max-width: 1512px;
  margin: 0 auto;
  padding: 0 60px;
  height: 120px;
}
.l-header__inner {
  position: relative;
  padding-top: 60px;
  padding-bottom: 30px;
  display: flex;
  justify-content: space-between;
}
.l-header__head {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.l-header__home__inner {
  position: relative;
  width: 30px;
  height: 30px;
  display: block;
}
.l-header__home__inner::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  background-image: url(../img/home.svg);
  background-size: cover;
}
.l-header__explanation p {
  margin-top: 0;
  margin-bottom: 0;
}

@media only screen and (max-width:960px) {
  .l-header__inner {
    padding: 60px 40px 30px;
  }
  .l-header__outer {
    padding: 0px;
  }
  .l-header__explanation p {
    font-size: 13px;
    line-height: 220%;
  }
}
.l-footer {
  max-width: 1392px;
  margin: 0 auto;
}
.l-footer__outer {
  justify-content: center;
  display: flex;
  width: 100%;
  padding-top: 150px;
  padding-bottom: 100px;
}
.l-footer__inner {
  position: relative;
  width: 125px;
  height: 50px;
  display: flex;
  justify-content: center;
}
.l-footer__inner p::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  background-image: url(https://assets.ninehours.co.jp/img/logo.svg);
  background-size: contain;
}

@media only screen and (max-width:960px) {
  .l-footer__outer {
    padding-top: 150px;
  }
}
.c-button {
  padding: 20px 20px;
  font-size: 22px;
  line-height: 190%;
  text-align: center;
  border-radius: 20px;
  display: inline-block;
  vertical-align: middle;
  transition: color 0.4s, background-color 0.4s, border 0.4s;
}
.c-button.-xl {
  width: 100%;
}
.c-button.-white {
  color: var(--main);
  background-color: var(--white);
  border: solid 1px #D5D5D5;
}
.c-button p.-s::after {
  width: 15px;
  height: 10px;
  margin-left: 20px;
  background-image: url(../img/icon_arrow_r.svg);
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
  background-size: contain;
  content: "";
}

@media only screen and (max-width:960px) {
  .c-button {
    padding: 20px 20px 23px;
  }
}
.c-list > li {
  position: relative;
  padding-left: 1em;
  line-height: 220%;
  font-size: 13px;
  letter-spacing: 0.05em;
}
.c-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "・";
}

.guidance .l-footer__outer {
  padding-top: 100px;
}

.p-guidance__contents {
  padding-top: 20px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--main);
}
.p-guidance__contents__body {
  padding-top: 15px;
}
.p-guidance__contents__body .u-lead__l {
  margin-bottom: 18px;
}
.p-guidance__contents__body .c-list {
  letter-spacing: 0.05em;
  padding-left: 5px;
}
.p-guidance-rule__item_col__item {
  display: flex;
  align-items: flex-start;
}
.p-guidance-rule__item_col__item ul {
  margin-left: 20px;
}
.p-guidance-rule__item_col__item.wifi {
  display: flex;
  align-items: center;
}
.p-guidance-rule__item_col__item.wifi ul {
  margin-left: 40px;
  letter-spacing: 0.08em;
  line-height: 170%;
  margin-bottom: 7px;
}
.p-guidance-rule__item_col__item.wifi .p-guidance-rule__item_col__item__col {
  display: block;
}
.p-guidance-rule__item_col__item.wifi .p-guidance-rule__item_col__item__col li {
  font-size: 18px;
}
.p-guidance-rule__item_col__item.wifi .p-guidance-rule__item_col__item__col li.-s {
  font-size: 13px;
  line-height: 220%;
  letter-spacing: 0.05em;
}
.p-guidance-rule__item_col__item.common {
  padding-left: 0px;
  line-height: 220%;
}
.p-guidance-rule__item_col__item.common img {
  padding-top: 10px;
}
.p-guidance-rule__item_col__item.common ul {
  margin-left: 27px;
}
.p-guidance-rule__item_col .u-lead__l {
  padding-left: 0px;
  line-height: 120%;
}
.p-guidance-please__item_col {
  display: flex;
  align-items: center;
  margin-top: 30px;
}
.p-guidance-please__item_col img {
  width: 50px;
  height: 50px;
}
.p-guidance-please__item_col p {
  font-size: 12px;
  line-height: 190%;
  padding-left: 15px;
}
.p-guidance__contents:last-of-type {
  border-bottom: none;
  padding-bottom: 0px;
}
.p-guidance__item__btn {
  margin-top: 45px;
}
.p-guidance__item__btn p.-l {
  font-size: 22px;
  letter-spacing: 0.08em;
  line-height: 1.6;
}

@media only screen and (max-width:960px) {
  .p-guidance__contents {
    margin-right: 40px;
    margin-left: 40px;
    box-sizing: border-box;
  }
  .p-guidance-rule__item_col .u-lead__l {
    padding-left: 0px;
  }
  .p-guidance-rule__item_col__item.common {
    padding-left: 0px;
  }
  .p-guidance-please__item {
    padding-bottom: 12px;
  }
  .p-guidance__item__btn p.-l {
    line-height: 190%;
  }
}
.top .l-wrapper__outer {
  padding-top: 159px;
  max-width: 370px;
  text-align: center;
  margin: 0 auto;
  padding-left: 0px;
  padding-right: 0px;
}
.top .l-wrapper__inner h1.u-lead__l {
  font-size: 26px;
  line-height: 190%;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.top .l-wrapper__inner img {
  margin: 0 auto;
}
.top .l-wrapper__inner .p-top__item__btn {
  padding-top: 100px;
}
.top .l-wrapper__inner .c-button.-white {
  border: solid 1px var(--main);
  padding: 17px 32px;
  font-size: 13px;
  width: 218px;
  line-height: 1;
  border-radius: 8px;
  margin-bottom: 30px;
}

@media only screen and (max-width:960px) {
  .top .l-wrapper__outer {
    padding-top: 133px;
  }
  .top .l-wrapper__inner h1.u-lead__l {
    margin-bottom: 16px;
  }
  .top .l-wrapper .c-button.-white {
    padding: 17px 32px;
    margin-bottom: 30px;
  }
}
.u-column {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.u-column.-col3 .u-column__col {
  width: 33.3333%;
}
.u-column.-col2 .u-column__col {
  width: 50%;
}

@media only screen and (max-width:960px) {
  .u-column.-col2 .u-column__col {
    width: 100%;
  }
  .u-column.-col2 .u-column__col:nth-child(2) {
    padding-top: 30px;
  }
  .u-column.-col3 .u-column__col {
    width: 100%;
  }
}
.u-heading {
  font-weight: 700;
  letter-spacing: 0.08em;
}
.u-heading__l1 {
  font-size: 40px;
  line-height: 1.6;
}
.u-heading__l2 {
  font-size: 34px;
  line-height: 1.6;
}
.u-heading__l3 {
  font-size: 30px;
  line-height: 1.6;
}
.u-heading__l4 {
  font-size: 26px;
  line-height: 1.4;
}
.u-heading__l5 {
  font-size: 22px;
  line-height: 1.7;
}
.u-heading.-center {
  text-align: center;
}
.u-heading__page {
  padding-bottom: 30px;
  font-size: 34px;
  line-height: 1.6;
  border-bottom: solid 2px var(--main);
}

@media only screen and (max-width:960px) {
  .u-heading {
    letter-spacing: 0.07em;
  }
  .u-heading__l1 {
    font-size: 28px;
    letter-spacing: 0.075em;
    line-height: 1.5;
  }
  .u-heading__l2 {
    font-size: 26px;
    line-height: 1.4;
  }
  .u-heading__l3 {
    font-size: 24px;
    line-height: 1.5;
  }
  .u-heading__l4 {
    font-size: 22px;
    letter-spacing: 0.065em;
    line-height: 1.55;
  }
  .u-heading__l5 {
    font-size: 20px;
    line-height: 1.55;
  }
  .u-heading__page {
    padding-bottom: 24px;
    font-size: 22px;
    line-height: 1.55;
  }
}
.u-lead__l {
  font-size: 22px;
  line-height: 190%;
  margin-bottom: 30px;
  letter-spacing: 0.08em;
}

/*# sourceMappingURL=style.css.map */
