@charset "utf-8";
/*
  CSS Variables
*/
:root {
  /* ------ ------ ------ *
   * 書体
   * ------ ------ ------ */
  --gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;  /* ゴシック */
  --mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho",serif;/* 明朝体 */
}


html, body, a, p, h1, h2, h3, ol, ul, li, dl, dt, dd, div, img, span, strong, em, small, b, i, ruby, rt, rp, sub, sup, address, abbr, pre, blockquote, q, code, iframe, table, tbody, thead, tfoot, tr, td, th, form, label, input, button, select, option, textarea, article, aside, footer, header, main, mark, nav, section, time {
  background-color: transparent;
  border: 0;
  font-size: 100%;
  font-style: normal;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
  box-sizing: border-box;
}
a, a img, [class*="a-btn"]::before, [class*="a-btn"]::after, button, input, select, textarea, #pnav, a.marker::after, a .marker::after, span.more::after, dl.box>dt::after, dl.box>dd, #global>ul>li ul, #side, .a-card .photo+p::before, .a-card .photo+div::before, #point dl, #fixed {
  -webkit-transition: .2s;
  transition: .2s;
}

body {
    font-weight:normal;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1;
    margin: 0 auto;
    scroll-behavior: smooth;
    color:#000;
    font-family: var(--mincho);
}
.wrap {
  overflow: hidden;
  position: relative;
}


p,dt,dd,small{
  font-family: var(--gothic);
}

p, article, section, table, dl, ul, ol {
  margin-bottom: 0;
}
main {
  line-height: 1;  
}
a,a:hover {
  text-decoration: none;
  color: #000;
}
a:hover {
  opacity: .8;
}
img {
  margin:0;
  width: 100%;
  vertical-align: top;
}
button,
button:hover {
background: none;
border: none;
}
ol, ul {
list-style: none;
}

.pc {
    display: block;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 767px) {
    
    body {
    width: 100%;
    position: relative;
    }
    
    .pc {
        display: none;
    }
    .sp {
        display: block !important;
    } 
}



/* HEADER */
#top {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
}
.header {
    max-width: 1200px;
    height: 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
@media screen and (max-width: 767px) {

  #top{
    background-color: rgba(255,255,255,0.9);
  }

  .header {
      height: 70px;
      width: calc(375/428*100%);
      padding-top: 25px;
      padding-bottom: 25px;
  }
}
.header_menu {
  position: absolute;
    right: 0;
}
.header_logo a {
  cursor: default;
  display: flex;
  align-items: end;
}
.header_logo a:hover {
  opacity: .6;
}
.logo_img {
  max-width: 173px;
  width: calc(173/1200*100vw);
  margin-right: 6px;
  display: inline-block;
}
.logo_store {
  font-family: var(--gothic);
  font-size: 1.5rem;
  display: inline-block;
  vertical-align: bottom;
}

@media screen and (max-width: 767px) {
  .logo_img {
    width: calc(280/368*100%);
    margin-right: 0;
  }
  #top .logo_store {
    font-size: 16px !important;
  }
}
.h_menu_list {
    display: flex;
    align-items: center;
}
.h_menu_item {
    line-height: 30px;
    height: 30px;
    text-align: center;
    padding:0 0.8rem;
    font-family: var(--gothic);
}

.circle {
    width: 172px;
    position: relative;
}
.circle span {
  background-color: #9F8D67;
  color: #fff;
  width: 148px;
  height: 34px;
  position: absolute;
  right: 0;
  padding: 0.1em 0 0 0;
}

.circle span:hover{
  background-color: #C9B17E;
}
.circle span a {
    color: #fff;
}

.circle span a:hover{
  background-color: #C9B17E;
}

main {
    margin: 0 auto;
    margin-top: 93px;
}
@media screen and (max-width: 767px) {
  main {
    margin-top: 70px;
  }
  .circle {
    width: 100%;
  }

  .circle span {
    width: 113px;
    height: 30px;
    right:45px;
    font-size: 14px;
  }
}
/* SP　ハンバーガ−メニュー */
@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    right: calc(-30/428*100vw);
    top: 0;
    width: 250px;
    height: 330px;
    transform: translateX(100%);
    background-color:#fff;
    transition: ease .4s;
    justify-content: end;
    margin-top: 70px;
  }
  .nav__items {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 0 0 30px;
  }
  .nav__items li {
    font-size: 16px;
    margin-bottom: 30px;
  }
  .nav-items__item li a:hover {
    opacity: .8;
  }

  .nav__items li span{
    font-size:12px;
    color:#777777;
    margin-left:0.5em;
  }

  /* ハンバーガーメニューの線 */
  .hamburger {
    padding: 0;
    position: absolute;
    right: 0;
    min-width: auto;
  }

.hamburger span {
  width: 28px;
  height: 2px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
  color: #707070;
}
.hamburger span:nth-child(1) {
  top: 0;
}
.hamburger span:nth-child(2) {
  margin: 9px 0;
}
.hamburger span:nth-child(3) {
  top: 0;
}
/* ハンバーガーメニュークリック後のスタイル */
.header__nav.active {
  transform: translateX(0);
}
.hamburger.active span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  top: -14px;
  transform: rotate(-45deg);
}
  
}

  /* *************
    FV
************* */
  #backTop{
    margin-block-end: calc(40 / 1000 * 100%);
  }
  .mv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
  }

  @media screen and (min-width: 768px) {
    .mv_image {
      position: relative;
      overflow: hidden;
      max-height: 895px;
      aspect-ratio: 1425 / 540;
    }
    .mv_image_title {
      position: absolute;
      z-index: 1;
      top: 28%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40%;
      width: calc(709 / 1920* 100%);
    }
    .mv_prize {
      margin: calc(-100/1920*100%) auto 0;
      z-index: 2;
      position: relative;
      width: calc(1043 /1920 * 100vw);
      max-width: 1057px;
    }
  }
  p.mv_Access {
    font-size: 1rem;
    letter-spacing: 0.05rem;
    color: #fff;
    text-align: center;
    top: calc(440/895*100vh);
    left: 41.8%;
    position: absolute;
  }
  
  .mvpresentWrapper{
    display: flex;
    justify-content: center;
    text-align: center;
  }
  .mv_present{
    /* background-image: url(images/img_toppre_bg.png); */
    width: calc(1058 /1920 * 100vw);
    height: 234px;
    background-size: 100%;
    background-repeat: no-repeat;
    margin-top: calc(550 /895 * 100vh);
  }
  .mv_present p{
    font-size: calc(20 /1027 * 100vw);
    color: #745E30;
    padding-top: 2.8rem;
    font-family: var(--mincho);
    line-height: 100%;
    letter-spacing: 0.1rem;
  }
  .mv_present p span{
    border-top: 1px solid #808080;
    border-bottom: 1px solid #808080;
    padding: 0.6rem 0;
    font-size: 1.2rem;
    letter-spacing: 0.2em;
    color: #000;
    vertical-align: text-top;
  }
  
  .mv_present p sup.pc_sup{
    font-size: .35em;
    vertical-align: super;
  }

  .mv_present p sup.sp_sup {
    display: none;
  }

  @media screen and (max-width: 767px) {
    .mv_image {
      position: relative;
      overflow: hidden;
      max-height: 375px;
    }
    .mv_image_title {
      position: absolute;
      z-index: 1;
      top: 25%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 40%;
      width: calc(330 / 375* 100%);
    }

    #sp_top_title{
      width: 100%;
      background-color: #F8F8F8;
      padding: 20px 0 30px;
      text-align: center;
    }

    #sp_top_title p{
      font-size: 2rem;
      line-height: 135%;
      font-family: var(--mincho);
      letter-spacing: 0.05em;
    }

    #sp_top_title span{
      font-size: 1.56rem;
    }

    #sp_top_access{
      padding: 1em;
      width: 100%;
      text-align: center;
      background-color: #575449;
      color: #fff;
    }

    #sp_top_access p{
      font-size: 1.123rem;
      font-weight: 600;
      letter-spacing: 0.05em;
    }

    #sp_top_day{
      padding: 10px 0;
      width: 100%;
      text-align: center;
      background-color: #a59c85;
      color: #fff;
      font-size: 2rem;
      letter-spacing: 0.07em;
    }

    #sp_top_day p span{
      color: #a69d86;
      background-color: #fff;
      padding: 2px;
      font-size: 1rem;
      margin-left: 0.1rem;
    }

    #backTop{
      margin-block-end: calc(80 / 1000 * 100%);
    }
    .mv_prize {
      width: calc(374/420*100%);
      margin: calc(-40/420*100%) auto 0;
      position: relative;
      z-index: 2;
  }
    .mv_present {
      margin-top: calc(135 /375 * 100vh);
      width: 340px;
      height: 150px;
      /* background-image: url(images/img_toppre_bg_sp.png); */
    }
    .mv_present p {
      padding-top: 0.8rem;
      font-size: 1.62rem;
      line-height: 140%;
      letter-spacing: 0.05em;
    }

    .mv_present p span {
      font-size: 1rem;
    }

    .mv_present p sup.sp_sup {
      font-size: .35em;
      vertical-align: super;
      display: inline;
    }

    .mv_present p sup.pc_sup{
      display: none;
    }

  }


/* *************
    CONTENTS
************* */

section{
  max-width: 1200px;
  margin:0 auto ;
}

/* 背景　灰色の箇所 */
.back_gray{
  background-color:#F8F8F8;
}

h1 {
  font-weight: 500;
}

h2 {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1em;
  color: #000;
  text-align: center;
  position: relative;
  height: 2.8em;
}

h2 span.line::after {
	content: '';
	display: block;
	position: absolute;
	left: 50%; /* 位置調整 */
	transform: translate(-50%); /* 位置調整 */
	bottom: 35px; /* 下線の上下位置調整 */
	width: 56px; /* 下線の幅 */
	height: 1px; /* 下線の太さ */
	background-color: #3B4043; /* 下線の色 */
}

h2 span.kana{
  padding-top: 2em;
  font-size: 1.25rem;
  box-sizing: border-box;
  display: inline-block;
}
h3 {
  font-size: 28px;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: .1em;
  text-align: center;
  margin-top: 2em;
}

h4 {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: .1em;
}

@media screen and (max-width: 767px) {
  section {
    width: 100%;
  }

  h1{
    font-size: 1.2rem;
    text-align: left;
    padding: 0;
    line-height: 1.4;
    letter-spacing: 0.1em;
  }

  h2 {
    font-size: 2rem;
    padding: 0 calc(30/428*100%);
  }
  h2 span.kana{
    letter-spacing: 0.07em;
  }
  h3 {
    font-size: 20px;
    line-height: 1.4;
    letter-spacing: 0.01em;
  }
  h3 span {
    display: block;
    font-size: 26px;
    margin-bottom: 10px;
  }
  h4 {
    font-size: 18px;
    line-height: 1.8;
  }
}

/* *************
    CONCEPT
************* */
.area_concept {
  margin-top: 40px;
}
.concept__intro {
  text-align: center;
  margin-bottom: 40px;
  font-family: var(--mincho);
}
.concept_box{
  display: flex;
  justify-content: space-between;
  margin-top:70px;
}

.concept_box img.main{
  max-width: 639px;
}

.concept_boxr{
  margin-left:50px;
  display: flex;
  flex-wrap: wrap;
}

/* .concept_boxr h4{
  line-height: 0;
} */

.concept_box p{
line-height: 2;
letter-spacing: .05em;
}

.concept_site{
  display: flex;
  justify-content: space-between;
  height: 162px;
}

.concept_site img{
  width:247px;
}

.concept_access{
  width: 100%;
  background-color:#F2F2F2 ;
  padding:0.8rem;
  text-align: left;
  margin-top:15px;
}

.concept_access span{
  font-size:0.8rem;
  letter-spacing: -0.05rem;
}

@media screen and (max-width: 767px) {
  .area_concept {
    margin-top:30px;
  }

  .concept_box {
    display: inherit;
    margin-top: 30px;
  }

  .concept_boxr{
    margin-left: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
  }
  .sp_coboxr_img{
    order:1;
  }

  .concept_box p{
    order:0;
    padding: 0 5% 2rem;
  }

  .concept_access{
    background-color: inherit;
    order:2;
    padding:0;
  }

  .concept_boxr h4 {
    order:3;
    padding:0 5%;
  }

  .concept_site{
    order:4;
    height: auto;
    padding:0 5%;
  }
  .concept_site img{
    width: 48%;
    height:110px;
  }
}


/* *************
    IDEA
************* */
.area_idea {
  margin-top: 78px;
  }
  
.idea_box{
  display: flex;
  justify-content: space-between;
  margin-top:83px;
}

.idea_box:first-child{
  margin-top:70px;
}

.idea_column{
  width: 49%;
  display: inline-grid;
  justify-content: end;
}

.idea_txt{
  margin:56px 0 0 40px;
}

.idea_txt:nth-child(odd){
  margin: 30px 0 80px;
}
.idea_txt p{
  text-align: left;
  line-height: 200%;
} 

.idea_txt h3{
  font-size:1.8rem;
  text-align: left;
  margin: 0px 0 25px;
  letter-spacing: 0.01em;
}
.idea_column small {
    line-height: 180%;
    font-size: 0.85rem;
    margin: 0 1em;
}
@media screen and (max-width: 767px) {
  .idea_box{
    display: inherit;
    margin-top: 50px;
  }

  .idea_column{
    width: 100%;
    display: inherit;
  }

  .idea_txt:nth-child(odd){
    margin: 30px 5%;
  }

  .idea_txt{
    margin:60px 5% 30px;
  }

  .idea_txt h3{
    letter-spacing: 0.01em;
    font-size:1.7rem;
  }

  .idea_txt h3 span{
    font-size: 1.8rem;
    margin-left: 1.4em;
    letter-spacing: 0.01em;
  }
  

}


/* *************
    DATA
************* */
.area_data {
  padding: 78px 0;
}
.area_data h3 {
  margin-top: 120px;
}
.data_star {
  width: 306px;
  margin: 56px auto 0;
  display: block;
}
.data_box{
  display: flex;
    justify-content: space-between;
    margin: 60px 0;
    flex-wrap: wrap;
}

.data_box p.vita{
  margin:0 auto 30px;
}

.data_column{
  width: 48%;
  display: inline-grid;
}
.data_column p {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: .02em;
}
.property_data {
  margin-top: 52px;
  display: flex;
  justify-content: space-between;
}
.property_data_l p {
  font-weight: 700;
}
.property_data_l_image {
  display: flex;
  margin-top: 28px;
}
.property_data_l_image img {
  width: 110px;
  height: auto;
}
.property_data_l_image img + img {
  margin-left: 12px;
}
.property_data_list li {
  font-size: 15px;
  font-family: var(--gothic);
  display: flex;
  justify-content: space-between;
  width: 249px;
  height: 26px;
  border-bottom: solid 1px #707070;
  padding: 0 0 6px 38px;
  position: relative;
}
.property_data_list li + li {
  margin-top: 17px;
}
.property_data_list li::before {
  content: '';
  background-color: #707070;
  width: 40px;
  height: 1px;
  position: absolute;
  transform: rotate(-55deg);
  top: 37%;
  left: -3%;
}
.data-num {
  font-size: 1rem;
}
.data-num-strong {
  font-size: 18px;
  font-weight: 700;
}
.property_iamge {
  margin-top: 31px;
}
.data_list {
  display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.data_list_item {
  display: flex;
  margin-bottom: 0.5em;
}
.data_list_item img {
  width: 120px;
  height: 120px;
}
.data_list_item_text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 20px;
}
.data_list_item .icon_star {
  width: 30px;
  height: 30px;
}
.data_list_item .data_list_title {
  font-size: 20px;
  font-weight: 700;
}
.data_list_item .data_list_title span {
  font-size: 12px;
  font-weight: 400;
  display: inline-block;
  margin-left: 12px;
}
small {
  font-size: .8em;
}
.data_floor-plan {
  display: flex;
}
.data_column.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .area_data {
    padding: 60px 0;
  }
  .area_data h3 {
    margin-top: 52px;
    letter-spacing: .1em;
  }
  .data_star {
    width: calc(274/375*100%);
    margin-top:24px;
  }
  .data_box {
    margin:30px auto;
  }
  
  .data_box p.vita{
    line-height: 1.4;
  }

  .data_column{
    width: 100%;
    margin: 0 20px 5%;
  }
  .property_data.pc,
  .property_iamge.pc,
  .icon_star {
    display: none;
  }
  .data_list_item_text {
    margin-left: 1rem;
  }
  .data_list_item .data_list_title {
    font-size: 1rem;
    font-feature-settings: 'palt';
  }
  .data_list_item .data_list_title span {
    font-size: 10px;
    margin: 0;
  }
  .data_list_item_text p {
    font-size: 15px;
  }
  .data_list_item + .data_list_item {
    margin-top: 30px;
  }
  .data_column.sp {
    display: block;
  }
  .property_iamge {
    width: 100vw;
    margin: 31px calc(50% - 50vw);
  }
  .property_data {
    margin-top: 20px;
  }
  .property_data_list li {
    width: 196px;
  }
  .property_data_list {
    margin-top: 34px;
  }
  .property_data_list li::before {
    left: -5%;
  }
  .property_data_r {
    display: flex;
    flex-direction: column;
  }
  .property_data_r img {
    width: 110px;
    height: 110px;
  }
  .property_data_r img + img {
    margin-top: 10px;
  }
  .data_floor-plan {
    flex-direction: column;
    margin: 0 5%;
  }
}

/* *************
    ACCESS
************* */
.access .section_inner {
  padding-top:0;
  padding-bottom: 0;

}
.access_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 68px;
}
p.station{
  line-height: 120%;
}
.access_item {
  display: flex;
  align-items: center;
}
.access_item + .access_item {
  margin-top: 28px;
}
.access_item img {
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
.station_l {
  font-size: 30px;
  margin-top: 5px;
  margin-right: 4px;
  display: inline-block;
}

.station_m {
  line-height: 1.8;
}

.station_s {
  font-size: 20px;
}
.minute {
  font-size: 20px;
  margin-left: 42px;
  display: flex;
  align-items: baseline;
}
.minute span:first-child {
  font-size: 22px;
}
.minute span:nth-child(2) {
  font-size: 48px;
}
.car .minute{
  margin-left: 15px;
}
.car .minute span:first-child {
  display: inline-block;
  margin-bottom: 0;
}
.access_item_notice {
  position: absolute;
  font-size: 13px;
  bottom: -15px;
  right: 10%;
}
.access_notice {
  font-size: 13px;
  margin-top: 1rem;
  text-align: right;
}
@media screen and (min-width: 768px) {
  .access_list {
      width: 40%;
      position: relative;
  }
  .minute {
      position: absolute;
      right: 0;
  }

}

@media screen and (max-width: 767px) {
  .access .section_inner {
      padding-bottom: 52px;
  }
  .access_container {
      flex-direction: column;
      margin-top: 59px;
  }
  .access_list {
      margin-top: 59px;
      width: 100%;
  }
  .station {
      font-size: 15px;
  }
  .station_l {
      font-size: 20px;
      margin-top: 3px;
      margin-right: 0;
      line-height: 1.2;
  }
  .station_m {
      font-size: 18px;
  }
  .station_s {
      font-size: 15px;  
  }
  .access_item {
      position: relative;
      padding: 0 5% 13px;
      border-bottom: solid 1px #707070;
  }
  .access_item img {
      width: 50px;
      height: auto;
      margin-right: 5px;
  }
  .minute {
      font-size: 13px;
      position: absolute;
      right: 5%;
  }
  .minute span:first-child  {
      font-size: 15px;
  }
  .minute span:nth-child(2) {
      font-size: 32px;
  }
}
.access_map {
  width: calc(547/1000*100%);
}
@media screen and (max-width: 767px) {
  .access_map {
      width: 95%;
      margin: 43px auto 0;
  }
  .access_notice {
      font-size: 11px;
      margin-right: 5%;
  }
}


/* *************
    ENVIRONMENT
************* */

.back_env{
  background-image: url(./images/img_env_bg.jpg);
  background-size: cover;
}

.area_env {
  margin-top: 136px;
  padding: 140px 0 120px;
}

.env_box{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}

.env_column{
  width: 23%;
  margin-bottom: 2.5em;
}

.env_caption{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.env_column p{
  margin-top:0.5em;
  line-height: 150%;
}

@media screen and (max-width: 767px) {
  .env_box {
    width: 90%;
    margin:50px 5% 0 5%;
  }

  .area_env {
    margin-top:60px;
    padding:60px 0;
  }

  .env_column {
    width: 48%;
  }

  .env_caption {
    display: inline-block;
  }

}



/* *************
    ABOUT US
************* */

.area_about{
  margin-top: 136px;
}

.about_box{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}

.about_column{
  width: 47.5%;
  position: relative;
}

.about_column p{
  line-height: 200%;
}

img.about_motif{
  width: auto;
  position: absolute;
  bottom: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .area_about {
    margin-top:60px;
  }
  .area_about h2 span.kana {
    line-height: 1.5;
  }
  .about_box {
    flex-direction: column-reverse;
  }

  .about_column {
    width: 100%;
  }

  img.about_motif{
    display: none;
  }

  .about_column p{
    width: 90%;
    margin: 0 auto 30px;
  }

}


/* *************
    VOICE
************* */

.back_voice{
  background-image: url(./images/img_voice_bg.jpg);
  background-size: cover;
}

.area_voice{
  margin-top: 136px;
  padding: 136px 0 120px;
}

.area_voice h2,.area_voice h3{
  color: #fff;
}

.area_voice h2 span.line::after{
  background-color: #fff;
}

.area_voice h3{
  margin-bottom: 0.5em;

}

.area_voice p.exp{
  margin: 40px 0 70px;
  color: #fff;
  line-height: 200%;
  letter-spacing: 0.1em;
  text-align: center;
}

.voice_box{
  background-color: #fff;
  padding:40px;
  position: relative;
  margin-bottom: 30px;
}

.voice_box h3{
  color: #000;
  margin-top: 0;
  text-align: left;
  letter-spacing: 0.05em;
}

.voice_box p{
  line-height: 200%;
  margin-top: 1.5em;
  font-size: 1.15rem;
  width: 85%;
}

.voice_box img.voice01{
  position: absolute;
  width: 13%;
  top: 10%;
  right: 3%;
}

.voice_box img.voice02{
  position: absolute;
  width: 13%;
  top: 13%;
  right: 3%;
}

.area_voice p.catch{
  text-align: center;
  color: #fff;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
  .back_voice {
    background-image: url(./images/img_voice_bg_sp.jpg);
    background-size: cover;
  }

  .area_voice {
    margin-top: 60px;
    padding: 60px 5%;
  }

  .area_voice p.exp {
    letter-spacing: 0.01em;
    margin: 40px 0;
    text-align: left;
  }

  .voice_box {
    padding:30px 20px 200px;
  }

  .voice_box p {
    width: 100%;
    font-size: 1rem;
  }

  .voice_box img.voice01 {
    width: 40%;
    top: 60%;
    right: 30%;
  }

  .voice_box img.voice02 {
    width: 40%;
    top: 70%;
    right: 30%;
  }

  .area_voice h3 {
    text-align: left;
    font-family: var(--gothic);
  }

  .area_voice p.catch {
    text-align: left;
    line-height: 200%;
  }

}

/* *************
    OUTLINE
************* */
.area_outline{
  margin: 136px auto;
}

.outline_box{
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}

.outline_column{
  width: 47.5%;
  position: relative;
}

dl.outline_info{
  display: flex;
  width: 100%;
  justify-content: flex-start;
  flex-wrap: wrap;
}
dl.outline_info dt,dl.outline_info dd{
  border-bottom: 1px solid #808080;
  font-family: var(--mincho);
  font-size: 1.2rem;
  padding: 1em 0;
}

dl.outline_info dt{
  width: 33%;
  font-weight: 600;
  letter-spacing: 0.1em;
}

dl.outline_info dd{
  width:67%;
  letter-spacing: 0.05em;
}

dl.outline_info dd.caution{
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

dl.outline_info dd.caution span{
  font-size:0.7rem;
}

dl.outline_info dd.height_cont{
  /* padding-bottom:4.2em; */
}

@media screen and (max-width: 767px) {
  .area_outline {
    margin: 60px 0;
  }

  .outline_column {
    width: 90%;
    margin: 0 auto;
  }

  dl.outline_info dt, dl.outline_info dd {
    font-size:0.87rem;
    font-family: var(--gothic);
  }

  dl.outline_info dd.caution {
    display:inline-grid;
  }

  dl.outline_info dt{
    width: 20%;
    line-height: 140%;
    font-weight: 300;
  }

  dl.outline_info dd {
    width: 80%;
    padding-left: 1em;
  }

  dl.outline_info dd.height_cont{
    padding-bottom:0;
  }

}


/* *************
      FORM
************* */
.area_form{
  margin:0 auto;
  padding:136px 0;
}

.form_box{
  background-color: #fff;
  margin-top: 60px;
}

.form_contact{
  margin-top:30px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}

.form_contact p.title{
  font-family: var(--mincho);
  font-size: 1.625rem;
  letter-spacing: 0.15em;
}

.form_contact p.tel{
  font-size: 2.75rem;
    background-image: url(./images/ico_phone.svg);
    background-repeat: no-repeat;
    background-position: left center;
    padding-left: 0.9em;
    letter-spacing: 0.05em;
    background-size: contain;
}

.form_contact p.hours{
  font-size: 1.13rem;
}

@media screen and (max-width: 767px) {
  .area_form {
    padding:60px 0;
  }
  .form_contact {
    display: block;
    width: 90%;
    margin: 30px auto 0;
  }

  .form_contact p.title {
    font-family: var(--gothic);
    font-size: 1rem;
    letter-spacing: inherit;
  }
  .form_contact p.tel {
    font-size: 1.37rem;
    background-image: none;
    padding-left: 0;
    line-height: 200%;
  }
  .form_contact p.hours {
    font-size:1rem;
    line-height: 150%;
  }


}


/* *************
      BUTTON
************* */
.area_cv_pre{
  max-width:875px;
  margin:75px auto 0;
}

.area_cv{
  max-width:850px;
  text-align: center;
  border:3px solid#dbdbdb;
  padding:50px 100px 70px;
  margin:50px auto 70px;
}

.area_cv h3{
  margin-top: 0;
  font-size: 1.9rem;
}

.area_cv h4{
  font-size: 1.7rem;
  margin: 0 auto;
  color: #8B7C5C;
}

.cv_day{
  padding: 5px 0;
  width: 100%;
  text-align: center;
  background-color: #9F8D67;
  color: #fff;
  font-size: 1.8rem;
  letter-spacing: 0.15em;
  margin-top: 10px;
}

dl.cv_info{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 30px auto;
  width: 100%;
  align-items: center;
  line-height: 1.4;
}

dl.cv_info dt,dl.cv_info dd{
  font-size: 1.15rem;
  margin-bottom: 1em;
  letter-spacing: 0.01em;
}

dl.cv_info dt{
  width: 12%;
  color: #fff;
  background-color: #000;
  padding: 7px 0;
}

dl.cv_info dd{
  margin-left: 1em;
  text-align: left;
}
.cv_info + .cv_info {
  margin-top: 10px;
}
.button{
  display: inline-block;
  background-color: #9F8D67;
  width: 97%;
  padding: 30px;
  color: #FFF;
  margin: 5px;
  cursor: pointer;
  position: relative;
  text-decoration: none;
  font-size: 1.8rem;
  background-image: url(./images/ico_cal.svg);
  background-size: auto;
  background-repeat: no-repeat;
  background-position: 17.5%;
}

.button:hover{
  background-color: #C9B17E;
  color:#fff;
}

.button::after{
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 5px);
  right: 100px;
  width: 35px;
  height: 8px;
  border: none;
  border-right: 2px solid #FFF;
  border-bottom: 1px solid #FFF;
  transform: skew(45deg);
  transition: .3s;
}
.button:hover::after{
    right: 65px;
    width: 70px;
}
.area_cv .caution{
  text-align: right;
  font-size: 0.85rem;
}

@media screen and (max-width: 767px) {
  .cv_day{
    font-size: 1.5rem;
    letter-spacing: 0.1em;
  }


  .area_cv_pre{
    width:91.5%;
    margin: 50px auto 0;
  }

  .area_cv{
    width: 90%;
    margin: 30px 5%;
    padding: 20px;
  }

  .area_cv h3 {
    font-size:1.56rem;
  }

  .area_cv h4 {
    font-size:1.12rem;
  }

  dl.cv_info {
    width: 100%;
  }

  dl.cv_info dt {
    background-color: inherit;
    color: #000;
    width: 20%;
    padding: 0;
    font-size: 1rem;
    text-align: left;
  }

  dl.cv_info dd {
    margin: 0 0 1em;
    width: 80%;
    font-size: 1rem;
    text-align: left;
    line-height: 150%;
  }

  .button {
    width: 100%;
    font-size: 1.12rem;
    cursor: none;
    padding: 20px 20px 20px 35px;
    background-position: 5%;
    background-size: 8%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px 0;
  }

  .button::after{
    display: none;
  }
  
  .area_cv .caution{
    font-size: 0.7rem;
  }

  /*  Google Font Icons  */
  .material-symbols-outlined {
    font-variation-settings:
    'FILL' 0,
    'wght' 200,
    'GRAD' 0,
    'opsz' 20;
    font-size:20px !important;
}



}


/* *************
      FOOTER
************* */

footer {
    background: #3B4043;
    height: 300px;
}
.footer_container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: end;
    justify-content: space-between;
    padding-top: 85px;
    padding-bottom: 85px;
}

.footer_logo img{
  width: 173px;
}

.footer_logo span{
  font-family: var(--gothic);
  font-size: 1.5rem;
  padding-left:0.5em;
  color: #fff;
}

.footer_logo p{
  font-size: 13px;
  margin-top: 2em;
  line-height: 120%;
  color: #fff;
}

.copyright {
    color: #fff;
    font-size: 14px;
    letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
  footer {
    height: 367px;
  }
  .footer_container {
    display: block;
    max-width: 100%;
    padding: 31px 30px 33px;
  }

  .footer_logo img {
    width: 100px;
  }

  .footer_logo span{
    font-size: 1.1rem;
  }

  .footer_logo p {
    font-size: 14px;
    margin:1em 0;
    line-height: 180%;
    letter-spacing: -0.04em;
  }


  .copyright {
    margin-top: 1rem;
  }
}

/*//////////////////////////////////////////////
// FLOATING BTN 
//////////////////////////////////////////////*/

/* PC用（非表示）*/
@media screen and (min-width: 768px) {    
  #page-top .float_bnr {
      display: none;
  }
}

/* SP用（表示）*/
@media screen and (max-width: 767px) { 
  .cv-btn {
      color: #fff;
      font-size: 20px;
      line-height: 1.4;
      letter-spacing: .15em;
      font-family: 'Noto Sans JP', sans-serif;
      background-color: #9F8D67;;
      height: 50px;
      padding: 10px;
      display: block;
      text-align: center;
  }
  
  .cv-btn:hover {
      color: #fff;
      background-color: #9F8D67;
  }
  #page-top {
      width: 100%;
      bottom: 10px;
      right:0;
      padding-top:1em;
  }
  .float_bnr {
      width: 90%;
      margin: 0 auto;
      font-size: 16px;
    }
}
/* *************
      Thanksページ
************* */
body#i-lpform{
  font-family: 'Noto Sans JP', sans-serif;
}
.form_step {
  max-width: max-content;
  margin: 0 auto 2em;
}
.form_step .pc {
  display: block;
}
.form_step .sp {
  display: none;
}
.form_step img {
  margin: 0 auto;
}

#i-lpform #main {
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  flex-direction: column;
  padding: 0 10%;
  margin: 0 auto;
}
body#i-lpform.main_width {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
body#i-lpform #top {
  position: static;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
#lpform>dl>dt {
  font-weight:bold;
}
#lpform{width:100%;max-width:900px;background:url("images/thanks/bg.png") center center no-repeat;background-size:cover;padding:3em 0;margin:20px auto;border-radius:2em;}
#lpform>dl{
  margin:auto;
  padding:6em 3.5%;
  text-align: center;
}
#lpform>dl>dt{
    padding: .5em 0 1.5em 0;
    letter-spacing:.1em;
}
body#i-lpform #lpform .form_step {
    margin-top: 4em;
}
#lpform>dl>dt .big {
    font-size:1.5em;
    display:block;
    padding-top:.8em;
    font-family: var(--mincho);
}
#i-lpform #main>p {
  width: 100%;
  margin: 20px 0;
  line-height: 0;
  text-align: center;
}
body#i-lpform div#info {
  display: none;
}
body#i-lpform {
  height: auto;
  font-family: var(--mincho);

}
body#i-lpform.sp {
  display: block;
}
#i-lpform #main {
  height: 100%;
  justify-content: flex-start;
  background-color: #edece2;
}
#lp_qa2,
#list_w_tit.lwt_bg,
section#application {
  background-color: #fff;
}
#lp_qa2 {
  padding:25px 0;
}
[class*="a-btn"],
[class*="linebox"] {
  margin-bottom: 2px;
}
body#i-lpform .a-btn {
  display: inline-block;
  padding: 0;
  background-color: #9F8D67;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  background-image: none;
  border: none;
  max-width: 450px;
  width: 85%;
  font-size: 22px;
  text-align: center;
  height: 60px;
  line-height: 61px;
}
#lpform [class*="list-type"]>li,
#lpform [class*="list-type"]>dt,
#lpform [class*="list-type"]>dd,
#lpform [class*="title-i"] {
  display: block;
  position: relative;
  padding-left: 1.2em;
  text-align: left;
  font-size: 99%;
}

.p-rhalf, .p-trhalf, .p-half, .ts {
  padding-right: 0.1em;
  padding-left: 0.1em;
  color: #de5a5a;
}
ul.list-type-kome {
  margin: 0 0 1em;
  line-height: 1.5em;
}
#i-lpform [class*="list-type"]>li::before,
#i-lpform [class*="list-type"]>dt::before,
#i-lpform [class*="title-i"]::before,
#i-lpform .list-type-number.flow>li::after {
  position: absolute;
  left: 0;
  top: 0;
}
#i-lpform a[href^="tel:"],
#i-lpform .time,
#i-lpform .newlist>li>time {
  cursor: default;
  outline: 0;
  letter-spacing: .04em;
}
.list-type-kome>li::before,
.list-type-kome>dt::before,
.title-i-kome::before {
  content: "\203b";
}

#i-lpform header {
  display: block;
}
#i-lpform header#header {
  position: relative;
}
#i-lpform #header {
  height: 71px;
  padding: 0;
  display: flex;
  align-items: flex-end;
  align-content: flex-end;
  margin-bottom: 24px;
}
#i-lpform #header p.logo_w {
  text-align: left;
  display: flex;
  padding: 0;
  margin-bottom: 0;
  flex-direction: row;
  align-items: flex-end;
}
#i-lpform #header p.logo_w span {
  font-size: 22px;
  margin-left: 10px;
  white-space: nowrap;
}
#i-lpform #header>p>a img {
  height: 33px;
  width: auto;
  image-rendering: -webkit-optimize-contrast;
}
#i-lpform header#header h1 {
    overflow: hidden;
    top: 0;
    width: 0;
    height: 0;
    padding: 0;
}


#i-lpform small, sup, sub {
  font-size: .88em;
}
#i-lpform h1+p,
#i-lpform  [id|="topicpath"] ol,
#i-lpform  .spcut {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-wrap: normal;
  word-wrap: normal;
}
#i-lpform h1+p {
  font-size: 10px;
  line-height: 2;
  font-weight: normal;
  width: 0;
}
@media(min-width:48em) {
  #i-lpform h1+p {
    left: auto;
    right: 0;
    width: 0;
    padding-right: 0;
  }
}
@media(min-width:40em) {
  #lpform {
    border-radius: 3.5em;
    margin: 30px auto 50px auto;
  }
  [id*="i-lp"] #main {
    font-size: 16px;
    font-size: 1rem;
  }
  #lpform>dl>dt{
      font-size:28px;
      font-size:1.75rem;
      line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  body#i-lpform .a-btn {
      width: 60vw;
      min-width: 280px;
      font-size: 18px;
      height: 38px;
      line-height: 38px;
  }
}
@media screen and (max-width: 670px) {
  #i-lp .logo_store {
    font-size: 15px;
  }
  #i-lpform #header>p>a img {
      height: auto;
      width: 90px;
  }

  #i-lpform #header p.logo_w span {
    font-size: 1rem;
    margin: 0px 0 0 0.8em;
  }
  #i-lpform #header p.logo_w {
      align-items: flex-start;
  }
  #i-lpform div#top {
      padding: 0 5%;
  }
  #i-lpform #header {
      width: 100%;
      margin: 0 auto 10px;
  }
  #i-lpform #header {
      height: 48px;
  }
}

