﻿@charset "UTF-8";
@import "reset.css";
/* CSS Document */

:root {
	--main-color: #1D2088;
	--bg-color: #F7F9FF;
	--btn-color: #DBF0FF;
	--cta-color: #FA7D00;
	--color-black: #000;
	--color-white: #fff;
	--color-red: #D10000;
	--color-yellow: #FFF962;
	--color-shadow: rgba(0, 0, 0, 0.16);
	--bg-second: #EEF4FE;
	--color-merit-border: #C9DDFF;
	--sub-color: #393C97;
	--color-faq-a: #C8CBF5;
	--color-faq-border: #DEDEDE;
	--color-faq-divider: #E5E5E5;

	--main-font: "Noto Sans JP", sans-serif;
	--en-font: "Barlow", sans-serif;
	--m-font:"M PLUS 1", sans-serif;

	/* フォントサイズ：モバイル基準（rem単位） */
	--font-84: 2rem;
	--font-72: 1.875rem;
	--font-58: 1.75rem;
	--font-52: 1.625rem;
	--font-35: 1.375rem;
	--font-32: 1.25rem;
	--font-30: 1.25rem;
	--font-28: 1.125rem;
	--font-24: 1rem;
	--font-21: 0.9375rem;
	--font-18: 0.875rem;
	--font-16: 0.875rem;
	--font-12: 0.6875rem;

	/* マージン・パディング：モバイル基準（rem単位） */
	--space-92: 3.5rem;
	--space-60: 2.5rem;
	--space-52: 2rem;
	--space-48: 2rem;
	--space-40: 1.75rem;
	--space-36: 1.5rem;
	--space-32: 1.25rem;
	--space-24: 1rem;
	--space-20: 0.875rem;
	--space-16: 0.75rem;
	--space-12: 0.625rem;
	--space-11: 0.5rem;
	--space-4: 0.25rem;
}

/* タブレット */
@media (min-width: 768px) {
	:root {
		--font-84: 3rem;
		--font-72: 2.75rem;
		--font-58: 2.5rem;
		--font-52: 2.25rem;
		--font-35: 1.75rem;
		--font-32: 1.625rem;
		--font-30: 1.5rem;
		--font-28: 1.375rem;
		--font-24: 1.25rem;
		--font-21: 1.125rem;
		--font-18: 1rem;
		--font-16: 0.9375rem;
		--font-12: 0.75rem;

		/* マージン・パディング：タブレット */
		--space-92: 4.5rem;
		--space-60: 3rem;
		--space-52: 2.5rem;
		--space-48: 2.5rem;
		--space-40: 2rem;
		--space-36: 1.875rem;
		--space-32: 1.5rem;
		--space-24: 1.25rem;
		--space-20: 1.125rem;
		--space-16: 1rem;
		--space-12: 0.75rem;
		--space-11: 0.625rem;
		--space-4: 0.3125rem;
	}
}

/* PC */
@media (min-width: 1000px) {
	:root {
		--font-84: 5.25rem;
		--font-72: 4.5rem;
		--font-58: 3.625rem;
		--font-52: 3.25rem;
		--font-35: 2.1875rem;
		--font-32: 2rem;
		--font-30: 1.875rem;
		--font-28: 1.75rem;
		--font-24: 1.5rem;
		--font-21: 1.3125rem;
		--font-18: 1.125rem;
		--font-16: 1rem;
		--font-12: 0.75rem;

		/* マージン・パディング：PC */
		--space-92: 5.75rem;
		--space-60: 3.75rem;
		--space-52: 3.25rem;
		--space-48: 3rem;
		--space-40: 2.5rem;
		--space-36: 2.25rem;
		--space-32: 2rem;
		--space-24: 1.5rem;
		--space-20: 1.25rem;
		--space-16: 1rem;
		--space-12: 0.75rem;
		--space-11: 0.6875rem;
		--space-4: 0.25rem;
	}
}

/* 大型PC（1400px以上） */
@media (min-width: 1400px) {
	:root {
		--font-84: 4.625rem;
		--font-72: 3.875rem;
		--font-58: 3.25rem;
		--font-52: 2.875rem;
		--font-35: 1.875rem;
		--font-32: 1.75rem;
		--font-30: 1.625rem;
	}
}

/* 中間PC（1200px、1400px） */
@media (min-width: 1200px) and (max-width: 1399px) {
	:root {
		--font-84: 4.625rem;
		--font-72: 3.875rem;
		--font-58: 3.125rem;
		--font-52: 2.875rem;
		--font-35: 1.875rem;
		--font-32: 1.75rem;
		--font-30: 1.625rem;
		--font-28: 1.5rem;
		--font-24: 1.25rem;
		--font-21: 1.125rem;
		--font-18: 1rem;
		--font-16: 0.875rem;
		--font-12: 0.6875rem;

		--space-92: 5rem;
		--space-60: 3.25rem;
		--space-52: 2.875rem;
		--space-48: 2.625rem;
		--space-40: 2.25rem;
		--space-36: 2rem;
		--space-32: 1.75rem;
		--space-24: 1.375rem;
		--space-20: 1.125rem;
		--space-16: 0.875rem;
		--space-12: 0.6875rem;
		--space-11: 0.625rem;
		--space-4: 0.25rem;
	}
}


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

   common

**************************************/
/* スマホ専用改行 */
.sp-br {
	display: block;
}

@media (min-width: 768px) {
	.sp-br {
		display: none;
	}
}

body {
	font-family: var(--main-font);
	font-weight: 500;
	margin: 0;
	padding: 0;
	position: relative;
	background-color: #fff;
}

p,
span,
li,
dt,
dd {
	font-size: 1em
}

a {
	text-decoration: none;
	word-break: break-all;
	transition: all 0.3s ease-out;
}

picture,
img {
	max-width: 100%
}

.obc {
	width: 100%;
	height: 100%;
	object-fit: cover;
	vertical-align: bottom
}

/* 中央寄せコンテナ：1400px幅 */
.wrap {
	width: 90%;
	max-width: 1400px;
	margin-left: auto;
	margin-right: auto;
}

/* 中央寄せコンテナ：1600px幅 */
.wrap-wide {
	width: 90%;
	max-width: 1600px;
	margin-left: auto;
	margin-right: auto;
}

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

@media screen and (max-width:667px) {
	.sp-none {
		display: none !important
	}
}

@media screen and (min-width:668px) {
	.sp-size {
		display: none !important
	}
}

@media (min-width:1000px) {

	p,
	span,
	li,
	dt,
	dd {
		font-size: 1em
	}
}


/*-------------------------

  テーブル (dl)

-------------------------*/

.table_wrap dl {
	border-bottom: solid 1px #ccc;
}

.table_wrap dt,
.table_wrap dd {
	width: 100%;
	margin: 0;
	padding: .5em
}

.table_wrap dt {
	font-weight: bold;
}

.table_wrap dd a {
	color: var(--black)
}


@media screen and (min-width:768px) {
	.table_wrap dt {
		width: 20%;
		text-align: center;
	}

	.table_wrap dd {
		width: 75%
	}

}


/*-------------------------

  ボタン

-------------------------*/
.btn_wrap {
	margin: 2em auto;
}

/* 汎用ボタン */
.btn {
	display: inline-block;
	text-align: center;
	text-decoration: none;
	padding: 0.75em 1.5em;
	outline: none;
	color: #fff;
	position: relative;
	transition: color .5s ease;
	letter-spacing: .5px;
	border-radius: 8px;
	overflow: hidden;
	font-weight: bold;
	border: none;
	cursor: pointer;
}

.btn::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
}

.btn:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.btn [class^="icon-"],
.btn [class*=" icon-"] {
	margin-right: .5em;
}

/* CTA色（オレンジ）ボタン */
.btn--primary {
	background-color: var(--cta-color);
}

.btn--primary::before {
	background: rgba(250, 125, 0, 0.25);
}

/* サブ色（薄い青）ボタン */
.btn--secondary {
	background-color: var(--btn-color);
	color: var(--main-color);
}

.btn--secondary::before {
	background: rgba(29, 32, 136, 0.15);
}

/* アウトラインボタン */
.btn--outline {
	background-color: transparent;
	color: var(--main-color);
	border: 2px solid var(--main-color);
}

.btn--outline::before {
	background: var(--main-color);
}

.btn--outline:hover {
	color: #fff;
}

/* 大きいボタン */
.btn--lg {
	padding: 1em 2em;
	font-size: 1.1em;
}

/* ナビゲーション用ボタン（既存互換） */
.btn1 {
	display: inline-block;
	width: 100%;
	max-width: 300px;
	text-align: center;
	text-decoration: none;
	padding: 1em;
	outline: none;
	color: #fff;
	background-color: var(--btn-color);
	position: relative;
	transition: color .5s ease;
	letter-spacing: .5px;
	border-radius: 2.5em;
	overflow: hidden;
}

.btn1:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.btn1::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: var(--main-color);
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
	border-radius: 2.5em;
}

.btn1 span {
	position: relative;
	color: #fff;
}

.btn_next:after {
	content: '';
	display: inline-block;
	width: 15px;
	height: 15px;
	background: url("../img/common/btn_ic.png")no-repeat center / contain;
	color: #fff;
	line-height: 1;
	text-align: center;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	transform: translate(0, -50%);
	transition: .5s;
	right: 8%;
}

.btn_next:hover:after {
	right: 5%
}



/*-------------------------

 背景

-------------------------*/

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


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

   header

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

header {
	width: 100%;
	z-index: 1000;
	transition: top 0.3s;
	top: 0;
	left: 0;
	margin: 0 auto;
	background: #fff;
	position: fixed;
	border-top: 6px solid var(--main-color);
	/* border-bottom: solid 1px #eee */
}

/* ヘッダー上段：ロゴ・電話番号・ボタン */
.header-top {
	display: flex;
	align-items: center;
	padding: 0;
}

.header-top__inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1em;
	height: 100%;
}

.header_logo {
	flex-shrink: 0;
	height: 67px;
	width: auto;
}

.header_logo a {
	display: block;
	width: 100%;
	height: 100%;
}

.header_logo img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.header-top__contact {
	flex: 0 1 auto;
	min-width: 0;
}

.header-top__right {
	display: flex;
	align-items: center;
	gap: 1em;
	flex: 0 1 auto;
	min-width: 0;
	line-height: 1;
}

.header-phone {
	margin: 0;
	font-size: 1.25rem;
	line-height: 1;
	color: var(--main-color);
	font-weight: bold;
}

.header-phone [class^="icon-"],
.header-phone [class*=" icon-"] {
	font-size: 1.25rem;
}

.header-phone i:before{
	font-size: .85em
}

.header-phone a {
	color: var(--main-color);
	text-decoration: none;
	font-family: var(--en-font);
    font-weight: 600;
}

.header-phone a:hover {
	text-decoration: underline;
}

@media (min-width: 768px) {
	.header-phone {
		font-size: 1.5rem;
	}

	.header-phone [class^="icon-"],
	.header-phone [class*=" icon-"] {
		font-size: 1.5rem;
	}
}

@media (min-width: 1000px) {
	.header-phone {
		font-size: 1.75rem;
	}

	.header-phone [class^="icon-"],
	.header-phone [class*=" icon-"] {
		font-size: 1.75rem;
	}
}

.header-top__button {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.header-top__button a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.2em;
	background-color: var(--cta-color);
	color: #fff;
	border-radius: 4px;
	font-weight: bold;
	white-space: nowrap;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
	transition: color .5s ease;
}

.header-top__button a::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(250, 46, 0, 0.25);
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
}

.header-top__button a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.header-top__button a span {
	position: relative;
	font-weight: bold
}

.header-top__button a [class^="icon-"],
.header-top__button a [class*=" icon-"] {
	margin-right: .5em;
}


/* アコーディオン　*/
.nav-item--service{
	position: relative;
}

ul.menu__second-level {
	position: absolute;
	width: 100%;
	background: #f7f9ff;
	-webkit-transition: all .2s ease;
	transition: all .2s ease;
	text-align: center;
	visibility: hidden;
	opacity: 0;
	z-index: 1!important;
	top: 55px;
}

li.menu__single:hover ul.menu__second-level {
	visibility: visible;
	opacity: 1;
}
ul.menu__second-level li{
	text-align: left!important;
	text-indent: 1em;
	padding: 1em 0;
}
ul.menu__second-level li a{
	color: #000
}
ul.menu__second-level li a:hover{
	color: var(--main-color)
}

.home .nav_top a,
.company .nav_company a,
.info .nav_info,
.voice .nav_voice,
.page-template-page-blog .nav_blog{
	border-bottom: solid 6px #1D2088;
	color: #1D2088
}




/* 下矢印 */
.init-bottom:after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin: 0 0 0 15px;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    top: -3px;
    position: relative;
}


/* ============================================
   汎用ボタン .cta-btn (Call To Action)
   ============================================ */
.cta-btn {
	flex-shrink: 0;
	display: flex;
	align-items: center;
}

.cta-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 1.1em 3em;
	background-color: var(--cta-color);
	color: #fff;
	border-radius: 4px;
	font-weight: bold;
	white-space: nowrap;
	font-size: 1rem;
	position: relative;
	overflow: hidden;
	transition: color .5s ease;
}

.cta-btn a::before {
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(250, 46, 0, 0.25);
	transform: scaleX(0);
	transform-origin: right;
	transition: all .5s ease;
	transition-property: transform;
}

.cta-btn a:hover::before {
	transform: scaleX(1);
	transform-origin: left;
}

.cta-btn a span {
	position: relative;
	font-weight: bold
}

.cta-btn a [class^="icon-"],
.cta-btn a [class*=" icon-"] {
	margin-right: .5em;
}

/* ヘッダー下段：メニューリンク */
.header-bottom {
	height: 60px;
	display: flex;
	align-items: center;
	background: #fff;
	border-top: solid 1px #eee;
}

.header-bottom .wrap {
	width: 100%;
	margin: 0;
	padding: 0;
}

.global-nav__list>li>a {
	color: #000;
	letter-spacing: .5px;
	font-weight: bold;
	text-decoration: none;
}



/* 問い合わせボタン */
.nav_btn .btn1 {
	text-align: center !important;
}

.nav_btn .btn1 [class^="icon-"],
.nav_btn .btn1 [class*=" icon-"],
.nav_btn .btn1 span {
	color: #fff !important
}

.nav_btn .btn1 [class^="icon-"],
.nav_btn .btn1 [class*=" icon-"] {
	margin-right: .5em;
}

#contact_btn a.btn1 {
	background: var(--main-color);
}

#contact_btn a.btn1:before {
	background: #268bf1;
}

.header-contact__note {
	font-size: 0.69rem;
	color: var(--color-black);
	line-height: 1.6;
	margin: 0;
	font-weight: bold;
}

.header-contact__hours {
	font-size: 0.69rem;
	line-height: 1.6;
	margin: 0;
	text-align: right;
}



/*-------------------------

  sp nav (~1099px)

-------------------------*/

@media (max-width:999px) {
	.header_logo {
		position: absolute;
		top: 50%;
		left: 3%;
		transform: translateY(-50%);
		width: 200px;
	}

	.header-top__right {
		display: none;
	}

	.logo-pc {
		display: none
	}

	.global-nav {
		position: fixed;
		right: 0;
		top: 0;
		width: 90%;
		max-width: 500px;
		height: 100vh;
		background-color: #fff;
		transform: translateX(110%);
		transition: transform .6s;
		z-index: 2000;
		overflow-y: auto;
	}

	.global-nav__list {
		display: flex;
		flex-direction: column;
		width: 100%;
		margin: 0;
		padding: 60px 0 0;
		list-style: none;
		overflow-y: auto;
	}

	.global-nav__list>li {
		width: 100%;
		padding: 0;
		border-bottom: 1px solid #ccc;
		font-size: 1em;
		display: flex;
		align-items: center;
		flex-direction: column;
	}

	.global-nav__list>li>a {
		display: block;
		width: 100%;
		padding: 1.5em 1.5em;
		color: var(--color-black);
		text-decoration: none;
		font-weight: bold;
		letter-spacing: 0.5px;
	}

	/* アクティブなナビゲーション項目（TOPページ） *
	.nav-item--top {
		background: var(--main-color);
	}

	.global-nav__list>.nav-item--top>a {
		color: #fff;
		padding: 1.5em 1.5em;
	}

	.nav-item--top>a:hover {
		color: var(--btn-color);
		transition: color 0.3s;
	}

	.global-nav__list>li:not(.nav-item--top)>a:hover {
		background: var(--main-color);
		color: #fff;
		transition: background 0.3s, color 0.3s;
	}*/

	/* ハンバーガーメニュー */
	.hamburger {
		cursor: pointer;
		display: flex;
		flex-direction: column;
		justify-content: flex-start;
		align-items: center;
		position: absolute;
		top: 50%;
		right: 0;
		width: 55px;
		height: 100%;
		transform: translate(0, -50%);
	}

	.hamburger__line {
		position: absolute;
		left: 50%;
		transform: translate(-50%, 0);
		width: 25px;
		height: 1px;
		background-color: #000;
		transition: all .6s;
	}

	.hamburger__line--1 {
		top: calc(50% - 10px);
	}

	.hamburger__line--2 {
		top: 50%;
	}

	.hamburger__line--3 {
		top: calc(50% + 10px);
	}

	.black-bg {
		position: fixed;
		left: 0;
		top: 0;
		width: 100vw;
		height: 100vh;
		z-index: 100;
		background-color: #252525;
		opacity: 0;
		visibility: hidden;
		transition: all .6s;
		cursor: pointer;
	}

	/* nav-open */
	.nav-open .global-nav {
		transform: translateX(0);
	}

	.nav-open .black-bg {
		opacity: .7;
		visibility: visible;
	}

	.nav-open .hamburger {
		background: none;
		box-shadow: none;
		z-index: 9999;
		right: .5em;
	}

	.nav-open .hamburger__line {
		top: 50%;
		background: #666;
	}

	.nav-open .hamburger__line--1 {
		transform: rotate(-45deg);
	}

	.nav-open .hamburger__line--2 {
		width: 0;
		left: 50%;
	}

	.nav-open .hamburger__line--3 {
		transform: rotate(45deg);
	}

	/* nav_btn */

	.nav_btn {
		border-bottom: none;
		padding: 1em 1em 0 !important;
		display: flex;
	}

	.nav_btn a {
		margin: 0 auto;
	}
}

/*-------------------------

  pc nav (1200px~)

-------------------------*/

@media (min-width:1000px) {
	header {
		display: flex;
		flex-direction: column;
	}
	/* アクティブなナビゲーション項目（TOPページ） */
	.nav-item--top {
		background: var(--main-color);
	}

	.nav-item--top>a {
		color: #fff;
	}
}

@media (min-width: 1000px) and (max-width: 1399px) {
	header {
		height: 135px;
	}

	.header_logo {
		height: 60px;
		padding: 5px 0;
	}
}

@media (min-width: 1400px) {
	header {
		height: 155px;
	}

	.header-bottom {
		height: 65px;
	}

	.global-nav__list {
		height: 65px;
	}
}

@media (min-width:1000px) {
	.header-bottom {
		height: 55px;
		border-top: solid 1px #eee;
		border-bottom: solid 1px #eee;
	}

	.header-bottom .wrap {
		width: 95%;
		max-width: 1400px;
		margin-left: auto;
		margin-right: auto;
	}

	.header-top {
		flex: 1;
	}

	.logo-sp {
		display: none
	}

	.header_logo {
		width: auto;
	}

	.header-top__inner {
		gap: 0.5em;
	}

	.header-top__right {
		gap: 1em;
	}

	.global-nav {
		display: flex;
		flex-wrap: wrap;
		justify-content: flex-start;
		align-items: center;
		width: 100%;
	}

	.global-nav__list {
		display: flex;
		flex-wrap: wrap;
		align-items: center;
		width: 100%;
		height: 55px;
		margin: 0;
		padding: 0;
		list-style: none;
	}

	.global-nav__list>li {
		flex: 1 1 0;
		display: flex;
		height: 100%;
		border-left: 1px solid #eee;
	}

	.global-nav__list>li:last-child {
		border-right: 1px solid #eee;
	}

	.global-nav__list>li>a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		color: var(--color-black);
	}

	.global-nav__list>li {
		margin-right: 0;
	}

	#contact_btn {
		margin-right: 0
	}

	.global-nav__list>li:not(.nav_btn)>a {
		display: flex;
		align-items: center;
		justify-content: center;
		width: 100%;
		height: 100%;
		text-align: center;
		text-decoration: none;
		outline: none;
		border-bottom: 2px solid transparent;
		position: relative;
		padding: 0 .5em
	}

	.global-nav__list>li:not(.nav_btn):not(.nav-item--top)>a:hover {
		background: var(--main-color);
		color: #fff;
	}
	
	.global-nav__list>li:not(.nav_btn):not(.nav-item--top)>a:hover {
		background: var(--main-color);
		color: #fff;
	}


	.global-nav__list>li.nav-item--top>a:hover {
		color: var(--btn-color);
	}

	/* .global-nav__list>li:not(.nav_btn)>a:after {
		position: absolute;
		left: 50%;
		bottom: 4px;
		transform: translate(-50%, 0);
		content: '';
		width: 30px;
		height: 2px;
		background: var(--main-color);
		visibility: hidden;
		opacity: 0;
		transition: 0.5s;
	} */

	.global-nav__list>li:not(.nav_btn)>a:hover::after {
		visibility: visible;
		opacity: 1;
		transition: 0.5s;
	}

	.global-nav__list>.nav-item--top {
		background: var(--main-color);
	}

	.global-nav__list>.nav-item--top>a {
		color: #fff;
	}

	.global-nav__list>.nav-item--top>a:hover {
		color: var(--btn-color);
	}

	.hamburger,
	.black-bg,
	.spnav {
		display: none
	}

	.nav_btn .btn1 {
		padding: .5em 1em;
		display: flex
	}
}

/*-------------------------

  アコーディオンメニュー

-------------------------*/
.acc_click {
	position: relative;
	cursor: pointer;
	transition: all .5s ease;
}

/* アコーディオンで現れるエリア */
.box {
	display: none;
	/* はじめは非表示 */

}

.box a {
	text-decoration: none;
	padding: .3em 0;
	display: block;
	font-size: 0.875rem;
	color: #000
}

@media (max-width:999px) {
	.acc_click {
		display: block;
		width: 100%;
	}

	/* アイコンの設定 */
	.acc_click::before,
	.acc_click::after {
		position: absolute;
		content: '';
		width: 15px;
		height: 1px;
		background-color: #000;
	}

	.acc_click::before {
		top: 48%;
		right: 15px;
		transform: rotate(0deg);
	}

	.acc_click::after {
		top: 48%;
		right: 15px;
		transform: rotate(90deg);
	}

	/* closeクラスがついたら形状変化 */
	.acc_click.close::before {
		transform: rotate(45deg);
	}

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

	.box {
		width: 100%
	}

	.box li {
		margin: 1em 0 1em 1em;
	}

	.box li a:before {
		content: '-';
		color: var(--main-color);
		display: inline-block;
		margin-right: .5em
	}
}

@media (min-width:1000px) {
	.dropdown {
		position: relative
	}

	.box {
		position: absolute;
		padding: 1em 1.2em;
		background: var(--bg-color);
		width: 200px;
		top: 54px;
		left: 50%;
		transform: translate(-50%, 0);
	}

	.box li {
		position: relative;
		display: block;
		width: 100%;
		margin: 1em 0;
	}

	.box li a {
		color: #000;
		width: 100%
	}

	.box li:after {
		content: "";
		position: absolute;
		left: 0;
		bottom: 0;
		width: 0%;
		height: 1px;
		background-color: var(--main-color);
		transition: width 0.3s ease;
	}

	.box li:hover:after {
		width: 100%;
	}

	.box li:hover a {
		transform: translateX(5px);
		color: var(--main-color)
	}
}



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

  footer

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


/*-------------------------

  ft_fix

-------------------------*/

@media screen and (max-width:667px) {
	#ft_fix {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		z-index: 800;
	}

	#ft_fix>* {
		width: 50%;
		text-align: center;
	}

	#ft_fix a {
		color: #fff;
		display: block;
		padding: .8em
	}

	#ft_fix [class^="icon-"],
	#ft_fix [class*=" icon-"] {
		margin-right: .3em
	}

	.fix_support {
		background: var(--orange)
	}

	.fix_contact {
		background: var(--main-color);
	}
}

@media screen and (min-width:668px) {
	#ft_fix {
		display: none
	}
}

/*-------------------------

  footer

-------------------------*/
footer {
	border-top: 1px solid #E0E0E0;
	position: relative;
	margin-top: 120px;
	background: #FFFFFF;
}

/* ============================================
   フッター メインエリア
   ============================================ */
.footer__inner {
	display: grid;
	grid-template-columns: 1fr;
	gap: 2.5rem;
	padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
	.footer__inner {
		/*grid-template-columns: auto 1fr;*/
		gap: 3rem;
		padding: 3.5rem 0 2rem;
		align-items: start;
	}

	.footer__nav {
		display: grid;
	}
}

@media (min-width: 1000px) {
	.footer__inner {
		grid-template-columns: 380px 1fr;
		gap: 4rem;
		padding: 5rem 0 2.5rem;
		align-items: start;
	}
}

/* ============================================
   フッター 左カラム：ロゴ・住所・SNS
   ============================================ */
.footer__brand {
	display: flex;
	flex-direction: column;
	gap: 1.25rem;
}

@media (min-width: 768px) {
	.footer__brand {
		gap: 1.75rem;
	}
}

@media (min-width: 1000px) {
	.footer__brand {
		gap: 3rem;
	}
}

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

.footer__address,
.footer__tel {
	font-style: normal;
}

.footer__address {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #000000;
	margin: 0;
}

.footer__tel {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.875rem;
	line-height: 1.5;
	color: #000000;
	text-decoration: none;
	display: inline-block;
	margin: 0;
}

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

.footer__sns {
	display: flex;
	align-items: center;
	gap: 1rem;
}

.footer__sns-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 27px;
	height: 27px;
	transition: opacity 0.2s;
}

.footer__sns-link:hover {
	opacity: 0.75;
}

.footer__sns-link img {
	width: 100%;
	height: 100%;
	object-fit: contain;
	display: block;
}

.footer__sns-link[aria-label="YouTube"] img {
	transform: scale(1.4);
}

/* ============================================
   フッター 右カラム：ナビゲーション
   ============================================ */
.footer__nav {
	display: grid;
	grid-template-columns: 1fr;
	gap: 0.5rem 1.5rem;
}

@media (min-width: 768px) {
	.footer__nav {
		grid-template-columns: 1fr 1fr;
		gap: 0.75rem 2rem;
	}
}

@media (min-width: 1000px) {
	.footer__nav {
		grid-template-columns: 1fr 1fr 1fr;
		gap: 0 2rem;
		align-items: start;
	}
}

/* 各列のリスト */
.footer__nav-col {
	display: flex;
	flex-direction: column;
	gap: 0;
}

@media (min-width: 768px) {
	.footer__nav-col {
		gap: 0.5rem;
	}
}

/* 親リンク（トップページ、サービス案内など） */
.footer__nav-link {
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 500;
	font-size: 0.875rem;
	line-height: 1.9;
	color: #000000;
	text-decoration: none;
	display: block;
	padding: 0.15rem 0;
	transition: opacity 0.2s;
}

.footer__nav-link:hover {
	text-decoration: underline;
	opacity: 0.75;
}

.footer__nav-link::before {
	content: '\25B8\00a0';
	color: var(--main-color);
}

/* 子リンク（サービスのサブメニュー） */
.footer__nav-sublink {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.875rem;
	line-height: 1.9;
	color: #2B2B2B;
	text-decoration: none;
	display: block;
	padding-left: 1em;
	transition: opacity 0.2s;
}

.footer__nav-sublink::before {
	content: '-\00a0';
}

.footer__nav-sublink:hover {
	text-decoration: underline;
	opacity: 0.75;
}

/* ============================================
   コピーライトバー
   ============================================ */
.footer__copy {
	padding: 3rem 0;
	text-align: center;
}

.footer__copy p {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.69rem;
	line-height: 1.6;
	color: #000000;
	margin: 0;
}

/* モバイル：ナビゲーション非表示・ブランドエリア中央揃え */
@media (max-width: 767px) {
	.footer__nav {
		display: none;
	}

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

	.footer__logo img {
		margin: 0 auto;
	}

	.footer__address,
	.footer__tel {
		font-size: 0.875rem;
		font-style: normal;
		text-align: center;
	}
}