@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 1rem;
}

body {
  -webkit-background-size: 100% auto;
  -moz-background-size: 100% auto;
  -webkit-text-size-adjust: none;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  background: transparent;
  color: #333;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
  border: none;
}

ul,
ol {
  list-style: none;
}

em,
i {
  font-style: normal;
}

/* フォントサイズ
-------------------------------------------*/
html {
  font-size: 52.5%;
}

@media screen and (min-width: 350px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 992px) {
  html {
    font-size: 62.5%;
  }
}

/* body
-------------------------------------------*/
body {
  text-align: left;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #262626;
  width: 100%;
  font-size: 1.4rem;
  font-family: "PT Sans", sans-serif;
}

@media screen and (min-width: 992px) {
  body {
    font-size: 1.6rem;
  }
}

body.is_hidden {
  overflow: hidden;
}

/* コンテンツ幅
-------------------------------------------*/
.inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

@media screen and (max-width: 991px) {
  .inner {
    padding: 0 6%;
  }
}

.inner_s {
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding: 0 50px;
}

@media screen and (max-width: 991px) {
  .inner_s {
    padding: 0 6%;
  }
}

/*------------------------------------
clearfix 
------------------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.clearfix {
  display: block;
}

/* End IE-mac */
.clear {
  clear: both;
}

/*------------------------------------
リンク 
------------------------------------*/
a {
  color: #333333;
  text-decoration: none;
}

@media screen and (min-width: 992px) {
  /* ホバーアクション */
  .hover {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .hover:hover {
    opacity: 0.6 !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/*------------------------------------
テキスト
------------------------------------*/
.bold {
  font-weight: bold;
}

.txt_co_orange {
  color: #ff7f00;
}

/*------------------------------------
スマホ　非表示
------------------------------------*/
@media screen and (min-width: 992px) {
  .disp_sp {
    display: none !important;
  }
}

/*------------------------------------
PC　非表示
------------------------------------*/
@media screen and (max-width: 991px) {
  .disp_pc {
    display: none !important;
  }
}

/*------------------------------------
margin
------------------------------------*/
.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

/* ヘッダー
-------------------------------------------*/
@media screen and (min-width: 992px) {
  .header {
    position: absolute;
    width: 100%;
    top: 0;
    height: 85px;
    z-index: 100;
  }
  .header_wrap {
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
  }
  .header_inner {
    max-width: 1200px;
    min-width: 960px;
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .header_logo {
    height: 63px;
    align-self: center;
  }
  .header_logo > img {
    height: 100%;
  }
  .header_nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
    position: relative;
    padding-left: 10px;
  }
  .header .gnav > ul {
    display: flex;
  }
  .header .gnav > ul > li:not(:last-child) {
    margin-right: 50px;
  }
  .header .gnav > ul > li > a,
  .header .gnav > ul > li > div:nth-child(1) {
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 15px;
    cursor: pointer;
    padding: 20px 0;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav > ul > li > a > span,
  .header .gnav > ul > li > div:nth-child(1) > span {
    display: block;
    text-align: center;
  }
  .header .gnav > ul > li > a > span:nth-child(1),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(1) {
    font-size: 1.8rem;
    font-weight: 700;
  }
  .header .gnav > ul > li > a > span:nth-child(2),
  .header .gnav > ul > li > div:nth-child(1) > span:nth-child(2) {
    font-size: 1rem;
  }
  .header .gnav > ul > li > a:hover,
  .header .gnav > ul > li > div:nth-child(1):hover {
    color: #fbbc61;
  }
  .header .gnav > ul > li:last-child {
    color: #fff;
  }
  .header .gnav > ul > li:last-child > span {
    display: inline-block;
    padding: 0 5px;
  }
  .header .gnav > ul > li:last-child a.active {
    font-weight: bold;
    text-decoration: underline;
  }
  .header .gnav > ul > li:last-child a.active:hover {
    color: #fff !important;
    cursor: inherit;
  }
  .header .gnav-mega {
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-mega:hover > a:nth-child(1),
  .header .gnav-mega:hover > div:nth-child(1) {
    color: #fbbc61;
  }
  .header .gnav-mega:hover .gnav-sub {
    top: 100%;
    visibility: visible;
    opacity: 1;
    z-index: -1;
  }
  .header .gnav-sub {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
  }
  .header .gnav-sub .inner {
    padding: 0;
  }
  .header .gnav-sub ul {
    background: #eeeeee;
    padding: 20px 25px 25px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .header .gnav-sub ul li {
    width: 45%;
    position: relative;
  }
  .header .gnav-sub ul li:nth-child(n + 3) {
    margin-top: 20px;
  }
  .header .gnav-sub ul li a {
    position: relative;
    display: block;
    width: 100%;
    font-weight: 700;
    font-size: 1.4rem;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a::before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 1px;
    background: #989898;
  }
  .header .gnav-sub ul li a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5px;
    margin: auto;
    width: 8px;
    height: 8px;
    border-top: 1px solid #989898;
    border-right: 1px solid #989898;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .header .gnav-sub ul li a:hover {
    color: #6e2888;
  }
  .header .gnav-sub ul li a:hover::after {
    border-top: 1px solid #6e2888;
    border-right: 1px solid #6e2888;
  }
}

@media screen and (max-width: 991px) {
  .header {
    background: #fff;
    height: 50px;
    width: 100%;
  }
  .header_inner {
    width: 100%;
    height: 50px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
  }
  .header_logo {
    height: 25px;
  }
  .header_logo > img {
    height: 25px;
  }
}

.page_home #nav_home > a {
  color: #fbbc61 !important;
}

.page_service #nav_service > a {
  color: #fbbc61 !important;
}

.page_contact #nav_contact > a {
  color: #fbbc61 !important;
}

.page_company #nav_company > a {
  color: #fbbc61 !important;
}

@media screen and (max-width: 991px) {
  .sp_nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 101;
    padding-bottom: env(safe-area-inset-bottom);
  }
  .sp_nav_main {
    height: 50px;
    padding: 0 0 0 3%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav_main.is_active {
    background: #262626;
  }
  .sp_nav_logo > img {
    height: 40px;
  }
  .sp_nav_icons {
    padding-left: 15px;
    margin-bottom: 35px;
  }
  .sp_nav_icons > ul {
    display: flex;
    align-items: center;
  }
  .sp_nav_icons > ul > li:not(:last-child) {
    margin-right: 25px;
  }
  .sp_nav_icons > ul > li > a {
    display: block;
    position: relative;
  }
  .sp_nav_icons > ul > li > a::before {
    content: "";
    background: #fff;
    position: absolute;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    z-index: -1;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  .sp_nav_icons > ul > li > a > img {
    width: 38px;
    height: 38px;
  }
  .sp_nav #sp_menu_btn {
    width: 50px;
    height: 50px;
    display: block;
    left: 0;
    bottom: 0;
    margin-left: 5%;
    z-index: 101;
    cursor: pointer;
    position: relative;
  }
  .sp_nav #sp_menu_btn span {
    width: 18px;
    height: 3px;
    display: block;
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    background: #fff;
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(1) {
    top: 17px;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    z-index: -1;
  }
  .sp_nav #sp_menu_btn span:nth-of-type(3) {
    bottom: 17px;
  }
  .sp_nav #sp_menu_btn.is_active span:nth-of-type(1) {
    transform: translateY(7px) rotate(-45deg);
  }
  .sp_nav #sp_menu_btn.is_active span:nth-of-type(2) {
    opacity: 0;
  }
  .sp_nav #sp_menu_btn.is_active span:nth-of-type(3) {
    transform: translateY(-5.5px) rotate(45deg);
  }
  .sp_nav #sp_menu_block {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    -webkit-transition: all 0.4s ease;
    transition: all 0.4s ease;
    z-index: -1;
    background: #781a96;
    background: linear-gradient(270deg, #781a96 0%, #1d2f5f 100%);
    padding: 75px 6% 35px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .sp_nav #sp_menu_block > ul > li > a,
  .sp_nav #sp_menu_block > ul > li > div {
    color: #fff;
    display: flex;
    align-items: center;
  }
  .sp_nav #sp_menu_block > ul > li > a > span,
  .sp_nav #sp_menu_block > ul > li > div > span {
    display: block;
  }
  .sp_nav #sp_menu_block > ul > li > a > span:nth-child(1),
  .sp_nav #sp_menu_block > ul > li > div > span:nth-child(1) {
    font-size: 1.6rem;
    font-weight: 700;
    margin-right: 30px;
  }
  .sp_nav #sp_menu_block > ul > li > a > span:nth-child(2),
  .sp_nav #sp_menu_block > ul > li > div > span:nth-child(2) {
    font-size: 1.2rem;
  }
  .sp_nav #sp_menu_block > ul > li > ul {
    padding-top: 1em;
    padding-left: 1em;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li:not(:last-child) {
    margin-bottom: 10px;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li > a {
    color: #fff;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    letter-spacing: 0.01em;
  }
  .sp_nav #sp_menu_block > ul > li > ul > li > a > span {
    display: inline-block;
    padding-left: 25px;
    font-size: 1rem;
    white-space: nowrap;
  }
  .sp_nav #sp_menu_block > ul > li:not(:last-child) {
    padding-bottom: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  }
  .sp_nav #sp_menu_block.is_active {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
}

/* フッター
-------------------------------------------*/
.footer {
  background: #781a96;
  background: linear-gradient(270deg, #781a96 0%, #1d2f5f 100%);
  padding: 60px 0 0;
}

@media screen and (max-width: 991px) {
  .footer .inner {
    padding: 0;
  }
}

.footer-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

@media screen and (max-width: 991px) {
  .footer-wrap {
    flex-wrap: wrap;
  }
}

@media screen and (max-width: 991px) {
  .footer-logo {
    padding: 0 6%;
    margin-bottom: 30px;
    margin: 0 auto 30px;
    width: 100%;
  }
  .footer-logo img {
    margin: auto;
    display: block;
    height: 30px;
  }
}

.footer-nav {
  display: flex;
}

@media screen and (max-width: 991px) {
  .footer-nav {
    flex-wrap: wrap;
    border-top: 1px solid rgba(229, 229, 229, 0.5);
    width: 100%;
  }
}

.footer-nav .item {
  padding: 0 40px;
}

@media screen and (max-width: 1080px) and (min-width: 992px) {
  .footer-nav .item {
    padding: 0 30px;
  }
}

@media screen and (max-width: 991px) {
  .footer-nav .item {
    padding: 20px 6%;
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .footer-nav .item:not(:last-child) {
    border-right: 1px solid rgba(229, 229, 229, 0.5);
  }
}

@media screen and (max-width: 991px) {
  .footer-nav .item {
    border-bottom: 1px solid rgba(229, 229, 229, 0.5);
  }
}

.footer-nav .item > a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 991px) {
  .footer-nav .item > a {
    font-size: 1.4rem;
  }
}

.footer-nav .item > a:hover {
  text-decoration: underline;
}

.footer-nav .item dl dt {
  margin-bottom: 10px;
}

.footer-nav .item dl dt > a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 991px) {
  .footer-nav .item dl dt > a {
    font-size: 1.4rem;
  }
}

.footer-nav .item dl dt > a:hover {
  text-decoration: underline;
}

.footer-nav .item dl dt > a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 991px) {
  .footer-nav .item dl dt > a {
    font-size: 1.4rem;
  }
}

.footer-nav .item dl dt > a:hover {
  text-decoration: underline;
}

.footer-nav .item dl dd {
  padding-left: 1em;
}

.footer-nav .item dl dd a {
  color: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .footer-nav .item dl dd a {
    font-size: 1.3rem;
  }
}

.footer-nav .item dl dd a:hover {
  text-decoration: underline;
}

.footer-copy {
  text-align: center;
  padding: 20px 0;
  color: #fff;
  margin-top: 50px;
  border-top: 1px solid rgba(229, 229, 229, 0.5);
}

.footer-copy small {
  font-size: 1.2rem;
}

@media screen and (max-width: 991px) {
  .footer-copy {
    border-top: none;
    margin-top: 30px;
  }
}

.bg01 {
  background: #781a96;
  background: linear-gradient(270deg, #781a96 0%, #1d2f5f 100%);
}

/* index
-------------------------------------------*/
.topMv {
  background: url(../img/index/mv.jpg) left center no-repeat;
  background-size: cover;
  height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 100px;
}

@media screen and (max-width: 991px) {
  .topMv {
    height: 500px;
    margin-bottom: 50px;
    background-image: url(../img/index/mv_sp.jpg);
  }
}

.topMv-ttl > span {
  display: block;
  text-align: center;
  font-size: 5rem;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
}

@media screen and (max-width: 991px) {
  .topMv-ttl > span {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-top: 70px;
  }
}

.topMv-ttl img {
  max-height: 100px;
  display: block;
  margin: auto;
}

.topTtl {
  text-align: center;
  position: relative;
  padding-top: 25px;
  margin-bottom: 65px;
}

@media screen and (max-width: 991px) {
  .topTtl {
    padding-top: 20px;
    margin-bottom: 45px;
  }
}

.topTtl::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #6e2888;
  width: 60px;
  height: 2px;
}

.topTtl > b {
  display: block;
  font-size: 5rem;
  color: #6e2888;
  letter-spacing: 0.1em;
  line-height: 1;
  margin-bottom: 10px;
}

@media screen and (max-width: 991px) {
  .topTtl > b {
    font-size: 3.2rem;
  }
}

.topTtl > span {
  display: block;
  font-weight: 700;
  font-size: 1.6rem;
}

@media screen and (max-width: 991px) {
  .topTtl > span {
    font-size: 1.4rem;
  }
}

.topNav {
  padding-bottom: 140px;
}

@media screen and (max-width: 991px) {
  .topNav {
    padding-bottom: 80px;
  }
}

.topNav ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.topNav ul > li > a {
  display: block;
  position: relative;
}

.topNav ul > li > a > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
}

@media screen and (max-width: 991px) {
  .topNav ul > li > a > span {
    font-size: 2rem;
  }
}

@media screen and (min-width: 992px) {
  .topNav ul > li {
    width: 49%;
  }
  .topNav ul > li:nth-child(n + 3) {
    margin-top: 2%;
  }
}

@media screen and (max-width: 991px) {
  .topNav ul > li {
    width: 100%;
  }
  .topNav ul > li:not(:last-child) {
    margin-bottom: 15px;
  }
}

.lowerMv {
  background-position: left center;
  background-repeat: repeat;
  background-size: cover;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lowerMv.--service {
  background-image: url(../img/service/mv_service.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--service {
    background-image: url(../img/service/mv_service_sp.jpg);
  }
}

.lowerMv.--video {
  background-image: url(../img/service/mv_video.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--video {
    background-image: url(../img/service/mv_video_sp.jpg);
  }
}

.lowerMv.--sns {
  background-image: url(../img/service/mv_sns.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--sns {
    background-image: url(../img/service/mv_sns_sp.jpg);
  }
}

.lowerMv.--listing {
  background-image: url(../img/service/mv_listing.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--listing {
    background-image: url(../img/service/mv_listing_sp.jpg);
  }
}

.lowerMv.--app {
  background-image: url(../img/service/mv_app.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--app {
    background-image: url(../img/service/mv_app_sp.jpg);
  }
}

.lowerMv.--company {
  background-image: url(../img/company/mv_company.jpg);
}

@media screen and (max-width: 991px) {
  .lowerMv.--company {
    background-image: url(../img/company/mv_company_sp.jpg);
  }
}

.lowerMv.--contact {
  background: none;
}

.lowerMv.--contact .lowerMv-ttl > span {
  color: #262626;
}

@media screen and (max-width: 991px) {
  .lowerMv {
    height: 240px;
  }
}

.lowerMv-ttl > span {
  display: block;
  text-align: center;
  font-size: 7rem;
  color: #fff;
  letter-spacing: 0.1em;
  line-height: 1.5;
}

@media screen and (max-width: 991px) {
  .lowerMv-ttl > span {
    font-size: 3.4rem;
    line-height: 1.5;
    margin-top: 70px;
    letter-spacing: 0.05em;
  }
}

.lowerMv-ttl > b {
  font-size: 2rem;
  color: #fbbc61;
  font-weight: 700;
  display: block;
  text-align: center;
}

@media screen and (max-width: 991px) {
  .lowerMv-ttl > b {
    font-size: 1.4rem;
    letter-spacing: 0.05em;
  }
}

/* フォント
-------------------------------------------*/
.font_mont {
  font-family: "Montserrat", sans-serif;
}

/* 下層ページ
-------------------------------------------*/
.leatTxt {
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .leatTxt {
    padding: 35px 0;
  }
}

.leatTxt p {
  color: #fff;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .leatTxt p {
    font-size: 1.8rem;
  }
}

.explanationTxt {
  padding: 60px 0;
}

@media screen and (max-width: 991px) {
  .explanationTxt {
    padding: 40px 0 50px;
  }
}

.explanationTxt p {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (max-width: 991px) {
  .explanationTxt p {
    font-size: 1.6rem;
    text-align: left;
  }
}

/* SERVICE */
.serviceList {
  padding-bottom: 140px;
  overflow: hidden;
}

@media screen and (max-width: 991px) {
  .serviceList {
    padding-bottom: 50px;
  }
}

@media screen and (max-width: 991px) {
  .serviceList .inner {
    padding: 0;
  }
}

.serviceList-item {
  position: relative;
}

.serviceList-item::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  margin: auto;
  background: #fff;
}

.serviceList-item + .serviceList-item {
  margin-top: 70px;
}

@media screen and (max-width: 991px) {
  .serviceList-item + .serviceList-item {
    margin-top: 30px;
  }
}

.serviceList-wrap {
  position: relative;
  background: #ffffff;
  padding: 150px 0 70px 70px;
}

@media screen and (max-width: 991px) {
  .serviceList-wrap {
    padding: 100px 0 35px 30px;
    margin-left: 6%;
  }
}

.serviceList-bgtxt {
  position: absolute;
  left: 30px;
  top: 60px;
  font-family: "Source Serif Pro", serif;
  font-size: 10rem;
  color: rgba(236, 236, 236, 0.6);
  z-index: 1;
  line-height: 1;
}

@media screen and (max-width: 991px) {
  .serviceList-bgtxt {
    font-size: 6.8rem;
    left: 0;
    z-index: 3;
  }
}

.serviceList-flex {
  display: flex;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .serviceList-flex {
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}

.serviceList-flex .item:nth-child(1) {
  width: 45%;
  padding-right: 50px;
}

@media screen and (max-width: 991px) {
  .serviceList-flex .item:nth-child(1) {
    width: 100%;
    padding: 0;
  }
}

.serviceList-flex .item:nth-child(2) {
  width: 55%;
}

@media screen and (max-width: 991px) {
  .serviceList-flex .item:nth-child(2) {
    width: 100%;
  }
}

.serviceList-flex .item > dl {
  padding-top: 60px;
  padding-left: 50px;
}

@media screen and (max-width: 991px) {
  .serviceList-flex .item > dl {
    padding-top: 20px;
    padding-left: 0;
    margin-right: 6%;
  }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
  .serviceList-flex .item > dl {
    padding-left: 0;
  }
}

.serviceList-flex .item > dl > dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
  .serviceList-flex .item > dl > dt {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }
}

.serviceList-link {
  margin-top: 70px;
  display: table;
  position: relative;
  color: #989898;
  padding-right: 110px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

@media screen and (max-width: 991px) {
  .serviceList-link {
    margin-top: 20px;
  }
}

.serviceList-link::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 90px;
  height: 1px;
  background: #989898;
}

@media screen and (min-width: 992px) {
  .serviceList-link:hover {
    color: #6e2888;
  }
  .serviceList-link:hover::after {
    background: #6e2888;
  }
}

.serviceList-item:nth-child(odd)::after {
  right: -50vw;
}

.serviceList-item:nth-child(even)::after {
  left: -50vw;
}

.serviceList-item:nth-child(even) .serviceList-wrap {
  padding: 150px 70px 70px 0;
}

@media screen and (max-width: 991px) and (max-width: 991px) {
  .serviceList-item:nth-child(even) .serviceList-wrap {
    padding: 100px 30px 35px 0;
    margin-right: 6%;
    margin-left: 0;
  }
}

.serviceList-item:nth-child(even) .serviceList-flex .item > dl {
  padding-left: 20px;
}

@media screen and (max-width: 991px) {
  .serviceList-item:nth-child(even) .serviceList-flex .item > dl {
    padding-left: 8%;
    margin-right: 0;
  }
}

.serviceList-item:nth-child(even) .serviceList-bgtxt {
  left: -30px;
}

@media screen and (max-width: 991px) {
  .serviceList-item:nth-child(even) .serviceList-bgtxt {
    left: inherit;
    right: 0;
    text-align: left;
    display: flex;
    justify-content: flex-end;
  }
  .serviceList-item:nth-child(even) .serviceList-bgtxt > span {
    display: inline-block;
    text-align: left;
    width: 80%;
  }
}

.listNo {
  background: #f8f8f8;
  padding: 100px 0 150px;
}

@media screen and (max-width: 991px) {
  .listNo {
    padding: 50px 0 70px;
  }
}

.listNo-ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  margin-top: -30px;
  margin-bottom: 100px;
  color: #6e2888;
  position: relative;
  padding-top: 5px;
}

@media screen and (max-width: 991px) {
  .listNo-ttl {
    font-size: 2rem;
    padding-top: 20px;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 35px;
  }
}

.listNo-ttl::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 2px;
  background: #781a96;
  background: linear-gradient(270deg, #781a96 0%, #1d2f5f 100%);
}

.listNo-ttl > b {
  font-size: 4.2rem;
}

@media screen and (max-width: 991px) {
  .listNo-ttl > b {
    font-size: 3.2rem;
  }
}

.listNo-item {
  display: flex;
}

@media screen and (max-width: 991px) {
  .listNo-item {
    flex-direction: column-reverse;
  }
}

.listNo-item .item {
  width: 50%;
}

@media screen and (max-width: 991px) {
  .listNo-item .item {
    width: 100%;
  }
}

@media screen and (min-width: 992px) {
  .listNo-item .item:nth-child(1) {
    padding-right: 50px;
  }
}

.listNo-item .item > dl {
  position: relative;
  padding-top: 30px;
}

@media screen and (min-width: 992px) {
  .listNo-item .item > dl {
    padding-left: 50px;
  }
}

.listNo-item .item > dl::before {
  content: "00";
  position: absolute;
  top: -0.35em;
  left: 0;
  font-size: 19rem;
  line-height: 1;
  font-family: "Source Serif Pro", serif;
  font-weight: 700;
  color: #f8ecd9;
  z-index: 1;
}

@media screen and (max-width: 991px) {
  .listNo-item .item > dl::before {
    right: 0 !important;
    left: inherit;
    font-size: 14rem;
    top: 0;
  }
}

.listNo-item .item > dl > dt {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #1d2f5f;
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 991px) {
  .listNo-item .item > dl > dt {
    font-size: 1.8rem;
    margin-bottom: 15px;
  }
}

.listNo-item .item > dl > dd {
  position: relative;
  z-index: 2;
}

.listNo-item .item > dl > dd p + p {
  margin-top: 20px;
}

@media screen and (max-width: 991px) {
  .listNo-item .item > dl > dd p + p {
    margin-top: 15px;
  }
}

.listNo-item:nth-child(1) .item > dl::before {
  content: "01";
}

.listNo-item:nth-child(2) .item > dl::before {
  content: "02";
}

.listNo-item:nth-child(3) .item > dl::before {
  content: "03";
}

.listNo-item:nth-child(4) .item > dl::before {
  content: "04";
}

.listNo-item + .listNo-item {
  margin-top: 100px;
}

@media screen and (max-width: 991px) {
  .listNo-item + .listNo-item {
    margin-top: 50px;
  }
}

@media screen and (min-width: 992px) {
  .listNo-item:nth-child(even) {
    flex-direction: row-reverse;
  }
  .listNo-item:nth-child(even) .item:nth-child(1) {
    padding-left: 50px;
    padding-right: 0;
  }
  .listNo-item:nth-child(even) .item > dl {
    padding-left: 10px;
  }
  .listNo-item:nth-child(even) .item > dl::before {
    left: inherit;
    right: 0;
  }
}

.footContact {
  background: url(../img/common/bg_foot_contact.jpg) left center no-repeat;
  background-size: cover;
  height: 310px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 991px) {
  .footContact {
    height: 200px;
    background-image: url(../img/common/bg_foot_contact_sp.jpg);
  }
}

.footContact p {
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}

@media screen and (max-width: 991px) {
  .footContact p {
    font-size: 1.8rem;
  }
}

.serviceTxt {
  padding: 60px 0 90px;
  position: relative;
}

@media screen and (max-width: 991px) {
  .serviceTxt {
    padding: 50px 0 70px;
  }
}

.serviceTxt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 60px;
  height: 2px;
  background: #781a96;
  background: linear-gradient(270deg, #781a96 0%, #1d2f5f 100%);
}

.serviceTxt p {
  text-align: center;
}

@media screen and (max-width: 991px) {
  .serviceTxt p {
    text-align: left;
  }
}

.serviceTxt p + p {
  margin-top: 40px;
}

@media screen and (max-width: 991px) {
  .serviceTxt p + p {
    margin-top: 25px;
  }
}

.serviceTxt p.txt01 {
  font-size: 2rem;
  color: #781a96;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .serviceTxt p.txt01 {
    font-size: 1.6rem;
  }
}

/* 会社案内 */
.companyTbl {
  padding: 60px 0 80px;
  margin: auto;
  max-width: 826px;
}

@media screen and (max-width: 991px) {
  .companyTbl {
    padding: 40px 0 60px;
  }
}

.companyTbl .item {
  border-bottom: 1px solid #D9D9D9;
  padding: 30px 50px;
  display: flex;
}

@media screen and (max-width: 991px) {
  .companyTbl .item {
    flex-direction: column;
    padding: 20px 0;
  }
}

.companyTbl .item:first-child {
  border-top: 1px solid #D9D9D9;
}

.companyTbl .item > dt {
  width: 35%;
  font-weight: 700;
}

@media screen and (max-width: 991px) {
  .companyTbl .item > dt {
    width: 100%;
    margin-bottom: 10px;
  }
}

.companyTbl .item > dd {
  width: 65%;
}

@media screen and (max-width: 991px) {
  .companyTbl .item > dd {
    width: 100%;
  }
}

/* お問い合わせ */
.page_contact {
  background: #F8F8F8;
}

.page_contact .header {
  background: #262626;
}

@media screen and (max-width: 991px) {
  .page_contact .sp_nav {
    background: #262626;
  }
}

.contactBox {
  padding-bottom: 80px;
  margin: auto;
  max-width: 1000px;
}

.contactBox-wrap {
  background: #fff;
  padding: 60px 90px 80px;
}

@media screen and (min-width: 992px) {
  .contactBox-wrap {
    margin-top: -120px;
  }
}

@media screen and (max-width: 991px) {
  .contactBox-wrap {
    padding: 35px 20px 50px;
  }
}

.contactBox-lead {
  text-align: center;
  padding-bottom: 60px;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 60px;
}

.contactBox-lead h2{
	font-size: 20px;
	font-weight: bold;
}

@media screen and (max-width: 991px) {
  .contactBox-lead {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
	.contactBox-lead h2{
		font-size: 18px;
	}
}

.contactBox-term {
  background: #fff;
  padding: 20px;
  height: 300px;
  overflow-y: auto;
  border: 1px solid #DFDFDF;
  font-size: 1.4rem;
}

@media screen and (max-width: 991px) {
  .contactBox-term {
    font-size: 1.2rem;
    height: 200px;
  }
}

.contactBox-term > p {
  margin-bottom: 20px;
}

.contactBox-term > dl > dt {
  font-weight: 700;
  margin-bottom: 5px;
}

.contactBox-term > dl + dl {
  margin-top: 20px;
}

.contactBox-item + .contactBox-item {
  margin-top: 35px;
}

@media screen and (max-width: 991px) {
  .contactBox-item + .contactBox-item {
    margin-top: 30px;
  }
}

.contactBox-item > dl > dt {
  font-weight: 700;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.contactBox-item > dl > dt > span {
  display: block;
  padding-left: 30px;
  font-size: 1.4rem;
  color: #EF2C47;
  font-weight: 400;
}

@media screen and (max-width: 991px) {
  .contactBox-item > dl > dt > span {
    font-size: 1.2rem;
    padding-left: 20px;
  }
}

.contactBox-chk {
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 35px 0;
  align-items: center;
}

@media screen and (max-width: 991px) {
  .contactBox-chk {
    padding: 30px 0;
  }
}

/* select設定 */
.select {
  position: relative;
  border: 1px solid #DFDFDF;
  overflow: hidden;
  height: 50px;
  text-align: center;
  width: 40%;
}

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

.select > select {
  width: 100%;
  height: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  font-size: 16px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  -webkit-appearance: none;
  appearance: none;
  padding: 8px 38px 8px 15px;
  text-align: left;
}

.select::after {
  content: '';
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 20px;
  padding: 0;
  margin-top: -5px;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}

/* input設定 */
input, textarea {
	/*
  -webkit-appearance: none;
  appearance: none;*/
  outline: none;
}

input[type=radio], input[type=checkbox] {
  /*visibility: hidden;*/
	display: inline-block;
	margin: 0 5px 2px 0;
}

input[type=submit], button {
  -webkit-appearance: none;
  border: none;
  cursor: pointer;
}

.input-text {
  width: 100%;
  border: 1px solid #DFDFDF;
  padding: 15px;
  font-size: 16px;
}

input.input-text {
  height: 50px;
  line-height: 50px;
}

/* textarea */
textarea.input-text {
  display: block;
  width: 100%;
  height: 300px;
}

@media screen and (max-width: 991px) {
  textarea.input-text {
    height: 250px;
  }
}

/* プレースフォルダ設定 */
::-webkit-input-placeholder {
  color: #888888;
}

:-ms-input-placeholder {
  color: #888888;
}

::placeholder {
  color: #888888;
}

input:focus::placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-webkit-input-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus:-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

input:focus::-moz-placeholder {
  color: transparent !important;
  transition: .1s;
}

/* checkbox */
/*
.input-chk {
  position: absolute;
}

.input-chk + span {
  margin: 0;
  border-radius: 4px;
  padding: 0 15px 0 40px;
  display: inline-block;
  position: relative;
  color: #444;
  letter-spacing: 0.05em;
}

.input-chk + span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 2px;
  background: #fff;
  border: 1px solid #9c9c9c;
}

.input-chk + span:after {
  content: "";
  position: absolute;
  opacity: 0;
  width: 7px;
  height: 11px;
  top: 50%;
  margin-top: -2px;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
  border-right: 2px solid #EF2C47;
  border-bottom: 2px solid #EF2C47;
}

.input-chk:checked + span::after {
  opacity: 1;
}
*/
/* err */
label.error {
  background-color: #EF2C47;
  margin-top: 10px;
  display: table;
  color: #fff;
  padding: 3px 10px;
  font-size: 1.4rem;
}

/* submit */
.btn-send input {
  display: flex;
  justify-content: center;
  background: #FBBC61;
  color: #fff;
  font-size: 1.6rem;
  line-height: 1.4;
  padding: 25px;
  margin: auto;
  width: 90%;
  max-width: 360px;
  font-weight: bold;
  text-align: center;
  box-shadow: 0px 1px 4px 2px rgba(0, 0, 0, 0.1);
}

.btn-send input.btn_back {
  background: #CCC;
  font-size: 1.5rem;
  line-height: 1.4;
  padding: 15px;
  margin: 15px auto 0;
  width: 60%;
  max-width: 250px;
  font-weight: bold;
}



@media screen and (min-width: 992px) {
  .btn-send input {
    transition: all 0.4s ease;
    -webkit-transition: all 0.4s ease;
  }
  .btn-send input:hover {
    opacity: 0.7;
  }
}

@media screen and (max-width: 991px) {
  .btn-send input {
    font-size: 1.4rem;
    padding: 20px;
  }
}

.ap-en-fz{
  font-size:18px!important;
}
