<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/*基本設定
-------------------------------*/
/*レスポンシブ設定*/
/*書式設定*/
body {
  margin: 0;
  padding: 0;
  border: 0 none;
  font-size: 16px;
  color: #151515;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 800px) {
  body {
    font-size: 14px;
  }
}

.fontEn {
  margin: 0;
  padding: 0;
  border: 0 none;
  font-size: 16px;
  color: #151515;
  font-family: "Maven Pro", "游ゴシック体", "Yu Gothic", "YuGothic", "Meiryo", "メイリオ", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-weight: 500;
  line-height: 1.5em;
  letter-spacing: 0.05em;
}

.color-or {
  color: #f34a1c;
}

h1,
h2,
h3,
h4 {
  margin: 0;
}

h1 {
  font-weight: 700;
  line-height: 1;
}

h2 {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.5em;
}

@media screen and (max-width: 1080px) {
  h2 {
    font-size: 30px;
  }
}

@media screen and (max-width: 640px) {
  h2 {
    font-size: 20px;
  }
}

h3 {
  font-size: 30px;
  font-weight: 500;
}

@media screen and (max-width: 1080px) {
  h3 {
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  h3 {
    font-size: 20px;
  }
}

h4 {
  font-size: 16px;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  h4 {
    font-size: 14px;
  }
}

ul,
li,
div,
p {
  list-style: none;
  padding: 0;
  margin: 0;
}

/*a:hover設定*/
a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a img {
  border: none;
  vertical-align: top;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

a:hover {
  color: #999999;
}

a:hover img {
  opacity: 0.7;
  filter: alpha(opacity=70);
}

/*floatの解除*/
.clearfix {
  min-height: 1px;
  /*IE6、7対策*/
}

.clearfix:after {
  display: block;
  clear: both;
  height: 0px;
  visibility: hidden;
  content: '.';
}

* html .clearfix {
  height: 1px;
  /*\*/
  /*/ /*MAC IE5.x対策*/
  height: auto;
  overflow: hidden;
  /**/
}

/*コンテンツ設定*/
section {
  margin: 100px auto 0;
  padding: 0 0 100px;
}

@media screen and (max-width: 640px) {
  section {
    margin: 50px auto 0;
    padding: 0 0 50px;
  }
}

section.paddingT100 {
  padding-top: 100px;
  margin-top: 0;
}

section.paddingB130 {
  padding-bottom: 130px;
}

section.border10 {
  border-bottom: solid 10px #dcdcdc;
}

@media screen and (max-width: 640px) {
  section:first-of-type {
    margin-top: 0;
    padding-top: 20px;
  }
}

@media screen and (max-width: 480px) {
  section:first-of-type {
    padding-top: 10px;
  }
}

.contents_l {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .contents_l {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contents_m {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .contents_m {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.contents_s {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

@media screen and (max-width: 1200px) {
  .contents_s {
    padding: 0 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}

.margin0 {
  margin: 0 auto;
}

.padding0 {
  padding: 0;
}

.bgCol01 {
  background-color: #f5f5f5;
}

.bgCol02 {
  background-color: #fddbd2;
}

/*flex設定　align-itemsは個別記載*/
.flexBox {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.flexBox_v {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

/*その他設定*/
a {
  display: block;
}

a.inl {
  display: inline;
}

img {
  line-height: 0;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.floatL {
  float: left;
}

.floatR {
  float: right;
}

.mq_s {
  display: none;
}

@media screen and (max-width: 900px) {
  .mq_s {
    display: block;
  }
}

.mq_800 {
  display: none;
}

@media screen and (max-width: 800px) {
  .mq_800 {
    display: block;
  }
}

.mq_640 {
  display: none;
}

@media screen and (max-width: 640px) {
  .mq_640 {
    display: block;
  }
}

.mq_480 {
  display: none;
}

@media screen and (max-width: 480px) {
  .mq_480 {
    display: block;
  }
}

/*ボタン設定*/
.btn {
  width: 170px;
}

.btn p {
  color: #fff;
  display: inline-block;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.btn a {
  text-align: center;
  line-height: 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid 1px #f34a1c;
  background-color: #f34a1c;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.btn a:hover {
  border: solid 1px #f34a1c;
  background-color: #fff;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

.btn a:hover p {
  color: #f34a1c;
  -webkit-transition: 0.5s ease-in-out;
  transition: 0.5s ease-in-out;
}

/* header
-------------------------------*/
header .mainimg {
  width: 100%;
  height: 100vh;
  position: relative;
}

@media screen and (max-width: 800px) {
  header .mainimg {
    height: calc(100vh - 44px);
  }
}

@media screen and (max-width: 640px) {
  header .mainimg {
    height: 60vh;
  }
}

@media screen and (max-width: 480px) {
  header .mainimg {
    height: 40vh;
  }
}

header .mainimg #slide01 {
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 800px) {
  header .mainimg #slide01 {
    height: calc(100vh - 44px);
  }
}

@media screen and (max-width: 640px) {
  header .mainimg #slide01 {
    height: 60vh;
  }
}

@media screen and (max-width: 480px) {
  header .mainimg #slide01 {
    height: 40vh;
  }
}

header .mainimg #slide01 li {
  width: 100%;
  height: 100vh;
}

@media screen and (max-width: 800px) {
  header .mainimg #slide01 li {
    height: calc(100vh - 44px);
  }
}

@media screen and (max-width: 640px) {
  header .mainimg #slide01 li {
    height: 60vh;
  }
}

@media screen and (max-width: 480px) {
  header .mainimg #slide01 li {
    height: 40vh;
  }
}

header .mainimg #slide01 li.slide01 {
  background-image: url("../../images/promo2021/slide/slide_l01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide02 {
  background-image: url("../../images/promo2021/slide/slide_l02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide03 {
  background-image: url("../../images/promo2021/slide/slide_l03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide04 {
  background-image: url("../../images/promo2021/slide/slide_l04.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide05 {
  background-image: url("../../images/promo2021/slide/slide_l05.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide06 {
  background-image: url("../../images/promo2021/slide/slide_l06.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide07 {
  background-image: url("../../images/promo2021/slide/slide_l07.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide08 {
  background-image: url("../../images/promo2021/slide/slide_l08.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide09 {
  background-image: url("../../images/promo2021/slide/slide_l09.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide10 {
  background-image: url("../../images/promo2021/slide/slide_l10.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide11 {
  background-image: url("../../images/promo2021/slide/slide_l11.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide12 {
  background-image: url("../../images/promo2021/slide/slide_l12.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg #slide01 li.slide13 {
  background-image: url("../../images/promo2021/slide/slide_l13.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
}

header .mainimg &gt; div {
  position: absolute;
}

header .mainimg &gt; div.overlay {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(21, 21, 21, 0.15);
}

header .mainimg &gt; div.logo {
  top: 10px;
  left: 40px;
  width: 260px;
}

@media screen and (max-width: 800px) {
  header .mainimg &gt; div.logo {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 480px) {
  header .mainimg &gt; div.logo {
    width: 50vw;
  }
}

header .mainimg &gt; div.title {
  width: 722px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 900px) {
  header .mainimg &gt; div.title {
    width: 80vw;
  }
}

@media screen and (max-width: 480px) {
  header .mainimg &gt; div.title {
    width: 90vw;
  }
}

/* footer
-------------------------------*/
footer {
  background-color: #999999;
  padding: 50px 0;
  position: relative;
}

@media screen and (max-width: 800px) {
  footer {
    padding-bottom: 100px;
  }
}

footer .contents_m {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 800px) {
  footer .contents_m {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: center;
  }
}

footer .contents_m p {
  color: #fff;
}

footer .contents_m .left p:first-of-type {
  vertical-align: bottom;
  padding-bottom: 10px;
}

@media screen and (max-width: 800px) {
  footer .contents_m .left p:first-of-type {
    padding-bottom: 20px;
  }
}

footer .contents_m .left p:first-of-type::before {
  content: '';
  display: inline-block;
  width: 26px;
  height: 26px;
  background-image: url("../../images/promo2021/house.svg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  margin-right: 12px;
}

footer .contents_m .left p:last-of-type {
  font-size: 12px;
}

@media screen and (max-width: 800px) {
  footer .contents_m .left p:last-of-type {
    display: none;
  }
}

@media screen and (max-width: 800px) {
  footer .contents_m .right {
    padding-bottom: 20px;
  }
}

footer .contents_m .copy_mq {
  display: none;
}

@media screen and (max-width: 800px) {
  footer .contents_m .copy_mq {
    font-size: 12px;
    display: inline;
  }
}

/* scrollボタン
-------------------------------*/
.scroll {
  position: absolute;
  left: 50%;
  bottom: 30px;
  width: 30px;
  height: 30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.scroll span {
  width: 1em;
  height: 1em;
  position: absolute;
  top: 25%;
  left: 25%;
  -webkit-transform: translateY(0) rotate(-45deg);
          transform: translateY(0) rotate(-45deg);
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  z-index: 2;
  -webkit-animation: popping-arrow 2s infinite ease-out;
          animation: popping-arrow 2s infinite ease-out;
}

.scroll:hover span {
  -webkit-transform: translateY(0.5em) rotate(-45deg);
          transform: translateY(0.5em) rotate(-45deg);
  -webkit-animation: paused;
          animation: paused;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@-webkit-keyframes popping-arrow {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

@keyframes popping-arrow {
  0% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
  30% {
    -webkit-transform: translateY(0.5em) rotate(-45deg);
            transform: translateY(0.5em) rotate(-45deg);
  }
  60% {
    -webkit-transform: translateY(0) rotate(-45deg);
            transform: translateY(0) rotate(-45deg);
  }
}

.scroll02 {
  bottom: inherit;
  top: -50px;
}

.scroll02 span {
  -webkit-transform: translateY(0) rotate(45deg);
          transform: translateY(0) rotate(45deg);
  border-left: 2px solid #151515;
  border-top: 2px solid #151515;
  border-bottom: none;
  -webkit-animation: none;
          animation: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.scroll02:hover span {
  -webkit-transform: translateY(-0.5em) rotate(45deg);
          transform: translateY(-0.5em) rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* 追従ボタン
-------------------------------*/
#btnBox {
  width: 355px;
  position: fixed;
  top: 10px;
  right: 40px;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

@media screen and (max-width: 800px) {
  #btnBox {
    width: 100%;
    top: inherit;
    right: 0;
    bottom: 0;
  }
}

@media screen and (max-width: 800px) {
  #btnBox .btn {
    width: 50%;
  }
}

#btnBox .btn svg {
  display: inline-block;
}

#btnBox .btn.btn01 a p {
  padding-left: 10px;
}

@media screen and (max-width: 800px) {
  #btnBox .btn.btn01 a p {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  #btnBox .btn.btn01 a p {
    font-size: 18px;
  }
}

@media screen and (max-width: 375px) {
  #btnBox .btn.btn01 a p {
    font-size: 4vw;
  }
}

#btnBox .btn.btn01 a svg {
  width: 19px;
  height: 14px;
}

#btnBox .btn.btn01 a svg .cls-1 {
  fill: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#btnBox .btn.btn01 a:hover svg .cls-1 {
  fill: #f34a1c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#btnBox .btn.btn02 a {
  border: solid 1px #f3981c;
  background-color: #f3981c;
}

#btnBox .btn.btn02 a p {
  letter-spacing: 0em;
  color: #fff;
}

@media screen and (max-width: 800px) {
  #btnBox .btn.btn02 a p {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  #btnBox .btn.btn02 a p {
    font-size: 18px;
  }
}

@media screen and (max-width: 375px) {
  #btnBox .btn.btn02 a p {
    font-size: 4vw;
  }
}

#btnBox .btn.btn02 a svg {
  width: 12px;
  height: 12px;
}

#btnBox .btn.btn02 a svg .cls-1 {
  fill: #fff;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#btnBox .btn.btn02 a:hover {
  background-color: #fff;
}

#btnBox .btn.btn02 a:hover p {
  color: #f3981c;
}

#btnBox .btn.btn02 a:hover svg .cls-1 {
  fill: #f3981c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/* #contents
-------------------------------*/
#contents {
  overflow: hidden;
}

.fukidashi {
  width: 970px;
  margin: 100px auto 50px;
}

@media screen and (max-width: 1080px) {
  .fukidashi {
    width: 100%;
  }
}

@media screen and (max-width: 640px) {
  .fukidashi {
    margin: 0 auto;
    position: relative;
    padding-top: 30vw;
  }
}

@media screen and (max-width: 480px) {
  .fukidashi {
    padding-top: 40vw;
  }
}

.fukidashi li {
  width: 30%;
}

.fukidashi li:nth-of-type(2) img {
  padding-bottom: 25px;
}

.fukidashi li:nth-of-type(3) img {
  padding-top: 15px;
}

@media screen and (max-width: 640px) {
  .fukidashi li {
    position: absolute;
    width: 35%;
  }
  .fukidashi li:nth-of-type(1) {
    top: 7vw;
    left: -10px;
  }
  .fukidashi li:nth-of-type(2) {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .fukidashi li:nth-of-type(2) img {
    padding: 0;
  }
  .fukidashi li:nth-of-type(3) {
    top: 7vw;
    right: -10px;
  }
  .fukidashi li:nth-of-type(3) img {
    padding: 0;
  }
}

@media screen and (max-width: 480px) {
  .fukidashi li {
    position: absolute;
    width: 40%;
  }
  .fukidashi li:nth-of-type(1) {
    top: 15vw;
    left: -15px;
  }
  .fukidashi li:nth-of-type(2) {
    top: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .fukidashi li:nth-of-type(2) img {
    padding: 0;
  }
  .fukidashi li:nth-of-type(3) {
    top: 15vw;
    right: -15px;
  }
  .fukidashi li:nth-of-type(3) img {
    padding: 0;
  }
}

.sectionTitle {
  margin-bottom: 100px;
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .sectionTitle {
    margin-bottom: 50px;
  }
}

.sectionTitle p {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (max-width: 1080px) {
  .sectionTitle p {
    font-size: 16px;
  }
}

.sectionTitle p::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  margin: 0 auto;
  background-color: #f34a1c;
}

@media screen and (max-width: 1080px) {
  .sectionTitle p::after {
    width: 20px;
  }
}

.sectionTxt {
  margin-bottom: 50px;
  text-align: center;
}

.sectionTxt.marginB0 {
  margin-bottom: 0;
}

.sectionTxt p {
  font-size: 24px;
  line-height: 3em;
}

@media screen and (max-width: 1080px) {
  .sectionTxt p {
    font-size: 20px;
    line-height: 2.4em;
  }
}

@media screen and (max-width: 640px) {
  .sectionTxt p {
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0;
  }
}

.subTitle {
  width: 100%;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: solid 1px #505050;
}

.subTitle h3 {
  line-height: 1.2em;
  vertical-align: bottom;
  display: inline-block;
  padding-left: 15px;
  position: relative;
}

.subTitle h3::before {
  content: '';
  width: 3px;
  height: 100%;
  background-color: #f34a1c;
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0;
}

.brokenBox {
  position: relative;
  padding-top: 30px;
  margin-bottom: 100px;
}

.brokenBox:last-of-type {
  margin-bottom: 0;
}

.brokenBox .txt {
  width: 700px;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #f5f5f5;
  position: absolute;
  top: 0;
}

@media screen and (max-width: 900px) {
  .brokenBox .txt {
    width: 80vw;
  }
  .brokenBox .txt .pc {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .brokenBox .txt {
    padding: 15px;
  }
  .brokenBox .txt .pc2 {
    display: none;
  }
}

.brokenBox .txt.txtR {
  right: 0;
  text-align: left;
}

@media screen and (max-width: 1080px) {
  .brokenBox .txt.txtR {
    top: inherit;
    bottom: -60px;
  }
}

@media screen and (max-width: 900px) {
  .brokenBox .txt.txtR {
    bottom: -5vw;
  }
  .brokenBox .txt.txtR p {
    letter-spacing: 0;
  }
}

@media screen and (max-width: 640px) {
  .brokenBox .txt.txtR {
    right: -20px;
    bottom: -10vw;
  }
}

@media screen and (max-width: 375px) {
  .brokenBox .txt.txtR {
    bottom: -15vw;
  }
  .brokenBox .txt.txtR p {
    font-size: 4vw;
  }
}

.brokenBox .txt.txtL {
  left: 0;
  text-align: right;
  padding-left: 0;
}

@media screen and (max-width: 1080px) {
  .brokenBox .txt.txtL {
    top: inherit;
    bottom: -60px;
  }
}

@media screen and (max-width: 900px) {
  .brokenBox .txt.txtL {
    bottom: -15vw;
  }
}

@media screen and (max-width: 640px) {
  .brokenBox .txt.txtL {
    left: -20px;
    bottom: -30vw;
  }
}

@media screen and (max-width: 375px) {
  .brokenBox .txt.txtL {
    bottom: -40vw;
  }
  .brokenBox .txt.txtL p {
    font-size: 4vw;
  }
}

.brokenBox .txt.txtL p {
  letter-spacing: 0;
}

.brokenBox .txt p {
  font-size: 24px;
  line-height: 3em;
}

@media screen and (max-width: 1080px) {
  .brokenBox .txt p {
    font-size: 20px;
    line-height: 2.4em;
  }
}

@media screen and (max-width: 640px) {
  .brokenBox .txt p {
    font-size: 18px;
    line-height: 2em;
  }
}

@media screen and (max-width: 900px) {
  .brokenBox.mq_mBtm01 {
    margin-bottom: 15vw;
  }
  .brokenBox.mq_mBtm02 {
    margin-bottom: 10vw;
  }
}

@media screen and (max-width: 640px) {
  .brokenBox.mq_mBtm01 {
    margin-bottom: 20vw;
  }
  .brokenBox.mq_mBtm02 {
    margin-bottom: 30vw;
  }
}

.tryangle {
  width: 36px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media screen and (max-width: 800px) {
  .tryangle {
    width: 20px;
  }
}

.tryangle span {
  display: block;
  border-style: solid;
  border-width: 18px 0 18px 18px;
  border-color: transparent transparent transparent #505050;
}

@media screen and (max-width: 800px) {
  .tryangle span {
    border-width: 15px 0 15px 15px;
  }
}

@media screen and (max-width: 640px) {
  .tryangle span {
    border-width: 10px 0 10px 10px;
  }
}

/*SUPORT*/
.suportBoxWrap {
  margin-bottom: 50px;
}

.suportBoxWrap:last-of-type {
  margin-bottom: 0;
}

.suportBoxWrap .leftBox {
  width: 45%;
  padding: 32px 0 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #dcdcdc;
}

@media screen and (max-width: 800px) {
  .suportBoxWrap .leftBox {
    padding: 26px 10px 10px 10px;
  }
}

.suportBoxWrap .leftBox p {
  font-size: 24px;
}

@media screen and (max-width: 1080px) {
  .suportBoxWrap .leftBox p {
    font-size: 20px;
  }
}

@media screen and (max-width: 800px) {
  .suportBoxWrap .leftBox p {
    font-size: 14px;
  }
}

.suportBoxWrap .rightBox {
  width: 45%;
  padding: 32px 0 20px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fee7d3;
}

@media screen and (max-width: 800px) {
  .suportBoxWrap .rightBox {
    padding: 26px 10px 10px 10px;
  }
}

.suportBoxWrap .rightBox p {
  font-size: 24px;
}

@media screen and (max-width: 1080px) {
  .suportBoxWrap .rightBox p {
    font-size: 20px;
  }
}

@media screen and (max-width: 800px) {
  .suportBoxWrap .rightBox p {
    font-size: 14px;
  }
}

.suportBoxWrap .suportBox01 {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.suportBoxWrap .suportBox01 .leftBox,
.suportBoxWrap .suportBox01 .rightBox {
  padding: 0;
  text-align: center;
}

.suportBoxWrap .suportBox01 .leftBox p,
.suportBoxWrap .suportBox01 .rightBox p {
  display: inline-block;
  font-size: 30px;
  font-weight: 700;
  line-height: 120px;
}

@media screen and (max-width: 1200px) {
  .suportBoxWrap .suportBox01 .leftBox p,
  .suportBoxWrap .suportBox01 .rightBox p {
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  .suportBoxWrap .suportBox01 .leftBox p,
  .suportBoxWrap .suportBox01 .rightBox p {
    font-size: 20px;
  }
}

.suportBoxWrap .suportBox01 .leftBox p::after,
.suportBoxWrap .suportBox01 .rightBox p::after {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  margin: 0 auto;
  background-color: #151515;
  -webkit-transform: translateY(-30px);
          transform: translateY(-30px);
}

.suportBoxWrap .suportBox01 .rightBox p {
  color: #f34a1c;
}

.suportBoxWrap .suportBox01 .rightBox p::after {
  background-color: #f34a1c;
}

.suportBoxWrap .suportBox02 {
  margin-bottom: 30px;
}

.suportBoxWrap .suportBox02:last-of-type, .suportBoxWrap .suportBox02.marginB0 {
  margin-bottom: 0;
}

.suportBoxWrap .suportBox02 .leftBox,
.suportBoxWrap .suportBox02 .rightBox {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.suportBoxWrap .suportBox02 .leftBox p,
.suportBoxWrap .suportBox02 .rightBox p {
  line-height: 1.5em;
}

@media screen and (max-width: 480px) {
  .suportBoxWrap .suportBox02 .leftBox p .pc,
  .suportBoxWrap .suportBox02 .rightBox p .pc {
    display: none;
  }
}

.suportBoxWrap .suportBox02 .leftBox::before,
.suportBoxWrap .suportBox02 .rightBox::before {
  content: '';
  padding: 4px;
  width: 50px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  display: block;
  line-height: 1;
  position: absolute;
  top: 10px;
  left: 20px;
}

@media screen and (max-width: 800px) {
  .suportBoxWrap .suportBox02 .leftBox::before,
  .suportBoxWrap .suportBox02 .rightBox::before {
    font-size: 10px;
    top: 5px;
    left: 10px;
  }
}

.suportBoxWrap .suportBox02 .leftBox::before {
  content: 'お悩み';
  background-color: #505050;
}

.suportBoxWrap .suportBox02 .rightBox::before {
  content: '解 決';
  background-color: #f34a1c;
}

.suportBoxWrap .tips {
  width: 45%;
  margin-top: 10px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .suportBoxWrap .tips {
    width: 100%;
    padding: 0;
  }
}

.suportBoxWrap .tips p {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 640px) {
  .suportBoxWrap .tips p {
    font-size: 12px;
    line-height: 1.5em;
  }
}

/*FLOW*/
.flowBoxWrap {
  margin-bottom: 100px;
}

.flowBoxWrap .stepBox {
  margin-bottom: 50px;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .stepBox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.flowBoxWrap .stepBox li {
  width: 22%;
  text-align: center;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .stepBox li {
    width: 100%;
    text-align: left;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.flowBoxWrap .stepBox li.tryangle {
  width: 4%;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-top: 95px;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .stepBox li.tryangle {
    margin: 10px auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .flowBoxWrap .stepBox li.tryangle span {
    border-width: 15px 15px 0 15px;
    border-color: #505050 transparent transparent transparent;
  }
}

@media screen and (max-width: 800px) and (max-width: 640px) {
  .flowBoxWrap .stepBox li.tryangle span {
    border-width: 10px 10px 0 10px;
  }
}

.flowBoxWrap .stepBox li p {
  text-align: left;
  padding-top: 10px;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .stepBox li p {
    padding-top: 0;
  }
}

.flowBoxWrap .stepBox li img {
  width: 85%;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .stepBox li img {
    width: 25%;
    padding-right: 20px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .stepBox li img {
    width: 30%;
    padding-right: 10px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}

.flowBoxWrap .flowBox &gt; div {
  width: 50%;
}

.flowBoxWrap .flowBox .title01,
.flowBoxWrap .flowBox .title02 {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  line-height: 60px;
  text-align: center;
  background-color: #151515;
}

@media screen and (max-width: 1200px) {
  .flowBoxWrap .flowBox .title01,
  .flowBoxWrap .flowBox .title02 {
    font-size: 24px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .title01,
  .flowBoxWrap .flowBox .title02 {
    font-size: 20px;
    line-height: 1.2em;
    padding: 10px 0;
  }
}

.flowBoxWrap .flowBox .title02 {
  background-color: #f34a1c;
}

.flowBoxWrap .flowBox .leftBox,
.flowBoxWrap .flowBox .rightBox {
  padding: 15px 30px 0;
  padding-bottom: 70px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #dcdcdc;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox,
  .flowBoxWrap .flowBox .rightBox {
    padding-bottom: 50px;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox,
.flowBoxWrap .flowBox .rightBox .txtBox {
  padding: 20px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox .txtBox,
  .flowBoxWrap .flowBox .rightBox .txtBox {
    padding: 10px;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox .title,
.flowBoxWrap .flowBox .rightBox .txtBox .title {
  font-size: 24px;
  font-weight: 600;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: dashed 1px #505050;
}

@media screen and (max-width: 1080px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .title,
  .flowBoxWrap .flowBox .rightBox .txtBox .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .title,
  .flowBoxWrap .flowBox .rightBox .txtBox .title {
    font-size: 18px;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox .title.border0,
.flowBoxWrap .flowBox .rightBox .txtBox .title.border0 {
  border: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

.flowBoxWrap .flowBox .leftBox .txtBox .inner,
.flowBoxWrap .flowBox .rightBox .txtBox .inner {
  padding: 10px 20px;
  margin-top: 15px;
  color: #fff;
  background-color: #999999;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .inner,
  .flowBoxWrap .flowBox .rightBox .txtBox .inner {
    padding: 10px;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox .inner p,
.flowBoxWrap .flowBox .rightBox .txtBox .inner p {
  padding-bottom: 5px;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .inner p,
  .flowBoxWrap .flowBox .rightBox .txtBox .inner p {
    font-size: 12px;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox .inner ul li,
.flowBoxWrap .flowBox .rightBox .txtBox .inner ul li {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .inner ul li,
  .flowBoxWrap .flowBox .rightBox .txtBox .inner ul li {
    font-size: 12px;
    line-height: 1.5em;
  }
}

.flowBoxWrap .flowBox .leftBox .txtBox .pointBtn,
.flowBoxWrap .flowBox .rightBox .txtBox .pointBtn {
  width: 60px;
  position: absolute;
  top: 10px;
  right: 10px;
}

.flowBoxWrap .flowBox .leftBox .txtBox .pointBtn p,
.flowBoxWrap .flowBox .rightBox .txtBox .pointBtn p {
  display: none;
}

.flowBoxWrap .flowBox .leftBox .txtBox .pointBtn a:hover img,
.flowBoxWrap .flowBox .rightBox .txtBox .pointBtn a:hover img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
  filter: alpha(opacity=100);
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn {
    width: 100%;
    position: static;
    background-color: #f34a1c;
    margin-top: 10px;
    text-align: center;
  }
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn p,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn p {
    display: inline;
    color: #fff;
    font-size: 12px;
    line-height: 30px;
  }
}

@media screen and (max-width: 800px) and (max-width: 480px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn p,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn p {
    font-size: 3vw;
    line-height: 2.5em;
  }
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn p span,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn p span {
    color: #fff;
    font-size: 12px;
    font-weight: 500;
  }
}

@media screen and (max-width: 800px) and (max-width: 480px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn p span,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn p span {
    font-size: 3.2vw;
    line-height: 2.5em;
  }
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .flowBox .leftBox .txtBox .pointBtn img,
  .flowBoxWrap .flowBox .rightBox .txtBox .pointBtn img {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .leftBox {
    padding: 15px 10px 50px 0;
  }
}

.flowBoxWrap .flowBox .rightBox {
  background-color: #fee7d3;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBox .rightBox {
    padding: 15px 0 50px 10px;
  }
}

.flowBoxWrap .flowBox .tryangle {
  margin: 30px auto;
}

.flowBoxWrap .flowBox .tryangle span {
  border-width: 18px 18px 0 18px;
  border-color: #fff transparent transparent transparent;
}

@media screen and (max-width: 800px) {
  .flowBoxWrap .flowBox .tryangle span {
    border-width: 15px 15px 0 15px;
  }
}

.flowBoxWrap .flowBox .marginB0 {
  margin-bottom: 0;
}

.flowBoxWrap .flowBoxTitle {
  position: relative;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBoxTitle {
    width: calc(100% + 40px);
    margin: 0 -20px;
  }
}

.flowBoxWrap .flowBoxTitle h3 {
  line-height: 1;
}

.flowBoxWrap .flowBoxTitle h3 span {
  width: 50%;
  display: block;
  text-align: right;
  padding: 0 10px 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #dcdcdc;
  font-size: 34px;
  line-height: 1;
}

@media screen and (max-width: 1200px) {
  .flowBoxWrap .flowBoxTitle h3 span {
    font-size: 28px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBoxTitle h3 span {
    font-size: 24px;
  }
}

.flowBoxWrap .flowBoxTitle h3 span:nth-of-type(2) {
  text-align: left;
  padding: 0 0 15px 10px;
  background-color: #fee7d3;
  font-size: 30px;
  font-weight: 600;
  line-height: 34px;
}

@media screen and (max-width: 1200px) {
  .flowBoxWrap .flowBoxTitle h3 span:nth-of-type(2) {
    font-size: 24px;
    line-height: 28px;
  }
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBoxTitle h3 span:nth-of-type(2) {
    font-size: 20px;
    line-height: 24px;
  }
}

.flowBoxWrap .flowBoxTitle h3 span.padTop {
  padding-top: 70px;
}

@media screen and (max-width: 640px) {
  .flowBoxWrap .flowBoxTitle h3 span.padTop {
    padding-top: 50px;
  }
}

.flowBoxWrap .flowBoxTitle::after {
  content: '';
  height: 1px;
  width: calc(100% - 30px);
  background-color: #fff;
  position: absolute;
  bottom: 1px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*ポップアップ　modal*/
.c-modal {
  display: none;
  height: 100vh;
  position: fixed;
  top: 0;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

.c-modal_bg {
  background: rgba(0, 0, 0, 0.6);
  height: 100vh;
  width: 100%;
}

.c-modal_content {
  background: #fff;
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fee7d3;
  width: 50%;
  padding: 15px;
  min-height: 40vh;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .c-modal_content {
    min-height: 30vh;
  }
}

@media screen and (max-width: 800px) {
  .c-modal_content {
    width: 80vw;
  }
}

@media screen and (max-width: 640px) {
  .c-modal_content {
    width: 90vw;
  }
}

.c-modal_content_inner {
  position: relative;
  width: 100%;
  min-height: 40vh;
  line-height: 2em;
  background-color: #fff;
  padding: 15px 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 640px) {
  .c-modal_content_inner {
    min-height: 30vh;
  }
}

.c-modal_content_inner p {
  font-size: 20px;
}

.c-modal_content_inner .title {
  font-size: 24px;
  font-weight: 600;
  border-bottom: dashed 1px #505050;
  padding-bottom: 15px;
  margin-bottom: 15px;
}

@media screen and (max-width: 1080px) {
  .c-modal_content_inner .title {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .c-modal_content_inner .title {
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0;
  }
}

.c-modal_close {
  position: absolute;
  bottom: 0;
  right: 5px;
}

.c-modal_close:hover {
  color: #151515;
}

.c-modal_close span {
  font-size: 12px;
  padding-left: 20px;
}

.c-modal_close span::before, .c-modal_close span::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 2px;
  height: 15px;
  margin: -6px 0 0 0;
  background: #151515;
}

.c-modal_close span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.c-modal_close span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/*WORKS*/
.worksSlide {
  background-color: #fff;
}

@media screen and (max-width: 800px) {
  .worksSlide {
    padding: 0;
  }
}

.worksSlide #slide02 {
  width: 100%;
}

.worksSlide #slide02 li {
  width: 50%;
  padding: 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media screen and (max-width: 800px) {
  .worksSlide #slide02 li {
    padding: 10px;
  }
}

.worksSlide #slide02 li:focus {
  outline: none;
}

.worksSlide #slide02 li .name {
  font-size: 24px;
  padding: 10px 0 5px;
}

@media screen and (max-width: 1080px) {
  .worksSlide #slide02 li .name {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .worksSlide #slide02 li .name {
    font-size: 18px;
    line-height: 2em;
  }
}

@media screen and (max-width: 480px) {
  .worksSlide #slide02 li .name {
    font-size: 16px;
    line-height: 1.5em;
  }
}

.worksSlide #slide02 li .img {
  width: 100%;
  height: auto;
  padding-top: 75%;
}

.worksSlide #slide02 li.slide01 .img {
  background-image: url("../../images/promo2021/slide/slide_l01.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide02 .img {
  background-image: url("../../images/promo2021/slide/slide_l02.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide03 .img {
  background-image: url("../../images/promo2021/slide/slide_l03.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide04 .img {
  background-image: url("../../images/promo2021/slide/slide_l04.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide05 .img {
  background-image: url("../../images/promo2021/slide/slide_l05.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide06 .img {
  background-image: url("../../images/promo2021/slide/slide_l06.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide07 .img {
  background-image: url("../../images/promo2021/slide/slide_l07.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide08 .img {
  background-image: url("../../images/promo2021/slide/slide_l08.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide09 .img {
  background-image: url("../../images/promo2021/slide/slide_l09.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide10 .img {
  background-image: url("../../images/promo2021/slide/slide_l10.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide11 .img {
  background-image: url("../../images/promo2021/slide/slide_l11.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide12 .img {
  background-image: url("../../images/promo2021/slide/slide_l12.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 li.slide13 .img {
  background-image: url("../../images/promo2021/slide/slide_l13.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.worksSlide #slide02 .slide-dots {
  width: 450px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: absolute;
  left: 50%;
  bottom: -30px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 480px) {
  .worksSlide #slide02 .slide-dots {
    width: 90%;
  }
}

.worksSlide #slide02 .slide-dots button {
  text-indent: -9990px;
  display: none;
}

.worksSlide #slide02 .slide-dots li {
  padding: 0;
  width: 8px;
  height: 8px;
  line-height: 8px;
  background-color: #dcdcdc;
  border-radius: 50%;
  color: #fff;
  text-align: center;
}

.worksSlide #slide02 .slide-dots li.slick-active {
  background-color: #f34a1c;
}

@media screen and (max-width: 480px) {
  .worksSlide #slide02 .slide-dots li {
    width: 8px;
    height: 8px;
    line-height: 8px;
  }
}

/*MEMBER*/
@media screen and (max-width: 480px) {
  .memberBoxWrap {
    padding: 0;
  }
}

.memberBoxWrap .brokenBox {
  padding-top: 0;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox {
    margin-bottom: 20vw;
  }
}

@media screen and (max-width: 640px) {
  .memberBoxWrap .brokenBox {
    margin-bottom: 25vw;
  }
}

@media screen and (max-width: 1200px) {
  .memberBoxWrap .brokenBox.memberBox02 {
    margin-bottom: 140px;
  }
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox.memberBox02 {
    margin-bottom: 20vw;
  }
}

@media screen and (max-width: 640px) {
  .memberBoxWrap .brokenBox.memberBox02 {
    margin-bottom: 50vw;
  }
}

@media screen and (max-width: 640px) {
  .memberBoxWrap .brokenBox.memberBox03 {
    margin-bottom: 40vw;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap {
  margin-top: 15px;
  padding: 30px 30px 30px 0;
  background-color: #fee7d3;
  position: relative;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .txtBoxWrap {
    width: 70%;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .txtBoxWrap {
    width: 80vw;
    padding: 20px 20px 20px 0;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap::before, .memberBoxWrap .brokenBox .txtBoxWrap::after {
  content: '';
  display: block;
  height: 100%;
  background-color: #fee7d3;
  position: absolute;
}

.memberBoxWrap .brokenBox .txtBoxWrap::before {
  width: 100%;
  top: 0;
  left: -100%;
  z-index: -1;
}

.memberBoxWrap .brokenBox .txtBoxWrap::after {
  width: 35%;
  top: 0;
  right: -35%;
  z-index: -1;
}

.memberBoxWrap .brokenBox .txtBoxWrap .txtBox {
  background-color: #fff;
  padding: 20px;
  padding-bottom: 8%;
}

.memberBoxWrap .brokenBox .txtBoxWrap .txtBox h3 {
  font-size: 24px;
  font-weight: 700;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .txtBoxWrap .txtBox h3 {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .memberBoxWrap .brokenBox .txtBoxWrap .txtBox h3 {
    font-size: 18px;
    line-height: 2em;
    letter-spacing: 0;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .txtBoxWrap .txtBox .pc2 {
    display: none;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox02 {
  margin-top: 30px;
  padding: 30px 0 30px 30px;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox02 {
    width: 50%;
  }
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox02 .pc {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox02 {
    width: 80vw;
    padding: 20px 0 20px 20px;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox02::before {
  width: 70%;
  top: 0;
  left: -70%;
  z-index: -1;
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox02::after {
  width: 100%;
  top: 0;
  right: -100%;
  z-index: -1;
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox02 .txtBox {
  padding-bottom: 32%;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 {
    width: 65%;
  }
}

@media screen and (max-width: 900px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 {
    width: 100%;
    padding: 30px 0;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 {
    padding: 20px;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .subTitle span {
  font-size: 16px;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .subTitle span {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .subTitle span {
    font-size: 10px;
  }
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .inner {
  margin-top: 30px;
  padding: 20px;
  border: solid 1px #dcdcdc;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .inner h4 {
  padding-bottom: 4px;
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox03 .inner p:first-of-type {
  padding-bottom: 20px;
}

.memberBoxWrap .brokenBox .txtBoxWrap.txtBox03::after {
  width: 10%;
  top: 0;
  right: -10%;
  z-index: -1;
}

.memberBoxWrap .brokenBox .imgBox01 {
  width: 30%;
  max-width: 360px;
}

@media screen and (max-width: 1200px) {
  .memberBoxWrap .brokenBox .imgBox01 {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 10;
  }
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox01 {
    width: 40vw;
    top: inherit;
    bottom: -10vw;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .imgBox01 {
    width: 55vw;
    bottom: -20vw;
  }
}

.memberBoxWrap .brokenBox .imgBox01 .img {
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox01 .img.img01 {
    padding-top: 25%;
  }
}

.memberBoxWrap .brokenBox .imgBox01 .img.img02 {
  padding-top: 25%;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox01 .img.img02 {
    padding-top: 0;
  }
}

.memberBoxWrap .brokenBox .imgBox02 {
  width: 60%;
  max-width: 720px;
}

@media screen and (max-width: 1200px) {
  .memberBoxWrap .brokenBox .imgBox02 {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10;
  }
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox02 {
    width: 65vw;
    top: inherit;
    bottom: -10vw;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .imgBox02 {
    width: 95vw;
    bottom: -40vw;
  }
}

.memberBoxWrap .brokenBox .imgBox02 .imgWrap {
  width: 20%;
}

.memberBoxWrap .brokenBox .imgBox02 .imgWrap .img04,
.memberBoxWrap .brokenBox .imgBox02 .imgWrap .img10 {
  padding-top: 50%;
}

.memberBoxWrap .brokenBox .imgBox02 .imgWrap .img13 {
  padding-top: 200%;
}

.memberBoxWrap .brokenBox .imgBox03 {
  width: 55%;
  max-width: 660px;
  position: absolute;
  top: 12%;
  right: -10%;
}

@media screen and (max-width: 1200px) {
  .memberBoxWrap .brokenBox .imgBox03 {
    width: 45%;
  }
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox03 {
    width: 50vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    top: inherit;
    right: 0;
    bottom: -10vw;
  }
}

@media screen and (max-width: 900px) {
  .memberBoxWrap .brokenBox .imgBox03 {
    width: 60vw;
    bottom: -15vw;
  }
}

@media screen and (max-width: 480px) {
  .memberBoxWrap .brokenBox .imgBox03 {
    width: 85vw;
    bottom: -35vw;
  }
}

.memberBoxWrap .brokenBox .imgBox03 .img {
  width: 50%;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox03 .img.img01 {
    padding-top: 10%;
  }
}

.memberBoxWrap .brokenBox .imgBox03 .img.img02 {
  margin-left: 25%;
}

@media screen and (max-width: 1080px) {
  .memberBoxWrap .brokenBox .imgBox03 .img.img02 {
    margin-left: 0;
  }
}

/*contact*/
.contactForm {
  background-color: #f5f5f5;
  padding: 50px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: left;
}

.contactForm .contact {
  margin: 0;
}

.contactForm .contact dt {
  float: left;
  width: 30%;
  line-height: 2em;
  font-size: 24px;
  padding: 4px 0;
}

@media screen and (max-width: 1080px) {
  .contactForm .contact dt {
    font-size: 20px;
  }
}

@media screen and (max-width: 800px) {
  .contactForm .contact dt {
    font-size: 16px;
  }
}

@media screen and (max-width: 640px) {
  .contactForm .contact dt {
    float: none;
    width: 100%;
  }
  .contactForm .contact dt.mq_640off {
    display: none;
  }
}

.contactForm .contact dt .must {
  padding: 0 6px;
  font-size: 14px;
  line-height: 24px;
  display: inline-block;
  vertical-align: middle;
  margin: 0 0 2px 10px;
  color: #fff;
  background-color: #f34a1c;
}

@media screen and (max-width: 1080px) {
  .contactForm .contact dt .must {
    line-height: 20px;
  }
}

@media screen and (max-width: 800px) {
  .contactForm .contact dt .must {
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
  }
}

.contactForm .contact dt.big {
  width: 100%;
}

.contactForm .contact dt p {
  font-size: 16px;
  display: inline-block;
}

@media screen and (max-width: 800px) {
  .contactForm .contact dt p {
    font-size: 14px;
  }
}

.contactForm .contact dt p.mq_640on {
  display: none;
}

@media screen and (max-width: 640px) {
  .contactForm .contact dt p.mq_640on {
    display: inline;
  }
}

.contactForm .contact dd {
  margin-bottom: 10px;
  line-height: 2em;
  font-size: 24px;
  padding: 4px 0px 4px 35%;
}

@media screen and (max-width: 1080px) {
  .contactForm .contact dd {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .contactForm .contact dd {
    font-size: 18px;
    line-height: 2em;
    padding: 4px 0px;
    width: 100%;
  }
  .contactForm .contact dd.mq_640off {
    display: none;
  }
}

.contactForm .contact dd.marginB0 {
  margin-bottom: 0;
}

.contactForm .contact dd.big {
  width: 100%;
  padding: 4px 0;
}

.contactForm .contact dd input,
.contactForm .contact dd textarea {
  width: 100%;
  border: solid 1px #dcdcdc;
  background-color: #fff;
}

.contactForm .contact dd input[type='radio'],
.contactForm .contact dd textarea[type='radio'] {
  width: auto;
}

.contactForm .contact dd p {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  .contactForm .contact dd p {
    font-size: 14px;
  }
}

.contactForm .contact dd.radio {
  line-height: 1.2em;
}

.contactForm .contact dd.radio p {
  display: inline-block;
}

.contactForm .contactBtn {
  text-align: center;
  margin: auto;
  width: 220px;
  height: 50px;
  line-height: 50px;
}

.contactForm .contactBtn input {
  letter-spacing: 0.1em;
  width: 100%;
  height: 100%;
  background-color: #f34a1c;
  font-size: 24px;
  color: #fff;
  font-weight: 700;
  border: solid 1px #f34a1c;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 1080px) {
  .contactForm .contactBtn input {
    font-size: 20px;
  }
}

@media screen and (max-width: 640px) {
  .contactForm .contactBtn input {
    font-size: 18px;
    line-height: 2em;
  }
}

.contactForm .contactBtn input:hover {
  background-color: #fff;
  color: #f34a1c;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.banner {
  margin-bottom: 100px;
}
/*# sourceMappingURL=style.css.map */</pre></body></html>