@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: center;
  justify-content: space-between;
  margin: 20px auto;
  width: 100%;
  max-width: 1200px;
  padding:0 20px;
  box-sizing: border-box;
}

/* ロゴ */
header #navDrawer .headerLogo {
  width: 100%;
  max-width: 200px;
  height: 33px;
  position: relative;
  z-index: 20;
}
header #navDrawer .headerLogo_link {
  display: block;
  max-height: 100%;
}
header #navDrawer .headerLogo_link img {
  max-width: 100%;
  max-height: 100%;
}

/* ハンバーガー */
header #navDrawer .navToggle {
  display: block;
  position: fixed;
  top: 20px;
  right: 20px;
  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;
}

/* ナビ本体 */
header #navDrawer #navContent {
  z-index: 19;
}

/* ===================== SP版 ===================== */
@media screen and (max-width: 860px) {
    header #navDrawer {
    margin: 0; 
    padding: 20px 20px 0; 
  }

    header #navDrawer .headerLogo {
    height: 26px;
    display: flex;
    align-items: center;
  }

    header #navDrawer .headerLogo img{
    height: 26px;
  }

    /* ドロワー本体 */
  header #navDrawer #navContent{
    position: fixed;
    inset: 0 0 auto 0;
    width: 100%;
    background:#fff;
    transform: translateY(-100vh);
    transition: transform .3s ease-in-out;
    z-index: 19;
  }
  header #navDrawer #navContent.active{ transform: translateY(0); }

  /* リスト配置 */
  header #navDrawer .gnav{
    display: block;
    padding: 72px 20px 20px;   /* 上にロゴ/✕の分の余白 */
  }
  header #navDrawer .gnavList{ width:100%; }

  /* 各行 */
  header #navDrawer .gnavList_item{
    width:100%;
    margin:0;
  }
  header #navDrawer .gnavList_link{
    /* 1行で左右に配置 */
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap: 12px;
    width:100%;
    padding: 14px 0;
    font-size: 18px;
    font-weight: 700;
    color:#000;
    text-decoration:none;
    border-bottom:1px solid #CFCFCF;  /* 区切り線 */
  }
  /* 右側のサブテキスト（日本語） */
  header #navDrawer .gnavList_link span{
    display:block;
    font-size:12px;
    font-weight:400;
    color:#F27507;
    letter-spacing:.05em;
    white-space: nowrap;
  }

  /* SNS 行（区切り線なし・横並び） */
  header #navDrawer .gnavList_item.sns_item{
    max-width: 200px;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    gap:20px;
    padding: 14px 0 6px;
    border-bottom:none;
  }
  header #navDrawer .gnavList_item.sns_item a{
    padding:0;
    border:0;
  }
  header #navDrawer .gnavList_item.sns_item a img{
    width:24px; height:auto; display:block;
  }

  /* 余計な下線が出ないように保険 */
  header #navDrawer .gnavList_link,
  header #navDrawer .gnavList_item{ border-left:0; border-right:0; }
}

/* ===================== PC版 ===================== */
@media screen and (min-width: 861px) {
  /* ハンバーガー非表示 */
  header #navDrawer .navToggle {
    display: none;
  }

  /* ナビ全体をflex化 */
  header #navDrawer {
    display: flex;
    align-items: flex-start;
    gap: 60px;
  }
  header #navDrawer #navContent {
    max-width: 880px;
    flex: 1 1 auto;
  }
  header #navDrawer .gnav {
    width: 100%;
  }

  /* 折り返し可能なフレックス行 */
  header #navDrawer .gnavList {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content:space-between;
    column-gap: 15px;
    row-gap:  10px;
    width: 100%;
    margin-top: 1.6rem;
  }

  /* 項目 */
  header #navDrawer .gnavList_item {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /* SNSアイコンは右端 */
  header #navDrawer .gnavList_item.sns_item {
    margin-left: auto;
    display: flex;
    gap: 20px;
  }
  header #navDrawer .gnavList_item.sns_item img {
    width: 22px;
  }

  /* 補足テキストは非表示 */
  header #navDrawer .gnavList_link span {
    display: none;
  }

  header #navDrawer .gnavList_link {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 1px;
  }
}

.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;
  }
  .contentContainer{
    width: 100%;
  }
}
@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;
}
.pc-none{
  display: none;
}
.sp-none{
  display: block;
}
@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;
    margin: 0 auto;
  }
  .pc-none{
  display: block;
}
  .sp-none{
    display: none;
  }
}
.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% + 50px);
  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: -30px;
  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: 1440px) {
  .contentSection.fvSection .no02Container .message .contentsWrapper .image_message03 {
      bottom: -60px;
  }
}

@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;
    margin:  50px auto 0;
  }
}

/* 追加 */
.contentSection.fvSection .no02Container .massage_bottom_image {
  width: 60vw;
  margin: auto auto 6vw;
  display: flex;
  flex-wrap: wrap;
  min-width: 545px;
  transform: translateY(-5vw);
  height: 20vw;
}

@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .massage_bottom_image {
  display: none;
  }
}

.contentSection.fvSection .no02Container .massage_bottom_image .contentsWrapper {
  width: 100%;
  position: relative;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .massage_bottom_image .contentsWrapper {
    padding-left: 0;
    max-width: 300px;
  }
}
.contentSection.fvSection .no02Container .massage_bottom_image .contentsWrapper .image_message05 {
  position: absolute;
  top: 10%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-image: url(../images/image_message05.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: contain;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no02Container .massage_bottom_image .contentsWrapper .image_message05 {
    display: none;
  }
}

.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 .article_item {
    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 .article_item {
  width: 90%;
  max-width: 1440px;
  margin: auto;
  margin-bottom: 40px;
  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: 860px) {
  .contentSection.fvSection .article_item {
    width: 100%;
    padding: 0 1rem;
  }
}

.contentSection.fvSection .homelife_title01 {
  color: #000;
  font-size: 4rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.25vw;
  padding: 0.2vw 1.563vw;
  margin-bottom: 5.73vw;
}
/* @media screen and (max-width: 1440px) {
  .contentSection.fvSection .homelife_title01 {
    font-size: 12px;
    letter-spacing: 3.55px;
    padding: 11px 20px;
    margin-bottom: 80px;
  }
} */
@media screen and (max-width: 860px) {
  .contentSection.fvSection .homelife_title01 {
    font-size: 2.5rem;
    letter-spacing: 4.5px;
    padding: 12px 20px;
    margin-bottom: 20px;
    max-width: 360px;
    text-align: center;
  }
}
.contentSection.fvSection .homelife_title02 {
  text-align: center;
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .homelife_title02 {
    height: 16px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 860px) {
  .contentSection.fvSection .homelife_title02 {
    height: 14px;
    margin-bottom: 20px;
  }
}
.contentSection.fvSection .article_item .row_items {
  display: flex;
  flex-direction: row;
  background-color: rgba(255, 255, 255, 0.9);
  margin-bottom: 80px;
}
.contentSection.fvSection .article_item .reverse {
  flex-direction: row-reverse;
}

@media screen and (max-width: 860px) {
  .contentSection.fvSection .article_item .row {
    max-width: 360px;
    flex-wrap: wrap;
  }
}

.contentSection.fvSection .article_item .row_items .left_item{
  width: 44.4%;
}
.contentSection.fvSection .article_item .row_items .right_item{
  width: 55.6%;
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-sizing: border-box;
}
.contentSection.fvSection .article_item .row_items .right_item h3{
  font-size: 3.2rem;
  margin-bottom: 3rem;
}
.contentSection.fvSection .article_item .row_items .right_item p{
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 2.5;
}

.contentSection.fvSection .article_item .row_items .right_item .items_btn{
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  padding: 0.8rem 5rem;
  border-radius: 3rem;
  background-color: #F08300;
  box-sizing: border-box;
  display: inline-block;
}

@media screen and (max-width: 1440px) {
  .contentSection.fvSection .article_item .row_items .right_item{
  padding: 2rem;
}
.contentSection.fvSection .article_item .row_items .right_item h3{
  font-size: 2.8rem;
  margin-bottom: 2rem;
}
.contentSection.fvSection .article_item .row_items .right_item p{
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 2;
  padding-bottom: 2rem;
}

.contentSection.fvSection .article_item .row_items .right_item .items_btn{
  font-size: 1.6rem;
  font-weight: bold;
  color: #fff;
  padding: 0.8rem 5rem;
  border-radius: 3rem;
  background-color: #F08300;
}
}
.contentSection.fvSection .article_item .row_items .right_item .yellow{
  background-color: #FDD000;
}
.contentSection.fvSection .article_item .row_items .right_item .blue{
  background-color: #0081CC;
}
@media screen and (max-width: 860px) {
.contentSection.fvSection .article_item .row_items {
  display: flex;
  flex-direction: column;
  padding: 10px 16px;
  margin-bottom: 30px;
}
.contentSection.fvSection .article_item .reverse {
  flex-direction: column;
}

.contentSection.fvSection .article_item .row_items .left_item{
  width: 100%;
}
.contentSection.fvSection .article_item .row_items .right_item{
  width: 100%;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.contentSection.fvSection .article_item .row_items .right_item h3{
  font-size: 2.5rem;
  margin: 2rem 0;
}
.contentSection.fvSection .article_item .row_items .right_item p{
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  line-height: 2.3;
}

.contentSection.fvSection .article_item .row_items .right_item .items_btn{
    display: block;       /* インライン要素 → ブロック要素に */
  width: 100%;          /* 親要素の幅いっぱい */
  text-align: center;
  font-size: 1.6rem;
  padding: 1.5rem 4rem;
  border-radius: 3rem;
  margin-top: 30px;
}
}
.contentSection.fvSection .article_item .row .column {
  width: 50%;
}
.contentSection.fvSection .article_item .row .column.img_sp {
  display: none;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .article_item .row .column {
    width: 100%;
  }
  .contentSection.fvSection .article_item .row .column.img_pc {
    display: none;
  }
  .contentSection.fvSection .article_item .row .column.img_sp {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 47px;
  }
}
.contentSection.fvSection .article_item .row .column + .column.text {
  padding-left: 2.7vw;
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .article_item .row .column + .column.text {
    padding-left: 0;
  }
}
.contentSection.fvSection .article_item .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 .article_item .row .column .title {
    font-size: 39px;
    margin-bottom: 11px;
    letter-spacing: 7.988px;
  }
}
.contentSection.fvSection .article_item .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 .article_item .row .column p {
    font-size: 14px;
    letter-spacing: 0.5px;
    white-space: nowrap;
  }
}
.contentSection.fvSection .article_item .row .imageW01 {
  max-width: none;
  width: 32.917vw;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .article_item .row .imageW01 {
    width: 467px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .article_item .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: auto;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no03Container {
    background-size: 1440px auto;
    height: auto;
  }
}
@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: auto;
  position: relative;
  z-index: 1;
}

/* 基本（PCワイド） */
.blue_img{
  position: absolute;
  top: -7vw;          /* 画面幅に応じて少し上へ */
  left: 2vw;          /* 左端からの余白をvwで可変 */
  width: 20%;
  max-width: 390px;
  height: auto;
  z-index: 2;
  pointer-events: none; /* クリック遮らないように */
}

/* 1440px以下：少しだけ下へ寄せる・左も寄せる */
@media (max-width: 1440px){
  .blue_img{
    top: -90px;
    left: 20px;
  }
}

/* 1200px以下：さらに下へ、サイズも少し大きめに */
@media (max-width: 1200px){
  .blue_img{
    top: -70px;
    left: 16px;
  }
}

/* 1024px以下：もっと下げて重なりを避ける */
@media (max-width: 1024px){
  .blue_img{
    top: -50px;
    left: 12px;
  }
}

/* スマホ（～860px）：非表示 */
@media (max-width: 860px){
  .blue_img{ display: none; }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container {
    background: none;
    height: auto;
  }
}
@media screen and (min-width: 861px) {
  .contentSection.fvSection .no04Container .article_item {
    /* transform: translateY(-3.438vw) !important; */
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container .article_item {
    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 .article_item + .article_item {
  margin-top: 10vw;
  position: relative;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no04Container .article_item + .article_item {
    margin-top: 137px;
  }
}
.contentSection.fvSection .no04Container .article_item + .homelife::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 .article_item + .homelife::after {
    font-size: 18px;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no04Container .article_item + .homelife::after {
    content: none;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no05Container .article_item + .article_item {
    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: auto;
  position: relative;
  z-index: 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .contentSection.fvSection .no05Container {
    background-size: 1440px auto;
    height: auto;
  }
}
@media screen and (max-width: 860px) {
  .contentSection.fvSection .no05Container {
    background-image: url(../images/bg04_sp02.png);
    background-size: 100% auto;
    background-position: center bottom;
    display: flex;
    justify-content: center;
    height: auto;
    padding-bottom: 300px;
    margin-bottom: 50px;
    z-index:-1;
  }
}
/* 基本（PCワイド） */
.yellow_img{
  position: absolute;
  top: -7vw;          /* 画面幅に応じて少し上へ */
  right: 5vw;          /* 左端からの余白をvwで可変 */
  width: 18%;
  max-width: 340px;
  height: auto;
  z-index: 2;
  pointer-events: none; /* クリック遮らないように */
}

/* 1440px以下：少しだけ下へ寄せる・左も寄せる */
@media (max-width: 1440px){
  .yellow_img{
    top: -90px;
    right: 30px;
  }
}

/* 1200px以下：さらに下へ、サイズも少し大きめに */
@media (max-width: 1200px){
  .yellow_img{
    top: -70px;
    right: 20px;
  }
}

/* 1024px以下：もっと下げて重なりを避ける */
@media (max-width: 1024px){
  .yellow_img{
    top: -50px;
    right: 16px;
  }
}

/* スマホ（～860px）：非表示 */
@media (max-width: 860px){
  .yellow_img{ display: none; }
}
.contentSection .support_container {
  width: 95%;
  max-width: 1200px;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.support_container .support_title01 {
  color: #000;
  font-size: 3.2rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.25vw;
  padding: 0.2vw 1.563vw;
  margin-bottom: 3.73vw;
}

@media screen and (max-width: 860px) {
.support_container .support_title01 {
    font-size: 2.5rem;
    letter-spacing: 4.5px;
    padding: 12px 20px;
    margin-bottom: 20px;
    max-width: 360px;
    text-align: center;
  }
}
.support_container .support_title02 {
  text-align: center;
  color: #FFF;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 1rem;
}
@media screen and (max-width: 1440px) {
.support_container .support_title02 {
    height: 16px;
    margin-bottom: 1rem;
  }
}

@media screen and (max-width: 860px) {
  .support_container .support_title02 {
    height: 14px;
    margin-bottom: 20px;
  }
}
.support_item{
  display: flex;
  align-items: stretch;  
  position: relative;
}

.support_item .row_items {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  padding: 30px;
  position: relative;
}

.num_col{
  width: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;  /* アイコンを上寄せに */
  align-self: stretch;      /* 念のため */
}

.num_icon{
  width: 48px; height: 48px; border-radius: 50%;
  background:#4CAF50; color:#fff; font-size:20px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  position: relative; z-index: 1;
}

.num_col::after{
  content:"";
  position:absolute;
  top: 24px;               /* 丸の中心から開始 */
  bottom: 0;               /* 末端まで */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background:#000;
  z-index: 0;
}

.content_col {
  width: 50%;
  padding: 0px 40px;
}
.content_col h3 {
font-size: 3rem;
margin-bottom: 30px;
}

.content_col p{
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2;
}

.image_col {
  width: 50%;
}
.image_col img {
  max-width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 860px) {
.support_item{
  display: flex;
  align-items: stretch;  
  position: relative;
  gap:16px;
}

.support_item .row_items {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 16px 10px;
  position: relative;
}

.num_col{
  width: 60px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;  /* アイコンを上寄せに */
  align-self: stretch;      /* 念のため */
}

.num_icon{
  width: 48px; height: 48px; border-radius: 50%;
  background:#4CAF50; color:#fff; font-size:20px; font-weight:700;
  display:flex; align-items:center; justify-content:center;
  position: relative; z-index: 1;
}

.num_col::after{
  content:"";
  position:absolute;
  top: 24px;               /* 丸の中心から開始 */
  bottom: 0;               /* 末端まで */
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background:#000;
  z-index: 0;
}

.content_col {
  width: 100%;
  padding: 0 0 30px;
}
.content_col h3 {
font-size: 2.4rem;
margin-bottom: 30px;
}

.content_col p{
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05rem;
  line-height: 1.8;
}

.image_col {
  width: 100%;
}
.image_col img {
  max-width: 100%;
  height: auto;
  display: block;
}

}

.contentSection .counter_container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: transparent;
}
.counter_container .counter_title01 {
  color: #000;
  font-size: 3rem;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 0.25vw;
  padding: 0.2vw 1.563vw;
  margin-bottom: 2rem;
}

@media screen and (max-width: 860px) {
.counter_container .counter_title01 {
    font-size: 2.3rem;
    letter-spacing: 2.5px;
    padding: 12px 16px;
    margin-top: 30px;
    margin-bottom: 20px;
    max-width: 360px;
    text-align: center;
  }
}

.counter_content{
  display: flex;
  gap:1rem;
  padding:3rem 5rem;
  background-color: #f3f3f3;
  text-align: center;
}
.counter_item{
  padding: 1.5rem;
  width: 33%;
}
.counter_content h3 {
font-size: 2.5rem;
margin-bottom: 30px;
}
.counter_content p{
    font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2;
  text-align: left;
  margin-bottom: 2rem;
}
.contact-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
}

.contact-text {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-line {
  width: 1px;
  height: 30px;
  border-left: 1px dotted #000; /* 点線縦線 */
  margin: 6px 0;
}

.contact-btn {
  display: inline-block;
  padding: 10px 30px;
  background: #4CAF50; /* 緑色 */
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  border-radius: 20px; /* 丸み */
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #43a047; /* ホバー時に濃く */
}
@media screen and (max-width: 860px) {
  .counter_content {
    display: flex;
    flex-direction: column; /* ← ここを追加 */
    gap: 1rem;
    padding: 3rem 1rem;
    background-color: #f3f3f3;
    text-align: center;
  }

  .counter_item {
    padding: 1.5rem;
    width: 100%;  /* 100%幅で縦に */
  }
.counter_content h3 {
font-size: 2.3rem;
margin-bottom: 30px;
}
.counter_content p{
    font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.1rem;
  line-height: 2;
  text-align: left;
  margin-bottom: 2rem;
}
.contact-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 0;
}

.contact-text {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.contact-line {
  width: 1px;
  height: 30px;
  border-left: 1px dotted #000; /* 点線縦線 */
  margin: 6px 0;
}

.contact-btn {
    display: block;       /* インライン要素 → ブロック要素に */
  width: 100%;          /* 親要素の幅いっぱい */
  text-align: center;
  font-size: 1.6rem;
  padding: 1.5rem 4rem;
  border-radius: 3rem;
  margin-top: 10px;
  background: #4CAF50; /* 緑色 */
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.3s;
}

.contact-btn:hover {
  background: #43a047; /* ホバー時に濃く */
}
}
.contentSection .no06Container {
  background-image: url(../images/bg06.png);
  background-repeat: no-repeat;
  background-position: left top;
  background-size: 100% auto;
  height: 56vw;
  position: relative;
  z-index: 0;
  margin-bottom: 120px;
}
@media screen and (max-width: 1440px) {
  .contentSection .no06Container {
    background-size: 100% auto;
    height: 56vw;
  }
}
@media screen and (max-width: 540px) {
  .contentSection .no06Container {
    background-image: url(../images/bg06_sp.png);
    background-size: 100% auto;
    background-position: center bottom;
    display: flex;
    justify-content: center;
    height: auto;
    padding-top: 90vw;
    padding-bottom: 518px;
    margin-top: -80vw;
    margin-bottom: 100px;
    z-index:-1;
  }

}

.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 {
    width:90%;
  }
}
.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: 60px;
}
@media screen and (max-width: 860px) {
  .contentSection .newsContainer .news {
    margin-bottom: 40px;
  }
}
.news_banner_container{
  width: 100%;
  text-align: center;
  padding-bottom: 5rem;
margin-bottom: 10rem;
}
@media screen and (max-width: 860px) {
.news_banner_container{
  width: 100%;
  text-align: center;
  padding-bottom: 3rem;
margin-bottom: 5rem;
}
}
.news_banner_container .news_banner{
  display: block;
  margin-bottom: 1.5rem;
}
.news_banner_container .news_banner img{
  width: 100%;
  height: auto;
}
.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;
}

/* --- PC: 3カラムカード --- */
@media screen and (min-width: 861px) {
  .contentSection .newsContainer .newsList {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3カラム */
    gap: 20px; /* カード間余白 */
  }

  .contentSection .newsContainer .newsList_item {
    margin-top: 0;   /* 既存の縦並びmarginを打ち消す */
    border-radius: 10px;
    border: 0.5px solid #000;
    background: #FFF;
    box-shadow: 4px 4px 3px 0.5px rgba(0, 0, 0, 0.15);
    display: flex;
    flex-direction: column;
  }

  .contentSection .newsContainer .newsList_link {
    display: flex;
    flex-direction: column; /* 縦積み */
    justify-content: flex-start;
    align-items: flex-start;
    padding: 10px;
    height: 100%; /* 高さ揃え用 */
  }

  .contentSection .newsContainer .newsList_link .thumb {
    width: 100%;
    margin-bottom: 10px;
  }

  .contentSection .newsContainer .newsList_link .contents {
    width: 100%;
  }
}

.news-readmore {
  text-align: center;
  margin-top: 30px;
}

/* 互換: JSが .readmore-btn を参照しても/#loadMore でもOK */
#loadMore,
.readmore-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  cursor: pointer;
  position: relative;
  padding-right: 35px;      /* 右の丸矢印ぶんの余白 */
  transition: opacity 0.3s;
  line-height: 1.2;
}

#loadMore:hover,
.readmore-btn:hover { opacity: .85; }

/* 下線（テキストの下に1px） */
#loadMore::after,
.readmore-btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #000;
  margin-top: 6px;
}

/* 右の丸い矢印 */
#loadMore .arrow,
.readmore-btn .arrow {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: #231815;
  color: #fff;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* JS が hidden 属性やクラスで消す場合に確実に非表示にする */
.readmore-btn[hidden],
#loadMore[hidden],
.readmore-btn.is-hidden,
#loadMore.is-hidden { display: none !important; }

/* 追加：非表示制御 */
.newsList_item.is-hidden { display: none !important; }

/* hidden 属性が付いたら必ず非表示 */
#loadMore[hidden] { display: none !important; }

/* 小さめ端末の微調整 */
@media (max-width: 860px) {
  #loadMore, .readmore-btn { font-size: 16px; padding-right: 32px; }
  #loadMore .arrow, .readmore-btn .arrow { width: 24px; height: 24px; font-size: 12px; }
}

.contentSection .reservationContainerBack {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, #95958B 50%, #95958B 100%);
}
@media screen and (max-width: 1280px) {
  .contentSection .reservationContainerBack {
    background: linear-gradient(180deg, #fff 0%, #fff 70%, #95958B 70%, #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: 860px) {
  .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 {
    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: 20px;
  right: 80px;
  z-index:20;
}

@media (max-width: 767px) {
  .c-footer__pagetop {
    bottom: 80px;
    right: 10px;
  }
}
.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);
}

