@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 400;
	line-height: 1.8;
}

.u-desktop {
	display: block;
}

.u-mobile {
	display: none;
}

@media screen and (max-width: 767px) {
	.u-desktop {
		display: none;
	}

	.u-mobile {
		display: block;
	}
}

html {
	font-size: 1.4545454545vw;
	scroll-padding-top: 132px;
}

@media (min-width: 1100px) {
	html {
		font-size: 16px;
	}
}

@media screen and (max-width: 767px) {
	html {
		font-size: 16px;
		scroll-padding-top: 50px;
	}
}

@media (max-width: 375px) {
	html {
		font-size: 4.2666666667vw;
	}
}

/* ページ内リンクの飛び先に対して適用される共通スタイル */
[id] {
	scroll-margin-top: 0; /* JSで動的に上書きされるので初期化 */
}

@media (max-width: 767px) {
	[id] {
		scroll-margin-top: 40px; /* JSで動的に上書きされるので初期化 */
	}
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
	a[href^='tel:'] {
		pointer-events: none;
	}
}

/* ホバー */
a {
	text-decoration: none;
	color: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
}
a:hover {
	opacity: 0.6;
}

*,
*::before,
*::after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
	padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
	margin: 0;
}

/* Set core root defaults */
html {
	scroll-behavior: smooth;
}

/* Set core body defaults */
body {
	min-height: 100vh;
	text-rendering: optimizeSpeed;
	line-height: 1.5;
	overflow-x: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
	list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
	text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
	max-width: 100%;
	display: block;
	width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
	margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
	font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
	filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
	-webkit-filter: blur(10px);
	filter: blur(10px);
}

body > div.mv {
	background: transparent;
}

/* -------------------------

ヘッダー

------------------------- */

.hamburger {
	position: relative;
	width: 22px;
	width: 1.375rem;
	height: 30px;
	height: 1.875rem;
	z-index: 100;
	cursor: pointer;
	margin-right: 1rem;
	display: none;
}

@media screen and (max-width: 767px) {
	.hamburger {
		display: block;
	}
}

.hamburger span {
	position: absolute;
	width: inherit;
	height: 2px;
	height: 0.125rem;
	background-color: #000;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	border-radius: 5px;
}

.hamburger span:nth-child(1) {
	top: 19%;
	left: -6%;
}

.hamburger span:nth-child(2) {
	top: 48%;
	left: -6%;
}

.hamburger span:nth-child(3) {
	top: 74%;
	left: -6%;
}

.hamburger.is-active span:nth-child(1) {
	top: 48%;
	left: 0%;
	-webkit-transform: rotate(45deg);
	transform: rotate(45deg);
	width: 23px;
	width: 1.4375rem;
}

.hamburger.is-active span:nth-child(2) {
	top: 51%;
	opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
	top: 48%;
	left: 0%;
	-webkit-transform: rotate(-225deg);
	transform: rotate(-225deg);
	width: 23px;
	width: 1.4375rem;
}

.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: #fff;
	z-index: 999;
}

.header__top {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1520px;
	width: 94.6%;
	margin: 0 auto;
	z-index: 50;
	background-color: #fff;
	position: relative;
	height: fit-content;
	padding: 20px 0;
	box-shadow: none;
}

@media screen and (max-width: 767px) {
	.header__top {
		width: 100%;
		box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
		padding: 0;
		position: static;
	}
}

.header__top__inner {
	display: flex;
	justify-content: space-between;
	width: 100%;
	gap: 2%;
	align-items: center;
}

@media screen and (max-width: 767px) {
	.header__top__inner {
		flex-direction: column;
		align-items: flex-start;
	}
}

.header__logo a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: inherit;
	width: fit-content;
}

.header__logo-name.orange p {
	color: #e8734d;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Noto Sans JP';
	margin-top: 5px;
}

@media screen and (max-width: 767px) {
	.header__logo {
		padding: 10px 1rem 0;
		width: 100%;
	}

	.header__logo-name.orange p {
		font-size: 0.24em;
		margin-top: 0;
		text-align: center;
	}
}

.header__logo-mark__wrapper {
	width: 100%;
	display: flex;
	gap: 10px;
	align-items: center;
}

.header__logo-mark {
	max-width: 2.1875rem;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.header__logo-mark__wrapper {
		gap: 5px;
	}

	.header__logo-mark {
		max-width: 20px;
		max-width: 1.25rem;
	}
}

.header__top-right {
	display: flex;
	align-items: center;
	gap: 0.8vw;
	width: fit-content;
}

.header__top-right p {
	color: #000;
	font-size: 0.75rem;
	font-weight: 400;
}

.header__logo-name p span {
	display: inline;
}

.header__logo-name img {
	height: 42px;
	width: auto;
}

@media screen and (max-width: 767px) {
	.header__top-right {
		width: 100%;
		padding: 11px 1rem 10px;
	}

	.header__top-right p {
		font-size: 8px;
	}

	.header__logo-name p span.u-desktop {
		display: none;
	}

	.header__logo-name img {
		height: 31px;
	}
}

.header__bottom {
	position: relative;
	display: block;
	background-color: #f9f9f9;
	height: 70px;
	z-index: 5;
	box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 767px) {
	.header__bottom {
		display: none;
	}
}

.header__bottom__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1520px;
	margin: 0 auto;
	width: 94.6%;
	gap: 5px;
	padding: 15px 0;
}

.header__bottom-list {
	display: flex;
	justify-content: flex-start;
	gap: 0.8vw;
}

.header__bottom-list li {
	font-size: clamp(7px, 1vw, 14px);
	font-weight: 500;
	height: inherit;
}

.header__bottom-list li a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	height: inherit;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	justify-content: center;
	align-items: center;
}

.header__bottom-right {
	display: flex;
	align-items: center;
	gap: 0.8vw;
}

.header__bottom-right a {
	display: flex;
	align-items: center;
	height: 40px;
}

.header__bottom-right a img {
	height: 14px;
	width: auto;
}

.header__bottom-right-btn {
	border-radius: 5px;
	padding: 15px clamp(5px, 1.6vw, 30px);
	display: flex;
	align-items: center;
	gap: 9px;
	color: #fff;
	font-size: clamp(7px, 1.2vw, 14px);
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	width: max-content;
	min-width: 100px;
	justify-content: center;
}

.header__bottom-right-btn.orange {
	background: #e8734d;
}

.header__bottom-right-btn.white {
    border-radius: 5px;
    border: 2px solid #E8734D;
    background: #FFF;
    color: #E8734D;
}

.sp-nav__item .header__bottom-right-btn.white {
	color: #E8734D;
}

.header__bottom-right-btn.white svg {
    height: 15px;
}

/* -------------------------

MV

------------------------- */

.mv {
	overflow: hidden;
}

.mv__inner {
	position: relative;
	padding-top: 60px;
	padding-bottom: 174px;
	text-align: center;
	padding-left: 0;
	padding-right: 0;
	background-color: #eff7ff;
}

@media screen and (max-width: 767px) {
	.mv__inner {
		padding-bottom: 63px;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-top: 30px;
	}
}

.mv__inner::before {
	content: '';
	position: absolute;
	top: 0;
	right: 0;
	left: auto;
	width: 48%;
    height: 100%;
	background-image: url('../images/mv-bg.png');
	background-size: cover;
	background-position:left;
	background-repeat: no-repeat;
	z-index: 0;
}

@media screen and (max-width: 767px) {
	.mv__inner::before {
		height: 100%;
		width: 42%;
		right: 0;
		left: auto;
		background-size: cover;
		background-position:left;
	}
}

.mv__inner__left__wrapper {
    width: 55%;
}

.mv__inner__left__wrapper p {
    word-break: auto-phrase;
}

.mv__inner__left {
	text-align: left;
    margin: 0 auto;
    max-width: 960px;
    max-width: 60rem;
	position: relative;
	z-index: 1;
}

@media screen and (max-width: 767px) {
	.mv__inner__left {
		margin: 0;
	}
}

.mv__inner__left p {
    width: fit-content;
}

@media screen and (max-width: 767px) {
	.mv__inner__left p svg {
		height: 13px;
		width: 8px;
	}
}

.mv__inner__left__top {
    color: #E8734D;
    font-family: "Noto Sans JP";
    font-size: 24px;
    font-weight: 700;
    line-height: 1.7;
    letter-spacing: 0.05em;
	margin-bottom: 14px;
	display: flex;
	align-items: center;
	gap: 7px;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__top {
		font-size: 12px;
		gap: 3px;
		margin-bottom: 12px;
	}
}

@media screen and (min-width: 768px) {
	.mv__inner__top {
		font-size: 20px;
	}
}

.mv__inner__left__middle1 {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__middle1 {
		font-size: 12px;
	}
}

.mv__inner__left__middle2 {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 46px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__middle2 {
		font-size: 20px;
	}
}

.mv__inner__left__middle2-small {
    font-size: 38px;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__middle2-small {
		font-size: 14px;
	}
}

.mv__inner__left__middle2-orange {
    color: #E8734D;
}

.mv__inner__left__middle3 {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 20px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__middle3 {
		font-size: 12px;
	}
}

.mv__inner__left__middle3 span {
    font-size: 28px;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__middle3 span {
		font-size: 16px;
	}
}

.mv__inner__left__bottom {
    border-radius: 5px;
    background: #0F5B8C;
    display: flex;
    padding: 6px 20px;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
	margin-top: 14px;
}

@media screen and (max-width: 767px) {
	.mv__inner__left__bottom {
		font-size: 12px;
		padding: 5px 10px;
		margin-top: 12px;
	}
}

.mv__inner__right {
	width: 48%;
}

.mv__inner__right img {
	height: 440px;
	width: auto;
	margin: 0 auto;
	object-fit: contain;
}

@media screen and (max-width: 767px) {
	.mv__inner__right {
		width: 100%;
	}

	.mv__inner__right img {
		height: 250px;
	}
}

/* -------------------------

MV 価格部分

------------------------- */

.mv__sub {
    position: relative;
    display: flex;
    justify-content: center;
}

.mv__sub__inner {
    max-width: 960px;
    max-width: 60rem;
    margin-top: -114px;
    text-align: center;
    border-radius: 5px;
    border: 2px solid #E8734D;
    background: #FFF;
    padding: 30px 3%;
    position: relative;
	width: 100%;
}

@media screen and (max-width: 767px) {
	.mv__sub__inner {
		width: calc(100% - 2em);
		margin-top: -32px;
		padding: 20px 3%;
	}
}

.mv__sub__top {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.mv__sub__top {
		font-size: 12px;
	}
}

.mv__sub__top-orange {
    font-size: 26px;
    color: #E8734D;
}

@media screen and (max-width: 767px) {
	.mv__sub__top-orange {
		font-size: 18px;
	}
}

.mv__sub__top-big {
    font-size: 26px;
}

@media screen and (max-width: 767px) {
	.mv__sub__top-big {
		font-size: 18px;
	}
}

.mv__sub__bottom__tags {
    display: flex;
    gap: 10px;
    margin: 10px 0;
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 17px;
    font-style: normal;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
	flex-direction: row;
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.mv__sub__bottom__tags {
		flex-direction: column;
		font-size: 11px;
		gap: 5px;
	}
}

.mv__sub__bottom__tags p {
    padding: 5px 10px;
    border-radius: 5px;
    background: #F8F8F8;
}

@media screen and (max-width: 767px) {
	.mv__sub__bottom__tags p {
		width: fit-content;
		margin: 0 auto;
	}
}

.mv__sub__bottom__desc {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: clamp(12px, 1.5vw, 14px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.mv__sub__bottom__desc {
		font-size: 11px;
	}
}

/* -------------------------

セクションタイトル

------------------------- */

.section-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
	letter-spacing: 0.05em;
	color: #232323;
	line-height: 1.4;
	position: relative;
	display: flex;
	justify-content: center;
	padding-bottom: 12px;
}

@media screen and (max-width: 767px) {
	.section-title {
		font-size: 24px;
	}
}

.section-title::after {
	background: #e8734d;
	width: 50px;
	height: 3px;
	content: '';
	position: absolute;
	bottom: 0;
}

.sp-nav {
	display: none;
	position: fixed;
	width: 100%;
	background-color: #f9f9f9;
	overflow: auto;
	z-index: -1;
	padding: 40px 10%;
}

.sp-nav.is-active {
	display: block;
	position: fixed;
	z-index: 999;
}

.sp-nav__items {
	max-width: 375px;
	max-width: 23.4375rem;
	width: 100%;
	margin: 0 auto;
	height: 100vh;
}

.sp-nav__item {
	width: 100%;
}

.sp-nav__item a {
	color: #000;
	display: block;
	padding: 6.5px 0;
	padding: 0.40625rem 0;
	font-size: 16px;
	font-size: 1rem;
}

.sp-nav__item span {
	display: inline-block;
	font-size: 20px;
	font-size: 1.25rem;
	margin-right: 8px;
	margin-right: 0.5rem;
}

.sp-nav__item .header__bottom-right-btn {
	width: 100%;
	color: #fff;
	padding: 10px;
    margin-top: 12px;
    display: flex;
    align-items: center;
}

/* -------------------------

足場サブスクの特徴

------------------------- */

.about__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.about__inner {
		padding: 40px 16px;
		padding: 40px 1rem;
	}
}

.about__desc {
	margin-top: 30px;
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.about__desc {
		text-align: left;
	}
}

.about__desc span {
	color:  #e8734d;
	font-size: 16px;
	font-weight: 700;
}

.about__list {
    margin: 40px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

@media screen and (max-width: 767px) {
	.about__list {
		gap: 10px;
	}
}

.about__list__item {
    border-radius: 5px;
    display: flex;
    padding: 30px;
    justify-content: space-between;
    align-items: center;
    width: 48.5%;
	background: #F8F8F8;
	flex-direction: row;
	gap: 0;
}

.about__list__item__text {
    width: 56%;
}

@media screen and (max-width: 767px) {
	.about__list__item {
		width: 100%;
		flex-direction: column;
		gap: 10px;
		padding: 20px;
	}

	.about__list__item__text {
		width: 100%;
	}
}

.about__list__item__ttl__number {
    color: #E8734D;
    font-family: Roboto;
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.about__list__item__ttl__number {
		text-align: center;
	}
}

.about__list__item__desc {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 700;
    line-height: 1.6;
    letter-spacing: 0.03em;
}

@media screen and (max-width: 767px) {
	.about__list__item__desc {
		text-align: center;
	}
}

.about__list__item__desc span {
    color: #E8734D;
}

.about__list__item__desc__small {
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 12px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.03em;
    margin-top: 5px;
}
@media screen and (max-width: 767px) {
	.about__list__item__desc__small {
		text-align: center;
	}
}

.about__list__item__img {
	width: auto;
	text-align: left;
}

.about__list__item__img img {
    height: 140px;
	max-width: 170px;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.about__list__item__img {
		width: 100%;
		text-align: center;
	}

	.about__list__item__img img {
		margin: 0 auto;
	}
}

.about__link {
    display: flex;
    justify-content: flex-end;
	margin-top: 10px;
}

.about__link a {
	display: flex;
	width: fit-content;
	align-items: baseline;
	white-space: nowrap;
	gap: 6px;
}

.about__link a img {
    height: 28px;
}

.about__flow {
	margin-top: 65px;
    padding: 50px 0;
    border-radius: 5px;
    border: 2px solid #E8734D;
	position: relative;
}

.about__flow__title {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 7px;
    border-radius: 33px;
    background: #E8734D;
    width: fit-content;
    color: #FFF;
    font-family: "Noto Sans JP";
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.05em;
    padding: 10px 20px;
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
	.about__flow__title {
		font-size: 16px;
		word-break: auto-phrase;
	}
}

.about__flow__inner {
    display: flex;
    justify-content: space-between;
	flex-direction: row;
	gap: 0;
	padding: 0;
}

.about__flow__item {
	padding: 0 30px;
	width: 25%;
	display: flex;
	flex-direction: column;
}

.about__flow__item:not(:last-child) {
	border-right: 1px solid #BBB;
	border-bottom: none;
	padding-bottom: 0;
}

@media screen and (max-width: 767px) {
	.about__flow__inner {
		flex-direction: column;
		gap: 30px;
		padding: 0 16.5%;
	}

	.about__flow__item {
		padding: 0;
		width: 100%;
	}

	.about__flow__item:not(:last-child) {
		border-right: none;
		border-bottom: 1px solid #BBB;
		padding-bottom: 20px;
	}
}

.about__flow__item__number {
	color: #E8734D;
	text-align: center;
	font-family: Roboto;
	font-size: 24px;
	font-weight: 700;
	letter-spacing: 0.05em;
}

.about__flow__item__img__wrapper {
	display: flex;
	flex-direction: column;
	flex: 1;
	justify-content: center;
}

img.about__flow__item__img {
	height: 60px;
	margin: 10px 0;
}

.about__flow__item__desc {
	color: #232323;
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: 14px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

/* -------------------------

足場サブスクの想い

------------------------- */

.thought {
	background-color: #fffaf9;
}

.thought__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.thought__inner {
		padding: 40px 16px;
		padding: 40px 1rem;
	}
}

.thought__contents {
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
	flex-direction: row;
	gap: 0;
}

.thought__contents__img {
    width: 40%;
}

.thought__contents__text {
    width: 57%;
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.thought__contents {
		flex-direction: column;
		gap: 30px;
		margin-top: 30px;
	}

	.thought__contents__img {
		width: 100%;
	}

	.thought__contents__text {
		width: 100%;
	}
}

.thought__contents__text span {
    color: #E8734D;
    font-weight: 700;
}

/* -------------------------

取り扱い資材一覧

------------------------- */

.material__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.material__inner {
		padding: 40px 16px;
		padding: 40px 1rem;
	}
}

.material__table {
	width: 100%;
	border-collapse: collapse;
	border: 1px solid #BBB;
	margin-top: 40px;
}

.material__table th,
.material__table td {
	border: 1px solid #BBB;
	padding: 10px 20px;
	text-align: center;
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.material__table th:nth-child(1),
.material__table td:nth-child(1) {
	width: 230px;
}

.material__table th:nth-child(2),
.material__table td:nth-child(2) {
	width: 290px;
}

.material__table th:nth-child(3),
.material__table td:nth-child(3) {
	width: 200px;
}

.material__table th:nth-child(4),
.material__table td:nth-child(4) {
	width: 200px;
}

@media screen and (max-width: 767px) {
	.material__table th,
	.material__table td {
		padding: 10px;
	}
}

.material__table thead th {
	background-color: #0F5B8C;
	color: #FFF;
	font-weight: 700;
	text-align: left;
	font-family: "Noto Sans JP";
	font-size: 16px;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.material__table thead th {
		font-size: 12px;
	}
}

.material__table tbody tr:nth-child(odd) {
	background-color: #FFF;
}

.material__table tbody tr:nth-child(even) {
	background-color: #F8F8F8;
}

.material__table tr td {
	text-align: left;
	color: #232323;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.material__table tr td {
		font-size: 12px;
	}
}

/* アコーディオン用のチェックボックス（非表示） */
.material__accordion-toggle {
	display: none;
}

.material__table-wrapper {
	position: relative;
	overflow: hidden;
}

/* 閉じている時のフェード効果 */
.material__table-wrapper::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 120px;
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 1) 100%);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s;
}

/* チェックされた時にフェードを消す */
.material__accordion-toggle:checked ~ .material__table-wrapper::after {
	opacity: 0;
}

/* 隠しコンテンツのデフォルト状態 */
.material__table-hidden-content {
	display: none;
}

.material__hidden-desc {
	display: none;
}

/* チェックされた時に表示 */
.material__accordion-toggle:checked ~ .material__table-wrapper .material__table-hidden-content {
	display: table-row-group;
}

.material__accordion-toggle:checked ~ .material__table-wrapper .material__hidden-desc {
	display: block;
}

/* ボタンのラッパー */
.material__toggle-btn__wrapper {
	display: flex;
	justify-content: center;
	margin-top: 30px;
	cursor: pointer;
}

/* ボタンのスタイル */
.material__toggle-btn {
	color: var(--text_color, #232323);
	text-align: center;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 160%;
	letter-spacing: 0.48px;
}

/* デフォルトで「もっと見る」を表示 */
.material__toggle-text-more {
	display: inline;
}

.material__toggle-text-close {
	display: none;
}

/* チェックされたら「閉じる」を表示 */
.material__accordion-toggle:checked ~ .material__toggle-btn__wrapper .material__toggle-text-more {
	display: none;
}

.material__accordion-toggle:checked ~ .material__toggle-btn__wrapper .material__toggle-text-close {
	display: inline;
}

.material__contents__desc {
	color: #232323;
	font-family: "Noto Sans JP";
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin: 30px 0 0 0;
}


/* -------------------------

リースやローンとの比較

------------------------- */

.comparison {
    background: #F8F8F8;
}

.comparison__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 60px 0;
}

@media screen and (max-width: 767px) {
	.comparison__inner {
		padding: 40px 16px;
		padding: 40px 1rem;
	}
}

.comparison__desc {
    margin: 40px 0 10px;
    color: #232323;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

.comparison__table__wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.comparison__table {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}

.comparison__table span {
    color: #E8734D;
    font-weight: 700;
}

.comparison__table th:nth-child(1),
.comparison__table td:nth-child(1) {
	width: 180px;
}

.comparison__table th:nth-child(2),
.comparison__table td:nth-child(2) {
	width: 245px;
}

.comparison__table th:nth-child(3),
.comparison__table td:nth-child(3) {
	width: 165px;
}

.comparison__table th:nth-child(4),
.comparison__table td:nth-child(4) {
	width: 165px;
}

.comparison__table th:nth-child(5),
.comparison__table td:nth-child(5) {
	width: 165px;
}

.comparison__table th,
.comparison__table td {
	border: 1px solid #BBB;
	padding: 10px 20px;
	text-align: left;
    color: #232323;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.comparison__table th,
	.comparison__table td {
		padding: 10px;
	}
}

.comparison__table thead th {
	background-color: #0F5B8C;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.comparison__table thead th {
		font-size: 14px;
	}
}

.comparison__table tbody th {
	background-color: #0F5B8C;
	color: #FFF;
	font-size: 16px;
	font-weight: 500;
}

@media screen and (max-width: 767px) {
	.comparison__table tbody th {
		font-size: 12px;
	}
}

.comparison__table tbody td {
	background-color: #FFF;
}

.comparison__table tbody td.bg-yellow {
    background: #FFF9E8;
}

.comparison__table tbody {
    vertical-align: top;
}

/* -------------------------

お知らせ

------------------------- */

/* アコーディオンの動き */

.news__wrapper {
	margin-bottom: 50px;
}

.news__wrapper.no-posts {
	margin-bottom: 0;
}

@media screen and (max-width: 767px) {
	.news__wrapper {
		margin-bottom: 30px;
	}

	.news__wrapper.no-posts {
		margin-bottom: 0;
	}
}

.toggle {
	display: none;
}



.news__contents-title__wraapper,
.news__contents-text__wraapper {
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translateZ(0);
	transition: all 0.3s;
}

.news__contents-text__wraapper {
	max-height: 0;
	overflow: hidden;
}

.toggle:checked + .news__contents-title__wraapper + .news__contents-text__wraapper {
	max-height: 500px;
	transition: all 1.5s;
}

/* アコーディオン矢印カスタマイズ */
.news__contents-title__wraapper::after {
	content: "\f105";
	color: #77797F;
	font-family: "Font Awesome 6 Free";
	font-weight: 900;
	position: absolute;
	right: 10px;
	top: auto;
	transition: .5s;
}

@media screen and (max-width: 767px) {
	.news__contents-title__wraapper::after {
		top: 50%;
	}
}

.toggle:checked +  .news__contents-title__wraapper::after {
	transform: rotate(-90deg);
}

/* デザイン調整 */
.news__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 3.75rem 0 3.75rem;
}

@media screen and (max-width: 767px) {
	.news__inner {
		padding-top: 39px;
        padding-top: 2.4375rem;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}
}

.news__contents {
	border-bottom: 1px solid #BBB;
	padding: 30px 0;
}

@media screen and (max-width: 767px) {
	.news__contents {
		padding: 15px 0;
	}
}

.news__contents.no-posts {
    border: none;
    padding: 0;
    text-align: center;
}

.news__wrapper .news__contents:first-child {
	padding-top: 0;
}

.news__title.section-title {
	margin-bottom: 30px;
}

.news__contents-title__wraapper {
	display: flex;
	align-items: center;
	flex-direction: row;
	gap: 30px;
	cursor: pointer;
	position: relative;
}

@media screen and (max-width: 767px) {
	.news__contents-title__wraapper {
		align-items: baseline;
		flex-direction: column;
		gap: 5px;
	}
}

.news__contents[open] .news__contents-title__wraapper {
	margin: 0 0 10px;
	position: relative;
}

.news__contents-date {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.48px;
	width: 85px;
}

.news__contents-title {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.48px;
	padding-right: 24px;
}

.news__contents-text {
	color: #000;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.48px;
	margin: 10px 0 0 115px;
}

.news__contents-text a {
	color: #428BCA;
	display: block;
	margin-top: 1em;
}

@media screen and (max-width: 767px) {
	.news__contents-date {
		font-size: 14px;
	}

	.news__contents-title {
		font-size: 14px;
	}

	.news__contents-text {
		font-size: 12px;
		margin: 10px 0 0;
	}
}

.news__button__wraapper {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-direction: row;
}

.news__button {
	position: relative;
	border-radius: 0.3125rem;
	width: 100%;
	max-width: 330px;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.news__button__wraapper {
		flex-direction: column;
		gap: 10px;
	}

	.news__button {
		margin-inline: auto;
		width: 74.6%;
	}
}

.news__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9;
}

.news__button a {
	position: relative;
	display: block;
	color: #fff;
	background-color: #004BA4;
	text-align: center;
	padding: 0.8125rem 0;
	font-size: 14px;
	font-weight: 700;
	z-index: 10;
	border-radius: 0.3125rem;
}

.news__button.orange a {
	background: #E8734D;
}

.news__button a span {
	position: absolute;
	top: 33%;
	right: 1.03125rem;
}

@media screen and (max-width: 767px) {
	.news__button a {
		padding: 0.75rem 0;
	}

	.news__button a span {
		right: 24px;
		right: 1.5rem;
	}
}

/* 一覧ページ調整 */
.news.archive {
	background: transparent;
}

/* -------------------------

導入事例

------------------------- */

.case {
	background: #F8F8F8;
}

.case__no-posts {
    text-align: center;
}

.case.archive {
	background: transparent;
}

.case.archive .case__wrapper {
	display: block;
}

.case__contents__wrapper {
	display: flex;
	gap: 30px 2%;
	flex-wrap: wrap;
}

.case_article__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 3.75rem 1.25rem 3.75rem;
}

@media screen and (max-width: 767px) {
	.case_article__inner {
		padding: 39px 16px 38px;
		padding: 2.4375rem 1rem 2.375rem;
	}
}

.case-name {
	color: #004BA4;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	margin: 10px 0 30px;
	padding: 0 3.8%;
}

.case-name {
	color: #E8734D;
}

.case-content {
	padding: 0 3.8%;
}

.case-content img {
	width: 100%;
	height: auto;
}

.case-content a {
	color: #428BCA;
}

.case-content p,
.case-content table {
	margin-bottom: 30px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.case-content strong {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.case-content h3 {
	color: #004BA4;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding: 30px 0 10px;
	border-bottom: 1px solid #004BA4;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.case-content p,
	.case-content table {
		font-size: 14px;
	}

	.case-content strong {
		font-size: 16px;
	}

	.case-content h3 {
		font-size: 18px;
		padding: 20px 0 10px;
	}
}

.case-content h3 {
	color: #E8734D;
	border-bottom: 1px solid #E8734D;
}

.case-content__table-wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
}

.case-content table {
	border-collapse: collapse;
	width: 100%;
}

.case-content table td {
	border: 1px solid #ccc;
	padding: 8px;
}

.case__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 3.75rem 0 3.75rem;
}

.case__contents {
	padding: 30px 0;
}

@media screen and (max-width: 767px) {
	.case__inner {
		padding-top: 39px;
		padding-top: 2.4375rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}

	.case__contents {
		padding: 15px 0;
	}
}

.case__title.section-title {
	margin-bottom: 30px;
}

.case__desc {
	color: #000;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
	padding: 0 6.6%;
}

@media screen and (max-width: 767px) {
	.case__desc {
		line-height: 1.8;
		margin-bottom: 10px;
	}
}

.case__wrapper {
	display: flex;
	gap: 2%;
	margin-bottom: 40px;
	flex-wrap: wrap;
}

.case__wrapper a {
	width: 32%;
}

@media screen and (max-width: 767px) {
	.case__wrapper a {
		width: 100%;
	}
}

.case__contents {
	padding: 20px 6.6%;
	background: #fff;
	border-radius: 10px;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.case__contents__img img {
	border-radius: 10px;
	height: 216px;
	object-fit: cover;
}

.case__contents__logo img {
	height: 32px;
	width: auto;
	margin: 0 auto;
}

.case__contents__title {
	font-size: 14px;
	font-weight: 700;
	line-height: 1.6;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.case__contents__title {
		font-weight: 400;
	}
}

.case__contents__tags {
	display: flex;
	gap: 3px;
	flex-wrap: wrap;
}

.case__contents__tag {
	font-size: 12px;
	color: #FFF;
	font-weight: 700;
	line-height: 1;
	border-radius: 3px;
	padding: 6px 8px;
	width: fit-content;
}

.case__contents__tag.tag-tag1 {
	background: #004BA4;
}

.case__contents__tag.tag-tag2 {
	background: #0D8398;
}

.case__contents__tag.tag-tag3 {
	background: #E59900;
}

.case__contents__tag.tag-tag4 {
	background: #629DD5;
}

.case__contents__tag.tag-tag5 {
	background: #60AFC2;
}

.case__contents__text_discription {
	color: #000;
	font-size: 14px;
	font-weight: 600;
	line-height: 1.6;
}

.case__button__wraapper {
	display: flex;
	justify-content: center;
	gap: 24px;
	flex-direction: row;
}

.case__button {
	position: relative;
	border-radius: 0.3125rem;
	width: 100%;
	max-width: 330px;
	margin: 0;
}

@media screen and (max-width: 767px) {
	.case__contents__text_discription {
		font-weight: 400;
	}

	.case__button__wraapper {
		flex-direction: column;
		gap: 10px;
	}

	.case__button {
		margin-inline: auto;
		width: 74.6%;
	}
}

.case__button::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #fff;
	z-index: 9;
}

.case__button a {
	position: relative;
	display: block;
	color: #fff;
	background-color: #004BA4;
	text-align: center;
	padding: 0.8125rem 0;
	font-size: 14px;
	font-weight: 700;
	z-index: 10;
	border-radius: 0.3125rem;
}

.case__button.orange a {
	background: #E8734D;
}

.case__button a span {
	position: absolute;
	top: 33%;
	right: 1.03125rem;
}

/* スライダー */
.case__swiper {
	margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
	.case__button a {
		padding: 0.75rem 0;
	}

	.case__button a span {
		right: 24px;
		right: 1.5rem;
	}

	.case__swiper {
		margin-bottom: 30px;
	}
}

.case__swiper .swiper-wrapper {
	justify-content: center;
}

@media screen and (max-width: 767px) {
	.case__swiper .swiper-wrapper {
		justify-content: left;
	}
}

.case__swiper .swiper-pagination {
	position: relative;
	margin: 20px 0 0;
	top: 0;
	bottom: 0;
}

.case__swiper .swiper-pagination-bullets .swiper-pagination-bullet {
	height: 11px;
	width: 11px;
	background: #B8B8B8;
	opacity: 1;
	margin: 0 6px;
}

.case__swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
	background: #E8734D;
}


/* -------------------------

足場レンタル

------------------------- */

.rental {
	background-color: #fffaf9;
}

.rental__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 3.75rem 0 3.75rem;
}

@media screen and (max-width: 767px) {
	.rental__inner {
		padding-top: 39px;
		padding-top: 2.4375rem;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}
}

.rental__title___bubble {
	position: relative;
	border-radius: 32px;
	background: #e8734d;
	width: fit-content;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding: 6px 20px;
}

@media screen and (max-width: 767px) {
	.rental__title___bubble {
		font-size: 14px;
	}
}

.rental__title___bubble::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 8px solid #e8734d;
}

.rental__title {
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-top: 19px;
}

.rental__title span {
	color: #e8734d;
}

.rental__desc {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin: 30px 0;
}

@media screen and (max-width: 767px) {
	.rental__title {
		font-size: 18px;
	}

	.rental__desc {
		margin: 20px 0;
	}
}

.rental__desc span {
	font-size: 14px;
}

.rental__plan__title {
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.rental__plan__wrapper {
	overflow-x: auto;
	-webkit-overflow-scrolling: touch; /* iOSでのスムーズスクロール */
}

.rental__plan {
	border-collapse: collapse;
	border: none;
	width: 100%;
	margin: 15px 0;
	min-width: auto;
}

@media screen and (max-width: 767px) {
	.rental__plan {
		margin: 15px 0 10px;
		min-width: 600px;
	}
}

.rental__plan th,
.rental__plan td {
	border-top: none;
	border-bottom: 1px solid #bbb;
	border-left: none;
	border-right: none;
	text-align: center;
	padding: 28px 10px;
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 500;
	line-height: normal;
	white-space: nowrap;
}

.rental__plan th span,
.rental__plan td span {
	white-space: nowrap;
}

.rental__plan th:first-child,
.rental__plan td:first-child {
	background-color: #f8f8f8;
}

.rental__plan th:not(:first-child),
.rental__plan td:not(:first-child) {
	background-color: #fff;
}

.rental__plan thead th {
	border-top: 1px solid #bbb;
	font-weight: 700;
}

.rental__plan th {
	font-weight: 700;
}

.rental__plan th span {
	font-size: 12px;
}

.rental__plan__note {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

/* -------------------------

パートナー登録

------------------------- */

.partner {
	background-color: #f6fafd;
}

.partner__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 3.75rem 1.25rem 3.75rem;
}

@media screen and (max-width: 767px) {
	.partner__inner {
		padding-top: 39px;
		padding-top: 2.4375rem;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}
}

.partner__title___bubble {
	position: relative;
	border-radius: 32px;
	background: #0f5b8c;
	width: fit-content;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding: 6px 20px;
}

@media screen and (max-width: 767px) {
	.partner__title___bubble {
		font-size: 14px;
	}
}

.partner__title___bubble::after {
	content: '';
	position: absolute;
	bottom: -8px;
	left: 50%;
	transform: translateX(-50%);
	width: 0;
	height: 0;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 8px solid #0f5b8c;
}

.partner__title {
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-top: 19px;
}

@media screen and (max-width: 767px) {
	.partner__title {
		font-size: 18px;
	}
}

.partner__title span {
	color: #0f5b8c;
}

.partner__contents__wrapper {
	margin-top: 30px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}

.partner__contents {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-direction: row;
	gap: auto;
}

@media screen and (max-width: 767px) {
	.partner__contents {
		flex-direction: column-reverse;
		gap: 30px;
	}

	.partner__contents:nth-child(2) {
		flex-direction: column;
	}
}

.partner__contents:not(:last-child) {
	border-bottom: 1px solid #bbb;
	padding-bottom: 30px;
}

.partner__contents__text {
	width: 69.5%;
}

.partner__contents__title {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom: 15px;
	text-align: left;
}

@media screen and (max-width: 767px) {
	.partner__contents__text {
		width: 100%;
	}

	.partner__contents__title {
		font-size: 20px;
		text-align: center;
	}
}

.partner__contents__text__inner {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	margin-bottom: 10px;
}

.partner__contents__text a {
	color: #0f5b8c;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 500;
	line-height: 1.6;
	letter-spacing: 0.05em;
	text-decoration-line: underline;
}

.partner__contents__img {
	width: 27%;
}

@media screen and (max-width: 767px) {
	.partner__contents__img {
		width: 250px;
	}
}

/* -------------------------

サービスご利用について

------------------------- */

.service__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	align-items: center;
	flex-direction: column;
	padding: 3.75rem 0 3.75rem;
}

@media screen and (max-width: 767px) {
	.service__inner {
		padding-top: 39px;
		padding-top: 2.4375rem;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}
}

.service__contents {
	border-radius: 5px;
	border: 2px solid #e8734d;
	padding: 30px 3.8%;
	margin-top: 30px;
}

.service__contents.blue {
	border: 2px solid #0f5b8c;
}

.service__contents__ttl {
	margin-bottom: 20px;
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 20px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

.service__contents__inner {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	gap: auto;
}

.service__contents__item {
	border-radius: 5px;
	background: #fafafa;
	width: 31.7%;
	padding: 30px 3%;
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
	position: relative;
}

@media screen and (max-width: 767px) {
	.service__contents__inner {
		flex-direction: column;
		gap: 20px;
	}

	.service__contents__item {
		width: 100%;
	}
}

.service__contents__item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	bottom: auto;
	left: auto;
	width: 30px;
	height: 4px;
	background-color: #e8734d;
	transform: translateY(-50%);
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.service__contents__item:not(:last-child)::after {
		bottom: -25px;
		left: 50%;
		top: auto;
		right: auto;
		width: 4px;
		height: 30px;
		transform: translateX(-50%);
	}
}

.service__contents__item__ttl {
	display: flex;
	gap: 10px;
	margin-bottom: 13px;
	font-size: 16px;
	font-weight: 700;
	align-items: center;
}

.service__contents__item__ttl__number {
	color: #fff;
	font-family: Roboto;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	border-radius: 26px;
	background: #e8734d;
	width: 35px;
	height: 35px;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 35px;
}

.blue .service__contents__item__ttl__number {
	background: #0f5b8c;
}

.blue .service__contents__item:not(:last-child)::after {
	background-color: #0f5b8c;
}

.blue .service__contents__item:not(:last-child)::after {
	content: '';
	position: absolute;
	top: 50%;
	right: -25px;
	bottom: auto;
	left: auto;
	width: 30px;
	height: 4px;
	background-color: #0f5b8c;
	transform: translateY(-50%);
	z-index: -1;
}

@media screen and (max-width: 767px) {
	.blue .service__contents__item:not(:last-child)::after {
		bottom: -25px;
		left: 50%;
		top: auto;
		right: auto;
		width: 4px;
		height: 30px;
		transform: translateX(-50%);
	}
}

.service__contents__desc {
    color: #232323;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    margin-top: 10px;
}

/* -------------------------

お申し込み・お問い合わせ

------------------------- */

.contact {
	background: #0f5b8c;
}

.contact__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 60px 0 3.75rem;
}

#contact-form .contact__inner {
	padding: 2.4375rem 0 3.75rem;
}

@media screen and (max-width: 767px) {
	.contact__inner {
		padding-top: 39px;
		padding-top: 2.4375rem;
		padding-left: 16px;
		padding-left: 1rem;
		padding-right: 16px;
		padding-right: 1rem;
		padding-bottom: 38px;
		padding-bottom: 2.375rem;
	}

	#contact-form .contact__inner {
		padding-top: 2.4375rem;
	}
}

.contact__title.section-title {
	margin-bottom: 30px;
	color: #fff;
}

h3.contact__inner-title {
	color: #000;
	text-align: center;
	font-size: 24px;
	font-weight: 500;
	line-height: 1.4;
	letter-spacing: 0.05em;
	margin-bottom: 30px;
}

.contact__discription {
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.03em;
	text-align: center;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	h3.contact__inner-title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.contact__discription {
		font-size: 14px;
	}
}

.contact__button__wraapper {
	display: flex;
	justify-content: center;
	gap: 15px;
	flex-direction: row;
	align-items: center;
}

.contact__lower__wrapper {
	display: flex;
	justify-content: space-between;
	flex-direction: row;
	gap: auto;
}

.contact__lower {
	background: #fff;
	padding: 30px 5px;
	width: 100%;
	border-radius: 5px;
}

@media screen and (max-width: 767px) {
	.contact__button__wraapper {
		flex-direction: column;
	}

	.contact__lower__wrapper {
		flex-direction: column;
		gap: 30px;
	}

	.contact__lower {
		padding: 30px 4%;
	}
}

.contact__ttl {
	color: #000;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 20px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.contact__button__wraapper .header__bottom-right-btn {
	width: 250px;
	height: 45px;
	font-size: 14px;
	max-width: 100%;
}

.header__bottom-right-btn.line {
	background: #06c755;
	gap: 0;
}

.header__bottom-right-btn.line img {
	width: 41.5px;
	height: auto;
}

/* -------------------------

フッター

------------------------- */

.footer {
	background-color: #f8f8f8;
	padding-bottom: 40px;
	padding-bottom: 2.5rem;
}

.footer__inner {
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding: 3.75rem 0;
}

@media screen and (max-width: 767px) {
	.footer__inner {
		max-width: 480px;
		max-width: 30rem;
		padding: 40px 16px 17px;
		padding: 2.5rem 1rem 1.0625rem;
	}
}

.footer__upper {
	display: flex;
	justify-content: space-between;
	padding-bottom: 40px;
	flex-direction: row;
}

@media screen and (max-width: 767px) {
	.footer__upper {
		flex-direction: column;
		padding-bottom: 30px;
	}
}

.footer__logo {
	max-width: fit-content;
	width: 100%;
}

.footer__logo-name img {
	height: 42px;
	width: auto;
}

.footer__logo-name p {
	color: #004ba4;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Noto Sans JP';
	margin-top: 5px;
}

.footer__logo-name.orange p {
	color: #e8734d;
	font-size: 14px;
	font-weight: 700;
	font-family: 'Noto Sans JP';
	margin-top: 5px;
}

.footer__nav {
	display: flex;
	flex-direction: row !important;
	margin-top: 0;
	gap: 30px;
}

@media screen and (max-width: 767px) {
	.footer__nav {
		margin-top: 20px;
	}
}

.footer__nav-wrap.u-mobile .footer__nav {
    justify-content: space-between;
}

.footer__nav-col3 {
	display: flex;
}

.footer__nav ul {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

@media screen and (max-width: 767px) {
	.footer__nav-col3 {
		display: none;
	}

	.footer__nav ul {
		gap: 15px;
	}
}

.footer__nav ul a {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.footer__nav ul:nth-child(1) {
	width: fit-content;
}

.footer__nav li {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__nav li.u-desktop {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.footer__nav li.u-mobile {
	display: none;
}

@media screen and (max-width: 767px) {
	.footer__nav li.u-desktop {
		display: none;
	}

	.footer__nav li.u-mobile {
		display: flex;
	}
}

.footer__nav li:last-child {
	margin-top: none;
}

.footer__nav li a {
	font-size: 12px;
	font-weight: 500;
	line-height: 1.4;
}

.footer__nav ul a span img {
	max-width: 14px;
	max-width: 0.875rem;
	width: 100%;
	margin-left: 6px;
	margin-left: 0.375rem;
}

.footer__right {
	margin-top: 0;
	max-width: 20.4375rem;
	width: 100%;
}

.footer__lower {
	display: flex;
	justify-content: space-between;
	border-top: 1px solid var(--6, #b8b8b8);
	padding-top: 19px;
	flex-direction: row;
	align-items: flex-end;
}

@media screen and (max-width: 767px) {
	.footer__right {
		margin-top: 29px;
		margin-top: 1.8125rem;
	}

	.footer__lower {
		padding-top: 30px;
		flex-direction: column;
		align-items: flex-start;
	}
}

.footer__lower .footer__left {
	margin-right: 5%;
}

.footer__lower__small {
	color: #000;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 400;
}

.footer__lower__big {
	color: #000;
	font-family: 'Noto Sans JP';
	font-size: 20px;
	font-weight: 700;
	margin: 8px 0;
}

.footer__lower .footer__right {
	display: flex;
	gap: 8px;
	align-items: center;
	max-width: fit-content;
}

.footer__logo-mark img {
	width: 50px;
}

.footer__lower .footer__right p {
	max-width: 322px;
	width: fit-content;
}

.footer__copyright {
	font-size: 0.625rem;
	letter-spacing: 0.02em;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.footer__copyright {
		font-size: 12px;
		font-size: 0.75rem;
	}
}

/* -------------------------

トップへ戻るボタン

------------------------- */

.page-top {
	position: fixed;
	right: 2.5rem;
	bottom: 2.5rem;
	max-width: 4.6875rem;
	width: 100%;
	height: 4.6875rem;
	border-radius: 50%;
	border: 3px solid #e8734d;
	background-color: #fff;
	cursor: pointer;
	z-index: 10;
}

.page-top img {
	max-width: 0.625rem;
	width: 100%;
	margin-top: 0.6875rem;
	margin-inline: auto;
}

.page-top p {
	font-size: 0.875rem;
	line-height: 1.3;
	margin-top: 4px;
	margin-top: 0.25rem;
	letter-spacing: 0.03em;
	text-align: center;
}

@media screen and (max-width: 767px) {
	.page-top {
		right: 15px;
		right: 0.9375rem;
		bottom: 20px;
		bottom: 1.25rem;
		max-width: 50px;
		max-width: 3.125rem;
		height: 50px;
		height: 3.125rem;
		border: 2px solid #e8734d;
	}

	.page-top img {
		max-width: 10px;
		margin-top: 5px;
		margin-top: 0.3125rem;
	}

	.page-top p {
		font-size: 9px;
		font-size: 0.5625rem;
	}
}

/* -------------------------

フォーム

------------------------- */

.form__page__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding-top: 39px;
	padding-top: 2.4375rem;
	padding-left: 16px;
	padding-left: 1rem;
	padding-right: 16px;
	padding-right: 1rem;
	padding-bottom: 60px;
}

.form__page__desc {
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin: 30px 0;
}

.form__wrapper {
	background-color: #f6fafd;
	padding: 60px 12.8%;
}

@media screen and (max-width: 767px) {
	.form__wrapper {
		padding: 30px 6.4%;
	}
}

.form__wrapper.rental {
	background-color: #fffaf9;
}

.form__wrapper.contact {
	background-color: #f8f8f8;
}

.form__item {
	display: flex;
	flex-direction: column;
	gap: 4px;
	margin-bottom: 25px;
}

.form__item label {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 700;
	line-height: 2;
	letter-spacing: 0.05em;
	cursor: auto;
}

label.mb {
	margin-bottom: 4px;
}

/* 必須項目のlabelに「必須」を表示 */
label.required::after {
	content: '必須';
	background-color: #f00;
	color: #fff;
	padding: 2px 4px;
	border-radius: 3px;
	font-family: 'Noto Sans JP';
	font-size: 12px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 0.05em;
	margin-left: 8px;
}

.form__item input {
	border-radius: 5px;
	border: 1px solid #bbb;
	background: #fff;
	height: 40px;
	cursor: auto;
	padding: 0 12px;
	font-size: 14px;
}

.form__item textarea {
	border-radius: 5px;
	border: 1px solid #bbb;
	background: #fff;
	height: 100px;
	cursor: auto;
	padding: 6px 12px;
	font-size: 14px;
}

.form__item input::placeholder,
.form__item textarea::placeholder {
	font-size: 14px;
	color: #bbb;
	font-family: 'Noto Sans JP';
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
}

.form__item .error {
	color: #f00;
	margin-top: 2px;
	font-family: 'Noto Sans JP';
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
}

.form__item-name {
	display: flex;
	justify-content: space-between;
}

.form__item-name-inner {
	width: 48%;
}

.form__item-name-inner input {
	width: 100%;
}

.form__item-other {
	display: none;
}

.form__item-other p,
.form__item.block p {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 12px;
	font-weight: 400;
	line-height: 2;
	letter-spacing: 0.05em;
	margin-bottom: 4px;
}

.form__item-checkbox {
	display: flex;
	gap: 15px;
	flex-direction: row;
}

@media screen and (max-width: 767px) {
	.form__item-checkbox {
		gap: 8px;
		flex-direction: column;
	}
}

.form__item-radio {
	display: flex;
	gap: 15px;
}

.form__item-checkbox label,
.form__item-radio label {
	font-weight: 400;
	display: flex;
	align-items: center;
	gap: 8px;
}

.form__item label input[type='checkbox'],
.form__item label input[type='radio'] {
	margin: 0;
	height: 16px;
	width: 16px;
	cursor: pointer;
}

.form__item.block {
	margin-top: -30px;
}

.form__item-block {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.form__item-block label {
	font-weight: 500;
}

.form__item-desc {
	color: #232323;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
}

.form__item-desc a {
	color: #004ba4;
}

.submit-btn {
	background-color: #bbb;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 14px;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: auto;
	transition: background-color 0.3s ease;
	width: 100%;
	max-width: 254px;
	margin: 33px auto 0;
	display: block;
}

.submit-btn:enabled {
	background-color: #e8734d;
	cursor: pointer;
	transition: 0.3s;
}

.submit-btn.blue:enabled {
	background-color: #0F5B8C;
}

.submit-btn:enabled:hover {
	opacity: 0.6;
	transition: 0.3s;
}

/* -------------------------

確認画面

------------------------- */
#confirmScreen {
	display: none;
}

.confirm_ttl {
	text-align: center;
	margin-bottom: 20px;
}

#confirmScreen .form__item span {
    font-size: 14px;
}

.back-btn {
	background-color: #bbb;
	color: #fff;
	border: none;
	border-radius: 40px;
	padding: 14px;
	font-family: 'Noto Sans JP';
	font-size: 14px;
	line-height: 1.3;
	font-weight: 700;
	letter-spacing: 0.05em;
	cursor: auto;
	transition: background-color 0.3s ease;
	width: 100%;
	max-width: 254px;
	margin: 33px auto 0;
	display: block;
}

.back-btn:hover {
	cursor: pointer;
	transition: 0.3s;
	opacity: 0.7;
}

#confirmScreen label.required::after {
	content: none;
}

/* -------------------------

お申込み・お問い合わせ完了

------------------------- */

.thanks__page__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin: 0 auto;
	padding-top: 39px;
	padding-top: 2.4375rem;
	padding-left: 16px;
	padding-left: 1rem;
	padding-right: 16px;
	padding-right: 1rem;
	padding-bottom: 60px;
}

.thanks__page__desc {
	color: #232323;
	text-align: center;
	font-family: 'Noto Sans JP';
	font-size: 16px;
	font-weight: 400;
	line-height: 1.8;
	letter-spacing: 0.05em;
	margin: 30px 0;
}

.thanks__page__button a {
	background: #e8734d;
	width: 250px;
	height: 45px;
	font-size: 14px;
	border-radius: 5px;
	display: flex;
	align-items: center;
	color: #fff;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.05em;
	justify-content: center;
	margin: 0 auto;
	max-width: 100%;
}

/* -------------------------

パンくずリストとページネーション

------------------------- */

.breadcrumb {
    display: flex;
    color: #3E3E3E;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.1em;
    gap: 1em;
    margin: 0 auto 0;
    width: 94.6%;
    max-width: 1520px;
    padding: 20px 0 0;
    align-items: center;
    margin-top: 30px;
}

.breadcrumb a {
    color: #E8734D;
	min-width: max-content;
    display: block;
}

.breadcrumb a::after {
    content: "\f105";
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 1em;
    font-size: 11px;
    color: #3E3E3E;
}

.pagination {
    display: flex;
    justify-content: center;
    margin: 60px 0 calc(100px - 3.75rem);
}

.page-numbers {
    display: flex;
    gap: 6px;
}

.page-numbers li {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.075em;
    color: #7B7B7B;
}

.pagination .page-numbers.current {
    background-color: #E8734D;
    color: #FFF;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

a.page-numbers {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -------------------------

投稿ページ

------------------------- */

.news_article__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 39px 16px 38px;
	padding: 3.75rem 1.25rem 3.75rem;
}

.case_article__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 39px 16px 38px;
	padding: 3.75rem 1.25rem 3.75rem;
}

.error_article__inner {
	max-width: 960px;
	max-width: 60rem;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	padding: 39px 16px 38px;
	padding: 3.75rem 1.25rem 3.75rem;
}

@media screen and (max-width: 767px) {
	.case_article__inner,
	.news_article__inner,
	.error_article__inner {
		padding: 30px 16px 30px;
		padding: 1.875rem 1rem 1.875rem;
	}
}

.article-title {
	color: #000;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
	padding: 0 3.8%;
}

@media screen and (max-width: 767px) {
	.article-title {
		font-size: 18px;
	}
}

.error_article__title {
	margin-bottom: 30px;
}

.news-date {
	color: #E8734D;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	margin: 10px 0 30px;
	padding: 0 3.8%;
}

.case-name {
	color: #E8734D;
	font-family: "Open Sans";
	font-size: 16px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.1em;
	margin: 10px 0 30px;
	padding: 0 3.8%;
}

.news_article__inner .line,
.case_article__inner .line,
.error_article__inner .line {
	border: solid 1px #E8734D;
	position: relative;
	width: 100%;
	margin-bottom: 30px;
}

.news_article__inner .line::before,
.case_article__inner .line::before,
.error_article__inner .line::before {
	content: "";
	background-color: #E8734D;
	position: absolute;
	left: -2px;
	top: -5px;
	width: 9px;
	height: 9px;
	border-radius: 100%;
}

.news_article__inner .line::after,
.case_article__inner .line::after,
.error_article__inner .line::after {
	content: "";
	background-color: #E8734D;
	position: absolute;
	right: -2px;
	top: -5px;
	width: 9px;
	height: 9px;
	border-radius: 100%;
}

.news-content img {
	width: 100%;
	height: auto;
}

.case-content img {
	width: 100%;
	height: auto;
}

.news-content a,
.case-content a,
.error-content a {
	color: #428BCA;
}

.news-content p {
	margin-bottom: 30px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.news-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

.case-content p,
.case-content table {
	margin-bottom: 30px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.case-content p,
	.case-content table {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

.error-content p {
	margin-bottom: 30px;
	color: #000;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.error-content p {
		font-size: 14px;
		margin-bottom: 20px;
	}
}

.news-content strong {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.news-content strong {
		font-size: 16px;
	}
}

.case-content strong {
	color: #000;
	font-size: 18px;
	font-weight: 700;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

@media screen and (max-width: 767px) {
	.case-content strong {
		font-size: 16px;
	}
}

.news-content h3 {
	color: #E8734D;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding: 30px 0 10px;
	border-bottom: 1px solid #E8734D;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.news-content h3 {
		font-size: 18px;
		margin-bottom: 20px;
		padding: 20px 0 10px;
	}
}

.case-content h3 {
	color: #E8734D;
	font-size: 24px;
	font-weight: 700;
	line-height: 1.8;
	letter-spacing: 0.05em;
	padding: 30px 0 10px;
	border-bottom: 1px solid #E8734D;
	margin-bottom: 30px;
}

@media screen and (max-width: 767px) {
	.case-content h3 {
		font-size: 18px;
		margin-bottom: 20px;
		padding: 20px 0 10px;
	}
}

.case-content table {
	border-collapse: collapse;
	width: 100%;
}

.case-content table td {
	border: 1px solid #ccc;
	padding: 8px;
}

.table__heading {
	width: 85px;
}

  /* 会社情報のボックス（htmlの編集はfunctions.phpにて） */
.company__info {
	display: flex;
	background-color: #F9F9F9;
	padding: 20px 3.5%;
	margin-bottom: 20px;
}

@media screen and (max-width: 767px) {
	.company__info {
		flex-direction: column;
	}
}

.company__info__logo {
	width: 100%;
	padding: 10px 5%;
	background-color: #FFF;
	display: flex;
	align-items: center;
	justify-content: center;
}

.company__info__logo img {
	aspect-ratio: 1 / 1;
	object-fit: contain;
	height: 120px;
}

@media screen and (max-width: 767px) {
	.company__info__logo img {
		height: auto;
	}
}

.company__info__details {
	width: 100%;
	padding: 15px 5%;
	background-color: #fff;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 10px;
}

.company__info__details p {
	margin: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 2;
	width: 100%;
	word-break: break-all;
}

.company__info__details p.heading {
	width: 80px;
}

.company__info__details a {
	width: fit-content;
}

.company__info__details a p {
	text-decoration: underline;
	color: #004BA4;
	width: 100%;
}

.company__info__item {
	display: flex;
	gap: 6.5%;
	flex-direction: column;
}
