/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------

	0.  CSS Reset
	1.  Document Setup
	2.  Element Base
	3.  Helper Classes
	4.  Site Header
	5.  Content
	6. Site Footer
	7. Media Queries

----------------------------------------------------------------------------- */


/* -------------------------------------------------------------------------- */

/*	0. CSS Reset
/* -------------------------------------------------------------------------- */


* {
	box-sizing: border-box;
}

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-size: 100%;
	vertical-align: baseline;
}

body {
	line-height: 0;
	overflow: hidden;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

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

caption,
thead,
tbody,
tfoot,
th,
td {
	font-weight: normal;
	text-align: left;
	vertical-align: top;
}

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

a:focus {
	outline: thin dotted;
}

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

audio,
canvas,
video {
	display: inline-block;
}

audio:not([controls]) {
	display: none;
}

del {
	color: #333;
}

ins {
	background: #fff9c0;
	text-decoration: none;
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 10px 0;
	margin: 1rem 0;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

small {
	font-size: smaller;
}

img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

div,
span {
	word-break: break-all;
}


/* -------------------------------------------------------------------------- */

/*	1. Document Setup
/* -------------------------------------------------------------------------- */


html {
	font-size: 62.5%; /* 1rem = 10px */
	scroll-behavior: smooth;
}

body {
	background: #fff;
	box-sizing: border-box;
	color: #333;
	font-family: Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
	padding-top: 8.0rem;
	text-align: left;
}

/* Clearing ---------------------------------- */

.clear,
.clearfix::after {
	clear: both;
	content: "";
	display: block;
}


/* -------------------------------------------------------------------------- */

/*	2. Element Base
/* ---------------------------------------------*---------------------------- */


p {
	margin: 0 0 3.0rem;
}

a {
	color: #951a3a;
	text-decoration: underline;
}

a:hover,
a:focus {
	color: #951a3a;
	text-decoration: none;
}

hr {
	border-style: solid;
	border-width: 0.1rem 0 0 0;
	border-color: #8b999f;
	margin: 4.0rem 0;
}

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

iframe {
	max-width: 100%;
}

/* Alignment ------------------------------------- */

.left {
	text-align: left !important;
}

.center {
	text-align: center !important;
}

.right {
	text-align: right !important;
}

/* Inputs ------------------------------------ */

label {
	display: block;
	font-size: 1.6rem;
}

label.inline,
input[type="checkbox"] + label {
	display: inline;
	margin-left: 0.5rem;
}

input,
select,
textarea,
button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file__button {
	font-family: Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif;
	font-size: 1.6rem;
	line-height: 1.6;
}

code,
input[type="url"],
input[type="email"],
input[type="tel"] {
	direction: ltr;
}

input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="week"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #fff;
	border-radius: 0;
	border: solid 1px #dadada;
	box-shadow: none;
	color: #000;
	display: block;
	margin: 0;
	max-width: 100%;
	padding: 1.0rem 1.5rem;
	width: 100%;
}

textarea.normal {
	height: 25.0rem;
}

input::-webkit-input-placeholder {
	line-height: normal;
}

input:-ms-input-placeholder {
	line-height: normal;
}

input::-moz-placeholder {
	line-height: revert; /* Reset to the value from the user-agent stylesheet. */
}

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

button,
.button,
.faux-button,
.wp-block-button__link,
.wp-block-file .wp-block-file__button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	background: #68bdcb;
	border: none;
	border-radius: 0;
	color: #fff;
	cursor: pointer;
	display: inline-block;
	font-size: 1.6rem;
	margin: 0;
	opacity: 1;
	padding: 1.5em 1.8em;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
}

button:focus,
button:hover,
.button:focus,
.button:hover,
.faux-button:focus,
.faux-button:hover,
.wp-block-button .wp-block-button__link:focus,
.wp-block-button .wp-block-button__link:hover,
.wp-block-file .wp-block-file__button:focus,
.wp-block-file .wp-block-file__button:hover {
	opacity: 0.7;
	text-decoration: underline;
}

input[type="search"]:focus {
	outline: thin dotted;
	outline-offset: -4px;
}

/* Tables ------------------------------------ */

table {
	border: solid 0.1rem #dadada;
	empty-cells: show;
	font-size: 1.6rem;
	margin: 4.0rem 0;
	max-width: 100%;
	width: 100%;
}

table th,
table td {
	border: solid 0.1rem #dadada;
	padding: 0.5em;
}

table th {
	background: #e5e5e5;
	font-weight: bold;
}


/* -------------------------------------------------------------------------- */

/*	3. Helper Classes
/* -------------------------------------------------------------------------- */


/* Text Decorations ------------------------------------ */

.red {
	color: #f00;
}

.dark-red {
	color: #d00000;
}

.blue {
	color: #0078ad;
}

.white {
	color: #fff;
}

.mini {
	font-size: 70% !important;
}

.notice {
	color: #f00 !important;
}

.serif {
	font-family: serif !important;
}

.ml0 {
	margin-left: 0 !important;
}

.ml30 {
	margin-left: 3.0rem !important;
}

.mb0 {
	margin-bottom: 0 !important;
}

.mb60 {
	margin-bottom: 6.0rem !important;
}

.mb100 {
	margin-bottom: 10.0rem !important;
}

.pb50 {
	padding-bottom: 5.0rem !important;
}

.mt60 {
	margin-top: 6.0rem !important;
}


/* Buttons ------------------------------------ */

a.contact-button,
a.submit-button,
input[type="submit"].contact-button,
input[type="submit"].submit-button,
input[type="button"].contact-button,
input[type="button"].submit-button {
	background: #0078ad;
	color: #fff;
	cursor: pointer;
	font-size: 2.0rem;
	padding: 2.5rem 10.0rem;
	text-decoration: none;
}

a.submit-button.erase-button,
input[type="submit"].submit-button.erase-button,
input[type="button"].submit-button.erase-button {
	padding: 0.5rem 2.0rem;
}

a.contact-button:hover,
a.contact-button:focus,
a.submit-button:hover,
a.submit-button:focus,
input[type="submit"].contact-button:hover,
input[type="button"].contact-button:hover,
input[type="submit"].submit-button:hover,
input[type="button"].submit-button:hover,
input[type="submit"].contact-button:focus,
input[type="button"].contact-button:focus,
input[type="submit"].submit-button:focus,
input[type="button"].submit-button:focus {
	color: #fff;
	opacity: 0.7;
	text-decoration: none;
}


/* -------------------------------------------------------------------------- */

/*	4.	Site Header
/* -------------------------------------------------------------------------- */


.header {
	background: rgba(255, 255, 255, 0.9);
	height: 8.0rem;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 9999;
}

.header-inner {
	margin: 0 auto;
	width: 128.0rem;
}

.header-inner h1 {
	height: 100%;
	float: left;
	padding-top: 0.5rem;
}

.header-inner h1 img {
	height: 7.0rem;
	width: auto;
}

.humberger {
	display: none;
}

/* Global Navigation ----------------------------- */

.global-navigation {
	float: right;
	height: 100%;
}

.global-navigation ul {
	height: 100%;
}

.global-navigation ul > li {
	display: inline-block;
	height: 100%;
	line-height: 8.0rem;
	margin-left: 1.5rem;
}

.global-navigation ul > li:first-child {
	margin-left: 0;
}

.global-navigation ul > li > a {
	color: #333;
	font-size: 1.4rem;
	text-decoration: none;
}

.global-navigation ul > li > a:hover,
.global-navigation ul > li > a:focus {
	color: #0078ad;
	text-decoration: none;
}


/* -------------------------------------------------------------------------- */

/*	5. Content
/* -------------------------------------------------------------------------- */


/* Base ----------------------------- */

.main {
	background: #fff;
}

.page-title {
	background-color: #eaeaea;
	padding: 10.0rem 0;
}

.page-title h1 {
	color: #333;
	font-size: 3.6rem;
	font-weight: bold;
	text-align: center;
}

.normal-section {
	padding: 5.0rem 0;
}

.bg-white {
	background-color: #fff !important;
}

.bg-blue {
	background: #0078ad !important;
}

.bg-skyblue {
	background-color: #90e0fa !important;
	background-image: url("../images/bg_skyblue.png");
}

.bg-gray {
	background: #e5e5e5 !important;
}

.bg-yellow {
	background: #ffffe0 !important;
}

.section-inner {
	margin: 0 auto;
	width: 128.0rem;
}

.section-inner.narrow {
	width: 98.0rem;
}


/* Title ----------------------------- */

.normal-section h1,
.normal-section h2 {
	font-size: 3.6rem;
	margin: 0 0 5.0rem;
}


/* Common ----------------------------- */

.entry-content {
	margin: 0 auto;
	width: 128.0rem;
}

.heading-content {
	background: #ffffea;
	border: solid 1px #e0d5a0;
	margin: 0 0 3.0rem;
	padding: 1.5rem 3.0rem;
}

.heading-content strong {
	color: #fa3221;
}

p.image-box img {
	max-width: 45.0rem;
}

ul.image-box {
	margin: 0 0 3.0rem;
}

ul.image-box li {
	float: left;
	text-align: center;
	width: 50%;
}

ul.image-box li img {
	width: 80%;
}

ul.normal-list {
	list-style: disc;
	margin: 0 0 3.0rem 2.0rem;
}

ul.normal-list li {
	margin-bottom: 1.5rem;
}

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


/* Home Page ----------------------------- */

.mainvisual {
	background-color: #90e0fa;
	background-image: url("../images/mainvisual.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% auto;
	padding-bottom: 5.0rem;
}

.mainvisual-inner {
	margin: 0 auto;
	width: 128.0rem;
}

.mainvisual-inner .mainvisual-sphone {
	display: none;
}

.mainvisual-inner .sub-title {
	color: #fff;
	font-size: 2.0rem;
	font-weight: bold;
	letter-spacing: 0.1rem;
	margin-bottom: 2.0rem;
	padding-top: 8.0rem;
}

.mainvisual-inner h1 {
	color: #fff;
	font-size: 3.6rem;
	line-height: 1.4;
	margin: 0 0 4.0rem;
}

.mainvisual-inner p {
	color: #fff;
	font-size: 2.0rem;
	margin-bottom: 3.0rem;
}

.problem-box {
	margin: 33.0rem auto 0;
	padding: 3.0rem;
	width: 76.8rem;
}

.problem-box h2 {
	font-size: 2.4rem;
	margin-bottom: 3.0rem;
}

.problem-box ul li {
	border-top: solid 0.1rem #dadada;
	padding: 0.5rem 3.0rem;
}

.problem-box ul li:last-child {
	border-bottom: solid 0.1rem #dadada;
}

.normal-section.feature,
.normal-section.induction1 {
	background-image: url("../images/arrow1.png");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: 100% 10.0rem;
	padding: 13.0rem 0 5.0rem;
}

.normal-section.induction1 {
	background-image: url("../images/arrow2.png");
}

.use-flow li {
	background: url("../images/arrow-flow.png") no-repeat center bottom;
	margin-bottom: 3.0rem;
	padding-bottom: 6.0rem;
}

.use-flow li:last-child {
	background-image: none;
	margin-bottom: 0;
	padding-bottom: 0;
}

.use-flow li .use-flow-box {
	background: #fff;
	padding: 3.0rem;
}

.use-flow li .use-flow-box .image {
	float: right;
	width: 30.0rem;
}

.use-flow li .use-flow-box h2,
.use-flow li .use-flow-box p:not(.image) {
	margin-right: 33.0rem;
}

.use-flow li .use-flow-box h2 {
	border-bottom: solid 0.3rem #dadada;
	font-size: 2.8rem;
	margin-bottom: 3.0rem;
	padding: 0 0.5rem 0.2rem;
}

.service-list {
	display: flex;
	flex-wrap: wrap;
	gap: 4.0rem;
	justify-content: center;
}

.service-list > li {
	flex-basis: 30.0rem;
	padding: 1.5rem;
}

.service-list > li h3 {
	border-left: solid 0.5rem #0078ad;
	font-size: 1.8rem;
	margin-bottom: 3.0rem;
	padding-left: 1.5rem;
}

.case-list {
	margin: 0 auto;
	width: 76.8rem;
}

.case-list > li {
	background: #fff;
	margin-bottom: 3.0rem;
	padding: 3.0rem;
}

.case-list > li h3 {
	border-bottom: solid 0.2rem #dadada;
	font-size: 2.4rem;
	margin-bottom: 3.0rem;
	padding: 0 0.5rem 0.1rem;
}

.case-list > li .cover .picture {
	float: left;
	width: 30.0rem;
}

.case-list > li .cover h4,
.case-list > li .cover ul {
	margin-left: 34.0rem;
}

.case-list > li .cover h4 {
	background: #e5e5e5;
	margin-bottom: 3.0rem;
	padding: 0.2rem 1.5rem;
}

.case-list > li dl dt {
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.case-list > li dl dd {
	margin-bottom: 3.0rem;
}

.consultant {
	margin-bottom: 3.0rem;
}

.consultant .picture {
	float: left;
	width: 30.0rem;
}

.consultant h3,
.consultant h4,
.consultant ul {
	margin-left: 34.0rem;
}

.consultant h3 {
	font-size: 2.8rem;
	margin-bottom: 3.0rem;
}

.profile-title {
	background: #e5e5e5;
	font-size: 2.0rem;
	margin-bottom: 3.0rem;
	padding: 0.2rem 1.5rem;
}

.profile dl dt {
	font-weight: bold;
	margin-bottom: 1.5rem;
}

.profile dl dd {
	margin-bottom: 3.0rem;
}

.normal-section.contact {
	padding: 8.0rem 0;
}

.contact-guide {
	background: #fff;
	padding: 5.0rem 0;
}

.contact-guide .contact-form {
	margin: 0 auto;
	width: 55.0rem;
}

.contact-guide dt {
	font-weight: normal;
	margin-bottom: 0.5rem;
}

.contact-guide dt span {
	background: #808080;
	color: #fff;
	font-size: 1.4rem;
	margin-left: 1.0rem;
	padding: 0.1rem 0.5rem;
}

.contact-guide dd {
	margin-bottom: 3.0rem;
}

.company-info-box {
	margin: 0 auto;
	width: 76.8rem;
}

.company-info-box .logo {
	float: left;
	width: 20.0rem;
}

.company-info {
	margin-left: 25.0rem;
}

.company-info li {
	margin: 0 0 3.0rem;
}

.company-info li h3 {
	font-size: 1.6rem;
	float: left;
	width: 10.0rem;
}

.company-info li p {
	margin-left: 12.0rem;
}


/* -------------------------------------------------------------------------- */

/*	6. Site Footer
/* -------------------------------------------------------------------------- */


.footer {
	background: #0078ad;
	padding: 3.0rem 0;
}

.copyright {
	color: #fff;
	font-size: 1.4rem;
}

.pop-up {
	background: rgba(0, 0, 0, 0.5);
	display: none;
	height: 100%;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 99999;
}

.pop-up-window {
	background: #fff;
	left: 50%;
	padding: 3.0rem;
	position: absolute;
	top: 50%;
	transform: translate(-50%, -50%);
}


/* -------------------------------------------------------------------------- */

/*	7. Media Queries
/* -------------------------------------------------------------------------- */

@media ( max-width: 1280px ) {

	/* Site Header ----------------------------- */

	.header-inner {
		margin: 0 1.0rem;
		width: auto;
	}

	.global-navigation ul > li {
		margin-left: 1.0rem;
	}

	.global-navigation ul > li > a {
		font-size: 1.2rem;
	}


	/* Title ----------------------------- */

	.normal-section h1,
	.normal-section h2 {
		font-size: 3.2rem;
	}


	/* Common ----------------------------- */

	.entry-content {
		margin: 0 1.0rem;
		width: auto;
	}

	.section-inner {
		margin: 0 1.0rem;
		width: auto;
	}

	.section-inner.narrow {
		margin: 0 auto;
	}


	/* Home Page ----------------------------- */

	.mainvisual-inner {
		margin: 0;
		width: auto;
	}

	.mainvisual-inner .sub-title {
		font-size: 1.8rem;
	}

	.mainvisual-inner h1 {
		font-size: 2.8rem;
	}

	.mainvisual-inner p {
		font-size: 1.6rem;
	}

	.problem-box {
		margin: 23.0rem auto 0;
	}
}

@media ( max-width: 980px ) {

	/* Document Setup ----------------------------- */

	body {
		padding-top: 6.0rem;
	}


	/* Buttons ----------------------------- */

	a.contact-button,
	a.submit-button,
	input[type="submit"].contact-button,
	input[type="submit"].submit-button,
	input[type="button"].contact-button,
	input[type="button"].submit-button {
		display: block;
		font-size: 1.8rem;
		padding: 2.5rem 1.0rem;
		text-align: center;
		width: 100%;
	}


	/* Site Header ----------------------------- */

	.header {
		height: 6.0rem;
	}

	.header-inner h1 img {
		height: 5.0rem;
	}

	.humberger {
		display: block;
		float: right;
		font-size: 3.6rem;
		height: 100%;
		line-height: 6.0rem;
	}

	/* Global Navigation ----------------------------- */

	.global-navigation {
		background: rgba(255, 255, 255, 0.9);
		display: none;
		float: none;
		height: auto;
		left: 0;
		position: fixed;
		top: 6.0rem;
		width: 100%;
		z-index: 9999;
	}

	.global-navigation ul {
		height: auto;
	}

	.global-navigation ul > li {
		border-top: solid 0.1rem #dadada;
		display: block;
		height: auto;
		line-height: 1.6;
		margin-left: 0;
	}

	.global-navigation ul > li:last-child {
		border-bottom: solid 0.1rem #dadada;
	}

	.global-navigation ul > li > a {
		display: block;
		font-size: 1.8rem;
		padding: 0.8rem 1.5rem;
	}

	.global-navigation ul > li > a:hover,
	.global-navigation ul > li > a:focus {
		background: #0078ad;
		color: #fff;
	}


	/* Base ----------------------------- */

	.page-title {
		padding: 5.0rem 0;
	}

	.page-title h1 {
		font-size: 2.8rem;
	}

	.normal-section {
		padding: 4.0rem 0;
	}


	/* Title ----------------------------- */

	.normal-section h1,
	.normal-section h2 {
		font-size: 2.8rem;
		margin: 0 0 4.0rem;
	}


	/* Common ----------------------------- */

	.section-inner.narrow {
		margin: 0 1.0rem;
		width: auto;
	}


	/* Home Page ----------------------------- */

	.mainvisual-inner {
		background-image: none;
		padding-bottom: 1.0rem;
	}

	.mainvisual-inner .mainvisual-sphone {
		background: #0078ad;
		display: block;
		padding-top: 1.0rem;
	}

	.mainvisual-inner .mainvisual-sphone img {
		width: 80%;
	}

	.mainvisual-inner .sphone-bg-blue {
		background: #0078ad;
		padding: 3.0rem 0;
	}

	.mainvisual-inner .sub-title {
		font-size: 1.6rem;
		padding-top: 0;
	}

	.mainvisual-inner h1 {
		font-size: 2.4rem;
		text-align: center;
	}

	.mainvisual-inner p {
		font-size: 1.4rem;
		margin: 0 0 3.0rem;
		text-align: center;
	}

	.problem-box {
		margin: 3.0rem auto 0;
	}

	.problem-box h2 {
		font-size: 2.0rem;
	}

	.problem-box ul li {
		font-size: 1.6rem;
		padding: 0.5rem 1.5rem;
	}

	.use-flow li .use-flow-box {
		padding: 1.5rem;
	}

	.use-flow li .use-flow-box .image {
		width: 25.0rem;
	}

	.use-flow li .use-flow-box h2,
	.use-flow li .use-flow-box p:not(.image) {
		margin-right: 28.0rem;
	}

	.use-flow li .use-flow-box h2 {
		font-size: 2.4rem;
	}

	.case-list li h3 {
		font-size: 2.0rem;
	}

	.service-list {
		gap: 4.0rem 4%;
	}

	.service-list > li {
		flex-basis: 48%;
	}

	.case-list > li .cover .picture {
		width: 25.0rem;
	}

	.case-list > li .cover h4,
	.case-list > li .cover ul {
		margin-left: 28.0rem;
	}

	.consultant .picture {
		width: 25.0rem;
	}

	.consultant h3,
	.consultant h4,
	.consultant ul {
		margin-left: 28.0rem;
	}

	.consultant h3 {
		font-size: 2.4rem;
	}

	.profile-title {
		font-size: 1.8rem;
	}

	.normal-section.contact {
		padding: 6.0rem 0;
	}

	.contact-guide {
		padding: 4.0rem 0;
	}


	/* Site Footer ----------------------------- */

	.pop-up-window {
		padding: 2.0rem;
		width: 70%;
	}

	.pop-up-window input[type="button"].submit-button.erase-button {
		display: inline-block;
		padding: 0.5rem 1.0rem;
		width: 80%;
	}
}

@media ( max-width: 768px ) {

	/* Title ----------------------------- */

	#page-title h1 {
		font-size: 2.0rem;
		margin: 0 1.0rem;
		padding: 1.5rem 0;
		text-align: center;
		width: auto;
	}


	/* Common ----------------------------- */

	.heading-content {
		margin: 0 0 3.0rem;
		padding: 1.5rem;
	}

	p.image-box img {
		max-width: 80%;
	}

	ul.image-box li {
		float: none;
		margin: 0 0 1.5rem;
		width: auto;
	}


	/* Home Page ----------------------------- */

	.problem-box {
		margin: 1.0rem 1.0rem 0;
		padding: 1.5rem;
		width: auto;
	}

	.case-list {
		margin: 0;
		width: auto;
	}

	.case-list > li {
		padding: 1.5rem;
	}

	.company-info-box {
		margin: 0;
		width: auto;
	}

	.company-info-box .logo {
		float: none;
		margin: 0 auto 4.0rem;
	}

	.company-info {
		margin-left: 0;
	}
}

@media screen and (max-width: 550px) {

	/* Title ----------------------------- */

	.normal-section h1,
	.normal-section h2 {
		font-size: 2.4rem;
	}


	/* Home Page ----------------------------- */

	.mainvisual-inner h1 {
		font-size: 2.0rem;
	}

	.use-flow li .use-flow-box .image {
		float: none;
		margin: 0 auto 3.0rem;
		width: 30.0rem;
	}

	.use-flow li .use-flow-box h2,
	.use-flow li .use-flow-box p:not(.image) {
		margin-right: 0;
	}

	.use-flow li .use-flow-box h2 {
		font-size: 2.0rem;
	}

	.service-list {
		gap: 4.0rem 0;
	}

	.service-list > li {
		flex-basis: 100%;
	}

	.case-list > li h3 {
		font-size: 1.8rem;
	}

	.case-list > li .cover {
		margin-bottom: 3.0rem;
	}

	.case-list > li .cover .picture {
		float: none;
		margin: 0 auto 3.0rem;
		width: 30.0rem;
	}

	.case-list > li .cover h4,
	.case-list > li .cover ul {
		margin-left: 0;
	}

	.consultant .picture {
		float: none;
		margin: 0 auto 3.0rem;
		width: 30.0rem;
	}

	.consultant h3,
	.consultant h4,
	.consultant ul {
		margin-left: 0;
	}

	.consultant h3 {
		font-size: 2.0rem;
	}

	.normal-section.contact {
		padding-top: 4.0rem;
	}

	.contact-guide {
		padding: 2.0rem 0;
	}

	.contact-guide .contact-form {
		margin: 0 1.0rem;
		width: auto;
	}

	.company-info li {
		margin: 0 1.0rem 3.0rem;
		width: auto;
	}


	/* Site Footer ----------------------------- */

	.pop-up-window {
		width: 80%;
	}
}


