@charset "UTF-8";
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, strong, sub, sup, var, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary, time, mark, audio, video, a, b {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 100%;
  list-style-type: none;
  vertical-align: baseline;
  text-decoration: none;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 14px;
  line-height: 140%;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: #333;
}
@media screen and (min-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

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

input[type=submit], input[type=button],
button[type=submit],
button[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type=submit]::-webkit-search-decoration, input[type=button]::-webkit-search-decoration,
button[type=submit]::-webkit-search-decoration,
button[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]::focus, input[type=button]::focus,
button[type=submit]::focus,
button[type=button]::focus {
  outline-offset: -2px;
}

@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
.no-padding {
  padding: 0 !important;
}

.bg-yellow {
  background-color: #fff8eb;
}

header {
  z-index: 10;
  position: fixed;
  width: 100%;
  top: 0;
  display: flex;
  align-items: center;
}
header #navDrawer {
  position: fixed;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin: 20px auto;
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
}
header #navDrawer .navToggle {
  display: block;
  position: fixed;
  top: 0;
  right: 22px;
  z-index: 20;
}
header #navDrawer .navToggle button {
  width: 39.578px;
  height: 42px;
  background-image: url(../images/menu.svg);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  border: none;
  background-color: transparent;
  cursor: pointer;
}
header #navDrawer .navToggle button.active {
  background-image: url(../images/close.svg);
  background-size: 25px auto;
}
@media screen and (min-width: 861px) {
  header #navDrawer .navToggle {
    display: none;
  }
}
header #navDrawer .headerLogo {
  width: 100%;
  max-width: 200px;
  height: 33px;
  position: relative;
  z-index: 20;
}
@media screen and (max-width: 860px) {
  header #navDrawer .headerLogo {
    height: 26px;
    display: flex;
    align-items: center;
  }
}
header #navDrawer .headerLogo_link {
  display: block;
  max-height: 100%;
  position: relative;
}
header #navDrawer .headerLogo_link img {
  max-width: 100%;
  max-height: 100%;
}
@media screen and (max-width: 860px) {
  header #navDrawer .headerLogo_link img {
    height: 26px;
  }
}
header #navDrawer #navContent {
  z-index: 19;
}
@media screen and (max-width: 860px) {
  header #navDrawer #navContent {
    position: fixed;
    top: -20px;
    left: 0;
    width: 100%;
    background-color: #fff;
    transform: translateY(-100vh);
    transition: transform 0.3s ease-in-out;
  }
  header #navDrawer #navContent.active {
    transform: translateY(0);
  }
}
header #navDrawer .gnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  header #navDrawer .gnav {
    order: 1;
    margin: 0;
    flex-wrap: wrap;
    padding: 0;
    align-items: inherit;
  }
}
header #navDrawer .gnavList {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media screen and (max-width: 860px) {
  header #navDrawer .gnavList {
    justify-content: space-between;
    flex-wrap: wrap;
    height: auto;
    padding: 67px 20px 20px;
  }
}
header #navDrawer .gnavList_item {
  box-sizing: border-box;
  border-bottom: none;
}
header #navDrawer .gnavList_item + * {
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  header #navDrawer .gnavList_item {
    margin-left: 0;
    width: 100%;
  }
  header #navDrawer .gnavList_item + * {
    margin-left: auto;
    margin-top: 20px;
  }
}
header #navDrawer .gnavList_item.sns_item {
  display: flex;
}
header #navDrawer .gnavList_item.sns_item a {
  display: block;
  border-bottom: none;
}
header #navDrawer .gnavList_item.sns_item a img {
  display: block;
  width: 22px;
}
header #navDrawer .gnavList_item.sns_item a + * {
  margin-left: 30px;
}
header #navDrawer .gnavList_link {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  letter-spacing: 1px;
  font-size: 16px;
  position: relative;
  white-space: nowrap;
}
header #navDrawer .gnavList_link span {
  display: none;
  color: #F27507;
}
@media screen and (max-width: 860px) {
  header #navDrawer .gnavList_link span {
    display: block;
    margin-left: 12px;
    font-size: 10px;
    font-weight: 300;
    letter-spacing: 1px;
  }
}
@media screen and (max-width: 860px) {
  header #navDrawer .gnavList_link {
    justify-content: flex-start;
    padding: 0 0 5px;
    font-size: 14px;
    right: 0;
    z-index: 10;
    letter-spacing: 2px;
    border-bottom: 1px solid #000;
  }
}

.link {
  display: flex;
}
.link_button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  box-sizing: border-box;
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  color: #fff;
  background-color: #0080CB;
  border-radius: 5px;
  position: relative;
}

@media screen and (min-width: 768px) {
  main.page {
    margin-top: 200px;
  }
}
@media screen and (max-width: 767px) {
  main.page {
    margin-top: 50px;
  }
}

.contentContainer {
  margin: auto;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease, transform 1s ease;
}
.contentContainer_title {
  display: flex;
  justify-content: center;
}
.contentContainer_title span {
  color: #FFF;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.25vw;
  padding: 0.781vw 1.563vw;
  background: #AAA;
  margin-bottom: 5.73vw;
}
@media screen and (max-width: 1440px) {
  .contentContainer_title span {
    font-size: 12px;
    letter-spacing: 3.55px;
    padding: 11px 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 860px) {
  .contentContainer_title span {
    font-size: 15px;
    letter-spacing: 4.5px;
    padding: 12px 20px;
  }
}

.is-visible {
  opacity: 1 !important;
  transform: translateY(0) !important;
}

.contentSection.fvSection {
  display: block;
  margin: 0 auto;
  position: relative;
  background-image: url(../images/bg01.png);
  background-repeat: repeat-x;
  background-position: center top;
  background-size: 100% auto;
  padding-top: 0.1px;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection {
    background-size: 1440px auto;
  }
}
.contentSection.fvSection h2 {
  max-width: 52%;
  width: 100%;
  position: absolute;
  min-height: 700px;
  left: 50%;
  transform: translateX(-50%);
  top: 8.5vw;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.3vw;
  line-height: 180%;
  font-weight: 700;
  letter-spacing: 0.1em;
  justify-content: flex-start !important;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection h2 {
    font-size: 18px;
    max-width: 742px;
    top: 123px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection h2 {
    position: static;
    transform: none;
    align-items: center;
    margin-top: -30px;
    letter-spacing: 0.2em;
    min-height: 0;
    margin-bottom: 70px;
  }
}
.contentSection.fvSection .boxWrapper {
  padding-bottom: 68.4%;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .boxWrapper {
    padding-bottom: 981px;
  }
  .contentSection.fvSection .boxWrapper .svgBackgroundFade,
  .contentSection.fvSection .boxWrapper svg {
    min-width: 1440px;
    left: 50% !important;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .boxWrapper {
    display: none;
  }
  .contentSection.fvSection .boxWrapper .svgBackgroundFade,
  .contentSection.fvSection .boxWrapper svg {
    min-width: 100%;
  }
}
.contentSection.fvSection .boxWrapper svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.contentSection.fvSection .fvContainer,
.contentSection.fvSection .boxWrapper {
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .fvContainer,
  .contentSection.fvSection .boxWrapper {
    margin-top: 83px;
  }
}
.contentSection.fvSection .fvContainer_inner,
.contentSection.fvSection .boxWrapper_inner {
  width: 100%;
  padding-bottom: 68%;
  background-image: url(../images/bg01_inner.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
  opacity: 0;
  transition: opacity 1s ease;
  display: none;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .fvContainer_inner,
  .contentSection.fvSection .boxWrapper_inner {
    padding-bottom: 981px;
    background-size: 1440px auto;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .fvContainer_inner,
  .contentSection.fvSection .boxWrapper_inner {
    display: block;
    background-size: 100% auto;
    background-image: url(../images/bg01_inner_sp.png);
    padding-bottom: 106%;
  }
}
.contentSection.fvSection .fvContainer_inner.is-visible,
.contentSection.fvSection .boxWrapper_inner.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.contentSection.fvSection .no02Container {
  background-image: url(../images/bg02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  height: 65.9vw;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no02Container {
    background-size: 1440px auto;
    height: 943px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container {
    background: none;
    height: auto;
  }
}
.contentSection.fvSection .no02Container .message {
  width: 40vw;
  margin: auto auto 6vw;
  display: flex;
  flex-wrap: wrap;
  min-width: 545px;
  transform: translateY(-17.86vw);
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no02Container .message {
    width: 556px;
    margin: auto auto 83px;
    transform: translateY(-260px);
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message {
    width: 100%;
    min-width: 0;
    transform: translateY(0px);
    margin: auto auto 40px;
    background-image: url(../images/bg02_sp.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: 100% auto;
    flex-direction: column;
    align-items: center;
    padding-bottom: 187px;
  }
}
.contentSection.fvSection .no02Container .message_title {
  display: block;
  margin: 0 auto 5.208vw;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message_title {
    max-width: 300px;
  }
}
.contentSection.fvSection .no02Container .message .contentsWrapper {
  padding-left: 9.16vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper {
    padding-left: 130px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper {
    padding-left: 0;
    max-width: 300px;
  }
}
.contentSection.fvSection .no02Container .message .contentsWrapper .image_message01 {
  position: absolute;
  top: 14px;
  left: -54px;
  width: 121.348px;
  height: 182px;
  background-image: url(../images/image_message01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper .image_message01 {
    display: none;
  }
}
.contentSection.fvSection .no02Container .message .contentsWrapper .image_message02 {
  position: absolute;
  top: calc(100% + 24px);
  left: 0;
  width: 110px;
  height: 110px;
  background-image: url(../images/image_message02.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper .image_message02 {
    display: none;
  }
}
.contentSection.fvSection .no02Container .message .contentsWrapper .image_message03 {
  position: absolute;
  bottom: 19px;
  right: -128px;
  width: 225px;
  height: 150px;
  background-image: url(../images/image_message03.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper .image_message03 {
    display: none;
  }
}
.contentSection.fvSection .no02Container .message .contentsWrapper .image_message04 {
  display: none;
  width: 300px;
  height: 317px;
  background-image: url(../images/image_message04.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
  margin-top: 50px;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper .image_message04 {
    display: block;
  }
}
.contentSection.fvSection .no02Container .message p {
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 400;
  line-height: 312.5%;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no02Container .message p {
    font-size: 14px;
    letter-spacing: 1.183px;
    line-height: 260%;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .experience {
    background-image: url(../images/bg03_sp.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    max-width: 100%;
    padding-bottom: 258px;
    margin-bottom: 166px;
  }
}
.contentSection.fvSection .experience {
  width: 54.38vw;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience {
    width: 772px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience {
    max-width: 360px;
  }
}
.contentSection.fvSection .experience_title01 {
  color: #FFF;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.25vw;
  padding: 0.781vw 1.563vw;
  background: #AAA;
  margin-bottom: 5.73vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience_title01 {
    font-size: 12px;
    letter-spacing: 3.55px;
    padding: 11px 20px;
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience_title01 {
    font-size: 15px;
    letter-spacing: 4.5px;
    padding: 12px 20px;
    margin-bottom: 75px;
    max-width: 360px;
  }
}
.contentSection.fvSection .experience_title02 {
  text-align: center;
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 2.86vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience_title02 {
    height: 21px;
    margin-bottom: 40px;
  }
}
.contentSection.fvSection .experience .row {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience .row {
    max-width: 360px;
    flex-wrap: wrap;
  }
}
.contentSection.fvSection .experience .row .column {
  width: 50%;
}
.contentSection.fvSection .experience .row .column.img_sp {
  display: none;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience .row .column {
    width: 100%;
  }
  .contentSection.fvSection .experience .row .column.img_pc {
    display: none;
  }
  .contentSection.fvSection .experience .row .column.img_sp {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 47px;
  }
}
.contentSection.fvSection .experience .row .column + .column.text {
  padding-left: 2.7vw;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience .row .column + .column.text {
    padding-left: 0;
  }
}
.contentSection.fvSection .experience .row .column .title {
  color: #000;
  font-size: 2.8vw;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.563vw;
  margin-bottom: 0.833vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience .row .column .title {
    font-size: 39px;
    margin-bottom: 11px;
    letter-spacing: 7.988px;
  }
}
.contentSection.fvSection .experience .row .column p {
  color: #000;
  font-size: 0.833vw;
  font-style: normal;
  font-weight: 700;
  line-height: 225%;
  letter-spacing: 0.083vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience .row .column p {
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}
.contentSection.fvSection .experience .row .imageW01 {
  max-width: none;
  width: 32.917vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .experience .row .imageW01 {
    width: 467px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .experience .row .imageW01 {
    width: 100%;
  }
}
.contentSection.fvSection .no03Container {
  background-image: url(../images/bg03.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  height: 48.5vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no03Container {
    background-size: 1440px auto;
    height: 698px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no03Container {
    background: none;
    height: auto;
  }
}
.contentSection.fvSection .no04Container {
  background-image: url(../images/bg04.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  height: 108.9vw;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no04Container {
    background-size: 1440px auto;
    height: 1570px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container {
    background: none;
    height: auto;
  }
}
@media screen and (min-width: 861px) {
  .contentSection.fvSection .no04Container .experience {
    transform: translateY(-3.438vw) !important;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container .experience {
    background-image: url(../images/bg04_sp01.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    max-width: 100%;
    padding-bottom: 354px;
    margin-bottom: 122px;
  }
}
.contentSection.fvSection .no04Container .experience + .experience {
  margin-top: 10vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no04Container .experience + .experience {
    margin-top: 137px;
  }
}
.contentSection.fvSection .no04Container .experience + .experience::after {
  content: "世界でひとつだけの家づくり。\aさあ、はじめましょう。";
  white-space: pre;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: 1.3vw;
  line-height: 180%;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no04Container .experience + .experience::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container .experience + .experience::after {
    content: none;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container .experience + .experience {
    background-image: url(../images/bg04_sp02.png);
    background-repeat: no-repeat;
    background-position: center bottom;
    background-size: contain;
    max-width: 100%;
    padding-bottom: 234px;
    margin-bottom: 175px;
  }
}
.contentSection.fvSection .no05Container {
  background-image: url(../images/bg05.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  height: 56vw;
  position: relative;
  z-index: 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no05Container {
    background-size: 1440px auto;
    height: 807px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no05Container {
    background-image: url(../images/bg05_sp.png);
    background-size: 100% auto;
    background-position: center bottom;
    display: flex;
    justify-content: center;
    height: auto;
    padding-top: 30px;
    padding-bottom: 518px;
    margin-bottom: 100px;
  }
  .contentSection.fvSection .no05Container::before {
    content: "世界でひとつだけの家づくり。\aさあ、はじめましょう。";
    white-space: pre;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 18px;
    line-height: 180%;
    font-weight: 700;
    letter-spacing: 0.1em;
  }
}
.contentSection .slideContainer {
  margin-bottom: 230px;
}
@media screen and (max-width: 860px) {
  .contentSection .slideContainer {
    margin-bottom: 100px;
  }
}
.contentSection .slideContainer .slick-wrapper {
  width: 100%;
  overflow: hidden;
}
.contentSection .slideContainer .slick-slide-item {
  width: 1000px !important;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 860px) {
  .contentSection .slideContainer .slick-slide-item {
    width: 194px !important;
    height: 116px;
  }
  .contentSection .slideContainer .slick-slide-item img {
    object-fit: cover;
  }
}
.contentSection .slideContainer .slick-slide-item img {
  width: 100%;
  height: auto;
  display: block;
}
.contentSection .newsContainer {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer {
    max-width: 300px;
  }
}
.contentSection .newsContainer h2 span {
  margin-bottom: 64px;
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer h2 span {
    margin-bottom: 38px;
  }
}
.contentSection .newsContainer .news {
  margin-bottom: 250px;
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer .news {
    margin-bottom: 84px;
  }
}
.contentSection .newsContainer .newsList_item {
  border-radius: 10px;
  border: 0.5px solid #000;
  background: #FFF;
  box-shadow: 4px 4px 3px 0.5px rgba(0, 0, 0, 0.15);
}
.contentSection .newsContainer .newsList_item + * {
  margin-top: 20px;
}
.contentSection .newsContainer .newsList_link {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.contentSection .newsContainer .newsList_link .thumb {
  width: 250px;
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer .newsList_link .thumb {
    width: 100%;
    margin-bottom: 10px;
  }
}
.contentSection .newsContainer .newsList_link .contents {
  width: calc(100% - 270px);
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer .newsList_link .contents {
    width: 100%;
  }
}
.contentSection .newsContainer .newsList_link span {
  display: block;
}
.contentSection .newsContainer .newsList_link .date {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 36px;
  letter-spacing: 1.3px;
}
.contentSection .newsContainer .newsList_link .title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.6px;
}
.contentSection .newsContainer .newsList_link .text {
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 150%;
  letter-spacing: 1.3px;
}
.contentSection .reservationContainerBack {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #95958B 50%, #95958B 100%);
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainerBack {
    background: linear-gradient(180deg, #fff 0%, #fff 90%, #95958B 90%, #95958B 100%);
  }
}
.contentSection .reservationContainer {
  background-image: url(../images/bg_last.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding-bottom: 440px;
  position: relative;
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainer {
    padding-bottom: 170px;
  }
}
.contentSection .reservationContainer h2 span {
  margin-bottom: 50px;
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainer h2 span {
    margin-bottom: 36px;
  }
}
.contentSection .reservationContainer h3 {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2.4px;
  margin-bottom: 40px;
}
.contentSection .reservationContainer h3 span {
  display: block;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 1.3px;
  margin-top: 10px;
}
.contentSection .reservationContainer .access {
  max-width: 800px;
  margin: 0 auto;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 4px 4px 3px 0.5px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 30px;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainer .access {
    max-width: 300px;
    padding: 15px;
    border: 1px solid #dedddd;
  }
}
.contentSection .reservationContainer .access::after {
  content: "";
  position: absolute;
  right: -47px;
  bottom: 0;
  width: 217px;
  height: 314.235px;
  background-image: url(../images/image_access01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainer .access::after {
    display: none;
  }
}
.contentSection .reservationContainer .access iframe {
  width: 355px;
  height: 260px;
}
@media screen and (max-width: 860px) {
  .contentSection .reservationContainer .access iframe {
    width: 100%;
    height: 200px;
    margin-bottom: 25px;
  }
}
.contentSection .reservationContainer .access .contents {
  width: calc(100% - 385px);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  .contentSection .reservationContainer .access .contents {
    width: 100%;
  }
}
.contentSection .reservationContainer .access .contents .title {
  padding-bottom: 13px;
  border-bottom: 1px dashed #dedddd;
  margin-bottom: 33px;
}
.contentSection .reservationContainer .access .contents .address {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 153.333%;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.contentSection .reservationContainer .access .contents .phone {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}
.contentSection .reservationContainer .access .contents .business_hours {
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 1.2px;
}

.contactform {
  max-width: 850px;
  margin: 0 auto 230px;
  border: 5px solid #e5e5e5;
  background-color: #fff;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 860px) {
  .contactform {
    max-width: 360px;
    padding: 10px 10px 30px;
    margin-bottom: 100px;
  }
}
.contactform .wpcf7-spinner {
  position: absolute;
  right: 0;
}
.contactform form {
  border-top: 1px solid #dedddd;
}
.contactform form .row {
  display: flex;
  border-left: 1px solid #dedddd;
  border-bottom: 1px solid #dedddd;
  border-right: 1px solid #dedddd;
}
.contactform form .row .required {
  white-space: nowrap;
  font-size: 15px;
  color: #ff0000;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .contactform form .row {
    flex-wrap: wrap;
  }
}
.contactform form .row > label {
  border-right: 1px solid #dedddd;
  padding: 15px;
  text-align: left;
  vertical-align: top;
  background: #F5F5F5;
  line-height: 150%;
}
@media screen and (min-width: 768px) {
  .contactform form .row > label {
    width: 250px;
  }
}
@media screen and (max-width: 767px) {
  .contactform form .row > label {
    width: 100%;
    padding: 10px;
  }
}
.contactform form .row .raijyou {
  display: flex;
  position: relative;
  width: calc(100% - 250px);
  flex-wrap: wrap;
}
.contactform form .row .raijyou .wpcf7-form-control-wrap {
  position: static;
}
.contactform form .row .raijyou .wpcf7-not-valid-tip {
  position: absolute;
  top: 100%;
  left: 0;
  white-space: nowrap;
}
@media screen and (max-width: 860px) {
  .contactform form .row .raijyou .contents + .contents {
    padding-top: 0;
  }
}
.contactform form .row .hidden {
  display: none;
}
.contactform form .row .contents {
  padding: 15px;
}
@media screen and (min-width: 768px) {
  .contactform form .row .contents {
    width: calc(100% - 250px);
  }
}
@media screen and (max-width: 767px) {
  .contactform form .row .contents {
    width: 100%;
    padding: 15px 10px;
  }
}
.contactform form .row .contents .visit_title {
  font-weight: bold;
  margin-bottom: 10px;
}
.contactform form .row .contents * + .visit_title {
  margin-top: 20px;
}
.contactform form .row .contents .wpcf7-radio,
.contactform form .row .contents .wpcf7-checkbox {
  margin-bottom: -10px;
}
.contactform form .row .contents .wpcf7-radio,
.contactform form .row .contents .wpcf7-checkbox,
.contactform form .row .contents .wpcf7-list-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.contactform form .row .contents .wpcf7-list-item {
  margin-bottom: 10px;
}
.contactform form .row .contents .wpcf7-text,
.contactform form .row .contents .wpcf7-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dedddd;
  border-radius: 5px;
  box-sizing: border-box;
  font-size: 15px;
}
.contactform form .row .contents .wpcf7-not-valid-tip {
  margin-top: 5px;
}
.contactform form .row .contents .your-dropdown {
  display: block;
  position: relative;
}
@media screen and (max-width: 860px) {
  .contactform form .row .contents .your-dropdown {
    min-width: 230px;
  }
}
.contactform form .row .contents .your-dropdown select.wpcf7-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  border: 1px solid #ccc;
  background-color: #ffffff;
  padding: 10px 35px 10px 15px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}
.contactform form .row .contents .your-dropdown::after {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 8px;
  content: "";
  background-image: url(../images/icon_arrowBottom01.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 1;
  pointer-events: none;
}
.contactform form .row .contents .zipWrapper {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .contactform form .row .contents .zipWrapper .wpcf7-form-control-wrap {
    max-width: 150px;
  }
  .contactform form .row .contents .zipWrapper .wpcf7-form-control-wrap input {
    max-width: 100%;
  }
}
.contactform form .row .contents .zipWrapper .zip {
  width: auto;
}
.contactform form .wpcf7-acceptance {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #E3E3E3;
  padding: 20px 10px;
  margin-bottom: 30px;
  text-align: center;
}
.contactform form .wpcf7-acceptance label {
  cursor: pointer;
}
.contactform .form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
}
.contactform .form-submit input[type=submit] {
  display: block;
  max-width: 300px;
  width: 100%;
  background-color: #333;
  border-style: none;
  margin: 0 auto;
  padding: 15px 40px;
  font-size: 1.2em;
  color: #fff;
  text-align: center;
  text-decoration: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .contactform .form-submit input[type=submit]:hover {
    opacity: 0.8;
  }
}
.contactform .policy {
  max-width: 800px;
  margin: 20px auto;
  border: 1px solid #dedddd;
  padding: 10px;
}
.contactform .policy .formPrivacy {
  padding: 10px;
  max-height: 200px;
  overflow-y: auto;
}
.contactform .policy .formPrivacy * {
  font-size: 15px;
  line-height: 150%;
  font-weight: 400;
}
.contactform .policy .formPrivacy * + * {
  margin-top: 10px;
}
.contactform .policy .formPrivacy p.bold {
  font-weight: 700;
}

.c-page-sub__footer {
  background-color: #95958b;
  font-size: 16px;
  font-weight: 700;
}

.c-footer {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  background-color: #95958b;
  color: #fff;
  padding: 78px 50px 40px;
  font-size: 0.875em;
  letter-spacing: 0.12em;
  position: relative;
}
.c-footer p {
  margin-block-start: 1em;
  margin-block-end: 1em;
}
.c-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-footer a {
  text-decoration: none;
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .c-footer a:hover {
    cursor: pointer;
    opacity: 0.7;
  }
}

.c-footer__body {
  margin: 0 auto;
}

.c-footer__logo {
  width: 235px;
  margin: 0 auto 50px;
}

@media (max-width: 767px) {
  .c-footer__logo {
    width: 62.66667vw;
    margin-bottom: 12vw;
  }
}
.c-footer__logo p {
  margin: 0;
}

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

.c-footer__nav-global {
  padding-bottom: 15px;
  margin-bottom: 25px;
  border-bottom: 2px solid #cacac5;
}

@media (max-width: 767px) {
  .c-footer__nav-global {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 12vw;
  }
}
.c-footer__nav-global ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .c-footer__nav-global ul {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
  }
}
.c-footer__nav-global ul li {
  margin: 0 25px 10px 0;
}

@media (max-width: 767px) {
  .c-footer__nav-global ul li {
    width: 50%;
    margin: 1.6vw 0;
  }
}
.c-footer__nav-global ul li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .c-footer__nav-global ul li a {
    padding: 1.33333vw 0;
  }
}
.c-footer__nav-service {
  margin-bottom: 70px;
}

@media (max-width: 767px) {
  .c-footer__nav-service {
    margin-bottom: 6.66667vw;
  }
}
@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="01"] > li:not(:last-child) {
    margin-bottom: 7.33333vw;
  }
}
.c-footer__nav-service ul[data-level="01"] p[data-item=ttl] {
  font-size: 1.14286em;
  font-weight: 700;
  padding-left: 10px;
  position: relative;
  margin: 0 0 20px;
}

@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="01"] p[data-item=ttl] {
    font-size: 1.07143em;
  }
}
.c-footer__nav-service ul[data-level="01"] p[data-item=ttl]:before {
  position: absolute;
  content: "-";
  left: 0;
}

.c-footer__nav-service ul[data-level="02"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  font-weight: 700;
}
.c-footer__nav-service ul[data-level="02"] > li {
  margin: 0 50px 10px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="02"] > li {
    width: 100%;
    margin: 0;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
.c-footer__nav-service ul[data-level="02"] > li:last-child {
  margin-right: 0;
}

@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="02"] > li span {
    font-size: 0.92857em;
    margin: 0.93333vw 0;
    min-width: 12vw;
  }
}
.c-footer__nav-service ul[data-level="03"] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: 10px;
  font-size: 0.85714em;
  line-height: 1.16667;
  font-weight: 500;
}

@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="03"] {
    font-size: 0.78571em;
    margin-left: 1.33333vw;
  }
}
.c-footer__nav-service ul[data-level="03"] > li {
  margin: 5px 0;
  padding: 0 10px;
  border-left: 1px solid #fff;
}

@media (max-width: 767px) {
  .c-footer__nav-service ul[data-level="03"] > li {
    margin: 2vw 0;
    padding: 0 2vw;
  }
}
.c-footer__nav-service ul[data-level="03"] > li:last-child {
  margin-right: 0;
}

.c-footer__copyright {
  display: block;
  text-align: center;
  font-size: 0.85714em;
  letter-spacing: 0.08em;
}

.c-footer__pagetop {
  position: fixed;
  bottom: 40px;
  right: 40px;
}

@media (max-width: 767px) {
  .c-footer__pagetop {
    bottom: 3.33333vw;
    right: 3.33333vw;
  }
}
.c-footer__pagetop a {
  background: #fcd4a6;
  border-radius: 50%;
  width: 55px;
  height: 55px;
  padding: 7px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.c-footer__pagetop span {
  display: block;
  padding-top: 12px;
  font-size: 0.71429em;
  position: relative;
  text-align: center;
  line-height: 1.16667;
  letter-spacing: 0.05em;
  color: #4f4f4f;
}
.c-footer__pagetop span:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 14px;
  height: 14px;
  border: 1px solid #4f4f4f;
  border-width: 1px 1px 0 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}