@charset "utf-8";

/* -------------------------------------------------- */
/* RESET*/
/* -------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}

li {
	list-style-type: none;
}

blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

img {
	vertical-align: bottom;
}

textarea,select,option {
	font: inherit;
}

/* -------------------------------------------------- */
/* WP*/
/* -------------------------------------------------- */
/* 投稿の画像配置 */
.alignright { display: block; margin: 0 0 10px auto; }/* 配置位置 左 */
.alignleft { display: block; margin: 0 auto 10px 0; }/* 配置位置 右 */
.aligncenter { display: block; margin: 0 auto 10px; }/* 配置位置 中央 */
/* .alignright { float: right; padding: 0px 0 10px 10px; } *//* 後続のテキスト左回り込み */
/*.alignleft { float: left; padding: 0px 10px 10px 0; }*//* 後続テキスト右回り込み */

/* -------------------------------------------------- */
/* LINK */
/* -------------------------------------------------- */
a { text-decoration: none; color: #333333; }

/* -------------------------------------------------- */
/* CLEARFIX */
/* -------------------------------------------------- */
.cf:before,
.cf:after {
	content: " ";
	display: table;
}

.cf:after {
	clear: both;
}

.cf {
	*zoom: 1;
}

/* -------------------------------------------------- */
/* COMMON */
/* -------------------------------------------------- */
html {
	font-size: 62.5%;/* 10px */
}

body {
	background: #FFFFFF;
	color: #333333;
	font-size: 14px;
	font-size: 1.4rem;
}

body.noscroll {
	overflow-y: hidden!important;
}

#container {
	position: relative;
	font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, Osaka,"ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	line-height: 1.5;
	overflow: hidden;
}

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

img {
	max-width: 100%;
}

/* テキスト調整 */
.serif {
	font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.fontEn {
	font-family: "Josefin Sans", sans-serif;
}

.fontMaru {
	font-family: "Zen Maru Gothic", sans-serif;
}

.textLeft {
	text-align: left;
}

.textCenter {
	text-align: center;
}

.textRight {
	text-align: right;
}

.textBold {
	font-weight: 700;
}

.tabbr {
	display: none;
}

.spbr {
	display: none;
}

/* 共通パーツ */
.inner {
	width: 1080px;
	max-width: 100%;
	margin-right: auto;
	margin-left: auto;
	padding: 0 40px;
}

/* ボタン */
.btn {
	max-width: 100%;
	padding: 15px 30px;
	position: relative;
	display: inline-flex;
	gap: 10px;
	justify-content: center;
	align-items: center;
	font-family: "Zen Maru Gothic", sans-serif;
	font-size: 2rem;
	font-weight: 700;
	text-align: center;
	color: #FFFFFF;
	background-color: #222222;
	border: 2px solid #222222;
	border-radius: 36px;
	overflow: hidden;
	transition: .2s;
	overflow: hidden;
	z-index: 1;
}

.btn::after {
	content: "";
	width: 37px;
	height: 28px;
	display: inline-block;
	background: url(./img/common/icon_btn_arrow_main.svg) no-repeat center center / contain;
}

.btn::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

@media screen and (min-width: 1025px) {
	.btn:hover {
		color: #ffc800;
	}
	
	.btn:hover::before {
		transform: scale(1, 1);
	}
}

/* セクション見出し */
.sectionTitle {
	text-align: center;
}

.sectionTitleEn {
	margin-bottom: 25px;
	display: block;
}

.sectionTitleJa {
	display: block;
	font-size: 3.2rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #000;
}

/* -------------------------------------------------- */
/* PC*/
/* -------------------------------------------------- */
/* ------------------------------------ */
/* ヘッダー */
/* ------------------------------------ */
#header {
	padding-top: 45px;
	padding-bottom: 45px;
	background-color: #ffc800;
}

#headerInner {
	padding-right: 150px;
	padding-left: 45px;
	display: flex;
	align-items: center;
}

#headerLogo {
	width: 291px;
	height: 81px;
	margin-right: auto;
	overflow: hidden;
	background: url(./img/common/logo_header.svg) no-repeat center center / contain;
}

#headerLogo a {
	width: 100%;
	height: 100%;
	display: block;
	position: relative;
}

#headerLogo span {
	position: absolute;
	top: 0;
	left: 100%;
	visibility: hidden;
	opacity: 0;
}

#headerNavList {
	display: flex;
	align-items: center;
	gap: 16px;
}

.headerNavListItem a {
	font-size: 1.6rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
}

#headerContactWrap {
	margin-left: 30px;
}

#headerTel {
	margin-bottom: 5px;
}

#headerTelNum {
	padding-left: 36px;
	position: relative;
	display: block;
	font-size: 2.4rem;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	line-height: 1.2;
	color: #000;
}
#headerTelNum::before {
	content: "";
	width: 28px;
	height: 28px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(./img/common/icon_tel2.svg) no-repeat center center / contain;
}

#headerTelNum a {
	color: #000;
}

#headerContactBtn {
	font-size: 1.1rem;
	padding: 12px 12px 12px 28px;
}

#headerContactBtn::after {
	width: 16px;
	height: 6px;
}

/* メニューボタン */
#menuBtn {
	width: 80px;
	height: 80px;
	position: fixed;
	top: 45px;
	right: 45px;
	background-color: #222222;
	border: 2px solid #222222;
	border-radius: 50%;
	overflow: hidden;
	transition: .2s;
	cursor: pointer;
	z-index: 21;
}

.menuBtnBar {
	width: 24px;
	height: 2px;
	position: absolute;
	left: 26px;
	background-color: #FFFFFF;
	transition: 0.3s;
}

.menuBtnBar:nth-child(1) {
	top: 31px;
}
.menuBtnBar:nth-child(2) {
	top: 38px;
}
.menuBtnBar:nth-child(3) {
	top: 45px;
}

#menuBtn.is-open {
	background-color: #FFFFFF;
}

#menuBtn.is-open .menuBtnBar {
	background-color: #222222;
}

#menuBtn.is-open .menuBtnBar:nth-child(1) {
	top: 38px;
	transform: rotate(45deg);
}
#menuBtn.is-open .menuBtnBar:nth-child(2) {
	opacity: 0;
}
#menuBtn.is-open .menuBtnBar:nth-child(3) {
	top: 38px;
	transform: rotate(-45deg);
}

#menuBtn::before {
	content: "";
	width: 100%;
	height: 100%;
	background: #FFFFFF;
	position: absolute;
	top: 0;
	left: 0;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
	z-index: -1;
}

@media screen and (min-width: 1025px) {
	#menuBtn:hover .menuBtnBar {
		background-color: #ffc800;
	}
	
	#menuBtn:hover::before {
		transform: scale(1, 1);
	}
}

/* メニューの中身 */
#menu {
	width: 100%;
	height: 100%;
	padding-top: 160px;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 20;
	display: none;
	background: rgba(51, 51, 51, 0.95);
}

#menuInner {
	max-width: 960px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 30px;
	padding-left: 30px;
}

#menuList {
	margin-bottom: 100px;
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(3, auto);
	gap: 45px 0px;
}

.menuListItem a {
	font-size: 2.6rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #FFFFFF;
}

#menuFoot {
	padding: 40px 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: #ffc800;
	gap: 30px;
}

#menuTelNum {
	padding-left: 38px;
	position: relative;
	display: block;
	font-size: 3.4rem;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	line-height: 1.2;
	color: #000;
}

#menuTelNum::before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(./img/common/icon_tel2.svg) no-repeat center center / contain;
}

#menuTelNum a {
	color: #000;
}

#menuTelHour {
	display: block;
	font-size: 1.6rem;
}

#menuContactBtn {
	padding: 18px 20px 18px 50px;
	font-size: 1.9rem;
}

/* ------------------------------------ */
/* フッター */
/* ------------------------------------ */
#footer {
	padding-top: 60px;
	padding-bottom: 60px;
	color: #FFFFFF;
	background-color: #333333;
}

#footerInner {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 30px;
}

#footerLogo {
	width: 75%;
	margin-bottom: 20px;
}

#footerAddress {
	margin-bottom: 15px;
	font-size: 1.6rem;
	line-height: 1.8;
}

#footerAddress .textSizeMd {
	font-size: 1.7rem;
}

#footerCopyright {
	display: block;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	color: #ccc;
}

#footerNav {
	padding-left: 40px;
	display: grid;
	grid-auto-flow: column;
	grid-template-rows: repeat(4, auto);
	gap: 16px 65px;
	flex-shrink: 0;
	border-left: 3px solid #737373;
}

.footerNavItem {
	padding-left: 25px;
}

.footerNavItem a {
	font-size: 1.7rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	letter-spacing: 0.05em;
	color: #FFFFFF;
}

.footerNavItem.current {
	position: relative;
}

.footerNavItem.current::before {
	content: "";
	width: 8px;
	height: 8px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
	left: 0;
	background-color: #ffc800;
	border-radius: 50%;
}

.footerNavItem.current a {
	color: #ffc800;
}

/* ------------------------------------ */
/* 共通お問い合わせ */
/* ------------------------------------ */
#cv {
	padding-top: 80px;
	margin-top: -120px;
	padding-bottom: 80px;
	position: relative;
	background-color: #ffc800;
	border-radius: 120px 120px 0 0;
}

#cvHead {
	margin-bottom: 30px;
	position: relative;
	font-size: 3.6rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	color: #000;
	z-index: 1;
}

#cvHead::before {
	content: "";
	width: 4em;
	height: 4.08em;
	position: absolute;
	top: -35px;
	left: -55px;
	background: url(./img/common/cv_head_decoration.svg) no-repeat top left / contain;
	z-index: -1;
}

#cvContent {
	padding-right: 360px;
	position: relative;
}

#cvContent::after {
	content: "";
	width: 306px;
	height: 254px;
	position: absolute;
	top: 10px;
	right: 20px;
	background: url(./img/common/cv.svg) no-repeat center center / contain;
}

#cvTextWrap {
	margin-bottom: 40px;
}

.cvText {
	font-size: 1.8rem;
	letter-spacing: 0.075em;
	line-height: calc(32 / 18);
}

.cvText:not(:last-child) {
	margin-bottom: 20px;
}

.cvText .inlineBlock {
	display: inline-block;
}

#cvContactWrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 15px 30px;
}

#cvTelNum {
	padding-left: 38px;
	position: relative;
	display: block;
	font-size: 3.4rem;
	font-weight: 700;
	font-family: "Roboto", sans-serif;
	line-height: 1.4;
	color: #000;
}

#cvTelNum::before {
	content: "";
	width: 30px;
	height: 30px;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
	background: url(./img/common/icon_tel2.svg) no-repeat center center / contain;
}

#cvTelNum a {
	color: #000;
}

#cvTelHour {
	font-size: 1.6rem;
}

#cvContactBtn {
	padding: 18px 20px 18px 46px;
	gap: 20px;
	font-size: 1.9rem;
}

#cvContactBtn::after {
	width: 31px;
	height: 12px;
}

/* ------------------------------------ */
/* 下層ページ */
/* ------------------------------------ */
/* ページタイトル
------------------------------------ */
#pageHead {
	padding: 40px 40px calc(110px + 120px);  /* padding-bottom：デザイン上の余白 + #pageBodyのネガティブマージン分 */
	background: url(./img/common/bg_page_head.svg) no-repeat center top / 82%;
	background-color: #ffc800;
}

#pageTitle {
	font-size: 6rem;
	font-weight: 700;
	font-family: "Zen Maru Gothic", sans-serif;
	text-align: center;
	color: #000;
}

#pageTitle::after {
	content: attr(data-en);
	margin-top: 10px;
	display: block;
	font-size: 2rem;
	font-weight: 600;
	font-family: "Josefin Sans", sans-serif;
	letter-spacing: 0.05em;
}

/* ページコンテンツ
------------------------------------ */
#pageBody {
	margin-top: -120px;
	position: relative;
}

/* パンくず
------------------------------------ */
#bcWrap {
	padding-top: 140px;
	padding-bottom: calc(30px + 120px);  /* セクションの余白 + 下のセクション（#cv）のネガティブマージン分 */
	text-align: right;
	background-color: #f5f5f5;
}

/* #cvが無いページ */
.noCv #bcWrap {
	padding-bottom: 30px;
}

#bc {
	display: inline-flex;
	align-items: center;
}

#bc li {
	font-size: 1.6rem;
}

#bc li:not(:first-child)::before {
	content: "/";
	margin: 0 0.6em;
	font-size: 1.4rem;
}

#bc li img {
	display: inline-block;
	vertical-align: -2px;
}

/* ------------------------------------ */
/* ホバーエフェクト */
/* ------------------------------------ */
@media screen and (min-width: 1025px) {
	.headerNavListItem a {
		transition: all 0.3s ease 0s;
	}
	.headerNavListItem a:hover {
		opacity: 0.6;
	}

	.menuListItem a {
		transition: all 0.3s ease 0s;
	}
	.menuListItem a:hover {
		color: #ffc800;
	}

	.footerNavItem a {
		transition: all 0.3s ease 0s;
	}
	.footerNavItem a:hover {
		color: #ffc800;
	}
}

/* -------------------------------------------------- */
/* PC(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 1600px) {
	#header {
		padding-top: 25px;
		padding-bottom: 25px;
	}

	#menuBtn {
		top: 25px;
	}
}

@media screen and (max-width: 1279px) {
	#headerInner {
		padding-right: 100px;
		padding-left: 30px;
	}

	#headerLogo {
		width: 210px;
		height: 36px;
	}

	.headerNavListItem a {
		font-size: 1.4rem;
	}

	#headerTelNum {
		padding-left: 32px;
		font-size: 2rem;
	}

	#headerTelNum::before {
		width: 24px;
		height: 24px;
	}

	#headerContactBtn {
		padding: 8px 8px 8px 20px;
	}

	#menuBtn {
		width: 60px;
		height: 60px;
		right: 20px;
	}

	.menuBtnBar {
		left: 16px;
	}
	
	.menuBtnBar:nth-child(1) {
		top: 20px;
	}
	.menuBtnBar:nth-child(2) {
		top: 28px;
	}
	.menuBtnBar:nth-child(3) {
		top: 36px;
	}

	#menuBtn.is-open .menuBtnBar:nth-child(1) {
		top: 28px;
	}
	#menuBtn.is-open .menuBtnBar:nth-child(3) {
		top: 28px;
	}
}

@media screen and (max-width: 1199px) {
	#cvHead {
		padding-left: 40px;
		font-size: 3.2rem;
	}

	#cvHead::before {
		top: -25px;
		left: -5px;
	}

	#cvContent {
		padding-right: 300px;
	}

	#cvContent::after {
		width: 260px;
	}
}

/* -------------------------------------------------- */
/* TAB&SP */
/* -------------------------------------------------- */
@media screen and (max-width: 1024px) {
	.inner {
		padding: 0 30px;
	}

	.pcbr {
		display: none;
	}

	#headerNav {
		display: none;
	}

	#headerTel, #headerContact {
		display: none;
	}

	#menuBtn {
		top: 15px;
	}

	#footerNav {
		gap: 16px 30px;
	}

	#cv {
		border-radius: 60px 60px 0 0;
	}

	#cvInner::before {
		content: "";
		width: 240px;
		height: 200px;
		margin-right: auto;
		margin-left: auto;
		margin-bottom: 20px;
		display: block;
		background: url(./img/common/cv.svg) no-repeat center center / contain;
	}

	#cvHead {
		padding-left: 30px;
		font-size: 2.4rem;
	}

	#cvContent {
		padding-right: 0;
	}

	#cvContent::after {
		content: none;
	}

	.cvText {
		font-size: 1.6rem;
	}

	#cvContactWrap {
		justify-content: center;
	}

	#pageHead {
		padding-bottom: calc(60px + 120px);
	}

	#pageTitle {
		font-size: 5.4rem;
	}
}


/* -------------------------------------------------- */
/* TAB(調整) */
/* -------------------------------------------------- */
@media screen and (min-width: 768px) and (max-width: 1024px) {
	.tabbr {
		display: block;
	}

	.hiddenTab {
		display: none;
	}
}

/* -------------------------------------------------- */
/* SP(調整) */
/* -------------------------------------------------- */
@media screen and (max-width: 767px) {
	#container {
		font-family: "Hiragino Sans", "Noto Sans CJK JP", sans-serif;
	}

	.spbr {
		display: block;
	}

	.hiddenSp {
		display: none;
	}

	.inner {
		padding: 0 4%;
	}

	.btn {
		font-size: 1.6rem;
	}

	.btn::after {
		width: 28px;
		height: 20px;
	}

	.sectionTitleEn {
		margin-bottom: 12px;
	}

	.sectionTitleEn img {
		height: 32px;
	}

	.sectionTitleJa {
		font-size: 2rem;
	}

	#header {
		padding-top: 15px;
		padding-bottom: 15px;
	}

	#headerLogo {
		width: 160px;
		height: 45px;
	}

	#headerInner {
		padding-right: calc(4% + 45px + 4%);
		padding-left: 4%;
	}

	#menuBtn {
		width: 45px;
		height: 45px;
		top: 15px;
		right: 4%;
	}

	.menuBtnBar {
		width: 20px;
		left: 11px;
	}

	.menuBtnBar:nth-child(1) {
		top: 13px;
	}
	.menuBtnBar:nth-child(2) {
		top: 20px;
	}
	.menuBtnBar:nth-child(3) {
		top: 27px;
	}

	#menuBtn.is-open .menuBtnBar:nth-child(1) {
		top: 20px;
	}
	#menuBtn.is-open .menuBtnBar:nth-child(3) {
		top: 20px;
	}

	#menu {
		padding-top: 70px;
	}

	#menuList {
		margin-bottom: 40px;
		grid-auto-flow: row;
		grid-template-rows: auto;
		gap: 18px;
	}

	.menuListItem a {
		font-size: 1.5rem;
	}

	#menuFoot {
		padding: 20px;
		flex-direction: column;
		gap: 15px;
	}

	#menuTelNum {
		padding-left: 38px;
		font-size: 2.6rem;
	}

	#menuTelNum::before {
		width: 30px;
		height: 20px;
	}

	#menuTelHour {
		font-size: 1.2rem;
	}

	#menuContactBtn {
		padding: 15px 15px 15px 40px;
		font-size: 1.4rem;
	}

	#footerInner {
		flex-direction: column;
	}

	#footerInfo {
		width: 100%;
		padding-bottom: 40px;
		border-bottom: 2px solid #737373;
	}

	#footerLogo img {
		width: 200px;
	}

	#footerAddress {
		font-size: 1.5rem;
	}

	#footerAddress .textSizeMd {
		font-size: 1.5rem;
	}

	#footerCopyright {
		font-size: 1.2rem;
	}

	#footerNav {
		padding-left: 0;
		border-left: none;
	}

	.footerNavItem {
		padding-left: 20px;
	}

	.footerNavItem a {
		font-size: 1.5rem;
	}

	#cv {
		margin-top: -80px;
		padding-top: 60px;
		border-radius: 40px 40px 0 0;
	}

	#cvInner::before {
		width: 200px;
		height: 166px;
		margin-bottom: 30px;
	}

	#cvHead {
		margin-bottom: 20px;
		padding-left: 25px;
		font-size: 2rem;
	}

	#cvHead::before {
		top: -20px;
	}

	#cvTextWrap {
		margin-bottom: 30px;
	}

	.cvText {
		font-size: 1.4rem;
	}

	#cvTelNum {
		font-size: 3rem;
	}

	#cvTelHour {
		font-size: 1.5rem;
	}

	#cvContactBtn {
		padding: 15px 15px 15px 35px;
		font-size: 1.6rem;
	}

	#pageHead {
		padding-bottom: calc(40px + 120px);
	}

	#pageTitle {
		font-size: 3.2rem;
	}

	#pageTitle::after {
		font-size: 1.4rem;
	}

	#bcWrap {
		padding-top: 80px;
		padding-bottom: calc(20px + 80px);  /* セクションの余白 + 下のセクション（#cv）のネガティブマージン分 */
	}

	/* #cvが無いページ */
	.noCv #bcWrap {
		padding-bottom: 20px;
	}

	#bc li {
		font-size: 1.4rem;
	}
}

@media screen and (max-width: 374px) {
	html {
		font-size: 2.667vw;
	}
}
