@charset "utf-8";

/* -----------------------------------------------------------------------------
 環境設定
----------------------------------------------------------------------------- */
/* 定義 */
:root {
	/* 色 */
	--main-color: #c30036; /* メインカラー */
	--sub-color: #1f3eb2; /* サブカラー */
	--accent-color: #EAAD38; /* アクセントカラー */
	--dark-color: #8d777f; /* ダークカラー */
	--light-color: #e2e5e5; /* ライトカラー */
	
	/* 全体 */
	--body-font-family: 'Noto Sans JP', sans-serif; /* フォントfamily */
	--body-font-size: 16px; /* 文字サイズ */
	--body-line-height: 2; /* 行間 */
	--body-font-color: #333; /* 文字色*/
	--body-bg-color: #f1eae7; /* 背景色 */
	--link-a-color: var(--main-color); /* リンク文字色 */
	--link-a-hover-color: var(--accent-color); /* リンク文字色 hover */
	
	
	/* ヘッダー */
	--header-bg-color: #fff; /* 背景色 */
	--header-logo-color: #111; /* ロゴ色 */
	--header-menu-txt-color: #555; /* メニュー文字色 */
	--header-sub-menu-color: #aaa; /* ハンバーガーメニュー色 */
	--header-sub-menu-bg-color: #f5f5f5; /* サブメニュー背景色 */
	
	/* タイトル */
	--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: 700; /* 文字太さ */
	
	/* コンテンツ */
	--list-style-color: var(--main-color); /* リストアイコン色 */
	--col-line-height: 1.6; /* 2分割・3分割・4分割の行間 */
	
	/* 会社概要 */
	--cpn-table-border: #ccc; /* table線色 */
	--cpn-th-color: #aaa; /* 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: var(--main-color); /* 背景色 */
	--footer-txt-color: #fff; /* 文字色 */
	--footer-txt-hover-color: var(--light-color); /* 文字色 hover */
	--footer-arrow-color: #fff; /* TOPへ戻る矢印色 */
	--footer-arrow-bg-color: var(--dark-color); /* TOPへ戻る矢印背景色 */
	--footer-arrow-hover-color: var(--accent-color); /* TOPへ戻る矢印色 hover */
	--footer-arrow-hover-bg-color: var(--light-color); /* TOPへ戻る矢印背景色 hover */
	--footer-top-border-size: 0px; /* border-top 太さ */
	--footer-top-border-color: var(--dark-color); /* border-top 色 */
	--footer-logo-width: 100px; /* ロゴ 横幅 */
	--footer-name-font-size: 1.5em; /* 会社名 文字サイズ */
	--footer-name-font-weight: 700; /* 会社名 文字太さ */
	
	/* 常駐ボタン */
	--side-btn-txt-color: #fff; /* 文字色 */
	--side-btn-txt-weight: 700; /* 文字太さ */
	--side-btn-bg-color: #E77B3A; /* 背景色(上) */
	--side-btn-bg-color2: var(--dark-color); /* 背景色(下) */
}


/* 背景 */
.contents_bg1{
	background-color: var(--light-color)!important;
}
.contents_bg2{
	background: var(--body-bg-color) url("../../p-img/101113_6/bg-grid1.png")left top repeat!important;
}
.contents_bg3{
	background-color: #f5f5f5!important;
}


/* -----------------------------------------------------------------------------
 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 .sub {
	font-size: .8rem;
	padding-right: 10px;
}
header > .inner > .logo h1{
	font-size: 16px;
	font-weight: 400;
	white-space: nowrap;
	color: var(--header-logo-color);
	margin-right: 8px;
}
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;
	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;
	background-color: var(--body-bg-color);
}
#top-contents .mv {
	width: 100%;
	padding: 30px 20px 0;
	box-sizing: border-box;
}
#top-contents .mv .title h2{
	color: var(--main-color);
	font-size: 1.9rem;
}
#top-contents .layer2 {
	margin: 20px auto;
}
#top-contents .layer2 .under-line{/*position: relative;
  display: block;
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: bold;
  text-align: center;
  padding-top: 26px;
  font-weight: 900; width: 12em;
  margin: 0 auto .5em*/
	padding-bottom: 0.25em;
  background: url("../../p-img/101113_6/under-line.svg") repeat-x bottom left / auto 6px;
 }
#top-contents .lead {
	margin: 10px 20px;
}

/* -----------------------------------------------------------------------------
 Breadcrumb
----------------------------------------------------------------------------- */
#breadcrumb {
	font-size: 0.85em;
	max-width: 100%;
	margin: 0 auto;
	padding: 15px 10px;
	text-align: left;
	background-color: var(--body-bg-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: 30px 10px;
}
.w1024.bg {
	background-color: #fff;
	padding: 20px;
}

.layer {
	position: static;
	width: 100% !important;
}

.contents section {
	margin: 0 10px 40px;
}


/* -----------------------------------------------------------------------------
 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;
	box-sizing: border-box;
	margin-bottom: 50px;
}
footer .pagetop a {
	position: absolute;
	top: calc(-25px - var(--footer-top-border-size));
	left: 50%;
	width: 50px;
	height: 50px;
	margin-left: -25px;
	background-color: var(--footer-arrow-bg-color);
	text-decoration: none;
	border-radius: 50%;
	box-sizing: border-box;
	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-info{
	color: var(--footer-txt-color);
	text-align:center;
}

.footer-info .logo{
	width: var(--footer-logo-width);
	box-sizing: border-box;
	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);
}
.footer-info .mail{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	margin-top: 10px;
	gap: 20px;
}
.footer-info .mail a{
	display: block;
	width: auto;
	max-width: 280px;
	text-decoration: none;
	color: var(--footer-bg-color);
	background-color: var(--footer-txt-color);
	border-radius: 60px;
	padding: 0 30px;
}
.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-family: var(--h1-main-font-family);
	font-weight: var(--h2-contents1-weight);
	font-size: calc(1.75rem);
	text-align: center;
	color: var(--h1-main-color);
	line-height: 1.6;
	letter-spacing: 2px;
	margin-bottom: 1em;
}
.parts-h1 .small{
	display: block;
	font-family: var(--h1-sub-font-family);
	font-weight: var(--h1-sub-font-weight);
	font-size: .4em;
	color: var(--h1-sub-color);
	text-shadow: none;
}

/* parts-h2 */
.parts-h2 {
	font-weight: var(--h2-contents1-weight);
	font-size: calc(1.3em + 1vw);
	color: var(--h2-contents1-color);
	text-align: center;
	line-height: 1.5;
	margin-bottom: .5em;
}

/* parts-h3 */
.parts-h3 {
	font-size: calc(1em + .5vw);
	line-height: 1.5;
	color: var(--dark-color);
	border-bottom: 1px solid var(--dark-color);
	padding-bottom: .3em;
	margin-bottom: 1em;
}

/* 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: 2em;
}

/* parts-news */
.parts-news {
	height: 200px;
	margin-bottom: 2em;
	padding: 15px;
	background-color: var(--body-bg-color);
	border: 1px solid #999;
	overflow-y: scroll;
	box-sizing: border-box;
}
.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);
	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, .txt_area a:visited, .txt_area 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%;
	box-sizing: border-box;
	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%;
	box-sizing: border-box;
}
.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%;
	box-sizing: border-box;
}
.ful-half .txt{
	padding: 15px;
}
.ful-half .txt .inner{
	max-width: 600px;
	box-sizing: border-box;
	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%;max-width: 250px;
	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: 100% .5em;
    transition: 2s;
}
.c-marker.is-active{
    background-position: 0% .5em;
}

/* 会社概要 */
.cpn_tbl table{
	border-collapse: collapse;
	margin: 20px auto 40px;
}
.cpn_tbl table th,
.cpn_tbl table td{
	display: block;
	border-bottom: 1px solid var(--cpn-table-border);
	text-align: left;
	padding: 5px 20px;
}
.cpn_tbl table th{
	font-size: .9em;
	font-weight: 500;
	color: var(--cpn-th-color);
	white-space: nowrap;
	border-bottom: none;
	padding: 7px 0 0 5px;
}

/* お問合せ */
.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);
	font-size: calc(2em + .7vw);
	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;
	box-sizing: border-box;
	line-height: 1.3;
    font-size: 14px;
	font-weight: var(--side-btn-txt-weight);
    letter-spacing: 1px;
    background: var(--sub-color);
    color: var(--side-btn-txt-color);
    text-align: center;
	text-decoration: none;
	padding: 15px 0px;
	margin: 0;
}
.cv_btn_area .btn a:nth-child(2){
	background: var(--main-color);
}
.cv_btn_area .btn a i {
	font-size: 1.5em;
	margin-right: 10px;
}

.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;
}
.for-tab{
	display: block;
}


/* Margin・Padding */
.mb0{
	margin-bottom: 0!important;
}

/*フェードイン表示の指定*/
.fadein {
    opacity: 0;
    animation: fadein 3s ease forwards;
}
@keyframes fadein {
    100% {  opacity: 1;}
}



/* -----------------------------------------------------------------------------
	 個別設定
----------------------------------------------------------------------------- */
.p-logo{font-weight: 900;}
.gogo {
  font-size: 1.4em;
  color: var(--main-color);
	font-family: 'Tomorrow', sans-serif;}
.em{font-size: 1.15em}
.block{display: block}
/* マーカー／アニメーションなし */
.marker{background:linear-gradient(transparent 60%, rgba(255,241,0,0.31) 60%);}

.main-col {
	color: var(--main-color);
}
.bg-main-col {
	display: inline;
	padding: 0 8px;
	margin-right: 8px;
	background-color: var(--main-color);
	color: var(--side-btn-txt-color);
}
.bold {
	font-weight: bold;
}

.btn-area {
	margin: 30px auto;
	display: flex;
	flex-direction: column;
	gap: 30px;
	justify-content: center;
	align-items: center;
}
.btn-area a {
	position: relative;
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 20px 45px;
	font-size: 1.25rem;
	font-weight: bold;
	border-radius: 70px;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
}
.btn-area a::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: solid 2px;
  border-right: solid 2px;
  position: absolute;
  right: 32px;
  top: calc(50% - 7px);
  transform: rotate(45deg);
}
.btn-area a.zoom {
	color: var(--side-btn-txt-color);
	background-color: var(--sub-color);
}
.btn-area a.request {
	color: var(--main-color);
	border: solid 3px var(--main-color);
}
.con1 .intro {
	display: flex;
	flex-direction: column;
	margin-bottom: 3rem;
}
.con1 .intro::before{
	content: "";
	display: block;
	background: url(../../p-img/101113_6/intro-h2.svg)no-repeat top left / contain;
	width: 100%;
    max-width: 524px;
    height: 65vw;
	max-height: 400px;
}
.con1 .intro .parts-h1{display: flex;align-items: center;justify-content: center;}
.con1 .intro .parts-h1 ,.con1 .intro-h2{
	font-size: 1.5rem;
	color: var(--body-font-color);
	letter-spacing: 1px;
	line-height: 1.75;
	margin-bottom: 0;

}
.con1 .intro-h2{font-size:2.0rem;text-align: center;margin-bottom: 2em;line-height: 1.75;}

.con1 .txt_area {
	position: relative;
	padding: 3rem 20px 20px;
	border: solid 3px var(--main-color);
	border-radius: 10px;
	box-sizing: border-box;
}
.con1 .txt_area::before {
	content: "How do you mean?";
	background-color: var(--main-color);
	color: var(--side-btn-txt-color);
	padding: 0 16px;
	border-radius: 6px 0 6px 0;
	position: absolute;
	top: 0;
	left: 0;
}
.con1 .txt_area p {
	margin-bottom: 0;
}
.con1 .intro-2 {
	max-width: 440px;
    margin: auto;
	position: relative;
	padding-top: 170px;
	padding-bottom: 290px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 0;
}
.con1 .intro-2::before,
.con1 .intro-3::before {
	content: "";
	position: absolute;
	background: url(../../p-img/101113_6/intro-arrow.svg) no-repeat top left / contain;
	width: 46px;
    height: 140px;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
}
.con1 .intro-2::after {
	content: "";
	position: absolute;
	background: url(../../p-img/101113_6/intro-2.svg) no-repeat top center / contain;
	width: 100%;
	max-width: 500px;
	height: 70vw;
	max-height: 300px;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
}
.con1 .intro-2 p {
	position: relative;
	padding: 40px 10px;
	max-width: 230px;
	font-weight: bold;
	text-align: center;
	background-color: #d8b8c4;
	border-radius: 44% 48% 39% 50% / 61% 38% 53% 30% ;
}
.con1 .intro-2 p:nth-of-type(2) {
	margin: 0 0 0 auto;
    display: inline-block;
    padding: 40px 80px;
}
.con1 .intro-2 p::after {
  content: "";
  position: absolute;
  top: 96%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #d8b8c4;
  width: 2rem;
  height: 1.2rem;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}
.con1 .intro-2 p:nth-child(1)::after {
	transform: rotate(-280deg);
}
.con1 .intro-3 {
	position: relative;
	padding-top: 170px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}
.con1 .intro-3 .bg-main-col {
	display: inline;
}
.con1 .intro-3 p {
	font-size: 1.5rem;
	font-weight: bold;
    line-height: 1.75;
    text-align: center;
}
.con1 .intro-3 img {
	width: 100%;
}
.con2 section {
	margin: 80px 10px;
}
.con3 .w1024,
.con4 .w1024,
.con5 .w1024 {
	margin: 80px 10px;
}
.con4 .w1024 {
	margin: 0 10px 80px;
}
.for-pc {
	display: none;
}
.for-sp {
	display: block;
}
.con2 .txt_area {
	font-size: 1.5rem;
	font-weight: bold;
	line-height: 1.75;
	text-align: center;
}
.lead-txt {
	text-align: center;
}
.flow-area1 ul li {
	width: 100%;
	line-height: 1.75;
}
.flow-area1 ul li:nth-child(5) img{
	width: 100%;
}
.flow_head {
	margin-bottom: 20px;
}
.flow_bottom {
	font-weight: bold;
}
.con3 .parts-h3 {
	padding-bottom: 16px;
}
.con3 .parts-h3 span {
	display: inline-block;
	margin-bottom: 10px;
	background-color: var(--main-color);
	font-size: 1rem;
	font-weight: bold;
	color: var(--side-btn-txt-color);
	padding: 4px 20px 6px;
	border-radius: 20px;
}
.con2 dl {
	margin: 20px auto 50px;
}
.con2 dt {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
	margin-bottom: 20px;
}
.con2 dd {
	line-height: 1.75;
}
.con4 p {
	text-align: center;
	font-size: 1.5rem;
	font-weight: bold;
}
/*con5 QA*/
.con5 dt{
	font-size: 1.25rem;
	margin-left: 1.75em;
	font-weight: bold;
	position: relative;
	line-height: 1.6;
	margin-bottom: 1em;
	color:var(--main-color)
}
.con5 dt::before{
	content: 'Q.';
	font-size: 1.2em;
	color:var(--main-color);
	position: absolute;
	top: -6px;
	left: -1.9rem;
}
.con5 dd{
	margin-left: 3.25rem;
	font-weight: normal;
	position: relative;
	line-height: 1.8;
	margin-bottom: 3em
}
.con5 dd::before{
	content: 'A.';
	font-size: 1.5em;
	font-weight: bold;
	color:var(--main-color);
	position: absolute;
	top: -10px;
	left: -1.6rem;
}

.con5 dd::after{
	content: '';
	display: block;
	height: 1px;width:calc( 100% + 3.25rem);
	background-color:#c6c6c6;
	position: absolute;
	bottom:-1em;
	left:-3.25rem;
}
.con5 dd:last-child::after{display: none}
.con5 dd ol{margin: 1.5em 0}
.con5 dd ol li{margin-bottom: 1em;}


.cta {
	margin-top: 80px;
	display: flex;
	flex-direction: column;
	gap: 30px;
}
.cta ul{display: flex;margin-right: -2em; font-size: 1.25rem;flex-wrap: wrap;justify-content: center}
.cta li{margin-right: 2em;background-color: #e2e5e5;line-height: 1.5;padding:.5em .75em;margin-bottom: 0.5em;
	border-radius: 100px;
}
.cta > div p {
	font-size: 1.25rem;
	text-align: center;
	font-weight: bold;
	align-content: center;
	line-height: 1.75;
}
.con4 p .block{line-height: 1;margin-bottom: -0.5em;font-size: 2em}




