@charset "UTF-8";
/*----------------------- reset css ----------------------*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

html {
  overflow-y: scroll;
  font-size: 62.5%;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

a {
  text-decoration: none;
}

a:focus {
  outline: none;
}

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

.clearfix {
  min-height: 1px;
}

* html .clearfix {
  height: 1px;
  /*\*/ /*/
height: auto;
overflow: hidden;
/**/
}

.both {
  clear: both;
}

.inline_block {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}

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

table {
  width: 100%;
}

a,
a:hover {
  -webkit-transition: 0.7s;
  -moz-transition: 0.7s;
  -o-transition: 0.7s;
  transition: 0.7s;
}

a img:hover {
  filter: alpha(opacity=75);
  -moz-opacity: 0.75;
  opacity: 0.75;
}

body {
  font-family: Meiryo, "メイリオ", Hiragino Kaku Gothic ProN, Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 14px;
  color: #333333;
  background-color: #ffffff;
  line-height: 1.5;
}

img {
  border-style: none;
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/*----------- 記事内のcss ---------*/
.alignleft,
img.alignleft {
  display: inline;
  float: left;
  margin-right: 20px;
  margin-top: 4px;
}

.aligncenter,
img.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.alignright,
img.alignright {
  display: inline;
  float: right;
  margin-left: 20px;
  margin-top: 4px;
}

.content-text img {
  max-width: 100%;
  margin-bottom: 15px;
  height: auto;
}

.content-text p {
  padding: 0 15px;
  font-size: 15px;
  line-height: 1.6;
  word-break: break-all;
  letter-spacing: 0.1px;
  margin-bottom: 20px;
  color: rgb(100, 100, 100);
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/*--- タイポグラフィ ---*/
h1 {
  font-size: 3.2rem;
  line-height: 48px;
  letter-spacing: 10%;
}

h2 {
  font-size: 2.4rem;
  line-height: 32px;
  letter-spacing: 10%;
}

p {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  line-height: 180%;
  font-feature-settings: "palt";
}

input[type=radio]:checked + label {
  background: #ff0000;
}

input[type=checkbox]:checked + label {
  background: #ff0000;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  background-color: #fff;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  outline: none;
  background-color: #fff;
}

select,
input,
textarea {
  max-width: 100%;
  padding: 7px;
  box-sizing: border-box;
  border: none;
  border: solid 1px #d3d3d3;
  border-radius: 3px;
  font-family: sans-serif;
  font-size: 100%;
  color: #000;
}

/*----------------------- reset css ----------------------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

.tab {
  display: none;
}

.pc-br {
  display: block;
}

.sp-br {
  display: none;
}

.flex {
  display: flex;
}

.row-reverse {
  flex-direction: row-reverse;
}

@media (max-width: 811px) {
  .tab {
    display: block;
  }
}
@media (max-width: 640px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .sp-br {
    display: block;
  }
  .pc-br {
    display: none;
  }
}
body {
  font-family: "Noto Sans", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  font-feature-settings: "palt";
  background-color: #fff;
  color: #2b2b2b;
  line-height: 1.5;
}

main {
  overflow: hidden;
}

.page-header {
  height: 546px;
  position: relative;
  margin-bottom: 108px;
}
.page-header::after {
  content: "";
  position: absolute;
  right: 0;
  background-image: url("../img/main-img-bg.jpg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  background-attachment: fixed;
  width: 60%;
  height: 100%;
  border-radius: 0 0 0 40px;
}
@media (max-width: 640px) {
  .page-header::after {
    background-attachment: scroll;
  }
}
@media (max-width: 811px) {
  .page-header {
    height: 400px;
  }
  .page-header .transparent-logo {
    width: 30vw;
  }
}
.page-header .page-title {
  position: absolute;
  top: 0;
  bottom: 0;
  display: flex;
  z-index: 1;
  align-items: center;
  padding-left: 10vw;
}
.page-header .page-title span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 8px;
  font-weight: 800;
  font-size: 4.8rem;
  display: block;
  text-transform: uppercase;
}
.page-header .page-title h2 {
  font-size: 1.8rem;
  line-height: normal;
  letter-spacing: 4.8px;
  color: #1f2b61;
}
.page-header .breadcrumbs {
  position: absolute;
  bottom: 24px;
  left: 32px;
  z-index: 1;
}
@media (max-width: 640px) {
  .page-header .breadcrumbs {
    display: none;
  }
}
.page-header .breadcrumbs a,
.page-header .breadcrumbs span {
  color: #999;
  font-size: 1rem;
}
.page-header .breadcrumbs .delimiter {
  display: inline-block;
  margin: 0 6px;
}
.page-header .transparent-logo {
  position: absolute;
  position: absolute;
  right: 10vw;
  bottom: 0;
}

.footer-top-contact-box {
  text-align: center;
  margin: 104px 24px;
}
.footer-top-contact-box > a {
  display: inline-block;
  margin-bottom: 32px;
  background: rgb(89, 161, 209);
  background: linear-gradient(119deg, rgb(89, 161, 209) 19%, rgb(117, 98, 158) 65%, rgb(163, 79, 127) 92%);
  background-position: 1% 50%;
  background-size: 200% auto;
  color: #fff;
  padding: 24px 120px;
  border-radius: 88px;
  transition: all 0.3s ease-out;
}
.footer-top-contact-box > a span {
  font-family: "Montserrat", sans-serif;
  letter-spacing: 4.8px;
  font-size: 4rem;
}
@media (max-width: 640px) {
  .footer-top-contact-box > a span {
    font-size: 2.4rem;
  }
}
.footer-top-contact-box > a small {
  display: block;
  letter-spacing: 0.3em;
}
.footer-top-contact-box > a:hover {
  background-position: 99% 50%;
}
@media (max-width: 640px) {
  .footer-top-contact-box > a {
    margin-bottom: 16px;
    padding: 16px 32px;
    width: 100%;
    box-sizing: border-box;
  }
  .footer-top-contact-box > a span {
    font-size: 2.4rem;
  }
  .footer-top-contact-box > a small {
    font-size: 1.1rem;
  }
}

.tel-box {
  text-align: center;
}
.tel-box a {
  font-size: 3.8rem;
  color: #1f2b61;
  display: block;
  font-weight: 800;
  font-family: "Montserrat", sans-serif;
  line-height: normal;
  margin-bottom: 0;
}
@media (max-width: 640px) {
  .tel-box a {
    font-size: 2.8rem;
  }
}
.tel-box a img {
  width: 20px;
  color: #002f66;
}
.tel-box a i {
  font-size: 80%;
  margin-right: 6px;
}
.tel-box span {
  color: #6d6d6d;
  font-size: 1.4rem;
}

ul.link-icons {
  display: flex;
}
ul.link-icons li {
  margin: 0 10px;
}
ul.link-icons li i {
  font-size: 20px;
  color: #000000;
  transition: color 0.8s ease;
}
ul.link-icons li:hover .fa-facebook {
  color: #1877f2;
}
ul.link-icons li:hover .fa-youtube {
  color: #da1725;
}
ul.link-icons li:hover .fa-instagram {
  color: #cf2e92;
}
ul.link-icons li:hover .fa-line {
  color: #00b900;
}
ul.link-icons li:hover .fa-tiktok {
  color: #919191;
}
ul.link-icons li:hover .fa-twitter {
  color: #1da1f2;
}
ul.link-icons li:hover .fa-x-twitter {
  color: #000000;
}

footer {
  box-sizing: border-box;
}
footer .body {
  padding: 32px 24px;
  justify-content: center;
}
@media (max-width: 640px) {
  footer .body {
    display: block;
  }
}
footer .body .left {
  margin-right: 140px;
}
footer .body .left img {
  display: block;
  margin-bottom: 32px;
}
@media (max-width: 811px) {
  footer .body .left {
    margin-right: 62px;
  }
}
@media (max-width: 640px) {
  footer .body .left {
    margin: 0 auto 40px 0;
  }
}
footer .body .right {
  display: flex;
}
@media (max-width: 640px) {
  footer .body .right {
    display: none;
  }
}
@media (max-width: 640px) {
  footer .body .right > div {
    margin-bottom: 24px;
  }
}
footer .body .right > div:first-child {
  margin-right: 56px;
}
@media (max-width: 640px) {
  footer .body .right > div:first-child {
    margin-right: 0;
  }
}
@media (max-width: 640px) {
  footer .body .right > div {
    margin-bottom: 32px;
  }
  footer .body .right > div:last-child {
    margin-bottom: 0;
  }
}
footer .body .right > div > span {
  color: #002f66;
  background-image: url("../img/dots-orange.svg");
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-position: 0px center;
  padding-left: 20px;
  display: block;
  margin-bottom: 16px;
  font-size: 1.3rem;
}
@media (max-width: 640px) {
  footer .body .right > div > span {
    margin-bottom: 8px;
  }
}
footer .body .right > div ul {
  padding-left: 20px;
  line-height: 2;
}
footer .body .right > div ul li a {
  font-size: 1.3rem;
  color: #6d6d6d;
}
footer .footer-botom {
  display: flex;
  padding: 24px 24px;
  box-sizing: border-box;
  justify-content: space-between;
  font-size: 1.3rem;
}
footer .footer-botom a {
  color: #000;
}

.contant-404 {
  display: block;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.contant-404 h3 {
  font-size: 16vw;
  margin-bottom: 24px;
}
.contant-404 span {
  display: block;
  margin-bottom: 24px;
}
.contant-404 a {
  color: #fff;
  margin: 32px 0;
  background-color: #000;
  display: inline-block;
  padding: 8px 16px;
  text-decoration: none;
}

.dorone {
  background-color: #ec5e18;
  background-image: url(../img/bgbg.jpg);
  background-position: center -203px;
  background-size: 100% auto;
}
.dorone header .head-inner {
  position: relative;
  margin: 0 auto;
  height: 581px;
  max-width: 858px;
  width: 100%;
}
@media screen and (max-width: 640px) {
  .dorone header .head-inner {
    height: auto;
  }
}
.dorone header .head-inner .pc {
  display: block;
}
@media screen and (max-width: 640px) {
  .dorone header .head-inner .pc {
    display: none;
  }
}
.dorone header .head-inner .sp {
  display: none;
}
@media screen and (max-width: 640px) {
  .dorone header .head-inner .sp {
    display: block;
  }
}
.dorone header .head-inner h1 {
  position: absolute;
  width: 87.53%;
  height: auto;
  top: 9.56%;
}
.dorone header .head-inner h1 img {
  width: 100%;
}
@media screen and (max-width: 640px) {
  .dorone header .head-inner h1 {
    width: 100%;
    position: static;
    margin-top: -100px;
  }
}
.dorone header .head-inner .top-2 {
  width: 52.91%;
  position: absolute;
  right: 0;
  top: 6.99%;
}
@media screen and (max-width: 640px) {
  .dorone header .head-inner .top-2 {
    width: 100%;
    margin-top: 10px;
    position: static;
  }
}
.dorone header .bottom {
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom {
    position: relative;
  }
}
.dorone header .bottom-1 {
  display: flex;
  align-items: flex-end;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom-1 {
    display: block;
  }
}
.dorone header .bottom-1 p {
  line-height: 1.3;
}
.dorone header .bottom-1 .bottom-p-1 {
  padding-right: 25px;
  padding-bottom: 10px;
  position: relative;
  margin-right: 25px;
  color: #4a2f2f;
}
.dorone header .bottom-1 .bottom-p-1,
.dorone header .bottom-1 .bottom-p-1 p {
  font-size: 50px;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom-1 .bottom-p-1,
  .dorone header .bottom-1 .bottom-p-1 p {
    font-size: 28px;
  }
}
.dorone header .bottom-1 .bottom-p-1 p {
  position: relative;
  z-index: 5;
  font-weight: 700;
  margin-bottom: 0;
}
.dorone header .bottom-1 .bottom-p-1::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 1.6em;
  bottom: 0;
  right: 0;
  transform: skewX(35deg);
  background-color: #ffffff;
  z-index: 4;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom-1 .bottom-p-1::before {
    width: 120%;
    right: 10%;
  }
}
.dorone header .bottom-1 .bottom-p-1 span {
  color: #da3c13;
  font-weight: 700;
}
.dorone header .bottom-1 .bottom-p-2 {
  position: relative;
  color: #4a2f2f;
  padding-bottom: 10px;
  display: block;
}
.dorone header .bottom-1 .bottom-p-2::before {
  content: "";
  position: absolute;
  width: 50vw;
  height: 50px;
  bottom: 0;
  right: 0;
  transform: skewX(35deg);
  background-color: #ffe200;
  z-index: 2;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom-1 .bottom-p-2::before {
    width: 120%;
  }
}
.dorone header .bottom-1 .bottom-p-2 p {
  position: relative;
  z-index: 3;
  margin-bottom: 0;
  font-weight: bold;
  color: #000000;
}
@media screen and (max-width: 640px) {
  .dorone header .bottom-1 .bottom-p-2 p {
    font-size: 24px;
  }
}
.dorone header .bottom-1 .bottom-p-2 p::after {
  content: "";
  position: absolute;
  right: 0;
  width: 0;
  height: 0;
}
@media (min-width: 811px) {
  .dorone header .bottom-1 .bottom-p-1 {
    font-size: 50px;
    padding-right: 25px;
    padding-bottom: 10px;
    position: relative;
    margin-right: 25px;
  }
  .dorone header .bottom-1 .bottom-p-1 p {
    font-size: 50px;
  }
  .dorone header .bottom-1 .bottom-p-2 {
    font-size: 50px;
    padding-right: 25px;
    margin-right: 25px;
    padding-bottom: 10px;
  }
  .dorone header .bottom-1 .bottom-p-2 p {
    font-size: 25px;
    padding-right: 20px;
  }
  .dorone header .bottom-1 .bottom-p-2 p::after {
    border-left: 12px solid black;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
  }
}
.dorone header .bottom-2 {
  position: relative;
}
.dorone header .bottom-2::before {
  content: "";
  position: absolute;
  background-color: #34181d;
  font-size: 29px;
  width: 200vw;
  height: 100%;
  left: -55vw;
  z-index: 1;
}
.dorone header .bottom-2 p {
  color: #ffffff;
  font-weight: bold;
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}
@media (min-width: 811px) {
  .dorone header .bottom-2 {
    font-size: 29px;
  }
}
.dorone header .head-img {
  z-index: 1;
  right: -14px;
  top: 65px;
}
@media (min-width: 811px) {
  .dorone header .head-img {
    position: absolute;
  }
}
.dorone header .head-img p {
  font-weight: bold;
  position: relative;
  width: 380px;
  margin: 0 auto;
  text-align: center;
  color: #fff;
}
.dorone header .head-img p::after, .dorone header .head-img p::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 3px;
  background-color: #fff;
}
.dorone header .head-img p::after {
  left: 0;
  transform: skewX(35deg);
}
.dorone header .head-img p::before {
  right: 0;
  transform: skewX(-35deg);
}
.dorone .page-inner {
  max-width: 1200px;
  width: calc(100% - 30px);
  margin: 0 auto;
}
.dorone .dorone-list .page-inner {
  padding-bottom: 37px;
  background-color: #ffffff;
}
.dorone .dorone-list ul {
  display: flex;
  flex-wrap: wrap;
}
.dorone .dorone-list ul li {
  width: 100%;
  padding: 30px;
  box-sizing: border-box;
}
.dorone .dorone-list ul li h2 {
  background-color: #f07a17;
  color: #ffffff;
  text-align: center;
  font-size: 24px;
  padding: 10px 0;
  font-weight: bold;
  width: 100%;
}
.dorone .dorone-list ul li p {
  width: 80%;
  margin: 20px auto 10px;
}
@media (min-width: 811px) {
  .dorone .dorone-list ul li {
    width: 50%;
  }
}
.dorone .dorone-list a {
  width: 310px;
  background-color: #ffe200;
  color: #000000;
  font-weight: bold;
  display: block;
  position: relative;
  padding: 10px;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1607843137);
}
.dorone .dorone-list a::after {
  content: "";
  position: absolute;
  right: 15px;
  width: 0;
  height: 0;
  border-left: 12px solid black;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
.dorone .movie {
  margin-top: 30px;
  padding: 80px 0 100px;
  background-color: #ffffff;
}
.dorone .movie .page-inner h2 {
  color: #000000;
  text-align: center;
  font-weight: bold;
}
.dorone .movie .page-inner .title {
  margin-bottom: 60px;
}
.dorone .movie .page-inner ul {
  display: flex;
  justify-content: center;
}
.dorone .movie .page-inner ul li {
  width: 80%; /* 横幅を画面幅の40%に */
  max-width: 100%; /* 画面を超えないように */
  aspect-ratio: 16/9; /* 高さを自動で16:9に調整 */
}
.dorone .movie .page-inner ul li iframe {
  width: 100%;
  height: 100%;
}
.dorone .suggest {
  background-color: #34181d;
  padding: 80px 0 100px;
}
.dorone .suggest .page-inner {
  max-width: 1100px;
}
.dorone .suggest .title {
  width: 80%;
  margin: 0 auto 60px;
  padding-bottom: 30px;
  position: relative;
}
.dorone .suggest .title::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 3px;
  left: 0;
  bottom: 0;
  background-color: #ffffff;
}
.dorone .suggest .title h2 {
  color: #ffffff;
  text-align: center;
  font-weight: bold;
}
.dorone .suggest ul {
  display: flex;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 640px) {
  .dorone .suggest ul {
    display: block;
  }
}
.dorone .suggest ul li {
  width: 30%;
  aspect-ratio: 1;
  background-image: url(../img/fukidashi.png);
  background-size: auto 100%;
  background-position: center;
  background-repeat: no-repeat;
  box-sizing: border-box;
  padding: 10% 5% 0;
}
.dorone .suggest ul li p {
  font-weight: bold;
  height: 5.4em;
}
@media screen and (max-width: 640px) {
  .dorone .suggest ul li {
    width: 75%;
    margin: 15px auto;
    padding: 0 13%;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .dorone .suggest ul li:nth-child(even) {
    margin-right: 0;
  }
  .dorone .suggest ul li:nth-child(odd) {
    margin-left: 0;
  }
  .dorone .suggest ul li p {
    font-size: 14px;
    height: 7.2em;
  }
}
.dorone .solution {
  position: relative;
}
.dorone .solution::before, .dorone .solution::after {
  content: "";
  position: absolute;
  background-size: auto 100%;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  top: 0;
  z-index: 1;
}
.dorone .solution::before {
  background-image: url(../img/bg-left.png);
  background-position: left;
  left: 0;
}
.dorone .solution::after {
  background-image: url(../img/bg-right.png);
  background-position: right;
  right: 0;
}
.dorone .solution .page-inner {
  position: relative;
  z-index: 2;
  padding: 50px 0;
}
.dorone .solution .page-inner img {
  width: 85%;
  display: block;
  margin: 0 auto 0;
}
.dorone .solution .page-inner p {
  font-weight: 800;
  font-size: 24px;
  color: #ffffff;
  line-height: 1.3;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.3764705882);
  width: 85%;
  margin: 0 auto;
}
@media screen and (max-width: 640px) {
  .dorone .solution .page-inner p {
    font-size: 16px;
  }
}
.dorone .plan .page-inner {
  max-width: 1200px;
  width: calc(90% - 30px);
}
.dorone .plan ul.plan-list > li {
  margin-bottom: 10px;
  padding: 45px 0 0;
  box-sizing: border-box;
  position: relative;
}
@media screen and (max-width: 640px) {
  .dorone .plan ul.plan-list > li {
    margin-bottom: 30px;
  }
}
.dorone .plan ul.plan-list > li .plan-flex {
  display: flex;
  position: relative;
  padding: 0 20px 30px;
}
@media screen and (max-width: 640px) {
  .dorone .plan ul.plan-list > li .plan-flex {
    justify-content: center;
  }
}
.dorone .plan ul.plan-list > li .explanation {
  position: relative;
}
.dorone .plan ul.plan-list > li .explanation p {
  position: relative;
  color: #ffffff;
  font-weight: bold;
  padding: 0 20px;
  padding-right: 60px;
  width: max-content;
  z-index: 1;
}
.dorone .plan ul.plan-list > li .explanation p::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  background-color: #34181d;
  right: 0;
  top: 0;
  z-index: -1;
  clip-path: polygon(0 0, calc(100% - 20px) 0%, 100% 100%, 0% 100%);
  bottom: -1px;
}
@media screen and (max-width: 640px) {
  .dorone .plan ul.plan-list > li .explanation p {
    font-size: 18px;
  }
}
.dorone .plan ul.plan-list > li::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100vw;
  background-color: #ffffff;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.6274509804);
  right: 0;
  top: 0;
}
.dorone .form {
  background-color: #ffc11a;
  padding-bottom: 40px;
  margin-bottom: 50px;
}
.dorone .form h2 {
  font-weight: bold;
  text-align: center;
  padding: 40px 0;
}
.dorone .form .page-inner {
  background-color: #ffffff;
  padding: 70px;
  box-sizing: border-box;
}
@media screen and (max-width: 640px) {
  .dorone .form .page-inner {
    padding: 50px 30px;
  }
}
.dorone .form form > div {
  display: block;
  margin-bottom: 30px;
}
.dorone .form form > div:last-child {
  margin-bottom: 0;
}
.dorone .form form > div label {
  display: block;
}
.dorone .form form > div input,
.dorone .form form > div textarea {
  width: 100%;
}
@media (min-width: 811px) {
  .dorone .form form > div {
    display: flex;
  }
  .dorone .form form > div label {
    display: inline;
    width: 30%;
  }
  .dorone .form form > div input,
  .dorone .form form > div textarea {
    width: 70%;
  }
}
.dorone .form form button,
.dorone .form form input.submit {
  margin: 0 auto;
  display: block;
  position: relative;
  min-width: 150px;
  padding: 9px 20px;
  border: 1px solid transparent;
  border-radius: 100px;
  background-image: none;
  font-size: 14px;
  line-height: 1.28;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border-color: transparent;
  background-color: #e60012;
  color: #fff;
}/*# sourceMappingURL=drone.css.map */