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

html {
	font-size: 16px;
	height: 100%;
	scroll-behavior: smooth;
}

body {
	color: #333333;
	font-family: "Noto Serif JP", sans-serif;
	font-weight: 400;
	line-height: 1.5;
}

img,
video,
object {
	border: none;
	display: block;
	height: auto;
	max-width: 100%;
}

a {
	color: #0e224b;
	text-decoration: none;
	transition: opacity 0.3s;
}

a:hover {
	opacity: 0.7;
}

/*===================================================================
# Header
===================================================================*/

.header {
	background: #fdfdfd;
	height: 100px;
	left: 0;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 100;
}

.header__inner {
	align-items: center;
	display: flex;
	height: 100%;
	justify-content: space-between;
	margin-inline: auto;
	max-width: 1280px;
	padding-inline: 20px;
}

.header__site-title {
	color: #0e224b;
	font-size: 30px;
	font-weight: 600;
}

.header__nav {
	align-items: center;
	display: flex;
	justify-content: end;
	-moz-column-gap: 60px;
	column-gap: 60px;
}

.header__list {
	display: flex;
	-moz-column-gap: 55px;
	column-gap: 55px;
}

.header__list li a {
	border-bottom: 1px solid transparent;
	color: #0e224b;
	font-weight: 700;
	padding-bottom: 5px;
	transition: border-color 0.3s ease;
}

/*===================================================================
# Footer
===================================================================*/

.footer {
	background-color: #16253d;
	padding-block: 59px 71px;
}

.footer__inner {
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.footer__site-title {
	color: #FFFFFF;
	font-size: 30px;
	font-weight: 600;
	line-height: 1.6;
}

.footer__lists {
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 47px;
}

.footer__list-link {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 500;
}

.footer__policy {
	margin-top: 16px;
	text-align: center;
}

.footer__policy-link {
	color: #FFFFFF;
	font-size: 14px;
	font-weight: 500;
}

.footer__copyright {
	color: #FFFFFF;
	display: block;
	font-family: "GFS Didot", serif;
	font-size: 14px;
	margin-top: 59px;
	text-align: center;
}

/*===================================================================
# Button
===================================================================*/

.btn {
	align-items: center;
	background: #a60a1d;
	border: 1px solid #fff;
	box-sizing: content-box;
	color: #FFFFFF;
	display: flex;
	font-size: 18px;
	font-weight: 600;
	gap: 9px;
	height: 50px;
	justify-content: center;
	transition: all 0.3s ease;
	width: 300px;
}

.btn__arrow {
	display: inline-block;
	height: 16px;
	position: relative;
	width: 8px;
}

.btn__arrow::before,
.btn__arrow::after {
	background-color: #fff;
	border-radius: 9999px;
	content: "";
	height: 2px;
	position: absolute;
	right: 0;
	top: 50%;
	transform-origin: calc(100% - 1px) 50%;
	width: 10px;
}

.btn__arrow::before {
	transform: rotate(45deg);
}

.btn__arrow::after {
	transform: rotate(-45deg);
}

.btn__arrow--product { /* TOPのPRODUCTセクション */
}

.btn__arrow--product::before,
.btn__arrow--product::after {
	background-color: #0e224b;
}

.btn--product {
	background-color: #f7f7f7;
	color: #0e224b;
	gap: 20px;
	height: 51px;
	width: 359px; /* TOPのPRODUCTセクション */
}

.btn--works {
	background-color: #0e224b;
	color: #FFFFFF;
	gap: 19px;
	height: 51px;
	width: 359px; /* TOPのWORKSセクション */
}

.btn--drawer {
	font-size: 16px;
	width: 250px; /* ドロワーメニューのボタン */
}

.btn--good-neighbors {
	gap: 15px;
	width: 250px;
}

.btn--floating {
	border: none;
	bottom: 0;
	display: flex;
	height: 60px;
	left: 0;
	opacity: 0;
	position: fixed;
	transform: translateY(100%);
	transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
	width: 100%; /* フローティングボタン */
	z-index: 1000;
}

.btn--floating.show {
	opacity: 1;
	transform: translateY(0);
	transition: opacity 0.8s ease-out, transform 0.8s cubic-bezier(0.25, 0.8, 0.25, 1), visibility 0s;
	visibility: visible;
}

.floating__btn-wrap {
	max-width: 390px;
}

/*===================================================================
# Drawer
===================================================================*/

.drawer {
	background-color: rgba(247, 247, 247, 0.9);
	height: 100vh; /* svhに対応しないスマホ用 */
	height: 100svh; /* 画面下のメニューを考慮する */
	left: 0;
	overflow-y: scroll;
	position: fixed;
	top: 0;
	transition: translate 0.5s ease;
	translate: 0 -101%;
	width: 100%;
	z-index: 101;
}

.drawer.js-show {
	translate: 0%;
}

.drawer__body {
	height: -moz-fit-content;
	height: fit-content;
	padding-block: 217px 40px;
	width: 100%;
}

.drawer__list {
	align-items: center;
	display: flex;
	flex-direction: column;
	margin-bottom: 49px;
	row-gap: 42px;
}

.drawer__list li a {
	color: #0e224b;
	font-size: 18px;
	font-weight: 700;
}

.drawer__btn-wrap {
	display: flex;
	justify-content: center;
}

.drawer__icon {
	display: none;
	flex-direction: column;
	height: 20px;
	justify-content: space-between;
	position: fixed;
	right: 20px;
	top: 25px;
	width: 30px;
	z-index: 102;
}

.drawer__icon--bar {
	background-color: #0e224b;
	height: 1px;
	transition: all 0.5s ease;
	width: 100%;
}

/* メニューが開いている時 */

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(1) {
	rotate: 45deg;
	translate: 0 9.5px;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(2) {
	display: none;
}

.drawer__icon.js-show .drawer__icon--bar:nth-of-type(3) {
	rotate: -45deg;
	translate: 0 -9.5px;
}

/*===================================================================
# Inner
===================================================================*/

.inner {
	margin-inline: auto;
	max-width: 1140px; /* インナー幅は1140px */
	padding-inline: 20px;
}

/*===================================================================
# Section
===================================================================*/

.section__title {
	color: #0e224b;
	font-size: 40px;
	font-weight: 600;
	text-align: center; /* TOP Featuresのタイトル */ /* 下層ページのH1タイトル */
}

.section__title--white {
	color: #FFFFFF; /* 白文字 */
}

.section__title--left {
	text-align: left; /* 左寄せ */
}

.section__title--left-sp { /* 左寄せ SPのみ */
}

.section__title--features {
	font-size: 45px;
	line-height: 1.33;
}

.section__title-sub {
	font-size: 30px; /* 渋谷LPデザインが選ばれる */
}

.section__title--page-title {
	font-size: 60px;
	font-weight: 500;
	line-height: 1.4;
	margin-inline: auto;
	max-width: 1140px;
	padding-inline: 20px;
}

.section__title-en {
	color: #97947f;
	display: block; /* 英語タイトル */
	font-family: "GFS Didot", serif;
	font-size: 24px;
	font-weight: 400;
	margin-bottom: -9px;
}

.section__title-en--features {
	margin-bottom: -5px; /* TOP Featuresのタイトル */
}

.section__title-en--works {
	margin-bottom: -7px; /* TOP Worksのタイトル */
}

.section__title-en--company {
	margin-bottom: -1px; /* TOP Companyのタイトル */
}

.section__title-en--page-title {
	font-size: 42px; /* 下層ページのH1タイトル */
	line-height: 1.2;
}

.section__title-en--product-lp {
	margin-bottom: -1px; /* 商品紹介の「LP制作」タイトル */
}

.section__title-en--product-price {
	margin-bottom: -6px; /* 商品紹介の「料金」タイトル */
}

.section__title-en--product-flow {
	margin-bottom: -6px; /* 商品紹介の「納品までの流れ」タイトル */
}

/*===================================================================
# page-title
===================================================================*/

.page-title {
	margin-top: 100px;
	padding-block: 100px;
}

.page-title--works {
	background: url(../../assets/img/works_bg.png) center center/cover no-repeat;
}

.page-title--product {
	background: url(../../assets/img/product_bg.png) center center/cover no-repeat;
}

.webp .page-title { /* webp対応ブラウザ用の画像設定 */
}

.webp .page-title--works {
	background-image: url(../../assets/img/works_bg.webp);
}

.webp .page-title--product {
	background-image: url(../../assets/img/product_bg.webp);
}

/*===================================================================
# TOP FV
===================================================================*/

.top .fv {
	background-color: #f7f7f7;
	margin-top: 100px;
	padding-block: 58px 75px;
	position: relative;
}

.top .fv__bg {
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 0;
}

.top .fv__inner {
	margin-inline: auto;
	max-width: 1180px;
	padding-inline: 20px;
	position: relative;
	z-index: 1;
}

.top .fv__message-1 {
	color: #0e224b;
	font-size: 56px; /* 想いを届けるデザインで～ */
	font-weight: 600;
	line-height: 1.43;
}

.top .fv__company-name {
	color: #a60a1d;
	display: inline-block;
	font-size: 52px;
	font-weight: 600;
	margin-top: 6px;
}

.top .fv__message-2 {
	align-items: center;
	background-color: #0e224b;
	color: #fff;
	display: flex;
	font-size: 36px;
	font-weight: 600;
	height: 56px;
	justify-content: center;
	margin-top: 27px;
	width: 588px; /* 30社以上の経営者様の集客を支援 */
}

.top .fv__message-3 {
	color: #0e224b;
	font-size: 24px; /* 本業に追われ、集客の時間が～ */
	font-weight: 700;
	line-height: 1.85;
	margin-top: 54px;
	position: relative;
}

.top .fv__message-3::before,
.top .fv__message-3::after {
	background-color: #0e224b;
	content: "";
	height: 0.5px;
	left: 0;
	position: absolute;
	width: 640px;
}

.top .fv__message-3::before {
	top: -13px;
}

.top .fv__message-3::after {
	bottom: -13px;
}

.top .fv__features {
	display: flex;
	gap: 20px;
	margin-top: 48px;
}

.top .fv__feature {
	align-items: center;
	background-color: #0e224b;
	border-radius: 5px;
	box-shadow: 1.7px 2.5px 8.4px 1.6px rgba(111, 110, 107, 0.2);
	display: flex;
	gap: 10px;
	height: 83px;
	justify-content: center;
	opacity: 0.9;
	width: 300px;
}

.top .fv__feature--3 {
	gap: 12px;
}

.top .fv__feature-img--1 {
	height: 33px;
	width: 29px;
}

.top .fv__feature-img--2 {
	height: 23px;
	width: 32px;
}

.top .fv__feature-img--3 {
	height: 21px;
	width: 39px;
}

.top .fv__feature-text {
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 700;
}

.top .fv__feature-text--3 {
	font-size: 22px;
}

.top .fv__feature-accent {
	color: #feeab9;
	font-size: 22px;
}

/*===================================================================
# TOP Features
===================================================================*/

.top .features {
	background-color: #fdfdfd;
	padding-block: 94px 99px;
}

.top .features__items {
	margin: 79px auto 60px;
	max-width: 835px;
}

.top .features__item {
	display: flex;
	margin-bottom: 61px;
}

.top .features__item:last-of-type {
	margin-bottom: 0;
}

.top .features__img-wrap {
	align-items: flex-start;
	display: flex;
	flex-shrink: 0;
	height: 59px;
	justify-content: center;
	margin-right: 47px;
	width: 79px;
}

.top .features__img--1 {
	height: 59px;
	width: 79px;
}

.top .features__img--2 {
	height: 55px;
	width: 59px;
}

.top .features__img--3 {
	height: 52px;
	width: 57px;
}

.top .features__item-num-wrap {
	display: flex;
	flex-shrink: 0;
	height: 60px;
	justify-content: flex-start;
	width: 80px;
}

.top .features__item-num {
	color: rgba(151, 148, 127, 0.8);
	font-family: "GFS Didot", serif;
	font-size: 65px;
	line-height: 0.75;
}

.top .features__item-text-wrap {
	margin-left: 20px;
	margin-top: -7px;
}

.top .features__item-title {
	color: #0e224b;
	font-size: 24px; /* PCで表示 */
	font-weight: 600;
}

.top .features__item-title--sp {
	color: #0e224b;
	display: none; /* SPで表示 */
	font-size: 24px;
	font-weight: 600;
	margin-top: -2px;
}

.top .features__item-text {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1.69;
}

.top .features__message-wrap {
	align-items: center;
	border: solid 1px #97947f;
	display: flex;
	flex-direction: column;
	height: 129px;
	margin-inline: auto;
	position: relative;
	width: 563px;
}

.top .features__message-corner {
	background: #fdfdfd;
	height: 6px;
	position: absolute; /* 枠の四隅がくっついていないように見せる */
	width: 6px;
	z-index: 2;
}

.top .features__message-corner.features__message-corner--tl {
	left: -1px;
	top: -1px; /* 左上 */
}

.top .features__message-corner.features__message-corner--tr {
	right: -1px;
	top: -1px; /* 右上 */
}

.top .features__message-corner.features__message-corner--bl {
	bottom: -1px; /* 左下 */
	left: -1px;
}

.top .features__message-corner.features__message-corner--br {
	bottom: -1px; /* 右下 */
	right: -1px;
}

.top .features__message-inner {
	padding-top: 21px;
}

.top .features__message-title {
	align-self: flex-start;
	color: #0e224b;
	font-size: 18px;
	font-weight: 600;
}

.top .features__message-text {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 4px;
}

/*===================================================================
# TOP Product
===================================================================*/

.top .product {
	background-color: #fdfdfd;
	padding-bottom: 172px;
	position: relative;
}

.top .product__container {
	background-color: #0e224b;
	bottom: 0;
	height: auto;
	padding: 91px 92px 100px;
	position: absolute;
	right: 0;
	width: 800px;
}

.top .product__text {
	color: #FFFFFF;
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 45px;
}

.top .product__btn-wrap {
	display: flex;
	justify-content: center;
	margin-top: 67px;
}

/*===================================================================
# TOP Works
===================================================================*/

.top .works {
	background-color: #fdfdfd;
	padding-block: 88px 93px;
}

.top .works__inner {
	margin-inline: auto;
	max-width: 1040px;
	padding-inline: 20px;
}

.top .works__items {
	display: flex;
	gap: 34px;
	margin-top: 63px;
}

.top .works__item {
	width: 100%;
}

.top .works__img {
	margin-left: 10px;
}

.top .works__item-text {
	font-size: 24px;
	font-weight: 700;
	margin-top: 56px;
	max-width: 458px;
	position: relative;
}

.top .works__item-text::before {
	background-color: #97947f;
	content: "";
	height: 21px;
	left: -18px;
	position: absolute;
	top: 8px;
	width: 5px;
}

.top .works__btn-wrap {
	display: flex;
	justify-content: flex-end;
	margin-top: 95px;
}

/*===================================================================
# TOP Company
===================================================================*/

.top .company {
	background-color: #f7f7f7;
	padding-block: 91px 164px;
}

.top .company__table {
	margin: 48px auto 0;
	max-width: 530px;
	text-align: left;
}

.top .company tr {
	height: 61px;
	position: relative;
}

.top .company tr::after {
	background-color: #97947f;
	bottom: 18px;
	content: "";
	height: 1px;
	left: 0;
	position: absolute;
	width: 100%;
}

.top .company tr:last-of-type::after {
	bottom: -6px;
}

.top .company__table-title {
	color: #0e224b;
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
}

.top .company__table-content {
	font-family: "Noto Sans JP", sans-serif;
	padding-left: 80px;
}

.top .company__table-content-link {
	color: #333333;
	transition: color 0.3s ease;
}

/*===================================================================
# Works Content
===================================================================*/

.works .content {
	background-color: #f7f7f7;
	padding-block: 142px 142px;
	text-align: center;
}

.works .content__message {
	color: #0e224b;
	font-size: 30px;
	font-weight: 600;
}

.works .content__items {
	margin-block: 85px 127px;
}

.works .content__item {
	margin-bottom: 124px;
	text-align: left;
}

.works .content__item:last-of-type {
	margin-bottom: 0;
}

.works .content__item-title-wrap {
	display: flex;
	justify-content: center;
}

.works .content__item-title {
	color: #0e224b;
	display: inline-block;
	font-size: 24px;
	font-weight: 600;
	position: relative;
}

.works .content__item-title::before {
	background-color: #97947f;
	content: "";
	height: 21px;
	left: -17px;
	position: absolute;
	top: 8px;
	width: 5px;
}

.works .content__img {
	margin: 34px auto 0;
}

.works .content__note {
	color: #0e224b;
	font-family: "Noto Sans JP", sans-serif; /* ご紹介している制作事例は～ */
}

.works .content__past-wrap {
	align-items: center;
	border: solid 1px #97947f;
	display: flex;
	flex-direction: column;
	height: 129px;
	margin: 25px auto 60px;
	position: relative;
	width: 563px;
}

.works .content__past-corner {
	background: #fdfdfd;
	height: 6px;
	position: absolute; /* 枠の四隅がくっついていないように見せる */
	width: 6px;
	z-index: 2;
}

.works .content__past-corner.content__past-corner--tl {
	left: -1px;
	top: -1px; /* 左上 */
}

.works .content__past-corner.content__past-corner--tr {
	right: -1px;
	top: -1px; /* 右上 */
}

.works .content__past-corner.content__past-corner--bl {
	bottom: -1px; /* 左下 */
	left: -1px;
}

.works .content__past-corner.content__past-corner--br {
	bottom: -1px; /* 右下 */
	right: -1px;
}

.works .content__past-inner {
	margin-top: 26px;
}

.works .content__past-title {
	align-self: flex-start;
	color: #0e224b;
	font-size: 18px; /* 過去の制作実績 */
	font-weight: 600;
}

.works .content__past-text {
	color: #0e224b;
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 3px;
}

/*===================================================================
# product Content
===================================================================*/

.product .about {
	background-color: #f7f7f7;
	padding-block: 91px 95px;
}

.product .about__inner {
	max-width: 1040px;
}

.product .about__items {
	margin-block: 43px 127px;
}

.product .about__items:last-of-type {
	margin-bottom: 0;
}

.product .about__item {
	margin-bottom: 49px;
	padding-left: 25px;
}

.product .about__item:last-of-type {
	margin-bottom: 0;
}

.product .about__item ul {
	margin-top: 29px;
}

.product .about__item-title {
	color: #0e224b;
	font-size: 24px;
	font-weight: 600;
	position: relative;
}

.product .about__item-title::before {
	background-color: #97947f;
	content: "";
	height: 21px;
	left: -14px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 5px;
}

.product .about__item-text {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 20px;
}

.product .about__item-text:last-of-type {
	margin-top: 23px;
}

.product .about__item-list {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	padding-left: 30px;
	position: relative;
	text-align: left;
}

.product .about__item-list::before {
	background: url(../../assets/img/product_check.svg) center center/contain no-repeat;
	content: "";
	height: 18px;
	left: 1px;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 21px;
}

.product .price {
	background-color: #0e224b;
	padding-block: 91px 100px;
	text-align: center;
}

.product .price__type-wrap {
	align-items: center;
	display: flex;
	gap: 20px;
	justify-content: center;
	margin-top: 43px;
	padding-left: 15px;
}

.product .price__type {
	color: #FFFFFF;
	font-size: 24px;
	font-weight: 600;
}

.product .price__type-line {
	background-color: #97947f;
	height: 21px;
	width: 5px;
}

.product .price__items {
	display: flex;
	gap: 70px;
	justify-content: center;
	margin-top: 51px;
}

.product .price__item {
	background-color: #fdfdfd;
	border-radius: 5px;
	height: auto;
	padding: 24px 20px 23px;
	width: 320px;
}

.product .price__item-title-en {
	color: #97947f;
	display: block;
	font-family: "GFS Didot", serif;
	font-size: 18px;
	margin-bottom: -5px;
}

.product .price__item-title {
	font-size: 24px;
	font-weight: 600;
}

.product .price__item-price {
	color: #0e224b;
	font-weight: 600;
	line-height: 2;
	position: relative;
}

.product .price__item-price::after {
	background-color: #97947f;
	bottom: 0;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	translate: -50%;
	width: 61px;
}

.product .price__item-price-num {
	font-size: 24px;
	margin-right: -5px;
}

.product .price__item-text {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	margin-top: 23px;
}

.product .price__item-lists {
	display: flex;
	justify-content: center;
}

.product .price ul {
	margin-top: 16px;
}

.product .price__item-list {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 18px;
	line-height: 1.6;
	padding-left: 29px;
	position: relative;
	text-align: left;
}

.product .price__item-list::before {
	background: url(../../assets/img/product_check.svg) center center/contain no-repeat;
	content: "";
	height: 15px;
	left: 0;
	position: absolute;
	top: 50%;
	translate: 0 -50%;
	width: 17px;
}

.product .flow {
	background-color: #fdfdfd;
	padding-block: 90px 150px;
}

.product .flow__items {
	margin-inline: auto;
	margin-top: 100px;
	max-width: 920px;
}

.product .flow__item {
	display: flex;
	margin-bottom: 60px;
	position: relative;
}

.product .flow__item:last-of-type {
	margin-bottom: 0;
}

.product .flow__item-num {
	color: #97947f;
	font-family: "GFS Didot", serif;
	font-size: 28px;
	line-height: 1.29;
	position: relative;
}

.product .flow__item-num::after {
	background-color: #97947f;
	content: "";
	left: 50%;
	position: absolute;
	translate: -50%;
	width: 1px;
}

.product .flow__item-num--1::after {
	bottom: -96px;
	height: 83px;
}

.product .flow__item-num--2::after {
	bottom: -96px;
	height: 83px;
}

.product .flow__item-num--3::after {
	bottom: -149px;
	height: 136px;
}

.product .flow__item-num--4::after {
	bottom: -123px;
	height: 110px;
}

.product .flow__item-num--5::after {
	bottom: -123px;
	height: 110px;
}

.product .flow__item-middle {
	margin-left: 132px;
	width: 50px;
}

.product .flow__item-img {
	margin: 7px auto 0;
}

.product .flow__item-img--sp {
	display: none;
}

.product .flow__item-right {
	margin-left: 42px;
}

.product .flow__item-title {
	color: #0e224b;
	font-size: 24px;
	font-weight: 600;
}

.product .flow__item-text {
	font-family: "Noto Sans JP", sans-serif;
	margin-top: 19px;
}

.product .flow__item-text--list {
	list-style-position: outside;
	padding-left: 1em;
	text-indent: -1em;
}

.product .flow__item-text--palt {
	font-feature-settings: "palt"; /* 句読点の余白（アキ）によるによる改行を防ぐ */
}

.product .flow__item-lists {
	margin-top: 19px;
}

.product .flow__item-list {
	font-family: "Noto Sans JP", sans-serif;
	list-style-position: outside;
	padding-left: 1em;
	text-indent: -1em;
}

/*===================================================================
# Privacy
===================================================================*/

.privacy {
	background-color: #f7f7f7;
	padding-block: 192px 100px;
}

.privacy__inner {
	margin-inline: auto;
	max-width: 880px;
	padding-inline: 40px;
}

.privacy__title {
	color: #0e224b;
	font-size: 28px;
	font-weight: 500;
	position: relative;
	text-align: center;
}

.privacy__title::after {
	background-color: #97947f;
	bottom: -35px;
	content: "";
	height: 1px;
	left: 50%;
	position: absolute;
	translate: -50%;
	width: 80px;
}

.privacy__message {
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
	line-height: 1.79;
	margin-block: 109px 39px;
}

.privacy table {
	border-collapse: collapse;
}

.privacy th,
.privacy td {
	border: solid 1px #a29fa0;
	font-family: "Noto Sans JP", sans-serif;
	font-size: 14px;
}

.privacy th {
	background-color: #eee;
	vertical-align: middle;
	width: 200px;
}

.privacy td {
	background-color: #fdfdfd;
	padding: 16px 15px 21px 10px;
}

/*===================================================================
# Good Neighbors
===================================================================*/

.good-neighbors {
	background-color: #fdfdfd;
	display: flex;
	justify-content: center;
	padding-block: 50px 100px;
}

/*===================================================================
# ブレークポイントによる表示 / 非表示
===================================================================*/

.show__sp {
	display: none; /* spのみ表示 */
}

.show__tab {
	display: none; /* tabのみ表示 */
}

.show__tab-pc {
	display: block; /* tab～pc間で表示 */
}

.show__tab-pc--inline {
	display: inline-block;
}

.show__medium-pc {
	display: block; /* medium～pc間で表示 */
}

.show__sp-medium {
	display: none; /* sp～medium間で表示 */
}

@media (any-hover: hover) {

.header__list li a:hover {
	border-bottom-color: #0e224b;
}

.btn:hover {
	background: transparent;
	border: 1px solid #a60a1d;
	color: #a60a1d;
}

.btn:hover .btn__arrow::before,
.btn:hover .btn__arrow::after {
	background-color: #a60a1d;
}

.btn--product:hover {
	background: transparent;
	border: 1px solid #FFFFFF;
	color: #FFFFFF;
}

.btn--product:hover .btn__arrow--product::before,
.btn--product:hover .btn__arrow--product::after {
	background-color: #FFFFFF;
}

.btn--works:hover {
	background: transparent;
	border: 1px solid #0e224b;
	color: #0e224b;
}

.btn--works:hover .btn__arrow--works::before,
.btn--works:hover .btn__arrow--works::after {
	background-color: #0e224b;
}

.top .company__table-content-link:hover {
	border-bottom: 1px solid #0e224b;
	color: #0e224b;
}

}

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

.header__site-title {
	font-size: clamp(1.563rem, 0.621rem + 1.96vw, 1.875rem);
}

.header__nav {
	-moz-column-gap: 30px;
	column-gap: 30px;
}

.header__list {
	-moz-column-gap: clamp(0.625rem, -7.846rem + 17.65vw, 3.438rem);
	column-gap: clamp(0.625rem, -7.846rem + 17.65vw, 3.438rem);
}

.inner {
	margin-inline: 20px;
}

.top .fv__feature-text--3 {
	font-size: clamp(1.125rem, 0.372rem + 1.57vw, 1.375rem);
}

.top .fv__feature-accent {
	font-size: clamp(1.25rem, 0.874rem + 0.78vw, 1.375rem);
}

.top .product {
	padding-bottom: 400px;
}

.top .works__inner {
	margin-inline: 40px;
}

.top .works__items {
	flex-direction: column;
}

.top .works__img {
	margin-inline: auto;
}

.top .works__btn-wrap {
	justify-content: center;
}

.works .content__message {
	font-size: clamp(1.5rem, 0.747rem + 1.57vw, 1.75rem);
}

.works .content__item-title {
	font-size: clamp(1.438rem, 1.249rem + 0.39vw, 1.5rem);
}

.product .about__item-list {
	font-size: clamp(1.063rem, 0.874rem + 0.39vw, 1.125rem);
}

.product .price__item-text {
	font-size: clamp(1.063rem, 0.874rem + 0.39vw, 1.125rem);
}

.show__tab {
	display: block;
}

.show__medium-pc {
	display: none;
}

.show__sp-medium {
	display: block;
}

}

@media screen and (min-width: 1024px) and (max-width: 1099px) {

.top .product {
	padding-bottom: 400px;
}

.works .content__message {
	font-size: clamp(1.75rem, 0.043rem + 2.67vw, 1.875rem);
}

.show__sp-medium {
	display: block;
}

}

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

.header {
	height: 70px;
}

.header__site-title {
	font-size: 20px;
}

.header__nav {
	display: none;
}

.footer {
	padding-block: 34px 98px;
}

.footer__inner {
	max-width: 390px;
	padding-inline: 44px;
}

.footer__site-title {
	font-size: 18px;
	line-height: 2.67;
}

.footer__lists {
	gap: 33px;
	margin-top: 30px;
}

.footer__list-link {
	font-size: 14px;
}

.footer__policy {
	margin-top: 46px;
}

.footer__policy-link {
	font-size: 12px;
}

.footer__copyright {
	font-size: 12px;
	margin-top: 8px;
}

.btn--product {
	height: 48px;
	width: 300px;
}

.btn--works {
	width: 301px;
}

.drawer__icon {
	display: flex;
}

.inner {
	margin-inline: auto;
	max-width: 390px;
	padding-inline: 20px;
}

.section__title {
	font-size: 30px;
}

.section__title--left-sp {
	text-align: left;
}

.section__title--features {
	font-size: 40px;
}

.section__title-sub {
	font-size: 20px;
}

.section__title--page-title {
	font-size: 35px;
	line-height: 1.29;
	max-width: 350px;
	padding-inline: 20px;
}

.section__title-en {
	font-size: 18px;
	margin-bottom: -7px;
}

.section__title-en--features {
	margin-bottom: -24px;
}

.section__title-en--company {
	margin-bottom: -1px;
}

.section__title-en--page-title {
	font-size: 24px;
	line-height: 1.5;
	margin-bottom: -1px;
}

.section__title-en--product-lp {
	margin-bottom: -2px;
}

.section__title-en--product-price {
	margin-bottom: -2px;
}

.section__title-en--product-flow {
	margin-bottom: -1px;
}

.page-title {
	margin-top: 70px;
	padding-block: 48px 51px;
}

.page-title--works {
	background-image: url(../../assets/img/works_bg_sp.png);
}

.page-title--product {
	background-image: url(../../assets/img/product_bg_sp.png);
}

.webp .page-title--works {
	background-image: url(../../assets/img/works_bg_sp.webp);
}

.webp .page-title--product {
	background-image: url(../../assets/img/product_bg_sp.webp);
}

.top .fv {
	margin-top: 70px;
	padding-block: 22px 192px;
}

.top .fv__bg {
	bottom: 0;
	height: auto;
	top: auto;
}

.top .fv__inner {
	max-width: 390px;
}

.top .fv__message-1 {
	font-size: 28px;
	line-height: 1.45;
}

.top .fv__company-name {
	font-size: 28px;
}

.top .fv__message-2 {
	font-size: 18px;
	height: 30px;
	margin-top: 18px;
	width: auto;
	width: 305px;
}

.top .fv__message-3 {
	font-size: 16px;
	font-weight: 500;
	line-height: 1.31;
	margin-top: 38px;
	text-align: center;
}

.top .fv__message-3::before,
.top .fv__message-3::after {
	width: 100%;
}

.top .fv__message-3::before {
	top: -12px;
}

.top .fv__message-3::after {
	bottom: -12px;
}

.top .fv__features {
	gap: 0;
	justify-content: space-between;
	margin-top: 35px;
}

.top .fv__feature {
	flex-direction: column;
	height: 101px;
	width: 105px;
}

.top .fv__feature-img--1 {
	height: 20px;
	width: 18px;
}

.top .fv__feature-img--2 {
	height: 15px;
	width: 20px;
}

.top .fv__feature-img--3 {
	height: 18px;
	width: 32px;
}

.top .fv__feature-text {
	font-size: 12px;
	line-height: 1.5;
	text-align: center;
}

.top .fv__feature-accent {
	font-size: 16px;
	line-height: 1.2;
}

.top .features {
	padding-block: 66px 50px;
}

.top .features__items {
	margin: 43px auto 47px;
}

.top .features__item {
	align-items: center;
	flex-direction: column;
	margin-bottom: 46px;
}

.top .features__img-wrap {
	margin-inline: auto;
}

.top .features__item-num-wrap {
	gap: 12px;
	margin-top: 17px;
	width: auto;
}

.top .features__item-num {
	font-size: 35px;
	line-height: 1.03;
	opacity: 0.8;
}

.top .features__item-text-wrap {
	margin-left: 0;
}

.top .features__item-title {
	display: none;
}

.top .features__item-title--sp {
	display: block;
}

.top .features__item-text {
	line-height: 1.5;
	margin-top: -10px;
}

.top .features__message-wrap {
	height: 115px;
	text-align: center;
	width: 100%;
}

.top .features__message-corner {
	height: 3px;
	width: 3px;
}

.top .features__message-inner {
	padding-top: 13px;
}

.top .features__message-title {
	font-size: 16px;
}

.top .features__message-text {
	font-size: 14px;
}

.top .product {
	background-color: #0e224b;
	margin-top: 130px;
	padding-bottom: 70px;
}

.top .product__inner {
	margin-inline: auto;
	max-width: 390px;
	padding: 135px 20px 0;
	position: relative;
}

.top .product__img {
	height: 219px;
	left: 0;
	position: absolute;
	top: -130px;
	width: 310px;
	z-index: 2;
}

.top .product__container {
	padding: 0;
	position: relative;
	width: 100%;
}

.top .product__text {
	margin-top: 28px;
}

.top .product__btn-wrap {
	margin-top: 48px;
}

.top .works {
	padding-top: 65px;
}

.top .works__inner {
	max-width: 390px;
}

.top .works__items {
	flex-direction: column;
	gap: 0;
	margin-top: -31px;
}

.top .works__img {
	display: block;
	height: auto;
	margin: 26px auto 0;
	width: 324px;
}

.top .works__item-text {
	font-size: 18px;
	font-weight: 600;
	margin-left: 13px;
}

.top .works__item-text::before {
	height: 17px;
	left: -13px;
	top: 6px;
}

.top .works__btn-wrap {
	justify-content: center;
	margin-top: 49px;
}

.top .company {
	padding-block: 40px 82px;
}

.top .company__table {
	margin-top: 39px;
	width: 100%;
}

.top .company tr {
	display: block;
	height: auto;
	margin-bottom: 30px;
}

.top .company tr:last-of-type {
	margin-bottom: 0;
}

.top .company tr::after {
	bottom: -15px;
}

.top .company tr:last-of-type::after {
	bottom: -15px;
}

.top .company__table-title {
	display: block;
}

.top .company__table-content {
	padding-left: 0;
	padding-top: 4px;
}

.works .content {
	padding-block: 64px;
}

.works .content__inner {
	padding-inline: 15px;
}

.works .content__message {
	font-size: 20px;
	text-align: center;
}

.works .content__message--1 {
	padding-inline: 5px;
}

.works .content__items {
	margin-block: 60px 66px;
}

.works .content__item {
	margin-bottom: 66px;
}

.works .content__item-title-wrap {
	justify-content: flex-start;
}

.works .content__item-title {
	font-feature-settings: "palt";
	font-size: 18px;
	margin-left: 13px;
}

.works .content__item-title::before {
	left: -13px;
	top: 3px;
}

.works .content__img {
	height: auto;
	margin-top: 20px;
	width: 322px;
}

.works .content__past-wrap {
	height: 124px;
	margin: 27px auto 64px;
	text-align: center;
	width: 100%;
}

.works .content__past-corner {
	height: 3px;
	width: 3px;
}

.works .content__past-inner {
	margin-top: 14px;
}

.works .content__past-title {
	font-size: 16px;
}

.works .content__past-text {
	font-size: 14px;
	margin-top: 5px;
}

.product .about {
	padding-block: 64px 65px;
}

.product .about__inner {
	max-width: 390px;
}

.product .about__item {
	margin-bottom: 47px;
	padding-left: 0;
}

.product .about__item-title {
	font-size: 20px;
	line-height: 1.8;
	margin-left: 14px;
}

.product .about__item-title::before {
	height: 17px;
	width: 4px;
}

.product .about__item-text {
	margin-top: 7px;
}

.product .about__item-list {
	font-feature-settings: "palt";
	font-size: 16px;
	line-height: 1.69;
	margin-bottom: 7px;
	padding-inline: 28px 8px;
}

.product .about__item-list:last-of-type {
	margin-bottom: 0;
}

.product .about__item-list::before {
	height: 14px;
	left: 0;
	top: 6px;
	translate: 0 0;
	width: 17px;
}

.product .price {
	padding-block: 48px 70px;
}

.product .price__type-wrap {
	gap: 10px;
	justify-content: flex-start;
	padding-left: 0;
}

.product .price__type-line {
	height: 17px;
	width: 4px;
}

.product .price__items {
	flex-direction: column;
	gap: 30px;
}

.product .price__item {
	margin-inline: auto;
	padding-bottom: 27px;
}

.product .flow {
	padding-block: 64px 66px;
}

.product .flow__inner {
	padding-inline: 15px;
}

.product .flow__items {
	margin-top: 45px;
}

.product .flow__item {
	margin-bottom: 46px;
}

.product .flow__item-left {
	align-items: center;
	display: flex;
	flex-direction: column;
}

.product .flow__item-num {
	font-size: 20px;
	line-height: 1.8;
}

.product .flow__item-num--1::after {
	bottom: -114px;
	height: 73px;
}

.product .flow__item-num--2::after {
	bottom: -104px;
	height: 62px;
}

.product .flow__item-num--3::after {
	bottom: -202px;
	height: 149px;
}

.product .flow__item-num--4::after {
	bottom: -155px;
	height: 111px;
}

.product .flow__item-num--5::after {
	bottom: -129px;
	height: 86px;
}

.product .flow__item-middle {
	display: none;
}

.product .flow__item-img--sp {
	display: block;
	margin-top: 8px;
}

.product .flow__item-right {
	margin-left: 20px;
}

.product .flow__item-text {
	line-height: 1.6;
	margin-top: 8px;
}

.product .flow__item-lists {
	margin-top: 8px;
}

.privacy {
	padding-block: 123px 60px;
}

.privacy__inner {
	max-width: 390px;
	padding-inline: 20px;
}

.privacy__title::after {
	bottom: -20px;
}

.privacy__message {
	margin-top: 65px;
}

.privacy th {
	width: 110px;
}

.good-neighbors {
	padding-bottom: 50px;
}

.show__sp {
	display: block;
}

.show__tab-pc--inline {
	display: none;
}

.show__tab-pc {
	display: none;
}

.show__medium-pc {
	display: none;
}

}

