@charset "UTF-8";
/************************
  リセット
*************************/
*, *::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: inline-block;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
ul, ol, dl {
  margin: 0;
  padding: 0;
}

button {
  border: none;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font: inherit;
  color: inherit;
}

input, textarea {
  border: none;
  margin: 0;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: inherit;
  font: inherit;
  font-size: 1rem;
  border-radius: 0;
}

select {
  border: none;
  padding: 0;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0;
  cursor: pointer;
  color: inherit;
  font: inherit;
}

picture {
  margin: 0;
}

img {
  height: auto;
  vertical-align: top;
}

em,
address {
  font-style: normal;
}

/************************
  ベース
*************************/
*[role=button],
input[type=submit] {
  cursor: pointer;
}

:root {
  --menuHeight: 0;
}

body {
  background-color: #FFF;
  color: #312A26;
  font-family: "Noto Sans JP", "Noto Sans CJK JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: normal;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

a {
  display: inline-block;
  color: inherit;
  text-decoration: none;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media (max-width: 640px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a,
button,
*[role=button],
input[type=submit] {
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}
@media (min-width: 1001px) {
  a:hover,
button:hover,
*[role=button]:hover,
input[type=submit]:hover {
    opacity: 0.6;
  }
}

.inner {
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
  overflow: hidden;
}
@media (max-width: 640px) {
  .inner {
    padding: 0 4%;
  }
}

.font--serif {
  font-family: "Noto Serif JP", sans-serif;
}

.hiddenText {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  border: 0;
}

*[aria-hidden=true] {
  display: none;
}

.pc {
  display: block;
}
@media (max-width: 640px) {
  .pc {
    display: none;
  }
}

.tab {
  display: none;
}
@media (max-width: 1000px) {
  .tab {
    display: inline-block;
  }
}

.sp {
  display: none;
}
@media (max-width: 640px) {
  .sp {
    display: inline-block;
  }
}

.content__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .content__container {
    display: block;
  }
}
.content__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 260px;
  margin-bottom: 50px;
  color: #fff;
  background-repeat: no-repeat;
  background-position: left center;
  background-size: cover;
}
@media (max-width: 640px) {
  .content__heading {
    height: 173px;
    margin-bottom: 40px;
    background-position: center center;
  }
}
.content__heading--level1 {
  font-size: 2rem;
  line-height: 1.688;
  font-weight: 600;
}
@media (max-width: 640px) {
  .content__heading--level1 {
    font-size: 1.5rem;
  }
}
.content__heading--level2 {
  margin-bottom: 16px;
  font-size: 1.5rem;
  line-height: 1.292;
  font-weight: 600;
}
@media (max-width: 640px) {
  .content__heading--level2 {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
.content__heading--level3 {
  font-size: 1.125rem;
  line-height: 1;
  border-left: 4px solid;
  padding-left: 8px;
  margin-top: 36px;
}
@media (max-width: 640px) {
  .content__heading__big {
    font-size: 1.5rem;
  }
}
.content__heading__small {
  font-size: 1.13rem;
}
.content__wrap {
  margin-top: 60px;
}
.content__wrap:last-of-type {
  margin-bottom: 80px;
}
.content__wrap.style {
  margin-top: 0;
}
.content__aside {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 238px;
          flex: 0 0 238px;
  margin-right: 4%;
}
.content__lead {
  margin: 18px 0;
  font-size: 1rem;
  line-height: 1.313;
}
.content__searchResult {
  font-size: 1.125rem;
  line-height: 1.278;
  font-weight: 600;
  text-align: right;
  margin-bottom: 37px;
  padding-bottom: 37px;
  border-bottom: 1px solid #ddd;
}
.content__searchResult__value {
  color: #BC0E15;
}

.detail__movie {
  padding: 32px 0;
  background-image: url("../img/product/bg_detail_movie-pc.jpg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media (max-width: 640px) {
  .detail__movie {
    background-image: url("../img/product/bg_detail_movie-sp.jpg");
  }
}
.detail__movie__wrap {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-top: 338px;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .detail__movie__wrap {
    padding-top: 56.333%;
  }
}
.detail__movie__embed {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

/************************
  共通項
*************************/
* {
  min-width: 0;
  min-height: 0;
}

.font_orange {
  color: #ED6D0F;
}

.mark_orange {
  display: inline-block;
  background-color: #FFDB7F;
}

@media (max-width: 640px) {
  .sp_none {
    display: none !important;
  }
}
/************************
  ヘッダー
*************************/
header {
  padding: 170px 0 0;
  background: url(../images/top_bg.png) repeat-x;
  background-position: top left;
  background-size: auto 170px;
}
@media (max-width: 640px) {
  header {
    padding: 100px 0 0;
    background: url(../images/top_bg_sp.png) repeat-x;
    background-position: top left;
    background-size: auto 100px;
  }
}
header .inner {
  margin: 32px auto 0;
}
header .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 640px) {
  header .inner ul li:first-of-type {
    width: 65%;
  }
  header .inner ul li:last-of-type {
    width: 35%;
  }
  header .inner ul li:last-of-type picture {
    width: 100%;
  }
  header .inner ul li:last-of-type img {
    width: 100%;
  }
}
header .inner ul li p {
  margin: 26px 0 0;
  font-size: 1.38rem;
  font-weight: bold;
}
@media (max-width: 367px) {
  header .inner ul li p {
    font-size: 1.25rem;
  }
}
@media (max-width: 640px) {
  header .inner ul li a {
    display: none;
  }
}

/************************
  フッター
*************************/
footer {
  padding: 25px 0;
}
footer .img {
  text-align: center;
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  mv
*************************/
.mv {
  margin: 12px auto 0;
  background: url(../images/mv_bg.jpg) no-repeat center center/cover;
}
@media (max-width: 640px) {
  .mv {
    background: url(../images/mv_bg_sp.jpg) no-repeat center center/cover;
  }
}
.mv .inner {
  height: 853px;
}
@media (max-width: 640px) {
  .mv .inner {
    height: auto;
    padding-top: 54px;
    padding-bottom: 35px;
  }
}
.mv .inner .img_box {
  padding: 32px 0 0;
}
@media (max-width: 640px) {
  .mv .inner .img_box {
    text-align: center;
  }
}
.mv .inner .img_box picture {
  display: block;
  margin: 15px auto 0;
  text-align: center;
}
.mv .inner .img_box picture:first-child {
  text-align: right;
  margin-top: 12px;
}
@media (max-width: 640px) {
  .mv .inner .img_box picture .mv_car {
    display: none;
  }
  .mv .inner .img_box picture .mv_title {
    width: 350px;
  }
  .mv .inner .img_box picture .mv_text {
    width: 375px;
  }
}

.mv .inner .img_box {
  padding-block: 20px;
}
.mv .inner .img_box picture:first-child {
  margin-top: 0;
}
@media (max-width: 640px) {
  .mv .inner .img_box picture .mv_loan {
    width: 290px;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  sv
*************************/
.sv .inner {
  position: relative;
  margin: 33px auto 0;
  padding-bottom: 130px;
}
@media (max-width: 640px) {
  .sv .inner {
    padding-bottom: 40vw;
  }
}
.sv .inner .sv_img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .sv .inner .sv_img ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.sv .inner .sv_img ul li {
  margin: 0 0 0 25px;
}
@media (max-width: 640px) {
  .sv .inner .sv_img ul li {
    width: 100%;
    margin: 15px 0 0;
  }
  .sv .inner .sv_img ul li picture {
    width: 100%;
  }
  .sv .inner .sv_img ul li picture img {
    width: 100%;
  }
}
.sv .inner .sv_img ul li:first-child {
  margin: 0;
}
.sv .inner .fukidashi {
  position: relative;
  margin: 43px auto 0;
  padding: 29px 40px 32px;
  background: #ffcc4c;
  text-align: center;
  border-radius: 60px;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .sv .inner .fukidashi {
    border-radius: 18px;
  }
}
.sv .inner .fukidashi::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -15px;
  border: 15px solid transparent;
  border-top: 15px solid #ffcc4c;
}
@media (max-width: 640px) {
  .sv .inner .fukidashi::before {
    display: none;
  }
}
.sv .inner .fukidashi h3 {
  font-size: 1.63rem;
  color: #fff;
}
.sv .inner .fukidashi p {
  margin: 6px 0 0;
  font-size: 1.31rem;
}
@media (max-width: 640px) {
  .sv .inner .fukidashi p br {
    display: none;
  }
}
.sv .inner .text {
  margin: 53px auto 0;
  font-size: 1.81rem;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 640px) {
  .sv .inner .text {
    margin: 20px auto 0;
    font-size: 1.31rem;
    text-align: left;
  }
  .sv .inner .text br {
    display: none;
  }
}
.sv .inner .down_left_img {
  position: absolute;
  left: 4%;
  bottom: 0;
}
@media (max-width: 640px) {
  .sv .inner .down_left_img {
    width: 35%;
  }
}
.sv .inner .down_right_img {
  position: absolute;
  right: 4%;
  bottom: 0;
}
@media (max-width: 640px) {
  .sv .inner .down_right_img {
    width: 35%;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  point
*************************/
.point {
  background: url(../images/point_bg.png) no-repeat;
  background-size: 100% 100%;
  margin: -103px auto 0;
  padding-bottom: 65px;
}
.point .inner {
  padding-top: 122px;
}
.point .inner h2 {
  text-align: center;
}
.point .inner .total_pro2 {
  display: none;
}
@media (max-width: 1000px) {
  .point .inner .total_pro2 {
    display: block;
    margin: 50px auto 0;
    text-align: center;
  }
}
.point .inner ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.point .inner ul li {
  position: relative;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 2px 2px 3px rgba(145, 138, 136, 0.75);
          box-shadow: 2px 2px 3px rgba(145, 138, 136, 0.75);
  margin: 25px auto 0;
  padding: 60px 60px 30px;
}
@media (max-width: 1000px) {
  .point .inner ul li {
    margin: 120px auto 0;
  }
}
@media (max-width: 640px) {
  .point .inner ul li {
    margin: 70px auto 0;
    padding: 6%;
  }
}
.point .inner ul li .point_img {
  position: absolute;
  top: -58px;
  left: 30px;
}
@media (max-width: 1000px) {
  .point .inner ul li .point_img {
    top: -44px;
  }
  .point .inner ul li .point_img img {
    width: 150px;
  }
}
.point .inner ul li h3 {
  font-size: 2.38rem;
  line-height: 1.3;
  font-weight: bold;
  width: 100%;
  border-bottom: 2px solid #312a26;
  padding-bottom: 5px;
}
@media (max-width: 640px) {
  .point .inner ul li h3 {
    font-size: 1.69rem;
  }
}
.point .inner ul li p {
  margin-top: 18px;
  font-size: 1.19rem;
  padding-bottom: 12px;
  color: #1a1a1a;
}
@media (max-width: 640px) {
  .point .inner ul li p {
    font-size: 1.25rem;
  }
  .point .inner ul li p br {
    display: none;
  }
}
.point .inner ul li dl {
  margin: 12px auto 26px;
}
.point .inner ul li dl:last-of-type {
  margin: 0;
}
.point .inner ul li dl dt {
  font-size: 1.56rem;
  color: #fe4d0b;
}
@media (max-width: 640px) {
  .point .inner ul li dl dt {
    font-size: 1.44rem;
  }
}
.point .inner ul li dl dt span {
  font-size: 0.88rem;
  padding-left: 1rem;
}
.point .inner ul li dl dd {
  font-size: 1rem;
}
@media (max-width: 640px) {
  .point .inner ul li dl dd {
    font-size: 1.25rem;
  }
  .point .inner ul li dl dd br {
    display: none;
  }
}
.point .inner ul li .car {
  position: absolute;
  top: -95px;
  right: 25px;
}
@media (max-width: 640px) {
  .point .inner ul li .car {
    top: -48px;
  }
  .point .inner ul li .car img {
    width: 120px;
  }
}
.point .inner ul li .total_pro {
  position: absolute;
  right: 35px;
  bottom: -46px;
}
@media (max-width: 1000px) {
  .point .inner ul li .total_pro {
    display: none;
  }
}
.point .inner ul li:nth-child(n+2) {
  margin: 90px 0 0;
}
.point .inner ul li:nth-child(n+3) {
  width: 49%;
  padding: 45px 45px 35px;
}
@media (max-width: 640px) {
  .point .inner ul li:nth-child(n+3) {
    width: 100%;
    padding: 6%;
  }
  .point .inner ul li:nth-child(n+3) br {
    display: none;
  }
}
.point .inner ul li:nth-child(n+3) .point_img {
  position: absolute;
  top: -58px;
  left: 30px;
}
@media (max-width: 1000px) {
  .point .inner ul li:nth-child(n+3) .point_img {
    top: -44px;
  }
}
.point .inner ul li:nth-child(n+3) h3 {
  font-size: 2.31rem;
  line-height: 1.1;
}
@media (max-width: 640px) {
  .point .inner ul li:nth-child(n+3) h3 {
    font-size: 1.69rem;
  }
}
.point .inner ul li:nth-child(n+3) p {
  padding-bottom: 0;
}

.grid-3 {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 10px 1fr 10px 1fr;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}

.grid__point02 {
  margin-top: 46px;
}
.grid__point02 .grid-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.grid__point02 p {
  font-size: 21px !important;
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding: 0 !important;
  margin: 0 !important;
  width: 100%;
}
@media (max-width: 1000px) {
  .grid__point02 p {
    font-size: 15px !important;
  }
}
.grid__point02 .txt_wrap__loan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #312a26;
  margin-top: 18px;
  padding-top: 15px;
  min-height: 91px;
  max-width: 235px;
  margin-inline: auto;
}
.grid__point02 .img_wrap__loan {
  position: relative;
}
.grid__point02 .img_wrap__loan::before {
  content: "";
  display: block;
  width: 30px;
  height: 26px;
  background: url(../images/overlay_LLL.svg) center/contain no-repeat;
  position: absolute;
  inset: -18px auto auto -13px;
}
@media (max-width: 640px) {
  .grid__point02 {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    place-items: center;
    gap: 32px;
  }
  .grid__point02 .grid-item {
    max-width: 212px;
  }
  .grid__point02 .txt_wrap__loan {
    min-height: 0;
    max-width: 175px;
  }
  .grid__point02 .img_wrap__loan::before {
    width: 22px;
    height: 19px;
    inset: -13px auto auto -6px;
  }
}

.hl_bar {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 15px;
}
.hl_bar .hl_bar__img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-inline: 30px;
}
.hl_bar .hl_bar__img img {
  width: 242px;
}
.hl_bar::before, .hl_bar::after {
  content: "";
  height: 1px;
  width: 100%;
  display: block;
  background: #1a1a1a;
}
@media (max-width: 640px) {
  .hl_bar {
    margin-top: 32px;
  }
  .hl_bar .hl_bar__img {
    margin-inline: 15px;
  }
  .hl_bar .hl_bar__img img {
    width: 144px;
  }
}

.grid__loan_point {
  margin-top: 30px;
}
.grid__loan_point .grid-item {
  background: url(../images/bg_loan.png) center no-repeat;
  background-size: 100% 100%;
  padding: 43px 20px 20px;
  text-align: center;
  position: relative;
}
.grid__loan_point .grid-item p {
  margin-top: 0 !important;
}
.grid__loan_point .grid-item .overlay {
  position: absolute;
  inset: -8px auto auto 14px;
}
.grid__loan_point .grid-item .overlay img {
  width: 46px;
  height: 42px;
}
@media (max-width: 640px) {
  .grid__loan_point {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
  }
  .grid__loan_point .grid-item {
    padding-block: 20px 10px;
  }
  .grid__loan_point .grid-item .overlay img {
    width: 29px;
    height: 26px;
  }
}

.li__point02 {
  padding-bottom: 55px !important;
  position: relative;
  z-index: 0;
}
.li__point02 .li_overlay__point02 {
  position: absolute;
  inset: auto 5px -23px auto;
  z-index: 1;
  width: 245px;
  height: 152px;
}
@media (max-width: 640px) {
  .li__point02 {
    padding-bottom: 40px !important;
  }
  .li__point02 .li_overlay__point02 {
    width: 144px;
    height: 89px;
    inset: auto -4px -21px auto;
  }
}

.movie_wrap {
  margin-top: 50px;
}
.movie_wrap video {
  max-width: 100%;
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  contact
*************************/
.contact {
  background: #1A1A1A;
  padding: 73px 20px 47px;
}
.contact .inner {
  position: relative;
  border: 3px solid #fff;
  text-align: center;
  padding-bottom: 35px;
  overflow: initial;
}
.contact .inner::before {
  content: "";
  position: absolute;
  display: block;
  width: 220px;
  height: 96px;
  background: url(../images/contact_bg.svg) no-repeat;
  top: 0;
  left: 0;
}
@media (max-width: 1000px) {
  .contact .inner::before {
    width: 156px;
    height: 96px;
    background: url(../images/contact_bg.svg) no-repeat;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .contact .inner::before {
    width: 20vw;
  }
}
.contact .inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 240px;
  height: 96px;
  background: url(../images/contact_bg.svg) no-repeat;
  top: 0;
  right: 0;
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
@media (max-width: 1000px) {
  .contact .inner::after {
    width: 156px;
    height: 96px;
    background: url(../images/contact_bg.svg) no-repeat;
    background-size: contain;
  }
}
@media (max-width: 640px) {
  .contact .inner::after {
    width: 20vw;
  }
}
.contact .inner h2 {
  position: absolute;
  width: 390px;
  background: #1a1a1a;
  top: -26px;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .contact .inner h2 {
    width: 40vw;
    top: -3vw;
  }
  .contact .inner h2 img {
    width: 35vw;
  }
}
.contact .inner .text_img {
  margin: 83px auto 0;
}
.contact .inner ul {
  margin: 35px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .contact .inner ul {
    display: block;
  }
}
.contact .inner ul li:not(:first-child) {
  margin-left: 27px;
}
@media (max-width: 640px) {
  .contact .inner ul li:not(:first-child) {
    margin: 15px 0 0;
  }
}
.contact .inner ul li .circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: #fff;
  -webkit-filter: drop-shadow(2px 2px 2px rgba(140, 131, 129, 0.75));
          filter: drop-shadow(2px 2px 2px rgba(140, 131, 129, 0.75));
}
@media (max-width: 640px) {
  .contact .inner ul li .circle {
    display: block;
    width: 100%;
    height: auto;
    border-radius: initial;
    background: initial;
    -webkit-filter: initial;
            filter: initial;
  }
  .contact .inner ul li .circle picture {
    width: 100%;
  }
  .contact .inner ul li .circle img {
    width: 100%;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  works
*************************/
@-webkit-keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.works {
  padding: 70px 0 90px;
}
.works .inner h2 {
  text-align: center;
}
.works .inner .tab {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 75px auto 70px;
}
@media (max-width: 640px) {
  .works .inner .tab {
    display: block;
    margin: 10vw 0;
  }
}
@media (max-width: 1000px) {
  .works .inner .tab li {
    width: 40%;
  }
}
@media (max-width: 640px) {
  .works .inner .tab li {
    max-width: 500px;
    width: 100%;
    margin: 0 auto 15px;
  }
}
.works .inner .tab li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 400px;
  height: 80px;
  border-radius: 52px;
  background: #1a1a1a;
  font-size: 1.63rem;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 640px) {
  .works .inner .tab li a {
    width: 100%;
  }
}
.works .inner .tab li:last-child a {
  background: #ffcc4c;
  color: #000;
  margin-left: 48px;
}
@media (max-width: 1000px) {
  .works .inner .tab li a {
    font-size: 1.25rem;
    width: 100%;
    height: auto;
    padding: 10px;
  }
  .works .inner .tab li:last-child a {
    margin-left: 10%;
  }
}
@media (max-width: 1000px) and (max-width: 640px) {
  .works .inner .tab li:last-child a {
    margin: 0;
  }
}
.works .inner .tab li.active a {
  position: relative;
}
.works .inner .tab li.active a::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/works_tab_bg.svg) no-repeat;
  width: 63px;
  height: 61px;
  top: -33px;
  right: -34px;
}
@media (max-width: 640px) {
  .works .inner .tab li.active a::after {
    display: none;
  }
}
@media (max-width: 640px) {
  .works .inner .tab li.active:first-of-type a {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #1a1a1a;
  }
  .works .inner .tab li.active:last-of-type a {
    background: #fff;
    color: #1a1a1a;
    border: 2px solid #ffcc4c;
  }
}
.works .inner .area {
  display: none;
  /*はじめは非表示*/
  opacity: 0;
  /*透過0*/
  background: #fff;
}
.works .inner .area.is-active {
  display: block;
  /*表示*/
  -webkit-animation-name: displayAnime;
          animation-name: displayAnime;
  /*ふわっと表示させるためのアニメーション*/
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}
.works .inner .kitchen_car_wrapper {
  margin-bottom: 50px;
}
.works .inner .kitchen_car_wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.works .inner .kitchen_car_wrapper .flex .slider {
  width: 53%;
  margin-right: 3%;
}
.works .inner .kitchen_car_wrapper .flex .slider img {
  width: 100%;
}
.works .inner .kitchen_car_wrapper .flex .slider .thumb .slick-slide img {
  width: 100%;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .inner .kitchen_car_wrapper .flex .slider .thumb .slick-slide:not(:first-of-type) img {
  padding-left: 5px;
  width: 100%;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .inner .kitchen_car_wrapper .flex .contents {
  width: 44%;
}
@media (max-width: 640px) {
  .works .inner .kitchen_car_wrapper .flex .contents {
    width: 100%;
  }
}
.works .inner .kitchen_car_wrapper .flex .contents .icon {
  width: 200px;
  height: 45px;
  border-radius: 22px;
  background: #1a1a1a;
  color: #fff;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .works .inner .kitchen_car_wrapper .flex .contents .icon {
    width: 100%;
  }
}
.works .inner .kitchen_car_wrapper .flex .contents h3 {
  margin: 53px 0 0;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
  padding: 0 0 5px;
  border-bottom: 7px solid #1a1a1a;
  letter-spacing: 0.14em;
}
@media (max-width: 640px) {
  .works .inner .kitchen_car_wrapper .flex .contents h3 {
    border: none;
  }
}
@media (max-width: 640px) {
  .works .inner .kitchen_car_wrapper .flex .contents .slider {
    width: 80%;
    margin: 30px 10% 0;
  }
  .works .inner .kitchen_car_wrapper .flex .contents .slider .slick-next {
    background: url(../images/next.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .works .inner .kitchen_car_wrapper .flex .contents .slider .slick-next:before {
    display: none;
  }
  .works .inner .kitchen_car_wrapper .flex .contents .slider .slick-prev {
    background: url(../images/prev.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .works .inner .kitchen_car_wrapper .flex .contents .slider .slick-prev:before {
    display: none;
  }
}
.works .inner .kitchen_car_wrapper .flex .contents p {
  margin: 14px auto 0;
  font-size: 0.94rem;
}
.works .inner .kitchen_car_wrapper .flex .contents .item_img {
  margin: 38px auto 0;
  text-align: center;
}
@media (max-width: 640px) {
  .works .inner .kitchen_car_wrapper .flex .contents .item_img picture {
    width: 100%;
  }
}
.works .inner .kitchen_car_wrapper .flex .contents .item_img .title {
  margin-bottom: 7px;
}
.works .inner .service_car_wrapper {
  margin-bottom: 50px;
}
.works .inner .service_car_wrapper .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.works .inner .service_car_wrapper .flex .slider {
  width: 53%;
  margin-right: 3%;
}
.works .inner .service_car_wrapper .flex .slider img {
  width: 100%;
}
.works .inner .service_car_wrapper .flex .slider .slider01_thump .slick-slide:not(:first-of-type) img {
  padding-left: 5px;
  width: 100%;
  height: 106px;
  -o-object-fit: cover;
     object-fit: cover;
}
.works .inner .service_car_wrapper .flex .contents {
  width: 44%;
}
@media (max-width: 640px) {
  .works .inner .service_car_wrapper .flex .contents {
    width: 100%;
  }
}
.works .inner .service_car_wrapper .flex .contents .icon {
  width: 240px;
  height: 45px;
  border-radius: 22px;
  background: #FFCC4C;
  color: #000;
  font-size: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .works .inner .service_car_wrapper .flex .contents .icon {
    width: 100%;
  }
}
.works .inner .service_car_wrapper .flex .contents h3 {
  margin: 53px 0 0;
  font-size: 1.25rem;
  font-weight: bold;
  width: 100%;
  padding: 0 0 5px;
  border-bottom: 7px solid #FFCC4C;
  letter-spacing: 0.14em;
}
@media (max-width: 640px) {
  .works .inner .service_car_wrapper .flex .contents h3 {
    border: none;
  }
}
@media (max-width: 640px) {
  .works .inner .service_car_wrapper .flex .contents .slider {
    width: 80%;
    margin: 30px 10% 0;
  }
  .works .inner .service_car_wrapper .flex .contents .slider .slick-next {
    background: url(../images/next.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .works .inner .service_car_wrapper .flex .contents .slider .slick-next:before {
    display: none;
  }
  .works .inner .service_car_wrapper .flex .contents .slider .slick-prev {
    background: url(../images/prev.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .works .inner .service_car_wrapper .flex .contents .slider .slick-prev:before {
    display: none;
  }
}
.works .inner .service_car_wrapper .flex .contents p {
  margin: 14px auto 0;
  font-size: 0.94rem;
}
.works .inner .service_car_wrapper .flex .contents .item_img {
  margin: 38px auto 0;
  text-align: center;
}
.works .inner .service_car_wrapper .flex .contents .item_img .title {
  margin-bottom: 7px;
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  price
*************************/
.price {
  padding: 58px 0 0;
}
.price h2 {
  text-align: center;
  padding: 0 0 30px;
}
.price .bg_img {
  background: url(../images/price_bg.jpg) no-repeat;
  background-size: 100% 100%;
  padding: 0 0 110px;
}
@media (max-width: 640px) {
  .price .bg_img {
    padding: 0;
  }
}
.price .inner .anker {
  padding: 58px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1000px) {
  .price .inner .anker {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media (max-width: 640px) {
  .price .inner .anker {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 1000px) {
  .price .inner .anker li {
    margin-bottom: 15px;
  }
}
@media (max-width: 640px) {
  .price .inner .anker li {
    width: 48%;
  }
}
.price .inner .anker li:not(:first-of-type) {
  margin-left: 25px;
}
@media (max-width: 640px) {
  .price .inner .anker li:not(:first-of-type) {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .price .inner .anker li:nth-of-type(even) {
    margin-left: 4%;
  }
}
.price .inner .anker li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 31px 0 15px;
  height: 62px;
  width: 100%;
  color: #fff;
  font-size: 1.06rem;
  background: url(../images/price_anker.png) no-repeat;
  background-size: 100% 100%;
}
.price .inner .anker li a span {
  color: #000;
  margin-right: 10px;
}
.price .inner .text {
  margin: 19px auto 54px;
  text-align: center;
  font-size: 1.13rem;
  letter-spacing: 0.14em;
}
@media (max-width: 640px) {
  .price .inner .text {
    font-size: 0.88rem;
  }
}
.price .inner .area {
  margin: 0 auto 44px;
  padding: 45px 60px 50px 55px;
  width: 100%;
  background: #fff;
  -webkit-box-shadow: 3px 3px 3px rgba(165, 159, 154, 0.75);
          box-shadow: 3px 3px 3px rgba(165, 159, 154, 0.75);
}
@media (max-width: 640px) {
  .price .inner .area {
    padding: 6%;
  }
}
.price .inner .area .price_wrapper .flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex {
    display: block;
  }
}
.price .inner .area .price_wrapper .flex .price_yen {
  position: absolute;
  top: -49px;
  left: 0;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .price_yen {
    width: 100px;
    margin: -6vw 0 5vw;
    position: initial;
  }
}
.price .inner .area .price_wrapper .flex .info {
  width: 73%;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .info {
    width: 100%;
  }
}
.price .inner .area .price_wrapper .flex .info h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .info h3 br {
    display: none;
  }
}
.price .inner .area .price_wrapper .flex .info dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #1A1A1A;
  width: 100%;
  margin: 0 0 14px;
  background: #1a1a1a;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .info dl {
    display: block;
    text-align: center;
  }
}
.price .inner .area .price_wrapper .flex .info dl dt {
  width: 114px;
  padding: 3px 0;
  font-size: 0.81rem;
  font-weight: bold;
  text-align: center;
  color: #fff;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .info dl dt {
    width: 100%;
    font-size: 0.94rem;
  }
}
.price .inner .area .price_wrapper .flex .info dl dd {
  background: #fff;
  font-size: 0.75rem;
  font-weight: bold;
  padding: 4px 0 4px 18px;
  width: 100%;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .info dl dd {
    padding: 9px;
    font-size: 0.94rem;
  }
}
.price .inner .area .price_wrapper .flex .info dl:last-of-type {
  margin-bottom: 0;
}
.price .inner .area .price_wrapper .flex .img {
  width: 100%;
  margin-top: 38px;
}
.price .inner .area .price_wrapper .flex .img ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.price .inner .area .price_wrapper .flex .img ul li:not(:first-of-type) {
  margin-left: 8px;
}
@media (max-width: 640px) {
  .price .inner .area .price_wrapper .flex .img .price_sp_slider {
    width: 80%;
    margin: 30px 10% 0;
  }
  .price .inner .area .price_wrapper .flex .img .price_sp_slider .slick-next {
    background: url(../images/next.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .price .inner .area .price_wrapper .flex .img .price_sp_slider .slick-next:before {
    display: none;
  }
  .price .inner .area .price_wrapper .flex .img .price_sp_slider .slick-prev {
    background: url(../images/prev.svg) no-repeat;
    height: 12px;
    width: 7px;
  }
  .price .inner .area .price_wrapper .flex .img .price_sp_slider .slick-prev:before {
    display: none;
  }
  .price .inner .area .price_wrapper .flex .img .price_sp_slider img {
    width: 100%;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  flow
*************************/
.flow {
  margin-top: -2px;
  padding: 128px 0 73px;
  background: url(../images/flow_bg.png) repeat-x;
}
@media (max-width: 640px) {
  .flow {
    margin-top: -2px;
    padding: 61px 0 30px;
    background: url(../images/flow_bg_sp.png) repeat-x;
  }
}
.flow .inner h2 {
  text-align: center;
}
.flow .inner > ul {
  margin-top: 58px;
}
.flow .inner > ul > li {
  position: relative;
}
.flow .inner > ul > li:not(:last-of-type) {
  margin-bottom: 80px;
}
.flow .inner > ul > li:not(:last-of-type) .img::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -40px;
  margin-left: -16px;
  width: 32px;
  height: 16px;
  background: url(../images/flow_arrow.svg) no-repeat;
  background-size: contain;
}
@media (max-width: 640px) {
  .flow .inner > ul > li:not(:last-of-type) .img::after {
    display: none;
  }
}
.flow .inner > ul > li .step {
  position: absolute;
  top: -40px;
  left: 0;
  z-index: 10;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .step {
    display: none;
  }
}
.flow .inner > ul > li .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-left: 82px;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .flex {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 0;
  }
}
.flow .inner > ul > li .flex .img {
  position: relative;
  width: 279px;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .flex .img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 100%;
  }
  .flow .inner > ul > li .flex .img img {
    width: 100%;
  }
}
.flow .inner > ul > li .flex .contents {
  width: 600px;
  margin-left: 40px;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .flex .contents {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 100%;
    padding: 0;
    margin: 0;
  }
}
.flow .inner > ul > li .flex .contents h3 {
  position: relative;
  width: 100%;
  font-size: 1.38rem;
  background: #ffcc4c;
  padding: 5px 17px;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .flex .contents h3 {
    background: inherit;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.44rem;
    padding: 0;
  }
  .flow .inner > ul > li .flex .contents h3 img {
    margin-right: 20px;
  }
}
.flow .inner > ul > li .flex .contents h3::after {
  content: "";
  position: absolute;
  width: 52px;
  height: 52px;
  background: #fff;
  -webkit-transform: rotate(-34deg);
          transform: rotate(-34deg);
  top: -20px;
  right: -29px;
}
.flow .inner > ul > li .flex .contents p {
  margin-top: 9px;
  font-size: 0.94rem;
}
.flow .inner > ul > li .flex .contents ul {
  margin-top: 9px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media (max-width: 640px) {
  .flow .inner > ul > li .flex .contents ul {
    display: block;
    margin: 10px auto;
  }
  .flow .inner > ul > li .flex .contents ul li a {
    width: 100%;
  }
  .flow .inner > ul > li .flex .contents ul li a picture {
    width: 100%;
  }
  .flow .inner > ul > li .flex .contents ul li a picture img {
    width: 100%;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  qa
*************************/
.qa {
  padding: 67px 0 150px;
  background: #c7bdae;
}
@media (max-width: 640px) {
  .qa {
    padding: 30px 0 60px;
  }
}
.qa .inner {
  width: 760px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .qa .inner {
    width: 100%;
  }
}
.qa .inner h2 {
  text-align: center;
}
@media (max-width: 640px) {
  .qa .inner h2 picture {
    width: 100%;
  }
  .qa .inner h2 img {
    width: 100%;
  }
}
.qa .inner .accordion {
  margin-top: 41px;
}
.qa .inner .accordion > li {
  border-radius: 24px;
  background: #fff;
  -webkit-box-shadow: 2px 2px 1px rgba(180, 175, 169, 0.75);
          box-shadow: 2px 2px 1px rgba(180, 175, 169, 0.75);
  padding: 7px 16px;
  margin-bottom: 21px;
}
.qa .inner .accordion > li:last-of-type {
  margin-bottom: 0;
}
.qa .inner .accordion > li .contents .title {
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  font-size: 1.13rem;
}
@media (max-width: 640px) {
  .qa .inner .accordion > li .contents .title {
    padding: 0 25px 0 0;
  }
}
.qa .inner .accordion > li .contents .title::before {
  position: absolute;
  content: "+";
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #fe4d0b;
  color: #fe4d0b;
}
.qa .inner .accordion > li .contents .title::before {
  top: 50%;
  right: 0;
  margin-top: -11px;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.qa .inner .accordion > li .contents .title.close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.qa .inner .accordion > li .contents .title.close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.qa .inner .accordion > li .contents .box {
  display: none;
  margin-bottom: 27px;
}
.qa .inner .accordion > li .contents .box p {
  margin-top: 18px;
  color: #fe4d0b;
  font-size: 0.94rem;
  padding: 0 40px;
}
@media (max-width: 640px) {
  .qa .inner .accordion > li .contents .box p {
    padding: 0;
    margin: 0 auto 30px;
  }
}
.qa .inner .accordion > li .contents .box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 27px;
}
.qa .inner .accordion > li .contents .box ul li:not(:first-of-type) {
  margin-left: 16px;
}
@media (max-width: 640px) {
  .qa .inner .accordion > li .contents .box ul li:not(:first-of-type) {
    margin-left: 0;
  }
}
@media (max-width: 640px) {
  .qa .inner .accordion > li .contents .box ul {
    display: block;
    margin: 10px auto;
  }
  .qa .inner .accordion > li .contents .box ul li a {
    width: 100%;
  }
  .qa .inner .accordion > li .contents .box ul li a picture {
    width: 100%;
  }
  .qa .inner .accordion > li .contents .box ul li a picture img {
    width: 100%;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  contact_form
*************************/
.contact_form {
  padding: 60px 0 55px;
  background: #FFCC4C;
}
.contact_form .inner {
  width: 770px;
  max-width: 100%;
  margin: 0 auto;
}
@media (max-width: 640px) {
  .contact_form .inner {
    width: 100%;
  }
}
.contact_form .inner h2 {
  text-align: center;
}
.contact_form .inner .text {
  margin-top: 41px;
  text-align: center;
  font-size: 0.94rem;
}
.contact_form .inner .text span {
  color: #fe4d0b;
  margin-right: 5px;
}
.contact_form .inner form {
  margin-top: 43px;
}
.contact_form .inner form dl:not(:first-of-type) {
  margin-top: 30px;
}
.contact_form .inner form dl:not(:first-of-type) dt {
  margin-bottom: 8px;
}
.contact_form .inner form dl dt {
  font-size: 0.94rem;
}
.contact_form .inner form dl dt span {
  margin-left: 2px;
  font-size: 0.75rem;
  color: #fe4d0b;
}
.contact_form .inner form dl dt h3 {
  margin-bottom: 21px;
}
.contact_form .inner form dl dt h3 span {
  margin-left: 12px;
}
.contact_form .inner form dl dd .checkbox_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}
@media (max-width: 640px) {
  .contact_form .inner form dl dd .checkbox_list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: inherit;
    -webkit-box-direction: inherit;
        -ms-flex-direction: inherit;
            flex-direction: inherit;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.contact_form .inner form dl dd .checkbox_list input[type=radio] {
  display: none;
}
.contact_form .inner form dl dd .checkbox_list input[type=radio] + label::before {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/button_checkbox.svg);
  content: "";
  cursor: pointer;
}
.contact_form .inner form dl dd .checkbox_list input[type=radio]:checked + label::after {
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  background: url(../images/button_checked.svg);
  content: "";
  cursor: pointer;
}
.contact_form .inner form dl dd .checkbox_list label {
  position: relative;
  padding-left: 30px;
}
.contact_form .inner form dl dd .checkbox_list .checkbox_list_item:not(:last-child) {
  margin-right: 35px;
}
@media (max-width: 640px) {
  .contact_form .inner form dl dd .checkbox_list .checkbox_list_item:not(:last-child) {
    width: 40%;
    margin-right: 0;
  }
  .contact_form .inner form dl dd .checkbox_list .checkbox_list_item {
    width: 40%;
    margin-bottom: 15px;
  }
}
.contact_form .inner form dl dd input,
.contact_form .inner form dl dd textarea {
  width: 100%;
  padding: 5px 10px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #312a26;
}
.contact_form .inner form dl dd textarea {
  height: 220px;
}
.contact_form .inner form input[type=submit] {
  border-radius: 30px;
  background: #1a1a1a;
  border: 1px solid #312a26;
  font-size: 1.06rem;
  margin: 71px auto 0;
  padding: 10px 21px;
  color: #fff;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 640px) {
  .contact_form .inner form input[type=submit] {
    margin: 30px auto 0;
  }
}

/* ↑必ず上記を記述しないとmixinとかが使えないので注意です */
/************************
  access
*************************/
.access {
  padding: 57px 0 75px;
  background: #1a1a1a;
  color: #fff;
}
.access .inner {
  width: 740px;
  max-width: 100%;
  margin: 0 auto;
}
.access .inner dl {
  font-size: 0.88rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  line-height: 1.8;
}
.access .inner .map {
  margin-top: 28px;
}

/* 
* @forward './section名';
* を下記に追加していってください。
*/
/*# sourceMappingURL=style.css.map */