@charset "utf-8";

/* --------------------
Common
-------------------- */
html {
  margin: 0;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
  margin: 0;
  padding: 0;
  font-feature-settings: "palt";
  overflow-wrap: break-word;
  color: #404044;
  font-size: 1.6rem;
  margin: 0;
  background-color: #ece5de;
}

h1, h2, h3, h4, h5, h6, p, span, ul, ol, li  {
  font-family: 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'Yu Gothic', YuGothic, Verdana, Helvetica, 'ＭＳ Ｐゴシック', sans-serif;
  margin: 0;
  padding: 0;
  list-style-type: none;
}

::selection {
  background-color: #efc8B8;
  color: #333;
}

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

/* .button */
.button {
  margin: 0 auto;
  padding-top: 20px;
  width: 360px;
}

.button .click-area span {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #fff;
}

.button .click-area span {
  text-shadow: none;
}

.button .click-area {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60px;
  border-radius: 5px;
  background-color: #fff;
  width: 100%;
  transition: all 0.2s ease-in-out;
  position: relative;
  box-shadow: rgb(0 0 0 / 10%) 3px 3px 0;
  text-decoration: none;
}

.button .click-area .fa {
  margin-left: 10px;
}

/* white */
.button.black .click-area {
  background-color: #333;
  border: 1px solid #333;
  box-shadow: rgb(0 0 0 / 10%) 3px 3px 0;
  font-size: 16px;
  text-align: center;
  font-weight: bold;
}

.button.black .click-area .text {
  color: #fff;
}

.button.black .click-area:hover {
  background-color: #D65727;
  border-color: #D65727;
  text-decoration: none;
  color: #fff;
}

.button.black .click-area:hover .text {
  color: #fff;
}

/* orange */
.button.orange .click-area {
  color: #fff;
  background: #D65727;
  border:  1px solid #D65727;
}

.button.orange .click-area:hover {
  background: #72270B;
  border:  1px solid #72270B;
}

.button.orange .click-area:hover span {
  color: #fff;
}

@media screen and (max-width: 767px) {
  .only-pc {
    display: none;
  }

  .button {
    width: auto;
  }
}

.form-area {
  width: auto;
  background-color: #fff;
  padding: 60px 0 10px 0;
  margin-bottom: 40px;
  border-radius: 8px;
  margin: 0 10% 40px 10%;
}

/*
  common
*/
.center {
  text-align: center;
}

.white-text {
  color: #fff;
}

.orange-text {
  color: #D65727;
}

.pc,
.pc.tab,
.pc.sp {
  display: block;
}

.tab {
  display: none;
}

.sp {
  display: none;
}

.strong {
  font-weight: bold;
}

.note {
  font-size: 12px;
  margin: 0;
  padding: 0;
}

.ul-list {
  padding: 0;
  margin: 0;
}

.ul-list li {
  position: relative;
  font-size: 16px;
  text-indent: -1rem;
  padding-left: 1rem;
  line-height: 1.75rem;
  margin-bottom: 0.5rem;
}

.ul-list li::before {
  content: "・";
}

.ul-list li:last-child {
  margin-bottom: 0;
}

.ul-list li::marker {
  content: none;
}


@media only screen and (max-width: 960px) {
  .pc,
  .pc.sp {
    display: none;
  }

  .tab {
    display: block;
  }
}

@media only screen and (max-width: 767px) {
  .area {
    width: auto;
    max-width: 100%;
    padding: 0 10px;
  }

  .lead {
    text-align: left;
  }

  .pc,
  .pc.tab,
  .tab {
    display: none;
  }

  .sp,
  .pc.sp,
  .pc.tab.sp,
  .tab.sp {
    display: block;
  }
}

.large-text {
  font-size: 20px;
  padding-bottom: 20px;
  line-height: 1.75;
}

/*
table
-------------------- */
.table {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
  color: #333;
  font-size: 16px;
}

.table th {
  border-collapse: collapse;
  background: #f5f5f5;
  font-weight: normal;
  text-align: center;
  padding: 10px;
}

.table td {
  border-collapse: collapse;
  background: #fff;
  font-weight: normal;
  text-align: left;
  padding: 10px;
}

.table .border-cell {
  border-top: 1px solid #666;
  border-bottom: 1px solid #666;
}

.table .price {
  text-align: center;
}

.table .center {
  text-align: center;
}

/*
.table.orange.bg-black
-------------------- */
.table.orange.bg-black th,
.table.orange.bg-black td {
  border-color: #333;
}

.table.orange.bg-black thead th {
  background-color: #2C95BB;
  color: #fff;
}

/*
.table.orange.bg-white
-------------------- */
.table.orange.bg-white {
  box-shadow: rgb(0 0 0 / 10%) 2px 2px 0;
  border-radius: 0;
}

.table.orange.bg-white th,
.table.orange.bg-white td {
  border-color: #eee4dd;
}

.table.orange.bg-white thead th {
  background-color: #F3CCBD;
  color: #333;
}

.table.orange.bg-white .bg-orange {
  background-color: #F3CCBD;
  color: #333;
}

.table.orange.bg-white .item {
  background-color: #F3CCBD;
  width: 210px;
}

.table.orange.bg-white .item.last-item {
  border-bottom-color: #2C95BB;
}

.table.orange.bg-white .last-summary {
  border-bottom-color: #fff;
}

@media only screen and (max-width:  767px) {
  .content .table-area {
    width: 100%;
    overflow-x: auto;
  }
  .content .table-area .table {
    width: 200%;
  }
}

/*
  MAIN
*/

.layout_main {
  display: block;
  background-color: #fff;
}

.layout_main .lead {
  margin: 0 2rem;
}

.lead .label {
  border: 1px solid #cccccf;
  border-radius: 2px;
  display: inline-block;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1;
  margin: 0;
  padding: 1rem;
}

.lead .headline {
  font-size: 2.2rem;
  margin: 2.8rem 0 1.7rem;
}

.lead .img {
  margin: 1.7rem auto 2.7rem;
}

.lead .list {
  border: 1px solid #cccccf;
  font-size: 1.5rem;
  margin: 3.4rem auto;
  padding: 3rem 2rem 3rem 3rem;
}

.lead .list li {
  margin-left: 1.8rem;
}

.lead .list li:not(:last-child) {
  margin-bottom: 1.4rem;
}

.lead .list h3 {
  font-size: 1.6rem;
  margin: 0;
}

.lead .list p {
  margin: 0;
}

.layout_main .lead a {
  color: #FC5577;
}

.layout_main .lead a:hover {
  text-decoration: none;
}

.layout_main .lead a .fa {
  margin: 0 5px;
}

.layout_main .lead .block {
  border: 1px solid #f57;
  padding: 20px;
}

.layout_main .lead .block .subheadline {
  margin: 0;
  padding: 10px 0;
  color: #f57;
  text-align: center;
  font-size: 20px;
}

.layout_main .lead .block .minheadline {
  text-align: left;
  margin: 10px 0 20px 1rem;
  font-size: 16px;
}

.layout_main .lead .block .list {
  border: none;
  padding: 0 0 10px 0;
  margin: 0;
}

.layout_main .lead .block .list li {
  list-style-type: none;
  position: relative;
  left: -1rem;
  line-height: 2.5rem;
}

.layout_main .lead .block .list li::before {
  content: "・";
  left: -1.5rem;
  position: absolute;
}

/*
 .main-image
*/

/* header */
.main-image .layout_header {
  padding: 24px 0 0 24px;
}

.main-image .header-logo {
  width: 200px;
}

.main-image .header-logo .click-area {
  display: block;
  width: 100%;
  height: 24px;
}

.main-image {
  min-height: 480px;
  width: 100%;
  background-color: #333;
  margin-bottom: 80px;
  background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.7) 100%) fixed,url(https://iot.sakura.ad.jp/request_platform_devkit/images/main_image_bg.png);
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  margin-bottom: 40px;
}

.main-image .area {
  padding: 0;
  position: relative;
}

.main-image .page-title {
  display: block;
  padding-top: 32px;
}

.main-image .page-title .service-name {
  display: block;
  text-align: center;
  font-size: 26px;
  padding-bottom: 8px;
}

.main-image .page-title .campaign-name {
  display: block;
  text-align: center;
  font-size: 48px;
  color: #fff;
}

.main-image .lead {
  text-align: center;
  color: #fff;
  font-size: 20px;
  padding-bottom: 32px;
  line-height: 1.75;
  font-weight: bold;
  padding-top: 20px;
}

@media only screen and (max-width: 960px ){
  .main-image {
    height: auto;
    min-height: 58vw;
  }
}

@media only screen and (max-width: 767px){
  .main-image {
    min-height: 100vw;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.7) 100%) ,url(https://iot.sakura.ad.jp/request_platform_devkit/images/main_image_bg.png);
    background-size: 200%;
    background-position: 60% center;
  }

  .main-image .area {
    padding: 0 10px;
  }

  .main-image .sim_card {
    content: none;
    display: none;
  }

  .main-image .page-title .service-name {
    font-size: 16px;
  }

  .main-image .page-title .campaign-name {
    font-size: 32px;
  }

  .main-image .lead {
    font-size: 16px;
  }
}

/*
.section
*/

.section .area {
  padding: 0;
  width: 960px;
  margin: 0 auto;
}

/* .sub-section  */
.section .sub-section {
  margin-bottom: 40px;
}

/* .white-bg  */
.section .white-bg {
  padding: 24px;
  border-radius: 4px;
  background-color: #fff;
  box-shadow: 2px 2px 0 rgba(0,0,0,10%);
}

.section .white-bg .catch-copy {
  display: block;
  text-align: center;
  font-size: 24px;
  color: #FC5500;
  font-weight: bold;
  padding-top: 10px;
  margin-bottom: 0;
}

@media only screen and (max-width: 960px) {
  .section {
    overflow: hidden;
  }
}

@media only screen and (max-width: 767px) {
  .section .white-bg {
    padding: 8px;
  }

  .section .white-bg .catch-copy {
    padding-top: 16px;
    font-size: 20px;
  }

  .outline .image-area .lead {
    text-align: center;
  }
}

/* .bg-black  */
.section .bg-black {
  background-color: #333333;
  margin: 0 10%;
  border-radius: 8px;
}

/* .maxheadline  */
.section .maxheadline {
  display: block;
  text-align: center;
}

.section .maxheadline .text {
  font-size: 40px;
}

/* .headline  */
.section .headline {
  display: block;
  text-align: center;
}

.section .headline .text {
  font-size: 24px;
}


/* .headline.underline  */
.section .headline.underline {
  border-bottom: none;
  position: relative;
  margin: 0;
  padding: 10px 0 20px 0;
  min-height: auto;
  background: none;
  text-align: center;
  margin-bottom: 40px;
}

.section .headline.underline .text {
  padding: 0;
  font-size: 32px;
  text-align: center;
  color: #333;
  letter-spacing: 0.01em;
  font-weight: bold;
  position: relative;
  line-height: 1.5em;
}

.section .headline.underline .text::before {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background-color: #D65727;
  position: absolute;
  bottom: -30px;
  left: calc(50% - 25px);
}

@media only screen and (max-width: 767px) {
  .section .headline.underline {
    margin-bottom: 20px;
  }

  .section .headline.underline .text {
    font-size: 24px;
    display: block;
  }

  .section .headline.underline .text::before {
    width: 25px;
    bottom: -20px;
    left: calc(50% - 25px/2);
  }
}

@media only screen and (max-width: 960px ){
  .section .area {
    padding: 0 10px;
    width: auto;
  }
}

/* --------------------
.outline
-------------------- */
.outline {
  margin-bottom: 40px;
}

.outline .outline-image {
  margin-bottom: 64px;
}

.outline .outline-image .headline {
  margin-bottom: 32px;
}

.outline .image-area {
  display: block;
}

.outline .image-area .catch-copy {
  padding-top: 12px;
}

.outline .image-area .devkit-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.outline .image-area .devkit-area .devkit_photo {
  width: auto;
}

.outline .image-area .coupon-area {
  width: auto;
  padding-top: 0;
}

.outline .image-area .coupon-area .cloud_coupon {
  width: 480px;
  text-align: center;
  margin: 0 auto;
}

.outline .image-area .lead {
  line-height: 1.5;
  margin: 0;
}

.outline .image-area .sim_card .large-text {
  font-size: 24px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.outline .image-area .cloud_coupon .lead {
  padding-top: 20px;
  line-height: 1.3;
}

.outline .image-area .cloud_coupon .large-text {
  font-size: 32px;
  margin-bottom: 0;
  padding-bottom: 0;
}

.outline .outline-list {
  margin-bottom: 0;
}

.outline .table .ul-list {
  padding-top: 10px;
}

@media only screen and (max-width: 767px) {
  .outline .outline-list .table,
  .outline .outline-list .table .ul-list li {
    font-size: 12px;
  }

  .outline .image-area .devkit-area {
    flex-direction: column;
    margin-bottom: 0;
  }
  .outline .image-area .coupon-area .cloud_coupon {
    width: auto;
  }
}

/* --------------------
.devkit-area
-------------------- */
.devkit-area {
  margin-bottom: 0;
}

.devkit-area .area .lead {
  margin-bottom: 20px;
}

.devkit-area .area .image {
  text-align: center;
}

.devkit-area .area .image .img_photo {
  width: 60%;
}

.devkit-area .area .image .note.center {
  font-size: 16px;
}

.devkit-area .area .button {
  padding: 40px 0;
}

@media only screen and (max-width: 767px) {
  .devkit-area .area .image .img_photo {
    width: auto;
  }

  .devkit-area .area .image .note.center {
    font-size: 12px;
  }
}

/* --------------------
.overview
-------------------- */
.overview {
  margin-bottom: 80px;
}

.overview .bg-black {
  padding-bottom: 72px;
}

.overview .bg-black .area.outline {
  position: relative;
  padding-top: 60px;
}

.overview .bg-black .area.outline::before {
  display: block;
  content: "";
  width: 160px;
  height: 4px;
  background-color: #D65727;
  position: absolute;
  top: 0;
  left: calc(50% - 80px);
}

.overview .bg-black .maxheadline {
  margin-bottom: 10px;
}

.overview .bg-black .maxheadline.small-text .text {
  font-size: 32px;
}

.overview .bg-black .image {
  width: 940px;
  display: block;
  margin: 0 auto 20px auto;
  padding: 20px;
}

.overview .bg-black .area.outline .image {
  width: 100%;
  padding: 20px 0;
}

.overview .bg-white {
  margin: 0;
}

/* ..item-list  */
.overview .bg-black .item-list {
  display: flex;
  justify-content: center;
  padding: 0;
  gap: 30px;
}

.overview .bg-black .item-list .item {
  width: calc(100% / 3);
  text-align: center;
  display: block;
  padding: 0;
  background-color: #fff;
  padding: 0 0 32px 0;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  border-radius: 8px;
}

.overview .bg-black .item-list .item .icon-area {
  background-color: #fff;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin: 0 auto;
}

.overview .bg-black .item-list .item .title {
  padding: 0 0 20px 0;
}

.overview .bg-black .item-list .item .title .text {
  font-size: 20px;
  display: block;
}

.overview .bg-black .item-list .item .lead {
  padding: 0 16px;
  text-align: left;
}

.overview .bg-black .button {
  padding-top: 40px;
}

@media only screen and (max-width: 1250px) {
  .overview .bg-black {
    margin: 0 10px;
    width: auto;
  }

  .overview .bg-black .maxheadline {
    padding: 0;
  }

  .overview .bg-black .area .maxheadline .text {
    font-size: 32px;
  }

  .overview .bg-black .lead.large-text {
    font-size: 16px;
  }

  .overview .bg-black .area.outline .image {
    width: auto;
  }

}

@media only screen and (max-width: 767px) {
  .overview .bg-black .item-list {
    flex-direction: column;
  }

  .overview .bg-black .item-list .item {
    width: auto;
  }

  .overview .bg-black .area.outline {
    padding-top: 40px;
  }

  .overview .bg-black .area .maxheadline .text {
    font-size: 28px;
  }

  .overview .bg-black .area.outline .image {
    width: auto;
  }

  .overview .bg-black .area.outline .image .sp {
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .overview .bg-black .maxheadline.small-text .text {
    font-size: 28px;
    line-height: 1.5em;
  }

  .overview .btn {
    width: auto;
  }
}


@media only screen and (max-width: 1250px) {
  .content .bg-black {
    margin: 0 10px;
  }
}

@media only screen and (max-width: 767px) {
  .content .bg-black .maxheadline .text {
    font-size: 28px;
    line-height: 1.5em;
  }

  .content .bg-black .lead.large-text {
    font-size: 16px;
  }

  .content .bg-black.bg-whie .area {
    padding: 20px 10px;
  }

  .bg-black .bnr-list {
    flex-direction: column;
  }

  .bg-black .bnr-list .bnr-item {
    width: 100%;
  }
}

/* --------------------
.price
-------------------- */
.price {
  margin-bottom: 80px;
}

.price .price-outline {
  width: 720px;
  margin: 0 auto 40px auto;
}

.price .inner.white-bg {
  display: block;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  margin: 0 0 40px 0;
}

@media only screen and (max-width: 960px) {
  .price .price-outline {
    width: auto;
    margin: 0 20px 40px 20px;
  }
}

@media only screen and (max-width: 767px) {
  .price .inner.white-bg {
    padding-top: 16px;
  }

  .price .large-text {
    font-size: 16px;
  }
}

/* .excel-download */
.inner.white-bg.excel-download-bg {
  display: block;
  padding: 40px 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.6);
  margin: 20px auto;
  width: calc(960px - 40px);
}

.inner.white-bg.excel-download-bg .excel-download {
  padding: 0;
}

.inner.white-bg.excel-download-bg .excel-download::before {
  top: 12px;
}

.excel-download {
  position: relative;
  left: 102px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
  width: calc(100% - 102px);
}

.excel-download::before {
  content: "";
  width: 72px;
  height: 72px;
  background-color: #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  left: -92px;
  top: 12px;
  background: url("https://iot.sakura.ad.jp/request_platform_devkit/images/icon_excel.png");
  background-size: 100%;
  line-height: 1em;
  border: 2px solid #3B8D00;
}

.excel-download .text-area {
  width: 64%;
}

.excel-download .text-area .lead {
  padding: 0;
  margin: 0;
}

.excel-download .minheadline {
  margin-left: 0;
  margin-top: 0;
  padding-bottom: 10px;
  margin-bottom: 0;
}

.excel-download .minheadline span {
  padding: 0;
  color: #3B8D00;
  font-size: 24px;
}

.excel-download .minheadline::before {
  content: none;
}

.excel-download .excel-download-btn {
  width: 30%;
  margin: 0;
  padding-top: 30px;
  position: relative;
  right: 0;
}

.excel-download .excel-download-btn .fa {
  background-image: url("https://iot.sakura.ad.jp/request_platform_devkit/images/icon_excel_download.png");
  background-size: 100%;
  display: inline-block;
  width: 10px;
  height: 12px;
  margin-right: 10px;
  margin-left: 0;
}

.excel-download .excel-download-btn .click-area {
  border: 1px solid #3B8D00;
  border-radius: 20px;
  min-height: 40px;
  padding: 0 20px;
  transition: all 0.2s ease-in-out;
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.1);
  width: auto;
}

.excel-download .excel-download-btn .click-area:hover {
  background-color: #3B8D00;
}

.excel-download .excel-download-btn .click-area .text {
  color: #3B8D00;
}

.excel-download .excel-download-btn .click-area:hover .text {
  color: #fff;
}

.excel-download .excel-download-btn .click-area:hover .fa {
  background-position: 0 -36px;
}

@media only screen and (max-width: 960px) {
  .inner.white-bg.excel-download-bg {
    width: calc(100% - 80px);
  }

  .excel-download .excel-download-btn {
    width: auto;
  }
}

@media only screen and (max-width: 767px) {
  .excel-download {
    flex-direction: column;
    left: 0;
    padding-top: 48px;
    width: 100%;
  }

  .excel-download::before {
    left: 0;
    top: 12px;
  }

  .excel-download .text-area {
    width: 100%;
  }

  .excel-download .text-area .minheadline {
    position: relative;
    left: 84px;
    bottom: 20px;
  }

  .excel-download .excel-download-btn {
    width: 100%;
  }

  .excel-download .excel-download-btn .click-area {
    width: auto;
  }

  .inner.white-bg.excel-download-bg .excel-download {
    padding-top: 48px;
  }

  .inner.white-bg.excel-download-bg {
    width: calc(100% - 40px);
    padding: 10px 10px 30px 10px;
  }
}

/* --------------------
.flow
-------------------- */
.flow {
  margin-bottom: 80px;
}

.flow .lead {
  padding-bottom: 0;
}

.flow .image {
  width: 560px;
  margin: 40px auto;
}

@media only screen and (max-width: 767px) {
  .flow .lead {
    font-size: 16px;
  }

  .flow .image {
    width: 28%;
    margin: 20px auto;
  }
}

/* --------------------
#form-area
-------------------- */

/* .btn */
.btn {
  align-items: center;
  background-color: #f57;
  border: 1px solid #fff;
  border-radius: 5rem;
  box-sizing: border-box;
  color: #fff;
  display: inline-flex;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  transition: all 0.2s ease-in-out;
}

.btn:hover {
  opacity: 0.6;
}

.form-area .layout_main .form-section {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 1020px;
}

.form-area .layout_main .lead {
  margin: 0;
  width: 420px;
}

.form-area .layout_main .lead .lead-text {
  line-height: 2;
  margin-bottom: 20px;
  font-size: 16px;
}

.form-area .lead .headline {
  font-size: 24px;
  margin: 32px 0;
  text-align: left;
}

.form-area .lead .img,
.form-area .lead .list {
  margin: 5rem auto;
}

.form-area .layout_main .form {
  box-shadow: 0 0 0.5rem #98a6c14d;
  margin: 0;
  width: 540px;
}

@media only screen and (max-width: 1300px) {
  .form-area {
    margin: 0 10px 10px 10px;
  }

  .form-area .layout_main {
    padding: 0 10px;
  }

  .form-area .layout_main .form-section {
    width: auto;
    padding-right: 20px;
  }

  .form-area .layout_main .lead {
    width: calc(50% - 40px);
    padding-left: 20px;
  }

  .form-area .layout_main .form {
     width: calc(50% - 40px);
  }

  .form-area .layout_main .form-section .lead .block {
    margin-top: 40px;
    margin-bottom: 20px;
  }

  .form-area .layout_main .form-section .lead .lead-text {
    line-height: 1.75;
  }
}

@media only screen and (max-width: 960px) {
  .form-area .layout_main .form-section {
    flex-direction: column;
  }

  .form-area .layout_main .lead {
    width: auto;
  }

  .form-area .layout_main .form {
    width: auto;
    box-shadow: none;
  }

}

@media only screen and (max-width: 767px) {
  .form-area .layout_main .form-section { 
    padding-right: 0;
   }
   
  .form-area .layout_main .lead {
    padding: 0;
  }
}


/* --------------------
footer
-------------------- */
.layout_footer {
  margin: 5rem 2rem 6.2rem;
  text-align: center;
}

.footer-logo {
  margin: 2.5rem auto 3rem;
  width: 20.9rem;
}

.footer-copyright {
  color: #a6a6ac;
  font-size: 1.3rem;
}

@media screen and (min-width: 769px) {
  .layout_footer {
    margin: 9.7rem 0 6rem;
  }

  .footer-logo {
    margin: 0 auto 3rem;
    width: 20.9rem;
  }
}

/*
  FORM
*/

.form .form_in {
  margin: 30px auto 50px;
}

.form .form_in * {
  box-sizing: border-box;
}

.form .form_in input::placeholder {
  color: #ccc;
}

.form .form_in input:focus {
  border-color: inherit;
  outline: none;
}

.form .form_in .mktoForm {
  margin-top: -10px;
}

.form .form_in .mktoFormRow {
  display: flex;
  padding: 0 60px;
}

.form .form_in .mktoFormCol {
  width: 100%;
}

.form .form_in .mktoForm.mktoLayoutAbove .mktoRequiredField .mktoAsterix {
  color: #f00;
  font-weight: normal;
  font-size: 20px;
}

.form .form_in .mktoForm .mktoError {
  right: inherit !important;
  bottom: -44px !important;
}

.form .form_in .mktoForm .mktoError .mktoErrorArrow {
  background: #f57;
  border: 0;
}

.form .form_in .mktoForm .mktoError .mktoErrorMsg {
  max-width: none;
  padding: 14px 15px;
  background: #f57;
  border: 0;
  color: #fff;
  font-size: 15px;
  text-shadow: none;
  box-shadow: none;
  font-weight: bold;
}

.form .form_in .mktoOffset {
  display: none;
}

.form .form_in .mktoHasWidth {
  width: 100%;
}

.form .form_in .mktoForm .mktoRadioList, .form .form_in .mktoForm .mktoCheckboxList {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.form .form_in .mktoLabel {
  margin-top: 20px;
  padding: 0 0 5px;
  font-weight: bold;
}

.form .form_in .mktoField {
  padding: 13px 20px;
  border: 1px solid #d0d0d0;
  font-size: 15px;
  border-radius: 5px;
}

.form .form_in .mktoForm .mktoRadioList > label,
.form .form_in .mktoForm .mktoCheckboxList > label {
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5em;
  display: block;
  min-height: 12px;
  padding: 3px 0;
  width: 97%;
}

.form .form_in input[type="checkbox"].mktoField,
.form .form_in input[type="radio"].mktoField {
  width: 3%;
}

@media screen and (max-width: 768px) {
  .form .form_in .mktoForm .mktoRadioList > label,
  .form .form_in .mktoForm .mktoCheckboxList > label {
    width: 93%;
  }

  .form .form_in input[type="checkbox"].mktoField,
  .form .form_in input[type="radio"].mktoField {
    width: 7%;
    transform: scale(1.3);
  }
}

.form .form_in select.mktoField {
  display: block;
  font-size: 16px;
  width: 100%;
  max-width: 100%;
  margin: 0;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  background-color: #fff;
  background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
  background-repeat: no-repeat, repeat;
  background-position: right 0.7em top 50%, 0 0;
  background-size: 0.65em auto, 100%;
}

@media screen and (max-width: 768px) {
  .form .form_in select.mktoField {
    padding: 10px;
  }
}

.form .form_in select.mktoField::-ms-expand {
  display: none;
}

.form .form_in .mktoFieldWrap {
  width: 100%;
}

.form .form_in .mktoButtonRow {
  margin-top: 20px;
  padding: 0 10px;
  display: block;
}

.form .form_in .mktoButtonWrap {
  display: block;
}

.form .form_in .mktoButtonWrap.mktoMinimal .mktoButton {
  align-items: center;
  background-color: #f57;
  border: 1px solid #fff;
  border-radius: 5rem;
  box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: normal;
  height: 52px;
  justify-content: center;
  letter-spacing: 0.8em;
  margin: 0 auto;
  text-decoration: none;
  width: 237px;
  transition: all 0.2s ease-in-out;
}

.form .form_in .mktoButtonWrap.mktoMinimal .mktoButton:hover {
  background-color: #f57;
  border: 1px solid #fff;
  color: #fff;
  opacity: 0.6;
}

.form .form_in .mktoHtmlText {
  width: auto;
  margin: 5px 0 0;
  font-size: 11px;
  line-height: 1.8;
}

.form .form_in .mktoHtmlText a {
  text-decoration: underline;
}

.form .form_in .mktoHtmlText a:hover {
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .form .form_in {
    width: auto;
    margin: 0;
  }

  .form .form_in .mktoForm {
    padding: 0;
  }

  .form .form_in .mktoFormRow {
    padding: 0;
  }

  .form .form_in .mktoForm.mktoLayoutAbove .mktoRequiredField .mktoAsterix::before {
    font-size: 10px;
  }

  .form .form_in .mktoLabel {
    margin-top: 15px;
  }

  .form .form_in .mktoField {
    padding: 20px 10px;
    font-size: 16px;
  }
}

.heading_01_01 {
  margin: 10px 0 20px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}

.service {
  font-size: 14px;
  margin: 10px 0 20px;
  text-align: center;
}

.notice {
  text-align: center;
  color: #f00;
}

.notice strong {
  display: inline-block;
  padding: 0 5px;
  font-size: 20px;
  vertical-align: middle;
}

.notice-list {
  margin: 20px auto 0;
  line-height: 1.5;
}

.notice-list li {
  margin: 10px 0 0;
}

#FORM_INQUIRY {
  height: 14rem;
  resize: vertical;
}

.for-sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .heading_01_01 {
    font-size: 18px;
    line-height: 1.5;
  }

  .notice-list {
    width: 100%;
    margin: 20px 0;
  }

  .notice-list li {
    font-size: 14px;
  }

  .for-sp {
    display: block;
  }
}

/* ----------------
送信前注意テキスト
---------------- */

.mktoForm span.submit-caution-txt {
  font-size: 12px;
  display: block;
  font-weight: normal;
  margin: 30px 0 0;
}

.mktoForm span.submit-caution-txt br {
  display: none;
}

@media screen and (max-width: 768px) {
  .mktoForm span.submit-caution-txt {
    text-align: left;
  }

  .mktoForm span.submit-caution-txt br {
    display: none;
  }
}

/* ----------------
完了画面
---------------- */
.complete {
  text-align: center;
  background-color: #fff;
  margin: 0;
}

.form-complete {
  padding-top: 56px;
}

.form-complete .heading .text {
  font-size: 32px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  display: block;
  padding: 0 0 20px 0;
}

.complete .complete-txt {
  margin: 0 0 48px 0;
}

.complete .button {
  margin: 0 auto;
  padding-top: 20px;
  padding-bottom: 24px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.complete .button .click-area {
  background-color: #fff;
  border: 1px solid #f57;
  border-radius: calc(56px / 2);
  box-sizing: border-box;
  color: #fff;
  font-size: 16px;
  font-weight: normal;
  height: 56px;
  letter-spacing: 0;
  margin: 0 auto;
  text-decoration: none;
  width: auto;
  transition: all 0.2s ease-in-out;
  padding: 0 72px;
  align-items: center;
}

.complete .button .click-area .text {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  z-index: 1;
  color: #f57;
  text-shadow: none;
}

.complete .button .click-area .text .fa {
  margin-left: 10px;
}

.complete .button .click-area:hover {
  background-color: #f57;
}

.complete .button .click-area:hover .text {
  color: #fff;
}

@media screen and (max-width: 768px) {
  .form {
    margin: 0 20px;
  }

  .complete {
    text-align: left;
    margin: 30px 0 60px;
  }

  .complete-txt {
    margin: 0 0 30px;
  }

  .for-pc {
    display: none;
  }
}

/*
  COMPLETE SCREEN
*/

#complete .layout_main {
  margin: 0 2rem;
}

#complete .headline {
  font-size: 2.8rem;
  margin: 0 0 5.2rem;
}

#complete .back-to-page {
  margin: 3.5rem 0 0;
}

#complete .back-to-page a {
  color: #0d50d6;
  text-decoration: none;
}

#complete .back-to-page a:hover {
  text-decoration: underline;
}

@media screen and (min-width: 769px) {
  #complete .layout_main {
    margin: 14.2rem auto;
  }
}

/* マルケトのエラー吹き出しを模倣したスタイル */
#email-error {
  background-color: rgb(253, 124, 150);
  color: rgb(255, 255, 255);
  font-size: 15px;
  font-weight: bold;
  padding: 14px 15px;
  border-radius: 6px;
  position: relative;
  top: 11px;
  left: 0;
  z-index: 10;
  animation: fadeIn 0.4s ease 0s 1 normal;
}

#email-error::before {
  width: 16px;
  height: 16px;
  transform: rotate(45deg);
  display: inline-block;
  position: absolute;
  top: -3px;
  left: 11px;
  content: '';
  overflow: hidden;
  z-index: 100;
  background-color: rgb(253, 124, 150);
}

/* マルケトのエラー吹き出しをマルケト側の js による style 制御に負けず完全に非表示にする */
#email-error + .mktoError,
#Email + .mktoError {
  display: none !important;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}