@charset "UTF-8";
/* CSS Document */


/******************************************************

PC設定 1200px以上の場合に適用

*******************************************************/

/* カラー・トークン */
:root {
	--color-primary: #1567C2;
	--color-primary-dark: #0E4E97;
	--color-navy: #14305A;
	--color-accent: #2BA45B;
	--color-line: #06C755;
	--color-text: #1A1A1A;
	--color-text-sub: #666666;
	--color-bg: #FFFFFF;
	--color-bg-gray: #F2F5F8;
	--color-border: #E0E0E0;
	--color-q-bg: #DDDDDD;
	--font-en: "Montserrat", "Noto Sans JP", sans-serif;
}


/* 全体の設定 */
html {
	color: #1A1A1A;
}

body {
	width: 100%;
	font-family: "Hiragino Sans","Noto Sans JP","Yu Gothic", sans-serif;
	font-weight: 400;
	-webkit-text-size-adjust: 100%;
	min-width: 1200px;
	font-size: 16px;
	line-height: 1.8;
	color: #1A1A1A;
	background-color: #FFFFFF;
}

a {
	text-decoration: none;
	color: #1A1A1A;
	cursor: pointer;
	transition: all 0.2s ease;
}

p {
	color: #1A1A1A;
	line-height: 1.8;
}

img {
	border: none;
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

* {
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}

button {
	background: transparent;
	border: 0;
	cursor: pointer;
	font-family: inherit;
}


/* container / wrapper */
.container {
	padding: 120px 0;
}

.wrapper {
	width: 95%;
	max-width: 1200px;
	margin: 0 auto;
}

.wrapper_small {
	width: 95%;
	max-width: 960px;
	margin: 0 auto;
}

.pc {
	display: block;
}

.sp {
	display: none;
}


/* セクション見出し共通 */
.section-title {
	text-align: center;
	margin-bottom: 48px;
}

.section-title__ja {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-text);
}

.section-title__en {
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-primary);
	margin-top: 8px;
	letter-spacing: 0.06em;
}

.section-title--white .section-title__ja,
.section-title--white .section-title__en {
	color: #FFFFFF;
}


/* btn 共通 */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-family: inherit;
	font-weight: 700;
	border-radius: 999px;
	transition: all 0.2s ease;
	text-align: center;
	letter-spacing: 0.04em;
}

.btn--primary {
	background-color: var(--color-primary);
	color: #FFFFFF;
	border: 2px solid var(--color-primary);
}

.btn--primary:hover {
	background-color: var(--color-primary-dark);
	border-color: var(--color-primary-dark);
	color: #FFFFFF;
}

/* 丸ボタン(矢印アイコン付きアウトライン) */
.btn--outline {
	position: relative;
	display: flex;
	width: 300px;
	height: 64px;
	font-size: 17px;
	background-color: #FFFFFF;
	color: var(--color-primary);
	border: 2px solid var(--color-primary);
	margin: 0 auto;
}

.btn--outline::after {
	content: "";
	position: absolute;
	right: 24px;
	top: 50%;
	width: 28px;
	height: 28px;
	margin-top: -14px;
	border-radius: 50%;
	background-color: var(--color-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 5h7M5 2l3 3-3 3' fill='none' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	background-repeat: no-repeat;
	background-position: center center;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn--outline:hover {
	background-color: var(--color-primary);
	color: #FFFFFF;
}

.btn--outline:hover::after {
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 5h7M5 2l3 3-3 3' fill='none' stroke='%231567C2' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

/* 白枠ボタン(青背景セクション用) */
.btn--outline-white {
	background-color: transparent;
	color: #FFFFFF;
	border-color: #FFFFFF;
}

.btn--outline-white::after {
	background-color: #FFFFFF;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 5h7M5 2l3 3-3 3' fill='none' stroke='%231567C2' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.btn--outline-white:hover {
	background-color: #FFFFFF;
	color: var(--color-primary);
}

.btn--outline-white:hover::after {
	background-color: var(--color-primary);
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 10 10'%3E%3Cpath d='M1 5h7M5 2l3 3-3 3' fill='none' stroke='%23fff' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}



/* header */
.header {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100px;
	background-color: #FFFFFF;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
	z-index: 9000;
	transition: height 0.3s ease;
}

/* 200pxスクロール後の縮小ヘッダー */
.header.scroll {
	height: 80px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header__link {
	display: flex;
	align-items: center;
	position: absolute;
	left: 2%;
	top: 50%;
	transform: translateY(-50%);
	height: 100%;
}

.header__link:hover {
	opacity: 0.7;
}

.header__logo {
	display: block;
	height: 52px;
	width: auto;
	transition: height 0.3s ease;
}

.header.scroll .header__logo {
	height: 44px;
}

.header__right {
	position: absolute;
	right: 2%;
	top: 50%;
	transform: translateY(-50%);
	display: flex;
	align-items: center;
	gap: 24px;
}

.header__tel {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.2;
}

.header__tel-num {
	font-family: var(--font-en);
	font-size: 24px;
	font-weight: 700;
	color: var(--color-navy);
	letter-spacing: 0.02em;
}

.header__tel-num::before {
	content: "";
	display: inline-block;
	width: 18px;
	height: 18px;
	margin-right: 6px;
	background-image: url("../img/common/phone.svg");
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
	vertical-align: -2px;
}

.header__tel-time {
	font-size: 11px;
	font-weight: 400;
	color: var(--color-text-sub);
}

.header__cta {
	width: 150px;
	height: 48px;
	font-size: 15px;
	font-weight: 700;
	padding: 0;
}

.globalNav__box {
	display: flex;
	align-items: center;
}

.globalNav__item:not(:last-child) {
	margin-right: 28px;
}

.globalNav__link {
	font-size: 16px;
	font-weight: 700;
	line-height: 1.4;
	color: var(--color-text);
	transition: color 0.2s ease;
}

.globalNav__link:hover,
.globalNav__link.current {
	color: var(--color-primary);
}



/* sideNav (画面右端固定) */
.sideNav {
	position: fixed;
	right: 12px;
	top: 50%;
	transform: translateY(-50%);
	z-index: 8000;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.sideNav__link {
	display: block;
	width: 48px;
	height: 48px;
	border-radius: 50%;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
	transition: opacity 0.2s ease;
}

.sideNav__link:hover {
	opacity: 0.8;
}

.sideNav__link--line {
	background-image: url("../img/common/icon_sideNav_line.png");
}

.sideNav__link--instagram {
	background-image: url("../img/common/icon_sideNav_instagram.png");
}



/* mvLower (下層ページMV) */
.mvLower {
	margin-top: 100px;
	padding-top: 50px;
	text-align: center;
}

.mvLower__h1 {
	font-size: 40px;
	font-weight: 700;
	line-height: 1.6;
	margin-bottom: 30px;
}

.mvLower__h1 span {
	display: block;
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 700;
	color: var(--color-primary);
	margin-top: 4px;
}

.mvLower__img {
	width: 100%;
	height: 360px;
	background-size: cover;
	background-position: center center;
}



/* breadcrumb */
.breadcrumb__box {
	display: flex;
	height: 50px;
	line-height: 50px;
	margin: 0 auto;
}

.breadcrumb__item {
	margin-right: 10px;
}

.breadcrumb__item:not(:first-child)::before {
	content: ">";
	margin-right: 10px;
	font-size: 14px;
	color: #999;
}

.breadcrumb__link {
	font-size: 14px;
	color: #999;
}

.breadcrumb__link:hover {
	text-decoration: underline;
}



/* contact (フッター上の共通お問い合わせ) */
.contact {
	background-color: #FFFFFF;
}

.contact__card {
	background-color: var(--color-primary);
	border-radius: 16px;
	padding: 56px 60px;
	display: flex;
	gap: 48px;
	align-items: center;
}

.contact__left {
	flex: 0 0 42%;
}

.contact__h2 {
	font-size: 36px;
	font-weight: 700;
	line-height: 1.4;
	color: #FFFFFF;
	letter-spacing: 0.02em;
}

.contact__en {
	margin-top: 8px;
	font-family: var(--font-en);
	font-size: 20px;
	font-weight: 700;
	line-height: 1.4;
	color: rgba(255, 255, 255, 0.85);
	letter-spacing: 0.06em;
}

.contact__txt {
	margin-top: 24px;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.9;
	color: #FFFFFF;
}

.contact__right {
	flex: 1;
	width: 50%;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.contact__btn {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 96px;
	border-radius: 8px;
	padding: 0 24px;
	transition: all 0.2s ease;
}

.contact__btn:hover {
	opacity: 0.88;
}

.contact__btn-left {
	display: flex;
	align-items: center;
	gap: 16px;
}

.contact__btn-icon {
	display: inline-block;
	width: 34px;
	height: 34px;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	flex-shrink: 0;
}

.contact__btn-icon--tel {
	background-image: url("../img/common/icon_footer_tel.png");
}

.contact__btn-icon--mail {
	background-image: url("../img/common/icon_footer_form.png");
}

.contact__btn-icon--line {
	background-image: url("../img/common/icon_footer_line.png");
}

.contact__btn--tel {
	background-color: #FFFFFF;
	color: var(--color-text);
}

.contact__btn--tel .contact__btn-num {
	font-size: 30px;
	font-weight: 700;
	color: var(--color-navy);
	font-family: var(--font-en);
	line-height: 1;
}

.contact__btn--tel .contact__btn-right {
	font-size: 13px;
	font-weight: 400;
	color: var(--color-text-sub);
}

.contact__btn--form {
	background-color: #333A44;
	color: #FFFFFF;
}

.contact__btn--form .contact__btn-label {
	font-size: 19px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 0.04em;
}

.contact__btn--line {
	background-color: var(--color-line);
	color: #FFFFFF;
}

.contact__btn--line .contact__btn-label {
	font-size: 19px;
	font-weight: 700;
	color: #FFFFFF;
	letter-spacing: 0.04em;
}



/* footer */
.footer {
	width: 100%;
	background-color: var(--color-navy);
	color: #FFFFFF;
}

.footer__upper {
	padding: 64px 0 48px;
}

.footer__wrapper {
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 0;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 48px;
}

.footer__left {
	flex-shrink: 0;
	max-width: 360px;
}

.footer__logoLink {
	display: block;
}

.footer__logo {
	display: block;
	height: 56px;
	width: auto;
}

.footer__tagline {
	margin-top: 16px;
	font-size: 13px;
	font-weight: 500;
	color: rgba(255, 255, 255, 0.85);
}

.footer__address {
	margin-top: 16px;
	font-size: 13px;
	font-weight: 400;
	line-height: 1.9;
	color: rgba(255, 255, 255, 0.85);
}

.footer__nav {
	display: flex;
	gap: 48px;
}

.footer__col {
	min-width: 130px;
}

.footer__col li {
	font-size: 14px;
	font-weight: 400;
	line-height: 2.4;
}

.footer__head {
	font-weight: 700;
}

.footer__col li a {
	color: #FFFFFF;
	transition: opacity 0.2s ease;
}

.footer__col li a:hover {
	opacity: 0.7;
}

.footer__lower {
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	width: 90%;
	max-width: 1200px;
	margin: 0 auto;
	padding: 24px 0;
}

.footer__copyright {
	font-size: 12px;
	font-weight: 400;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.7);
	font-family: var(--font-en);
}




/******************************************************

タブレットの設定 960px〜1199pxの場合に適用

*******************************************************/

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

/* 全体の設定 */
body {
	min-width: 100%;
}

.container {
	padding: 80px 0;
}


/* header */
.header {
	height: 80px;
}

.header__logo,
.header.scroll .header__logo {
	height: 44px;
}

.globalNav {
	display: none;
}

.header__tel-num {
	font-size: 20px;
}


/* contact */
.contact__card {
	padding: 48px 40px;
	gap: 32px;
}

.contact__h2 {
	font-size: 28px;
}


/* footer */
.footer__wrapper {
	flex-wrap: wrap;
	gap: 32px;
}

.footer__nav {
	gap: 32px;
	flex-wrap: wrap;
}


}



/******************************************************

タブレットの設定 768px〜959pxの場合に適用

*******************************************************/

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


/* header */
.header {
	height: 60px;
}

.header.scroll {
	height: 60px;
}

.header__logo,
.header.scroll .header__logo {
	height: 36px;
}

.header__right {
	display: none;
}


/* contact */
.contact__card {
	flex-direction: column;
	align-items: stretch;
	padding: 40px 32px;
}

.contact__left {
	flex: 0 0 auto;
	text-align: center;
}

.contact__right {
	width: 100%;
}

.contact__btn {
	width: 100% !important;
}


}



/******************************************************

SPの設定 767px以下の場合に適用

*******************************************************/

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

/* 全体の設定 */
body {
	font-size: 14px;
}

.container {
	padding: 60px 0;
}

.pc {
	display: none;
}

.sp {
	display: block;
}

.wrapper,
.wrapper_small {
	width: calc(100% - 40px);
}


/* セクション見出し */
.section-title {
	margin-bottom: 24px;
}

.section-title__ja {
	font-size: 26px;
}

.section-title__en {
	font-size: 15px;
	margin-top: 4px;
}


/* btn 共通 */
.btn--outline {
	width: 260px;
	height: 56px;
	font-size: 15px;
}

.btn--outline::after {
	right: 18px;
	width: 24px;
	height: 24px;
	margin-top: -12px;
}


/* header */
.header {
	height: 56px;
}

.header.scroll {
	height: 56px;
}

.header__logo,
.header.scroll .header__logo {
	height: 30px;
}


/* sideNav */
.sideNav {
	z-index: 9100;
	top: 12px;
	right: 64px;
	flex-direction: row;
	transform: translateY(0);
	gap: 8px;
}

.sideNav__link {
	width: 32px;
	height: 32px;
}


/* mvLower */
.mvLower {
	margin-top: 56px;
	padding-top: 30px;
}

.mvLower__h1 {
	font-size: 24px;
	margin-bottom: 12px;
}

.mvLower__h1 span {
	font-size: 14px;
}

.mvLower__img {
	width: 100%;
	height: 200px;
}


/* contact */
.contact__card {
	padding: 32px 20px;
}

.contact__h2 {
	font-size: 22px;
}

.contact__en {
	font-size: 16px;
}

.contact__txt {
	font-size: 13px;
}

.contact__btn {
	height: auto;
	padding: 16px;
	display: block;
}

.contact__btn-left {
	gap: 10px;
}

.contact__btn-icon {
	width: 26px;
	height: 26px;
}

.contact__btn--tel .contact__btn-num {
	font-size: 24px;
}

.contact__btn--form .contact__btn-label,
.contact__btn--line .contact__btn-label {
	font-size: 15px;
}

.contact__btn-right {
	display: none;
}


/* footer */
.footer__upper {
	padding: 40px 0 8px;
}

.footer__left {
	max-width: none;
}

.footer__logo {
	height: 44px;
	margin: 0 auto;
}

.footer__tagline,
.footer__address {
	text-align: center;
	font-size: 12px;
}

.footer__nav {
	display: none;
}

.footer__lower {
	padding: 20px 0;
	text-align: center;
}


}



/* map (交通アクセス Google Maps埋込) */
.map {
	width: 100%;
}

.map__embed {
	width: 100%;
	height: 460px;
}

.map__embed iframe {
	display: block;
	width: 100%;
	height: 100%;
}

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

.map__embed {
	height: 300px;
}

}
