@charset "UTF-8";
/***********************************
    setting
    # import
    # colors
    # fonts
    # fontSize
    # breakPoint
***********************************/
/* import
------------------------------ */
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700,900&display=swap&subset=japanese");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&display=swap");
/* color
------------------------------ */
/* fonts
------------------------------ */
/* fontSize
------------------------------ */
/* break point
------------------------------ */
/* contents
------------------------------ */
/***********************************
    base
    # reset
    # base
    # headings
    # typography
    # media
    # links
***********************************/
/***********************************
    base
    # reset
    # base
    # headings
    # typography
    # media
    # links
***********************************/
/* reset
---------------------------------- */
@import url(./css/base/sanitize.css);
/* base
---------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  color: #2a1c25;
  background: #f5f4f2;
  font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "メイリオ", Meiryo, "Yu Gothic", YuGothic, sans-serif;
  font-size: 15px;
  letter-spacing: 0.025em;
  line-height: 1.6;
  word-wrap: break-word;
}

small {
  font-size: 0.8em;
}

strong, b {
  font-weight: bold;
}

/* headings
---------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin-top: 0.25em;
  margin-bottom: 0;
  font-weight: 500;
  letter-spacing: 0.1em;
}

/* typography
---------------------------------- */
p {
  margin-top: 0.2em;
  margin-bottom: 0.65em;
  text-align: justify;
}

ul {
  margin-top: 0;
  margin-bottom: 0;
  padding-left: 0;
}

dd {
  margin-left: 0.8em;
}

/* media
---------------------------------- */
figure {
  margin: 0;
  padding: 0;
}

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

/* links
---------------------------------- */
a {
  text-decoration: none;
  color: #c6911c;
}

a.no-link {
  pointer-events: none;
}

/************************************
    pc
*************************************/
@media screen and (min-width: 1000px) {
  a {
    cursor: pointer;
    -webkit-transition: opacity 0.5s;
    transition: opacity 0.5s;
  }
  a:hover {
    opacity: 0.8;
  }
  a img {
    -webkit-transition: -webkit-transform 0.3s;
    transition: -webkit-transform 0.3s;
    transition: transform 0.3s;
    transition: transform 0.3s, -webkit-transform 0.3s;
  }
  a img:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
  }
}
/***********************************
    elements
    # title
    # catch
    # textColor
    # fontSize
    # buttons
***********************************/
/***********************************
    elements
    # title
    # catch
    # textColor
    # fontSize
    # buttons
***********************************/
/* font
------------------------------ */
.font-serif {
  font-family: "Noto Serif JP", serif;
}

/* title
------------------------------ */
.title {
  margin-top: 2rem;
}
.title-simple {
  padding: 4px;
  background: #2a1c25;
  color: #FFFFFF;
  border-radius: 30px;
  font-size: 1.4em;
  font-weight: 500;
  text-shadow: 1px 1px 0 #000;
  text-align: center;
}

/* textColor
------------------------------ */
.textColor-orenge {
  color: #c6911c;
}

/* fontSize
------------------------------ */
.fontSize-90 {
  font-size: 90%;
}
.fontSize-140 {
  font-size: 140%;
}

/************************************
    sp
*************************************/
/************************************
    tb
*************************************/
@media screen and (min-width: 600px) {
  /* title
  ------------------------------ */
  .title-simple {
    padding: 6px;
    font-size: 28px;
  }
  /* buttons
  ------------------------------ */
  @-webkit-keyframes animation {
    0% {
      -webkit-transform: scale(100%);
              transform: scale(100%);
    }
    50% {
      -webkit-transform: scale(102%);
              transform: scale(102%);
    }
    90% {
      -webkit-transform: scale(100%);
              transform: scale(100%);
    }
  }
  @keyframes animation {
    0% {
      -webkit-transform: scale(100%);
              transform: scale(100%);
    }
    50% {
      -webkit-transform: scale(102%);
              transform: scale(102%);
    }
    90% {
      -webkit-transform: scale(100%);
              transform: scale(100%);
    }
  }
  .button-cta img {
    -webkit-animation: animation 1.5s ease-in-out infinite;
            animation: animation 1.5s ease-in-out infinite;
  }
}
/************************************
    pc
*************************************/
/***********************************
    components
    # snsIconsArea
    # langSwitch
    # dotList
    # numberList
    # detailList
    # stepList
***********************************/
/***********************************
    components
    # 
***********************************/
.forTop {
  width: 60px;
  height: 60px;
  background: url(./images/common/arrow.svg) no-repeat center/16px, #c6911c;
  -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  border-radius: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  display: block;
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 100;
}

/************************************
    sp
*************************************/
/************************************
    pc
*************************************/
/***********************************
    layouts
    # header
    # main
    # footer
    # common
***********************************/
/***********************************
    layouts
    # header
    # main
    # footer
    # common
***********************************/
/* header
------------------------------ */
.header {
  width: 100%;
  padding: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
.header_logo {
  width: 40%;
  height: 40px;
  margin-top: 0;
  padding-left: 5px;
  line-height: 1;
}
.header_logo img {
  width: auto;
  height: 100%;
}
.header_tel {
  width: 56%;
  height: 40px;
  padding-top: 5px;
  text-align: right;
}
.header_tel img {
  max-width: 240px;
}

/* main
------------------------------ */
.main {
  width: 100%;
  overflow: hidden;
  background: #f5f4f2;
}

/* footer
------------------------------ */
.footer {
  width: 100%;
  text-align: center;
}
.footer .copy {
  padding: 0.5em 0;
  margin: 0;
  background: #f5f4f2;
  text-align: center;
  letter-spacing: 0.05em;
}
.footer .copy a {
  color: black;
}

/* common
------------------------------ */
.pc {
  display: none;
}

.contentsInner {
  max-width: 1060px;
  margin: auto;
  padding: 0 20px;
}

/************************************
    tablet
*************************************/
@media screen and (min-width: 600px) {
  /* header
  ------------------------------ */
  /* common
  ------------------------------ */
  .sp {
    display: none;
  }
  .tb {
    display: block;
  }
  .pc {
    display: none;
  }
  .pc.tb {
    display: block;
  }
  .contentsInner {
    padding: 0 30px;
  }
}
/************************************
    pc
*************************************/
@media screen and (min-width: 1000px) {
  /* header
  ------------------------------ */
  .header_logo {
    width: 220px;
    height: 50px;
  }
  /* main
  ------------------------------ */
  /* common
  ------------------------------ */
  .tb {
    display: none;
  }
  .pc {
    display: block;
  }
}
/***********************************
    blocks
    # mainVisual
    # intro
    # mission
    # market
    # mechanism
    # about
    # roadmap
    # coinsale
***********************************/
/***********************************
    blocks
    # mainVisual
    # intro
***********************************/
/* mainVisual
------------------------------ */
.mv {
  width: 100%;
  height: 100vh;
  max-height: 700px;
  background: url(./images/mv/mv_bg.jpg) no-repeat center/cover;
  position: relative;
}
.mv_contents {
  width: 100%;
  height: 100%;
  margin: auto;
  position: relative;
}
.mv_inner {
  width: 100%;
  max-width: 1060px;
  height: 100%;
  margin: auto;
  padding-left: 10px;
  padding-right: 10px;
  padding-top: 60px;
  position: relative;
}
.mv_body {
  text-align: center;
  z-index: 10;
}
.mv_catch {
  max-width: 370px;
  margin: auto;
}
.mv_button {
  width: 100%;
  max-width: 400px;
  margin: auto;
  padding-left: 15px;
  padding-right: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: block;
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 10;
}
.mv_button img {
  -webkit-box-shadow: 7px 7px 10px rgba(42, 28, 37, 0.4);
          box-shadow: 7px 7px 10px rgba(42, 28, 37, 0.4);
  border-radius: 20px;
}
.mv_imagePerson {
  width: 100%;
  height: 100%;
  max-width: 400px;
  max-height: 400px;
  background: url(./images/mv/mv_person.png) no-repeat;
  background-size: 120%;
  background-position: left 4vw bottom 70%;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
}
.mv_imagePerson::before {
  content: "";
  width: 45%;
  padding-top: 45%;
  background: url(./images/mv/mv_medal.png) no-repeat center/contain;
  display: block;
  position: absolute;
  left: 10px;
  bottom: 50%;
}
.mv::after {
  content: "";
  width: 60%;
  height: 80%;
  max-width: 430px;
  background: url(./images/mv/mv_bags.png) no-repeat center bottom/100%;
  display: block;
  position: absolute;
  right: 0;
  bottom: -100px;
  overflow: hidden;
  z-index: 1;
}

/* intro
------------------------------ */
.intro {
  width: 100%;
  margin: 0;
  padding-top: 60px;
  padding-bottom: 40px;
  background: url(./images/intro/intro_bg.png) no-repeat center/200%, #FFFFFF;
  position: relative;
}
.intro_inner {
  width: 100%;
  max-width: 700px;
  margin: auto;
  margin-bottom: 100px;
  padding: 15px;
  padding-bottom: 80px;
  text-align: center;
  position: relative;
}
.intro_inner::before {
  content: "";
  width: 180px;
  height: 180px;
  background: url(./images/intro/intro_illust_01.png) no-repeat center/contain;
  display: block;
  position: absolute;
  left: 0;
  bottom: -120px;
  z-index: 10;
}
.intro_inner::after {
  content: "";
  width: 180px;
  height: 180px;
  background: url(./images/intro/intro_illust_02.png) no-repeat center/contain;
  display: block;
  position: absolute;
  right: 0;
  bottom: -120px;
  z-index: 10;
}
.intro_troublesList {
  margin-top: 2em;
  text-align: center;
}
.intro_troublesList_item {
  margin-top: 1em;
  font-weight: 500;
  list-style: none;
  text-shadow: 1px 2px 0 #FFFFFF;
  font-size: 4.6vw;
}
.intro::after {
  content: "";
  width: 100%;
  height: 200px;
  background: url(./images/intro/bg_arrow_sp.png) no-repeat top center/100%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -200px;
}

/* solution
------------------------------ */
.solution {
  padding-top: 100px;
  background: url(./images/common/bg_global.jpg) no-repeat center top -100px/300%;
}
.solution_title {
  padding-left: 12px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.1;
  text-align: center;
  font-size: 2.4em;
}
.solution_title_tag {
  width: 80%;
  max-width: 320px;
  padding-right: 12px;
  margin: auto;
  display: block;
}
.solution_body {
  margin-top: 30px;
  padding-bottom: 60px;
  position: relative;
}
.solution_body_inner {
  padding-bottom: 20px;
  position: relative;
  z-index: 10;
}
.solution_body_inner::before {
  content: "";
  width: 100vw;
  height: calc(100% - 40px);
  background: #FFFFFF;
  -webkit-box-shadow: 0 10px 10px rgba(102, 51, 0, 0.1);
          box-shadow: 0 10px 10px rgba(102, 51, 0, 0.1);
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw);
  display: block;
  z-index: -1;
}
.solution_body_inner::after {
  content: "";
  width: 60%;
  height: 100%;
  background: url(./images/solution/solution_person.png) no-repeat;
  background-size: 100%;
  background-position: bottom 0 right -50px;
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
}
.solution_icons {
  width: 54%;
  margin-top: 20px;
}

/* performance
------------------------------ */
.performance {
  padding-top: 50px;
  padding-bottom: 50px;
  background: #FFFFFF;
}
.performance_title {
  width: 100%;
  margin: auto;
}
.performance_title img {
  margin: auto;
}
.performance_text {
  margin-top: 60px;
  font-size: 1.1em;
  font-weight: bold;
}
.performance_text p {
  text-align: center;
}

.instagram {
  position: relative;
}
.instagram_feed {
  width: 90%;
  max-width: 1000px;
  min-height: 200px;
  margin: auto;
  margin-top: -20px;
  background: #fff;
  -webkit-box-shadow: 0 10px 20px rgba(102, 51, 0, 0.1);
          box-shadow: 0 10px 20px rgba(102, 51, 0, 0.1);
}
.instagram_icon {
  width: 60px;
  height: 60px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 10px 20px rgba(102, 51, 0, 0.1);
          box-shadow: 0 10px 20px rgba(102, 51, 0, 0.1);
  border-radius: 50%;
  border: 1px solid #ccc;
  color: #000;
  font-size: 30px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: calc(50% - 30px);
  bottom: -30px;
}

/* advantage
------------------------------ */
.advantage {
  padding-top: 50px;
  padding-bottom: 40px;
  position: relative;
}
.advantage::before, .advantage::after {
  content: "";
  width: 50%;
  height: 150px;
  background-size: 100%;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
}
.advantage::before {
  background-image: url(./images/advantage/bg_triangle_left.svg);
  left: 0;
}
.advantage::after {
  background-image: url(./images/advantage/bg_triangle_right.svg);
  right: 0;
}
.advantage_titleArea {
  width: 100%;
  padding-top: 50px;
  position: relative;
}
.advantage_titleArea_text {
  margin-top: 1.5em;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.8;
}
.advantage_titleArea::before {
  content: "";
  width: 120px;
  height: 40px;
  background: url(./images/advantage/advantage.svg) no-repeat center;
  display: block;
  position: absolute;
  left: calc(50% - 60px);
  top: 20px;
}
.advantage_title {
  margin-top: 1em;
  padding-bottom: 0.8em;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0;
  text-align: center;
  line-height: 1.2;
  border-bottom: 1px solid #2a1c25;
}
.advantage_title .logo {
  margin-right: 5px;
}
.advantage_title .logo img {
  height: 0.9em;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}
.advantage_list {
  margin-top: 40px;
}
.advantage_list_item {
  margin: 0;
  margin-top: 1em;
  padding: 5px 15px;
  background: #FFFFFF;
  border: 1px solid #c69c6d;
  list-style: none;
  position: relative;
}
.advantage_list_item::before {
  content: "";
  width: 60px;
  height: 66px;
  background-repeat: no-repeat;
  background-size: 100%;
  background-position: center;
  display: block;
  position: absolute;
  left: -10px;
  top: 15px;
  z-index: 1;
}
.advantage_list_item:nth-child(1)::before {
  background-image: url(./images/advantage/icon_01.svg);
}
.advantage_list_item:nth-child(2)::before {
  background-image: url(./images/advantage/icon_02.svg);
}
.advantage_list_item:nth-child(3)::before {
  background-image: url(./images/advantage/icon_03.svg);
}
.advantage_list_item:nth-child(4)::before {
  background-image: url(./images/advantage/icon_04.svg);
}
.advantage_list_item:nth-child(5) .advantage_list_title {
  letter-spacing: 0;
}
.advantage_list_item:nth-child(5)::before {
  background-image: url(./images/advantage/icon_05.svg);
}
.advantage_list_item:nth-child(6)::before {
  background-image: url(./images/advantage/icon_06.svg);
}
.advantage_list_title {
  margin-top: 0.6em;
  margin-left: 50px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  line-height: 1.3;
  position: relative;
}
.advantage_list_body {
  min-height: 90px;
  margin-top: 15px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.advantage_list_image {
  width: 80px;
}
.advantage_list_text {
  width: calc(100% - 80px);
  padding-left: 15px;
  font-size: 14px;
  line-height: 1.5;
}

.dot-text {
  padding-top: 0.2em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.03em 0.3em;
  background-image: -webkit-radial-gradient(0.1em 0.1em at center center, #c69c6d, #c69c6d 100%, transparent);
  background-image: -webkit-radial-gradient(center center, 0.1em 0.1em, #c69c6d, #c69c6d 100%, transparent);
  background-image: radial-gradient(0.1em 0.1em at center center, #c69c6d, #c69c6d 100%, transparent);
}

/* area
------------------------------ */
.area {
  width: 100%;
  padding: 15px;
  padding-top: 40px;
  padding-bottom: 100vw;
  background: url(./images/area/area_map.png) no-repeat, #FFFFFF;
  background-size: 585%;
  background-position: left -180vw bottom;
}
.area_board {
  width: 300px;
  height: 324px;
  margin: auto;
  background: url(./images/area/area_bord_sp.png) no-repeat center/100%;
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.area_title {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6em;
  font-weight: bold;
  position: relative;
}
.area_title::before, .area_title::after {
  content: "";
  width: 2px;
  height: 1em;
  background-color: #2a1c25;
  display: block;
  position: absolute;
  bottom: 4px;
}
.area_title::before {
  left: -15px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.area_title::after {
  right: -12px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.area_bar {
  width: 90%;
  padding: 4px;
  margin-top: 15px;
  background-color: #333;
  color: #FFFFFF;
  border-radius: 4px;
  text-align: center;
  font-size: 1.2em;
}
.area_badge {
  margin-top: 15px;
  padding-left: 20px;
  padding-right: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.area_badge_item {
  width: 50%;
  list-style: none;
}

/* flow
------------------------------ */
.flow {
  width: 90%;
  max-width: 800px;
  margin: auto;
  margin-top: 40px;
}
.flow_list {
  margin-top: 40px;
  counter-reset: number;
}
.flow_list_item {
  padding: 20px;
  margin-top: 50px;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.05);
          box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.05);
  list-style: none;
  position: relative;
}
.flow_list_item:not(:last-child)::after {
  content: "";
  width: 30px;
  height: 15px;
  -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
          clip-path: polygon(0 0, 100% 0%, 50% 100%);
  background-color: #c6911c;
  display: block;
  position: absolute;
  left: 50%;
  bottom: -34px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.flow_list_image {
  margin-top: 10px;
  padding-left: 10px;
  padding-right: 10px;
  counter-increment: number;
}
.flow_list_image::before {
  content: "step";
  width: 90px;
  height: 90px;
  padding: 15px;
  background: #FFFFFF;
  -webkit-box-shadow: 5px 5px 10px rgba(102, 51, 0, 0.1);
          box-shadow: 5px 5px 10px rgba(102, 51, 0, 0.1);
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 16px;
  color: #c6911c;
  display: block;
  position: absolute;
  left: -10px;
  top: -20px;
}
.flow_list_image::after {
  content: counter(number, decimal-leading-zero);
  width: 90px;
  height: 90px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 36px;
  font-weight: 500;
  color: #c6911c;
  display: block;
  position: absolute;
  left: -10px;
  top: 6px;
}
.flow_list_title {
  margin-top: 20px;
  color: #c6911c;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 0;
}
.flow_list_catch {
  letter-spacing: 0;
  font-weight: 600;
}
.flow_list_text {
  font-size: 14px;
}

/* contactArea
------------------------------ */
.contactArea {
  padding-top: 60px;
  padding-bottom: 60px;
}
.contactArea_tel {
  width: 100%;
  text-align: center;
}
.contactArea_tel_title {
  margin-bottom: 10px;
  line-height: 1;
  position: relative;
  display: inline-block;
}
.contactArea_tel_title::before, .contactArea_tel_title::after {
  content: "";
  width: 2px;
  height: 1em;
  background: #2a1c25;
  display: block;
  position: absolute;
  bottom: 0;
}
.contactArea_tel_title::before {
  left: -15px;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
.contactArea_tel_title::after {
  right: -15px;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
.contactArea_tel_call {
  max-width: 500px;
  margin: auto;
  display: block;
  text-align: center;
}
.contactArea_tel_time {
  text-align: center;
  font-weight: 500;
}
.contactArea_rightArea {
  margin-top: 20px;
}
.contactArea_forMail {
  margin-top: 20px;
}

/* rate
------------------------------ */
.rate {
  padding-top: 60px;
  padding-bottom: 60px;
  background: url(./images/rate/bg_globe.jpg) no-repeat center/300%;
}
.rate_inner {
  width: 90%;
  margin: auto;
  padding: 30px 10px;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.1);
          box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.1);
}
.rate_titleArea {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
  background: #2a1c25;
  text-align: center;
  color: #FFFFFF;
}
.rate_title {
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  display: inline-block;
  letter-spacing: 0;
  line-height: 1;
  position: relative;
}
.rate_title::before {
  content: "";
  width: 1.5em;
  height: 1em;
  background: url(./images/rate/icon_chart.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  left: -1.5em;
  bottom: 0;
}
.rate_table_date {
  margin-top: 0.5em;
  text-align: center;
  font-weight: 500;
  font-size: 1.2em;
}
.rate_table_item {
  margin-top: 10px;
  padding: 0 10px;
  background: #f5f4f2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
}
.rate_table_title {
  width: 100px;
  height: 100%;
  margin-top: 0;
  padding-bottom: 10px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-self: center;
      -ms-flex-item-align: center;
          align-self: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  font-size: 23px;
  letter-spacing: 0;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.rate_table_title span {
  width: 100%;
  font-size: 12px;
  display: block;
}
.rate_table_gold .rate_table_title {
  font-size: 32px;
}
.rate_table_priceList {
  width: calc(100% - 110px);
  margin-top: 5px;
  margin-bottom: 5px;
}
.rate_table_priceList_item {
  list-style: none;
}
.rate_table_priceList_item:not(:last-child) {
  border-bottom: 1px dotted #666666;
}
.rate_table_priceList_wrap {
  margin: 8px 0;
  padding: 10px;
  background: #808080;
  color: white;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.rate_table_gold .rate_table_priceList_wrap {
  background: #ceab00;
}
.rate_note {
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 1em;
  font-size: 14px;
}

/* faq
------------------------------ */
.faq {
  width: 100%;
  padding-top: 60px;
  padding-bottom: 60px;
  background: #FFFFFF;
}
.faq_inner {
  width: 90%;
  max-width: 800px;
  margin: auto;
}
.faq_list {
  margin-top: 40px;
}
.faq_list_item {
  padding: 15px 10px;
  margin-top: 10px;
  border: 1px solid #c69c6d;
  background: #FFFFFF;
  -webkit-box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.1);
          box-shadow: 10px 10px 20px rgba(102, 51, 0, 0.1);
}
.faq_list_question {
  padding-top: 0.2em;
  padding-left: 30px;
  padding-bottom: 0.8em;
  border-bottom: 1px solid #cccccc;
  position: relative;
}
.faq_list_question::before {
  content: "Q";
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  color: #c6911c;
  display: block;
  position: absolute;
  left: 5px;
  top: 0;
}
.faq_list_answer {
  margin-left: 0;
  padding-top: 1em;
  padding-right: 10px;
  padding-left: 30px;
  position: relative;
}
.faq_list_answer::before {
  content: "A";
  font-family: "Noto Serif JP", serif;
  font-size: 21px;
  color: #b3b3b3;
  display: block;
  position: absolute;
  left: 5px;
  top: 0.8em;
}
.faq_list_answer p {
  font-size: 14px;
  letter-spacing: 0;
}

/* form
------------------------------ */
.form {
  padding-left: 15px;
  padding-right: 15px;
  padding-top: 60px;
  padding-bottom: 40px;
  background: #fff;
}
.form_inner {
  width: 100%;
  max-width: 800px;
  margin: auto;
}
.form_front {
  margin-top: 30px;
  font-weight: 500;
}

.mailform {
  margin-top: 2em;
  padding-top: 1em;
  padding-bottom: 3em;
}
.mailform_button {
  text-align: center;
}

/* company
------------------------------ */
.company {
  width: 100%;
  padding-top: 20px;
  padding-bottom: 40px;
  background: #FFFFFF;
}
.company_title {
  text-align: center;
  font-weight: 500;
  font-size: 21px;
}
.company_contents {
  width: calc(100% - 30px);
  max-width: 800px;
  margin: auto;
  margin-top: 20px;
  padding: 10px 40px;
  border: 1px solid #808080;
}

.profileTable {
  width: 100%;
  margin: auto;
  background: white;
}
.profileTable_item {
  margin-top: 10px;
}
.profileTable_name {
  font-weight: 600;
  font-size: 15px;
}
.profileTable_text {
  padding-left: 0;
  margin-left: 0;
  font-size: 15px;
}

/************************************
    sp
*************************************/
@media screen and (max-width: 370px) {
  .advantage_title {
    font-size: 9vw;
  }
}
@media screen and (max-width: 600px) {
  .instagram_feed {
    overflow: hidden;
  }
  .instagram_feed iframe {
    width: 250% !important;
    height: 90vw !important;
  }
}
@media screen and (min-width: 370px) {
  /* mainVisual
  ------------------------------ */
  .mv_imagePerson {
    background-size: 100%;
    background-position: bottom;
  }
  .mv_imagePerson::before {
    width: 40%;
    padding-top: 40%;
    bottom: 45%;
  }
  /* advantage
  ------------------------------ */
  .advantage_list_title {
    font-size: 5vw;
  }
  /* contact
  ------------------------------ */
  .contact {
    background: #FFFFFF;
  }
  .contact_inner {
    width: 90%;
    margin: auto;
  }
  .contact_front {
    margin-top: 2em;
    font-weight: 500;
  }
  /* area
  ------------------------------ */
  .area {
    padding-bottom: 55vw;
    background-size: 330vw;
    background-position: left -80vw bottom -10px;
  }
  .area_board {
    width: 100%;
    max-width: 500px;
    height: 90%;
    max-height: 550px;
    padding: 30px 20px;
    background-image: url(./images/area/area_bord_pc.png);
  }
  .area_bar {
    font-size: 1em;
  }
}
/************************************
    tablet
*************************************/
@media screen and (min-width: 600px) {
  /* mainVisual
  ------------------------------ */
  .mv {
    height: 68vw;
    max-height: 600px;
  }
  .mv_body {
    width: 60%;
    margin-top: 10px;
  }
  .mv_button {
    margin-top: 20px;
    padding: 0;
    position: static;
  }
  .mv_imagePerson {
    width: 54vw;
    max-width: 680px;
    max-height: none;
    background-position: left 9vw bottom;
  }
  .mv_imagePerson::before {
    width: 35%;
    padding-top: 35%;
    bottom: 40%;
    left: 25%;
  }
  .mv::after {
    width: 40%;
    right: 5%;
  }
  /* intro
  ------------------------------ */
  .intro {
    background-size: 120%;
    background-position: center bottom -50px;
  }
  .intro::after {
    height: 80px;
    background-size: 100% 100px;
    bottom: -80px;
  }
  .intro_title {
    margin-top: 20px;
    position: relative;
  }
  .intro_title img {
    max-width: 416px;
    margin: auto;
  }
  .intro_title::before {
    content: "";
    width: 168px;
    height: 124px;
    background: url(./images/intro/tag_toroubles.svg) no-repeat left top;
    display: block;
    position: absolute;
    left: -25px;
    top: -45px;
  }
  .intro_inner {
    width: 90%;
    max-width: 700px;
    margin: auto;
    padding-bottom: 60px;
    background: url(./images/intro/intro_bg.png) no-repeat center/140%;
    -webkit-box-shadow: 0 5px 20px rgba(102, 51, 0, 0.2);
            box-shadow: 0 5px 20px rgba(102, 51, 0, 0.2);
  }
  .intro_inner::before {
    width: 200px;
    height: 200px;
    bottom: 40px;
    left: -10%;
  }
  .intro_inner::after {
    width: 200px;
    height: 200px;
    bottom: 40px;
    right: -10%;
  }
  .intro_troublesList {
    margin-top: 1.5em;
  }
  .intro_troublesList_item {
    margin-top: 0.6em;
    font-size: 18px;
  }
  /* solution
  ------------------------------ */
  .solution {
    background-position: center;
    background-size: 140%;
  }
  .solution_textbord {
    width: 70%;
    max-width: 500px;
  }
  .solution_body {
    margin-top: 50px;
  }
  .solution_body_inner {
    max-width: 800px;
    padding-top: 30px;
  }
  .solution_body_inner::after {
    width: 42%;
    height: 120%;
    background-position: center bottom;
  }
  .solution_body_inner::before {
    height: 100%;
  }
  .solution_icons {
    width: 57%;
    padding-left: 20px;
  }
  /* advantage
  ------------------------------ */
  .advantage_titleArea {
    max-width: 700px;
    margin: auto;
  }
  .advantage_list {
    padding-bottom: 50px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .advantage_list_item {
    -webkit-flex-basis: 49%;
        -ms-flex-preferred-size: 49%;
            flex-basis: 49%;
  }
  .advantage_list_item:nth-child(2n-1) {
    margin-right: 2%;
  }
  .advantage_list_title {
    font-size: 2.4vw;
  }
  /* flow
  ------------------------------ */
  .flow {
    padding-top: 40px;
  }
  .flow_list_item {
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
    padding: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .flow_list_image {
    width: 45%;
    max-width: 340px;
    margin-top: 0;
    padding: 0;
  }
  .flow_list_image img {
    width: 100%;
    height: 230px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .flow_list_textArea {
    width: 55%;
    max-width: 350px;
    margin: auto;
    padding-left: 30px;
    padding-right: 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
  }
  .flow_list_title {
    margin-top: 0;
  }
  .flow_list_catch {
    margin-bottom: 0.4em;
    margin-top: 0.6em;
    font-size: 16px;
  }
  /* contactArea
  ------------------------------ */
  .contactArea {
    max-width: 800px;
    margin: auto;
  }
  .contactArea_inner {
    padding: 0;
  }
  .contactArea_wrap {
    padding-left: 40px;
    padding-right: 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .contactArea_tel {
    width: calc(100% - 220px);
  }
  .contactArea_tel_time {
    margin-bottom: 0;
  }
  .contactArea_rightArea {
    width: 200px;
    margin-top: 0;
  }
  /* area
  ------------------------------ */
  .area {
    max-height: 570px;
    padding-bottom: 40px;
    background-size: 280%;
    background-position: center top 0;
  }
  .area_board {
    width: 50%;
    max-width: 500px;
    min-width: 360px;
    margin-right: 10px;
  }
  /* rate
  ------------------------------ */
  .rate {
    background-size: cover;
  }
  .rate_table {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .rate_table_date {
    width: 100%;
  }
  .rate_table_item {
    width: 49%;
  }
  /* form
  ------------------------------ */
  .form_front p {
    text-align: center;
    font-size: 18px;
  }
  .mailform {
    padding-top: 2.5em;
  }
  /* company
  ------------------------------ */
  .company_contents {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .profileTable {
    padding-top: 30px;
    padding-bottom: 30px;
  }
  .profileTable_item {
    width: auto;
    margin: 0.4em auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .profileTable_name {
    width: 140px;
  }
}
@media screen and (min-width: 768px) {
  /* mainVisual
  ------------------------------ */
  .mv {
    max-height: 740px;
  }
  .mv_body {
    width: 55%;
    margin-left: 20px;
  }
  .mv_catch {
    max-width: 550px;
  }
  .mv_button {
    max-width: 550px;
    margin-top: 40px;
  }
  .mv_imagePerson:before {
    width: 36%;
    padding-top: 36%;
    bottom: 45%;
  }
  /* area
  ------------------------------ */
  .area {
    background-size: 2200px;
    top: 0;
    bottom: auto;
  }
  .area_inner {
    max-width: 1000px;
    margin: auto;
  }
  /* flow
  ------------------------------ */
  .flow_list_title {
    font-size: 26px;
  }
  .flow_list_image {
    width: 50%;
  }
  .flow_list_image::before, .flow_list_image::after {
    left: -20px;
  }
  .flow_list_textArea {
    padding-left: 20px;
    padding-right: 10px;
  }
  /* rate
  ------------------------------ */
  .rate_inner {
    max-width: 1000px;
    padding-left: 40px;
    padding-right: 40px;
    padding-top: 40px;
  }
  .rate_table_date {
    width: 18%;
    max-width: 160px;
    background: #f5f4f2;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .rate_table_item {
    width: 40%;
  }
  .getGold_date {
    width: 100%;
    font-size: 1.5em;
    line-height: 1;
  }
  .getGold_day {
    width: 100%;
    line-height: 1.2;
  }
  .getGold_time {
    font-size: 15px;
    font-weight: 400;
  }
  /* faq
  ------------------------------ */
  .faq_list_item {
    padding: 20px;
  }
  .faq_list_question {
    padding-bottom: 1em;
    padding-left: 50px;
    font-size: 16px;
  }
  .faq_list_question::before {
    left: 0.4em;
    font-size: 28px;
    line-height: 1;
  }
  .faq_list_answer {
    padding-left: 50px;
  }
  .faq_list_answer::before {
    left: 0.4em;
    font-size: 28px;
    line-height: 1;
    top: 15px;
  }
}
/************************************
    pc
*************************************/
@media screen and (min-width: 1000px) {
  /* mainVisual
  ------------------------------ */
  .mv_contents {
    overflow: hidden;
  }
  .mv_body {
    width: 55%;
    margin-top: 40px;
    margin-left: 20px;
    position: relative;
    z-index: 10;
  }
  .mv_imagePerson {
    width: 60%;
    background-position: right bottom;
    right: -10%;
  }
  .mv_imagePerson:before {
    width: 30%;
    padding-top: 30%;
    bottom: 46%;
    left: 12%;
  }
  .mv::after {
    right: calc(55vw - 550px);
  }
  /* advantage
  ------------------------------ */
  .advantage_title {
    font-size: 2.6em;
  }
  .advantage_titleArea_text {
    text-align: center;
    font-size: 1.4em;
  }
  .advantage_list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .advantage_list_item {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 2em;
    padding-left: 0;
    padding-right: 0;
    -webkit-flex-basis: 32%;
        -ms-flex-preferred-size: 32%;
            flex-basis: 32%;
  }
  .advantage_list_item:nth-child(2n-1) {
    margin-right: 0;
  }
  .advantage_list_item:not(:nth-child(3n)) {
    margin-right: 2%;
  }
  .advantage_list_item::before {
    left: calc(50% - 30px);
    top: -30px;
  }
  .advantage_list_title {
    margin-left: 0;
    font-size: 23px;
    text-align: center;
  }
  .advantage_list_body {
    display: block;
  }
  .advantage_list_image {
    width: 100%;
    max-width: 280px;
    margin: auto;
    padding-bottom: 15px;
    text-align: center;
  }
  .advantage_list_text {
    width: 100%;
    max-width: 280px;
    padding: 0;
    margin: 0 auto;
    font-size: 16px;
  }
}
/************************************
    pc
*************************************//*# sourceMappingURL=style.css.map */