﻿@charset "UTF-8";

/*
Theme Name: ふるさと納税WEBシステム(ポータルサイト)
Version: 1.1
*/

/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
	--color-bg-base: #f3fafb;
	--color-bg-base2: #f6fcff;
	--color-bg-base3: #e2f5f7;
	--color-bg-base4: #f8f6ef;
	--color-bg-base5: #beebf5;
    --color-bg-base6: #f5f5f5;
	--color-bg-light: #ffffff;
	--color-border: #ececec;
	--color-border2: #e9e9e9;
	--color-bg-dark: #94b8c6;
	--color-bg-dark2: #7a9298;
    --color-bg-dark3: #939393;
	--color-bg-button: #ec6d59;
	--color-bg-icon: #d8f0f3;
	--color-icon: #60c2d8;
	--color-icon-light: #fff58a;
    --color-link-deep: #1a95b0;
	--color-font-light: #5b7177;
	--color-font-base: #3d3a2b;
	--color-font-base2: #ec6d59;
	--color-font-base3: #006378;
	--color-font-err: #c80a2f;
	--color-logo: #60c2d8;
}

/* ダークモードのカラー */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg-base: #434c5e;
        --color-bg-light: #3b4252;
        --color-bg-button: #5e81ac;
        --color-bg-button-hover: #81a1c1;
        --color-icon: #88c0d0;
        --color-font-base: #eceff4;
        --color-logo: #eceff4;
    }
}
*/

/* コンテナ幅 */
:root {
    --width-content: 1080px;
}

/* フォント */
:root {
    /* --font-family-base:
    'Poppins','Noto Sans JP','メイリオ', Meiryo, sans-serif; */
    /* --font-family-base:
    "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif; */
    /* --font-family-base: Futura,
    'Century Gothic', 游ゴシック体, YuGothic, 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 游ゴシック, 'Yu Gothic', メイリオ, Meiryo, sans-serif; */
    /* --font-family-base: Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPMincho,Meiryo,sans-serif; */
    --font-family-base:
    'Poppins',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
}
@media screen and (min-width: 768px) {
    :root {
        font-size: 20px;
    }
}

/* ------------------------------ */
/* リセットCSS */
/* ------------------------------ */

html {
    color: #000;
    background: #fff;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

fieldset,
img {
    border: 0;
}

address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
    font-style: normal;
    font-weight: normal;
}

ol,
ul {
    list-style: none;
}

caption,
th {
    text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: 100%;
    font-weight: normal;
    font-feature-settings: "palt";
}

q:before,
q:after {
    content: "";
}

abbr,
acronym {
    border: 0;
    font-variant: normal;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

input,
textarea,
select,
button {
    color: inherit;
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
    *font-size: 100%;
    border-radius: 0;
    border: none;
    appearance: none;
    -webkit-appearance: none;
    background-color: inherit;
}

input,
textarea,
select {
    font-size: 16px;
    font-family: 'Poppins',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
}

label {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    user-select: none;
}

input[type=radio] {
	display: none;
	visibility: hidden;
	cursor: pointer;
}

textarea {
    resize: vertical;
    display: block;
}

/* placeholder設定*/
input::placeholder, textarea::placeholder { 
    color: #aaa; 
    font-size: 14px;
}
@media screen and (min-width: 768px) {
    input::placeholder, textarea::placeholder {
        font-size: 16px;
    }
}
/* エラーメッセージ設定 */
.errMsg {
	padding: 5px 0 0px;
	color: var(--color-font-err);
	display: block;
	font-size: 12px;
	/* font-weight: 600; */
}

button {
    padding: 0;
    cursor: pointer;
}

legend {
    color: #000;
}

main {
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
a:hover {
	opacity: 0.6;
}

img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

svg {
    display: block;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    box-sizing: border-box;
}

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

/* ------------------------------ */
/* 全体共通のスタイル */
/* ------------------------------ */

html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background: var(--color-bg-light);
    font-size: 16px;
    color: var(--color-font-base);
    font-family: var(--font-family-base);
    letter-spacing: 0.03em;
    line-height: 1.75;
    font-weight: 400;
}
@media screen and (min-width: 768px) {
    body {
        font-size: 18px;
    }
}


.body-effect {

}

.body-effect:after {
	content: "";
	position: fixed; /*固定表示*/
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	z-index: 200; /*他のスタッキングコンテキストとかち合った時用*/
	background: var(--color-icon); /*シャッターの色*/
	animation: min-anim .5s ease forwards; /*アニメーション付与*/
	animation-delay: 0.3s; /*好みで遅延*/
	transform-origin: top; /*変化の起点*/
}

/*背景が縮むアニメーション*/
@keyframes min-anim{
  0% {
    transform: scaleY(1);/*画面全体を覆う*/
  }
  100% {
    transform: scaleY(0);/*高さ0*/
    visibility: hidden; /*非表示*/
  }
}

p {
    font-size: 13px;
}
@media screen and (min-width: 768px) {
    p {
        font-size: 15px;
    }
}

.l-page-top_wrap {
	text-align: right;
}
@media screen and (min-width: 768px) {
    .l-page-top_wrap {
        text-align: right;
    }
}

.l-page-top {
	font-weight: 600;
	display: inline-block;
	padding: 0 0 3px;
	margin-bottom: 30px;
	cursor: pointer;
	text-align: center;
	font-size: 12px;
	color: var(--color-font-base);
	border-bottom: 2px dotted var(--color-bg-dark);
	transition: transform .3s;
}
@media screen and (min-width: 768px) {
    .l-page-top {
        font-size: 14px;
    }
}
.l-page-top:hover {
	transform: translateY(-2px);
}

/* ------------------------------ */
/* 汎用クラス */
/* ------------------------------ */
/* display: none;（強制） */
.dn {
	display: none !important;
}
/* display: block;（強制） */
.db {
	display: block !important;
}
/* display: inline-block;（強制） */
.dib {
	display: inline-block !important;
}

/* text-align: center（強制） */
.tac {
	text-align: center !important;
}
/* text-align: left（強制） */
.tal {
	text-align: left !important;
}
/* text-align: right（強制） */
.tar {
	text-align: right !important;
}

/* positionリセット（強制） */
.ps {
	position: static !important;
}
/* margin無し（強制） */
.mn {
	margin: 0 0 0 0 !important;
}
/* padding無し（強制） */
.pn {
	padding: 0 0 0 0 !important;
}
/* padding設定（強制） */
.pt0 {
	padding-top: 0px !important;
}
.pt10 {
	padding-top: 10px !important;
}
.pt20 {
	padding-top: 20px !important;
}
.pt30 {
	padding-top: 30px !important;
}

.pb0 {
	padding-bottom: 0px !important;
}
.pb10 {
	padding-bottom: 10px !important;
}
.pb20 {
	padding-bottom: 20px !important;
}
.pb30 {
	padding-bottom: 30px !important;
}

.pl0 {
	padding-left: 0px !important;
}
.pl10 {
	padding-left: 10px !important;
}
.pl20 {
	padding-left: 20px !important;
}
.pl30 {
	padding-left: 30px !important;
}

.pr0 {
	padding-right: 0px !important;
}
.pr10 {
	padding-right: 10px !important;
}
.pr20 {
	padding-right: 20px !important;
}
.pr30 {
	padding-right: 30px !important;
}

.plr {
	padding-left: 20px !important;
    padding-right: 20px !important;
}

/* margin設定（強制） */
.mt0 {
	margin-top: 0px !important;
}
.mt10 {
	margin-top: 10px !important;
}
.mt20 {
	margin-top: 20px !important;
}
.mt30 {
	margin-top: 30px !important;
}

.mb0 {
    margin-bottom: 0px !important;
}
.mb10 {
	margin-bottom: 10px !important;
}
.mb20 {
	margin-bottom: 20px !important;
}
.mb30 {
	margin-bottom: 30px !important;
}

.ml0 {
	margin-left: 0px !important;
}
.ml10 {
	margin-left: 10px !important;
}
.ml20 {
	margin-left: 20px !important;
}
.ml30 {
	margin-left: 30px !important;
}

.mr0 {
	margin-right: 0px !important;
}
.mr10 {
	margin-right: 10px !important;
}
.mr20 {
	margin-right: 20px !important;
}
.mr30 {
	margin-right: 30px !important;
}

.mce {
	margin: 0 auto!important;
}

/* width設定 （強制）*/
.w100 {
	width: 100% !important;
}
/* width設定 （強制）*/
.w90 {
	width: 90% !important;
}
/* width設定 （強制）*/
.w80 {
	width: 80% !important;
}


/* max-width設定 （強制）*/
.mwNone {
	max-width: none!important;
}
.mw300 {
	max-width: 300px!important;
}
.mw400 {
	max-width: 400px!important;
}
.mw500 {
	max-width: 500px!important;

}
.mw600 {
	max-width: 600px!important;
}
/* 画面幅いっぱいにしたい要素にあてるクラス */
.widthMax { 
  margin: 0 calc(50% - 50vw);
}

/*border設定*/
.bn {
	border: none !important;
}

/*汎用disable設定*/
.disable1 {
	background-color: #c6c6c6 !important;
	pointer-events: none !important;
    user-select: none;
}
.disable2 {
	filter: opacity(0.5) !important;
	pointer-events: none !important;
    user-select: none;
}
.disable3 {
	filter: contrast(0.8) !important;
	pointer-events: none !important;
    user-select: none;
}
/*汎用input設定*/
.err {
    border: 1px solid var(--color-font-err) !important;
}
/*汎用input ラベル設定*/
.gl {
	border: 1px solid #c6c6c6 !important;
	background-color: #f0f0f0 !important;
	border-radius: 0px !important;
	pointer-events: none !important;
	user-select: none !important;
	-webkit-tap-highlight-color: rgba(0,0,0,0) !important;
	resize: none !important;
}

/* ------------------------------ */
/* フッター下部余白対策 */
/* ------------------------------ */
.h100 {
	/* min-height: calc(100vh - 270px); */
}
@media screen and (min-width: 768px) {
    .h100 {
	    /* min-height: calc(100vh - 323px); */
	   }
}

/* ------------------------------ */
/* ちょっとした使い回すスタイル */
/* ------------------------------ */

.u-visually-hidden {
    position: absolute !important;
    white-space: nowrap !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    border: 0 !important;
    padding: 0 !important;
    clip: rect(0 0 0 0) !important;
    clip-path: inset(50%) !important;
    margin: -1px !important;
}

/* ------------------------------ */
/* コンポーネント(使い回すスタイル) */
/* ------------------------------ */

/* 水平線 */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

/* スマホだけ表示 */
@media screen and (min-width: 768px) {
  .sp_only {
    display: none !important;
  }
}
/* PC（タブレット）だけ表示 */
@media screen and (max-width: 767px) {
  .pc_only {
    display: none !important;
  }
}

/* ボタン */
.c-button {
    color: var(--color-font-base);
    background-color: transparent;
    line-height: 1;
    font-weight: bold;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    text-align: center;
    padding: 0px 16px;
    font-size: 34px;
    /* border: 1px solid #ffffff; */
    position: absolute;
    right: 0;
}
@media screen and (min-width: 1200px) {
    .c-button {
        transition: background-color 0.3s;
        position: absolute;
        right: 0;
    }
    .c-button:hover {
        /* background-color: var(--color-bg-button-hover); */
    }
}

/* タイトル共通 */
.c-title-level2,
.c-title-level3 {
    font-weight: bold;
}

/*! 見出し2 */
.c-title-level2 {
    font-size: 16px;
    color: var(--color-icon);
    margin: 5px auto 5px;
    padding: 3px 5px;
    width: fit-content;
    border-bottom: 1px solid var(--color-icon);
}
@media screen and (min-width: 768px) {
    .c-title-level2 {
        font-size: 18px;
    }
}
/*! 見出し3 */
.c-title-level3 {
    font-size: 16px;
    color: var(--color-font-base);
    display: table;
    margin: 30px auto 60px;
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 768px) {
    .c-title-level3 {
        font-size: 18px;
    }
}
.c-title-level3::before {
 	position:absolute;
 	content: "";
 	display: block;
 	width: 110%;
 	height: 16px;/* 任意 */
 	background-color: var(--color-bg-icon);/* 任意の色 */
 	bottom: -2px;/* 任意 */
 	left: 50%;
 	transform: translateX(-50%);
 	border-radius: 10px;/* heightと同値 */
 	z-index: -1;
}


/* ------------------------------ */
/* コンテナ */
/* ------------------------------ */

.l-container_wide {
    width: 100%;
    margin: 0 auto;
    padding: 0px 20px;
}

/* ------------------------------ */
/* header */
/* ------------------------------ */

.header {
	background-color: transparent;
	position: fixed;
	top: 0;
	left: auto;
	width: 100%;
	
	height: 70px;
	transition: all 0.35s ease;
	z-index: 999;
}
@media screen and (min-width: 992px) {
    .header {
        max-width: 460px;
        position: absolute;
        top: 10px;
    }
}

@media screen and (max-width: 992px) {
	header.change_color {
		background: #fff;
		transition: all 0.35s ease;
	}
}

.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.header-logo {
	width: auto;
	font-weight: bold;
	font-size: 22px;
	color: var(--color-logo);
	position: relative;
	z-index: 1000;
}
@media screen and (min-width: 768px) {
    .header-logo {
        font-size: 22px;
    }
}

.header-logo svg {
    fill: var(--color-logo);
}

.header-logo-link {
    display: block;
    pointer-events: none;
}
@media screen and (min-width: 992px) {
    .header-logo-link {
        /* pointer-events: visible; */
    }
}

.header-logo-icon {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
}
.header-logo-img {
    width: auto;
    height: 25px;
    vertical-align: middle;
    display: inline-block;
}
@media screen and (min-width: 768px) {
    .header-logo-img {
        height: 33px;
    }
}


/* ------------------------------ */
/* footer */
/* ------------------------------ */

.footer {
    background: var(--color-bg-base3);
    color: var(--color-font-base3);
    display: flex;
    justify-content: center;
    /* align-items: center; */
    border-top-left-radius: 50%;
    border-top-right-radius: 50%;
    height: 380px;
    margin-left: -100px;
    margin-right: -100px;
    padding-left: 100px;
    padding-right: 100px;
    text-align: center;
    padding-top: 100px;
    position: relative;
    z-index: 0;
}
@media screen and (min-width: 992px) {
    .footer {
		/* max-width: 460px; */
		/* margin: 0; */
		/* padding-left: 0; */
		/* padding-right: 0; */
		/* border-top-left-radius: 20%; */
		/* border-top-right-radius: 20%; */
		/* padding-top: 100px; */
	}
}

.footer::before {
	position: absolute;
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background-color: transparent;
	background-image: url(../img/icon.svg?20240903);
	background-repeat: no-repeat;
	background-size: contain;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}


.footer-inner {
	padding: 0;
	margin: 0 -20px;
}


.footer-logo {margin: 0 0 20px;}

.footer-logo-link {
    display: block;
}

.footer-logo-icon {
    margin: 0;
    padding: 0;
    position: relative;
    top: 0;
}
.footer-logo-img {
    width: auto;
    height: 30px;
    vertical-align: middle;
    display: inline-block;
}


.footer-list {
    display: flex;
    flex-wrap: wrap;
    background: var(--color-bg-light);
    padding: 20px;
    border-radius: 10px;
    width: 70%;
    margin: 0 auto;
}


.footer-item {
    font-size: 13px;
    font-weight: bold;
    color: var(--color-icon);
    width: 100%;
    text-align: left;
    line-height: 1.85;
}
@media screen and (min-width: 768px) {
    .footer-item {
        font-size: 14px;
    }
}

.footer-copyright {
    margin-top: 24px;
    display: block;
    font-size: 14px;
    color: var(--color-bg-dark2);
}


/* ------------------------------ */
/* 骨組み */
/* ------------------------------ */
.l-wrapper {
	padding: 0;
	margin: 0;
	position: relative;
}
@media screen and (min-width: 769px) {
.l-wrapper:before {
		content: '';
		position: fixed;
		top: 0px;
		left: 0px;
		width: 100%;
		height: 270px;
		background-color: transparent;
		background-image: url(../img/bg_top.svg);
		background-position: bottom;
		background-repeat: no-repeat;
		background-size: cover;
		z-index: 1;
		/*mix-blend-mode: multiply;*/
	}
.l-wrapper:after {
		content: '';
		position: fixed;
		bottom: 0px;
		left: 0px;
		width: 100%;
		height: 300px;
		background-color: transparent;
		background-image: url(../img/bg_bottom.svg);
		background-position: bottom;
		background-repeat: no-repeat;
		background-size: 100% auto;
		z-index: 1;
	}
}
.l-content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
	padding: 0;
	background-repeat: repeat-y;
	background-size: contain;
	background-color: var(--color-bg-light);
	z-index: 2;
}
@media screen and (min-width: 992px) {
	.l-content {
		min-height: 100vh;
		max-width: 460px;
		margin: auto;
		border-left: 1px solid var(--color-bg-dark);
		border-right: 1px solid var(--color-bg-dark);
		 border-top: 1px solid var(--color-bg-dark); 
		box-shadow: 0 0 10px -5px rgb(90 90 90 / 50%);
		/* top: 10px; */
		/* border-radius: 20px; */
        
		padding-top: 20px;
	}
}


.aside-menu {
    display: none;
}
@media screen and (min-width: 992px) {
    .aside-menu {
        display: flex;
        flex-wrap: wrap;
        height: 100vh;
        width: calc((100vw - 464px)/2);
        align-items: center;
        justify-content: center;
        overflow: hidden;
        position: fixed;
        left: 0;
        top: 0;
        font-size: 30px;
        letter-spacing: 0.1em;
        margin-right: -0.3em;
        font-weight: 300;
        z-index: 2;
        align-content: center;
    }
    .middle-logo-img {
        width: 100%;
        max-width: 200px;
        height: auto;
        vertical-align: middle;
        display: block;
    }
    .header__nav {
	margin-top: 40px;
	padding-left: 20px;
}
    .header__list {
	    list-style: none;
    }
    .header__item {
	    width: 200px;
	    font-size: 12px;
	    font-weight: 500;
	    margin: 0 auto 7px;
	   }
    .header__link {
	    position: relative;
	    transition: all 0.3s ease;
	    display: inline-block;
	    color: var(--color-font-base3);
	    font-size: 14px;
	    text-decoration: none;
	    text-align: left;
	   }
    .header__link::before {
	    content: "";
	    position: absolute;
	    top: 6px;
	    left: -19px;
	    background: var(--color-icon);
	    width: 13px;
	    height: 13px;
	    border-radius: 50px;
	   }
       .header__link:hover {
	        padding-left: 4px;
	        opacity: 1;
	       }
}
@media (min-width: 1300px) {
	.header__link {
		font-size: 15px;
	}
	.header__item {
	    width: 210px;
	}
}

.aside-menu_inner {
    padding-top: 60px;
    position: relative;
    z-index: 0;
}



.aside-qrcode {
    display: none;
}
@media screen and (min-width: 992px) {
    .aside-qrcode {
	display: flex;
	height: 100vh;
	width: calc((100vw - 464px)/2);
	align-items: center;
	justify-content: center;
	overflow: hidden;
	position: fixed;
	right: 0;
	top: 0;
	text-align: center;
	z-index: 2;
	}
    .aside-qrcode img {
	    width: 120px;
	    margin-bottom: 18px;
	    padding: 10px;
	    background: var(--color-bg-light);
	   }
}

.l-fixed_area {
	display: none;
}
@media screen and (min-width: 769px) {
	.l-fixed_area {
		display: flex;
		align-items: center;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		background-repeat: repeat;
		background-size: cover;
		background-image: linear-gradient(to bottom, #f6fdff 0%,#ffffff 50%,#dcf5ff 80%,#a5e5ff 100%);
		background-color: var(--color-bg-base2);
		justify-content: center;
		padding: 0 10px;
	}
}
.aside-qrcode_inner {
    padding-top: 80px;
    position: relative;
    z-index: 0;
}


.m-general_text {
    margin: 0 0 10px;
    color: var(--color-icon);
    font-weight: 600;
    font-size: 13px;
}
.icon_mobile {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: text-bottom;
}

/* ------------------------------ */
/* top > kv */
/* ------------------------------ */
.top-kv {
    padding: 0;
    position: relative;
}
@media screen and (min-width: 768px) {
    .top-kv {
        padding: 0;
    }
}

.c-hero-area_wrap {
	padding-top: 130px;
	background-color: var(--color-bg-base);
	position: relative;
	margin-top: -70px;
	overflow: hidden;
	border-bottom: 1px solid var(--color-border);
}
/*.c-hero-area_wrap_flex::after{
  position: absolute;
  content: '';
  left:0;
  bottom: -100%;
  width: 100%;
  height: 100%;
  background-color: #ffffff;  
  transform: skewY(-2deg);
  transform-origin: bottom left;
}*/

.c-hero-area_wrap_flex {
	width: 100%;
	position: relative;
	height: auto;
	padding-top: 20px;
	z-index: 5;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-hero-area_wrap_flex {
		max-width: 570px;
	}
}
@media screen and (min-width: 740px) {
	.c-hero-area_wrap_flex {
	        max-width: 670px;
	}
}

@media screen and (min-width: 992px) {
	.c-hero-area_wrap_flex {
	        max-width: 800px;
	}
}


.m-helo-area_text {
	width: auto;
	letter-spacing: .08em;
	top: 0;
	margin: 0 24px;
	transform: translateY(0%);
	position: relative;
	background: var(--color-bg-light);
	padding: 20px 10px;
	border: 1px solid var(--color-icon);
	/*border-radius: 5px;*/
	border-radius: 20px;
}
@media screen and (min-width: 992px) {
	.m-helo-area_text {
	        margin: 0 5.3%;
	}
}

.m-helo-area_text___2 {
	width: auto;
	letter-spacing: .08em;
	top: 0;
	margin: 0;
	transform: translateY(0%);
	position: relative;
	background: var(--color-bg-light);
	padding: 0;
	border-radius: 5px;
	/* border: 1px solid #bce2eb; */
	z-index: 1;
	/* box-shadow: 0 1px 10px rgba(29, 131, 210, 0.2); */
}

.m-helo-area_img {
	margin-left: 0;
	width: 100%;
	height: 240px;
	padding-top: 0;
	background-image: url(../img/kv.svg);
	background-position: center 3%;
	background-repeat: no-repeat;
	background-size: contain;
	margin-bottom: 20px;
}
@media (min-width: 576px) {
	.m-helo-area_img {
	height: 280px;
	}
}
@media screen and (min-width: 740px) {
	.m-helo-area_img {
	height: 330px;
	}
}
@media screen and (min-width: 992px) {
	.m-helo-area_img {
	height: 260px;
	}
}

.c-hero-area_wrap:after {
	content: '';
	position: absolute;
	top: -50px;
	left: 0px;
	width: 2545px;
	height: 710px;
	background-color: var(--color-bg-base3);
	transform: skewY(-74deg);
	transform-origin: top left;
	z-index: 1;
}
@media screen and (min-width: 992px) {
	.c-hero-area_wrap:after {
	background-color: var(--color-bg-base);
	}
}

.c-helo-area_text {
    padding: 20px 20px 10px;
    font-weight: 600;
    font-size: 12px;
    color: var(--color-font-light);
}
@media screen and (min-width: 768px) {
    .c-helo-area_text {
        font-size: 11px;
    }
}
@media screen and (min-width: 992px) {
    .c-helo-area_text {
        font-size: 13px;
    }
}

.c-helo-area_text___2 {
    padding: 0px;
    font-weight: 600;
    font-size: 12px;
    color: var(--color-font-light);
}
@media screen and (min-width: 768px) {
    .c-helo-area_text___2 {
        font-size: 11px;
    }
}
@media screen and (min-width: 992px) {
    .c-helo-area_text___2 {
        font-size: 13px;
    }
}



.t_top_text {
    padding-bottom: 10px;
}
.t_text {
    display: none;
    padding-bottom: 10px;
}
.t_button {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	color: var(--color-icon);
	cursor: pointer;
	margin: 10px auto 0;
	width: 140px;
	min-width: 110px;
	height: 37px;
	line-height: 1;
	border-radius: 40px;
	background-color: #f9feff;
	border: 1px solid var(--color-icon);
	text-align: center;
	box-shadow: 0px 2px 0px 0px var(--color-icon);
	transition: all 0.3s ease-in-out;
}
.t_button:hover{
	background-color: #fff;
}

.c-btn_CTR_link {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0px;
	text-decoration: none;
	color: #ffffff;
	background: var(--color-bg-button);
	border-radius: 50px;
	height: auto;
	width: auto;
	max-width: 250px;
	margin: 0 auto 40px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.c-btn_CTR_link2 {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 15px 0px;
	text-decoration: none;
	color: #ffffff;
	background: var(--color-icon);
	border-radius: 50px;
	height: auto;
	width: auto;
	max-width: 250px;
	margin: 0 auto 40px;
	font-size: 14px;
	font-weight: 600;
	letter-spacing: 0.1em;
}
.c-btn_CTR_link:hover, .c-btn_CTR_link2:hover {
	background: var(--color-font-base);
	opacity: 1;
}
.c-button_area {
    padding: 50px 0 20px;
}
.c-button_area___2 {
	margin: 30px auto 0px;
	width: 100%;
	padding: 30px 0 0px;
}

.c-btn_more {
  display: block;
  position: relative;
  margin: 0 auto 40px;
  padding: 15px 0;
  text-align: center;
  width: 100%;
  max-width: 250px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  background-color: #1a95b0;
  border-radius: 50vh;
  transition: 0.3s;
  letter-spacing: 0.1em;
}

.c-btn_more::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 9px;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  background-color: #ffffff;
  border-radius: 50vh;
}

.c-btn_more::after {
	content: '';
	position: absolute;
	top: 50%;
	right: 24px;
	transform: translateY(-50%) rotate(45deg);
	width: 8px;
	height: 8px;
	border-top: 2px solid #1a95b0;
	border-right: 2px solid #1a95b0;
}
.c-btn_more:hover::after {
	border-top: 2px solid #3d3a2b;
	border-right: 2px solid #3d3a2b;
}

.c-btn_more:hover {
	background: var(--color-font-base);
	opacity: 1;
}

/* 全国版　CSS追加 */
.l-header_area {
	padding: 5px 0;
	background-color: var(--color-icon);
	color: #fff;
	max-width: 170px;
	border-radius: 5px 5px 0 0;
	position: relative;
	right: -10px;
	z-index: 1;
	font-size: 16px;
	text-align: center;
	font-weight: 600;
}
.l-header_area::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 8px;
	transform: translateY(-50%);
	background: var(--color-icon-light);
	width: 7px;
	height: 20px;
	border-radius: 5px;
}
/* 一覧ページ送り */
.pagination_base {
	border-top: 1px solid var(--color-border);
	margin: 30px auto 0px;
	width: 100%;
	padding: 30px 0 20px;
}
.pagination001 {
	font-size: 12px;
	display: flex;
	justify-content: center;
	padding-left: 0;
	margin: 0 auto;
	max-width: 375px;
}
.page-item {
	margin: 0 2px;
	width: calc(100% / 8);
	display: flex;
	justify-content: center;
}
.page-link {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	line-height: 1.25;
	color: #ffffff;
	background-color: var(--color-icon);
	border: 1px solid var(--color-icon);
	transition:  0.3s ease;
	border-radius: 3px;
}
.page-item.disabled .page-link {
	color: var(--color-bg-light);
	pointer-events: none;
	cursor: auto;
	background-color: var(--color-bg-dark2);
	border-color: var(--color-bg-dark2);
}
.btn {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 35px;
	width: 35px;
	font-weight: 400;
	color: var(--color-icon);
	user-select: none;
	background-color: transparent;
	border: 1px solid var(--color-icon);
	border-radius: 3px;
}
.btn.disabled, .btn:disabled {
	opacity: 1;
}
.btn-primary.disabled, .btn-primary:disabled {
	color: var(--color-icon);
	background-color: #ffffff;
	border-color: var(--color-icon);
}

/* ギャラリー */
.m-gallery_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 12px 12px;
}

.gallery_item {
    padding: 0;
    width: calc(100% / 2 - 6px);
    background-color: #fff;
    margin: 0px 0px 0px;
    border: 1px solid #ccc;
    padding: 5px;
    box-shadow: 0 4px 6px -2px rgba(0,0,0,.12), 0 0 4px 0 rgba(0,0,0,.12);
    /* border-radius: 5px; */
    /* overflow: hidden; */
}

.gallery-img_wrap {
	display: block;
	width: 100%;
	height: 110px;
	overflow: hidden;
	/* background-image: url(../img/loading001.svg); */
	background-color: var(--color-border);
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	border-radius: 0px;
	/* margin-bottom: 8px; */
	position: relative;
}
@media screen and (min-width: 500px) {
    .gallery-img_wrap {
        height: 150px;
    }
}
@media screen and (min-width: 600px) {
    .gallery-img_wrap {
        height: 150px;
    }
}
@media screen and (min-width: 740px) {
    .gallery-img_wrap {
        height: 200px;
    }
}
@media screen and (min-width: 992px) {
    .gallery-img_wrap {
        height: 140px;
    }
}


 .gallery-img_wrap::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	content: "";
	display: block;
	background: linear-gradient(
    90deg,
    rgba(255,255,255,0),
    rgba(255, 255, 255, 0.4),
    rgba(255,255,255,0)
  );
	/* animation: skeleton-animation 1.2s linear infinite; */
	z-index: 0;
}
/* アニメーション定義 */
@keyframes skeleton-animation {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
.gallery-img_wrap.is-active::before {
	display:none;	
}


.gallery-img {
	max-width: 100%;
	width: 100%;
	height: 110px;
	object-fit: cover;
	transform: scale3d(1,1,1);
	will-change: transform, opacity;
	transition: opacity .0s ease-in-out, transform .5s;
}
@media screen and (min-width: 500px) {
    .gallery-img {
        height: 150px;
    }
}
@media screen and (min-width: 600px) {
    .gallery-img {
        height: 150px;
    }
}
@media screen and (min-width: 740px) {
    .gallery-img {
        height: 200px;
    }
}
@media screen and (min-width: 992px) {
    .gallery-img {
        height: 140px;
    }
}
.gallery-img.is-fadein {
    opacity:1 !important;
}

.gallery_item_link {
	display: block;
}
.gallery_item_link:hover{
	opacity: 1;
	
}
.gallery_item_link:hover .gallery-img_wrap .gallery-img {
	transform: scale3d(1.07,1.07,1.07);
}


.gallery-shop_name {
	font-size: 11px;
	color: #ffffff;
	background: var(--color-link-deep);
	padding: 5px 3px;
	line-height: 1.5em;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	overflow: hidden;
	transition: all .5s;
	font-weight: 600;
	margin-bottom: 5px;
}
@media screen and (min-width: 992px) {
    .gallery-shop_name {
        font-size: 13px;
        padding: 6px 5px;
    }
}
.gallery_item_link:hover .gallery-pro_explanation {
	color: var(--color-font-base3);
}
.gallery_item_link:hover .gallery-pro_price {
	color: var(--color-icon);
}

.gallery-pro_price {
	color: var(--color-font-err);
	margin: 2px 0 5px;
	padding: 0px 2px;
	font-size: 15px;
	transition: all .5s;
}
.gallery-pro_explanation {
	font-size: 12px;
	padding: 0px 2px;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
	line-height: 1.3em;
	overflow: hidden;
	transition: all .5s;
	font-weight: 500;
	color: var(--color-font-base);
}


/* ------------------------------ */
/* 地域別テーブル    */
/* ------------------------------ */

.tableRegional {
    width: 100%;
    border-top: 1px solid #cccccc;
    border-left: 1px solid #cccccc;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 0px 5px;
    overflow: hidden;
}

    .tableRegional .tr {
        display: table;
        width: 100%;
    }

        .tableRegional .tr .th,
        .tableRegional .tr .td {
            display: table-cell;
            font-size: 0.85em;
            padding: 8px 15px;
            background: #ffffff;
            border-right: 1px solid #cccccc;
            border-bottom: 1px solid #cccccc;
        }

        .tableRegional .tr .th {
            width: 100px;
            background: #f5f5f5;
            font-weight: bold;
        }

        .tableRegional .tr .td {
            width: calc(100% - 100px);
        }

@media only screen and (max-width: 740px) {
    .tableRegional .tr {
        display: block;
    }

        .tableRegional .tr .th,
        .tableRegional .tr .td {
            display: block;
            width: 100%;
            font-size: 0.9em;
        }
}


/*
    デフォルトのリンクスタイル
*/
.linkRegional {
    color: var(--color-icon);
    font-weight: 600;
    /*padding: 3px 0px;*/
    border-bottom: 1px dashed var(--color-icon);
    position: relative;
    display: inline-block;
    /*margin: 0 1px 5px;*/
}

.linkRegional:hover {
    opacity: 1;
    color: var(--color-font-light);
    border-bottom: 1px dashed var(--color-font-light);
}






/* ------------------------------ */
/* top > main */
/* ------------------------------ */
.main {
    position: relative;
    padding: 0 0 150px;
}
.l-section {
    padding: 20px 30px 80px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.l-section___2 {
    padding: 20px 15px 80px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}

/* 自治体様 */
.bg_setciton001 {
    background: var(--color-bg-light);
}
.c-glid_wrap {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1rem;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-glid_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-glid_wrap {
	        max-width: 622px;
	}
}

@media screen and (min-width: 992px) {
	.c-glid_wrap {
	        max-width: 800px;
	}
}

.c-glid_items {
	border: 2px solid #ccc;
	border-radius: 7px;
	box-shadow: 0px 3px 0 rgba(0, 0, 0, 0.15);
	transition: all .2s linear;
}
.c-glid_items:hover {
	box-shadow: none;
	/* transform: translate(2px, 0px); */
}

.c-glid_items a {
	display: block;
	padding: 12px 0px;
}
.c-glid_items a:hover {
	opacity: 1;
}
.logo__img {
	height: 22px;
	width: auto;
	object-fit: contain;
	margin: auto;
	display: block;
}

/* お問い合わせ */
.bg_setciton002 {
    background: var(--color-bg-base4);
}
.c_form_wrap {
    padding: 0;
    margin: 0 auto;
    font-size: 16px;
}
@media (min-width: 576px) {
	.c_form_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c_form_wrap {
	        max-width: 622px;
	}
}

@media screen and (min-width: 992px) {
	.c_form_wrap {
	        max-width: 800px;
	}
}

/* お問い合わせ確認 */
.textConfirmBox {
	/* border: 3px solid var(--color-font-light); */
	/* border-radius: 7px; */
	background: var(--color-bg-light);
	padding: 15px 30px 40px;
	position: relative;
	width: 100%;
	margin: 80px 0 20px;
	font-size: 12px;
	box-shadow: inset 0px 0px 0 1px #6c6c6c;
}
@media screen and (min-width: 768px) {
    .textConfirmBox {
		font-size: 14px;

	}
}

.textConfirmBox::before {
    background-color: var(--color-font-light);
    color: var(--color-bg-light);
    content: "個人情報の取得に関する同意のご確認";
    font-weight: bold;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 15px;
    position: absolute;
    top: -17px;
    font-size: 15px;
    width: 100%;
    text-align: center;
    display: block;
    white-space: nowrap;
}
@media screen and (min-width: 768px) {
    .textConfirmBox::before {
		font-size: 15px;
		top: -19px;
	}
}
.textConfirmBox_inner {
    margin: 35px 0 30px;
    font-size: 13px;
}
.tf-c-button_Confirm {
	display: table;
	text-align: center;
	min-width: 120px;
	margin: 0 auto;
	padding: 10px 25px;
	border: none;
	border-radius: 5px;
	outline: none;
	background-color: var(--color-font-err);
	color: var(--color-bg-light);
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0.15em;
	font-weight: 600;
	cursor: pointer;
	box-shadow: 0px 3px 0px 0px #8a041e;
}

/*モーダルを開くボタン*/
.modal-open{

}

body.fixed {
    overflow: hidden;
}
/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container{
	position: fixed;
	top: 0;
	left: 50%;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	transform: translateX(-50%);
	padding: 40px 20px;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
	box-sizing: border-box;
	/*cursor: pointer;*/
	z-index: 1000; /*他のスタッキングコンテキストとかち合った時用*/
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active{
	opacity: 1;
	visibility: visible;
}
/*モーダル枠の指定*/
.modal-body{
	position: relative;
	display: block;
	vertical-align: middle;
	max-width: 500px;
	margin: 0 auto;
	width: 100%;
	border: 5px solid var(--color-font-base3);
	border-radius: 25px;
	box-shadow: 0px 5px 0px 0px var(--color-font-base3);
}
/*モーダルを閉じるボタンの指定*/
.modal-close{
	position: absolute;
	display: flex;
	align-items: center;
	justify-content: center;
	top: -24px;
	right: -22px;
	width: 40px;
	height: 40px;
	font-size: 27px;
	line-height: 1;
	cursor: pointer;
	color: var(--color-bg-light);
	background: var(--color-font-base);
	border: 2px solid var(--color-bg-light);
	border-radius: 50px;
	filter: drop-shadow(0px 0px 3px #333);
}
/*モーダル内のコンテンツの指定*/
.modal-content{
	background: #fff;
	text-align: left;
	padding: 25px 20px;
	overflow-y: auto;
	height: calc(100vh - 190px);
	height: calc(100dvh - 190px);
	border-radius: 20px 20px 0 0;
}

.modal-content::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	border-radius: 7px;
	background-color: #f5f5f5
}

.modal-content::-webkit-scrollbar {
	width: 10px;
	background-color: #f9f9f9;
}

.modal-content::-webkit-scrollbar-thumb {
	border-radius: 7px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: #ccc;
}
.modal-content_inner {
    font-size: 13px;
}
@media screen and (min-width: 768px) {
    .modal-content_inner {
		font-size: 15px;
	}
}

.modal-title {
	padding: 10px;
	background: #0385cd;
	color: #ffffff;
	border: 4px double #ffffff;
	text-align: center;
	border-radius: 5px;
	box-shadow: 2px 2px #b9ccd5;
	margin: 0 0 25px;
	position: relative;
	overflow: hidden;
	font-weight: 600;
}
.modal-title:before {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.1;
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
.modal-title:after {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.2;
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}
@media screen and (min-width: 768px) {
    .modal-title:before {
		opacity: 0.3;
	}
	.modal-title:after {
		opacity: 0.3;
	}
}


.modal-content_text p {
	font-size: 12px;
}
@media screen and (min-width: 768px) {
    .modal-content_text p {
		font-size: 13px;
	}
}
.privacy_title{
	color: #0385cd;
	border-bottom: 1px solid #0385cd;
	padding:0 0 0 0;
	margin: 20px 0 10px 0;
	font-weight:bold;
	width:100%;
	position: relative;
}


.privacy_agree {
    background-color: #fff1f1;
    /* text-align: center; */
    margin: 30px 0 20px;
    color: red;
    font-weight: 600;
    font-size: 12px !important;
    /* border: 1px solid; */
    padding: 10px;
}
@media screen and (min-width: 768px) {
    .privacy_agree {
		font-size: 15px !important;
	}
}



/*モーダル内のフッターの指定*/
.modal-footer{
	background: #fff;
	text-align: center;
	padding: 30px 0;
	border-top: 1px solid var(--color-font-base);
	border-radius: 0 0 20px 20px;
}


/* input */
.tf-c-form__row {
	margin-bottom: 24px;
}
.tf-c-form__label {
	word-wrap: break-word;
	display: flex;
	margin-top: 1em;
	margin-bottom: .3em;
	color: var(--color-font-base);
	font-size: 15px;
	font-weight: bold;
	line-height: 2;
	justify-content: space-between;
	align-items: center;
}
.tf-c-form__label__required {
	display: inline-flex;
	margin-left: 0;
	color: var(--color-bg-light);
	background: var(--color-font-err);
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 20px;
	font-size: 10px;
}
.tf-c-form-control {
	display: block;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: .75em .85em;
	border: 1px solid rgba(0,0,0,.15);
	border-radius: 4px;
	outline: none;
	background-clip: border-box;
	background-color: var(--color-bg-light);
	color: var(--color-font-base);
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out,-webkit-box-shadow .15s ease-in-out;
}
.tf-c-form-control:focus {
	border: solid 1px var(--color-icon);
}

.textareaClass {
    min-height: 226px;
}

.tf-c-form__row--button {
	padding-top: 3em;
	text-align: center;
}

.tf-c-button {
	display: inline-flex;
	min-width: 120px;
	margin: 0 auto;
	padding: 15px 25px;
	border: none;
	border-radius: 50px;
	outline: none;
	background-color: var(--color-icon);
	color: var(--color-bg-light);
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0.15em;
	font-weight: 600;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}
.tf-c-button:hover {
	opacity: 1;
	background-color: var(--color-font-base);
}
.tf-c-button2 {
	display: inline-flex;
	min-width: 120px;
	margin: 0 auto;
	padding: 15px 25px;
	border: none;
	border-radius: 50px;
	outline: none;
	background-color: var(--color-bg-button);
	color: var(--color-bg-light);
	font-size: 14px;
	line-height: 1.7;
	letter-spacing: 0.15em;
	font-weight: 600;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}

 /* PC固定エリア */
.l-fixed_area_wrap {

}

/*----------------------------------------------------
               ナビゲーション（ドロワー）メニュー （SP版）
----------------------------------------------------*/
body.nav-open {
	/* overflow:hidden; */
}
/* ナビゲーション（ドロワー）メニュー */
.drawerMenu {
	margin: 0;
	padding: 0;
	flex: 1;
	position: relative;
}
.gnav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  width: 100%; /* スマホに収まるくらい */
  height: 100%;
  padding-top: 100px;
  background-color: var(--color-bg-base4);
  /* transition: background-color .1s ease; */
  z-index: 100;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  display: none;
}
.hamburger {
	position: absolute;
	right: 20px;
	top: -15px;
	width: 28px;
	height: 16px;
	cursor: pointer;
	z-index: 300;
	padding: 0;
}
.nav {
  margin: 0;
  padding: 0px 50px 200px 50px;
  list-style: none;
  font-size: 14px;
}
.menu-item {
  text-align: left;
  padding: 0 0px;
  border-bottom: 1px dashed var(--color-font-light);
}
.menu-item a {
  display: block;
  padding: 17px 0px 17px 25px;
  border-bottom: 0px solid #fff;
  text-decoration: none;
  color: var(--color-font-light);
  /* background: #efefef; */
  font-weight: bold;
  position: relative;
}
.menu-item a::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 2px;
	background: var(--color-icon);
	width: 15px;
	height: 15px;
	border-radius: 50px;
}


.menu-item:first-child a {
    border-top: 0px solid #fff;
}
.menu-item a:hover {
	opacity: 1;
}
.menu-item.inquiry a{
	display: flex;
	/* align-items: center; */
	padding: 15px 40px;
	border-bottom: 0px solid #fff;
	text-decoration: none;
	color: #ffffff;
	background: var(--color-icon);
	border-radius: 50px;
	height: auto;
	width: auto;
	max-width: 200px;
	margin: 25px auto;
	justify-content: center;
}
.hamburger__line {
  position: absolute;
  left: 14px;
  width: 100%;
  height: 2px;
  background-color: var(--color-bg-dark2);
  transition: all .3s;
}
.hamburger__line--1 {
  top: 0;
}
.hamburger__line--2 {
  top: 7px;
}
.hamburger__line--3 {
  bottom: 0;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 0;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transition: all .4s ease;
  cursor: pointer;
}

.nav-open .black-bg {
  opacity: .5;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: translateY(7px) rotate(-45deg);
  /* top: 24px; */
  /* width: 35px; */
  /* left: 14px; */
}
.nav-open .hamburger__line--2 {opacity: 0;}
.nav-open .hamburger__line--3 {
  transform: translateY(-7px) rotate(45deg);
  /* top: 24px; */
  /* width: 35px; */
  /* left: 14px; */
}
.menuAndClose {
	font-size: 10px;
	position: absolute;
	top: 18px;
	left: 13px;
	display: block;
	/* width: 39px; */
	font-weight: 400;
	color: var(--color-bg-dark2);
}
 
 /*左からフェードイン*/
.fade_botom {
   opacity: 0;
   animation-name: fadein-bottom;
   animation-timing-function: cubic-bezier(0.17,0.84,0.44,1);
   animation-duration: 0.4s;
   animation-fill-mode: forwards;
}
@keyframes fadein-bottom {
   0% {
      opacity: 0;
      transform: matrix(1,0,0,1,30,0);
   }

   100% {
      opacity: 1;
      transform: matrix(1,0,0,1,0,0);
   }
}
.menu-item:nth-of-type(1) {
  animation-delay: 0.2s;
}

.menu-item:nth-of-type(2) {
  animation-delay: 0.4s;
}

.menu-item:nth-of-type(3) {
  animation-delay: 0.6s;
}
.menu-item:nth-of-type(4) {
  animation-delay: 0.8s;
}
.menu-item:nth-of-type(5) {
  animation-delay: 0.9s;
}
.menu-item:nth-of-type(6) {
  animation-duration: 0.95s;
}
.menu-item:nth-of-type(7) {
  animation-duration: 1.0s;
}

@media screen and (min-width: 992px) {
	.drawerMenu {
        display: none;
	}
}

/*----------------------------------------------------
               ポップアップ・アラート
----------------------------------------------------*/
.modal {
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}
/* アラート */
.modal__content_dialog {
    background: #fff;
    left: 50%;
    padding: 0px;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 90%;
    max-width: 600px;
    max-height: 80%;
    height: auto;
    border-radius: 10px;
    /* overflow-y: auto; */
}

.aleBd {
    border: 1px solid #777777;
}

.verBd {
    border: 1px solid #777777;
}

.modal__bg_dialog {
    background: rgba(0,0,0,0.5);
    height: 100vh;
    position: absolute;
    width: 100%;
    cursor: pointer;
}

.dialogArea {
    padding: 20px;
    font-size: 16px;
}

.flexWrap2 {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

p.manText {
    font-size: 15px;
    padding: 0px 0 60px;
    margin-bottom: 10px;
    color: #000000;
    text-align: center;
    overflow: auto;
    max-height: 48vh;
    font-weight: bold;
}

.dialogWrap {
    display: flex;
    padding: 0px 10px 0;
    border: 2px solid #03a9f4;
    margin-bottom: 20px;
    height: 150px;
}

.cautionIconArea {
    padding: 20px 15px;
    width: 20%;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .cautionIconArea img {
        width: 35px;
        height: auto;
        display: block;
    }

.cautionTextArea {
    font-size: 13px;
    padding: 20px 10px;
    display: grid;
    justify-content: left;
    text-align: left;
    align-items: center;
    place-items: center;
    overflow-y: auto;
    max-height: 148px;
    width: 80%;
    color: #333;
}
@media screen and (min-width: 992px) {
	.cautionTextArea {
        font-size: 15px;
	}
}


.cautionTextArea2 {
    font-size: 13px;
    padding: 20px 10px;
    display: grid;
    justify-content: center;
    text-align: center;
    align-items: center;
    place-items: center;
    overflow-y: auto;
    max-height: 148px;
    width: 100%;
    color: #333;
}

.verBG {
    border: 1px solid var(--color-logo);
    background: #f4f4f4;
}
.cauBG {
    border: 1px solid #f8a841;
    background: #f4f4f4;
}
.aleBG {
    border: 1px solid #c95d57;
    background: #f4f4f4;
}

.popUpButton001 {
	background: var(--color-font-base2);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 45px;
	padding: 5px;
	font-size: 14px;
	border-radius: 0;
	text-decoration: none;
	color: #fff;
	margin: 10px 10px 0px;
	transition: all .3s ease;
	font-weight: 600;
	/* padding-right: 20px; */
	position: relative;
	border-radius: 30px;
	letter-spacing: 0.1em;
	cursor: pointer;
	top: auto;
	right: auto;
	filter: none;
	border: none;
}

    .popUpButton001:hover {
        opacity: .9;
    }

.popUpButton002 {
	background: var(--color-logo);
	display: flex;
	justify-content: center;
	align-items: center;
	width: 200px;
	height: 45px;
	padding: 5px;
	font-size: 14px;
	border-radius: 0;
	text-decoration: none;
	color: #fff;
	margin: 10px 10px 0px;
	transition: all .3s ease;
	font-weight: 600;
	/* padding-right: 20px; */
	position: relative;
	border-radius: 30px;
	letter-spacing: 0.1em;
	cursor: pointer;
	top: auto;
	right: auto;
	filter: none;
	border: none;
}

.popUpButton002:hover {
    opacity: .9;
}

