@charset "utf-8";
/* ------------------------------
 リセット
------------------------------ */
* {
  border: 0;
  margin: 0;
  /* outline:0; */
  padding: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}
html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}
body {
  font-size: 10px;
  font-size: 1rem;
  line-height: 1;
  position: relative;
  text-align: center;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
  height: 100%;
}
article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
hr {
  display: block;
}
ol,
ul {
  list-style: none;
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}
input,
select {
  vertical-align: middle;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

/* ------------------------------
	サイト全体
------------------------------ */
html,
body {
  margin: 0 auto;
  background-color: #fff;
  color: #1a1a1a;
  font-family: "メイリオ", Meiryo, Arial, sans-serif;
  line-height: 1.75;
  font-weight: 500;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
.site {
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.8rem;
  text-align: left;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
.cf:after {
  content: "";
  clear: both;
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
.tal {
  text-align: left !important;
}
.tac {
  text-align: center !important;
}
.tar {
  text-align: right !important;
}
.vat {
  vertical-align: top;
}
.vam {
  vertical-align: middle;
}
.vab {
  vertical-align: bottom;
}
strong,
.bold {
  font-weight: bold;
}
.nobold {
  font-weight: 500 !important;
}
.auto {
  margin-left: auto;
  margin-right: auto;
}
input.none {
  display: none;
}
/* 行スペース */
.t1 {
  margin-top: 1.75em;
}
.b1 {
  margin-bottom: 1.75em;
}
.b2 {
  margin-bottom: 3.5em;
}
.b3 {
  margin-bottom: 5.25em;
}
/* スペース */
.mt5 {
  margin-top: 5px !important;
}
.mt10 {
  margin-top: 10px !important;
}
.mt15 {
  margin-top: 15px !important;
}
.mt25 {
  margin-top: 25px !important;
}
.mt20 {
  margin-top: 20px !important;
}
.mt80 {
  margin-top: 80px !important;
}
.mb0 {
  margin-bottom: 0 !important;
}
.mb5 {
  margin-bottom: 5px !important;
}
.mb10 {
  margin-bottom: 10px !important;
}
.mb15 {
  margin-bottom: 15px !important;
}
.mb20 {
  margin-bottom: 20px !important;
}
.mb25 {
  margin-bottom: 25px !important;
}
.mb30 {
  margin-bottom: 30px !important;
}
.mb35 {
  margin-bottom: 35px !important;
}
.mb40 {
  margin-bottom: 40px !important;
}
.mb50 {
  margin-bottom: 50px !important;
}
.mb60 {
  margin-bottom: 60px !important;
}
.mb70 {
  margin-bottom: 70px !important;
}
.mb80 {
  margin-bottom: 80px !important;
}
.mb100 {
  margin-bottom: 100px !important;
}
.mb120 {
  margin-bottom: 120px !important;
}
.mb130 {
  margin-bottom: 130px !important;
}
.mb150 {
  margin-bottom: 150px !important;
}
.mb200 {
  margin-bottom: 200px !important;
}
.ml0 {
  margin-left: 0 !important;
}
.ml5 {
  margin-left: 5px !important;
}
.ml10 {
  margin-left: 10px !important;
}
.ml20 {
  margin-left: 20px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.ml2rem {
  margin-left: 2rem !important;
}
.mr0 {
  margin-right: 0 !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr10 {
  margin-right: 10px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.nopd {
  padding: 0 !important;
}
/* リンク */
a {
  color: #1a1a1a;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
@media print, screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}
a:focus {
  outline: 0;
}

a .img_hover {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
a .img_hover img {
  display: block;
  transition-duration: 0.3s;
  overflow: hidden;
  display: block;
  width: 100%;
}
a:hover .img_hover img {
  opacity: 1;
  overflow: hidden;
  transform: scale(1.03);
  transition-duration: 0.3s;
}
@media screen and (min-width: 768px) {
  .contents a {
    transition: 0.3s ease-in-out;
  }
  .contents a:hover {
    opacity: 0.7;
    color: #1a1a1a;
  }
}
/* カラー */
.pink {
  color: #ff8d70;
}
.red {
  color: #ff0000;
}
.blue {
  color: #0000ff;
}
.navy {
  color: #0d2c4f;
}
.gray {
  color: #8a8a90;
}
/* .gold { color: #b5a14c; } */
/* フォントサイズ */
.f11 {
  font-size: 1.1rem;
}
.f12 {
  font-size: 1.2rem;
}
.f13 {
  font-size: 1.3rem;
}
.f14 {
  font-size: 1.4rem;
}
.f15 {
  font-size: 1.5rem;
}
.small,
small,
.f16 {
  font-size: 1.6rem;
}
.big,
.f18 {
  font-size: 1.8rem;
}
.f19 {
  font-size: 1.9rem;
}
.f20 {
  font-size: 2rem;
}
.f21 {
  font-size: 2.1rem;
}
.f22 {
  font-size: 2.2rem;
}
.f24 {
  font-size: 2.4rem;
}
.f25 {
  font-size: 2.5rem;
}
.f26 {
  font-size: 2.6rem;
}
.f28 {
  font-size: 2.8rem;
}
.f31 {
  font-size: 3.1rem;
}
.f32 {
  font-size: 3.2rem;
}
/* 上付き */
sup {
  font-size: 1.3rem;
  vertical-align: top;
}
/* 下付き */
sub {
  font-size: 1.3rem;
  vertical-align: bottom;
}
/* 強調 */
em {
  font-style: italic;
}
/* 打消し */
del {
  text-decoration: line-through;
}
/* 引用・転用 */
blockquote {
  margin: 1em 3em;
}
/* 非表示 */
.hide {
  display: none;
}
/* インラインブロック */
.inline-block {
  display: inline-block;
}
/* インデント */
.ti1c {
  padding-left: 1em;
  text-indent: -1em;
}
.ti2c {
  padding-left: 2em;
  text-indent: -2em;
}
.ti2hc {
  padding-left: 2.5em;
  text-indent: -2.5em;
}
/* ------------------------------
	サイト全体（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .pc {
    display: block !important;
  }
  .sp {
    display: none !important;
  }
  .pc_tal {
    text-align: left;
  }
  .pc_tac {
    text-align: center;
  }
  .pc_tar {
    text-align: right;
  }
  .pc_bold {
    font-weight: bold;
  }
  .pc_nobr br {
    display: none;
  }
  /* スペース */
  .pc_mb0 {
    margin-bottom: 0 !important;
  }
  .pc_mb10 {
    margin-bottom: 10px !important;
  }
  .pc_mb20 {
    margin-bottom: 20px !important;
  }
  .pc_mb30 {
    margin-bottom: 30px !important;
  }
  .pc_mb40 {
    margin-bottom: 40px !important;
  }
  .pc_mb50 {
    margin-bottom: 50px !important;
  }
  .pc_mb60 {
    margin-bottom: 60px !important;
  }
  .pc_mb80 {
    margin-bottom: 80px !important;
  }
  .pc_mb100 {
    margin-bottom: 100px !important;
  }
  .pc_mr0 {
    margin-right: 0 !important;
  }
  .pc_mr10 {
    margin-right: 10px !important;
  }
  /* TEL Link */
  a[href^="tel:"] {
    color: #1a1a1a;
    text-decoration: none !important;
    pointer-events: none;
    cursor: default;
  }
  /* PCのみインラインブロック */
  .pc_inline-block {
    display: inline-block;
  }
}
/* ------------------------------
	サイト全体（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  html,
  body {
    min-width: 100%;
    max-width: 100%;
  }
  .site {
    min-width: 0;
    font-size: 1.6rem;
  }
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .sp_db {
    display: block !important;
  }
  .sp_tac {
    text-align: center !important;
  }
  .sp_tal {
    text-align: left !important;
  }
  .sp_nobr br {
    display: none;
  }
  .fl,
  .fr {
    float: none;
  }
  /* スペース */
  .mt25 {
    margin-top: 20px !important;
  }
  .mt80 {
    margin-top: 50px !important;
  }
  .mb15 {
    margin-bottom: 10px !important;
  }
  .mb20 {
    margin-bottom: 15px !important;
  }
  .mb25 {
    margin-bottom: 15px !important;
  }
  .mb30 {
    margin-bottom: 20px !important;
  }
  .mb35 {
    margin-bottom: 20px !important;
  }
  .mb40 {
    margin-bottom: 25px !important;
  }
  .mb50 {
    margin-bottom: 30px !important;
  }
  .mb60 {
    margin-bottom: 40px !important;
  }
  .mb70 {
    margin-bottom: 40px !important;
  }
  .mb80 {
    margin-bottom: 40px !important;
  }
  .mb100 {
    margin-bottom: 60px !important;
  }
  .mb120 {
    margin-bottom: 60px !important;
  }
  .mb130 {
    margin-bottom: 60px !important;
  }
  .mb150 {
    margin-bottom: 60px !important;
  }
  .mb200 {
    margin-bottom: 80px !important;
  }
  .sp_mt30 {
    margin-top: 30px !important;
  }
  .sp_mb0 {
    margin-bottom: 0 !important;
  }
  .sp_mb5 {
    margin-bottom: 5px !important;
  }
  .sp_mb10 {
    margin-bottom: 10px !important;
  }
  .sp_mb15 {
    margin-bottom: 15px !important;
  }
  .sp_mb20 {
    margin-bottom: 20px !important;
  }
  .sp_mb25 {
    margin-bottom: 25px !important;
  }
  .sp_mb30 {
    margin-bottom: 30px !important;
  }
  .sp_mb40,
  .mb10.sp_mb40 {
    margin-bottom: 40px !important;
  }
  .sp_mb50 {
    margin-bottom: 50px !important;
  }
  .sp_mb60 {
    margin-bottom: 60px !important;
  }
  .sp_mb80 {
    margin-bottom: 80px !important;
  }
  .sp_ml2em {
    margin-left: 2rem !important;
  }
  .sp_ml_auto {
    margin-left: auto !important;
  }
  .sp_mr0 {
    margin-right: 0 !important;
  }
  /* フォントサイズ */
  .f20 {
    font-size: 1.8rem;
  }
  .f21 {
    font-size: 1.8rem;
  }
  .f22 {
    font-size: 1.8rem;
  }
  .f24 {
    font-size: 2rem;
  }
  .f25 {
    font-size: 2rem;
  }
  .f26 {
    font-size: 2rem;
  }
  .f28 {
    font-size: 2rem;
  }
  .f31 {
    font-size: 2.6rem;
  }
  .f32 {
    font-size: 2.7rem;
  }
  .nobr br {
    display: none;
  }
  /* PCのみインラインブロックのスマホ表示 */
  .pc_inline-block {
    display: block;
    margin-bottom: 5px;
  }
  /* spのみインラインブロック */
  .sp_inline-block {
    display: inline-block;
  }
}

/* ------------------------------
 ヘッダ
------------------------------ */
.header {
  display: block;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100px;
  display: flex;
  justify-content: space-between;
  top: 0;
  align-items: center;
  background-color: #fff;
  box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.1);
}
.header_logo a {
  display: block;
  line-height: 1;
}
.header_logo img {
  width: 217px;
}
.btn_block {
  margin-right: 20px;
  line-height: 1;
}
a.header_btn_file {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  min-width: 178px;
  line-height: 54px;
  font-size: 1.7rem !important;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #ffd600;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-right: 10px;
}
a.header_btn_file::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.header_btn_contact {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  min-width: 178px;
  line-height: 54px;
  font-size: 1.7rem !important;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.header_btn_contact::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 20px;
  height: 20px;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_w.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
/* ------------------------------
 ヘッダ（PC表示）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .header {
    width: 100%;
    min-width: 1220px;
    height: 100px;
  }
  .headerBlock {
    width: 100%;
  }
  .header_logo a {
    margin-left: 35px;
  }
}
/* ------------------------------
 ヘッダ（スマホ表示）
------------------------------ */
@media screen and (max-width: 767px) {
  .header {
    height: 50px;
  }
  .header_logo img {
    width: 128px;
  }
  a.header_btn_file {
    padding: 0 20px 0 10px;
    min-width: 100px;
    line-height: 30px;
    font-size: 1.1rem !important;
    border-radius: 4px;
    margin-right: 5px;
  }
  a.header_btn_contact {
    padding: 0 20px 0 10px;
    min-width: 100px;
    line-height: 30px;
    font-size: 1.1rem !important;
    border-radius: 4px;
  }
  a.header_btn_file::after {
    width: 12px;
    height: 12px;
    right: 8px;
  }
  a.header_btn_contact::after {
    width: 12px;
    height: 12px;
    right: 8px;
  }
  .header_logo {
    margin-left: 3%;
  }
  .btn_block {
    margin-right: 3%;
  }
}
@media screen and (max-width: 350px) {
  .header_logo img {
    width: 80px;
  }
}

/* ------------------------------
 コンテンツ
------------------------------ */
.menu-layer {
  display: none;
}
.contents {
  position: relative;
  width: 100%;
  text-align: left;
}
/* ------------------------------
 コンテンツ（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  html,
  body {
    background-color: #fff;
  }
  .site {
    min-width: 1240px;
    margin: 0 auto;
    background-color: #fff;
  }
  .contents {
    margin-top: 100px;
  }
  /* 横幅1140px */
  .inBlock {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  .contents .inBlock::after {
    content: "";
    display: block;
    clear: both;
  }
  .block {
    width: 1140px;
    margin-left: auto;
    margin-right: auto;
  }
  .block.wide {
    width: 100%;
  }
}
/* ------------------------------
 コンテンツ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .site {
    min-width: 320px;
  }
  .contents {
    min-width: 320px;
    margin: 50px 0 0;
  }
  .block {
    width: 90%;
    margin-left: 5%;
    margin-right: 5%;
  }
}
/* ------------------------------
 フッタ（PC）
------------------------------ */
.footer {
  width: 100%;
  margin: 0;
  text-align: center;
  position: relative;
  z-index: 20;
  background-color: #000;
  padding: 10px;
  color: #fff;
  font-size: 1.3rem;
  font-family: Arial, sans-serif;
}
/* ページトップ */
.js-btn-pagetop {
  display: block;
  position: fixed;
  bottom: 55px;
  right: 30px;
  z-index: 1000;
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background-color: #000;
  font-weight: bold;
  transition: background-color 0.2s ease 0s;
  cursor: pointer;
}
.js-btn-pagetop:hover {
  text-decoration: none;
}
.js-btn-pagetop span {
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 10px solid #ffffff;
  border-top: 0;
  padding-top: 23px;
  margin: auto;
}

/* ------------------------------
 フッタ（スマホ）
------------------------------ */
@media screen and (max-width: 767px) {
  /* --- コピーライト --- */
  .footerCopy {
    padding: 10px 0;
  }
  .footerCopy p {
    font-size: 1.1rem;
  }
  .footerCopy p br {
    display: inline;
  }

  /* ページトップ */
  .js-btn-pagetop {
    bottom: 30px;
    right: 30px;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 1px solid #fff;
  }
  .js-btn-pagetop span {
    padding-top: 13px;
  }
}
/* ------------------------------
 見出し
------------------------------ */
.contents h2 {
  position: relative;
  display: block;
  font-size: 4.8rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.15rem;
  text-align: center;
  width: fit-content;
  margin: 0 auto 65px;
}
.contents h2 span {
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/headline_bg.gif")
    repeat-x bottom;
  padding-bottom: 15px;
}
.headline_pop {
  font-size: 4.8rem;
  display: block;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.headline_pop span {
  display: block;
  font-size: 2.7rem;
  position: relative;
  background: #000;
  color: #fff;
  width: 186px;
  height: 54px;
  line-height: 54px;
  border-radius: 60px;
  text-align: center;
  margin: 0 auto 10px;
}
.headline_pop span::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #000;
}
h3.headline_balloon {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
}
h3.headline_balloon::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 38px;
  vertical-align: middle;
  margin-right: 10px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/headline_deco_b.svg")
    no-repeat center / 100%;
  position: absolute;
  left: -40px;
  bottom: 5px;
}
h3.headline_balloon::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 38px;
  vertical-align: middle;
  margin-left: 10px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/headline_deco_b.svg")
    no-repeat center / 100%;
  transform: scale(-1, 1);
  position: absolute;
  right: -40px;
  bottom: 5px;
}
h3.headline_balloon_w {
  text-align: center;
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
}
h3.headline_balloon_w::before {
  content: "";
  display: inline-block;
  width: 34px;
  height: 38px;
  vertical-align: middle;
  margin-right: 10px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/headline_deco_w.svg")
    no-repeat center / 100%;
  position: absolute;
  left: -40px;
  bottom: 5px;
}
h3.headline_balloon_w::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 38px;
  vertical-align: middle;
  margin-left: 10px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/headline_deco_w.svg")
    no-repeat center / 100%;
  transform: scale(-1, 1);
  position: absolute;
  right: -40px;
  bottom: 5px;
}
/* ------------------------------
 見出し（スマホ）
------------------------------ */
@media screen and (max-width: 767px) {
  .contents h2 {
    font-size: 3.3rem;
    margin: 0 auto 35px;
    line-height: 1.6;
  }
  .contents h2 span {
    padding-bottom: 4px;
  }
  .contents h2::after {
    margin: 10px auto 0;
  }
  h3.headline_balloon {
    font-size: 2.2rem;
  }
  h3.headline_balloon_w {
    font-size: 2.2rem;
  }
}

/* ------------------------------
 ボーダー画像
------------------------------ */
img.border_img {
  border: 1px solid #000;
  border-radius: 15px;
}
/* ------------------------------
 ボタン
------------------------------ */
.btn_file a {
  position: relative;
  display: block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  width: 530px;
  line-height: 110px;
  font-size: 2.4rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #ffd600;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 auto 20px;
}
.btn_file a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 38px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.btn_file_w a {
  position: relative;
  display: block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  width: 530px;
  line-height: 110px;
  font-size: 2.4rem;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #fff;
  border: 1px solid #000;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 auto 20px;
}
.btn_file_w a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 38px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section_contact {
  padding: 100px 0;
}
.section_contact .btn_contact a {
  position: relative;
  display: block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  width: 530px;
  line-height: 110px;
  font-size: 2.4rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin: 0 auto 20px;
  border: 1px solid #000;
}
.section_contact .btn_contact a::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 38px;
  height: 38px;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_w.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
/* ------------------------------
 ボタン（スマホ）
------------------------------ */
@media screen and (max-width: 767px) {
  .btn_file a {
    padding: 0 40px 0 30px;
    width: 295px;
    line-height: 68px;
    font-size: 1.6rem;
    margin: 0 auto 20px;
  }
  .btn_file a::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
  .btn_file_w a {
    padding: 0 40px 0 30px;
    width: 295px;
    line-height: 68px;
    font-size: 1.6rem;
    margin: 0 auto 20px;
  }
  .btn_file_w a::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
  .section_contact {
    padding: 60px 0;
  }
  .section_contact .btn_contact a {
    padding: 0 40px 0 30px;
    width: 295px;
    line-height: 68px;
    font-size: 1.6rem;
    margin: 0 auto 20px;
  }
  .section_contact .btn_contact a::after {
    width: 25px;
    height: 25px;
    right: 15px;
  }
}
/* ------------------------------
 横幅（PC表示）
------------------------------ */
@media print, screen and (min-width: 768px) {
  /* 1/2 */
  .w1-2 {
    width: 47.89474%;
  }
  .w546 {
    width: 546px;
  }
  /* 1/3 */
  .w1-3 {
    width: 30.70176%;
  }
  .w350 {
    width: 350px;
  }
  /* 2/3 */
  .w2-3 {
    width: 65.35088%;
  }
  .w745 {
    width: 745px;
  }
  /* 1/4 */
  .w1-4 {
    width: 22.63158%;
  }
  .w258 {
    width: 258px;
  }
  /* 3/4 */
  .w3-4 {
    width: 74.21052%;
  }
}
/* ------------------------------
 横幅（スマホ）
------------------------------ */
@media screen and (max-width: 767px) {
  .w1-2 + .w1-2:not(.sp_w1-2),
  .w1-3 + .w1-3:not(.sp_w1-3),
  .w1-3 + .w2-3:not(.sp_w2-3),
  .w2-3 + .w1-3:not(.sp_w1-3) {
    margin-top: 20px !important;
  }
  .w1-3 img {
    width: 100%;
  }
  .sp_w1-2 {
    width: 47%;
  }
  .sp_w1-3 {
    width: 30%;
  }
  .sp_w2-3 {
    width: 65%;
  }
}
/* ------------------------------
 ボックス（PC）
------------------------------ */
/* 横並び */
.flexBox {
  display: flex !important;
  flex-wrap: wrap;
}
/* 横並び センター揃え */
.flexBox.jc-c {
  justify-content: center;
}
/* 横並び 端揃え */
.flexBox.jc-sb {
  justify-content: space-between;
}
/* 横並び 縦センター揃え */
.flexBox.ai-c {
  align-items: center;
}
/* 横並び4列（SP横並び2列） */
.flexBox.div4 {
  flex-wrap: wrap;
}
/* 横並びで写真キャプションが上 */
.flexBox.capTop > * {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media print, screen and (min-width: 768px) {
  /* 横並び2列 */
  .flexBox.div2 {
    flex-wrap: wrap;
    gap: 40px 48px;
  }
  .flexBox.div2 > * {
    width: 546px;
    margin-bottom: 0;
  }

  /* 横並び3列 */
  .flexBox.div3 {
    flex-wrap: wrap;
    gap: 40px 30px;
  }
  .flexBox.div3 > * {
    width: 360px;
    margin-bottom: 0;
  }

  /* 横並び4列（SP横並び2列） */
  .flexBox.div4 {
    gap: 40px 36px;
  }
  .flexBox.div4 > * {
    width: 258px;
    margin-bottom: 0;
  }
}
/* ------------------------------
 ボックス（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  /* グラデ枠ボックス */
  .borderBox {
    padding: 17px 27px 27px;
  }
  /* 横並び2列・横並び3列 */
  .flexBox.div2,
  .flexBox.div3 {
    display: block !important;
  }
  /* 横並び4列（SP横並び2列） */
  .flexBox.div4 > * {
    width: 47.895%;
  }
  .flexBox.div4 {
    gap: 0 4.21%;
  }
}
/* ------------------------------
 ノースクリプト
------------------------------ */
#nojs {
  width: 100%;
  padding: 0;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2000;
  background: #036;
}

#nojs p {
  padding: 3px 0;
  color: #fff;
  font-size: 1.5rem;
}

/* ------------------------------
 印刷用コード
------------------------------ */
@media print {
  .header {
    position: absolute;
  }
  .js-btn-pagetop {
    display: none !important;
  }
}

/* --- 余白 --- */
@page {
  margin: 9.7mm 9.7mm;
}

/* ------------------------------
 Android用アラート
------------------------------ */
.alert-old-android-browser {
  display: none;
}
.alert-old-android-browser.is-show {
  border-top: 1px solid #aaa;
  display: block;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  color: #222;
  font-size: 16px;
  z-index: 200000;
  padding: 30px 40px 20px 20px;
}
/* android browser */
.page-fixed-header-android .alert-old-android-browser.is-show {
  position: fixed;
  bottom: 0;
  left: 0;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__text {
  margin-bottom: 1em;
  background-image: url(../img/warning.png);
  background-repeat: no-repeat;
  padding-left: 30px;
  line-height: 18px;
  background-size: 20px 18px;
  margin-bottom: 10px;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__link {
  color: #1685d2;
  text-decoration: none;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close {
  display: block;
  position: absolute;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:before,
.alert-old-android-browser.is-show > .alert-old-android-browser__close:after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  background-color: #aaa;
  width: 20px;
  height: 2px;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.alert-old-android-browser.is-show > .alert-old-android-browser__close:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.alert-old-android-browser.is-show > .alert-old-android-browser__link:before {
  font-family: "FontAwesome";
  content: "\f138";
  margin-right: 5px;
  color: #1685d2;
  display: inline-block;
}
.pc_hide {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_hide {
    display: block;
  }
  .footer {
    min-width: 100%;
  }
}

u {
  text-decoration: underline;
}
.hide {
  display: none;
}
/* ------------------------------
 メインイメージ
------------------------------ */
.main_image {
  position: relative;
  width: fit-content;
}
.main_image_text {
  position: absolute;
  left: 11%;
  top: 0;
  bottom: 0;
  margin: auto;
  display: grid;
  align-content: center;
}
.main_image_text img.pc {
  margin-top: 40px;
}
.main_btn {
  margin-top: 70px;
}
a.main_btn_file {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  min-width: 325px;
  line-height: 90px;
  font-size: 1.9rem !important;
  text-align: center;
  text-decoration: none;
  color: #000;
  background: #ffd600;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-left: 25px;
  border: 1px solid #000;
}
a.main_btn_file::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a.main_btn_contact {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0 40px 0 30px;
  min-width: 325px;
  line-height: 90px;
  font-size: 1.9rem !important;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #000;
  border-radius: 8px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-left: 15px;
}
a.main_btn_contact::after {
  content: "";
  position: absolute;
  display: inline-block;
  width: 30px;
  height: 30px;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_w.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
/* ------------------------------
 メインイメージ（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .main_image {
    height: 590px;
  }
  .main_image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .main_image_text {
    left: 7%;
  }
  .main_image_text img.pc {
    width: 540px;
  }

  a.main_btn_file {
    min-width: 250px;
    line-height: 70px;
    font-size: 1.8rem !important;
  }
  a.main_btn_contact {
    min-width: 250px;
    line-height: 70px;
    font-size: 1.8rem !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .main_image {
    height: 700px;
  }
  .main_image_text {
    left: 7%;
  }
  .main_image_text img.pc {
    width: 550px;
  }
}
@media print, screen and (min-width: 1500px) {
  .main_image {
    height: 800px;
  }
  .main_image_text {
    left: 10%;
  }
  .main_image_text img.pc {
    width: 600px;
  }
  a.main_btn_file {
    min-width: 270px;
    line-height: 80px;
    font-size: 1.8rem !important;
  }
  a.main_btn_contact {
    min-width: 270px;
    line-height: 80px;
    font-size: 1.8rem !important;
  }
}
@media print, screen and (min-width: 1750px) {
  .main_image {
    height: 905px;
  }
  .main_image_text {
    left: 10.5%;
  }
  .main_image_text img.pc {
    width: 714px;
  }

  a.main_btn_file {
    min-width: 325px;
    line-height: 90px;
    font-size: 1.9rem !important;
  }
  a.main_btn_contact {
    min-width: 325px;
    line-height: 90px;
    font-size: 1.9rem !important;
  }
}

/* ------------------------------
 メインイメージ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .main_image_text {
    left: 0;
    right: 0;
    top: 9%;
    align-content: flex-start;
  }
  .main_image_text img {
    width: 90%;
    margin: auto;
  }
  .main_btn {
    margin-top: 30px;
  }
  a.main_btn_file {
    padding: 0 30px 0 20px;
    min-width: 154px;
    line-height: 48px;
    font-size: 1.2rem !important;
    margin: 0 5px;
  }
  a.main_btn_file::after {
    width: 17px;
    height: 17px;
    right: 10px;
  }
  a.main_btn_contact {
    padding: 0 30px 0 20px;
    min-width: 154px;
    line-height: 48px;
    font-size: 1.2rem !important;
    margin: 0 5px;
  }
  a.main_btn_contact::after {
    width: 17px;
    height: 17px;
    right: 10px;
  }
}
/* ------------------------------
 ページ内リンク
------------------------------ */
.page_link {
  text-align: center;
  padding: 100px 0;
}
.page_link ul {
  margin-bottom: 0;
}
.page_link ul li {
  display: inline-block;
  margin: 0 8px;
}
.page_link ul li a {
  font-size: 1.9rem;
  font-weight: bold;
}
.page_link ul li a::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_down.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-left: 5px;
  vertical-align: -2px;
}
/* ------------------------------
 ページ内リンク（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .page_link {
    padding: 35px 0;
  }
  .page_link ul li a {
    font-size: 1.7rem;
  }
}
.block {
  z-index: 2;
  position: relative;
}
/* ------------------------------
 こんな課題はありませんか？
------------------------------ */
.section_assignment {
  position: relative;
  padding: 100px 0 80px;
}
.section_assignment::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 1080px;
  left: 0;
  top: 0;
  background: #f5f6f8;
  border-radius: 0 15px 15px 0;
}
.section_assignment .w1-3 h3 {
  font-weight: bold;
  font-size: 3.3rem;
  text-align: center;
  margin-top: 5px;
}
.section_assignment .w1-3 p {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.5;
}
.section_assignment .w1-3 p strong {
  font-weight: bold;
  background: #ffd600;
}

.section_assignment_point {
  position: relative;
}
.section_assignment_point .block {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section_assignment_point .block h3 {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.5;
  width: fit-content;
}
.section_assignment_point .block h3::before {
  content: "";
  display: inline-block;
  width: 44px;
  height: 47px;
  margin: auto;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/assignment_deco.svg")
    no-repeat center / 100%;
  position: absolute;
  left: -42px;
  top: -32px;
}
.section_assignment_point .block .box {
  margin-right: calc(50% - 50vw);
  padding: 150px 0;
  overflow: hidden;
  border-radius: 15px 0 0 15px;
  display: grid;
  align-items: center;
  min-width: 100%;
  background-size: auto auto;
  background-color: rgba(255, 229, 95, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(255, 218, 26, 1) 3px,
    rgba(255, 218, 26, 1) 6px
  );
}
/* ------------------------------
 こんな課題はありませんか？（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_assignment {
    padding: 0;
  }
  .section_assignment::before {
    display: none;
  }
  .section_assignment .block {
    width: auto;
    margin-right: 5%;
    margin-left: 0;
  }
  .section_assignment .block .box {
    padding: 60px 5% 140px;
    border-radius: 0 15px 15px 0;
    background: #f5f6f8;
  }
  .headline_pop {
    font-size: 3rem;
    margin-bottom: 30px;
    line-height: 1.2;
  }
  .headline_pop span {
    font-size: 1.6rem;
    width: 110px;
    height: 30px;
    line-height: 30px;
    margin: 0 auto 15px;
  }
  .headline_pop span::before {
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 8px solid #000;
  }
  .section_assignment .w1-3 h3 {
    font-size: 2.5rem;
    margin-bottom: 5px;
  }
  .section_assignment .w1-3 p {
    font-size: 1.8rem;
  }
  .section_assignment_point {
    margin-top: -100px;
  }
  .section_assignment_point .block {
    width: auto;
    margin-left: 5%;
  }
  .section_assignment_point .block .box {
    padding: 40px 0;
  }
  .section_assignment_point .block h3 {
    font-size: 2.5rem;
    position: relative;
  }
  .section_assignment_point .block h3::before {
    width: 32px;
    height: 33px;
    left: 40px;
    top: -25px;
  }
}
/* ------------------------------
 特長
------------------------------ */
.section_features {
  position: relative;
  padding: 100px 0;
}
.section_features h3 {
  font-size: 3.3rem;
  font-weight: bold;
  line-height: 1.5;
  margin-bottom: 10px;
  margin-top: 0;
}
.section_features h3 strong {
  background: #ffd600;
}
.section_features .features_block {
  position: relative;
}
.section_features .features_block .text_box {
  position: relative;
  border: 1px solid #000;
  border-radius: 15px;
  padding: 80px;
}
.section_features .features_block.no01 .text_box::before,
.section_features .features_block.no02 .text_box::before,
.section_features .features_block.no03 .text_box::before {
  position: absolute;
  left: -30px;
  top: -30px;
  display: flex;
  font-size: 4.5rem;
  color: #fff;
  background: #000;
  border-radius: 25px 25px 0 25px;
  font-weight: bold;
  width: 100px;
  height: 100px;
  align-items: center;
  justify-content: center;
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  letter-spacing: 0.2rem;
}
.section_features .features_block.no01 .text_box::before {
  content: "01";
}
.section_features .features_block.no02 .text_box::before {
  content: "02";
}
.section_features .features_block.no03 .text_box::before {
  content: "03";
}
/* ------------------------------
 特長（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .section_features .features_block .text_box {
    width: 745px;
  }
  .section_features .features_block.no02 .text_box {
    margin-left: auto;
  }
  .section_features .features_block.no01 img {
    position: absolute;
    right: -65px;
    top: -45px;
  }
  .section_features .features_block.no02 img {
    position: absolute;
    left: -40px;
    top: 20px;
  }
  .section_features .features_block.no03 img {
    position: absolute;
    right: -15px;
    top: 25px;
  }
}
/* ------------------------------
 特長（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_features {
    padding: 60px 0;
  }
  .section_features .features_block .text_box {
    padding: 50px 5%;
  }
  .section_features .features_block.no01 .text_box::before,
  .section_features .features_block.no02 .text_box::before,
  .section_features .features_block.no03 .text_box::before {
    left: -3.5%;
    top: -30px;
    font-size: 2.8rem;
    width: 65px;
    height: 65px;
    border-radius: 15px 15px 0 15px;
  }
  .section_features h3 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    line-height: 1.7;
  }
  .section_features .features_block.no01 img,
  .section_features .features_block.no02 img,
  .section_features .features_block.no03 img {
    margin-top: -40px;
    z-index: 2;
    position: inherit;
  }
}

/* ------------------------------
 資料はこちら
------------------------------ */
.section_file .block {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section_file .block .box {
  margin-left: calc(50% - 50vw);
  padding: 210px 0;
  overflow: hidden;
  border-radius: 0 15px 15px 0;
  display: flex;
  align-items: center;
  min-width: 100%;
  background-size: auto auto;
  background-color: rgba(44, 44, 44, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(26, 26, 26, 1) 3px,
    rgba(26, 26, 26, 1) 6px
  );
  color: #fff;
}
.section_file .block .text {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
}
.section_file .btn_text a {
  color: #fff;
  font-weight: bold;
  font-size: 1.9rem;
  position: relative;
}
.section_file .btn_text a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-left: 5px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_w.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section_file .btn_text a span {
  border-bottom: 1px dotted #fff;
  padding-bottom: 4px;
}
/* ------------------------------
 資料はこちら（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_file .block {
    width: auto;
    margin-right: 5%;
  }
  .section_file .block .box {
    padding: 40px 0;
  }
  .section_file .block .text {
    position: relative;
  }
  .section_file .btn_text a {
    font-size: 1.6rem;
  }
  .section_file .btn_text a::after {
    width: 20px;
    height: 20px;
  }
}
/* ------------------------------
 こんなものが製作可能！
------------------------------ */
.section_made {
  padding: 100px 0 80px;
}
/* ------------------------------
 こんなものが製作可能！（PC）
------------------------------ */
.swiper {
  @media screen and (max-width: 767px) {
    overflow: visible;
  }

  &-wrapper {
    @media screen and (max-width: 767px) {
      display: block !important;
      width: auto !important;
    }
  }

  &-slide {
    display: flex;

    img {
      width: 100%;
      heght: 100%;
      object-fit: contain;
    }
  }

  &-button-prev,
  &-button-next {
    @media screen and (max-width: 767px) {
      display: none;
    }
  }
}
/* ------------------------------
 こんなものが製作可能！（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .section_made .swiper {
    overflow: inherit;
  }
  .section_made .swiper-slide.w1-3 {
    width: 30.70176%;
  }
  .section_made .swiper-button-prev,
  .section_made .swiper-button-next,
  .section_made .swiper-pagination {
    display: none !important;
  }
}

/* ------------------------------
 こんなものが製作可能！（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_made .flexBox {
    flex-wrap: inherit;
  }
  .section_made .w1-3 + .w1-3:not(.sp_w1-3) {
    margin-top: 0 !important;
  }
  .section_made {
    padding: 60px 0;
  }
  .section_made .swiper {
    overflow: hidden;
    padding-bottom: 20px;
  }
  .section_made .swiper-button-prev,
  .section_made .swiper-button-next {
    bottom: 0px;
    top: auto;
    z-index: 20;
  }
  .section_made .swiper-button-prev {
    right: 30px;
    left: auto;
  }
  .section_made .swiper-button-next {
    right: 0;
    left: auto;
  }
  .section_made .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: auto;
    background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
      no-repeat center / 100%;
    background-color: #fff;
    border-radius: 100%;
    transform: scale(-1, 1);
  }
  .section_made .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 25px;
    height: 25px;
    margin: auto;
    background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
      no-repeat center / 100%;
    background-color: #fff;
    border-radius: 100%;
  }
  .section_made .swiper-pagination-bullet {
    background: #ffd600;
    opacity: 1;
  }
  .section_made .swiper-pagination-bullet-active {
    opacity: 1;
    background: #000;
  }
}
/* ------------------------------
 1分半でわかるBD-8
------------------------------ */
.section_movie {
  position: relative;
  padding: 100px 0;
}
.section_movie::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 980px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.movie {
  position: relative;
  width: 100%;
}
.movie:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #000;
  border-radius: 15px;
}
/* ------------------------------
 1分半でわかるBD-8（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_movie {
    padding: 0;
  }
  .section_movie::before {
    display: none;
  }
  .section_movie .block {
    width: auto;
    margin-right: 0;
    margin-left: 5%;
  }
  .section_movie .block .box {
    padding: 60px 5%;
    border-radius: 15px 0 0 15px;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
  .movie.r20 iframe {
    border-radius: 15px;
  }
}

/* ------------------------------
 お客様成功事例
------------------------------ */
.section_examples {
  padding: 100px 0;
}
.section_examples .w1-3 h3 {
  font-weight: bold;
  margin-bottom: 12px;
  margin-top: 0;
  font-size: 18px;
}
.section_examples .w1-3 h3::before {
  display: inline-block;
  height: 8px;
  width: 8px;
  content: "";
  border-radius: 50%;
  background-color: #ffd600;
  vertical-align: 3px;
  margin-right: 5px;
}
.section_examples .w1-3 h4 {
  line-height: 1.65;
  margin-bottom: 20px;
}
.section_examples .w1-3 h4 span {
  font-weight: bold;
  font-size: 2.4rem;
  background: #ffd600;
}
.section_examples a {
  display: block;
}
.section_examples a:hover {
  color: #1a1a1a;
}
/* ------------------------------
 お客様成功事例（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .swiper_examples {
    overflow: hidden;
  }
  .swiper_examples .swiper-button-prev,
  .swiper_examples .swiper-button-next {
    top: 250px;
    bottom: auto;
    z-index: 20;
    width: 40px;
    height: 40px;
  }
  .swiper_examples .swiper-button-prev {
    left: -60px;
    right: auto;
  }
  .swiper_examples .swiper-button-next {
    right: -60px;
    left: auto;
  }
  .swiper_examples .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: auto;
    background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
      no-repeat center / 100%;
    background-size: cover;
    background-color: #fff;
    border-radius: 100%;
    transform: scale(-1, 1);
  }
  .swiper_examples .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: auto;
    background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
      no-repeat center / 100%;
    background-size: cover;
    background-color: #fff;
    border-radius: 100%;
  }
}
/* ------------------------------
 お客様成功事例（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_examples {
    padding: 60px 0;
  }
  .section_examples .w1-3 h4 {
    margin-bottom: 10px;
  }
  .section_examples .w1-3 h4 span {
    font-size: 2.2rem;
  }

  .swiper_examples .swiper-wrapper {
    display: block;
  }
  .swiper_examples .swiper-button-prev,
  .swiper_examples .swiper-button-next {
    display: none !important;
  }
}

/* ------------------------------
 お客様成功事例の詳細
------------------------------ */
.section_examples_file .block {
  width: 1140px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.section_examples_file .block .box {
  margin-left: calc(50% - 50vw);
  padding: 210px 0;
  overflow: hidden;
  border-radius: 0 15px 15px 0;
  display: flex;
  align-items: center;
  min-width: 100%;
  background-size: auto auto;
  background-color: rgba(243, 245, 247, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(225, 229, 234, 1) 3px,
    rgba(225, 229, 234, 1) 6px
  );
}
.section_examples_file .block .text {
  position: absolute;
  margin: auto;
  left: 0;
  right: 0;
  text-align: center;
}
.section_examples_file .btn_text a {
  font-weight: bold;
  font-size: 1.9rem;
  position: relative;
}
.section_examples_file .btn_text a::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  margin-left: 5px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_arrow_b.svg")
    no-repeat center / 100%;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
.section_examples_file .btn_text a span {
  border-bottom: 1px dotted #000;
  padding-bottom: 4px;
}
/* ------------------------------
 お客様成功事例の詳細（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_examples_file .block {
    width: auto;
    margin-right: 5%;
  }
  .section_examples_file .block .box {
    padding: 40px 0;
  }
  .section_examples_file .block .text {
    position: relative;
  }
  .section_examples_file .btn_text a {
    font-size: 1.6rem;
  }
  .section_examples_file .btn_text a::after {
    width: 20px;
    height: 20px;
  }
}
/* ------------------------------
 料金プラン
------------------------------ */
.section_plan {
  padding: 100px 0;
}
.section_plan p {
  font-size: 1.6rem;
}
.section_plan table {
  border-top: solid 1px #000;
  border-right: solid 1px #000;
  border-collapse: separate;
  border-radius: 15px;
  width: 100%;
  margin-bottom: 20px;
}
.section_plan table th {
  padding: 30px 10px;
  font-weight: bold;
  text-align: center;
  background: #000;
  border-bottom: solid 1px #fff;
  border-left: solid 1px #fff;
  color: #fff;
  font-size: 1.9rem;
  vertical-align: middle;
  line-height: 1.2;
}
.section_plan table td {
  padding: 30px 10px;
  border-bottom: solid 1px #000;
  border-left: solid 1px #000;
  background: #fff;
  text-align: center;
  vertical-align: middle;
  line-height: 1.2;
}
.section_plan table th.b_b {
  border-bottom: 1px solid #000;
}
.section_plan table td strong {
  font-size: 2.8rem;
}
.section_plan table td.yellow {
  background: #ffd600;
}
.section_plan table td.b_d {
  border-bottom: 1px dashed #000;
}
.lt15 {
  border-radius: 15px 0 0 0;
}
.rt15 {
  border-radius: 0 15px 0 0;
}
.lb15 {
  border-radius: 0 0 0 15px;
}
.rb15 {
  border-radius: 0 0 15px 0;
}
.section_plan table th.sw24 {
  width: 24%;
}
.section_plan table th.sw38 {
  width: 38%;
}
/* ------------------------------
 料金プラン（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .section_plan .block {
    width: 980px;
    margin: auto;
  }
}
/* ------------------------------
 料金プラン（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_plan {
    padding: 60px 0;
  }
  .section_plan table th {
    font-size: 1.5rem;
  }
  .section_plan table th {
    padding: 15px 5px;
  }
  .section_plan table td {
    font-size: 1.5rem;
    padding: 15px 5px;
  }
  .section_plan table td strong {
    font-size: 1.7rem;
  }
}
/* ------------------------------
 印刷できる素材
------------------------------ */
.section_material {
  position: relative;
  padding: 100px 0;
}
.section_material::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 900px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.section_material .w1-3 {
  border: 1px solid #000;
  border-radius: 15px;
  background: #fff;
  position: relative;
}
.section_material .headline h3 {
  background: #000;
  color: #ffd600;
  display: grid;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  border-radius: 15px 15px 0 0;
  height: 100px;
  font-weight: bold;
  font-size: 2.1rem;
  text-align: center;
  position: relative;
  margin-top: 0px;
  margin-bottom: 0;
}
.section_material .headline h3::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #000;
}
.section_material .text_box {
  padding: 30px 30px 50px;
}
.section_material .text_box ul {
  padding-left: 0;
  margin-bottom: 0;
}
.section_material .text_box ul li {
  display: inline-block;
  margin-right: 20px;
  font-size: 1.9rem;
  font-weight: bold;
  line-height: 1;
}
.section_material .text_box ul li::before {
  display: inline-block;
  height: 8px;
  width: 8px;
  content: "";
  border-radius: 50%;
  background-color: #ffd600;
  vertical-align: 3px;
  margin-right: 5px;
}
.section_material .text_box p {
  position: absolute;
  right: 25px;
  bottom: 20px;
  margin-bottom: 0;
}
/* ------------------------------
 印刷できる素材（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_material {
    padding: 0;
  }
  .section_material::before {
    display: none;
  }
  .section_material .block {
    width: auto;
    margin-right: 0;
    margin-left: 5%;
  }
  .section_material .block .box {
    padding: 60px 5%;
    border-radius: 15px 0 0 15px;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
  .section_material .headline {
    height: 86px;
    font-size: 2rem;
  }
  .section_material .text_box {
    padding: 25px 20px 30px;
  }
  .section_material .text_box ul li {
    font-size: 1.8rem;
  }
  .section_material .text_box p {
    right: 20px;
    bottom: 10px;
  }
}
/* ------------------------------
 チェックリスト
------------------------------ */
.check_list ul {
  padding-left: 0;
}
.check_list ul li {
  border-bottom: 1px dotted #000;
  padding: 12px 0 12px 35px;
  position: relative;
}
.check_list ul li::before {
  position: absolute;
  left: 0;
  top: 17px;
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_check.svg")
    no-repeat center / 100%;
}
.check_list ul li strong {
  background-color: #ffd600;
}
/* ------------------------------
 印刷できる素材（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .check_list ul li {
    padding: 12px 0 12px 30px;
  }
  .check_list ul li::before {
    top: 15px;
  }
}
/* ------------------------------
 導入後のサポート体制
------------------------------ */
.section_support {
  position: relative;
  padding: 100px 0;
}
/* ------------------------------
 導入後のサポート体制（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .section_support .check_list {
    width: 640px;
  }
  .section_support .img_box {
    display: grid;
    align-items: center;
  }
}
/* ------------------------------
 導入後のサポート体制（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_support {
    padding: 60px 0;
  }
  .section_support .img_box {
    margin: 0 auto 30px;
  }
}
/* ------------------------------
 ご利用の流れ
------------------------------ */
.section_flow {
  position: relative;
  padding: 100px 0;
}
.section_flow::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 1015px;
  left: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 0 15px 15px 0;
}
.section_flow .step_box {
  border: 1px solid #000;
  background: #fff;
  border-radius: 15px;
  margin-bottom: 20px;
  display: flex;
}
.section_flow .step_box.end {
  margin-bottom: 0;
}
.section_flow .step_box .headline {
  background-size: auto auto;
  background-color: rgba(44, 44, 44, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(26, 26, 26, 1) 3px,
    rgba(26, 26, 26, 1) 6px
  );
  color: #ffd600;
  font-weight: bold;
  font-size: 2.1rem;
  border-radius: 15px 0 0 15px;
  display: grid;
  justify-content: center;
  align-items: center;
  width: 240px;
  position: relative;
}
.section_flow .step_box .headline::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -10px;
  border: 10px solid transparent;
  border-top: 10px solid #000;
}
.section_flow .step_box.end .headline::before {
  display: none;
}
.section_flow .step_box .text_box {
  padding: 35px;
  line-height: 1.5;
}
.section_flow .step_box .text_box a {
  font-weight: bold;
  text-decoration: underline;
}
.icon_free {
  position: relative;
}
.icon_free::after {
  content: "";
  display: inline-block;
  width: 70px;
  height: 70px;
  vertical-align: middle;
  margin-right: 10px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_free.svg")
    no-repeat center / 100%;
  position: absolute;
  left: -35px;
  top: -15px;
}
/* ------------------------------
 ご利用の流れ（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_flow {
    padding: 0;
  }
  .section_flow::before {
    display: none;
  }
  .section_flow .block {
    width: auto;
    margin-right: 5%;
    margin-left: 0;
  }
  .section_flow .block .box {
    padding: 60px 5%;
    border-radius: 0 15px 15px 0;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
  .section_flow .step_box {
    display: block;
  }
  .section_flow .step_box .headline {
    width: 100%;
    display: block;
    border-radius: 15px 15px 0 0;
    font-size: 2rem;
    line-height: 80px;
    text-align: center;
  }
  .section_flow .step_box .text_box {
    padding: 30px 20px;
  }
  .icon_free::after {
    width: 65px;
    height: 65px;
    left: -4%;
    top: -15px;
  }
}
/* ------------------------------
 よくある質問
------------------------------ */
.section_faq {
  padding: 100px 0;
}
.section_faq .link_box {
  text-align: center;
  font-size: 2rem;
  margin-top: 40px;
}
.section_faq .link_box a {
  text-decoration: underline;
  font-weight: bold;
}
.toggle {
  border: 1px solid #000;
  border-radius: 15px;
  padding: 30px;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  font-weight: bold;
  position: relative;
  margin-top: 20px;
  cursor: pointer;
}
.toggle::before {
  content: "";
  display: block;
  position: absolute;
  right: 30px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 26px;
  height: 4px;
  background: #000;
}
.toggle::after {
  content: "";
  display: block;
  position: absolute;
  right: 41px;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 4px;
  height: 26px;
  background: #000;
}
.toggle.active::after {
  display: none;
}
.toggle p {
  position: relative;
  padding-left: 50px;
  margin-bottom: 0;
}
.toggle p::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_q.svg")
    no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: -3px;
}
.toggle_box {
  padding: 30px;
  position: relative;
  display: none;
}
.toggle_box p {
  position: relative;
  padding-left: 50px;
  margin-bottom: 0;
}
.toggle_box p::before {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  background: url("/-/media/roland-apac/dgj/images/landing-pages/bd8/icon_a.svg")
    no-repeat center / 100%;
  position: absolute;
  left: 0;
  top: -3px;
}
.toggle_box p a {
  text-decoration: underline;
}
/* ------------------------------
 よくある質問（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .toggle_box.img_toggle {
    padding-bottom: 75px;
  }
  .toggle_box.img_toggle .img_box {
    position: absolute;
    right: 30px;
    top: 20px;
    width: 110px;
  }
}
/* ------------------------------
 よくある質問（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_faq {
    padding: 60px 0;
  }
  .section_faq .link_box {
    font-size: 1.6rem;
    margin-top: 30px;
  }
  .toggle {
    margin-top: 10px;
    padding: 20px 15px;
  }
  .toggle::before {
    right: 12px;
    width: 16px;
    height: 2px;
  }
  .toggle::after {
    right: 19px;
    width: 2px;
    height: 16px;
  }
  .toggle p {
    padding-left: 40px;
    padding-right: 20px;
  }
  .toggle p::before {
    width: 30px;
    height: 30px;
  }
  .toggle_box {
    padding: 20px 0 20px 15px;
  }
  .toggle_box p {
    padding-left: 40px;
  }
  .toggle_box p::before {
    width: 30px;
    height: 30px;
  }
  .toggle_box.img_toggle .img_box {
    text-align: center;
    margin: 20px auto 0;
  }
}
/* ------------------------------
 まずは資料請求
------------------------------ */
.section_information {
  position: relative;
  padding: 100px 0;
}
.section_information::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 1185px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.section_information .left_box h3 {
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.5;
  border-left: 13px solid #ffd600;
  padding-left: 15px;
  margin-bottom: 25px;
}
.section_information .left_box .point {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  padding: 18px;
  border-radius: 15px 15px 0 0;
  background-size: auto auto;
  background-color: rgba(255, 229, 95, 1);
  background-image: repeating-linear-gradient(
    135deg,
    transparent,
    transparent 3px,
    rgba(255, 218, 26, 1) 3px,
    rgba(255, 218, 26, 1) 6px
  );
  margin-bottom: 10px;
}
.section_information .right_box iframe {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
}
/* ------------------------------
 まずは資料請求（PC）
------------------------------ */
@media print, screen and (min-width: 768px) {
  .section_information .left_box {
    width: 610px;
  }
  .section_information .right_box {
    width: 480px;
  }
}
/* ------------------------------
 よくある質問（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_information {
    padding: 0;
  }
  .section_information::before {
    display: none;
  }
  .section_information .block {
    width: auto;
    margin-right: 5%;
    margin-left: 0;
  }
  .section_information .block .box {
    padding: 60px 5%;
    border-radius: 0 15px 15px 0;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
  .section_information .left_box h3 {
    font-size: 1.9rem;
    border-left: 10px solid #ffd600;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  .section_information .left_box .point {
    font-size: 1.6rem;
    padding: 15px;
  }
  .section_information .left_box {
    margin-bottom: 40px;
  }
  .section_information .right_box {
    width: 100%;
  }
  .section_information .right_box iframe {
    width: 100%;
    height: 550px;
  }
}

/* ------------------------------
 資料をダウンロードする
------------------------------ */
.section_lead {
  position: relative;
  padding: 70px 0 50px;
}
.section_download {
  position: relative;
  padding: 100px 0;
}
.section_download::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 590px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.content-body .section_download img {
  margin: auto;
}
/* ------------------------------
 資料をダウンロードする（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_lead {
    padding: 60px 0 40px;
  }
  .section_download {
    padding: 0;
  }
  .section_download::before {
    display: none;
  }
  .section_download .block {
    width: auto;
    margin-right: 0;
    margin-left: 5%;
  }
  .section_download .block .box {
    padding: 60px 5%;
    border-radius: 15px 0 0 15px;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
}
/* ------------------------------
 お問い合わせありがとうございました
------------------------------ */
.section_thanks {
  position: relative;
  padding: 80px 0;
}
.section_thanks::before {
  content: "";
  display: block;
  position: absolute;
  width: 95%;
  height: 800px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.section_thanks h4 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  border-left: 9px solid #ffd600;
  padding-left: 15px;
  margin-bottom: 10px;
}
.thanks-inner {
  display: flex;
  gap: 50px;
}
@media screen and (min-width: 768px) {
  .thanks-inner,
  .box.pt-sp-20-force {
    margin: 0 20px;
  }
}

/* ------------------------------
 資料をダウンロードする（SP）
------------------------------ */
@media screen and (max-width: 767px) {
  .section_thanks {
    padding: 0;
  }
  .section_thanks::before {
    display: none;
  }
  .section_thanks .block {
    width: auto;
    margin-right: 0;
    margin-left: 5%;
  }
  .section_thanks .block .box {
    padding: 60px 5%;
    border-radius: 15px 0 0 15px;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
  .thanks-inner {
    flex-wrap: wrap;
    justify-content: center;
  }
}
/* ------------------------------
 お問い合わせ
------------------------------ */
.form_iframe {
  position: relative;
  padding: 100px 0;
}
.form_iframe::before {
  content: "";
  display: block;
  position: absolute;
  width: 90%;
  height: 1700px;
  right: 0;
  top: 0;
  background-color: #f9fbfb;
  background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
    radial-gradient(circle, #e0e4e8 1px, transparent 1px);
  background-position: 0 0, 3px 6px;
  background-size: 6px 12px;
  border-radius: 15px 0 0 15px;
}
.form_iframe h4 {
  font-size: 2.1rem;
  font-weight: bold;
  line-height: 1.5;
  border-left: 9px solid #ffd600;
  padding-left: 15px;
  margin-bottom: 10px;
}
.form_iframe iframe {
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 15px;
  height: 1450px;
}
/* ------------------------------
 お問い合わせ
------------------------------ */
@media screen and (max-width: 767px) {
  .form_iframe {
    padding: 0;
  }
  .form_iframe::before {
    display: none;
  }
  .form_iframe .block {
    width: auto;
    margin-right: 0;
    margin-left: 5%;
  }
  .form_iframe .block .box {
    padding: 60px 5%;
    border-radius: 15px 0 0 15px;
    background-color: #f9fbfb;
    background-image: radial-gradient(circle, #e0e4e8 1px, transparent 1px),
      radial-gradient(circle, #e0e4e8 1px, transparent 1px);
    background-position: 0 0, 3px 6px;
    background-size: 6px 12px;
  }
}

/* ------------------------------
 本番でチャットボットを消す
------------------------------ */
#outline {
  display: none;
}
/* ------------------------------
 本番で横の幅を消す
------------------------------ */
.custom-container {
  padding-left: 0 !important;
  padding-right: 0 !important;
  max-width: initial !important;
  position: relative;
}
