@charset "UTF-8";

/* CSS Document */
@font-face {
	font-family: "Yu Gothic";
	font-display: auto;
	font-weight: normal;
	src: local("Yu Gothic-Medium"),
	local('Yu Gothic Medium'),
	local('YuGothic-Regular');
	}
	@font-face {
	font-family: "Yu Gothic";
	font-display: auto;
	font-weight: bold;
	src: local("Yu Gothic-Bold"),
	local('Yu Gothic');
}


/* reset
------------------------------------------*/
/*!
 * ress.css ? v4.0.0
 * MIT License
 * github.com/filipelinhares/ress
 */html{box-sizing:border-box;-webkit-text-size-adjust:100%;word-break:normal;-moz-tab-size:4;tab-size:4}*,:after,:before{background-repeat:no-repeat;box-sizing:inherit}:after,:before{text-decoration:inherit;vertical-align:inherit}*{padding:0;margin:0}hr{overflow:visible;height:0;color:inherit}details,main{display:block}summary{display:list-item}small{font-size:80%}[hidden]{display:none}abbr[title]{border-bottom:none;text-decoration:underline;text-decoration:underline dotted}a{background-color:transparent}a:active,a:hover{outline-width:0}code,kbd,pre,samp{font-family:monospace,monospace}pre{font-size:1em}b,strong{font-weight:bolder}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-color:inherit;text-indent:0}input{border-radius:0}[disabled]{cursor:default}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}textarea{overflow:auto;resize:vertical}button,input,optgroup,select,textarea{font:inherit}optgroup{font-weight:700}button{overflow:visible}button,select{text-transform:none}[role=button],[type=button],[type=reset],[type=submit],button{cursor:pointer;color:inherit}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button:-moz-focusring{outline:1px dotted ButtonText}[type=reset],[type=submit],button,html [type=button]{-webkit-appearance:button}button,input,select,textarea{background-color:transparent;border-style:none}a:focus,button:focus,input:focus,select:focus,textarea:focus{outline-width:0}select{-moz-appearance:none;-webkit-appearance:none}select::-ms-expand{display:none}select::-ms-value{color:currentColor}legend{border:0;color:inherit;display:table;white-space:normal;max-width:100%}::-webkit-file-upload-button{-webkit-appearance:button;color:inherit;font:inherit}img{border-style:none}progress{vertical-align:baseline}[aria-busy=true]{cursor:progress}[aria-controls]{cursor:pointer}[aria-disabled=true]{cursor:default}address{font-style:normal}
h1,h2,h3,h4,h5,h6 { font-size: inherit; font-weight: inherit; margin: 0; padding:0;}
ul,li,ol,li { list-style: none;}
a,form,iframe {outline: 0; border: 0;}
img {
	max-width: 100%;
	height:auto;
	line-height:0;
	vertical-align:top;
}

a:link,
a:hover,
a:visited {
	text-decoration: none;
	color: inherit;
}

/* テキストリンク */
a.txtlink {
	color: green;
	text-decoration: underline;
}
a.txtlink:hover {
	text-decoration: none;
}

/* 電話リンク */
.sp-tel { display: inline-block;}
@media (min-width: 768px){
	a[href^="tel:"], a.sp-tel[href^="tel:"] {
		pointer-events: none;
	}
}

.no-tel, .no-tel * {
	pointer-events: none !important;
	text-decoration: none !important;
}

/* font style 親要素引継ぎ */
span {
	font-size: inherit;
	font-weight: inherit;
}

/* Primary Styles
------------------------------------------*/
html {
	overflow-y: scroll;
	box-sizing: border-box;
	font-size: 62.5%;
}

body {
	position: relative;
	background:#fff;
	text-size-adjust:100%;
	color:#333;
	font-size: 1.6rem;
	font-weight: 500;
	font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, "ＭＳ ゴシック",sans-serif;
	letter-spacing: 0;
	line-height: 1.7;
}

body.fixed {
    position: fixed;
    width: 100%;
}

main {
	font-size: 1.6rem;
	line-height: 1.75;
	display:  block;
	padding-top: 140px;
}

@media (max-width: 767px){
	main {
		padding-top: 80px;
	}
}

/* Common style
---------------------------------*/
.txt-center,
.stxt-center,
.stxt-center-l,
.stxt-center-m,
.stxt-center-s {
	text-align: center;
}
@media (max-width: 767px){
	.stxt-center {
		text-align: left;
	}
}
@media (max-width: 640px){
	.stxt-center-l {
		text-align: left;
	}
}
@media (max-width: 480px){
	.stxt-center-m {
		text-align: left;
	}
}
@media (max-width: 375px){
	.stxt-center-s {
		text-align: left;
	}
}

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

.block { display: block;}
.iblock { display: inline-block;}

/*PC SP only*/
@media (min-width: 1281px){.sp-only-ll {display: none;}}
@media (max-width: 1280px){.pc-only-ll {display: none;}}
@media (min-width: 1025px){.sp-only-l {display: none;}}
@media (max-width: 1024px){.pc-only-l {display: none;}}
@media (min-width: 768px){.sp-only {display: none;}}
@media (max-width: 767px){.pc-only {display: none;}}
@media (min-width: 641px){.sp-only-ml {display: none;}}
@media (max-width: 640px){.pc-only-ml {display: none;}}
@media (min-width: 481px){.sp-only-m {display: none;}}
@media (max-width: 480px){.pc-only-m {display: none;}}
@media (min-width: 376px){.sp-only-s {display: none;}}
@media (max-width: 375px){.pc-only-s {display: none;}}

/* flex ---------------- */
.flex {
	display: flex;
	flex-wrap: wrap;
}
.flex.column {
    flex-direction: column;
}
.flex.between {
	-webkit-box-pack: justify;
    justify-content: space-between;
}
/* 上下左右中央 */
.flex.vc {
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
/* 上下中央横並び */
.flex.vm {
    flex-direction: row;
    align-items: center;
}

/* layout --------------------- */
.wrap, .wrap-l, .wrap-m, .wrap-s, .wrap-ss {
    box-sizing: border-box;
    width: 90%;
    margin: 0 auto;
}
.wrap-l {max-width: 1350px;}
.wrap-m {max-width: 1200px;}
.wrap-s {max-width: 1000px;}
.wrap-ss {max-width: 900px;}

/* object fit --------------------- */
.of-wrap {
    width: 100%;
    display: block;
}
.of-wrap img {
    width: 100%;
    height: 100%;
}
.of-wrap.of-1x1 {aspect-ratio: 1/1;}
.of-wrap.of-2x1 {aspect-ratio: 2/1;}
.of-wrap.of-3x2 {aspect-ratio: 3/2;}
.of-wrap.of-4x3 {aspect-ratio: 4/3;}
.of-wrap.of-16x9 {aspect-ratio: 16/9;}

.of-wrap.of-cover img {object-fit: cover}
.of-wrap.of-contain img {object-fit: contain}


/* background-color --------------------------------------*/
.bg-999 { background-color: #999; }
.bg-666 { background-color: #666; }
.bg-wht { background-color: #fff; }
.bg-orn { background-color: #ed6c1e; }
.bg-orn2 { background-color: #ff8d49; }
.bg-orn3 { background-color: #ec6d3c; }
.bg-ppl { background-color: #9668a3; }
.bg-yel { background-color: #fab000; }
.bg-yel2 {background-color: #e38e03;}
.bg-yel3 { background-color: #fabe00; }
.bg-lyel { background-color: #ffe288; }
.bg-grn { background-color: #80a940; }
.bg-pnk { background-color: #e86194; }
.bg-blu { background-color: #5991bc; }
.bg-brn { background-color: #ae7559; }

/* font STYLE ------------------- */
.f-en { font-family: Arial, Helvetica, "sans-serif";}
.f-yug { font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro","メイリオ", Meiryo, "ＭＳ ゴシック",sans-serif;}
.f-hrg { font-family: Hiragino Sans, 'ヒラギノ角ゴ ProN W3', Hiragino Kaku Gothic ProN,"ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;}
.f-rob { font-family: 'Roboto', sans-serif;}

/* font weight --------------------------------------*/
.f-bold { font-weight: bold;}
.f-normal { font-weight: normal;}
.f-w100 { font-weight: 100;}
.f-w200 { font-weight: 200;}
.f-w300 { font-weight: 300;}
.f-w400 { font-weight: 400;}
.f-w500 { font-weight: 500;}
.f-w600 { font-weight: 600;}
.f-w700 { font-weight: 700;}
.f-w900 { font-weight: 900;}

/* font color --------------------------------------*/
.f-ppl { color: #9668a3;}
.f-ppl2 { color: #77318b;}
.f-yel { color: #d48200;}
.f-dyel { color: #9a6105;}
.f-orn { color: #ed6c1e;}
.f-grn { color: #80a940;}
.f-dgrn { color: #577527;}
.f-pnk { color: #e86194;}
.f-blu { color: #5991bc;}
.f-brn { color: #ae7559;}
.f-wht { color: #fff;}
.f-blk { color: #000;}
.f-222 { color: #222;}
.f-333 { color: #333;}
.f-444 { color: #444;}
.f-666 { color: #666;}

/* line height --------------------------------------*/
.f-lh1 { line-height: 1;}
.f-lh11 { line-height: 1.1;}
.f-lh12 { line-height: 1.2;}
.f-lh13 { line-height: 1.3;}
.f-lh15 { line-height: 1.5;}
.f-lh1625 { line-height: 1.625;}
.f-lh2 { line-height: 2;}

/* letter spacing --------------------------------------*/
.f-ls200 { letter-spacing: 0.2em; }
.f-ls100 { letter-spacing: 0.1em; }
.f-ls50 { letter-spacing: 0.05em; }
.f-ls25 { letter-spacing: 0.025em; }

/* font size --------------------------------------*/
.f-sz10 { font-size: 1.0rem;}
.f-sz11 { font-size: 1.1rem;}
.f-sz12 { font-size: 1.2rem;}
.f-sz13 { font-size: 1.3rem;}
.f-sz14 { font-size: 1.4rem;}
.f-sz15 { font-size: 1.5rem; font-size: clamp(1.4rem, 1.3328rem + 0.14vw, 1.5rem);}
.f-sz16 { font-size: 1.6rem; font-size: clamp(1.5rem, 1.4336rem + 0.14vw, 1.6rem);}
.f-sz17 { font-size: 1.7rem; font-size: clamp(1.6rem, 1.5328rem + 0.14vw, 1.7rem);}
.f-sz18 { font-size: 1.8rem; font-size: clamp(1.7rem, 1.6336rem + 0.14vw, 1.8rem);}
.f-sz19 { font-size: 1.9rem; font-size: clamp(1.75rem, 1.6496rem + 0.21vw, 1.9rem);}
.f-sz20 { font-size: 2.0rem; font-size: clamp(1.8rem, 1.6672rem + 0.28vw, 2rem);}
.f-sz21 { font-size: 2.1rem; font-size: clamp(1.85rem, 1.6832rem + 0.35vw, 2.1rem);}
.f-sz22 { font-size: 2.2rem; font-size: clamp(1.9rem, 1.7008rem + 0.42vw, 2.2rem);}
.f-sz23 { font-size: 2.3rem; font-size: clamp(1.95rem, 1.7168rem + 0.49vw, 2.3rem);}
.f-sz24 { font-size: 2.4rem; font-size: clamp(2rem, 1.7328rem + 0.56vw, 2.4rem);}
.f-sz25 { font-size: 2.5rem; font-size: clamp(2rem, 1.6672rem + 0.69vw, 2.5rem);}
.f-sz26 { font-size: 2.6rem; font-size: clamp(2.1rem, 1.7664rem + 0.69vw, 2.6rem);}
.f-sz27 { font-size: 2.7rem; font-size: clamp(2.1rem, 1.7008rem + 0.83vw, 2.7rem);}
.f-sz28 { font-size: 2.8rem; font-size: clamp(2.2rem, 1.8rem + 0.83vw, 2.8rem);}
.f-sz29 { font-size: 2.9rem; font-size: clamp(2.2rem, 1.7328rem + 0.97vw, 2.9rem);}
.f-sz30 { font-size: 3.0rem; font-size: clamp(2.3rem, 1.8336rem + 0.97vw, 3rem);}
.f-sz31 { font-size: 3.1rem; font-size: clamp(2.3rem, 1.7664rem + 1.11vw, 3.1rem);}
.f-sz32 { font-size: 3.2rem; font-size: clamp(2.4rem, 1.8672rem + 1.11vw, 3.2rem);}
.f-sz33 { font-size: 3.3rem; font-size: clamp(2.4rem, 1.8rem + 1.25vw, 3.3rem);}
.f-sz34 { font-size: 3.4rem; font-size: clamp(2.5rem, 1.9008rem + 1.25vw, 3.4rem);}
.f-sz35 { font-size: 3.5rem; font-size: clamp(2.5rem, 1.8336rem + 1.39vw, 3.5rem);}
.f-sz36 { font-size: 3.6rem; font-size: clamp(2.6rem, 1.9328rem + 1.39vw, 3.6rem);}
.f-sz37 { font-size: 3.7rem; font-size: clamp(2.6rem, 1.8672rem + 1.53vw, 3.7rem);}
.f-sz38 { font-size: 3.8rem; font-size: clamp(2.7rem, 1.9664rem + 1.53vw, 3.8rem);}
.f-sz39 { font-size: 3.9rem; font-size: clamp(2.7rem, 1.9008rem + 1.67vw, 3.9rem);}
.f-sz40 { font-size: 4.0rem; font-size: clamp(2.8rem, 2rem + 1.67vw, 4rem);}
.f-sz41 { font-size: 4.1rem; font-size: clamp(2.8rem, 1.9328rem + 1.81vw, 4.1rem);}
.f-sz42 { font-size: 4.2rem; font-size: clamp(2.9rem, 2.0336rem + 1.81vw, 4.2rem);}
.f-sz43 { font-size: 4.3rem; font-size: clamp(2.9rem, 1.9664rem + 1.94vw, 4.3rem);}
.f-sz44 { font-size: 4.4rem; font-size: clamp(3rem, 2.0672rem + 1.94vw, 4.4rem);}
.f-sz45 { font-size: 4.5rem; font-size: clamp(3rem, 2rem + 2.08vw, 4.5rem);}
.f-sz46 { font-size: 4.6rem; font-size: clamp(3.1rem, 2.1008rem + 2.08vw, 4.6rem);}
.f-sz47 { font-size: 4.7rem; font-size: clamp(3.1rem, 2.0336rem + 2.22vw, 4.7rem);}
.f-sz48 { font-size: 4.8rem; font-size: clamp(3.2rem, 2.1328rem + 2.22vw, 4.8rem);}
.f-sz49 { font-size: 4.9rem; font-size: clamp(3.2rem, 2.0672rem + 2.36vw, 4.9rem);}
.f-sz50 { font-size: 5.0rem; font-size: clamp(3.3rem, 2.1664rem + 2.36vw, 5rem);}
.f-sz51 { font-size: 5.1rem; font-size: clamp(3.3rem, 2.1008rem + 2.50vw, 5.1rem);}
.f-sz52 { font-size: 5.2rem; font-size: clamp(3.4rem, 2.2rem + 2.50vw, 5.2rem);}
.f-sz53 { font-size: 5.3rem; font-size: clamp(3.4rem, 2.1328rem + 2.64vw, 5.3rem);}
.f-sz54 { font-size: 5.4rem; font-size: clamp(3.5rem, 2.2336rem + 2.64vw, 5.4rem);}
.f-sz55 { font-size: 5.5rem; font-size: clamp(3.5rem, 2.1664rem + 2.78vw, 5.5rem);}
.f-sz56 { font-size: 5.6rem; font-size: clamp(3.6rem, 2.2672rem + 2.78vw, 5.6rem);}
.f-sz57 { font-size: 5.7rem; font-size: clamp(3.6rem, 2.2rem + 2.92vw, 5.7rem);}
.f-sz58 { font-size: 5.8rem; font-size: clamp(3.7rem, 2.3008rem + 2.92vw, 5.8rem);}
.f-sz59 { font-size: 5.9rem; font-size: clamp(3.7rem, 2.2336rem + 3.06vw, 5.9rem);}
.f-sz60 { font-size: 6.0rem; font-size: clamp(3.8rem, 2.3328rem + 3.06vw, 6rem);}
.f-sz62 { font-size: 6.2rem; font-size: clamp(3.8rem, 2.2rem + 3.33vw, 6.2rem);}
.f-sz64 { font-size: 6.4rem; font-size: clamp(3.9rem, 2.2336rem + 3.47vw, 6.4rem);}
.f-sz66 { font-size: 6.6rem; font-size: clamp(3.9rem, 2.1008rem + 3.75vw, 6.6rem);}
.f-sz68 { font-size: 6.8rem; font-size: clamp(4rem, 2.1328rem + 3.89vw, 6.8rem);}
.f-sz70 { font-size: 7.0rem; font-size: clamp(4.2rem, 2.3328rem + 3.89vw, 7rem);}
.f-sz72 { font-size: 7.2rem; font-size: clamp(4.4rem, 2.5328rem + 3.89vw, 7.2rem);}
.f-sz76 { font-size: 7.6rem; font-size: clamp(4.6rem, 2.6rem + 4.17vw, 7.6rem);}
.f-sz80 { font-size: 8.0rem; font-size: clamp(4.8rem, 2.6672rem + 4.44vw, 8rem);}
.f-sz85 { font-size: 8.5rem; font-size: clamp(5rem, 2.6672rem + 4.86vw, 8.5rem);}
.f-sz90 { font-size: 9.0rem; font-size: clamp(5rem, 2.3328rem + 5.56vw, 9rem);}
.f-sz95 { font-size: 9.5rem; font-size: clamp(5.5rem, 2.8336rem + 5.56vw, 9.5rem);}
.f-sz100 { font-size: 10.0rem; font-size: clamp(5.5rem, 2.5008rem + 6.25vw, 10rem);}
.f-sz110 { font-size: 11.0rem; font-size: clamp(5.5rem, 1.8336rem + 7.64vw, 11rem);}


/* padding */
.pt130 { padding-top:7.5rem; padding-top: clamp(7.5rem, 3.8336rem + 7.64vw, 13rem);}
.pt120 { padding-top:7rem; padding-top: clamp(7rem, 3.6672rem + 6.94vw, 12rem);}
.pt110 { padding-top:6.5rem; padding-top: clamp(6.5rem, 3.5008rem + 6.25vw, 11rem);}
.pt100 { padding-top:6rem; padding-top: clamp(6rem, 3.3328rem + 5.56vw, 10rem);}
.pt90 { padding-top:5.5rem; padding-top: clamp(5.5rem, 3.1664rem + 4.86vw, 9rem);}
.pt80 { padding-top:5rem; padding-top: clamp(5rem, 3rem + 4.17vw, 8rem);}
.pt70 { padding-top:4.5rem; padding-top: clamp(4.5rem, 2.8336rem + 3.47vw, 7rem);}
.pt60 { padding-top:4rem; padding-top: clamp(4rem, 2.6672rem + 2.78vw, 6rem);}
.pt50 { padding-top:3.5rem; padding-top: clamp(3.5rem, 2.5008rem + 2.08vw, 5rem);}
.pt40 { padding-top:3rem; padding-top: clamp(3rem, 2.3328rem + 1.39vw, 4rem);}
.pt30 { padding-top:2.5rem; padding-top: clamp(2.5rem, 2.1664rem + 0.69vw, 3rem);}
.pt25 { padding-top:2rem; padding-top: clamp(2rem, 1.1664rem + 0.69vw, 2.5rem);}
.pt20 { padding-top:1.5rem; padding-top: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);}
.pt15 {	padding-top: 15px;}
.pt10 {	padding-top: 10px;}
.pt5 { padding-top: 5px;}

.pb130 { padding-bottom:7.5rem; padding-bottom: clamp(7.5rem, 3.8336rem + 7.64vw, 13rem);}
.pb120 { padding-bottom:7rem; padding-bottom: clamp(7rem, 3.6672rem + 6.94vw, 12rem);}
.pb110 { padding-bottom:6.5rem; padding-bottom: clamp(6.5rem, 3.5008rem + 6.25vw, 11rem);}
.pb100 { padding-bottom:6rem; padding-bottom: clamp(6rem, 3.3328rem + 5.56vw, 10rem);}
.pb90 { padding-bottom:5.5rem; padding-bottom: clamp(5.5rem, 3.1664rem + 4.86vw, 9rem);}
.pb80 { padding-bottom:5rem; padding-bottom: clamp(5rem, 3rem + 4.17vw, 8rem);}
.pb70 { padding-bottom:4.5rem; padding-bottom: clamp(4.5rem, 2.8336rem + 3.47vw, 7rem);}
.pb60 { padding-bottom:4rem; padding-bottom: clamp(4rem, 2.6672rem + 2.78vw, 6rem);}
.pb50 { padding-bottom:3.5rem; padding-bottom: clamp(3.5rem, 2.5008rem + 2.08vw, 5rem);}
.pb40 { padding-bottom:3rem; padding-bottom: clamp(3rem, 2.3328rem + 1.39vw, 4rem);}
.pb30 { padding-bottom:2.5rem; padding-bottom: clamp(2.5rem, 2.1664rem + 0.69vw, 3rem);}
.pb25 { padding-bottom:2rem; padding-bottom: clamp(2rem, 1.667rem + 0.694vw, 2.5rem);}
.pb20 { padding-bottom:1.5rem; padding-bottom: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);}
.pb15 {	padding-bottom: 15px;}
.pb10 {	padding-bottom: 10px;}
.pb5 { padding-bottom: 5px;}

.mb130 { margin-bottom:7.5rem; margin-bottom: clamp(7.5rem, 3.8336rem + 7.64vw, 13rem);}
.mb120 { margin-bottom:7rem; margin-bottom: clamp(7rem, 3.6672rem + 6.94vw, 12rem);}
.mb110 { margin-bottom:6.5rem; margin-bottom: clamp(6.5rem, 3.5008rem + 6.25vw, 11rem);}
.mb100 { margin-bottom:6rem; margin-bottom: clamp(6rem, 3.3328rem + 5.56vw, 10rem);}
.mb90 { margin-bottom:5.5rem; margin-bottom: clamp(5.5rem, 3.1664rem + 4.86vw, 9rem);}
.mb80 { margin-bottom:5rem; margin-bottom: clamp(5rem, 3rem + 4.17vw, 8rem);}
.mb70 { margin-bottom:4.5rem; margin-bottom: clamp(4.5rem, 2.8336rem + 3.47vw, 7rem);}
.mb60 { margin-bottom:4rem; margin-bottom: clamp(4rem, 2.6672rem + 2.78vw, 6rem);}
.mb50 { margin-bottom:3.5rem; margin-bottom: clamp(3.5rem, 2.5008rem + 2.08vw, 5rem);}
.mb40 { margin-bottom:3rem; margin-bottom: clamp(3rem, 2.3328rem + 1.39vw, 4rem);}
.mb30 { margin-bottom:2.5rem; margin-bottom: clamp(2.5rem, 2.1664rem + 0.69vw, 3rem);}
.mb20 { margin-bottom:1.5rem; margin-bottom: clamp(1.5rem, 1.1664rem + 0.69vw, 2rem);}
.mb15 { margin-bottom: 15px;}
.mb10 { margin-bottom: 10px;}
.mb5 { margin-bottom: 5px;}

.mt50 { margin-top:3.5rem; margin-top: clamp(3.5rem, 2.5008rem + 2.08vw, 5rem);}
.mt60 { margin-top:4rem; margin-top: clamp(4rem, 2.6672rem + 2.78vw, 6rem);}

.mla { margin-left: auto;}
.mr5 { margin-right: 5px;}
.mr20 { margin-right: 20px;}


/* iOS タップバグ回避
========================= */
@media screen and (max-width: 640px) {
	.button a{
		pointer-events: none;
	}
	a:hover:after,
	a:active:after,
	a:focus:after
	a:after {
		display: none;
	}
}

/* ----------------------------------------
   header
------------------------------------------*/
/* .site-header */
.site-header {
	width: 100%;
	height: 140px;
	/*position: fixed;*/
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
    /*z-index: 9998;spメニューにもロゴを載せる場合*/
	background-color: #fff;
}
.site-header.fixed-header {
	/* 小さくなったスタイルなど表記 */
}

/* header-logo --------------------------*/
.site-header .header-logo {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	padding-left: 50px;
}
.site-header .h-logo {
	height: 100%;
	display: flex;
	align-items: center;
}
.site-header .header-logo a {
	display: block;
	height: 60%;
}
.site-header .h-logo-wrap {
	display: block;
	height: 100%;
}
.site-header .h-logo-wrap img {
	height: 100%;
}
.site-header.fixed-header .header-logo {
	/*animation-name: fix-h;
	animation-duration: 0.28s;
	animation-timing-function: ease-out;*/
}

/* .site-header .h-right --------------------------*/
.site-header .h-right {
	width: calc(100% - 466.3px); /* 100% - ロゴの領域 */
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	position: absolute;
	top: 0;
	right: 0;
	padding-right: 120px;
}
/* gnav --------------------------*/
.site-header .h-right #gnav {
	width: auto;
	/*animation-name: fix-h;
	animation-duration: 0.28s;
	animation-timing-function: ease-out;*/
	padding-top: 10px;
}

/* @keyframes fix-h {
	0% {transform: translateY(-100%);}
	100% {transform: translateY(0%);}
} */

.site-header #gnav .menulist-top {
	width: auto;
	display: table;
	position: relative;
	max-width: 100%; /* メニューの最大幅 */
	height: 40px;
	margin-left: auto;
	padding-right: 30px;
}
.site-header #gnav .menulist {
	width: auto;
	display: table;
	position: relative;
	max-width: 100%; /* メニューの最大幅 */
	height: 70px;
	padding-right: 25px;
}
.site-header #gnav .menulist-top > li {
	position: relative;
	display: table-cell;
	/* width: calc(100%/3); */
	height: 100%;
	text-align: center;
	vertical-align: middle;
}
.site-header #gnav .menulist > li {
	position: relative;
	display: table-cell;
	/* width: calc(100%/5); */
	height: 100%;
	text-align: center;
	vertical-align: middle;
}

.site-header #gnav .menulist-top > li > a,
.site-header #gnav .menulist > li > a {
	transition: opacity 0.28s ease;
}

.site-header #gnav .menulist-top > li > a {
	display: inline-block;
	line-height: 40px;/*メニューｓの高さ*/
	padding-left: 20px;
	padding-right: 20px;
	/* white-space: nowrap; */
}
.site-header #gnav .menulist > li > a,
.site-header #gnav .menulist > li.has-submenu > span {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	padding-left: 25px;
	padding-right: 25px;
	/* white-space: nowrap; */
}
.site-header #gnav .menulist > li.has-submenu > span {
	padding-right: 45px;
}
.site-header #gnav .menulist > li.has-submenu:hover {
	cursor: pointer;
}
.site-header #gnav .nav-txt {
	position: relative;
}
.site-header #gnav .has-submenu .nav-txt::before,
.site-header #gnav .has-submenu .nav-txt::after {
	content: "";
	position: absolute;
	top: 43%;
	left: calc(100% + 12px);
	width: 2px;
	height: 10px;
	border-radius: 100vh;
	background-color: #ed6c1e;
}
.site-header #gnav .has-submenu  .nav-txt::before {
	transform: translate(0, -50%) rotate(-45deg);
	transform-origin: right bottom;
}
.site-header #gnav .has-submenu .nav-txt::after {
	transform: translate(0, -50%) rotate(45deg);
	transform-origin: left bottom;
}

/* submenu --------------------------*/
.site-header #gnav .menulist > li.has-submenu .submenu {
	/*display: block;*/
	position: absolute;
	top: calc(90% + 20px);
	left: 50%;
	width: 100%;
	z-index: 0;
	opacity: 0;
	visibility: hidden;
	transform: translateX(-50%);
	min-width: 200px;
	border-radius: 10px;
	overflow: hidden;
	counter-reset: number 0;
	background-color: #fff;
	box-shadow: 0 10px 10px rgba(0, 0, 0, 0.1);
}
.site-header #gnav .menulist > li.has-submenu.touch .submenu {
	display: none;
}
.site-header #gnav .menulist > li.has-submenu.touch.active .submenu {
	display: block;
}
.site-header #gnav .menulist > li.has-submenu > span {
	/* white-space: nowrap; */
}

.site-header #gnav .menulist > li.has-submenu.active .submenu,
.site-header #gnav .menulist > li.has-submenu:hover .submenu {
	top: 90%;
	z-index: 0;
	opacity: 1;
	visibility: visible;
	display: block;
	transition: all ease 0.28s;
}

.site-header #gnav .menulist > li.has-submenu .submenu li:not(:last-child) {
	margin-bottom: 1px;

}
.site-header #gnav .menulist > li .submenu li a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 70px;
	width: 100%;
	padding: 0 20px 0 30px;
	/* white-space: nowrap; */
	background-color: #fff9e5;
	transition: background-color ease 0.28s;
}

.site-header #gnav .menulist > li.has-submenu:hover .submenu li a:hover {
	background-color: #ffe79d;
}

.site-header #gnav .menulist > li.has-submenu .submenu li a::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	width: 10px;
	height: 100%;
	background-color: #fabe00;
}
.site-header #gnav .menulist > li.has-submenu .submenu li a::after {
    counter-increment: number 1;
    content: counter(number, decimal-leading-zero);
	position: absolute;
	top: 3px;
	left: 15px;
	display: block;
	font-size: 13px;
	color: #f39800;
}

@media (min-width: 768px) {
	.site-header #gnav .menulist-top > li > a:hover,
	.site-header #gnav .menulist > li > a:hover {
		opacity: 0.8;
	}
}


@media (max-width: 1279px) {
	.site-header #gnav .menulist-top {
		padding-right: 15px;
	}
	.site-header #gnav .menulist {
		padding-right: 15px;
	}
	.site-header #gnav .menulist-top > li > a {
		padding-left: 15px;
		padding-right: 15px;
	}
	.site-header #gnav .menulist > li > a,
	.site-header #gnav .menulist > li.has-submenu > span {
		padding-left: 15px;
		padding-right: 15px;
	}
	.site-header #gnav .menulist > li.has-submenu > span {
		padding-right: 35px;
	}
}
@media (max-width: 767px) {
	.site-header {
		height: 80px;
	}
	.site-header .header-logo {
		padding-left: 20px;
	}
	.site-header .header-logo a {
		height: 70%;
	}
}
@media (max-width: 414px) {
	.site-header .header-logo {
		width: calc(100% - 80px);
		padding-left: 10px;
	}
	.site-header .header-logo a {
		height: clamp(55%, 14.5vw ,70%);
	}
}
/*---------------------------------------------
 sp-menu
---------------------------------------------*/
.sp-header {
	/* display: none; */
	position: fixed;
    top: 0;
    right: 0;
    z-index: 9999;
}
/* menu button */
.hamburger-menu.menu-button {
    width: 120px;
    height: 120px;
    position: relative;
    background-color: #ffa44a;
	border-radius: 0 0 0 10px;
    display: inline-block;
    cursor: pointer;
    transition: all 0.28s;
}
body.fixed .site-header .hamburger-menu {
}
.site-header.fixed-header .hamburger-menu {
}
.menu-button .lines {
	position: absolute;
	top: 0;
	left: 50%;
	width: 50px;
	height: 2px;
	background: #fff;
	transform: translateX(-50%);
	transition: top 0.2s ease, transform 0.2s ease;
}
.menu-button .lines:first-child {
	top: calc(40 / 120 * 100%);
}
.menu-button .lines:nth-child(2) {
	top: calc(55 / 120 * 100%);
}
.menu-button .btn-txt {
	position: absolute;
	top: calc(72 / 120 * 100%);
	left: 50%;
	white-space: nowrap;
	transform: translateX(-50%);
	transition: opacity 0.2s ease;
}

/*active*/
.menu-button.active .lines {
	top: 50%;
}
.menu-button.active .lines:first-child {
	transform: translate(-50%, -50%) rotate(45deg);
}
.menu-button.active .lines:nth-child(2) {
	transform: translate(-50%, -50%) rotate(-45deg);
}
.menu-button.active .btn-txt {
	opacity: 0;
}


/* spnav */
.spnav {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    position: fixed;
    z-index: 9997;
    pointer-events: none;
    transition: .5s cubic-bezier(.77,0,.175,1);

    /*上から
    bottom: 101%;
    right: 0;
    left: 0;*/

    /*左から
    top: 0;
    bottom: 0;
    right: 101%;*/

    /*右から*/
    top: 0;
    bottom: 0;
    /* left: 101%; */
	right: -100%;

    /*下から
    top: 101%;
    right: 0;
    left: 0;*/
}
.spnav.hide-nav {
	opacity: 0;
	visibility: hidden;
}
.spnav.show-nav {
    pointer-events: auto;
    transform: scaleY(1);
	visibility: visible;
	opacity: 1;

	/*上から
	bottom: 0;*/

	/*左から
	right: 0;*/

	/*右から*/
	/* left: 0; */
	right: 0;

	/*下から
	top: 0;*/
}
.wrap-spnav {
    /* position: relative; */
    /* width: 100%; */
    /* z-index: 2; */
    background-color: #fff9e5;
	box-shadow: 0 5px 10px  rgba(0, 0, 0, 0.1);
    /*padding-top: 70px;上部にロゴがある場合*/

    /*menuが画面幅より小さい場合*/
    position: absolute;
    right: 0;
    z-index: 2;
	width: 100%;
    max-width: 600px;
}
.wrap-spnav .inner-spnav {
    position: relative;
    z-index: 2;
    display: flex;
    width: 100%;
    margin: auto;
    /*height: calc(100vh - 70px);
    height: calc(100dvh - 70px);上部にロゴがある場合*/
    height: 100vh;
    height: 100dvh;
    box-sizing: border-box;
	overflow: auto;
	padding-top: 160px;
    padding-left: 5%;
    padding-right: 5%;
}
.wrap-spnav nav {
	width: 100%;
	max-width: 480px;
	margin: 0 auto;
}
.wrap-spnav nav > *:last-child {
    padding-bottom: 100px;
}
.wrap-spnav .sp-menulist.nav-top > li.txt-add::before {
	content: "派遣事業";
	display: block;
	font-size: clamp(1.6rem, 1.5328rem + 0.14vw, 1.7rem);
	font-weight: bold;
	margin-bottom: 2px;
}
.wrap-spnav .sp-menulist.nav-top > li.nav-tel {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}
.wrap-spnav .sp-menulist.nav-top  li a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 55px;
	padding-right: 20px;
	padding-left: 20px;
	background-color: #fff;
	border-radius: 5px;
}
.wrap-spnav .sp-menulist.nav-top > li.nav-contact a,
.wrap-spnav .sp-menulist.nav-top > li.nav-tel a {
	min-height: 60px;
	margin-left: auto;
	margin-right: auto;
	justify-content: center;
	flex-direction: column;
	row-gap: 2px;
	line-height: 1;
	transition: background-color 0.28s ease;
}
.wrap-spnav .sp-menulist.nav-top > li.nav-contact a {
	border: 2px solid #ed6c1e;
}
.wrap-spnav .sp-menulist.nav-top > li.nav-tel a {
	flex: 1;
	padding: 0;
	background-color: #ed6c1e;
}
.wrap-spnav .sp-menulist.nav-bottom {
	display: flex;
	justify-content: center;
	column-gap: 35px;
	row-gap: 5px;
	white-space: nowrap;
}
.wrap-spnav .sp-menulist.nav-bottom > li a {
	padding: 3px 5px;
	transition: opacity 0.28s ease;
}
/* .wrap-spnav .sp-menulist > li .sp-submenu {
	display: none;
} */
.spnav .spnav-mask {
    width: 100vw;
    height: 100vh;
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}
.spnav.show-nav .spnav-mask {
    display: block;
}
@media (min-width: 768px) {
	.wrap-spnav .sp-menulist.nav-top > li.nav-contact a:hover {
		background-color: rgba(240, 240, 240, 1);
	}
	.wrap-spnav .sp-menulist.nav-bottom > li a:hover {
		opacity: 0.8;
	}

}
@media (max-width: 767px) {
	.wrap-spnav {
		max-width: none
	}
	.wrap-spnav .inner-spnav {
		padding-top: 110px;
	}
	.hamburger-menu.menu-button {
		width: 70px;
		height: 70px;
	}
	.menu-button .lines {
		width: 40px;
	}
	.menu-button .btn-txt {
		font-size: 1.2rem;
	}
}
@media (max-width: 480px) {
	.wrap-spnav .sp-menulist.nav-bottom {
		flex-direction: column;
		align-items: center;
		row-gap: 5px;
	}
	.wrap-spnav .sp-menulist.nav-top > li.nav-tel a {
		flex: 0 1 auto;
		width: 100%;
	}
}

/*---------------------------------------------
PCメニューとSPボタン切り替え
---------------------------------------------*/
/* @media (min-width: 768px) {
	.spnav {
		display: none;
	}
} */
@media (max-width: 1199px) {
	/* .sp-header {
		display: block;
	} */
	.site-header .pc-menu {
		display: none;
	}
}




/*---------------------------------------------
 共通スタイル
---------------------------------------------*/



/* ---------------------------------------------------------
btn共通
--------------------------------------------------------- */
.btnarea {
	display: flex;
}
.btnarea.btn-center {
	justify-content: center;
}
.btnarea.btn-right {
	justify-content: flex-end;
}

/* btn ----------------- */
.btn {
	display: inline-block;
	vertical-align: middle;
	width: 100%;
	cursor: pointer;
	overflow: hidden;
	position: relative;
    transition: all ease 0.28s;
}
/* ボタン内容 */
.btn-cont {
	display: flex;
	align-items: center;
	width: 100%;
	height: 100%;
	padding: 10px 30px;
	line-height: 1.4;
}

.btn-cont.cont-center {
	justify-content: center;
}

/* ---------------------------------------------------------
 option
--------------------------------------------------------- */
/* ボタンの幅：デザイン案に合わせて編集 */
/* .btnW-s {max-width: 320px;} */
.btnW-m {max-width: 400px;}
.btnW-s {max-width: 300px;}
/* .btnW-l {max-width: 570px;} */
@media (max-width: 480px) {
	.btnW-s,.btnW-m,.btnW-l {
		max-width: none;
	}
}

/* ボタンの高さ：デザイン案に合わせて編集 */
/* .btnH-s {height: 60px;} */
.btnH-s {min-height: 50px;}
.btnH-sl {min-height: 60px;}
.btnH-m {min-height: 80px;}
.btnH-l {min-height: 100px;}

/* ---------------------------------------------------------
btn-style
--------------------------------------------------------- */
/* btn-style01（hover時の下線のみ） */
.btn.btn-style01 {
	display: flex;
	align-items: center;
	width: fit-content;
}
.btn.btn-style01 .btn-cont::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	width: 100%;
	height: 2px;
	transform: scale(0, 1);
	transform-origin: left top;
	transition: transform 0.28s ease;
}
.btn-style01 .btn-cont {
	column-gap: 15px;
	/* 下記はbtn-contを初期値に戻しています */
	position: initial;
	top: auto;
	left: auto;
	width: auto;
	padding: 5px 0;
	line-height: 1.75;
	transform: none;
}
.btn-style01 .btn-cont .icon-circle {
	flex: 0 0 auto;
}
.btn.btn-style01 .btn-cont.border-gry::before {	background-color: #666; }
.btn.btn-style01 .btn-cont.border-yel::before {	background-color: #fabe00; }
.btn.btn-style01 .btn-cont.border-grn::before {	background-color: #80a940; }
.btn.btn-style01 .btn-cont.border-pnk::before {	background-color: #e86194; }
.btn.btn-style01 .btn-cont.border-ppl::before {	background-color: #9668a3; }
.btn.btn-style01 .btn-cont.border-blu::before {	background-color: #5991bc; }
.btn.btn-style01 .btn-cont.border-brn::before {	background-color: #ae7559; }

@media (min-width: 768px) {
	.btn.btn-style01:hover .btn-cont:before {
		transform: scale(1, 1);
	}
}

/* btn-style02（シンプルなボタン） */
.btn.btn-style02 {
	border-radius: 10px;
}

/* btn-style03（付箋型） */
.btn.btn-style03 {
	background-color: #fff;
	border-radius: 5px;
	border-left: 5px solid;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.btn.btn-style03.style-ppl { border-color: #9668a3; }
.btn.btn-style03.style-grn { border-color: #80a940; }

@media (min-width: 768px) {
    .btn.btn-style03:hover {
        box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    }
}

/* btn-style02（背景） */
.btn.btn-style11 {
	border: 1px solid transparent;	/* 枠線の設定 */
	background-color: #000; 		/* 背景色 */
	color: #fff;					/* 文字色 */
}
@media (min-width: 768px) {
	.btn.btn-style11:hover {
		border: 1px solid transparent;	/* 枠線の設定 */
		background-color: #333; 		/* 背景色 */
		color: #fff;					/* 文字色 */
	}
}

/* btn-style03（枠線） */
.btn.btn-style12 {
	border: 1px solid #000; 		/* 枠線の設定 */
	background-color: transparent;	/* 背景色 */
	color: #000; 					/* 文字色 */
}
@media (min-width: 768px) {
	.btn.btn-style12:hover {
		border: 1px solid #000; 		/* 枠線の設定 */
		background-color: #f5f5f5;		/* 背景色 */
		color: #000; 					/* 文字色 */
	}
}

/* btn-style04（ダウンロード） */
.btn.btn-style04 {
	border-radius: 5px;
	border: 2px solid #fabe00;
	border-left: 5px solid #fabe00;
	background-color: #fff;
	box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
	transition: box-shadow .28s ease , opacity .28s ease;
}
@media (min-width: 768px) {
	.btn.btn-style04:hover {
		box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
        opacity: 0.7;
	}
}
@media (max-width: 767px) {
	.btn-style04 .btn-cont {
		padding-left: 15px;
		padding-right: 15px;
	}
}




/* TELボタン */
.btn.btn-tel {
	border-radius: 5px;
	background-color: #ed6c1e;
	transition: opacity .28s ease;
}
.btn.btn-tel .cont-center {
	padding-left: 15px;
	padding-right: 15px;
}


/* ---------------------------------------------------------
矢印ボタン
--------------------------------------------------------- */
/*.arrow01*/
.btn-arrow01 .btn-cont {
    padding-right: 70px;
}

/*--------------------------------------
円
--------------------------------------*/
.icon-circle {
	position: relative;
	display: inline-block;
	border-radius: 50%;
	transition: transform 0.28s ease;
}

/*--------------------------------------
円オプション
--------------------------------------*/
/* サイズ --------------- */
.icon-circle.circle-sz-s {
	width: 20px;
	height: 20px;
}
.icon-circle.circle-sz-m {
	width: 26px;
	height: 26px;
}
.icon-circle.circle-sz-l {
	width: 60px;
	height: 60px;
}

/*--------------------------------------
矢印
--------------------------------------*/
.icon-arrow {
	position: relative;
	display: inline-block;
	transition: all 0.28s ease;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
}
.icon-circle .icon-arrow {
	position: absolute;
	top: 50%;
	left: 50%;
	z-index: 0;
	transform: translate(-50%, -50%);
}
.btn-arrow01 .icon-arrow {
	position: absolute;
	top: 50%;
	right: 35px;
	transform: translateY(-50%);
}

/* 矢印色 ------------------- */
.icon-arrow.arrow-wht {	background-image: url(../img/common/icon_arrow_wht.svg);}
.icon-arrow.arrow-wht.arrow-under { background-image: url(../img/common/icon_arrow_wht_down.svg); }
.icon-arrow.arrow-wht.arrow-top { background-image: url(../img/common/icon_arrow_wht_top.svg); }
.icon-arrow.arrow-gry {	background-image: url(../img/common/icon_arrow_gry.svg); }
.icon-arrow.arrow-ppl {	background-image: url(../img/common/icon_arrow_ppl.svg); }
.icon-arrow.arrow-yel {	background-image: url(../img/common/icon_arrow_yel.svg);}
.icon-arrow.arrow-grn {	background-image: url(../img/common/icon_arrow_grn.svg); }

/* 矢印サイズ（base） -------- */
.icon-arrow.arrow-sz-s {
	width: 12px;
	height: 12px;
}
.icon-arrow.arrow-sz-s::after {
	width: 8px;
	height: 8px;
	border-width: 2px;
}
.icon-arrow.arrow-sz-l {
	width: 20px;
	height: 20px;
}
.icon-arrow.arrow-sz-l::after {
	width: 14px;
	height: 14px;
	border-width: 3px;
}

@media (min-width: 768px) {
    .btn-arrow01:hover .icon-arrow {
		transform: translate(15px, -50%);
	}
    .btn:hover .icon-circle {
		transform: scale(0.45);
		transform-origin: center center;
    }
    .btn:hover .icon-circle .icon-arrow {
		opacity: 0;
    }
}



/* ---------------------------------------------------------
アイコンボタン：デザイン案に合わせて編集
--------------------------------------------------------- */
/*アイコン各種-----------*/
.btn .icon {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
}
.btn .icon:not(.icon-mask) {
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}
.btn .icon.icon-mask {
	-webkit-mask-size: contain;
	        mask-size: contain;
	-webkit-mask-repeat: no-repeat;
	        mask-repeat: no-repeat;
	-webkit-mask-position: center;
	        mask-position: center;
}

.icon-left .icon {
	left: 40px;
	transform: translate(-50%, -50%);
}
.icon-right .icon {
	right: 30px;
}
.icon-left .btn-cont {
	padding-left: 85px;
}
.icon-right .btn-cont {
	padding-right: 70px;
}
@media (max-width: 767px) {
	.icon-right .icon {
		right: 15px;
	}
	.icon-right .btn-cont {
		padding-right: 50px;
	}
}


.style-ppl .icon {
	background-color: rgba(150, 104, 163, 0.5);
}
.style-grn .icon {
	background-color: rgba(128, 169, 64, 0.5);
}

.icon.i-lines {
	width: 31px;
	height: 29px;
	-webkit-mask: url(../img/common/icon_lines.svg);
	mask: url(../img/common/icon_lines.svg);
}
.icon.i-beginner {
	width: 21px;
	height: 31px;
	-webkit-mask: url(../img/common/icon_beginner.svg);
	mask: url(../img/common/icon_beginner.svg);
}
.icon.i-playback {
	width: 30px;
	height: 30px;
	-webkit-mask: url(../img/common/icon_playback.svg);
	mask: url(../img/common/icon_playback.svg) ;
}
.icon.i-download {
	width: 20px;
	height: 20px;
	background-image: url(../img/common/icon_download.svg);
}





/* タイトル画像 ------------------------*/
.common-img {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	aspect-ratio: 1 / 1;
	border-radius: 0 0 5px 5px;
}
.common-img .img {
	width: 60%;
	aspect-ratio:  1/ 1;
	background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

/* ライブラリー */
.common-img.library {background-color: #9668a3;}
.common-img.library .img {background-image: url(../img/common/icon_library.svg);}

/* 派遣事業 */
.common-img.support { background-color: #fabe00;}
.common-img .img.sign { background-image: url(../img/common/icon_support_sign.svg);}
.common-img .img.notetaker { background-image: url(../img/common/icon_support_notetaker.svg);}
.common-img .img.instructor { background-image: url(../img/common/icon_support_instructor.svg);}
.common-img .img.rental {background-image: url(../img/common/icon_support_rental.svg);}

/* 講座案内 */
.common-img.course {background-color: #80a940;}
.common-img.course .img { background-image: url(../img/common/icon_course.svg);}

/* その他 */
.common-img.other {background-color: #e86194;}
.common-img .img.salon {background-image: url(../img/common/icon_other_salon.svg);}
.common-img .img.consult {background-image: url(../img/common/icon_consult.svg);}
.common-img .img.magazine {background-image: url(../img/common/icon_magazine.svg);}
.common-img .img.drr {background-image: url(../img/common/icon_drr.svg);}

@media (max-width: 767px) {
    .common-img {
        width: 80px;
    }
}



/* ページタイトル ------------------------*/
.pagettl {
	position: relative;
	z-index: 0;
}

.pagettl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 50px;
	background-color: #fff3cd;
}

.pagettl .common-img  {
	margin-left: auto;
	margin-right: auto;
}



/* ---------------------------------------------------------
共通カテゴリタブ
--------------------------------------------------------- */
.common-nav-cat .cat-list {
	display: flex;
	column-gap: 4px;
}
.common-nav-cat .cat-list li {
	flex: 1;
}
.common-nav-cat .cat-list li > span,
.common-nav-cat .cat-list a {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 54px;
	padding: 0 10px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	background-color: #ccc;
    transition: background-color 0.28s ease;
}
.common-nav-cat .cat-list li > span::before
.common-nav-cat .cat-list a::before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 0;
	display: block;
	height: 4px;
	width: 100%;
	background-color: #fff;
}
@media (max-width: 480px) {
	.common-nav-cat .cat-list li > span,
	.common-nav-cat .cat-list a {
		padding: 0;
	}
}

@media (max-width: 414px) {
	.common-nav-cat .cat-list .txt {
		font-size: 1.5rem;
	}
}

/* --------------------------------------
generic-list01
-------------------------------------- */
.generic-list01 > .list-item {
	border-right: 1px solid rgba(0,0,0,0.3);
	border-bottom: 1px solid rgba(0,0,0,0.3);
}
.generic-list01 > .list-item > .head > .txt {
	display: inline-block;
	min-width: 140px;
	line-height: 40px;
	border-radius: 0 5px 5px 0;
	text-align: center;
}
.generic-list01 > .list-item > .desc {
	flex: 1;
	padding-left: 6%;
  padding-right: 5%;
	padding-top: 5px;
}
.generic-list01 > .list-item > .desc .fee-box {
	max-width: 550px;
	border-radius: 10px;
	background-color: #fff9e5;
}
.generic-list01 > .list-item > .desc .fee-block {
	align-items: center;
}
.generic-list01 > .list-item > .desc .fee-block > dt {
	border-left: 10px solid #fabe00;
	border-right: 1px solid rgba(0, 0, 0, 0.3);
	padding: 0 30px;
}
.generic-list01 > .list-item > .desc .fee-block > dd {
	padding-left: 50px;
}
.generic-list01 > .list-item > .desc .btnarea:last-child {
	margin-bottom: 0;
}

@media (max-width: 991px) {
	.generic-list01 > .list-item > .desc .fee-box {
		max-width: 470px;
	}
	.generic-list01 > .list-item > .desc .fee-block > dt {
		padding: 0 20px;
	}
	.generic-list01 > .list-item > .desc .fee-block > dd {
		padding-left: 20px;
	}
}
@media (max-width: 767px) {
	.generic-list01 > .list-item > .head {
		width: 100%;
		margin-bottom: 20px;
	}
	.generic-list01 > .list-item > .desc {
		padding: 0 4% 0 0;
	}
}
@media (max-width: 575px) {
	.generic-list01 > .list-item > .desc  .fee-box {
		max-width: 267px;
	}
	.generic-list01 > .list-item > .desc .fee-block {
		padding-left: 30px;
		border-left: 10px solid #fabe00;
	}
	.generic-list01 > .list-item > .desc .fee-block > dt {
		padding: 0;
		border: none;
		width: 100%;
	}
	.generic-list01 > .list-item > .desc .fee-block > dt .txt {
		padding-bottom: 15px;
	}
	.generic-list01 > .list-item > .desc .fee-block > dd {
		padding: 0;
	}
	.generic-list01 > .list-item > .desc .fee-block > dd .txt {
		position: relative;
		width: fit-content;
		padding-top: 15px;
	}
	.generic-list01 > .list-item > .desc .fee-block > dd .txt::before {
		content: "";
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 1px;
		background-color: rgba(0, 0, 0, 0.3);
	}
}

@media (max-width: 374px) {
	.generic-list01 > .list-item > .desc .fee-block {
		padding: 0 20px;
	}
}


/* --------------------------------------
generic-list02
-------------------------------------- */
.generic-list02 > .list-item {
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.generic-list02 > .list-item:first-child {
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}
.generic-list02 > .list-item > dt {
	width: min(20%, 130px);
}
.generic-list02 > .list-item > dt > .txt {
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.generic-list02 > .list-item > dt > .txt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 5px;
  height: 114.3%;
  background-color: #fab000;
	transform: translateY(-50%);
}
.generic-list02 > .list-item > dd {
  flex: 1;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .generic-list02 > .list-item > dt {
    width: 100%;
  }
  .generic-list02 > .list-item > dd {
    padding: 0 20px;
  }
}
@media (max-width: 480px) {
	.generic-list02 > .list-item > dt > .txt {
		padding: 0 15px;
	}
  .generic-list02 > .list-item > dd {
    padding: 0 15px;
  }
}



/* お申込みボックス ---------------------------------  */
.app-box {
  border-radius: 10px;
  overflow: hidden;
}
.app-box .app-head {
  background-color: #ffe288;
  padding: 15px 40px;
}
.app-box .app-desc {
  background-color: #fff;
  padding-left: clamp(15px, 4.7%, 35px);
  padding-right: clamp(15px, 4.7%, 35px);
}

/* 数字 */
.app-box.num {
  position: relative;
}
.app-box.num::before {
	counter-increment: number 1;
	content: counter(number, decimal-leading-zero);
  position: absolute;
  top: 10px;
  left: 10px;
  color: #888;
  font-size: clamp(1.5rem, 1.4336rem + 0.14vw, 1.6rem);
  font-weight: 700;
	line-height: 1;
}

/* フロー矢印 */
.flow-arrow {
	height: 30px;
	width: 60px;
	margin: 10px auto 5px;
	background-color: #ffe288;
	clip-path: polygon(0 0, 100% 0 , 50% 100%);
}


/* 共通info */
.info-box {
	width: fit-content;
	padding: 20px 0;
	margin-left: auto;
	margin-right: auto;
	border-top: 1px solid rgba(0, 0, 0, 0.3);
	border-bottom: 1px solid rgba(0, 0, 0, 0.3);
}
.info-box .info-list {
	display: flex;
	flex-wrap: wrap;
	column-gap: 12px;
}
.info-box .info-list:not(:last-child) {
	margin-bottom: 18px;
}
.info-box .info-list > dt .ttl  {
	display: inline-block;
	min-width: 70px;
	border: 1px solid #d9d9d9;
	border-radius: 5px;
	line-height: 1;
	text-align: center;
}
.info-box .info-list > dd {
	flex: 1;
}
.info-box .info-list > dd.address {
	display: flex;
	flex-wrap: wrap;
	column-gap: 1em;
}

@media (max-width: 400px) {
    .info-box .info-list {
        display: block;
    }
	.info-box .info-list > dt {
        display: inline-block;
		/*width: 100%;
		margin-bottom: 10px;*/
	}
	.info-box .info-list > dt .ttl {
		width: 100%;
	}
	.info-box .info-list > dd.sp-center {
		/*text-align: center;*/
	}
	.info-box .info-list:not(:last-child) {
		margin-bottom: 10px;
	}
}


/* リッチテキストエディタ用 -------------------- */
.common-rich-editor img {
  max-width: 100%;
  width: inherit;
  height: auto !important;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.common-rich-editor p,
.common-rich-editor ul,
.common-rich-editor ol {
  margin-bottom: 20px;
}
.common-rich-editor p:nth-last-child(1) {
  margin-bottom: 0;
}
.common-rich-editor b,
.common-rich-editor strong {
  font-weight: bold;
}
.common-rich-editor em {
  font-style: italic;
}
.common-rich-editor a:not(.btn) {
  color: #ed6c1e;
  text-decoration: underline;
}
.common-rich-editor a:not(.btn):hover {
  text-decoration: none;
}
.common-rich-editor ul {
  list-style-type: disc;
  padding-left: 30px;
}
.common-rich-editor ol {
  list-style-type: decimal;
  padding-left: 30px;
}
.common-rich-editor li {
  list-style-type: inherit;
}
.common-rich-editor sup {
  vertical-align: super;
  font-size: smaller;
}
.common-rich-editor sub {
  vertical-align: sub;
  font-size: smaller;
}
.common-rich-editor blockquote {
  background-color: #efefef;
}
.common-rich-editor table {
  border-collapse: collapse;
}
.common-rich-editor th,
.common-rich-editor td {
  border: solid 1px #efefef;
}
.common-rich-editor video {
  width: 100%;
  height: auto;
  max-height: 90vh;
  background-color: #f0f0f0;
}
.common-rich-editor .player {
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.common-rich-editor .player iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

@media (max-width: 480px) {
  .common-rich-editor p,
  .common-rich-editor ul,
  .common-rich-editor ol {
    margin-bottom: 15px;
  }
}

/* お知らせ ----------------------------------------- */
.common-topics-tag {
  flex: 0 0 auto;
  width: 160px;
  line-height: 30px;
  padding: 0 10px;
  margin-right: 30px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}
.common-topics-item {
	position: relative;
	display: block;
  padding-right: 70px;
}
.common-topics-item .list-container {
  display: flex;
  align-items: center;
  /* transition: opacity 0.3s ease-out; */
}
.common-topics-item .topics-txt {
  padding: 10px 0;
  width: calc(100% - 190px);
}
.common-topics-item .icon-arrow {
  position: absolute;
  top: 50%;
  right: 30px;
  transform: translateY(-50%);
}
@media (min-width: 768px) {
  .common-topics-item:hover  .icon-arrow  {
    transform: translate(10px, -50%);
  }
}
@media (max-width: 991px) {
    .common-topics-item {
        padding-right: 50px;
    }
    .common-topics-item .icon-arrow {
        right: 20px;
    }
}
@media (max-width: 767px) {
    .common-topics-item {
		padding: 15px 30px 15px 0;
	}
  .common-topics-item .list-container {
      flex-direction: column;
      align-items: flex-start;
      min-height: auto;
      row-gap: 10px;
    }
	.common-topics-item .common-topics-tag {
		line-height: 24px;
	}
	.common-topics-item .topics-txt {
			width: 100%;
			padding: 0;
	}
	.common-topics-item .topics-txt .date {
			position: absolute;
			top: 17px;
			left: 180px;
	}
	.common-topics-item .icon-arrow {
			right: 5px;
	}
}
@media (max-width: 480px) {
	.common-topics-item {
			padding-right: 40px;
	}
	.common-topics-item .icon-arrow {
			right: 4px;
	}
}
@media (max-width: 413px) {
  .common-topics-tag {
      width: 150px;
  }
	.common-topics-item .topics-txt .date {
			left: 160px;
	}
}
