[data-target] {
	cursor: pointer;
}

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

html {
	font-size: 62.5%;
}

html,
body {
	margin: 0;
	padding: 0;
}

body {
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	background: #fff;
	color: #000;
	font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
	font-size: 1.6rem;
	font-weight: 500;
	line-height: 1.6;
	min-height: 100vh;
	min-height: -webkit-fill-available;
	overflow-wrap: break-word;
	overflow-x: hidden;
}

article,
aside,
footer,
header,
nav,
section,
main {
	display: block;
}

h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	border: 0;
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	outline: none;
}

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

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

code,
kbd,
pre,
samp {
	font-family: monospace, sans-serif;
	font-size: inherit;
}

ul,
ol {
	list-style: none;
}

table {
	border: 1px solid #eee;
	border-collapse: collapse;
	border-spacing: 0;
	table-layout: fixed;
	width: 100%;
}

th,
td {
	border: 1px solid #eee;
	padding: 4px 6px;
	text-align: left;
	vertical-align: top;
}

blockquote,
q {
	quotes: none;
}

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

address {
	font-style: normal;
}

form {
	margin: 0;
	padding: 0;
}

form button {
	-webkit-appearance: none;
	background-color: #0073aa;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

form button:hover,
form button:focus {
	outline: none;
}

form button:hover {
	opacity: 0.6;
}

form button ::-moz-focus-inner {
	border: none;
	padding: 0;
}

input,
textarea {
	-webkit-appearance: none;
	background-image: none;
	border: 1px solid #707070;
	border-radius: 0;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 8px;
	width: 100%;
}

textarea:hover,
textarea:focus {
	outline: none;
}

textarea:focus {
	border-color: #707070;
	box-shadow: none;
	outline: none;
}

textarea ::-moz-focus-inner {
	border: none;
	padding: 0;
}

input:focus {
	border-color: #707070;
	box-shadow: none;
	outline: none;
}

input[type="submit"],
input[type="button"] {
	-webkit-appearance: none;
	background-color: #0073aa;
	background-image: none;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	padding: 0.6em 2em;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	width: auto;
}

input[type="submit"]:hover,
input[type="submit"]:focus,
input[type="button"]:hover,
input[type="button"]:focus {
	outline: none;
}

input[type="submit"]:hover,
input[type="button"]:hover {
	opacity: 0.6;
}

input[type="submit"] ::-moz-focus-inner,
input[type="button"] ::-moz-focus-inner {
	border: none;
	padding: 0;
}

input[type="radio"] {
	display: none;
}

input[type="radio"] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 16px 0 0;
	padding: 0 0 0 30px;
	position: relative;
}

input[type="radio"] + span::before {
	background: #fff;
	border: 1px solid #707070;
	border-radius: 50%;
	content: "";
	display: block;
	height: 26px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 26px;
}

input[type="radio"] + span::after {
	opacity: 0;
	transition: opacity 0.3s ease 0s;
}

input[type="radio"]:checked + span::after {
	background: #707070;
	border-radius: 50%;
	content: "";
	display: block;
	height: 10px;
	left: 8px;
	opacity: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 10px;
}

input[type="checkbox"] {
	display: none;
}

input[type="checkbox"] + span {
	cursor: pointer;
	display: inline-block;
	margin: 0 16px 0 0;
	padding: 0 0 0 30px;
	position: relative;
	transition: all 1s ease 0s;
}

input[type="checkbox"] + span::before {
	background: #fff;
	border: 1px solid #0073aa;
	border-radius: 2px;
	content: "";
	display: block;
	height: 18px;
	left: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 18px;
}

input[type="checkbox"]:checked + span::before {
	background: #0073aa;
}

input[type="checkbox"] + span::after {
	opacity: 0;
	transition: opacity 0.3s ease 0s;
}

input[type="checkbox"]:checked + span::after {
	border-bottom: 4px solid #fff;
	border-left: 4px solid #fff;
	content: "";
	display: block;
	height: 7.8px;
	left: 2px;
	margin-top: -0.2em;
	opacity: 1;
	position: absolute;
	top: 55%;
	transform: translateY(-50%) rotate(-45deg);
	width: 13px;
}

select {
	-moz-appearance: none;
	-webkit-appearance: none;
	background-image: url(../img/arrow.svg);
	background-position: right 6px center;
	background-repeat: no-repeat;
	background-size: 24px;
	border: 1px solid #707070;
	border-radius: 0;
	color: inherit;
	cursor: pointer;
	font-family: inherit;
	font-size: 1.6rem;
	padding: 0.4em 2.4em 0.4em 0.8em;
}

select::-ms-expand {
	display: none;
}

select:focus {
	border-color: #707070;
	box-shadow: none;
	outline: none;
}

img {
	image-rendering: -webkit-optimize-contrast;
}

.inner {
	height: inherit;
	margin: 0 auto;
	max-width: 100%;
	padding: 0;
	width: 1010px;
}

.btn {
	-webkit-appearance: none;
	background-color: #424242;
	background-image: none;
	border: 2px solid #424242;
	border-radius: 0;
	color: #fff;
	display: inline-block;
	font-size: 16px;
	font-weight: 700;
	height: 60px;
	letter-spacing: 0.04em;
	line-height: 58px;
	margin: 0;
	max-width: 100%;
	position: relative;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease 0s;
	vertical-align: middle;
	width: 300px;
}

.btn:not(:disabled) {
	cursor: pointer;
}

.btn:hover,
.btn:focus {
	outline: none;
}

.btn::-moz-foucus-inner {
	border: none;
	padding: 0;
}

.drawer {
	z-index: 40;
}

.drawer-close {
	background: #000;
	display: none;
	height: 100%;
	left: 0;
	opacity: 0;
	position: fixed;
	top: 0;
	transition: all 0.3s ease 0s;
	width: 100%;
	z-index: 39;
}

.drawer-close.is-checked {
	display: block;
	opacity: 0.4;
}

.drawer-icon {
	cursor: pointer;
	display: inline-block;
	position: relative;
	text-align: center;
	z-index: 41;
}

.drawer-icon::after {
	color: #424242;
	content: "MENU";
	display: none;
	font-size: 0.8rem;
	font-weight: 700;
	line-height: 1;
	margin-top: 4px;
	text-align: center;
}

.drawer-icon.is-checked::after {
	content: "CLOSE";
}

.drawer-bars {
	display: inline-block;
	height: 19px;
	position: relative;
	vertical-align: bottom;
	width: 25px;
}

.drawer-bar {
	background: #424242;
	border-radius: 3px;
	display: block;
	height: 3px;
	left: 0;
	position: absolute;
	right: 0;
	transition: all 0.3s linear 0s;
	width: 100%;
}

.drawer-bar:nth-of-type(1) {
	top: 0;
}

.drawer-bar:nth-of-type(2) {
	top: 8px;
}

.drawer-bar:nth-of-type(3) {
	top: 16px;
}

.is-checked .drawer-bar:nth-of-type(1) {
	top: 10px;
	transform: rotate(-45deg);
}

.is-checked .drawer-bar:nth-of-type(2) {
	background: transparent;
}

.is-checked .drawer-bar:nth-of-type(3) {
	top: 10px;
	transform: rotate(45deg);
}

.drawer-content {
	background: #fff;
	bottom: auto;
	color: #424242;
	height: 100%;
	left: auto;
	max-width: 90%;
	overflow: auto;
	padding-top: 60px;
	position: fixed;
	right: 0;
	text-align: left;
	top: 0;
	transform: translateX(105%);
	transition: all 0.5s ease 0s;
	width: 200px;
	z-index: 40;
}

.drawer-content.is-checked {
	box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
	transform: translateX(0);
}

.drawer-content--left {
	left: 0;
	right: auto;
	transform: translateX(-105%);
}

.drawer-content--top {
	bottom: auto;
	height: 100%;
	max-width: 100%;
	top: 0;
	transform: translateY(-105%);
	width: 100%;
}

.footer > .inner {
	padding: 50px;
	text-align: center;
}

.footer > .inner .footer-logo {
	margin-bottom: 30px;
}

.footer > .inner .footer-menu {
	display: flex;
	justify-content: center;
	margin-bottom: 20px;
	width: 100%;
}

.footer > .inner .footer-menu a {
	font-size: 14px;
	padding: 0 10px;
}

.footer > .inner .footer-menu a:first-child {
	border-right: 1px solid #000;
}

.footer-copy {
	font-size: 14px;
	margin-bottom: 20px;
}

.header {
	background: #fff;
	height: 80px;
	left: 0;
	position: relative;
	top: 0;
	width: 100%;
	z-index: 20;
}

.header-content {
	align-items: center;
	display: flex;
}

.header-logo {
	margin-right: auto;
	margin-top: 15px;
}

.header-logo a {
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.header-logo a:hover {
	opacity: 0.6;
}

.header-logo img {
	width: 260px;
}

.header-contact {
	align-items: center;
	display: flex;
	justify-content: space-between;
}

.header-contact .header-tel {
	margin-right: 20px;
}

.header-contact .header-tel .header-tel__number {
	align-items: center;
	display: flex;
	font-size: 30px;
	font-weight: bold;
	justify-content: space-between;
}

.header-contact .header-tel .header-tel__number img {
	margin-right: 5px;
}

.header-contact .header-tel .header-tel__number p {
	line-height: 1;
}

.header-contact .header-tel .header-tel__text {
	font-size: 12px;
	margin-left: 30px;
}

.header-nav ul {
	align-items: center;
	display: flex;
}

.header-nav li {
	margin-right: 46px;
}

.header-nav li:last-child {
	margin-right: 0;
}

.header-nav li > a {
	color: #000;
	display: block;
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

.header-nav li > a:hover {
	opacity: 0.6;
}

.header-drawer {
	display: none;
}

a {
	text-decoration: none;
	transition: all 0.3s ease 0s;
}

a:hover {
	opacity: 0.6;
}

.mv {
	background: center url(../img/mv-bg.png);
	background-repeat: no-repeat;
	/* height: 100vh; */
}

.mv-title {
	object-fit: contain;
	height: 631px;
}

.mv .inner {
	padding: 50px 15px;
	position: relative;
}

.sec01 {
	position: relative;
}

.sec01 .sec01-bg {
	background: contain;
	left: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.sec01 .inner {
	padding: 50px 15px 50px;
	text-align: center;
}

.sec01 .inner h2 {
	font-size: 40px;
	font-weight: bold;
	line-height: 1.4;
	margin-bottom: 50px;
	text-align: center;
}

.sec01 .inner .client-logo {
	width: 100%;
}

.cta01 {
	background: #0073aa;
}

.cta01 .inner {
	padding: 100px 15px;
}

.cta01 .inner .cta01-lead {
	margin-bottom: 50px;
}

.cta01 .inner .cta01-container {
	position: relative;
}

.cta01 .inner .cta01-container .cta01-button {
	bottom: 40px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
}

.cta01 .inner .cta01-container .cta01-button img {
	max-width: none;
}

.sec02 {
	background: #efefef;
}

.sec02 .inner {
	padding: 10px 15px 100px;
}

.sec02 .inner .case-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.sec02 .inner .case-list > li {
	margin-bottom: 40px;
	width: 48%;
}

.sec02 .inner .case-list > li:last-child ul {
	padding-bottom: 60px;
}

.sec02 .inner .case-list > li .case-title {
	align-items: center;
	background: #0073aa;
	display: flex;
	justify-content: flex-start;
	padding: 10px 20px;
}

.sec02 .inner .case-list > li .case-title .case-number {
	padding-right: 20px;
}

.sec02 .inner .case-list > li > ul {
	background: #fff;
	padding: 30px;
}

.sec02 .inner .case-list > li > ul li {
	align-items: flex-start;
	border-bottom: 1px dotted #cdcdcd;
	display: flex;
	font-size: 24px;
	font-weight: bold;
	justify-content: flex-start;
	line-height: 1.2;
	padding: 15px 0;
}

.sec02 .inner .case-list > li > ul li:first-child {
	padding-top: 0;
}

.sec02 .inner .case-list > li > ul li img {
	-o-object-fit: contain;
	margin-right: 5px;
	object-fit: contain;
	width: 20px;
}

.sec02 .inner .case-list > li > ul li p span {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f7ea79));
	background: -o-linear-gradient(transparent 60%, #f7ea79 60%);
	background: linear-gradient(transparent 60%, #f7ea79 60%);
	color: #0073aa;
	z-index: 1;
}

.sec03 {
	background: url(../img/sec03-bg.png);
}

.sec03 .inner {
	padding: 100px 15px;
	position: relative;
}

.sec03 .inner .sec03-cta {
	left: 50%;
	position: absolute;
	top: -50px;
	transform: translateX(-50%);
}

.sec04 .inner {
	padding: 100px 15px 50px;
}

.sec04 .inner .reason-list > li {
	background: #f9f9f9;
	margin: 20px 0;
	margin-left: calc(50% - 50vw);
	padding: 40px;
}

.sec04 .inner .reason-list > li .reason-list__item {
	height: inherit;
	margin-left: auto;
	margin-right: 0;
	max-width: 100%;
	padding: 0;
	width: 900px;
}

.sec04 .inner .reason-list > li .reason-head img {
	width: 100%;
}

.sec04 .inner .reason-list > li .reason-box {
	display: flex;
	justify-content: space-between;
	margin-top: 30px;
}

.sec04 .inner .reason-list > li .reason-box p {
	font-size: 18px;
	margin-right: 20px;
}

.sec04 .inner .reason-list > li .reason-box p span {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f7ea79));
	background: -o-linear-gradient(transparent 60%, #f7ea79 60%);
	background: linear-gradient(transparent 60%, #f7ea79 60%);
	font-weight: bold;
}

.sec04 .inner .reason-list > li .reason-box .reason-note {
	background: none;
	font-size: 14px;
	font-weight: normal;
}

.sec04 .inner .reason-list > li:nth-child(2n) {
	margin-left: 0;
	margin-right: calc(50% - 50vw);
}

.sec04 .inner .reason-list > li:nth-child(2n) .reason-list__item {
	margin-left: 0;
	margin-right: auto;
}

.sec04 .inner .reason-list > li:nth-child(2n) .reason-box {
	flex-direction: row-reverse;
}

.sec04 .inner .reason-list > li:nth-child(2n) .reason-box p {
	margin-left: 20px;
	margin-right: 0;
}

.sec04 .inner .report-box {
	background: #fff;
	border: 2px solid #0073aa;
	border-radius: 10px;
	margin-top: 50px;
	padding: 20px;
}

.sec04 .inner .report-box .report-title {
	display: block;
	margin: 0 auto 30px;
}

.sec04 .inner .report-box ul {
	display: flex;
	justify-content: space-between;
}

.sec04 .inner .report-box ul li {
	width: 32%;
}

.sec04 .inner .report-box ul li p {
	font-size: 18px;
	padding: 5px;
}

.sec04 .inner .report-box ul li p span {
	font-size: 14px;
}

.sec06 .inner {
	padding: 100px 15px;
}

.sec06 .inner .work-title {
	display: block;
	margin: auto;
	margin-bottom: 30px;
}

.sec06 .inner .work-list li {
	background: url(../img/work-bg.png);
	margin-bottom: 30px;
	padding: 40px 50px;
}

.sec06 .inner .work-list li .work-list__item {
	background: #fff;
	border: 1px solid #0073aa;
	display: flex;
	justify-content: space-between;
	padding: 30px;
}

.sec06 .inner .work-list li .work-list__item .work-list__box {
	margin-left: 30px;
	position: relative;
}

.sec06 .inner .work-list li .work-list__item .work-list__box .work-rbn {
	left: 0;
	position: absolute;
	top: -46px;
}

.sec06 .inner .work-list li .work-list__item .work-list__box .work-list__title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	padding-left: 80px;
}

.sec06 .inner .work-list li .work-list__item .work-list__box table tr th {
	background: #0073aa;
	border: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	padding: 10px;
	text-align: center;
	vertical-align: middle;
	width: 130px;
}

.sec06 .inner .work-list li .work-list__item .work-list__box table tr td {
	background: #fafafa;
	border: 1px solid #fff;
	font-size: 14px;
	padding: 10px;
}

.sec06 .inner .work-bottom {
	display: block;
	margin: auto;
}

.sec07 {
	background: #f4f9fc;
}

.sec07 .inner {
	padding: 0 15px 100px;
}

.sec07 .inner .service-lead {
	display: block;
	margin: auto;
	margin-top: 20px;
}

.sec07 .inner .service-table {
	border: none;
	margin-bottom: 10px;
	margin-top: 50px;
}

.sec07 .inner .service-table tr th {
	background: #0073aa;
	color: #fff;
	font-size: 18px;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
}

.sec07 .inner .service-table tr td {
	background: #fff;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
	padding: 20px 10px;
	text-align: center;
	vertical-align: middle;
}

.sec07 .inner .service-table tr td span {
	font-size: 12px;
}

.sec07 .inner .service-table tr .th-none {
	background: #f4f9fc;
	border: none;
}

.sec07 .inner .service-table tr .th-wp {
	background: #ce0e3b;
	border-left: 5px solid #ce0e3b;
	border-right: 5px solid #ce0e3b;
	border-top: 1px solid #ce0e3b;
}

.sec07 .inner .service-table tr .td-wp {
	background: #f7ea79;
	border-left: 5px solid #ce0e3b;
	border-right: 5px solid #ce0e3b;
	color: #ce0e3b;
	font-size: 24px;
	font-weight: bold;
	line-height: 1;
}

.sec07 .inner .service-table tr .td-wp .zero {
	font-size: 32px;
}

.sec07 .inner .service-table tr .td-wp span {
	font-size: 12px;
}

.sec07 .inner .service-table tr .td-wp__last {
	border-bottom: 5px solid #ce0e3b;
}

.sec07 .inner .service-table tr .text-black {
	color: #000;
}

.sec07 .inner .service-table__note {
	font-size: 14px;
	margin-bottom: 20px;
	text-align: right;
}

.sec07 .inner .service-description {
	position: relative;
}

.sec07 .inner .service-description .service-description__bg {
	width: 100%;
}

.sec07 .inner .service-description .service-description__box {
	left: 50px;
	position: absolute;
	top: 100px;
	width: 65%;
}

.sec07 .inner .service-description .service-description__box p {
	font-size: 18px;
	margin-top: 20px;
}

.sec07 .inner .service-description .service-description__box p span {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #f7ea79));
	background: -o-linear-gradient(transparent 60%, #f7ea79 60%);
	background: linear-gradient(transparent 60%, #f7ea79 60%);
	font-weight: bold;
}

.sec07 .inner .service-description .service-description__box .service-description__note {
	background: none;
	display: block;
	font-size: 14px;
	font-weight: normal;
	text-align: right;
}

.sec08 .inner {
	padding: 70px 15px 100px;
}

.sec08 .inner .sec08-lead {
	display: block;
	margin: auto;
	margin-bottom: 30px;
}

.sec08 .inner .sec08-server {
	width: 100%;
}

.sec08 .inner p {
	font-size: 18px;
	margin-top: 30px;
	text-align: center;
}

.sec09 {
	background: #faf8e2;
}

.sec09 .inner {
	padding: 100px 15px;
}

.sec09 .inner ul {
	margin-top: 30px;
}

.sec09 .inner ul li {
	background: #fff;
	margin-bottom: 30px;
	padding: 40px;
	position: relative;
}

.sec09 .inner ul li .voice-head {
	left: 40px;
	position: absolute;
	top: -10px;
}

.sec09 .inner ul li .voice-box {
	display: flex;
	justify-content: space-between;
	margin-top: 110px;
}

.sec09 .inner ul li .voice-box .voice-box__text {
	font-size: 18px;
	width: 48%;
}

.sec09 .inner ul li .voice-box .voice-box__text span {
	color: #0073aa;
	font-weight: bold;
}

.sec09 .inner ul li .voice-box .voice-box__pic p {
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}

.sec09 .inner ul li .voice-box .voice-box__pic p span {
	font-size: 20px;
}

.sec09 .inner ul li .voice-bottom__text {
	font-size: 18px;
	margin-top: 20px;
}

.sec09 .inner ul li .voice-bottom__text span {
	color: #0073aa;
	font-weight: bold;
}

.sec10 .inner {
	padding: 100px 15px;
}

.sec10 .inner h2 {
	margin-bottom: 50px;
}

.sec10 .inner h2 img {
	display: block;
	margin: auto;
}

.sec10 .inner ul li {
	border: 1px solid #ccc;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.11);
	display: flex;
	justify-content: flex-start;
	margin-bottom: 30px;
	padding: 50px;
	position: relative;
}

.sec10 .inner ul li:last-child .flow-arrow {
	display: none;
}

.sec10 .inner ul li .flow-arrow {
	bottom: -50px;
	left: 50%;
	position: absolute;
	transform: translateX(-50%);
	width: 180px;
	z-index: 1;
}

.sec10 .inner ul li .flow-box {
	margin-left: 30px;
}

.sec10 .inner ul li .flow-box p {
	font-size: 18px;
	margin-top: 40px;
}

.sec10 .inner ul li .flow-box p span {
	color: #0073aa;
	font-weight: bold;
}

.sec11 {
	background: center url(../img/company-bg.png);
	background-size: cover;
}

.sec11 .inner {
	padding: 100px 15px;
}

.sec11 .inner h2 {
	margin-bottom: 30px;
}

.sec11 .inner h2 img {
	display: block;
	margin: auto;
}

.sec11 .inner table {
	border: none;
	opacity: 0.9;
}

.sec11 .inner table tr th {
	background: #0073aa;
	color: #fff;
	font-size: 18px;
	padding: 10px 20px;
	text-align: center;
	vertical-align: middle;
	width: 250px;
}

.sec11 .inner table tr td {
	background: #fff;
	font-size: 18px;
	padding: 10px 20px;
	vertical-align: middle;
}

.sec12 .inner {
	padding: 100px 15px;
}

.sec12 .inner h2 {
	margin-bottom: 30px;
}

.sec12 .inner h2 img {
	display: block;
	margin: auto;
}

.sec12 .inner .tab-area {
	cursor: pointer;
	display: flex;
	justify-content: space-around;
}

.sec12 .inner .tab-area .tab {
	align-items: center;
	background: #4c9dc3;
	color: white;
	color: #fff;
	display: flex;
	font-size: 22px;
	font-weight: bold;
	height: 65px;
	justify-content: center;
	width: 50%;
}

.sec12 .inner .tab-area .tab.active {
	background: #0073aa;
}

.sec12 .inner .faq .faq-content {
	display: none;
}

.sec12 .inner .faq .faq-content.show {
	background: #fafafa;
	display: block;
}

.sec12 .inner .faq .faq-content.show ul {
	padding: 40px 45px;
}

.sec12 .inner .faq .faq-content.show ul li {
	border-bottom: 1px solid #ccc;
	padding: 20px 0;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q {
	align-items: center;
	display: flex;
	justify-content: flex-start;
	margin-bottom: 30px;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q p {
	color: #0073aa;
	font-size: 24px;
	font-weight: bold;
	margin-left: 20px;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q img {
	-o-object-fit: contain;
	object-fit: contain;
}

.sec12 .inner .faq .faq-content.show ul li .faq-a {
	align-items: flex-start;
	display: flex;
	justify-content: flex-start;
}

.sec12 .inner .faq .faq-content.show ul li .faq-a p {
	font-size: 18px;
	margin-left: 20px;
}

.sec12 .inner .faq .faq-content.show ul li .faq-a img {
	-o-object-fit: contain;
	object-fit: contain;
}

.sec13 {
	background: #0073aa;
}

.sec13 .inner {
	padding: 100px 15px;
}

.sec13 .inner h2 {
	margin-bottom: 30px;
}

.sec13 .inner h2 img {
	display: block;
	margin: auto;
}

.sec13 .inner .contact-container {
	position: relative;
}

.sec13 .inner .contact-container .contact-bg {
	width: 100%;
	background: linear-gradient(to right bottom, #fad991, #9c6627 50%, #fad991);
	padding: 10px;
}

.sec13 .inner .contact-container .contact-box {
	padding: 30px 30px 50px;
	width: 100%;
	background: #fff;
}



.sec13 .inner .contact-container .contact-box .contact-headbox {
	display: flex;
	justify-content: space-between;
}

.sec13 .inner .contact-container .contact-box .contact-headbox img {
	width: 48%;
}

.sec13 .inner .contact-container .contact-box table {
	border: none;
	margin-top: 40px;
}

.sec13 .inner .contact-container .contact-box table tbody tr {
	background: #efefef;
}

.sec13 .inner .contact-container .contact-box table tbody tr:nth-child(2n) {
	background: #fff;
}

.sec13 .inner .contact-container .contact-box table tbody tr:last-child th {
	vertical-align: top;
}

.sec13 .inner .contact-container .contact-box table tbody tr:last-child label {
	align-items: flex-start;
	padding-top: 10px;
}

.sec13 .inner .contact-container .contact-box table tbody tr label {
	align-items: center;
	display: flex;
	justify-content: flex-end;
}

.sec13 .inner .contact-container .contact-box table tbody tr th {
	border: none;
	font-size: 18px;
	padding: 15px 20px;
	padding-right: 0;
	text-align: right;
	vertical-align: middle;
	width: 250px;
}

.sec13 .inner .contact-container .contact-box table tbody tr th img {
	margin-right: 5px;
}

.sec13 .inner .contact-container .contact-box table tbody tr th .required {
	background: #ce0e3b;
	color: #fff;
	font-size: 12px;
	font-weight: bold;
	margin-left: 5px;
	padding: 5px 10px;
}

.sec13 .inner .contact-container .contact-box table tbody tr td {
	border: none;
	padding: 15px 20px;
}

.sec13 .inner .contact-container .contact-box table tbody tr td input {
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 18px;
	height: 60px;
}

.sec13 .inner .contact-container .contact-box table tbody tr td textarea {
	border: 1px solid #ccc;
	border-radius: 5px;
	font-size: 18px;
	height: 210px;
}

.sec13 .inner .contact-container .contact-box .contact-note {
	font-size: 14px;
	text-align: center;
}

.sec13 .inner .contact-container .contact-box .contact-note__check {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 30px;
	text-align: center;
	margin-top: 15px;
}

.sec13 .inner .contact-container .contact-box .contact-button {
	display: block;
	margin: auto;
}

.sec13 .inner .contact-container .contact-box .contact-note__link {
	text-decoration: underline;
}

.sec13 .inner .contact-container .contact-box .contact-submit {
	width: 100%;
	height: 150px;
	background: center url(../img/contact-button.png);
	background-size: contain;
	background-repeat: no-repeat;
	font-size: 0;
	image-rendering: -webkit-optimize-contrast;
}

.wpcf7-not-valid-tip {
	font-size: 14px;
	color: #ce0e3b;
	font-weight: normal;
}

.screen-reader-response {
	display: none;
}
.wpcf7-response-output {
	display: none;
}

.contact-thanks {
	text-align: center;
	margin: 100px 0;
	font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1009px) {

.hidden-tab {
	display: none !important;
}

}

@media (min-width: 1010px) {

.hidden-pc {
	display: none !important;
}

}

@media (max-width: 1009px) {

.inner {
	padding-left: 24px;
	padding-right: 24px;
}

.footer > .inner {
	padding: 6.66667vw 0;
}

.footer > .inner .footer-logo {
	margin-bottom: 4vw;
	width: 60%;
}

.footer > .inner .footer-menu {
	display: block;
}

.footer > .inner .footer-menu a {
	background: #efefef;
	border-bottom: 1px solid #fff;
	display: block;
	font-size: 3.2vw;
	padding: 2.66667vw 2.66667vw 2.66667vw 6.66667vw;
	position: relative;
	text-align: left;
}

.footer > .inner .footer-menu a::before {
	border-right: 1px solid #000;
	border-top: 1px solid #000;
	content: '';
	height: 1.33333vw;
	left: 2.66667vw;
	position: absolute;
	top: 43%;
	transform: translateY(-50%);
	transform: rotate(45deg);
	transition: all 0.2s ease-in-out;
	width: 1.33333vw;
}

.footer-copy {
	font-size: 2.66667vw;
	margin-bottom: 0;
}

.header {
	height: auto;
}

.header-content {
	justify-content: space-between;
}

.header-logo {
	margin-right: 0;
	margin-top: 0;
}

.header-logo img {
	width: 41.33333vw;
	vertical-align: middle;
}

.header .inner {
	padding-top: 2vw;
	padding-bottom: 2vw;
}

.header-contact {
	display: block;
}

.header-contact .header-button img {
	width: 40vw;
}

.mv {
	background: center url(../img/mv-bg_sp.png);
	background-size: cover;
	background-position: right 25% center;
	width: 100%;
}

.mv .inner {
	padding: 0;
}

.mv-title {
	height: auto;
}

.sec01 .inner {
	padding: 10vw 4% 10vw;
}

.sec01 .inner h2 {
	margin-bottom: 6.66667vw;
}

.sec01 .inner h2 img {
	width: 80%;
}

.cta01 .inner {
	padding: 13.33333vw 4%;
}

.cta01 .inner .cta01-lead {
	display: block;
	margin: 0 auto 6.66667vw;
	width: 80%;
}

.cta01 .inner .cta01-container > img {
	width: 100%;
}

.cta01 .inner .cta01-container .cta01-button {
	bottom: 5.33333vw;
}

.cta01 .inner .cta01-container .cta01-button img {
	width: 81.33333vw;
}

.sec02 .inner {
	padding: 1.33333vw 4% 13.33333vw;
}

.sec02 .inner .case-list {
	display: block;
}

.sec02 .inner .case-list > li {
	margin-bottom: 5.33333vw;
	width: 100%;
}

.sec02 .inner .case-list > li .case-title .case-number {
	width: 20%;
}

.sec02 .inner .case-list > li .case-title .case-heading {
	width: 50%;
}

.sec02 .inner .case-list > li > ul {
	padding: 4vw;
}

.sec02 .inner .case-list > li > ul li p {
	font-size: 4.26667vw;
}

.sec03 .inner {
	padding: 13.33333vw 4%;
}

.sec03 .inner .sec03-cta {
	top: -6.66667vw;
	width: 50%;
}

.sec04 .inner {
	padding: 13.33333vw 4% 6.66667vw;
}

.sec04 .inner .reason-list > li {
	padding: 4vw 4vw 4vw 8vw;
}

.sec04 .inner .reason-list > li .reason-box {
	flex-direction: column;
	flex-flow: wrap-reverse;
}

.sec04 .inner .reason-list > li .reason-box img {
	-o-object-fit: cover;
	object-fit: cover;
	width: 100%;
}

.sec04 .inner .reason-list > li .reason-box p {
	font-size: 3.73333vw;
	margin-right: 0;
	margin-top: 4vw;
}

.sec04 .inner .reason-list > li:nth-child(2n) {
	padding: 4vw 8vw 4vw 4vw;
}

.sec04 .inner .reason-list > li:nth-child(2n) .reason-box p {
	margin-left: 0;
}

.sec04 .inner .report-box {
	padding: 2.66667vw;
}

.sec04 .inner .report-box .report-title {
	width: 60%;
}

.sec04 .inner .report-box ul {
	display: block;
}

.sec04 .inner .report-box ul li {
	margin-bottom: 2.66667vw;
	width: 100%;
}

.sec04 .inner .report-box ul li img {
	width: 100%;
}

.sec04 .inner .report-box ul li p {
	font-size: 3.73333vw;
}

.sec06 .inner {
	padding: 13.33333vw 4%;
}

.sec06 .inner .work-list li {
	padding: 2.66667vw 4vw;
}

.sec06 .inner .work-list li .work-list__item {
	padding: 2.66667vw;
}

.sec06 .inner .work-list li .work-list__item {
	display: block;
}

.sec06 .inner .work-list li .work-list__item .work-list__box {
	margin-left: 0;
}

.sec06 .inner .work-list li .work-list__item .work-list__box .work-rbn {
	top: -4.53333vw;
	width: 9.33333vw;
}

.sec06 .inner .work-list li .work-list__item .work-list__box .work-pic {
	display: block;
	margin: auto;
	margin-bottom: 4vw;
	width: 70%;
}

.sec06 .inner .work-list li .work-list__item .work-list__box .work-list__title {
	font-size: 4.26667vw;
	padding-left: 10.66667vw;
}

.sec06 .inner .work-list li .work-list__item .work-list__box table tr th {
	font-size: 3.2vw;
	padding: 1.33333vw;
	width: 29.33333vw;
}

.sec06 .inner .work-list li .work-list__item .work-list__box table tr td {
	font-size: 3.2vw;
	padding: 1.33333vw;
}

.sec06 .inner .work-bottom {
	width: 80%;
}

.sec07 .inner {
	padding: 0 4% 13.33333vw;
}

.sec07 > h2 > img {
	width: 100%;
}

.sec07 .inner .service-lead {
	width: 90%;
}

.sec07 .inner .service-table {
	-webkit-overflow-scrolling: touch;
	display: block;
	overflow-x: scroll;
	white-space: nowrap;
}

.sec07 .inner .service-table tr th {
	font-size: 3.73333vw;
	padding: 2.66667vw 1.33333vw;
}

.sec07 .inner .service-table tr td {
	font-size: 3.73333vw;
	padding: 2.66667vw 1.33333vw;
}

.sec07 .inner .service-table tr td span {
	font-size: 1.6vw;
}

.sec07 .inner .service-table tr .th-wp img {
	width: 80%;
}

.sec07 .inner .service-table tr .td-wp {
	font-size: 3.73333vw;
}

.sec07 .inner .service-table tr .td-wp img {
	width: 4vw;
}

.sec07 .inner .service-table tr .td-wp .zero {
	font-size: 6.13333vw;
}

.sec07 .inner .service-table tr .td-wp span {
	font-size: 1.6vw;
}

.sec07 .inner .service-table__note {
	font-size: 14px;
}

.sec07 .inner .service-description .service-description__box {
	left: 2.66667vw;
	top: 2.66667vw;
	width: 86.66667vw;
}

.sec07 .inner .service-description .service-description__box img {
	display: block;
	margin: auto;
	width: 80%;
}

.sec07 .inner .service-description .service-description__box p {
	font-size: 3.73333vw;
	margin-top: 2.66667vw;
}

.sec07 .inner .service-description .service-description__box .service-description__note {
	font-size: 1.86667vw;
	text-align: left;
}

.sec07 .inner .service-description .service-description__box .service-description__box--text {
	margin-right: 25%;
}

.sec08 .inner {
	padding: 9.33333vw 4% 13.33333vw;
}

.sec08 .inner p {
	font-size: 3.2vw;
	text-align: left;
}

.sec09 .inner {
	padding: 13.33333vw 4%;
}

.sec09 .inner ul li {
	padding: 5.33333vw;
}

.sec09 .inner ul li .voice-head {
	left: 2.66667vw;
	width: 88vw;
}

.sec09 .inner ul li .voice-box {
	flex-flow: wrap-reverse;
	margin-top: 20vw;
}

.sec09 .inner ul li .voice-box img {
	width: 100%;
}

.sec09 .inner ul li .voice-box .voice-box__text {
	font-size: 3.73333vw;
	width: 100%;
}

.sec09 .inner ul li .voice-box .voice-box__pic {
	margin-bottom: 2.66667vw;
	width: 100%;
}

.sec09 .inner ul li .voice-box .voice-box__pic p {
	font-size: 3.2vw;
}

.sec09 .inner ul li .voice-box .voice-box__pic p span {
	font-size: 4.26667vw;
}

.sec09 .inner ul li .voice-box03 {
	margin-top: 26.66667vw;
}

.sec09 .inner ul li .voice-bottom__text {
	font-size: 3.73333vw;
}

.sec10 .inner {
	padding: 13.33333vw 4%;
}

.sec10 .inner ul li {
	display: block;
	padding: 6.66667vw 4vw;
}

.sec10 .inner ul li > img {
	display: block;
	margin: auto;
	margin-bottom: 2.66667vw;
}

.sec10 .inner ul li .flow-arrow {
	bottom: -13.33333vw;
	width: 33.33333vw;
}

.sec10 .inner ul li .flow-box {
	margin-left: 0;
}

.sec10 .inner ul li .flow-box img {
	height: 6.66667vw;
}

.sec10 .inner ul li .flow-box p {
	font-size: 3.73333vw;
	margin-top: 2.66667vw;
}

.sec11 .inner {
	padding: 13.33333vw 4%;
}

.sec11 .inner h2 img {
	width: 60%;
}

.sec11 .inner table tr th {
	font-size: 3.73333vw;
	width: 33.33333vw;
}

.sec11 .inner table tr td {
	font-size: 3.73333vw;
}

.sec12 .inner {
	padding: 13.33333vw 4%;
}

.sec12 .inner h2 img {
	width: 50%;
}

.sec12 .inner .tab-area .tab {
	font-size: 4.26667vw;
	padding: 2vw;
	text-align: center;
	height: 15vw;
}

.sec12 .inner .faq .faq-content.show ul {
	padding: 5.33333vw 2.66667vw;
}

.sec12 .inner .faq .faq-content.show ul li {
	padding: 2.66667vw 0;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q {
	align-items: flex-start;
	margin-bottom: 4vw;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q p {
	font-size: 4.26667vw;
	margin-left: 2.66667vw;
}

.sec12 .inner .faq .faq-content.show ul li .faq-q img {
	width: 10%;
}

.sec12 .inner .faq .faq-content.show ul li .faq-a p {
	font-size: 3.73333vw;
	margin-left: 2.66667vw;
}

.sec12 .inner .faq .faq-content.show ul li .faq-a img {
	width: 10%;
}

.sec13 .inner {
	padding: 13.33333vw 4%;
}

.sec13 .inner .contact-container .contact-box {
	padding: 2.66667vw;
}

.sec13 .inner .contact-container .contact-box .contact-headbox {
	display: block;
}

.sec13 .inner .contact-container .contact-box .contact-headbox img {
	width: 100%;
}

.sec13 .inner .contact-container .contact-box table {
	margin-top: 5.33333vw;
}

.sec13 .inner .contact-container .contact-box table tbody tr {
	display: block;
	width: 100%;
}

.sec13 .inner .contact-container .contact-box table tbody tr label {
	justify-content: flex-start;
}

.sec13 .inner .contact-container .contact-box table tbody tr th {
	display: block;
	font-size: 4.26667vw;
	padding: 2.66667vw;
	padding-bottom: 0;
	width: 100%;
}

.sec13 .inner .contact-container .contact-box table tbody tr th .required {
	font-size: 1.86667vw;
}

.sec13 .inner .contact-container .contact-box table tbody tr td {
	display: block;
	padding: 2.66667vw;
	width: 100%;
}

.sec13 .inner .contact-container .contact-box table tbody tr td input {
	font-size: 3.73333vw;
	height: 12vw;
}

.sec13 .inner .contact-container .contact-box table tbody tr td textarea {
	font-size: 3.73333vw;
	height: 46.66667vw;
}

.sec13 .inner .contact-container .contact-box .contact-note {
	font-size: 1.86667vw;
}

.sec13 .inner .contact-container .contact-box .contact-note__check {
	font-size: 3.73333vw;
	margin-bottom: 4vw;
}

.sec13 .inner .contact-container .contact-box .contact-button {
	width: 90%;
}

.sec13 .inner .contact-container .contact-box .contact-submit {
	height: 13vw;
}

}

@media (max-width: 767px) {

.inner {
	padding-left: 16px;
	padding-right: 16px;
}

.header-nav {
	display: none;
}

.header-drawer {
	display: block;
}

.hidden-sp {
	display: none !important;
}

}

