@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #009688; /* メインカラー */
	--sub-color: #6B799E; /* サブカラー */
	--accent-color: #EAAD38; /* アクセントカラー */
	--dark-color: #111; /* ダークカラー */
	--light-color: #08b5bc; /* ライトカラー */
	--org-color:#ff7b00;
	--bggry-color: #f8f8f8;
	--bgblu-color: #e8f9f7;
	--bglblu-color: #F1FBFA;
	
	/* 全体 */
	--body-font-family: Noto Sans JP, Hiragino Kaku Gothic ProN, ヒラギノ角ゴ ProN W3, meiryo, メイリオ, sans-serif;
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 1.8; /* 行間 */
	--body-font-color: #333; /* 文字色*/
	--body-bg-color: #fff; /* 背景色 */
	--link-a-color: var(--main-color); /* リンク文字色 */
	--link-a-hover-color: var(--accent-color); /* リンク文字色 hover */
	
	
	/* ヘッダー */
	--header-bg-color: #fff; /* 背景色 */
	--header-logo-color: var(--main-color); /* ロゴ色 */
	--header-menu-txt-color: #515151; /* メニュー文字色 */
	--header-sub-menu-color: #aaa; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: #fff; /* サブメニュー背景色 */
	
	/* タイトル */
	--h1-main-font-family: inherit; /* メイン フォントfamily */
	--h1-main-font-weight: 900; /* メイン 文字太さ */
	--h1-main-color: var(--main-color); /* メイン色 */
	--h1-sub-font-family: inherit; /* サブ フォントfamily */
	--h1-sub-font-weight: 300; /* サブ 文字太さ */
	--h1-sub-color: var(--sub-color); /* サブ文字色 */
	
	/* コンテンツ タイトル */
	--h2-contents1-color: var(--dark-color); /* 文字色 */
	--h2-contents1-weight: 900; /* 文字太さ */
	
	/* コンテンツ */
	--list-style-color: var(--main-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #54595F; /* th色 */
	
	/* お問合せ */
	--contact-tel-font-family: 'Noto Sans JP', sans-serif; /* TELフォントfamily */
	--contact-tel-font-weight: 700; /* TEL文字太さ */
	--contact-tel-color: #333; /* TEL文字色 */
	--contact-center-line-color: #ccc; /* 中央線 */
	--contact-form-btn-txt-color: #fff; /* フォームボタン文字色 */
	--contact-form-btn-bg-color: #333; /* フォームボタン背景色 */
	
	/* フッター */
	--footer-bg-color: #e5e5e5; /* 背景色 */
	--footer-txt-color: #111; /* 文字色 */
	--footer-txt-hover-color: var(--light-color); /* 文字色 hover */
	--footer-arrow-color: #fff; /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: #111; /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--accent-color); /* TOPへ戻る矢印色 hover */
	--footer-arrow-hover-bg-color: var(--light-color); /* TOPへ戻る矢印背景色 hover */
	--footer-top-border-size: 1px; /* border-top 太さ */
	--footer-top-border-color: #ddd; /* border-top 色 */
	--footer-logo-width: 100px; /* ロゴ 横幅 */
	--footer-name-font-size: 1.8em; /* 会社名 文字サイズ */
	--footer-name-font-weight: 700; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 400; /* 文字太さ */
	--side-btn-bg-color: #E77B3A; /* 背景色(上) */
	--side-btn-bg-color2: var(--dark-color); /* 背景色(下) */
}


/* -----------------------------------------------------------------------------
 Header
----------------------------------------------------------------------------- */
header { height: 50px; }
header a { text-decoration: none !important; }
header > .inner {
	width: 100%;
	background-color: var(--header-bg-color);
	box-shadow: 0px 3px 10px 0px rgba(204,204,204,0.20); }
header > .inner > .logo {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	padding: 0 50px 0 10px;
	border: none;
}
header > .inner > .logo h1{
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
	white-space: nowrap;
	color: var(--header-logo-color);
	text-indent: 9px;
	padding-top: 3px;
	margin-right: 8px;
}
header > .inner > .logo h1:after{
	content: '';
	display: block;
	width: 280px;
	height: 35px;
	background: url("../../p-img/101439_1/logo.png")left center/contain no-repeat;
	vertical-align: middle;
}
header > .inner > navi > ul { display: block; }
header > .inner > navi > ul > li {
	padding-left: 0;
	text-indent: 0; }
header > .inner > navi > ul > li a {
	display: block;
	width: 100%;
	height: 100%;
	font-size: .95em;
	font-weight: 500;
	color: var(--header-menu-txt-color);
	margin: 0;
	padding: 5px 20px;
	border: none; }
header > .inner > navi > .translation {
	padding: 5px 20px;
	display: block; }


/* bt-menu */
#bt-menu {
	position: absolute;
	top: 0;
	right: 0;
	width: 50px;
	height: 50px;
	background-color: var(--header-bg-color);
	z-index: 10;
	cursor: pointer; }
#bt-menu span {
	position: absolute;
	top: 24px;
	right: 10px;
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	transition: .3s; }
#bt-menu span::before {
	position: absolute;
	top: -10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s; }
#bt-menu span::after {
	position: absolute;
	top: 10px;
	right: 0;
	content: "";
	width: 30px;
	height: 2px;
	background-color: var(--header-sub-menu-color);
	display: block;
	transition: .3s; }
#bt-menu.open span {
	background-color: transparent;
	transition: .3s; }
#bt-menu.open span::before {
	top: 0;
	transform: rotate(45deg);
	transition: .3s; }
#bt-menu.open span::after {
	top: 0;
	transform: rotate(-45deg);
	transition: .3s; }

/* style1 */
header.style1 {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background-color: var(--header-bg-color);
	z-index: 999; }
header.style1 > .inner > .logo {
	height: 50px;
	vertical-align: middle;
	display: table-cell; }
header.style1 > .inner > navi {
	position: absolute;
	top: 50px;
	right: 0;
	padding: 5px 0 10px;
	background-color: var(--header-sub-menu-bg-color);
	opacity: 0; }	


/* powered by Sangyo Navi */
.powered {
	display: block;
	font-family: "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	font-size: 12px;
	color: #bbb;
	text-align: right;
	margin: 5px 10px 0;
	padding: 3px 5px 0;
	border-top: 1px solid #ddd; }


/* -----------------------------------------------------------------------------
 Top Contents
----------------------------------------------------------------------------- */
#top-contents {
	width: 100%;
	position: relative;
	overflow: hidden;
	margin: 0; }
#top-contents .slider img {
	width: 100%;
	height: auto;
	min-height: 500px;
	object-fit: cover; }
#top-contents .slider {
	position: relative;
	z-index: 1; }
#top-contents .layer1 {
	position: absolute;
	min-width: 320px;
	top: 20%;
	left: 37%;
	transform: translate(-50%, -50%);
	padding: 1.5rem;
	z-index: 5; }
#top-contents .layer1 h2 {
    font-size: 20px;
	font-weight: 700;
    line-height: 1.4;
    color: #222;
    margin-bottom: 0.7em;
	text-align: center;
	text-shadow:0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #f2faf9,0 0 3px #fff; }
#top-contents .layer1 h2 .line1,
#top-contents .layer1 h2 .line2{ display: block; }
#top-contents .layer1 h2 .line1{
	color: var(--main-color);
	margin-bottom: 1em; }
#top-contents .layer1 h2 .line2{
	font-weight: 300;
	font-size: 1.1em; }
#top-contents .layer1 h2 em{
	font-size: 1.6em;
	font-weight: 700;
	display: block;
	padding-top: .4em; }
/*SEO用テキストをメイン下部に入れる*/
#top-contents .layer2{
	position: relative;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 0;
    top: initial;
    padding: 0.5em 1.5rem;
	background: var(--main-color); }
#top-contents .layer2 p{
	font-size: 1rem;
    font-weight: 300;
    line-height: 1.6;
	color: #fff; }


/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--bggry-color); }
#breadcrumb .login {
	width: 120px;
	text-align: right;
	float: right; }
#breadcrumb .login img {
	margin-right: 5px;
	vertical-align: top; }
#breadcrumb .login a {
	color: var(--body-font-color);
	text-decoration:none;
	border: none; }
#breadcrumb .login a:hover {
	color: var(--link-a-hover-color);
	text-decoration:none;
	border: none; }
#breadcrumb .bc img {
	width: 14px;
	vertical-align: top; }
#breadcrumb .bc a {
	color: var(--body-font-color);
	text-decoration:none;
	border: none; }
#breadcrumb .bc a:hover {
	color: var(--link-a-hover-color);
	text-decoration: none;
	border: none; }


/* -----------------------------------------------------------------------------
 contents
----------------------------------------------------------------------------- */
main .contents {
	background-color: var(--body-bg-color);
	overflow: hidden; }
main .contents.fixed { background-color: transparent; }
main .contents .fixed-bg {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: -1; }

.w1024 {
	height: auto !important;
	margin: 40px 15px; }
.w1024.bg {
	background-color: #fff;
	padding: 20px; }

.layer {
	position: static;
	width: 100% !important; }

.contents section {
	margin: 0; }


/* -----------------------------------------------------------------------------
 Footer
----------------------------------------------------------------------------- */
footer {
	position: relative;
	font-size: 0.92em;
	padding: 50px 0 30px;
	border-top: var(--footer-top-border-size) solid var(--footer-top-border-color);
	background-color: var(--footer-bg-color);
	background-size: cover;
	margin-bottom: 50px; }
footer .pagetop a {
	position: absolute;
	top: -26px;
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	background-color: var(--footer-arrow-bg-color);
	text-decoration: none;
	border-radius: 50%;	
	display: block; }
footer .pagetop a::before {
	color: var(--footer-arrow-color);
	font-size: 20px;
	content: "▲";
	margin-top: 14px;
	text-align: center;
	line-height: 1em;
	display: block;
	transition: .3s; }
footer .inner {
	margin: 0 10px; }
footer .pagetop a span {
	display: none; }
footer .login {
	margin: 40px auto 5px;
	text-align: center;
	display: block; }
footer .login img {
	margin-right: 5px;
	vertical-align: 0; }
footer .login a {
	font-size: 14px;
	color: var(--footer-txt-color);
	text-decoration: none;
	border: none;
	display: inline-block; }
footer.login a:hover {
	color: var(--footer-txt-hover-color);
	text-decoration: none;
	border: none; }
footer .copy {
	font-size: 13px;
	line-height: 1.6;
	color: var(--footer-txt-color);
	text-align: center; }
footer .copy a{ border: none; }
footer .copy img{
	margin-bottom: 5px; }
.footer-info{
	color: var(--footer-txt-color);
	text-align:center; }
.footer-info .logo{
	width: var(--footer-logo-width);
	margin: 0 auto 10px; }
.footer-info .logo img{ width: 100%; }
.footer-info .name{
	font-weight: var(--footer-name-font-weight);
	font-size: var(--footer-name-font-size);
	color: var(--main-color); }
.footer-info .mail{ margin-top: 10px; }
.footer-info .mail a{
	display: table;
	text-decoration: none;
	color: var(--footer-bg-color);
	background-color: var(--footer-txt-color);
	border-radius: 60px;
	padding: 0 30px;
	margin: auto; }
.footer-info .mail a:hover{
	opacity: 1;
	transform: scale(1.1); }
.footer-info .mail a i{
	margin-right: 3px; }


/* -----------------------------------------------------------------------------
 共通 parts
----------------------------------------------------------------------------- */
/* parts-h1 */
.parts-h1 {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: center;
    letter-spacing: 2px;
    margin-bottom: 2em;
    border: none; }

/* parts-h2 */
.parts-h2{
	background: none;
	text-align: center;
	font-size: 1rem;
	font-weight: 300;
	line-height: 1.5;
	letter-spacing: 2px;
	margin-bottom: 1em; }
.parts-h2 .his{display: block; }
.parts-h2 em{
    color: var(--main-color);
    font-size: 2em;
    display: block;
    margin: .5rem auto 2rem;
    font-weight: 700; }

/* parts-h3 */
.parts-h3 {
	display: table;
	font-size: 1.2em;
	font-weight: 300;
	background-color: #fff;
	border: 1px solid #ccc;
	border-radius: 60px;
	margin: 4rem auto 0;
    text-indent: 0;
	text-align: center;
	padding: 0 30px; }

/* parts-h4 */
.parts-h4 {
	font-weight: 300;
	font-size: 1em; }

/* parts-img */
.parts-img { margin-bottom: 2em; }
.parts-img img {
	max-width: 100%;
	height: auto;
	width: auto; }

/* parts-map */
.parts-map {
	max-width: 100%;
	margin-bottom: 0; }

/* parts-news */
.parts-news {
	height: 200px;
	margin-bottom: 2em;
	padding: 15px;
	background-color: var(--body-bg-color);
	border: 1px solid #999;
	overflow-y: scroll; }
.parts-news.show {
	height: auto !important;
	overflow-y: visible; }
.parts-news > p { margin-bottom: 1em; }
.parts-news a{ color: var(--link-a-color); }


/* -----------------------------------------------------------------------------
 財団カスタマイズ
----------------------------------------------------------------------------- */

/* 共通 */
body {
	font-family: var(--body-font-family);
	font-size: var(--body-font-size);
	font-weight: 300;
	line-height: var(--body-line-height);
	color: var(--body-font-color); }

a.anchor{
    display: block;
    padding-top: 60px;
    margin-top: -60px; }

img{ vertical-align: top; }

.txt_area a:link, a:visited, a:active {
    color: var(--link-a-color);
	text-decoration: none;
	border-bottom: 1px solid var(--link-a-color);
	transition: .3s; }
.txt_area a:hover {
    color: var(--link-a-hover-color);
	border-bottom: 1px solid var(--link-a-hover-color); }
.txt_area p{ margin-bottom: 1.5em; }

.font_s{
	font-size: .7em;
	margin: 0 3px; }

.inblock{ display: inline-block; }

/* 2分割・3分割・4分割 */
.half,
.trisection,
.quarter{
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 3vw;
	margin: 20px auto; }
.half .left,
.half .right,
.trisection .left,
.trisection .center,
.trisection .right,
.quarter .left1,
.quarter .left2,
.quarter .right1,
.quarter .right2{
	width: 100%;
	line-height: var(--col-line-height); }
.half .left img,
.half .right img,
.trisection .left img,
.trisection .center img,
.trisection .right img,
.quarter .left1 img,
.quarter .left2 img,
.quarter .right1 img,
.quarter .right2 img{ width: 100%; }

/* parts-txt-img */
.parts-txt-img{
	max-width: 100%;
	margin: 0 auto 2em;
	overflow: hidden; }
.parts-txt-img .r-img,
.parts-txt-img .l-img{
	width: 48%; }
.parts-txt-img .r-img{
	float: right;
	margin-left: 20px; }
.parts-txt-img .l-img{
	float: left;
	margin-right: 20px; }
.parts-txt-img .r-img img,
.parts-txt-img .l-img img{ width: 100%; }

/* ful-half */
.ful-half{
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: 480px;
	align-items: stretch; }
.ful-half.r-img .left,
.ful-half.l-img .right{ display: flex; }
.ful-half.r-img .right,
.ful-half.l-img .left{ height: 300px; }
.ful-half .left,
.ful-half .right{ width: 100%; }
.ful-half .txt{ padding: 15px; }
.ful-half .txt .inner{
	max-width: 600px;
	margin: 20px auto; }
.ful-half .img{
	height: 100%;
	position: relative;
	overflow: hidden; }
.ful-half .img img{
	position: absolute;
	width: 100%;
	height: auto;
	top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); }

/* parts-table */
.parts-table{ margin: 0 auto 2em; }
.parts-table table{
	border: none;
	border-collapse: collapse;
	border-spacing: 0;
	margin: auto; }
.parts-table th{ font-size: .9em; }
.parts-table th,
.parts-table td{
	vertical-align: text-top;
	border-bottom: 1px solid #ddd;
	padding: 5px 10px; }

/* parts-list */
.parts-list ul{ padding-left: 1.5em; }
.parts-list ul li{
	line-height: 1.6;
	margin-bottom: 1em;
	position: relative; }
.parts-list ul li:before{
	content: '';
	display: inline-block;
	position: absolute;
	top: .5em;
	left: -1.1em;
	width: 8px;
	height: 8px;
	background-color: var(--main-color); }

/* flow 横 */
.flow-area1 ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	margin-bottom: 40px; }
.flow-area1 ul li{
	background-color: var(--body-bg-color);
	border: 2px solid var(--main-color);
	border-radius: 20px;
	padding: 10px 20px;
	margin: 2em auto 20px;
	position: relative; }
.flow-area1 ul li:before{
	content: '';
	position: absolute;
	left: 0;
	right: 0;
    top: 100%;
	margin: 0 auto;
    width: 40px;
    height: 20px;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
	background-color: var(--main-color); }
.flow-area1 ul li:last-child:before{ height: 0; }
.flow-area1 ul li .num{
	position: absolute;
	left: 10px;
	top: -.85em;
	font-size: 3.5em;
	font-weight: 900;
	line-height: 1;
	color: var(--main-color); }
.flow-area1 ul li .flow_head{
	font-size: 1.2em;
	font-weight: 700;
	line-height: 1.5;
	color: var(--main-color);
	text-align: center; }
.flow-area1 ul li img{
	display: block;
	width: 70%;
	object-fit: contain;
	margin: 5px auto; }
.flow-area1 ul li .flow_bottom{
	display: table;
	font-size: .9em;
	line-height: 1.5;
	margin: .5em auto; }

/* ScrollTrigger */
.visible, .invisible {
    opacity: 0.0;
    transition: opacity 1s ease; }
.visible { opacity: 1.0; }

.visible.translateY,.invisible.translateY {
	transform: translateY(100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateY {
	transform: translateY(0); }

.visible.translateToLeft,.invisible.translateToLeft {
	transform: translateX(100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateToLeft {
	transform: translateX(0); }

.visible.translateToRight,.invisible.translateToRight {
	transform: translateX(-100px);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateToRight {
	transform: translateX(0); }

.visible.translateScaleUp,.invisible.translateScaleUp {
	transform: scale(.5);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateScaleUp {
	transform: scale(1); }

.visible.translateScaleDown,.invisible.translateScaleDown {
	transform: scale(1.4);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateScaleDown {
	transform: scale(1); }

.visible.translateRotate,.invisible.translateRotate {
	transform: rotate(360deg);
	transition: all 1s cubic-bezier(0.165, 0.840, 0.440, 1.000); }
.visible.translateRotate {
	transform: rotate(0deg); }

#app .wrapper{
	height: 50vh;
	display: flex;
	width: 100%;
	align-items: center; }
.str__animation{
	display: flex;
	justify-content: center;
	font-size: 1.2rem; }
.str__animation .str{
	will-change: auto;
	min-width: .3rem;
	transform: translateY(0);
	opacity: 0; }


/* マーカー */
.c-marker {
    background: -webkit-linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
    background: -moz-linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
    background: linear-gradient(left, rgba(251,238,6,0.50) 50%, transparent 50%);
	background-repeat: no-repeat;
	background-size: 200% .8em; 
    background-position: 0% .5em;
    transition: 2s; }
.c-marker.is-active{
    background-position: 0% .5em; }

/* 会社概要 */
/*cpn*/
.sec100w.cpn{background: var(--bggry-color); }
.cpn section{
    width: 100%;
    max-width: 1054px!important;
    margin: 2rem auto 0;
    padding: 4rem 15px 2rem!important; }
.cpn_tbl{
	background: rgba(255, 255, 255, 0.7);
	padding: 1.5rem 2.5rem;
	border-radius: 1.5rem;
	margin: 3rem auto 6rem; }
.cpn_tbl table {
	width: 100%;
	margin: auto; }
.cpn_tbl table th,
.cpn_tbl table td{
	display: block;
	text-align: left; 	
}
.cpn_tbl table th {
	width: 10rem;
	font-size: 1em;
	font-weight: 700;
	color: #000;
	padding: 7px 0 0 5px; }
.cpn_tbl table td{
	border-bottom: 1px dotted var(--cpn-table-border);
	padding: 0 0 7px 5px; }
.cpn_tbl table td a{ color: #54595F; }


/* お問合せ */
.contact-btn{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 50px; }
.contact-item{ text-align: center; }
.contact i{
	font-size: 1em;
	line-height: 1.2em;
	margin-right: 10px; }
.contact .tel a{
	display: block;
	font-family: var(--contact-tel-font-family);
	font-weight: var(--contact-tel-font-weight);
	line-height: 1.7;
	text-align: center;
	color: var(--contact-tel-color); }
.form_sub{
	font-size: .75em;
	color: #888;
	text-align: center;
	margin-top: 10px; }
a.mail_button {
	display: inline-block;
	margin-top: 20px;
	padding: 1em 3em;/* ボタンのサイズはpaddingで調整 */
	background: var(--contact-form-btn-bg-color);
	border: 1px solid var(--contact-form-btn-bg-color); /* 枠線色 */
	color: var(--contact-form-btn-txt-color); /* 文字色 */
	text-align: center;
	text-decoration: none;
	border-radius: 8px;
	transition: all .3s; }
a.mail_button:hover {
	opacity: 0.85; }
a.mail_button i{
	transition: all .3s; }
a.mail_button:hover i{
	transform: scale(1.3); }


/* 横問合せボタン */
.cv_btn_area {
	width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 102;
	opacity: 0;
	overflow: hidden; }
.cv_btn_area .btn{
	align-items: flex-end;
	display: flex; }
.cv_btn_area .btn a {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	width: 100%;
	height: 50px;	
	line-height: 1.3;
    font-size: 14px;
	font-weight: var(--side-btn-txt-weight);
    letter-spacing: 1px;
    background: var(--main-color);
    color: var(--side-btn-txt-color);
	border-top: 1px solid #fff;
	border-left: 1px solid #fff;
    text-align: center;
	text-decoration: none;
	vertical-align: center;
	padding: 15px 0px;
	margin: 0; }
.cv_btn_area .btn a i {
	font-size: 1.8em;
	margin-right: 10px; }
.cv_btn_area .btn a.tel_tab{ display: none; }
.cv_btn_area .btn a.tel_sp{ display: flex; }

.fade_on{ opacity: 1; }

/* TEL */
a[href^="tel:"] {
	color:inherit;
	text-decoration:none;
	border: none; }

@media screen and (min-width: 768px){
	a[href^="tel:"] {
		pointer-events: none;
		cursor: default; }
}

/* レスポンシブ出し分け */
.for-pc{ display: none!important; }
.for-tab{ display: block!important; }
.for-600{ display: block!important; }

/* Margin・Padding */
.mb0{ margin-bottom: 0!important; }

/*フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards; }
@keyframes fadein {
    100% {  opacity: 1; }
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */

/*全ての要素にbox-sizing: border-box;*/
*,
*:before,
*:after {  box-sizing: inherit; }
html { box-sizing: border-box; }
em{font-style: normal ; }
table{	border-collapse: collapse; }

.sec100w{
    position: relative;
    width: 100%;
    margin: 0 auto; }
.sec100w section {
    margin: 0 auto!important;
    padding: 1px 0; }

.arrow{line-height:0 }
.arrow img{width: 100%;height: 5vw; }
.arrow-img{
	margin: 3rem auto;
	width: 200px;
	max-width: 40%; }
.note{font-size: .7em; }
span.dots{
    background-image: radial-gradient(circle at center, #f6f600 20%, transparent 20%);
    background-position: top right;
    background-repeat: repeat-x;
    background-size: 1em 0.3em;
    padding-top: 0.15em; }
/*img*/
img{vertical-align: text-top; }
/*iframe*/
iframe {vertical-align: bottom; }

/*button*/
a.btn-c {
	font-size: 20px;
	padding: 0.8rem 2rem;
	margin: 20px 0;
	color: #fff;
	background: var(--dark-color);
	text-decoration: none;
	line-height: 1.5;
	display: inline-block;
	border-radius: 2.5rem;
	min-width: 240px; }
a.btn-c i, a.tel-c i{ margin-right: 10px; }
a.btn-c:hover{ background: var(--org-color);opacity: 1; }

a.btn-c em{
	font-weight: 700;
	display: block; }
a.tel-c{font-size: 28px ;font-weight: 700; }



/*---------- con1 -------------*/
.sec100w.con-chatch { background:var(--bggry-color); }
.con-chatch-area{
	width: 100%;
	margin: auto; }
.con-chatch-area .half{
	max-width: 95%;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin: auto;
	gap: 3%; }
.con-chatch-area .half .left{ width: 100%; }
.con-chatch-area .half .right{ width: 100%; max-width: 600px; }
.con-chatch-area .left li{
	display: table;
	font-weight: 500;
	background-color: #fff;
	border-bottom: 1px solid #555;
	border-radius: 25px 20px 10px 20px;
	padding: 8px 15px;
	margin-left: auto;
	margin-bottom: 40px;
	position: relative; }
.con-chatch-area .left li:after{
	content: '';
	display: block;
	position: absolute;
	top: 97%;
	right: 20%;
	width: 26px;
	height: 18px;
	background: url("../../p-img/101439_1/ico_talk02.png")center top/contain no-repeat; }
.con-chatch-area .left li:nth-child(2n-1){ margin-right: auto; }
.con-chatch-area .left li:nth-child(2n){ margin-left: auto; }
.con-chatch-area .left li:nth-child(2n-1):after{
	left: 20%;
	right: auto;
	background-image: url("../../p-img/101439_1/ico_talk01.png"); }
.con-chatch-area .right{ max-width: 700px; }
.con-chatch-txt{
	font-size: 1.3rem;
	font-weight: 700;
	text-align: center;
	margin: 2rem 0 3rem; }
.con-chatch-txt em{
	font-size: 1.4em;
	margin-right: 3px; }
/*feature*/
.feature1 section,
.feature2 section,
.feature3 section{
    width: 100%;
    max-width: 1054px;
    margin: 2rem auto 0!important;
    padding: 3rem 15px; }
.feature-area{margin-bottom: 4rem; }
.feature-hdg{
    font-size: clamp(1.4rem, 2.2rem, 2rem);
	font-weight: 700;
    margin: 0.625em auto 4rem;
	text-align: center;
	line-height: 1.4; }
.feature-hdg::after {
    content: '●　●　●';
    display: block;
    text-align: center;
    color: var(--main-color);
    font-size: 0.4em;
    margin-top: .5em; }
.feature-hdg em{
	display: block;
	font-size: 1.2em; }
.feature-bdy {
    text-align: center;
    font-size: 1.2em; }
.feature-bdy em{font-weight: 700; }
/*feature1-img*/
.feature1-img{
	display: flex;
	flex-direction: column;
	align-items: center; }
.feature1-img img{
	width: 100%;
	margin-top: 6px; }
.feature1-img .left{
	width: 100%;
	z-index: 1; }
.feature1-img .right{
	width: 70%;
	margin-left: auto; }
.feature1-img .img1,
.feature1-img .img2{ width: 90%; }
.feature1-img .img1{ margin-left: auto; }
.feature1-img .img2{ margin-right: auto; }
/*feature2*/
.sec100w.feature2 {
    background: url("../../p-img/101439_1/bg01.jpg")center top/cover repeat-y; }
/*maybest&cafe8*/
.maybest-area, .maybest-area{flex-wrap: wrap; margin-bottom: 6rem; }
.mybest-hdg, .cafe8-hdg{	margin-bottom: 4rem; }
.mybest-hdg h3,
.cafe8-hdg h3{margin-bottom: 1rem; }
.mybest-hdg .line1,
.mybest-hdg .line2{display: block; }
.mybest-hdg .line1{font-size: .9rem; }
.mybest-hdg .line2, .cafe8-hdg .line2{
	color: var(--org-color);
	font-size: 1.3rem; }
.mybest-hdg .line2 em,
.cafe8-hdg .line2 em{
	font-weight: 700;
	font-size: 1.3em;
	color: var(--main-color);
	padding-right: .5rem; }
.mybest-box, .cafe8-box{
	display: flex;
	flex-direction: column;
	gap: 15px; }
.mybest-item, .cafe8-item{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center; }
.mybest-item:nth-child(even),
.cafe8-item:nth-child(even){ flex-direction:row-reverse; }
.mybest-item:nth-child(even) .mybest-txt,
.cafe8-item:nth-child(even) .cafe8-txt{ text-align: right; }
.mybest-img, .cafe8-img, .mybest-txt, .cafe8-txt { width: 49%; }
.mybest-img img,
.cafe8-img img{width: 100%; }
.mybest-txt,
.cafe8-txt{
	text-align: left;
	padding-top: .5em;
	font-size: .9em;
	line-height: 1.4; }
.mybest-name em,
.cafe8-name em{
	font-size: 1.1em;
	font-weight: 700;
	padding-left: .3em;
	display: inline-block; }
/*feature3-img*/
.feature-bdy span.f3em{font-size: 1.2em;font-weight: 700; }
.feature-bdy span.f3em em{color: var(--main-color);display: block;font-size: 1.2em; }
.feature3-img ul{
	display:flex;
	justify-content: center;
	gap: 10px; }
.feature3-img li{
	width: calc(50% - 5px);
	text-align: center; }
.feature3-img li img{ width: 100%; }

/*---------- con2 -------------*/
main .contents.con2{background: var(--bgblu-color);}
.plan-hdg{
	display: flex;
	flex-direction: column-reverse;
	justify-content: space-between;
	align-items: center;
	text-align: center;
	margin-bottom: 4rem;
}
.plan-h3 {
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 300;
	margin-bottom: 1em;
}
.plan-chart{width: 100%;}
.plan-chart img{width: 100%;}
.plan-img{
	width: 200px;
    margin-bottom: 1.5rem; }
.plan-img img{
	width: 100%;
	border-radius: 50%;}
.plan-h3 em{	
	display: block;
	font-weight: 700;}
.plan-area{
	background: rgba(255, 255, 255, 0.8);
	padding: 1.5rem 2.5rem;
	border-radius: 1.5rem;
	margin: 3rem auto 6rem;}
.plan-h4{
    display: flex;
	align-items: center;
	justify-content: center;
    padding:0 0 1rem;
	text-align: center;
	font-size: 1.4em;
	font-weight: 700;
	color: var(--main-color);}

.plan-h4::before {
    content: '';
    display: inline-block;
    width: 12px;
    height: 13px;
    margin-right: 5px;
    border-radius: 50%;
    background:var(--main-color);}
.con2 .parts-img{text-align: center;}
.con2 .parts-img img{
	width: 150px;
	margin:3rem auto 0;}
.plan-supply{margin-bottom: 2rem;}

.sec100w.plan2{background: #fff;}
.plan2 section{
    width: 100%;
    max-width: 1054px;
    margin: 2rem auto 0;
    padding: 1px 15px;}
.plan2-area{margin: 4rem auto;}
.plan2-h3{
	font-size: 1.5rem;
	line-height: 1.5;
	font-weight: 700;
	margin-bottom: 3rem;
	text-align: center;}
.plan2-intro{
	font-size: 1.1rem;
	margin-bottom: 3rem;
}
.plan2-intro em{font-weight: 700;}
.plan2-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;}
.plan2-img,
.plan2-txt{ width: 100%; text-align: center;}
.plan2-img{margin-bottom: 1.5rem;}
.plan2-img img{
	width: 100%;
	max-width: 350px; }
.plan2-txt{
	font-size: 1.2rem;
	font-weight: 700; }
.plan2-txt em{
	color: var(--main-color);
	font-size: 1.25em;
	display: block; }
.plan2-txt a{
	font-size: 18px;
	padding: 0.8rem 2rem;
	margin: 20px 0;
	color: #fff;
	background: var(--dark-color);
	text-decoration: none;
	line-height: 1.5;
	display: inline-block;
	border-radius: 2.5rem; }
.plan2-txt a:hover{background: var(--org-color);opacity: 1;}

/*---------- con3 -------------*/
.contents.con3{ background: url("../../p-img/101439_1/bg02.png")left top repeat;}
.advisor-h3{
	font-size: 1.3rem;
	margin: 3rem 0;}
.advisor-en{
    display: block;
	color: var(--main-color);
	font-size: .7em;
	position: relative;}
.advisor-en:after {
    background: var(--light-color);
	border-radius: 2px;
    bottom: 0;
    content: "";
    height: 4px;
	width: 3em;
    left: 0;
    position: absolute;}
.advisor-item{
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	margin-bottom: 2rem;}
.advisor-img{text-align: center;}
.advisor-img img{width: 100%; max-width: 400px;}
.advisor-txt{
	padding: 2rem 1rem;
	font-size: 1.2rem;}
.advisor-name{font-weight: 700; text-align: center; margin-bottom: 1em;}
/*---------- con4 -------------*/
main .contents.con4{background: var(--bglblu-color);}
.name-bdy{
	text-align: center;
	font-size: 1.3rem;}
.overview-main{
	margin: 3rem auto;
	width: 100%;
	max-width: 650px;
	text-align: center;}
.overview-main img{width: 100%;}
.overview-msg{
	font-size: 1.9rem;
	font-weight: 700;
	text-align: center;
	margin: 3rem auto;}
.overview-box{
	display: flex;
	flex-direction: column;
	justify-content: space-between;}
.overview-item{
	width: 100%;
	padding: 1rem;
	background: rgba(255, 255, 255, .7);
	display: flex;
	flex-direction: column;}
.overview-name{
	color: var(--main-color);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1.1;
	margin-bottom: .5rem;
	text-align: center;
	height: 4rem;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	flex-wrap: wrap;}
.overview-img{ text-align: center; margin-bottom: 1rem; }
.overview-img img{ width: 100%; max-width: 600px; }
.overview-txt{ max-width: 600px; margin: 0 auto 1rem;}
.overview-txt dl.shopData dt,
.overview-txt dl.shopTime dt{ font-weight: 700; }
.overview-txt dl.shopData,
.overview-txt dl.shopTime{
	display: flex;
	flex-wrap: wrap;
	align-items: start; }
.overview-txt dl.shopData dt { width: 6em; }
.overview-txt dl.shopData dd { width: calc(100% - 6em); }
.overview-txt dl.shopData .icn {
  font-size: 140%;
  padding: 0 0 0 0.5em;}
.overview-txt dl.shopData dd a { text-decoration: none;}
.overview-txt i{
    font-size: 110%;
    padding: 0 0 0 0.5em;
	color: #ff0026;}
.overview-txt dl.shopTime dt { width: 9em;}
.overview-txt dl.shopTime dd {
  width: calc(100% - 9em);
  min-width: 200px;}
.overview-map{
       max-width: 100%;
	   margin-top: auto;}






/* *****************************************************************************
   スマートフォン用のスタイル記述
***************************************************************************** */
@media screen and (max-width: 480px) {

	

	
	
	
	
	
	
}