@charset "utf-8";
/*レスポンシブ用雛形　使うところにコピペ*/
/*
@media screen and (max-width: 560px) {
    /*　スマホの時ここを読み込む　
}
@media screen and (min-width: 768px) {
    /*　画面サイズが768px以上からはここを読み込む　
}
@media screen and (min-width: 960px) {
    /*　画面サイズが960px以上からここを読み込む　
}
@media screen and (min-width: 1200px) {
    /*　画面サイズが1200px以上からはここを読み込む　
}
*/
/*　フォントサイズの計算式　*/
/*　https://modern-fluid-typography.vercel.appで数値設定して、clamp以下をコピペ
例）font-size: clamp(2.6rem, 1.8vw + 1rem, 3.2rem);
*/
/* -------------------------------------
CSS変数
--------------------------------------*/
:root {
    --scroll-bar-width: 0px;
    --VW100: calc(100vw - var(--scroll-bar-width));
    --containerMax: 192rem;
    --contentMax: 120rem;
    --White: #fff;
	--Blue: #3a88cb;
    --Orange: #ffae00;
    --Yellow: #f5d933;
    --Font12: 1.2rem;
    --Font13: 1.3rem;
    --Font14: 1.4rem;
    --Font16: 1.6rem;
    --Font18: 1.8rem;
    --Font20: 2rem;
    --Font24: 2.4rem;
    --Font28: 2.8rem;
    --Font32: 3.2rem;
    --Font34: 3.4rem;
    --Font36: 3.6rem;
    --Font50: 5rem;
    --Font80: 8rem;
    --Font10-14: clamp(1rem, 1vw + 0.35rem, 1.4rem);
    --Font12-16: clamp(1.2rem, 1vw + 0.5rem, 1.6rem);
    --Font14-16: clamp(1.4rem, 0.75vw + 1rem, 1.6rem);
    --Font16-18: clamp(1.6rem, 1vw + 1rem, 1.8rem);
    --Font16-20: clamp(1.6rem, 1vw + 1.1rem, 2rem);
    --Font16-22: clamp(1.6rem, 0.8vw + 1rem, 2.2rem);
    --Font18-26: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    --Font18-22: clamp(1.8rem, 1vw + 1.25rem, 2.2rem);
    --Font20-24: clamp(1.8rem, 1vw + 1.25rem, 2.4rem);
    --Font20-26: clamp(2rem, 2vw + 1rem, 2.6rem);
    --Font22-30: clamp(2.2rem, 1.8vw + 1rem, 3rem);
    --Font24-32: clamp(2.4rem, 2vw + 1.25rem, 3.2rem);
    --Font24-36: clamp(2.4rem, 2vw + 1.5rem, 3.6rem);
    --Font28-36: clamp(2.8rem, 2vw + 1.75rem, 3.6rem);
    --Font_Family: "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
/* -------------------------------------
リセット
--------------------------------------*/
ul, ol {
    margin: 0;
    padding: 0;
    list-style: none;
}
p {
    margin: 0;
}
body#seikoLP .site-content {
    overflow: initial;
}
/* -------------------------------------
表示切り替え
--------------------------------------*/
@media screen and (max-width: 768px) {
    /*　スマホの時は非表示　*/
    .spNone {
        display: none;
    }
}
@media screen and (min-width: 769px) {
    /*　スマホ・タブレットより大きい時は非表示　*/
    .pcNone {
		display: none;
	}
}
/* -------------------------------------
表示幅、ボディー
--------------------------------------*/
body, html {
	line-height: 1.6;
	letter-spacing: 0.05rem;
	display: block;
	width: auto;
	height: 100%;
}
html {
	font-size: 62.5%;
}
body {
	margin: 0 !important;
	color: #333;
	font-size: 1.6rem;
}
body, button, input, select, textarea {
    font-family: "segoe ui",meiryo,"yu gothic","hiragino kaku gothic pron",sans-serif
}
.container {
    width: 100%;
    max-width: var(--containerMax);
    margin-left: auto;
    margin-right: auto;
}
.contentWidth {
    width: 100%;
    max-width: var(--contentMax);
    margin-left: auto;
    margin-right: auto;
}
.contentInner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.overFlowContents {
    margin-right: calc(50% - (var(--VW100) / 2));
    margin-left: calc(50% - (var(--VW100) / 2));
    padding-right: calc((var(--VW100) / 2) - 50%);
	padding-left: calc((var(--VW100) / 2) - 50%);
    overflow-x: hidden;
}
/*マージン*/
.mT10 {
	margin-top: 1rem;
}
.mR20 {
    margin-right: 2rem;
}
.mB10 {
	margin-bottom: 1rem;
}
.mB20 {
	margin-bottom: 2rem;
}
.mB30 {
	margin-bottom: 3rem;
}
.mB40 {
	margin-bottom: 4rem;
}
.mB50 {
	margin-bottom: 5rem;
}
.mB60 {
	margin-bottom: 6rem;
}
.mB80 {
	margin-bottom: 8rem;
}
.mB100 {
	margin-bottom: 10rem;
}
.mL10 {
    margin-left: 1rem;
}
/*　パディング　*/
.pD10 {
    padding: 1rem
}
.pT10 {
    padding-top: 1rem
}
.pT40 {
    padding-top: 4rem
}
.pB10 {
    padding-bottom: 1rem
}
.pB80 {
    padding-bottom: 8rem
}
.pL10 {
    padding-left: 1em;
}
/* -------------------------------------
テキスト関係
--------------------------------------*/
.font12{
	font-size: var(--Font12);
}
.font14 {
	font-size: var(--Font14);
}
.font16 {
	font-size: var(--Font16);
}
.font18 {
	font-size: var(--Font18);
}
.font20 {
	font-size: var(--Font20);
}
.font24 {
	font-size: var(--Font24);
}
.font28 {
    font-size: var(--Font28);
}
.font32 {
    font-size: var(--Font32);
}
.font34 {
    font-size: var(--Font34);
}
.font36 {
    font-size: var(--Font36);
}
.font50 {
	font-size: var(--Font50);
}
.font80 {
	font-size: var(--Font80);
}
/*　フォントを可変サイズにする　*/
.font14-16 {
	font-size: var(--Font14-16);
}
.font16-18 {
	font-size: var(--Font16-18);
}
.font16-20 {
	font-size: var(--Font16-20);
}
.font16-22 {
	font-size: var(--Font16-22);
}
.font18-26 {
	font-size: var(--Font18-26);
}
.font18-22 {
	font-size: var(--Font18-22);
}
.font20-24 {
	font-size: var(--Font20-24);
}
.font22-30 {
	font-size: var(--Font22-30);
}
.font28-36 {
	font-size: var(--Font28-36);
}
.font24-32 {
	font-size: var(--Font24-32);
}
.fontB {
	font-weight: bold;
}
.fontM {
	font-weight: 500;
}
.fontN {
	font-weight: normal;
}
/*　中央揃え　*/
.textCenter {
	text-align: center;
}
/*　右詰め　*/
.textRight {
	text-align: right;
}
/*　均等割り付け　*/
.textJustify {
	text-align: justify;
}
/*　テキスト修飾用　*/
.textOrange {
	color: var(--Orange);
}
.textGreen {
	color: var(--Green);
}
.textBlue {
	color: var(--Blue);
}
.textWhite {
	color: var(--White);
}
.lineYellow{
	background: linear-gradient(transparent 60%, var(--Yellow) 0%);
}
/* -------------------------------------
画像関係
--------------------------------------*/
.img_Max100 img {
	max-width: 100%;
	height: auto;
}
.img_W100 img {
	width: 100%
}
/*中央配置　*/
.centerAlign {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.fitContent {
    width: fit-content;
}
/* -------------------------------------
カラー
------------------------------------- */
.Blue {
    color: var(--Blue);
}
.Yellow {
    color: var(--Yellow);
}
.White {
    color: var(--White);
}
.bgBlue {
    background: var(--Blue);
}
.bgWhite {
    background: var(--White);
}
.bgYellow {
    background: var(--Yellow);
}
/* -------------------------------------
ロード表示
------------------------------------- */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: var(--VW100);
    height: 100vh;
    z-index: 1000;
    background-color: var(--Blue);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeOut 3.5s 3.5s forwards;
}
.loading .loadingTop {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
    }
}
.loading p {
    padding: 0 20px;
    opacity: 0;
    animation: logo_fade 3.5s 0.5s forwards;
}
@keyframes logo_fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    40% {
        opacity: 1;
        transform: translateY(0);
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
#seikoLP #content {
    background-color: var(--White);
    position: initial;
}
#seikoLP #content::before {
    content: none;
}
#startbusinessLP h1 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 4.8rem;
}
.mainVisualBox {
    display: block;
    padding-top: 5rem;
}
.selectItem_Header {
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 3;
    background: linear-gradient(var(--White) 20%, var(--Blue) 0%);
}
.selectItem_Head {
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
    position: relative;
}
.selectItem_Head h2 {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: var(--Font28-36);
    font-weight: bold;
    color: var(--Yellow);
}
/*---------------------------------------------
 **  スクロールサイン
---------------------------------------------*/
/* スクロールダウンの位置 */
.scroll {
    display: none;
    padding: 20px 3px 50px;
    position: fixed;
    bottom: 80px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    background-color: #00000070;
}
.scroll.js-animeON {
    display: block;
}
.scroll p {
    font-size: 15px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
}
/* 矢印のアニメーション部分 */
.scroll::after {
    animation: scroll 2s infinite;
    border-bottom: 4px solid #fff;
    border-left: 4px solid #fff;
    content: "";
    width: 12px;
    height: 12px;
    right: 0;
    left: 0;
    margin: auto;
    position: absolute;
}
/* 矢印のアニメーション */
@keyframes scroll {
    0% {
        opacity: 0;
        transform: rotate(-45deg) translate(0, 0);
    }
    40% {
        opacity: 1;
    }
    80% {
        opacity: 0;
        transform: rotate(-45deg) translate(-20px, 20px);
    }
    100% {
        opacity: 0;
    }
}
ul.selectItemBox {
    display: block;
    padding-top: 5rem;
    padding-bottom: 5rem;
    position: relative;
    clip-path: inset(0 1px)
}
div.selectItemBox {
    padding-top: 5rem;
    padding-bottom: 5rem;
}
div.selectItemBox::before,
ul.selectItemBox::before {
    position: fixed;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--Blue) url(./images/fig-selectItem-bk.svg) repeat-Y top center / contain;
}
div.selectItemBox .itemExpand,
ul.selectItemBox li {
    margin-bottom: 5rem;
    padding: 0 15px;
    transform: scale(0.8);
    transition: all .5s;
}
#subsidy p img,
#meomeasures p img {
    border-radius: 10px;
    background: var(--Yellow);
}
@media screen and (min-width: 769px) {
    .mainVisualBox {
        display: flex;
        flex-wrap: wrap;
    }
    .mainV_left, .mainV_right {
        width: 50%;
    }
    .planappeal {
        text-align: center;
    }
    .selectItem_Head {
        width: calc(100% - 100px);
        max-width: 800px;
        border-radius: 20px;
    }
    .selectItem_Head h2 {
        font-size: 6rem;
    }
    ul.selectItemBox {
        display: flex;
        flex-wrap: wrap;
    }
    ul.selectItemBox::before {
        background: var(--Blue) url(../images/fig-selectItem-bk.svg) repeat-Y top center / auto;
    }
    ul.selectItemBox li {
        width: 33.3%;
    }
}
#subsidy p.js-AnimeTrigger:not(.js-animeON),
#meomeasures p.js-AnimeTrigger:not(.js-animeON),
#webcreate p.js-AnimeTrigger:not(.js-animeON) {
    opacity: 0;
}
#subsidy p.js-animeON,
#meomeasures p.js-animeON {
    animation: fadeLeft forwards .5s ease-out;
}
.webcreate {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
}
#webcreate p.js-animeON {
    animation: fadeRight forwards .75s ease-out;
}
/* -------------------------------------
アニメーション
--------------------------------------*/
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
@keyframes fadeRight {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
#startbusinessLP #move-cta a {
	display: block;
	width: 25%;
    max-width: 125px;
    min-width: 80px;
    transition: all 0.3s ease 0s;
}
/*お問い合わせ入力フォームへボタン*/
#move-cta {
    display: flex;
    justify-content: right;
    width: 100%;
    max-width: calc(var(--ystd-container-width) + var(--ystd-container-gutter)* 2);
    margin-right: auto;
    margin-left: auto;
    padding-right: var(--ystd-container-gutter);
    padding-left: var(--ystd-container-gutter);
    position: fixed; /*リンクを右下に固定*/
    bottom: 50px;
	z-index: 9999;
	opacity: 0; /*はじめは非表示*/
	transform: translateY(150px);
}
#move-cta a:hover {
    filter: drop-shadow(0 10px 8px #00000070);
    transform: translateY(-10px);
}
/*上に上がる動き*/
#move-cta.js-UpMove {
    animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
    from {
        opacity: 0;
        transform: translateY(150px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.startbusinessSubhead {
    margin: 1em 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    color: var(--seikoBlue);
}
.startbusinessSubhead::before,
.startbusinessSubhead::after {
    content: "";
    height: 5px;
    width: 40px;
    background-color: var(--seikoBlue);
    border-radius: 5px;
}
.startbusinessSubhead::before {
    margin-right: 10px;
    transform: rotate(60deg);
}
.startbusinessSubhead::after {
    margin-left: 10px;
    transform: rotate(-60deg);
}
#startbusinessForm {
    padding-bottom: 200px;
}
#startbusinessForm h2 {
    display: block;
    width: fit-content;
    margin: 0 auto 40px;
    padding: 10px 40px 8px;
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    background-color: var(--seikoBlue);
    border-radius: 9999px;
}
@media (min-width: 769px) {
    .startbusinessSubhead {
        font-size: 32px;
    }
}
