@charset "utf-8";

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

:root {

	/* ui color */
	--ui-border-color: #CECECE;
	--ui-border-color-light: #E5E5E5;
	
	/* site color */

	--c-primary: #5DC3A2;
	--c-secondary: #E27454;
	--c-tertiary: #F8E193;

	--c-dark: #333;
	--c-gray-dark: #606060;
	--c-gray: #707070;
	--c-white: #fff;     

	--bg-primary-light:  #F7F5F2;
	--bg-gray-light: #FAFAFA;


	/* font family */
	--base-font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;

}

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

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

body {
	margin: 0 auto;
	max-width: 192rem;
	width: 100%;
	line-height: 1.6;
	font-size: 1.8rem;
	font-weight: 500;
	font-family: var(--base-font-family);
	color: var(--c-dark);
	overflow-x: hidden;
}

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

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

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

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

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

a, button {
	transition: 0.3s;
}

p > a {
    text-decoration: underline;
    color: inherit;
}

p > a:hover {
    text-decoration: none;
}

.br-none br {
    display: none;
}

/* ==========================================
タイトル
========================================== */

.title01 {
    font-size: 5rem;
    font-weight: bold;
    line-height: 1.44em;
}

.title02 {
    font-size: 4.5rem;
    font-weight: bold;
    line-height: 1.44em;
}

.title03 {
    font-size: 3.5rem;
    font-weight: bold;
    line-height: 1.45em;
}

.title04 {
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.44em;
}

.sub-title01 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.5em;
    color: var(--c-primary);
}

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

.text01 {
    line-height: 1.94em;
}

.text02 {
    line-height: 1.44em;
}

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

.text-enhance01 strong {
    font-size: 1.6em;
    line-height: 1.45em;
}

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

.btn01 {
    max-width: 50rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1.46em;
    padding: 2.6rem 1.5rem 2.7rem;
    border-radius: 10rem;
}

.btn01:hover {
    opacity: 0.65;
}

.btn01-arrow {
    padding: 2.6rem 8rem 2.7rem 5rem;
    position: relative;
}

.btn01-arrow:before {
    content: "";
    display: block;
    max-width: 6rem;
    width: 100%;
    height: 6rem;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    right: 1.95rem;
    transform: translateY(-50%);
}

.btn01-primary {
    background: var(--c-primary);
    color: var(--c-white);
}

.btn01-arrow.btn01-primary:before {
    background: url(../../../../uploads/arrow_icon_green.svg) no-repeat center / 2.6rem 2.1rem var(--c-white);
}

.btn02 {
	max-width: 50rem;
	width: 100%;
	display: flex;
	align-items: center;
	font-size: 2.5rem;
	font-weight: bold;
	line-height: 1.44em;
	padding: 2.6rem 1.9rem 2.4rem 10rem;
	border-radius: 10rem;
	background: var(--c-white);
	border: solid 1px #C6C0B8;
	position: relative;
}

.btn02:before {
    content: "";
    display: block;
    max-width: 6.2rem;
    width: 100%;
    height: 6.2rem;
    border-radius: 50%;
    border: solid 1px #C6C0B8;
    background-color: #F7F5F2;
    position: absolute;
    top: 50%;
    left: 1.9rem;
    transform: translateY(-50%);
}

.btn02:hover {
    opacity: 0.65;
}

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

.img-rounded01 {
    border-radius: 1rem;
    overflow: hidden;
}

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

.img-rounded02 {
    border-radius: 1.5rem;
    overflow: hidden;
}

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

.img-rounded03 {
    border-radius: .5rem;
    overflow: hidden;
}

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

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

.incover-wrapper {
	padding: 4rem 0 0;
	position: relative;
	z-index: 9;
}

.incover-inner {
	max-width: 186.5rem;
	width: 100%;
	padding: 0 0 0 1.5rem;
	margin: 0 0 0 auto;
}

.incover-area {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.incover-text-block {
	flex: 1;
}

.incover-title {
	font-size: 6.2rem;
	font-weight: bold;
	line-height: 1.45em;
	margin: 1.8rem 0 0;
}

.incover-img-block {
	max-width: 100rem;
	width: 54.05%;
	margin: 0 0 0 3%;
}


/* ==========================================
パーツ
========================================== */

.decoration-wrapper {
    position: relative;
}

.decoration {
    position: absolute;
    margin: auto;
}

.inner {
    max-width: 123rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
}

.lead-wrapper {
    padding: 16rem 0 0;
}

.lead-text {
    font-weight: bold;
    text-align: center;
    margin: 6rem 0 0;
}

.lead-text + .lead-text {
    margin: 1.5rem 0 0;
}

.lead-decoration01 {
    max-width: 109.8rem;
    width: 100%;
    top: -18rem;
    left: -61rem;
}

.lead-decoration02 {
    max-width: 43.3rem;
    width: 100%;
    right: -7rem;
    bottom: -23rem;
}

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

.base-table > table {
    background: var(--c-white);
    border: solid 1px var(
    --ui-border-color-light);
}

.base-table > table td {
    border: solid 1px var(--ui-border-color-light);
}

.base-table > table td:nth-child(1) {
    width: 16.66%;
    background: var(--c-secondary);
    color: var(--c-white);
    padding: 2rem 2.5rem;
}

.base-table > table td:nth-child(2) {
    padding: 2rem 5rem;
}


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

header {
    max-width: 192rem;
    width: 100%;
    background: var(--c-white);
    margin: auto;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 999;
}

.header-wrapper {
    background: var(--c-white);
    position: relative;
    z-index: 999;
}

.header-inner {
    max-width: 181rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.7rem 1.5rem 1.8rem;
    margin: auto;
}

.header-logo {
    max-width: 23.9rem;
    width: 100%;
    display: block;
    margin: 1.4rem 0 0;
}

.gnavi {
    max-width: 93.5rem;
    width: 100%;
    line-height: 1.44em;
    margin: 0 0 0 7.78rem;
}

.gnavi-list {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.gnavi-link {
    display: block;
    position: relative;
}

.gnavi-link:before {
    content: "";
    display: block;
    width: 0;
    height: 0.2rem;
    background: var(--c-primary);
    margin: auto;
    position: absolute;
    bottom: -2px;
    right: 0;
    left: 0;
    transition: 0.3s;
}

.gnavi-link:hover:before {
    width: 100%;
}

.header-tel-area {
    max-width: 19.66rem;
    width: 100%;
    margin: 0 0 0 4.25rem;
}

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

.header-tel-icon {
    max-width: 1.4rem;
    width: 100%;
}

.header-tel-number {
    font-size: 3.1rem;
    font-weight: bold;
    line-height: 1.45em;
    margin: 0 0 0 0.85rem;
}

.header-tel-info {
    font-size: 1.4rem;
    line-height: 1.42em;
    text-align: center;
    margin: -0.2rem 0 0;
}

.header-contact-area {
    max-width: 26rem;
    width: 100%;
    margin: 0 0 0 2.9rem;
}

.header-link {
    max-width: 19.3rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    line-height: 1.4em;
    color: var(--c-gray-dark);
    margin: auto;
}

.header-link:after {
    content: "";
    display: block;
    max-width: 1.6rem;
    width: 100%;
    height: 1.3rem;
    background: url(../../../../uploads/arrow_icon_green.svg) no-repeat center / contain;
    margin: 0 0 0 1.15rem;
}

.header-link:hover {
    opacity: 0.65;
}

.header-btn {
    max-width: 26rem;
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--c-primary);
    color: var(--c-white);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.4em;
    border-radius: 5.4rem;
    padding: 1.1rem 1.5rem 1.2rem;
    margin: 0.9rem auto 0;
}

.header-btn-icon-box {
    max-width: 4.2rem;
    width: 100%;
    height: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--c-white);
    border-radius: 50%;
    margin: 0 1.8rem 0 0;
}

.header-btn-icon {
    max-width: 1.8rem;
    width: 100%;
    line-height: 1em;
}

.header-btn:hover {
	opacity: 0.65;
}

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

.hamburger-btn {
	max-width: 5rem;
	width: 100%;
	height: 3rem;
	display: none;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: .3s;
	margin: 0 0 0 2rem;
}

.hamburger-btn:hover {
	opacity: 0.65;
}

.hamburger-btn-inner {
	width: 100%;
	height: 100%;
	position: relative;
}

.hamburger-btn-bar {
	width: 100%;
	height: 2px;
	background: var(--c-dark);
	position: absolute;
	right: 0;
	left: 0;
	transition: .5s;
	margin: auto;
}

.hamburger-btn-bar-top {
	top: 0;
}

.hamburger-btn-bar-center {
	top: 50%;
}

.hamburger-btn-bar-bottom {
	top: 100%;
}

.js-open .hamburger-btn-bar-top {
	top: 50%;
	transform: rotate(30deg);
}

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

.js-open .hamburger-btn-bar-bottom {
	top: 50%;
	transform: rotate(-30deg);
}

.nav-area {
	max-width: 192rem;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	opacity: 0;
	visibility: hidden;
	transition: .5s;
}

.nav-content {
	width: 100%;
	height: 100%;
	overflow: auto;
	background: var(--bg-primary-light);
	padding: 14.5rem 2rem 10rem;
	margin: auto;
	position: absolute;
	left: auto;
	right: 0;
	transition: 1s;
}

.nav-content-inner {
    background: var(--c-white);
    padding: 6rem 2rem;
    border-radius: 1rem;
}

.js-open.nav-area {
	opacity: 1;
	visibility: visible;
}

.nav-list {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 1.8rem;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.4em;
}

.nav-link {
	color: var(--c-dark);
}

.nav-link:hover {
	color: var(--c-primary);
}

.nav-tel-area {
    margin: 4rem auto 0;
}

.nav-tel-block {
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-tel-icon {
    max-width: 1.4rem;
    width: 100%;
}

.nav-tel-number {
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.45em;
    margin: 0 0 0 0.85rem;
}

.nav-tel-info {
    font-size: 1.5rem;
    line-height: 1.42em;
    text-align: center;
    margin: -0.2rem 0 0;
}

.nav-contact-area {
    max-width: 31rem;
    width: 100%;
    margin: 2.5rem auto 0;
}

.nav-contact-link {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1.4em;
    color: var(--gray);
    margin: 1.8rem auto 0;
}

.nav-contact-link:after {
    content: "";
    display: block;
    max-width: 1.6rem;
    width: 100%;
    height: 1.3rem;
    background: url(../../../../uploads/arrow_icon_green.svg) no-repeat center / contain;
    margin: 0 0 0 1.15rem;
}

.nav-contact-link:hover {
    opacity: 0.65;
}

.nav-contact-btn {
    width: 100%;
    display: flex;
    align-items: center;
    background: var(--c-primary);
    color: var(--c-white);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.4em;
    border-radius: 5.4rem;
    padding: 1.1rem 1.5rem 1.2rem;
    margin: 0 auto;
}

.nav-contact-btn-icon-box {
    max-width: 4.2rem;
    width: 100%;
    height: 4.2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--c-white);
    border-radius: 50%;
    margin: 0 1.8rem 0 0;
}

.nav-contact-btn-icon {
    max-width: 1.8rem;
    width: 100%;
    line-height: 1em;
}

.nav-contact-btn:hover {
    opacity: 0.65;
}

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

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

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

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

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

.sp-header-link:before {
	content: "";
	display: inline-block;
	max-width: 2rem;
	width: 100%;
	height: 2rem;
}

.sp-header-link-tel:before {
	background: url(../../../../uploads/tel_icon_white.svg) no-repeat center / contain;
}

.sp-header-link-map:before {
	background: url(../../../../uploads/map_icon_white.svg) no-repeat center / contain;
}

.sp-header-link-contact:before {
	background: url(../../../../uploads/mail_icon_white.svg) no-repeat center / contain;
}

.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(--c-white);
}

.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: 3px;
	background: var(--c-white);
	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(35deg) translateY(-50%);
}

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

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

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

.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(--c-primary);
}

.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-wrapper {
    padding: 13rem 0 5.7rem;
}

.footer-inner {
    max-width: 182.7rem;
    width: 100%;
    padding: 0 1.5rem 0 0;
}

.footer-area {
    display: flex;
    justify-content: space-between;
}

.footer-left-block {
    max-width: 46.65rem;
    width: 100%;
    display: flex;
    justify-content: space-between;
}

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

.footer-tel {
    max-width: 19.66rem;
    width: 100%;
    margin: 1.3rem auto 0;
}

.footer-tel-box {
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-tel-icon {
    max-width: 1.4rem;
    width: 100%;
}

.footer-tel-number {
    font-size: 2.9rem;
    font-weight: bold;
    line-height: 1.45em;
    margin: 0 0 0 0.85rem;
}

.footer-tel-info {
    font-size: 1.3rem;
    line-height: 1.42em;
    text-align: center;
    margin: -0.2rem 0 0;
}

.footer-right-block {
    max-width: 91.2rem;
    width: 100%;
    margin: 1.6rem 0 -3.7rem 4%;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 1.6rem;
}

.footer-nav-link {
    display: block;
}

.footer-nav-link:hover {
    text-decoration: underline;
}

.footer-btn {
    max-width: 33.6rem;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--c-primary);
    color: var(--c-white);
    font-size: 2rem;
    font-weight: bold;
    line-height: 1.45em;
    border-radius: 5.4rem;
    padding: 1.8rem 1.5rem;
    margin: -3.7rem 0 0 auto;
}

.footer-btn:hover {
    opacity: 0.65;
}

.copyright {
    font-size: 1.5rem;
    line-height: 1.4em;
    color: var(--c-gray-dark);
    text-align: right;
    margin: 3.1rem 0 0;
}

/* ==========================================
エントリー
========================================== */

.entry-wrapper {
    padding: 13rem 0 0;
    position: relative;
}

.entry-inner {
    max-width: 123rem;
    width: 100%;
    padding: 0 1.5rem;
    margin: auto;
    position: relative;
}

.entry-frame {
    padding: 1rem;
    border-radius: 1rem;
    background: url(../../../../uploads/top_entry_bg.jpg) no-repeat center / cover;
}

.entry-frame-inner {
    border: solid 1px var(--c-secondary);
    border-radius: 1rem;
    padding: 9rem 5.4rem;
}

.entry-area {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
    margin: 10.1rem 0 0;
}

.entry-title01 {
    font-size: 7rem;
    font-weight: bold;
    line-height: 1.44em;
}

.entry-img-block {
    max-width: 39.9rem;
    width: 37.28%;
    aspect-ratio: 399/530;
}

.entry-text-block {
    max-width: 61.7rem;
    width: 57.66%;
}

.entry-title02 {
    font-size: 3.8rem;
    font-weight: bold;
    line-height: 1.44em;
}

.entry-text01 {
    margin: 2.5rem 0 0;
}

.entry-btn02 {
    max-width: 100%;
    padding: 3.7rem 8rem;
    margin: 6.2rem 0 0;
}

.entry-text-box {
    margin: 4rem 0 0;
}

.entry-btn-list {
    display: flex;
    gap: 5.51%;
    margin: 8.8rem 0 0;
}

.entry-btn01 {
    width: 100%;
    display: flex;
    align-items: center;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1.44em;
    padding: 4rem 1.9rem 4rem 10rem;
    border-radius: 10rem;
    background: var(--c-white);
    border: solid 1px #C6C0B8;
    position: relative;
}

.entry-btn01:before {
    content: "";
    display: block;
    max-width: 6.2rem;
    width: 100%;
    height: 6.2rem;
    border-radius: 50%;
    border: solid 1px #C6C0B8;
    background-color: #F7F5F2;
    position: absolute;
    top: 50%;
    left: 1.9rem;
    transform: translateY(-50%);
}

.entry-btn01:hover {
    opacity: 0.65;
}

.entry-btn01-flow {
    max-width: 28rem;
}

.entry-btn01-flow:before {
    background-image: url(../../../../uploads/pen_icon_green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2.7rem;
}

.entry-btn01-info {
    max-width: 30.3rem;
}

.entry-btn01-info:before {
    background-image: url(../../../../uploads/memo_icon_green.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: 2.7rem 2.9rem;
}

.common-entry-decoration {
    margin: auto;
    position: absolute;
    z-index: -1;
}

.common-entry-decoration01 {
    max-width: 62.1rem;
    width: 32.34%;
    top: -12.02%;
    left: -13.54%;
}

.common-entry-decoration02 {
    max-width: 37.5rem;
    width: 19.53%;
    right: -12.34%;
    bottom: 19.16%;
}

.common-entry-decoration03 {
    max-width: 39.2rem;
    width: 20.41%;
    right: -3.07%;
    bottom: 1.53%;
}

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

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

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

}

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

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

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

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

	/* ==========================================
	下層カバー
	========================================== */
	
	.incover-title {
		font-size: 5.2rem;
	}
	
	/* ==========================================
	ヘッダー
	========================================== */

	.header-logo {
	    max-width: 16rem;
	}
	
	.header-tel-area {
	    max-width: 17rem;
	    margin: 0 0 0 2.5rem;
	}

	.header-tel-number {
	    font-size: 2.6rem;
	}
	
	.gnavi {
	    margin: 0 0 0 4rem;
	}
	
	.header-contact-area {
	    max-width: 24rem;
	    margin: 0 0 0 2rem;
	}

}

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

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

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

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

	body {
		font-size: 1.6rem;
	}

	/* ==========================================
	タイトル
	========================================== */

	.title01 {
		font-size: 4rem;
	}

	.title02 {
		font-size: 3.6rem;
	}

	.title03 {
		font-size: 2.8rem;
	}

	.title04 {
		font-size: 2.2rem;
	}

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

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

	.btn01 {
		font-size: 2.6rem;
		padding: 2rem 1.5rem 2rem;
	}

	.btn01-arrow {
		padding: 2rem 6rem 2rem 4rem;
	}

	.btn01-arrow:before {
		max-width: 4rem;
		height: 4rem;
		right: 1.3rem;
	}

	.btn01-arrow.btn01-primary:before {
		background-size: 2rem 1.5rem;
	}

	.btn02 {
        font-size: 2.2rem;
        padding: 2rem 1.5rem 2rem 8rem;
    }
    
    .btn02:before {
        max-width: 4rem;
        height: 4rem;
        left: 1.5rem;
    }

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

	.incover-wrapper {
	    padding: 3rem 0 0;
	}

	.incover-title {
	    font-size: 3.8rem;
	    margin: 1.5rem 0 0;
	}

	/* ==========================================
	パーツ
	========================================== */

	.lead-wrapper {
	    padding: 8rem 0 0;
	}
	
	.lead-text {
	    margin: 4rem 0 0;
	}

	.lead-decoration01 {
	    max-width: 58.5rem;
	    top: -9rem;
	    left: -30rem;
	}
	
	.lead-decoration02 {
	    max-width: 23rem;
	    right: -4rem;
	    bottom: -11.5rem;
	}
	
	/* ==========================================
	ヘッダー
	========================================== */

	.header-logo {
	    max-width: 16rem;
	    margin: 0;
	}
	
	.header-tel-area {
	    display: none;
	}
	
	.gnavi {
	    display: none;
	}
	
	.header-contact-area {
	    display: none;
	}

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

	.hamburger-btn {
	    display: flex;
	}

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

	.footer-wrapper {
	    padding: 8rem 0 4rem;
	}
	
	.footer-btn {
	    margin: 0.5rem 0 0 auto;
	}

	 /* ==========================================
    エントリー
    ========================================== */

    .entry-wrapper {
        padding: 8rem 0 0;
    }
    
    .entry-frame-inner {
        padding: 5rem 3rem;
    }

    .entry-title01 {
        font-size: 5.6rem;
    }
    
    .entry-area {
        margin: 6rem 0 0;
    }
    
    .entry-title02 {
        font-size: 3rem;
    }
    
    .entry-btn-list {
        gap: 3%;
        margin: 6rem 0 0;
    }
    
    .entry-btn01 {
        font-size: 2.2rem;
        padding: 3rem 1.5rem 3rem 8rem;
    }
    
    .entry-btn01:before {
        max-width: 4rem;
        height: 4rem;
        left: 1.5rem;
    }
    
    .entry-btn01-flow:before {
        background-size: 2rem;
    }
    
    .entry-btn01-info:before {
        background-size: 2rem 2rem;
    }
    
    
    .entry-btn02 {
        padding: 3rem 6rem;
        margin: 4rem 0 0;
    }
    
    .entry-text-box {
        margin: 3rem 0 0;
    }

}

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

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

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

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

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

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

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

	.btn01 {
	    max-width: 40rem;
	}
	
	/* ==========================================
	下層カバー
	========================================== */

	.incover-area {
	    flex-direction: column;
	}
	
	.incover-text-block {
	    text-align: center;
	    width: 100%;
	}
	
	.incover-inner {
	    padding: 0 1.5rem;
	}
	
	.incover-img-block {
	    width: 100%;
	    margin: 2.5rem auto 0;
	}
	
	.incover-title {
	    margin: 1rem 0 0;
	}

	/* ==========================================
	パーツ
	========================================== */
	
	.lead-text {
	    text-align: left;
	}

	.lead-text br {
	    display: none;
	}
	
	/* ==========================================
	テーブル
	========================================== */

	.base-table > table td {
		display: block;
		width: 100% !important;
		padding: 1.5rem 1.5rem !important;
	}
	
	/* ==========================================
	ハンバーガーメニュー
	========================================== */
	
	.hamburger-btn {
		max-width: 2.5rem;
		height: 1.4rem;
	}
	
	/* ==========================================
	スマホ固定ヘッダー
	========================================== */

	.sp-header {
		display: flex;
	}

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

	.footer-inner {
	    max-width: 100%;
	    padding: 0 1.5rem;
	    margin: auto;
	}
	
	.footer-left-block {
	    max-width: 27rem;
	    width: 48%;
	    flex-direction: column;
	    justify-content: flex-start;
	    align-items: center;
	}
	
	.footer-tel {
	    margin: 0.8rem auto 0;
	}
	
	.footer-right-block {
	    width: 47%;
	    margin: 1rem 0 0;
	}
	
	.footer-nav {
	    flex-direction: column;
	    gap: 1.6rem;
	}
	
	.footer-btn {
	    max-width: 100%;
	    margin: 3.2rem auto 0;
	}
	
	.copyright {
	    text-align: center;
	}
	
	.footer-tel-number {
	    font-size: 2.6rem;
	}

	/* ==========================================
    エントリー
    ========================================== */

    .entry-area {
        display: block;
    }
    
    .entry-img-block {
        max-width: 100%;
        width: 100%;
        aspect-ratio: 4/3;
    }
    
    .entry-text-block {
        max-width: 100%;
        width: 100%;
        margin: 3rem 0 0;
    }
    
    .entry-btn-list {
        flex-direction: column;
        gap: 2.5rem;
        margin: 4rem 0 0;
    }
    
    .entry-btn01 {
        max-width: 40rem;
        margin: auto;
        padding: 2rem 6rem 2rem;
        justify-content: center;
    }
    
    .entry-btn02 {
        padding: 2rem 6rem;
        margin: 2.5rem auto 0;
    }

    .common-entry-decoration01 {
        width: 48.12%;
        top: -5%;
        left: -22.93%;
    }
    
    .common-entry-decoration02 {
        width: 19.86%;
        right: -15.62%;
        bottom: -3%;
    }
    
    .common-entry-decoration03 {
        width: 15.48%;
        right: -2.13%;
        bottom: -5.5%;
    }    

}

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

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

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

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

	body {
		font-size: 1.64rem;
	}

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

	.incover-title {
	    font-size: 3.1rem;
	}

	/* ==========================================
	タイトル
	========================================== */
	
	.title01 {
	    font-size: 2.6rem;
	}
	
	.title02 {
	    font-size: 2.6rem;
	}
	
	.title03 {
	    font-size: 2.1rem;
	}

	.title04 {
		font-size: 2rem;
	}

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

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

	.btn01 {
		font-size: 2rem;
	}

	.btn02 {
        font-size: 2rem;
    }

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

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

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

	/* ==========================================
    エントリー
    ========================================== */

    .entry-title01 {
        font-size: 3.6rem;
    }
    
    .entry-title02 {
        font-size: 2.2rem;
    }
    
    .entry-frame-inner {
        padding: 5rem 1.7rem;
    }
    
    .entry-btn01 {
        font-size: 2rem;
        padding: 2.1rem 6rem 2rem;
    }

    .entry-btn02 {
        padding: 2.1rem 6rem 2rem;
    }

}

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

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

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

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

}

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