@charset "utf-8";

/* ==========================================
カスタムプロパティ
========================================== */

:root {
	/* base color */
	--base-font-color: #2E3033;

	/* ui color */
	--ui-border-color: #E2EDF2;
	--ui-focus-color: #004EA2;

	/* site color */
	--primary: #004EA2;
	--secondary: #E2EDF2;
	--tertiary: #BDC6CB;
	--quaternary: #CCCCCC;
	/* --fifth: #ff0; */
	/* --sixth: #0ff; */

	--bg-primary: #004EA2;
	--bg-secondary: #E2EDF2;
	--bg-tertiary: #F2F4F7;

	--border-primary: #CCCCCC;

	--gradation01: linear-gradient(90deg, rgba(0, 78, 162, 1), rgba(19, 115, 189, 1));

	--white: #FFF;

	/* btn color */
	--btn-primary: var(--primary);
	--btn-primary-hover: var(--primary-hover);
	--btn-secondary: var(--secondary);
	--btn-secondary-hover: var(--secondary-hover);
	--btn-tertiary: var(--tertiary);
	--btn-tertiary-hover: var(--tertiary-hover);
	--btn-quaternary: var(--quaternary);
	--btn-quaternary-hover: var(--quaternary-hover);
	--btn-fifth: var(--fifth);
	--btn-fifth-hover: var(--fifth-hover);
	--btn-sixth: var(--sixth);
	--btn-sixth-hover: var(--sixth-hover);

	/* font family */
	--base-font-family: "Zen Kaku Gothic New", sans-serif, "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
	/* --base-font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif; */
	--font-family01: "Zen Kaku Gothic New", sans-serif;
	--font-family02: "Figtree", sans-serif;
	/* --font-family03: ; */

}

/* ==========================================
共通
========================================== */

html {
	/* font-size: var(--root-font-size); */
	font-size: 62.5%;
}

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.94444;
	letter-spacing: 0;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--base-font-color);

}

input {
	appearance: auto;
	border: 1px solid var(--ui-border-color);
}

input:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

textarea {
	border: 1px solid var(--ui-border-color);
}

textarea:focus-visible {
	outline: 1px solid var(--ui-focus-color);
	border-color: var(--ui-focus-color);
}

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

/*===========================================================
共通パーツ
===========================================================*/

.color-base {
    color: var(--base-font-color);
}

.color-primary {
    color: var(--primary);
}

.color-secondary {
    color: var(--secondary);
}

.color-tertiary {
    color: var(--tertiary);
}

.color-quaternary {
    color: var(--quaternary);
}

.color-fifth {
    color: var(--sixth);
}

.color-sixth {
    color: var(--sixth);
}

.color-seventh {
    color: var(--seventh);
}

.color-eighth {
    color: var(--eighth);
}

.color-ninth {
    color: var(--ninth);
}

.color-white {
    color: var(--white);
}

.bg-base {
    background: var(--base-bg-color) !important;
}

.bg-primary {
    background: var(--bg-primary) !important;
}

.bg-secondary {
    background: var(--bg-secondary) !important;
}

.bg-tertiary {
    background: var(--bg-tertiary) !important;
}

.bg-quaternary {
    background: var(--bg-quaternary) !important;
}

.bg-fifth {
    background: var(--bg-fifth) !important;
}

.mt-0 {
	margin-top: 0 !important;
}

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

.p-0 {
	padding: 0 !important;
}

.pt-0 {
	padding-top: 0 !important;
}

.pb-0 {
	padding-bottom: 0 !important;
}

.d-none {
	display: none !important;
}

.br-none br {
	display: none;
}

.br-block br {
	display: block;
}

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

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

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

.cursor-pointer {
	cursor: pointer;
}

/* ==========================================
画像
========================================== */

.img-control {
    position: relative;
    height: 0;
}

.img-control img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    margin: auto;
}

/*===========================================================
ボタン
===========================================================*/

.btn01 {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 2rem;
	font-size: 2rem;
	font-weight: 500;
	color: var(--base-font-color);
	letter-spacing: 0;
	transition: all .3s;
}

.btn01:hover {
	color: var(--primary);
}

.btn01::after {
	content: "";
	display: block;
	width: 8rem;
	height: 8rem;
    background-image: url(../../../../uploads/btn_arrow01.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
	transition: all .3s;
}

.btn01:hover::after {
    background-image: url(../../../../uploads/btn_arrow02.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

.btn02 {
	padding: 2rem 2rem 2rem 3rem;
	max-width: 45rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0em;
	color: var(--base-font-color);
	border: 0.1rem solid var(--quaternary);
	border-radius: 0.5rem;
	transition: all .3s;
}

.btn02:hover {
	color: var(--base-font-color);
	background: var(--secondary);
	border: 0.1rem solid var(--secondary);
}

.btn02::after {
	content: "";
	display: block;
	width: 4rem;
	height: 4rem;
    background-image: url(../../../../uploads/btn_arrow05.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
	transition: all .3s;
}

.btn02:hover::after {
    background-image: url(../../../../uploads/btn_arrow06.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

.btn03 {
    display: flex;
    align-items: center;
	max-width: 52rem;
	width: 100%;
	padding: 3.2rem 16% 3.6rem 7%;
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.4545;
	color: var(--white);
	border: 0.1rem solid var(--primary);
	border-radius: 0.5rem;
	background: var(--primary);
	position: relative;
	transition: all .3s;
}

.btn03::before {
	content: "";
	display: block;
	width: 4rem;
	height: 2.8rem;
    background-image: url(../../../../uploads/mail_white.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
	margin: 0 1.5rem 0 0;
	transition: all .3s;
}

.btn03::after {
	content: "";
	display: block;
	width: 5rem;
	height: 5rem;
    background-image: url(../../../../uploads/btn_arrow07.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
	margin: auto;
	position: absolute;
	right: 2.5rem;
	top: 0;
	bottom: 0;
	transition: all .3s;
}

.btn03:hover {
	color: var(--primary);
	background: var(--white);
}

.btn03:hover::before {
    background-image: url(../../../../uploads/mail_blue.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

.btn03:hover::after {
    background-image: url(../../../../uploads/btn_arrow08.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

.tel-box01 {
	padding: 2.7rem 1.5rem 2.5rem;
	max-width: 52rem;
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	font-size: 4rem;
	font-weight: 600;
	font-family: var(--font-family02);
	letter-spacing: 0.03em;
	line-height: 1.2;
	color: var(--base-font-color);
	background: var(--white);
	border-radius: 0.5rem;
	transition: all .3s;  
	position: relative;
}

.tel-box01::before {
    content: "";
    display: block;
    width: 3.5rem;
    height: 3.5rem;
    background-image: url(../../../../uploads/tel_black.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: no-repeat !important;
}

/* ==========================================
テキスト
========================================== */

.font-family01 {
    font-family: var(--font-family01) !important;
}

.font-family02 {
    font-family: var(--font-family02) !important;
}

.font-family03 {
    font-family: var(--font-family03) !important;
}

.font-weight-bold {
	font-weight: 700 !important;
}

.font-weight-semibold {
	font-weight: 600 !important;
}

.font-weight-medium {
	font-weight: 500 !important;
}

.font-weight-normal {
	font-weight: 400 !important;
}

.text01 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.94444;
}

.text02 {
	font-size: 2.2rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.8181;
}

.text03 {
	font-size: 1.8rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.6666;
}

.text04 {
	font-size: 1.6rem;
	font-weight: 400;
	letter-spacing: 0;
	line-height: 1.5625;
}

.title01 {
	font-size: 4rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.45;
}

.en-title01 {
	font-size: 10rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.2;
}

.sub-title01 {
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0;
	line-height: 1.45;
}

.common-title-box01 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.common-title-box01 .en-title01 {
    position: relative;
    display: flex;
    align-items: center;
}

.common-title-box01 .en-title01::after {
    content: "";
    display: block;
    width: 0.1rem;
    height: 3rem;
    background: var(--quaternary);
    margin: 1.4rem 3rem 0;
}

.common-title-box01 .sub-title01 {
    margin: 1.5rem 0 0;
}

.common-title-box02 {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	position: relative;
}

.common-title-box02 .en-title01 {
    position: relative;
	display: flex;
	flex-direction: column;
    align-items: center;
}

.common-title-box02 .en-title01::after {
    content: "";
    display: block;
    width: 3rem;
    height: 0.1rem;
    background: var(--tertiary);
    margin: 0 0 1.5rem;
}

/* ==========================================
ヘッダー
========================================== */

.header {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	margin: auto;
	background: var(--white);
	position: relative;
	z-index: 999;
}

.header-container {
    max-width: 185rem;
    width: 100%;
    margin: 0 auto;
	padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo-box {
    max-width: 34.6rem;
    width: 23%;
}

.header-logo-box a {
	display: block;
}

.header-logo-box a img {
	display: block;
}

.header-link-container {
    max-width: 85rem;
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 2rem 5.8%;
}

.header-nav-link a {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0;
	color: var(--base-font-color);
}

.header-nav-link a:hover {
    color: var(--base-font-color);
	text-decoration: underline;
}

.header-link-container .contact-btn02 {
	margin: 0 0 0 2rem;
}

.accordion-btn .header-nav-link {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0;
	color: var(--base-font-color);
}

.accordion-btn .header-nav-link:hover {
    color: var(--base-font-color);
	text-decoration: underline;
}

/*===========================================================
ヘッダーアコーディオン
===========================================================*/

.header-nav-accordion {
    min-width: 10rem;
	width: auto;
	position: relative;
}

.header-nav-accordion .accordion-btn {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-nav-accordion .accordion-content {
    display: none;
    padding: 3rem;
    width: 29rem;
    border: 1px solid var(--quaternary);
	border-radius: 0.5rem;
    position: absolute;
    background: var(--white);
    top: 5rem;
    left: 0;
    z-index: 1;
}

.header-nav-accordion .accordion-icon {
	margin: 0 0 0 0.8rem;
	padding: 0.3rem;
	position: relative;
	max-width: 2rem;
	width: 100%;
	height: 2rem;
	background: var(--secondary);
}

.header-nav-accordion .accordion-icon-item01 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 1.4rem;
	height: 0.1rem;
	background-color: var(--base-font-color);
	top: 50%;
	transform: rotate(0deg);
}

.header-nav-accordion .accordion-icon-item02 {
	position: absolute;
	left: 0;
	right: 0;
	margin: auto;
	width: 1.4rem;
	height: 0.1rem;
	background-color: var(--base-font-color);
	top: 50%;
	transform: rotate(90deg);
	transition: .5s;
}

.header-nav-accordion .accordion-icon.is-active > .accordion-icon-item01 {
	display: none;
}

.header-nav-accordion .accordion-icon.is-active > .accordion-icon-item02 {
	top: 50%;
	transform: rotate(180deg);
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
}

.header-nav-link02 {
	position: relative;
}

.header-nav-link02::before {
	content: "";
	display: block;
	width: 100%;
	height: 0.1rem;
	background: var(--quaternary);
	position: absolute;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s;
	z-index: 1;
}

.header-nav-link02 a {
	padding: 2rem 0;
    display: flex;
	align-items: center;
    font-size: 1.8rem;
    color: var(--base-font-color);
	position: relative;
    transition: all .3s;
}

.header-nav-link02 a::before {
	content: "";
	width: 1.4rem;
	height: 1.2rem;
	margin: 0 2rem 0 0;
    background-image: url(../../../../uploads/header_arrow.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
}

.header-nav-link02 a::after {
	content: "";
	display: block;
	width: 1.5rem;
	height: 0.1rem;
	background: var(--primary);
	position: absolute;
	bottom: 0;
	left: 0;
	margin: auto;
	transition: all .3s;
	z-index: 2;
}

.header-nav-link02:first-child a{
	padding: 0 0 2rem;
}

.header-nav-link02 a:hover::after {
	width: 100%;
}

/* ==========================================
クローンヘッダー
========================================== */

.header.clone.is-animation {
    top: 0;
    transition: all .5s;
    visibility: visible;
    opacity: 1;
}

.header.clone {
    position: fixed;
    top: -96px;
    transition: all .5s;
    visibility: hidden;
    opacity: 0;
    z-index: 999;
}

/* ==========================================
スマホ固定ヘッダー
========================================== */

.sp-header {
	width: 100%;
	height: 8rem;
	display: none;
	padding: 0 8rem 0 0;
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 99;
}

.sp-header-block {
	width: 100%;
	height: 100%;
	flex: 1;
	border-right: solid 1px;
}

.sp-header-block-color {
	background: var(--primary);
	border-color: var(--white);
	color: var(--white);
}

.sp-header-link {
	width: 100%;
	height: 100%;
}

.sp-header-link > a {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.sp-header-link > a:before {
	content: "";
	display: inline-block;
	max-width: 3rem;
	width: 100%;
	height: 3rem;
	font-size: 2.5rem;
	font-weight: 900;
	text-align: center;
}

.sp-header-link-pagetop > a:before {
	content: "\f106";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-tel > a:before {
	content: "\f095";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-contact > a:before {
	content: "\f0e0";
	font-family: "Font Awesome 5 Free";
}

.sp-header-link-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

/* ---------- ハンバーガーボタン ---------- */

.sp-nav-btn {
	width: 8rem;
	height: 8rem;
	display: none;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	position: fixed;
	top: auto;
	bottom: 0;
	right: 0;
	z-index: 9999;
}

.sp-nav-btn-color {
	background: var(--secondary);
	color: var(--base-font-color);
}

.sp-nav-btn-bar-box {
	max-width: 4rem;
	width: 100%;
	height: 3rem;
	display: flex;
	position: relative;
}

.sp-nav-btn-bar {
	display: block;
	width: 100%;
	height: 2px;
	background: var(--base-font-color);
	position: absolute;
	right: 0;
	left: 0;
	margin: auto;
	transition: .3s;
}

.sp-nav-btn-bar-top {
	top: 10%;
}

.sp-nav-btn-bar-center {
	top: 50%;
	transform: translateY(-50%);
}

.sp-nav-btn-bar-bottom {
	top: 90%;
	transform: translateY(-100%);
}

.sp-nav-btn-text {
	font-size: 1.4rem;
	margin: .7rem 0 0;
}

.js-open .sp-nav-btn-bar-top {
	top: 50%;
	transform: rotate(45deg) translateX(-3%) translateY(-40%);
}

.js-open .sp-nav-btn-bar-center {
	opacity: 0;
}

.js-open .sp-nav-btn-bar-bottom {
	top: 50%;
	transform: rotate(-45deg) translateX(3%) translateY(-40%);
}

/* ---------- ハンバーガーメニュー ---------- */

.js-sp-nav {
	display: none;
	max-width: 1920px;
	width: 100%;
	margin: auto;
	padding: 0;
	position: fixed;
	top: 0;
	bottom: 0;
	right: -100%;
	transition: ease .5s;
	z-index: 999;
}

.sp-nav.js-open {
	right: 0;
}

.sp-nav-bg {
	background: var(--white);
}

.sp-nav-area {
	width: 100%;
	height: 100%;
	overflow: auto;
	padding: 10rem 1.5rem;
}

.sp-nav-list {
	padding: 10rem 0;
	width: 100%;
	height: 100%;
	overflow-y: scroll;
	-ms-overflow-style: none;
}

.sp-nav-list::-webkit-scrollbar {
	display:none;
}

.sp-nav-list-item {
	width: 100%;
	display: block;
	font-weight: bold;
	line-height: 1.5em;
	letter-spacing: 0.05em;
	position: relative;
	border-bottom: solid 1px;
}

.sp-nav-list-item a{
	display: block;
	padding: 1.5rem 0;
	font-size: 1.6rem;
	transition: .3s;
}

.sp-nav-list-item a:hover{
	opacity: .6;
}

.sp-nav-list-item-color{
	border-bottom-color: var(--sp-border-color);
}

/* ==========================================
フッター
========================================== */

.footer {
    max-width: 192rem;
    width: 100%;
    margin: 0 auto;
	padding: 0 1.5rem 5rem;
    position: relative;
}

.footer::before {
	content: "";
	width: 100%;
	height: 81.91%;
	background: var(--gradation01);
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
}

.footer-contact-contaier {
    max-width: 152rem;
    width: 100%;
    margin: 0 auto;
    padding: 8rem 1.5rem;
	border-radius: 0.5rem;
	position: relative;
	z-index: 1;
}

.footer-contact-area {
    max-width: 132rem;
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-contact-left {
    max-width: 60rem;
    width: 46%;
}

.footer-contact-text-box {
    margin: 2rem 0 0;
}

.footer-contact-right {
    max-width: 52rem;
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

.footer-container {
    max-width: 182rem;
    width: 100%;
    margin: 10rem auto 0;
    padding: 11rem 1.5rem 3.5rem;
    background: var(--white);
	border-radius: 0.5rem;
	position: relative;
	z-index: 1;
}

.footer-area {
    max-width: 162rem;
    width: 100%;
    margin: 0 auto;
}

.footer-area {
    margin: 0 auto;
    max-width: 162rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-left {
    max-width: 36rem;
    width: 40%;
}

.footer-logo {
    max-width: 34.6rem;
    width: 100%;
}

.footer-address-area {
    margin: 2.5rem 0 0;
}

.footer-address-box {
    margin: 1rem 0 0;
}

.footer-text-flex {
    display: flex;
    align-items: flex-start;
}

.footer-text-area {
    max-width: 36rem;
    width: 100%;
    margin: 1.6rem 0 0;
    padding: 1.6rem 1.8rem 1.5rem;
    background: var(--bg-tertiary);
    border-radius: 0.5rem;
}

.footer-right {
    max-width: 48rem;
    width: 40%;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.footer-nav-link {
    margin: 3rem 0 0;
    display: block;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.45;
    color: var(--base-font-color);
}

.footer-nav-link:first-child {
    margin: 0;
}

.footer-nav-link:hover {
    color: var(--base-font-color);
    text-decoration: underline;
}

.copyright-area {
    margin: 1.5rem 0 0;
    text-align: center;
}

.copyright {
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0;
	opacity: .5;
}

/* ==========================================
お知らせ
========================================== */

.news-item {
    overflow: hidden;
}

.news-link{
	display: block;
	transition: all .3s;
}

.news-link:hover {
	opacity: 0.7;
}

.news-img-box {
    width: 100%;
	background: var(--secondary);
    overflow: hidden;
    position: relative;
    padding-bottom: 68.97%;
}

.news-img-box img {
	position: absolute;
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.news-flex {
    margin: 1.5rem 0 0;
    display: flex;
	align-items: flex-start;
}

.news-flex .news-date {
    margin: 0 2rem 0 0;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 0;
	line-height: 2;
    font-family: var(--font-family02);
    color: var(--base-font-color);
}

.news-flex .news-category {
    padding: 0.1rem 1.5rem 0.3rem;
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0;
	line-height: 1.4444;
	color: var(--primary);
    background: var(--secondary);
    border-radius: 1.5rem;
    min-width: 10.2rem;
    width: auto;
    text-align: center;
    word-break: keep-all;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.news-title {
    margin: 1rem 0 0;
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0;
	line-height: 1.5;
}

/* ==========================================
パンくず
========================================== */

.breadcrumb {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 0.5rem;
	background: var(--gradation01);
}

.breadcrumb-list {
	max-width: 122rem;
	width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	color: var(--white);
}

.breadcrumb-item {
	font-size: 1.4rem;
	font-weight: 400;
	letter-spacing: 0.05em;
	line-height: 1.7;
	display: flex;
	align-items: center;
}

.breadcrumb-item a {
	display: block;
	text-decoration: underline;
}

.breadcrumb-item a:hover {
	text-decoration: none;
}

.breadcrumb-separator {
	margin: 0 1rem;
    font-size: 1.4rem;
	transform: translateY(-2px);
}

/* ==========================================
下層
========================================== */

.in-cover {
	max-width: 192rem;
	width: 100%;
	height: 40rem;
	margin: 0 auto;
	position: relative;
}

.in-cover::before {
	content: "";
	display: block;
	width: 100%;
	height: 80%;
	background: linear-gradient(to bottom, rgba(38, 38, 38, 0), rgba(38, 38, 38, .5));
	position: absolute;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	z-index: 2;
}

.in-cover::after {
    content: "";
    display: block;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    background: var(--gradation02);
    z-index: 2;
}

.in-cover-bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
}

.in-cover-bg > img {
    object-fit: cover;
    width: 100%;
    height: 100% !important;
}

.in-cover-box {
	padding: 0 1.5rem;
	max-width: 125rem;
    width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: column;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 2;
}

.in-cover-title {
    font-size: 6rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 2em;
    color: var(--white);
    text-decoration: underline;
    text-underline-offset: 2rem;
}

.in-cover-sub-title {
	margin: 1rem 0 0;
	font-size: 2.5rem;
    font-weight: 400;
    font-family: var(--font-family02);
    color: var(--white);
    letter-spacing: 0;
    line-height: 1.2;
}

.in-wrapper {
	max-width: 192rem;
	width: 100%;
	margin: 0 auto;
	padding: 13rem 0;
}

.inner01 {
	max-width: 125rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.inner02 {
	max-width: 135rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.inner03 {
	max-width: 145rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.inner04 {
	max-width: 155rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

.inner05 {
	max-width: 155rem;
	width: 100%;
	margin: 0 auto;
	padding: 0 1.5rem;
}

/* ==========================================
テーブル
========================================== */

.table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
	font-size: 1.8rem;
}

.table th, .table td {
    padding: 1.5rem !important;
    border: 1px solid var(--secondary) !important;
    text-align: left;
	position: relative;
}

.table-primary th, .table-primary td:first-child {
    background-color: var(--primary);
    vertical-align: middle;
    color: var(--white);
    font-weight: 600;
    width: 25%;
}

/* ==========================================
下層バナー
========================================== */

.common-banner-container01 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem 2rem;
}

.common-banner-container02 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
}

.common-banner-link {
    display: block;
    width: 100%;
    position: relative;
	transition: all .3s;
}

.common-banner-link::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(38, 38, 38, 0), rgba(38, 38, 38, .7));
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    z-index: 1;
	transition: opacity .3s;
    opacity: 1;
}

.common-banner-link:hover::before {
	opacity: 0.7;
}

.common-banner-img-box {
    width: 100%;
    position: relative;
    padding-top: 56.6%;
}

.common-banner-img-box img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    object-fit: cover;
}

.common-banner-title-area {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
	gap: 2rem;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5%;
    margin: auto;
    color: var(--white);
    z-index: 2;
}

.common-banner-title-area::after {
	content: "";
	display: block;
    width: 4rem;
    height: 4rem;
    background-image: url(../../../../uploads/btn_arrow03.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
    transition: all .3s;
}

.common-banner-link:hover .common-banner-title-area::after {
    background-image: url(../../../../uploads/btn_arrow04.svg) !important;
    background-attachment: scroll !important;
    background-position: center top !important;
    background-size: 100% !important;
    background-repeat: repeat !important;
}

.common-banner-title {
	color: white;
}

/* ==========================================
建築事業・解体事業・引越し事業・居酒屋事業
========================================== */

/* ------------------------------------------
service01
------------------------------------------ */

.service01-title {
    padding: 0 0 2rem;
    position: relative;
}

.service01-title::before {
    content: "";
    display: block;
    width: 3rem;
    height: 0.1rem;
    background: var(--primary);
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto;
}

.service01-text-area {
    margin: 3rem 0 0;
}

.service01-text-box {
    margin: 5rem 0 0;
}

.service01-text-box:first-child {
    margin: 0;
}

.service01-main-title-box {
    text-align: center;
}

/* ------------------------------------------
service02
------------------------------------------ */

.service02-container {
    margin: 10rem 0 0;
}

.service02-block {
    margin: 8rem 0 0;
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
}

.service02-block:first-child {
    margin: 0;
}

.service02-block:nth-of-type(even) {
    flex-direction: row;
}

.service02-img-box {
    max-width: 56rem;
    width: 46%;
}

.service02-text-container {
    max-width: 60rem;
    width: 49%;
}

.service02-title-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem 2rem;
}

.service02-number {
    font-size: 5rem;
    letter-spacing: 0;
    line-height: 1.25;
}

.service02-text-box {
    margin: 3rem 0 0;
}

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1920px) {

	html {
		/* 10px */
		font-size: 0.52083vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1550px) {

	html {
		/* 10px */
		font-size: 0.64516vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 1024px) {

	html {
		/* 10px */
		font-size: 0.97656vw;
	}

	/*===========================================================
	共通パーツ
	===========================================================*/

	.br-lg-none br {
		display: none;
	}

	.br-lg-block br {
		display: block;
	}

	.text-lg-left {
		text-align: left;
	}

	.text-lg-center {
		text-align: center;
	}

	.text-lg-right {
		text-align: right;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	.btn01::after {
		width: 6rem;
		height: 6rem;
	}

	.btn03 {
		font-size: 2rem;
	}

	/*===========================================================
	テキスト
	===========================================================*/

	.common-title-box01 {
		flex-direction: column;
	}

	.common-title-box01 .en-title01 {
		flex-direction: column;
	}

	.common-title-box01 .en-title01::after {
		width: 3rem;
		height: 0.1rem;
		margin: 1rem 0 3rem;
	}

	.common-title-box01 .sub-title01 {
		margin: 0;
	}

	.title01 {
		font-size: 3.2rem;
	}

	/*===========================================================
	ヘッダー
	===========================================================*/

	.header-link-container {
		gap: 3%;
	}

	/* ==========================================
	テーブル
	========================================== */

	.table {
		font-size: 1.6rem;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover {
		height: 30rem;
	}

	.in-cover-title {
		font-size: 5rem;
	}

	.in-cover-sub-title {
		font-size: 2.2rem;
	}

	/* ==========================================
	下層
	========================================== */

	.in-wrapper {
		padding: 10rem 0;
	}

	/* ==========================================
	建築事業・解体事業・引越し事業・居酒屋事業
	========================================== */

	/* ------------------------------------------
	service02
	------------------------------------------ */

	.service02-container {
		margin: 8rem 0 0;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 768px) {

	html {
		/* 10px */
		font-size: 1.30208vw;
	}

	/*===========================================================
	共通パーツ
	===========================================================*/

	.br-md-none br {
		display: none;
	}

	.br-md-block br {
		display: block;
	}

	.text-md-left {
		text-align: left;
	}

	.text-md-center {
		text-align: center;
	}

	.text-md-right {
		text-align: right;
	}

	/*===========================================================
	テキスト
	===========================================================*/

	.text01 {
		font-size: 1.6rem;
	}

	.text02 {
		font-size: 2rem;
	}

	.text03 {
		font-size: 1.6rem;
	}

	.text04 {
		font-size: 1.4rem;
	}

	.title01 {
		font-size: 3.2rem;
	}

	.en-title01 {
		font-size: 8rem;
	}

	.sub-title01 {
		font-size: 1.8rem;
	}

    .common-title-box01 .en-title01::after {
        margin: 1rem 0 2rem;
    }

	/* ==========================================
	ヘッダー
	========================================== */

	.header-container {
		padding: 2rem 1.5rem 1rem;
	}

	.header-link-container {
		display: none;
	}

	.header-logo-box {
		max-width: 28rem;
		width: 100%;
		margin: 0 auto;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn {
		display: flex;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.js-sp-nav {
		display: block;
	}

	/*===========================================================
	フッター
	===========================================================*/

	.footer-contact-contaier {
		padding: 6rem 1.5rem;
	}

	.footer-contact-area {
		flex-direction: column;
		justify-content: center;
	}

	.footer-contact-left {
		width: 100%;
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-contact-right {
		margin: 4rem 0 0;
		width: 100%;
	}

	.footer-container {
		margin: 8rem auto 0;
		padding: 8rem 1.5rem 4rem;
	}

	.footer-left {
		max-width: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
	}

	.footer-address-area {
		display: flex;
		flex-direction: column;
		align-items: center;
	}

	.footer-right {
		display: none;
	}

	/* ==========================================
	下層
	========================================== */

	.in-wrapper {
		padding: 8rem 0;
	}

	/* ==========================================
	テーブル
	========================================== */

    .table, 
    .table tbody, 
    .table tr,
	.table th,
    .table td {
        display: block;
        width: 100% !important;
    }
    
    .table td {
        border-bottom: none;
    }

	/* ==========================================
	下層バナー
	========================================== */

	.common-banner-container01 {
		grid-template-columns: repeat(1, 1fr);
	}

	/* ==========================================
	建築事業・解体事業・引越し事業・居酒屋事業
	========================================== */

	/* ------------------------------------------
	service02
	------------------------------------------ */

	.service02-container {
		margin: 6rem 0 0;
	}

	.service02-block {
		flex-direction: column;
		justify-content: center;
	}

	.service02-block:nth-of-type(even) {
		flex-direction: column;
		justify-content: center;
	}

	.service02-img-box {
		width: 100%;
	}

	.service02-text-container {
		margin: 4rem 0 0;
		max-width: 56rem;
		width: 100%;
	}

	.service02-text-box {
		margin: 2rem 0 0;
	}

	.service02-number {
		font-size: 4rem;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 576px) {

	html {
		/* 12px */
		font-size: 2.08333vw;
	}

	/*===========================================================
	共通パーツ
	===========================================================*/
	
	.br-sm-none br {
		display: none;
	}

	.br-sm-block br {
		display: block;
	}

	.text-sm-left {
		text-align: left;
	}

	.text-sm-center {
		text-align: center;
	}

	.text-sm-right {
		text-align: right;
	}

	/*===========================================================
	ボタン
	===========================================================*/

	.btn01 {
		gap: 2rem;
		font-size: 1.8rem;
	}

	.btn01::after {
		width: 5rem;
		height: 5rem;
	}

	.btn02 {
		padding: 1.8rem 1.5rem 1.5rem 2rem;
		max-width: 45rem;
		width: 100%;
		gap: 2rem;
		font-size: 2rem;
	}

	.btn02::after {
		width: 3rem;
		height: 3rem;
	}

	.btn03 {
		max-width: 52rem;
		width: 100%;
		padding: 2.5rem 16% 2.9rem 5%;
		font-size: 1.6rem;
	}

	.btn03::before {
		width: 3rem;
		height: 1.8rem;
		margin: 0 1.5rem 0 0;
	}

	.btn03::after {
		width: 4rem;
		height: 4rem;
		right: 1rem;
		top: 0;
		bottom: 0;
	}

	.tel-box01 {
		padding: 2rem 1.5rem 1.8rem;
		max-width: 52rem;
		width: 100%;
		gap: 1rem;
		font-size: 3rem;
	}

	.tel-box01::before {
		width: 3rem;
		height: 3rem;
	}

	/*===========================================================
	テキスト
	===========================================================*/

	.text01 {
		font-size: 1.4rem;
	}

	.text02 {
		font-size: 1.8rem;
	}

	.text03 {
		font-size: 1.4rem;
	}

	.text04 {
		font-size: 1.3rem;
	}

	.title01 {
		font-size: 2.6rem;
	}

	.en-title01 {
		font-size: 6rem;
	}

	.sub-title01 {
		font-size: 1.6rem;
	}

	/* ==========================================
	ヘッダー
	========================================== */

	.header-logo-box {
		max-width: 25rem;
	}

	/* ==========================================
	スマホ固定ヘッダー
	========================================== */
	.sp-header{
		height: 6rem;
		padding: 0 6rem 0 0;
	}

	.sp-header-link > a:before{
		font-size: 2rem;
	}

	.sp-header-link-text{
		font-size: 1rem;
		margin: 0;
	}

	/* ---------- ハンバーガーボタン ---------- */

	.sp-nav-btn{
		width: 6rem;
		height: 6rem;
	}

	.sp-nav-btn-bar-box{
		max-width: 3rem;
	}

	.sp-nav-btn-text{
		font-size: 1rem;
	}

	.sp-nav-btn-text{
		margin: 0;
	}

	/* ---------- ハンバーガーメニュー ---------- */

	.sp-nav-list-item a{
		padding: 1.2rem 0;
		font-size: 1.45rem;
	}

	/*===========================================================
	フッター
	===========================================================*/

	.footer-logo {
		max-width: 25.6rem;
		width: 100%;
	}

	/*===========================================================
	お知らせ
	===========================================================*/

	.news-flex .news-date {
		margin: 0 1rem 0 0;
		font-size: 1.4rem;
	}

	.news-flex .news-category {
		padding: 0.4rem 0.5rem;
    	font-size: 1.5rem;
	}

	/* ==========================================
	テーブル
	========================================== */

	.table {
		font-size: 1.4rem;
	}

	/* ==========================================
	下層カバー
	========================================== */

	.in-cover-title {
		font-size: 4rem;
	}

	.in-cover-sub-title {
		font-size: 2rem;
	}

	/* ==========================================
	下層バナー
	========================================== */

	.common-banner-container02 {
		grid-template-columns: repeat(1, 1fr);
		gap: 4rem;
	}

	/* ==========================================
	建築事業・解体事業・引越し事業・居酒屋事業
	========================================== */

	/* ------------------------------------------
	service02
	------------------------------------------ */

	.service02-number {
        font-size: 3.5rem;
    }

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media screen and (width <= 414px) {

	html {
		/* 14px */
		font-size: 2.43055vw;
	}

}

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */