@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;
  margin: 0 auto;
  margin-top: 100px;
}
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;
}
h1 {
  font-weight: 500;
}

h2 {
  font-size: 3.75rem;
  font-weight: 500;
  color: #989898;
  font-family: var(--mincho);
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}
h2 .kana{
  font-size: 1.5rem;
  color: #000;
  margin-top: 10px;
  font-size: 1.25rem;
  display: block;
}
h2:after {
  content:'';
  width: calc(537/1000*100%);
  aspect-ratio: 1/1;
  border-radius: calc(270/537*100%);
  background-color: #F8F8F8;
  display: block;
  position: absolute;
  top: -12px;
  left: 0;
  z-index: -1;
}
.area_idea h2:after,
.area__data h2:after {
  background-color:#F8F3E7;
}
h3 {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: .1em;
  text-align: center;
}
h4 {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: .05em;
  margin: 0;
  font-family: var(--gothic);
}
.pc {
    display: block;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 767px) {
    body {
    width: 100%;
    position: relative;
    }
    main {
      margin-top: 50px;
    }
    h1{
      font-size: 1.2rem;
      padding: 0;
      line-height: 1.4;
      letter-spacing: 0.1em;
    }
    h2 {
      text-align: center;
      font-size: 48px;
    }
    h2 span.kana {
      font-size: 1.5rem;
      letter-spacing: 0.1em;
      line-height: 2;
    }
    h2:after {
      width: calc(446 / 375* 100%);
      aspect-ratio: 446 / 230;
      left: 50%;
      transform: translateX(-50%);
      top: 24px;
    }
    h3 {
      font-size: 22px;
      line-height: 1.4;
      letter-spacing: 0.1em;
      text-align: left;
    }
    h4 {
      line-height: 1.8;
    }
    .pc {
        display: none;
    }
    .sp {
        display: block !important;
    } 
}

/*::::::::::::::::::::
 HEADER 
::::::::::::::::::::*/
header {
  width: 100%;
  height: 100px;
  position: fixed;
  z-index: 10;
  box-sizing: border-box;
  background: #fff;
  display: flex;
  align-items: center;
}
.header__inner {
  width: 100%;
  max-width: 1200px;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.logo_img {
  max-width: 250px;
  width: calc(250/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) {
  header {
    height: 50px;
    width: 100%;
    background-color: rgba(255,255,255,0.9);
  }
  .header__inner {
    padding: 0 20px;
    align-items: center;
  }
  .header_logo h1 {
    display: flex;
    align-items: flex-start;
  }
  .logo_img {
    width: calc(110/375*100vw);
  }
  .logo_store {
    font-size: 15px;
  }
}
.header_menu{
  display: flex;
  align-items: center;
}
.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);
}
#backTop:before,
section:before {
  content: "";
  display: block;
  height: 112px; /* 調整したい高さ（固定ヘッダーの高さ） */
  margin-top: -112px; /* heightと同じ分のネガティブマージン */
  visibility: hidden;
}
@media screen and (min-width: 768px) {
  .hamburger {
    display: none;
  }
}

/* SP　ハンバーガ−メニュー */
@media screen and (max-width: 767px) {
  .header__nav {
    position: absolute;
    right: calc(-30/428*100vw);
    top: 0;
    width: 250px;
    height: 355px;
    transform: translateX(100%);
    background-color:#fff;
    transition: ease .4s;
    justify-content: end;
    margin-top: 50px;
  }
  .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;
    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);
  }
  #backTop:before,
  section:before {
    content: "";
    display: block;
    height: 50px; /* 調整したい高さ（固定ヘッダーの高さ） */
    margin-top: -50px; /* heightと同じ分のネガティブマージン */
    visibility: hidden;
  }
}
  /* *************
    FV
************* */
  #backTop{
    margin-block-end: calc(80 / 1000 * 100%);
  }
  .mv {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    position: relative;
    overflow: hidden;
  }
  .mv__title {
    position: absolute;
    top: 13.4%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    font-feature-settings: 'palt';
  }
  .mv__title__main {
    color: #000;
    text-shadow: 3px 3px 0px #efefef;
    font-weight: 600;
    letter-spacing: 0.1em;
    font-size: clamp(50px, 6.6vw, 80px);
  }
  .mv__title__ougi {
    color: #000;
    text-shadow: 2px 2px 0px #efefef;
    font-family: var(--gothic);
    margin-bottom: 23px;
    font-size: clamp(16px, 2.3vw, 25px);
    letter-spacing: 0.1em;
  }
  .mv__title__hash {
    color: #000;
    text-shadow: 2px 2px 0px #efefef;
    font-family: var(--gothic);
    margin-top: 53px;
    font-size: clamp(24px, 3.3vw, 40px);
    letter-spacing: -0.03em;
    transform: rotate(-10deg);
  }
  .mv__circle {
    width: calc(375/1200*100%);
    aspect-ratio: 1/1;
    border-radius: 50%;
    color: #fff;
    background-color: #8A7C5F;
    position: absolute;
    bottom: -48.5%;
    left: 50%;
    transform: translateX(-50%);
  }
  .mv__circle p {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: .1em;
    text-align: center;
    margin-top: 47px;
  }
  .mv__circle__mini {
    width: calc(60/375*100%);
    aspect-ratio: 1/1;
    border-radius: calc(30/60*100%);
    font-size: 1.25rem;
    font-family: var(--gothic);
    color: #8A7C5F;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 10px;
    right: 20px;
  }
  .banner.mv__banner {
    margin-top: -4%;
    z-index: 3;
    position: relative;
  }
  .mv__introduction {
    margin-top: 110px;
    line-height: 2;
    letter-spacing: .2em;
  }
  @media screen and (max-width: 767px) {
    #backTop{
      margin-block-end: calc(80 / 1000 * 100%);
    }
    .mv__title__ougi {
      /* color:#fff;
      text-shadow: 2px 2px 2px #222; */
      color: #000;
      text-shadow: 2px 2px 2px #efefef;
      font-weight: 600;
    }
    .mv__title__main {
      /* color: #fff;
      text-shadow: 2px 2px 0px #222; */
      color: #000;
      text-shadow: 2px 2px 0px #efefef;
      font-size: 50px;
      letter-spacing: .03em;
      
    }
    .mv__title {
      top: 17%;
      width: 100%;
    }
    .mv__title__hash {
      /* color:#fff;
      text-shadow: 1px 1px 1px #222; */
      color: #000;
      text-shadow: 1px 1px 1px #efefef;
      font-size: 24px;
      margin-top: 22px;
    }
    .mv__circle {
      bottom: -47%;
      width: calc(446/375*100%);
      aspect-ratio: 446 / 230;
    }
    .mv__circle p {
      font-size: 22px;
      margin-top: 18px;
    }
    .mv__circle__mini {
      width: calc(60 / 375* 100vw);
      font-size: 18px;
      top: -18px;
      right: 50px;
    }
    .banner.mv__banner {
      margin-top: -6%;
    }
    .mv__introduction {
      margin-top: 80px;
      text-align: center;
    }
  }


/* *************
    CONTENTS
************* */
section {
  margin-top: 78px;
}
section p {
  font-size: 15px;
  line-height: 1.86;
}
.area__container {
  margin-top: 40px;
}
.area__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 0 ; 
}
.banner {
  width: 90%;
  max-width: 868px;
  margin: 30px auto 0;
}
/* 背景　灰色の箇所 */
.bg_gray {
  background-color:#F8F8F8;
}
.bg_beige {
  background-color:#F8F3E7;
}
@media screen and (max-width: 767px) {
  section {
    width: 100%;
    margin-top: 90px;
  }
  .area__container {
    margin-top: 33px;
  }
  .area__inner {
    width: calc(335/375*100%);
    padding: 27px 0 40px;
  }
  .banner {
    margin-top: 0;
  }
}

/* *************
    CVエリア
************* */
.area__cv {
  max-width: 860px;
  width: 90%;
  margin: 91px auto 0;
  border: solid 5px #DBDBDB;
  padding: 60px 115px;
}
.cv__title {
  font-size: 1.75rem;
  font-family: var(--mincho);
  text-align: center;
}
.cv__title span {
  font-size: 1.375rem;
  display: block;
  margin-top: 20px;
}
.cv__info {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 50px auto 0;
  width: 100%;
  align-items: center;
  line-height: 1.4;
}
.cv__info + .cv__info {
  margin-top: 10px;
}
.cv__info dt {
  color: #fff;
  background-color: #3B4043;
  padding: 7px 12px;
  letter-spacing: .3em;
  text-align: center;
}
.cv__info dd {
  margin-left: 1em;
  text-align: left;
  font-size: 1.125rem;
  letter-spacing: 0.01em;
}
.cv__button {
  color: #fff;
  font-size: 1.375rem;
  font-weight: 700;
  background-color: #C60000;
  box-shadow: 0px 6px 0px #6E0000;
  width: 100%;
  height: 70px;
  border-radius: 35px;
  margin-top: 50px;
  padding: 0 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cv__button:hover {
  color: #fff;
  background-color: #C6C6C6;
  box-shadow: 0px 0px 0px #6E0000;
  transform: translateY(6px);
}
.icon_calender {
  width: 34px;
  height: 34px;
}
.icon_arrow {
  width: 34px;
  height:8px;
}
.cv__button.only__button {
  width: 630px;
  margin: 50px auto -100px;
}
@media screen and (max-width: 767px) {
  .area__cv {
    padding: 40px 18px;
  }
  .cv__title {
    font-size: 1.6rem;
  }
  .cv__title span {
    font-size: 18px;
    margin-top: 15px;
  }
  .cv__info {
    margin-top: 40px;
    font-size: 15px;
  }
  .cv__info dt {
    padding: 5px 11px;
  }
  .cv__info dd {
    font-size: 1rem;
  }
  .cv__button {
    margin-top: 20px;
    font-size: 20px;
  }
  .icon_calender {
    width: 24px;
    height: 24px;
  }
  .icon_arrow {
    width: 10px;
    height: 18px;
  }
  .cv__button.only__button {
    width: calc(335/375*100%);
    height: 60px;
  }
}
/* *************
    CONCEPT
************* */
.area_concept {
  margin-top: 112px;
}

.concept__box {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.concept__box p {
  width: calc(485/1000*100%);
}
.concept__box img {
  width: calc(485/1000*100%);
}

@media screen and (max-width: 767px) {
  .area_concept {
    margin-top: 80px;
  }
  .concept__box {
    flex-direction: column-reverse;
    margin-top: 30px;
  }
  .concept__box img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .concept__box p{
    width: 100%;
    margin-top: 30px;
  }
}

/* *************
    PRODUCT
************* */
#product h2{
  font-size: 2.5rem;
  line-height: 1.4;
  letter-spacing: 0.1em;
  padding-bottom: 118px;
}
#product h2 span{
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
#product .area__inner{
  max-width: 1000px;
}
/*           PC           */
@media screen and (min-width: 768px) {
.product_anchor{
  display: flex;
  justify-content: space-between;
}
.product_anchor_item{
  width:30%;
  max-width: 300px;
  text-align: center;
  background-color: #8A7C5F;
  overflow: hidden;
}
.product_anchor_image{
  width:100%;
  aspect-ratio: 300 / 195;
  overflow: hidden;
}
.product_anchor_item a:hover .product_anchor_image img{
  transform: scale(1.1,1.1);
  transition: .8s all;
}
.product_anchor_title{
  width: 67%;
  margin:35px 0;
}
.product_anchor p{
  color: #fff;
  line-height: 2.3;
  font-family: var(--mincho);
  letter-spacing: 0.1em;
}
.product_anchor p:first-of-type{
  font-size: 28px;
  letter-spacing: -0.05rem;
  margin-top:22px;
}
.product_anchor_arr{
  width: 60px;
  height: 46px;
  background: url(./images/ico_product_arr_over.png);
  margin:35px auto 15px;
  background-position: center;
  background-repeat: no-repeat;
}
.product_anchor_item a:hover .product_anchor_arr{
  width: 60px;
  height: 46px;
  background: url(./images/ico_product_arr.png);
  margin:35px auto 15px;
  background-position: center;
  background-repeat: no-repeat;
}

#product .caution{
  text-align: right;
  color: #f8f8f8;
  margin-top: 1em;
  font-size: 12px;
}
}

/*           sp           */
@media screen and (max-width: 767px) {
  #product h2{
    padding:77px 0 15px;
    font-size: 1.87rem;
  }
  #product h2 span{
    font-size: 1.2rem;
  }
  #product .area__inner {
    max-width: calc(335 / 375* 100%);
    padding:0 0 50px;
  }
  .product_anchor_item{
    width: 100%;
    text-align: center;
    background-color: #8A7C5F;
    margin:40px 0;
  }
  .product_anchor_item:last-of-type{
    margin:40px 0 10px;
  }
  .product_anchor_image{
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #fff;
  }
  .product_anchor_title{
    width: 40%;
    padding:0 3.4%
  }
  .product_anchor_img{
    width: 200px;
  }
  .product_anchor p{
    color: #fff;
    font-size: 14px;
    line-height: 2.2;
    letter-spacing: 0.1em;
    padding:12px 0 8px
  }
  .product_anchor_image p {
    font-family: var(--mincho);
    line-height: 1.5;
    font-size: 16px;
    padding:0 0 0 18px;
    font-weight: 600;
    text-align: center;
  }
  .product_anchor_arr{
    width: 32px;
    padding-bottom: 8px;
  }
  #product .caution{
    text-align: center;
    color: #f8f8f8;
    margin-top: 1em;
    font-size: 12px;
  }
}

/* *************
    IDEA
************* */
.area_idea {
  margin-top: 78px;
  }

.idea__grid {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 30px;
}
@media screen and (min-width: 768px) {
  .idea__grid:nth-last-child(2n) {
    grid-template-rows: repeat(2, 1fr);
}
}

.idea__grid + .idea__grid {
  margin-top: 80px;
}
.grid__top__text {  grid-area: 1 / 1 / 2 / 2; }
.grid__top__pic { 
  grid-area: 1 / 2 / 3 / 3;
  max-width: 485px;
}
.grid__bottom__pic { 
  grid-area: 2 / 1 / 4 / 2;
  max-width: 485px;
}
.grid__bottom__text { 
  grid-area: 3 / 2 / 4 / 3;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.idea__grid h3 {
  display: flex;
  align-items: center;
  text-align: left;
  line-height: 1.3;
}
.h3_num {
  font-size: 3.125rem;
  margin-right: 1.625rem;
  line-height: 1;
}
.idea__grid p {
  margin-top: 16px;
}
.idea__caution {
  font-size: 14px;
  margin-top: 20px;
  line-height: 1.5;
  font-family: var(--gothic);
  display: block;
}
@media screen and (max-width: 767px) {
  .area_idea .area__inner {
    padding-bottom: 70px;
  }
  .idea__grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-column-gap: 30px;
    grid-template-rows: max-content;
    margin-top: 100px;
    }

  .grid__top__text { 
    grid-area: 1 / 1 / 2 / 2;
   }
  .grid__top__pic { 
    grid-area: 2 / 1 / 4 / 2;
   }
  .grid__bottom__pic { grid-area: 5 / 1 / 7 / 2; }
  .grid__bottom__text { 
    grid-area: 4 / 1 / 5 / 2;
    margin-top: 40px;
   }

  .idea__grid h3 {
    font-size: 20px;
    align-items: center;
    line-height: 1.8;
  }
  .grid__top__pic,
  .grid__bottom__pic {
    width:100vw;
    margin: 0 calc(50% - 50vw);
  }
  .idea__grid + .idea__grid {
    margin-top: 40px;
  }
  .idea__grid p {
    margin-bottom: 24px;
  }
}

/* *************
    LIST
************* */
.back_gray{
  background-color: #F7F7F7;
  margin:80px 0;
  padding:80px 0;
}
.box_list {
  display: flex;
  justify-content: space-between;
  margin-top: 100px;
  flex-wrap: wrap;
}
.box_list h3{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.list_feature, 
.list_image {
  width: calc(485/1000*100%);
  position: relative;
}

.list_image2{
  display: flex;
  margin-top:20px;
  justify-content: space-between;
}

.list_image2_l{
  width: calc(789/1000*100%);
}

.list_image2_r{
  width: calc(400/1000*100%);
}

.list_feature_title {
  display: flex;
  justify-content: space-between;
}

.h3_small {
  font-size: 1rem;
  letter-spacing: 0;
  text-align: left;
}

.h3_middle {
  font-size: 50px;
  letter-spacing: .1em;
}

.h3_large {
  font-size: 100px;
  letter-spacing: .1em;
}

.list_feature_title img {
  width: calc(230/485*100%);
  aspect-ratio: 640/440;
}

.list_feature_catch {
  font-size: 1.75rem;
  letter-spacing: .1em;
  font-family: var(--mincho);
  margin-top: calc(22/485*100%);
}

.list_feature_text {
  line-height: 2;
  margin-top: calc(10/485*100%);
}

.list_button_group {
  display: flex;
  justify-content: space-between;
  align-items: end;
  width: 100%;
  position: absolute;
  bottom: -40px;
}
.list_button {
  color: #fff;
  font-weight: 700;
  font-family: var(--gothic);
  width: calc(200/495*100%);
  padding: 12px 0;
  border-radius: 20px;
  text-align: center;
}
.button_01 {
  background-color: #C70024;
}
.button_01:hover {
  color: #fff;
  background-color: #000;
}
.button_02 {
  background-color: #9F8D67;
}
.button_02:hover {
  color: #fff;
  background-color: #C70024;
}
.list_button_group span {
  font-size: 14px;
  font-family: var(--gothic);
}


@media screen and (min-width: 768px) {
  section .box_list{
    margin:150px auto 100px;
    width: 1000px;
  }
  .box_list:first-of-type{
    margin-top:0;
  }
  .box_list:nth-of-type(2),
  .box_list:nth-of-type(4) {
    flex-direction: row-reverse;
  }

  .list_image2_r img:nth-of-type(2){
    margin-top:10px;
  }

}
@media screen and (max-width: 767px) {
  .back_gray{
    margin:40px 0;
    padding:40px 0;
  }
  .box_list {
    flex-direction: column;
    margin-top: 100px;
  }
  .box_list:first-of-type {
    margin-top: 0;
  }
  .list_feature, .list_image {
    width: 100%;
  }
  /*
  .list_feature_title {
    padding-left: 20px;
  }*/
  .list_image2{
    flex-direction: column-reverse;
  }
  .list_image2_l{
    width: 100vw;
    margin: 50px calc(50% - 50vw) 0;
  }
  .list_image2_r{
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  .list_image2_r img{
    width: calc(185/375*100%);
  }
  .h3_middle {
    font-size: 30px;
  }
  .h3_large {
    font-size: 70px;
    text-align: center;
  }
  .h3_small {
    font-size: 14px;
    margin-bottom: 18px;
  }
  .list_feature_title img {
    width: calc(180/355*100%);
  }
  .list_feature > img {
    margin-top: 3px;
  }
  .list_feature_catch {
    font-size: 18px;
    line-height: 1.5;
    margin-top: 21px;
    /* padding: 0 calc(20/375*100%); */
  }
  .list_feature_text {
    font-size: 15px;
    line-height: 1.73;
    margin-top: 15px;
    /* padding: 0 calc(20/375*100%); */
  }
  .list_button_group {
    position: relative;
    margin-top: -20px;
    /* padding: 0 calc(20/375*100%); */
    flex-wrap: wrap;
    /* flex-direction: row-reverse; */
  }
  .list_button {
    width: calc(335 / 375 * 100%);
    padding: 19px 0px;
    margin: 0 auto;
    font-size: 20px;
    border-radius: 30px;
    height: 60px;
  }
  .button_01 {
    order: 2
  }
  .button_02 {
    order: 1
  }
  .list_button_group span {
    font-size: 12px;
    margin-top: 5px;
    order: 3
  }
}
/* 間取り */
.flooarplan{
  display: flex;
  width: 50%;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .flooarplan{
    display: block;
    width: 100vw;
    margin: 50px calc(50% - 50vw) 0;
  }
}
/* 物件概要 */
.outline_price{
  font-size: 20px;
  margin-top: 50px;
  font-family: var(--mincho);
}
.outline_container {
  display: flex;
  justify-content: space-between;
}
.outline_detail,.outline_detail2 {
    width: calc(450/1000*100%);
    margin-top: 60px;
}
.outline_detail li.subtitle,.outline_detail2 li.subtitle{
  border-bottom: none;
}
.outline_detail li,.outline_detail2 li {
    display: flex;
    align-items: center;
    padding: 11px 0;
    border-bottom: solid 1px #808080;
    text-align: left;
  }
.outline_detail li p:first-child,.outline_detail2 li p:first-child {
  font-size: 16px;
  letter-spacing: .1em;
  width: calc(120/450*100%);
}
.outline_detail2 li p:first-child {
  width: calc(370/450*100%);
}
.outline_detail li p:last-child,.outline_detail2 li p:last-child {
  line-height: 1.75;
  letter-spacing: .02em;
  font-feature-settings: 'palt';
  width: calc(173/450*100%);
}
.outline_detail2 li p:last-child {
  width: calc(80/450*100%);
}
.outline_detail2 li.last{
  border-bottom: none;
}
.outline_detail2 li.last p:first-child{
  width: 100%;
}
@media screen and (max-width: 767px) {
  .outline_container {
    flex-direction: column;
    margin-top: 38px;
    padding-bottom: 19px;
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.outline_detail{
  margin-top: 30px;
}
  .outline_detail,  .outline_detail2 {
      width: 100%;
  }
  .outline_detail li, .outline_detail2 li {
      border-bottom: none;
      height: 57px;
      padding: 0 5%;
      border-bottom: solid 1px #808080;
  }
  .outline_detail li p:first-child,.outline_detail2 li p:first-child  {
      font-size: 14px;
      line-height: 24px;
      text-align: left;
      font-weight: 400;
  }
  .outline_detail li p:last-child,.outline_detail2 li p:last-child {
      font-size: 14px;
      line-height: 1.3;
      white-space: nowrap;
  }
}

/* *************
    VOICE
************* */
.area__voice .area__container{
  background-image: url(./images/img_voice_bg.jpg);
  background-size: cover;
  padding-top: 123px;
  padding-bottom: 80px;
}
.voice_box{
  background-color: #fff;
  width: 100%;
  padding:40px;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.voice_box + .voice_box {
  margin-top: 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;
  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) {
  .area__voice h2:after {
    z-index: 1;
  }
  .area__voice h2 span {
    z-index: 2;
    position: relative;
  }
  .area__voice .area__container {
    position: relative;
    width: 100vw;
    margin: 33px calc(50% - 50vw);
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .voice_box {
    width: calc(335 / 375* 100%);
    margin: 30px auto 0;
    padding: 40px 20px;
    z-index: 3;
  }
  .voice_box:first-child {
    margin-top: -50px;
  }
  .voice_box p {
    margin-top: 20px;
  }
  .voice_box p {
    width: 100%;
    font-size: 1rem;
  }
  .voice_box img.voice01,
  .voice_box img.voice02 {
    width: 40%;
    position: relative;
    margin: 19px auto 0;
    display: block;
  }
}
/* *************
    ACCESS
************* */
.area__access .area__inner {
  display: flex;
  justify-content: space-between;
}
.access__list {
  width: 38%;
}
.access__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.access__item + .access__item {
  margin-top: 1rem;
}
.access__way {
  display: flex;
  align-items: center;
}
p.station{
  font-size: 1rem;
  line-height: 1.625;
}
.access__item img {
  width: 70px;
  aspect-ratio: 1/1;
  margin-right: 10px;
}
.minute {
  font-size: 1rem;
  display: flex;
  align-items: baseline;
  line-height: 1;
}
.minute span.minute__num {
  font-size: 1.625rem;
  margin: 0 .8rem;
}
.access__notice {
  font-size: 14px;
  margin-top: 25px;
}
.access_map {
  width: 48.5%;
}
@media screen and (max-width: 767px) {
  .area__access .area__container {
    margin-top: 60px;
  }
  .area__access .area__inner {
    flex-direction: column-reverse;
    padding-top: 0;
  }
  .access_map {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
}
.access__list {
  margin-top: 40px;
  width: 100%;
}
.access__item {
  position: relative;
  justify-content: flex-start;
}
.access__item img {
  width: 70px;
  height: auto;
  margin-right: 10px;
}
.minute {
  font-size: 16px;
  line-height: 1.6;
  display: block;
}
.minute span.minute__num {
  font-size: 22px;
  line-height: 1;
}
.access_notice {
    font-size: 11px;
    margin-right: 5%;
}

  .station {
      font-size: 15px;
  }
}
/* *************
    DATA
************* */
.data__star {
  width: 306px;
  margin: 50px auto 0;
  display: block;
}
.data__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(4, 1fr);
    grid-template-columns: calc(240/1000*100%) 1fr;
    grid-template-rows: max-content max-content 1fr auto;
    margin: 60px 0;
  }
  
.data__grid-01 { 
  grid-area: 1 / 1 / 2 / 3;
}
.data__grid-02 { 
  grid-area: 2 / 1 / 3 / 3;
  letter-spacing: .02em;
  font-weight: 700;
  margin-top: 41px;
}
.data__grid-03 {
  grid-area: 3 / 1 / 4 / 2;
  margin-top: 31px;
  display: flex;
  align-items: baseline;
}
.data__grid-03 img {
  width: 110px;
  height: auto;
}
.data__grid-03 img + img {
  margin-left: 12px;
}
.data__grid-04 { 
  grid-area: 3 / 2 / 4 / 3;
  margin-top: 31px;
}
.data__grid-04 li {
  font-size: 15px;
  font-family: var(--gothic);
  display: flex;
  justify-content: space-between;
  width: 240px;
  height: 26px;
  border-bottom: solid 1px #707070;
  padding: 0 0 6px 38px;
  position: relative;
}
.data__grid-04 li + li {
  margin-top: 17px;
}
.data__grid-04 li::before {
  content: '';
  background-color: #707070;
  width: 40px;
  height: 1px;
  position: absolute;
  transform: rotate(-55deg);
  top: 37%;
  left: -3%;
}
.data-num {
  font-size: 0.8rem;
}
.data-num-strong {
  font-size: 18px;
  font-weight: 700;
}
.data__grid-05 {
  grid-area: 4 / 1 / 5 / 3;
  margin-top: 31px;
}
.data__grid-06 { 
  grid-area: 1 / 3 / 5 / 4;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 35px;
}
.data__grid-06 .data_list_item {
  display: flex;
}
.data__grid-06 .data_list_item img {
  width: 120px;
  aspect-ratio: 1 / 1;
}
.data__grid-06 .data_list_item .data_list_item_text {
  display: flex;
  flex-direction: column;
  margin-left: 20px;
}
.data__grid-06 .data_list_item .data_list_title {
  font-size: 18px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  line-height: 1;
  margin-bottom: 10px;
}
.data__grid-06 .data_list_item .data_list_title span {
  font-size: 12px;
  font-weight: 400;
}
.data__grid-06 .data_list_item:last-of-type .data_list_title {
  display: block;
} 
small {
  font-size: .8em;
}
.data__column.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .area__data h3 {
    text-align: center;
  }
  .data__star {
    width: calc(274/375*100vw);
    margin-top: 30px;
  }
  .data__grid {
    margin-top: 30px;
  }
  .data__grid {
    display: grid;
    /* grid-template-columns:repeat(calc(167/375*100vw), 1fr);
    grid-template-rows: repeat(5, 1fr); */
    grid-template-rows: max-content max-content max-content max-content;
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    margin: 30px 0 0;
    }
    
    .data__grid-01 { grid-area: 1 / 1 / 2 / 3; }
    .data__grid-02 { 
      grid-area: 4 / 1 / 5 / 3;
      display: none;
    }
    .data__grid-03 { 
      grid-area: 5 / 2 / 6 / 3;
      flex-direction: column;
      align-items: flex-end;
     }
     .data__grid-03 img + img {
      margin: 10px 0 0 ;
     }
    .data__grid-04 { 
      grid-area: 5 / 1 / 6 / 2;
      width: calc(190/375*100VW);
    }
    .data__grid-04 p {
      font-size: 1rem;
      line-height: 1.625;
    }
    .data__grid-04 ul {
      margin-top: 34px;
    }
    .data__grid-04 li {
      width: 100%;
    }
    .data__grid-05 {
      grid-area: 3 / 1 / 4 / 3;
      width: 100vw;
      margin: 30px calc(50% - 50vw) 0;
    }
    .data__grid-06 { 
      grid-area: 2 / 1 / 3 / 3;
      margin: 30px 0 0;
     }
     .data__grid-06 .data_list_item {
      align-items: flex-start;
     }
     .data__grid-06 .data_list_item img {
      width: calc(120 / 335* 100%);
      aspect-ratio: 1/1;
     }
  .data__column{
    width: 100%;
    margin: 0 20px 5%;
  }
  .data__grid-06 .data_list_item .data_list_item_text {
    margin-left: 1rem;
  }
  .data__grid-06 .data_list_item .data_list_title {
    font-size: 1rem;
    font-feature-settings: 'palt';
    flex-direction: column;
  }
  .data__grid-06 .data_list_item .data_list_title span {
    font-size: 10px;
    margin: 5px 0 0;
  }
  .data_list_item_text p {
    font-size: 15px;
    line-height: 1.6;
    font-feature-settings: 'palt';
  }
  .data_list_item_text p:last-of-type {
    margin-top: 6px;
  }
  .data_list_item + .data_list_item {
    margin-top: 30px;
  }
}

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

.area__about{
  margin-top: 136px;
}
.area__about .area__inner {
  display: flex;
  justify-content: space-between;
  margin-top: 60px;
  flex-wrap: wrap;
}
.about__column{
  width: 48.5%;
}
.about_column p{
  line-height: 200%;
}

@media screen and (max-width: 767px) {
  .area__about {
    margin-top:60px;
  }
  .area__about .area__inner {
    margin-top: 0;
    padding: 0;
    flex-direction: column;
  }
  .about__column {
    width: 100%;
  }
  .about__column + .about__column {
    margin-top: 30px;
  }
  .about__column img {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
  .about_box {
    flex-direction: column-reverse;
  }

  .about_column {
    width: 100%;
  }

  img.about_motif{
    display: none;
  }

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

}

/* *************
      FORM
************* */
.area__form{
  margin:0 auto;
  padding:136px 0;
}
.form__title {
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: .1em;
  color: #000;
  text-align: center;
  position: relative;
  height: 2.8em;
}
.form__title span.line::after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  bottom: 35px;
  width: 56px;
  height: 1px;
  background-color: #3B4043;
}
.form__title span.kana {
  padding-top: 2em;
  font-size: 1.25rem;
  box-sizing: border-box;
  display: inline-block;
}
.form_box{
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .area__form {
    padding:60px 0;
  }
  .form__title {
    font-size: 2rem;
  }
  .form__title span.line::after {
    content: none;
  }
  .form__title span.kana {
    letter-spacing: .02em;
    padding-top: 30px;
  }
}
/* *************
      FOOTER
************* */

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

.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;
line-height: 150%;
}

.copyright {
  color: #fff;
  font-size: 14px;
  letter-spacing: .1em;
}
@media screen and (max-width: 767px) {
.footer_container {
  display: block;
  max-width: 100%;
  padding: 42px 5% 21px;
}

.footer_logo img {
  width: 100px;
}

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

.footer_logo p {
  font-size: 12px;
  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) { 
  #page-top {
    width: 100%;
    bottom: 10px;
    right:0;
    padding-top:1em;
    z-index: 4;
  }
  .float_bnr {
      width: 90%;
      margin: 0 auto;
    }
}
/* *************
      Thanksページ
************* */
#thanks {
  height: auto;
  font-family: var(--mincho);
}
#thanks main {
  max-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: column;
  padding: 100px 10% 0;
  margin: 0 auto;
  height: 100%;
  justify-content: flex-start;
  background-color: #edece2;
}
.thanks__container {
  width:100%;
  max-width:900px;
  background:url("images/bg_thanks.png") center center no-repeat;
  background-size:cover;
  padding:3em 0;
  margin:20px auto;
  border-radius:2em;
}
.thanks__container>dl{
  margin:auto;
  padding:6em 3.5%;
  text-align: center;
}
.thanks__container>dl>dt{
    font-weight:bold;
    padding: .5em 0 1.5em 0;
    letter-spacing:.1em;
}
.thanks__container>dl>dt .big {
    font-size:1.5em;
    display:block;
    padding-top:.8em;
    font-family: var(--mincho);
}
.ts {
  padding-right: 0.1em;
  padding-left: 0.1em;
  color: #de5a5a;
}
.list-type-kome {
  margin: 0 0 1em;
  line-height: 1.5em;
}
.list-type-kome>li {
  display: block;
  position: relative;
  padding-left: 1.2em;
  text-align: left;
  font-size: 99%;
}
.list-type-kome>li::before {
  content: "\203b";
  position: absolute;
  left: 0;
  top: 0;
}
#thanks main>p {
  width: 100%;
  margin: 20px 0;
  line-height: 0;
  text-align: center;
}
#thanks .a-btn {
  display: inline-block;
  margin-bottom: 2px;
  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;
}

@media(min-width:40em) {
  .thanks__container {
    border-radius: 3.5em;
    margin: 30px auto 50px auto;
  }
  .thanks__container>dl>dt{
      font-size:28px;
      font-size:1.75rem;
      line-height: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  #thanks .a-btn {
      width: 60vw;
      min-width: 280px;
      font-size: 18px;
      height: 38px;
      line-height: 38px;
  }
}

