﻿@charset "UTF-8";

/*
Theme Name: ふるさと納税WEBシステム(ECサイト) （スマホ時ヘッダー固定）
Version: 1.1
*/

/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
	--color-bg-base: #f3fafb;
	--color-bg-base2: #f6fcff;
	--color-bg-base3: #ecf9fb;
	--color-bg-base3_2: #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: 740px) {
    :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: 740px) {
    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.7;
}

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: 740px) {
    body {
        font-size: 18px;
    }
}

p {
    font-size: 13px;
}
@media screen and (min-width: 740px) {
    p {
        font-size: 15px;
    }
}

.l-page-top_wrap {
	text-align: right;
}
@media screen and (min-width: 740px) {
    .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: 740px) {
    .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;
}
.pt100 {
	padding-top: 100px !important;
}
.pt150 {
	padding-top: 150px !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;
}
.mw550 {
	max-width: 550px!important;
    margin: 0 auto;
}
.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: 740px) {
    .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: 740px) {
  .sp_only {
    display: none !important;
  }
}
/* PC（タブレット）だけ表示 */
@media screen and (max-width: 739px) {
  .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); */
    }
}

/* input（general）*/

.c_form_wrap {
    padding: 0 5px;
    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: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c_form_wrap {
	        max-width: 800px;
	}
}

.tf-c-form__row {
	margin: 0 auto 24px;
	padding: 0 0 0 10px;
}
@media (min-width: 576px) {
	.tf-c-form__row {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.tf-c-form__row {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.tf-c-form__row {
	        max-width: 800px;
	}
}

.tf-c-form__label {
	word-wrap: break-word;
	display: flex;
	margin-top: 1em;
	margin-bottom: .3em;
	color: var(--color-font-base);
	font-size: 14px;
	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 #c6c5c5;
	border-radius: 5px;
	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;
	justify-content: center;
	align-items: center;
	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: 15px;
	line-height: 1.7;
	letter-spacing: 0.3em;
	font-weight: 600;
	cursor: pointer;
}
.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: 15px;
	line-height: 1.7;
	letter-spacing: 0.3em;
	font-weight: 600;
	cursor: pointer;
	justify-content: center;
	align-items: center;
}



/* タイトル共通 */
.c-title-level2,
.c-title-level3,
.c-title-level3_2,
.c-title-level3_3,
.c-title-level3_4,
.c-title-level3_5 {
    font-weight: bold;
}

/*! 見出し2 */
.c-title-level2 {
    font-size: 16px;
    color: var(--color-icon);
    margin: 5px auto 5px;
    width: fit-content;
    /* border-bottom: 1px solid var(--color-icon); */
}
@media screen and (min-width: 740px) {
    .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;
    letter-spacing: 0.1em;
    z-index: 1;
}
@media screen and (min-width: 740px) {
    .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;
}
/*! 見出し3 */
.c-title-level3_2 {
	font-size: 16px;
	color: var(--color-font-base);
	display: block;
	position: relative;
	padding: 0 0 10px;
	border-bottom: 1px solid var(--color-border);
	z-index: 1;
}
@media screen and (min-width: 992px) {
    .c-title-level3_2 {
        font-size: 16px;
        padding: 0 5px 10px;
    }
}

/*! 見出し3 */
.c-title-level3_3 {
	font-size: 16px;
	color: var(--color-font-base);
	display: block;
	position: relative;
	padding: 0;
	z-index: 1;
	line-height: 1.5em;
}
@media screen and (min-width: 740px) {
    .c-title-level3_3 {
        font-size: 18px;
        padding: 0;
    }
}

/*! 見出し3 */
.c-title-level3_4 {
	font-size: 16px;
	color: var(--color-font-base);
	display: block;
	position: relative;
	padding: 0;
	z-index: 1;
	line-height: 1.5em;
	border-bottom: 1px solid #dcdcdc;
	padding: 5px 0 8px;
	margin-bottom: 0px;
}
@media screen and (min-width: 740px) {
    .c-title-level3_4 {
        font-size: 16px;
        padding: 5px 0 8px;
    }
}
/*! 見出し3 */
.c-title-level5 {
	font-size: 12px;
	color: var(--color-font-base);
	display: block;
	margin: 0px;
	padding: 0px;
	position: relative;
	letter-spacing: 0.1em;
	width: 100%;
	line-height: 1.5;
}
@media screen and (min-width: 740px) {
    .c-title-level5 {
        font-size: 13px;
    }
}


/* ------------------------------ */
/* コンテナ */
/* ------------------------------ */

.l-container_wide {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.main {
    position: relative;
    padding: 0 0 150px;
}
.l-section {
    padding: 20px 15px 80px;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
.l-section2 {
    padding: 50px 15px 50px;
    border-bottom: 0px solid var(--color-border);
    position: relative;
}

/* セクション背景　001 */
.bg_setciton001 {
    background: var(--color-bg-light);
}

/* セクション背景　002 */
.bg_setciton002 {
    background: var(--color-bg-base4);
}

/* セクション背景　003 */
.bg_setciton003 {
    background: linear-gradient(to bottom, #e2f5f7 0%,#ecf9fb 30%,#e2f5f7 100%);
}
/* セクション背景　004 */
.bg_setciton004 {
    background: var(--color-bg-base3);
}
/* セクション背景　005 */
.bg_setciton005 {
    background: var(--color-bg-base6);
}



/* ------------------------------ */
/* header */
/* ------------------------------ */

/*.header {
	background-color: var(--color-bg-light);
	position: relative;
	top: 0;
	left: auto;
	width: 100%;
	height: 70px;
	box-shadow: 0 1px 10px -3px rgba(29, 131, 210, 0.2);
	transition: all 0.35s ease;
	z-index: 999;
}
@media screen and (min-width: 992px) {
    .header {
        max-width: 460px;
    }
}*/

.header {
	background-color: var(--color-bg-light);
	position: sticky;
	top: 0;
	left: auto;
	width: 100%;
	height: 70px;
	box-shadow: 0 1px 10px -3px rgba(29, 131, 210, 0.2);
	transition: all 0.35s ease;
	z-index: 999;
}
@media screen and (min-width: 992px) {
    .header {
        position: relative;
        max-width: 460px;
    }
}


.header-inner {
    height: 70px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: flex-end;
}

.header-logo {
	width: auto;
	font-weight: bold;
	font-size: 22px;
	color: var(--color-logo);
	position: relative;
	z-index: 10;
	letter-spacing: 0.05em;
	margin-left: 20px;
	flex: 1;
}
@media screen and (min-width: 740px) {
    .header-logo {
        font-size: 21px;
    }
}

.header-logo svg {
    fill: var(--color-logo);
}

.header-logo-link {
    display: block;
    pointer-events: none;
    transition: 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: 740px) {
    .header-logo-img {
        height: 25px;
    }
}


/* ------------------------------ */
/* footer */
/* ------------------------------ */

.footer {
	position: relative;
	z-index: 0;
	padding-top: 70px;
	overflow: hidden;
}
@media screen and (min-width: 740px) {
    .footer {

    }
}

.footer_innerWrap {
	background: var(--color-bg-base3_2);
	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;
	padding-top: 100px;
	text-align: center;
	position: relative;
}

.footer_innerWrap::before {
	position: absolute;
	content: "";
	display: block;
	width: 60px;
	height: 60px;
	background-color: transparent;
	background-image: url(../img/icon.svg);
	background-repeat: no-repeat;
	background-size: contain;
	top: -28px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 1;
}


.footer-inner {
	padding: 0;
}


.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: 740px) {
    .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-image: url("test.jpg");
	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-icon);
		border-right: 1px solid var(--color-icon);
		box-shadow: 0 0 10px -5px rgb(90 90 90 / 50%);
	}
}*/

.l-content {
	width: 100%;
	margin: 0 auto;
	position: relative;
	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-icon);
		border-right: 1px solid var(--color-icon);
		box-shadow: 0 0 10px -5px rgb(90 90 90 / 50%);
		overflow: hidden;
	}
}

.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: 140px;
        height: auto;
        vertical-align: middle;
        display: inline;
        text-align: left;
    }
    .header__nav {
		margin-top: 20px;
		padding-left: 20px;
	}
    .header__list {
	    list-style: none;
    }
    .header__item {
	    width: 160px;
	    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: 12px;
	    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: 5px;
	        opacity: 1;
        }
}
@media screen and (min-width: 1200px) {
	.aside-menu {
		font-size: 30px;
	}
	.middle-logo-img {
        width: 200px;
    }
    .header__item {
	    width: 190px;
	   }
	.header__link {
		font-size: 15px;
	}
}

@media screen and (min-width: 992px) {
    .aside-menu_inner {
		margin-left: 60px;
		/* width: 100%; */
	}
}

@media screen and (min-width: 1200px) {
    .aside-menu_inner {
		margin-left: 50px;
	}
}

.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, #ecf9fb 0%,#ecf9fb 50%,#e2f5f7 100%); */
		background-color: #e2f5f7;
		justify-content: center;
		padding: 60px;
		z-index: 0;
	}
}
.aside-qrcode_inner {
    padding-top: 20px;
    padding-right: 50px;
}

.m-general_text {
    margin: 0 0 10px;
    color: var(--color-icon);
    font-weight: 600;
    font-size: 12px;
}
.icon_mobile {
    margin-right: 10px;
    font-size: 20px;
    vertical-align: text-bottom;
}
 /* PC固定エリア */
.l-fixed_area_wrap {
    position: relative;
    border: 1px solid var(--color-icon);
    width: 100%;
    height: 100%;
    border-radius: 100px;
    background: var(--color-bg-light);
}


/* ------------------------------ */
/* 「自治体」ページ */
/* ------------------------------ */
/*.l-top {
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}*/

.l-top {
	padding: 0;
	border-bottom: 1px solid var(--color-border);
	position: relative;
	overflow: hidden;
}

@media screen and (min-width: 740px) {
    .l-top {
        padding: 0;
    }
}

.c-hero-area_wrap {
	padding: 50px 0 20px;
	position: relative;
    margin: 0 auto;
}
@media (min-width: 576px) {
	.c-hero-area_wrap {
		max-width: 540px;
	}
}
@media screen and (min-width: 740px) {
    .c-hero-area_wrap {
        max-width: 700px;
    }
}

@media screen and (min-width: 992px) {
    .c-hero-area_wrap {
        max-width: 800px;
    }
}
/*.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: 0px 15px;
	z-index: 2;
	margin-bottom: 50px;
}
.c-hero-area_wrap_flex::before {
	content: "";
	position: absolute;
	top: 15px;
	left: -13px;
	width: 65px;
	height: 65px;
	border-radius: 50%;
	background-color: var(--color-bg-base5);
	z-index: 0;
}
.c-hero-area_wrap_flex::after {
	content: "";
	position: absolute;
	bottom: -50px;
	right: -13px;
	width: 100px;
	height: 100px;
	border-radius: 50%;
	background-color: var(--color-bg-base5);
	z-index: 0;
}

.m-helo-area_text {
	width: auto;
	letter-spacing: .08em;
	top: 0;
	margin: 0;
	transform: translateY(0%);
	position: relative;
	background: var(--color-bg-light);
	padding: 16px 8px;
	border-radius: 5px;
	border: 1px solid #bce2eb;
	z-index: 1;
	box-shadow: 0 1px 10px rgba(29, 131, 210, 0.2);
}


.c-helo-area_text {
    padding: 0;
    font-weight: 500;
    font-size: 12px;
    color: var(--color-font-light);
}
@media screen and (min-width: 740px) {
    .c-helo-area_text {
        font-size: 11px;
    }
}
@media screen and (min-width: 992px) {
    .c-helo-area_text {
        font-size: 13px;
    }
}

.t_top_text {
    padding-bottom: 10px;
}

/* ギャラリー */
.m-gallery_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.gallery_item {
    padding: 0;
    width: calc(100% / 2 - 16px);
    background-color: #fff;
    margin: 0px 8px 20px;
    /* border: 1px solid #ccc; */
    overflow: hidden;
}

.gallery-img_wrap {
	display: block;
	width: 100%;
	height: 110px;
	overflow: hidden;
	/* background-image: url(../img/loading001.svg); */
	background-color: #fff;
	background-repeat: no-repeat;
	background-position: center;
	background-size: 25px;
	border-radius: 3px;
	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.soldout::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	content: "取り扱い停止中";
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	background-color: rgba(0, 0, 0, 0.7);
}


.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: 12px;
    padding: 5px 2px 0;
    line-height: 1.5em;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
    transition: all .5s;
    font-weight: 600;
}
@media screen and (min-width: 992px) {
    .gallery-shop_name {
        font-size: 13px;
        padding: 5px 2px 0;
    }
}
.gallery_item_link:hover .gallery-pro_explanation {
	color: var(--color-icon);
}
.gallery_item_link:hover .gallery-pro_price {
	color: var(--color-icon);
}
.gallery_item_link:hover .gallery-shop_name {
	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: 11px;
	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;
}


/* 一覧ページ送り */
.pagination_base {
	border-top: 1px solid var(--color-border);
	margin: 0px 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);
}

/* CTAボタン */
.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;
}

.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;
}

/* カテゴリで絞り込む */
.c-categoryForm_wrap {
	background: #fff;
	padding: 20px 20px;
	margin: 0px auto 30px;
	font-size: 14px;
	border: 1px solid #cbc2bd;
	border-radius: 10px;
	font-weight: normal;
	color: var(--color-font-base);
}
.c-hero-area_wrap {
	padding: 50px 0 20px;
	position: relative;
    margin: 0 auto;
}
@media (min-width: 576px) {
    .c-categoryForm_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
    .c-categoryForm_wrap {
        max-width: 670px;
    }
}

@media screen and (min-width: 992px) {
    .c-categoryForm_wrap {
        max-width: 800px;
    }
}
.tf-categoryForm__row {
	margin-bottom: 24px;
}
.checkWrap {
	margin-bottom: 10px;
}
.checkBox_class {
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%);
	margin: -1px;
}
.checkbox01 {
	cursor: pointer;
	display: inline-block;
	padding: 6px 4px 0px 35px;
	position: relative;
	width: auto;
	font-size: 13px;
	font-weight: 600;
	color: var(--color-font-base);
	border-radius: 3px;
	vertical-align: middle;
	line-height: 1.75;
}
.checkbox01::before {
	background: #fff;
	border: 1px solid #cbc2bd;
	border-radius: 3px;
	content: '';
	display: block;
	height: 22px;
	width: 22px;
	left: 6px;
	margin-top: 0;
	position: absolute;
	top: 5px;
	box-shadow: inset 0 0 3px 0px #d8c6c6;
}
.checkbox01::after {
	border-right: 4px solid var(--color-icon);
	border-bottom: 4px solid var(--color-icon);
	content: '';
	display: block;
	height: 10px;
	left: 13px;
	margin-top: -16px;
	position: absolute;
	opacity: 0;
	top: 24px;
	transform: rotate(45deg) translate3d(0,2px,0) scale3d(.7,.7,1);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
	width: 4px;
	box-sizing: content-box;
}
input[type=checkbox]:checked + .checkbox01::after {
	opacity: 1;
	transform: rotate(45deg) scale3d(1,1,1);
}
.tf-c-categoryForm-button_wrap {
	padding: 30px 0;
	text-align: center;
}
.tf-c-categoryForm-button {
	display: inline-flex;
	justify-content: center;
	align-items: center;
	min-width: 120px;
	margin: 0 auto;
	padding: 10px 20px;
	border: none;
	border-radius: 5px;
	outline: none;
	background-color: var(--color-icon);
	color: var(--color-bg-light);
	font-size: 12px;
	line-height: 1.7;
	letter-spacing: 0.1em;
	font-weight: 600;
	cursor: pointer;
}
.tf-c-categoryForm-button:hover {
    opacity: 1;
    background-color: var(--color-bg-button);
}

/* ------------------------------ */
/* 「店舗」ページ */
/* ------------------------------ */
.l-fv {
    padding: 0;
    border-bottom: 1px solid var(--color-border);
    position: relative;
}
@media screen and (min-width: 740px) {
    .l-fv {
        padding: 0;
    }
}




.l-fv_wrapper {
	padding: 0 0 50px 20px;
}
@media screen and (min-width: 992px) {
    .l-fv_wrapper {
        padding: 0 0 50px 0px;
    }
}
.l-fv_img_wrapper {
    overflow: hidden;
    position: relative;
    background-color: var(--color-border);
    z-index: 1;
    border-radius: 5px 0 0 0;
}
@media screen and (min-width: 992px) {
    .l-fv_img_wrapper {
        border-radius: 0px 0 0 0;
    }
}


.l-fv_img {
	max-width: 100%;
	width: 100%;
	height: auto;
	object-fit: contain;
	will-change: opacity;
	border-radius: 5px 0 0 0;
	transition: opacity .0s ease-in-out;
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 500px) {
    .l-fv_img {
        /* height: 300px; */
    }
}
@media screen and (min-width: 600px) {
    .l-fv_img {
        /* height: 400px; */
    }
}
@media screen and (min-width: 740px) {
    .l-fv_img {
        /* height: 500px; */
    }
}
@media screen and (min-width: 992px) {
    .l-fv_img {
        /* height: 300px; */
        border-radius: 0;
    }
}

.l-fv_title_wrap {
	position: relative;
	margin-top: 0;
	margin-right: 10%;
	background-color: var(--color-bg-light);
	z-index: 5;
	padding: 18px 15px 20px 1px;
	border-radius: 0 5px 0 0;
}
@media screen and (min-width: 992px) {
    .l-fv_title_wrap {
		padding: 18px 15px 20px 15px;
		}
}

.l-fv_title_wrap::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 7px;
	background-color: #60c2d8;
	z-index: 0;
}


.m-block_wrap {
    padding: 5px 0 0;
    position: relative;
    z-index: 1;
}
@media screen and (min-width: 992px) {
    .m-block_wrap {
        padding: 5px 15px 0;
    }
}
.m-list_detail {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    font-size: 12px;
}
@media screen and (min-width: 992px) {
    .m-list_detail {
        font-size: 12px;
    }
}

.m-list_detail dt {
    width: 75px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 25px;
    line-height: 1;
    padding: 0px;
    border: 1px solid #d2d2d2;
    margin-bottom: 10px;
    font-weight: 600;
    border-radius: 1px;
    background: var(--color-bg-base4);
}
@media screen and (min-width: 992px) {
    .m-list_detail dt {
        padding: 0px;
        height: 27px;
    }
}
.m-list_detail dd {
	width: calc(100% - 75px);
	padding: 0px 10px;
	padding-left: 15px;
	display: grid;
	height: auto;
	line-height: 1.2;
	justify-content: flex-start;
	place-items: center;
	margin-bottom: 10px;
}
@media screen and (min-width: 992px) {
    .m-list_detail dd {
        padding-left: 15px;
    }
}

.c-map_wrap {
	background: #fff;
	padding: 15px 15px 20px;
	margin: 0px auto 30px;
	font-size: 14px;
	border: 1px solid #cbc2bd;
	border-radius: 10px;
	font-weight: normal;
	color: var(--color-font-base);
}
@media (min-width: 576px) {
    .c-map_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
    .c-map_wrap  {
        max-width: 670px;
    }
}

@media screen and (min-width: 992px) {
    .c-map_wrap  {
        max-width: 800px;
    }
}
.map_wrap {
    width: 100%;
    height: 400px;
    margin-bottom: 20px;
}

/* ------------------------------ */
/* 「返礼品詳細」ページ */
/* ------------------------------ */
.l-fv_wrapper2 {
	padding: 0 0 50px 0px;
}
@media screen and (min-width: 992px) {
    .l-fv_wrapper_gift {
    }
}
.l-fv_img_wrapper_gift  {
	overflow: hidden;
	position: relative;
    background-color: var(--color-border);
	z-index: 1;
	border-radius: 0;
}
.l-fv_title_wrap_gift {
	position: relative;
	background-color: var(--color-bg-light);
	z-index: 5;
	padding: 15px 15px 15px;
}
.l-fv_img_gift {
	max-width: 100%;
	width: 100%;
	height: 250px;
	object-fit: cover;
	will-change: opacity;
	border-radius: 0;
	transition: opacity .0s ease-in-out;
	position: relative;
	z-index: 1;
}
@media screen and (min-width: 500px) {
    .l-fv_img_gift {
        height: 300px;
    }
}
@media screen and (min-width: 600px) {
    .l-fv_img_gift {
        height: 400px;
    }
}
@media screen and (min-width: 740px) {
    .l-fv_img_gift {
        height: 500px;
    }
}
@media screen and (min-width: 992px) {
    .l-fv_img_gift {
        height: 300px;
        border-radius: 0;
    }
}

.c-donation-area_wrap {
	padding: 15px 15px;
	position: relative;
	/*overflow: hidden;*/
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-donation-area_wrap {
		max-width: 540px;
	}
}
@media screen and (min-width: 740px) {
	.c-donation-area_wrap {
	        max-width: 700px;
	}
}

@media screen and (min-width: 992px) {
	.c-donation-area_wrap {
	        max-width: 800px;
	}
}


.c-donation-area_wrap_block {
	width: 100%;
	position: relative;
	height: auto;
	padding: 40px 20px 0;
	z-index: 2;
	background-color: var(--color-bg-light);
	border-radius: 10px;
	box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
.m-city {
	padding: 2px 5px;
	font-size: 11px;
	background-color: var(--color-border);
	margin-bottom: 7px;
	display: inline-block;
	font-weight: 600;
}

.c-donation-amount_wrap {
    padding: 0;
}

.c-donation-amount_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.c-donation-amount_flex:not(:last-child)  {
	margin-bottom: 5px;
	border-bottom: 1px solid #dcdcdc;
}
.donation-amount_item {
    padding: 10px 10px;
    font-size: 14px;
    font-weight: 600;
}
@media screen and (min-width: 740px) {
    .donation-amount_item {
        font-size: 16px;
    }
}

.donation-amount_item_left {
    width: 100px;
}
.donation-amount_item_right {
    width: calc(100% - 100px);
    text-align: right;
    font-size: 16px;
}
@media screen and (min-width: 740px) {
    .donation-amount_item_right {
        font-size: 18px;
    }
}

.donation-amount_en {
	font-size: 10px;
	margin-left: 5px;
}
@media screen and (min-width: 740px) {
    .donation-amount_en {
        font-size: 12px;
    }
}

.c-line {
    align-items: center;
    display: flex;
    height: 100%;
    border-right: 1px solid #dcdcdc;
}

.selectArea {
	width: 100%;
}
.selectWrap {
	font-size: 16px;
	position: relative;
	display: block;
}
.selectWrap:before {
	content: "";
	position: absolute;
	top: 11px;
	bottom: auto;
	margin: auto;
	right: 10px;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-font-base);
	border-right: 2px solid var(--color-font-base);
	transform: rotate(135deg);
	pointer-events: none;
	z-index: 1;
}
@media screen and (min-width: 740px) {
    .selectWrap:before {
	top: 12px;
	right: 13px;
	/* width: 5px; */
	/* height: 5px; */
	}
}
.sentakuPtn001 {
	background: #fff;
	padding: 2px 10px 2px 10px;
	width: 65px;
	border-radius: 5px;
	border: 1px solid #c6c5c5;
	cursor: pointer;
	outline: none;
	font-size: 16px;
	font-weight: normal;
	color: var(--color-font-base);
	text-align: left;
	font-family: 'Poppins',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
	/*box-shadow: 0px 2px 0px 0px var(--color-border2);*/
}
@media screen and (min-width: 740px) {
    .sentakuPtn001 {
	font-size: 16px;
	padding: 3px 10px 3px 15px;
	width: 75px;
	}
}

.c-button_area_gift {
    padding: 50px 0 10px;
}

.datail_inner {
    padding: 30px 5px 0;
    margin: 0 auto;
}
@media (min-width: 576px) {
	.datail_inner {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.datail_inner {
	        max-width: 670px;
	}
}

@media screen and (min-width: 992px) {
	.datail_inner {
	        max-width: 800px;
	}
}

.detail_span {
	padding-left: 15px;
	border-left: 5px solid var(--color-icon);
}
.detail_content {
    font-size: 13px;
    padding: 20px 10px 30px;
    line-height:1.55em;
}
@media screen and (min-width: 740px) {
    .detail_content {
	font-size: 13px;
	}
}

/* フォトギャラリー */
/* 商品ページ（slick） */

.slickWrapGallery {
	width: 100%;
	padding: 0;
	margin: 0px auto;
	overflow: hidden;
}

.thumbnail-slider li {
	width: calc(100% / 5 - 4px) !important;
	margin-right: 5px;
	margin-bottom: 5px;
	padding: 0px;
}
.thumbnail-slider li:nth-child(5n) {
	margin-right: 0;
}

.thumbnail-slider .slick-track {
  transform: none !important;
  width:100% !important;
}

.main-slider {
  list-style: none;
}

.thumbnail-slider {
  list-style: none;
}

.thumbnail-slider {
  margin: 5px 5px 0;
}

.main-slider img,
.thumbnail-slider img{
  width: 100%;
}
.slick-prev, 
.slick-next {
    position: absolute;
    z-index: 3;
    top: 47%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    /* border-top: 2px solid #fff; *//*矢印の色*/
    /* border-right: 2px solid #fff; *//*矢印の色*/
    height: 50px !important;
    width: 30px !important;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: 2.5% !important;
    /* transform: rotate(-135deg); */
    background: url(../img/prev3.svg) no-repeat 100% center !important;
    filter: drop-shadow(0px 0px 1px #555);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: 2.5% !important;
    /* transform: rotate(45deg); */
    background: url(../img/next3.svg) no-repeat !important;
    filter: drop-shadow(0px 0px 1px #555);
}
.slick-prev:before, .slick-next:before {
	content: '' !important;
}
.slick-disabled {
	display: none !important;
}
.main-slider li img {
	border-radius: 0;
	object-fit: contain;
	object-position: top center;
	height: 255px;
}
@media screen and (min-width: 380px) {
    .main-slider li img {
		height: 270px;
		}
}
@media screen and (min-width: 400px) {
    .main-slider li img {
		height: 280px;
		}
}
@media screen and (min-width: 450px) {
    .main-slider li img {
		height: 330px;
		}
}
@media screen and (min-width: 500px) {
    .main-slider li img {
		height: 360px;
		}
}
@media screen and (min-width: 550px) {
    .main-slider li img {
		height: 380px;
		}
}
@media screen and (min-width: 600px) {
    .main-slider li img {
		height: 430px;
		}
}
@media screen and (min-width: 700px) {
    .main-slider li img {
		height: 500px;
		}
}
@media screen and (min-width: 750px) {
    .main-slider li img {
		height: 515px;
		}
}
@media screen and (min-width: 800px) {
    .main-slider li img {
		height: 550px;
		}
}
@media screen and (min-width: 850px) {
    .main-slider li img {
		height: 590px;
		}
}
@media screen and (min-width: 900px) {
    .main-slider li img {
		height: 630px;
		}
}
@media screen and (min-width: 950px) {
    .main-slider li img {
		height: 650px;
		}
}
@media screen and (min-width: 992px) {
    .main-slider li img {
		height: 310px;
    }
}

.thumbnail-slider li img {
	border-radius: 0px;
	height: 61px;
	object-fit: cover;
	background: #fff;
	border: 1px solid #fff;
	cursor: pointer;
	transition: all .2s ease-out;
	opacity: 1;
	outline: none;
	padding: 3px;
}
.thumbnail-slider li img:hover {
    opacity: .8;
    outline: none;
}
.thumbnail-slider li.slick-active img {
	border: 1px solid var(--color-bg-dark);
}
.thumbnail-slider li img:focus {
    outline: none;
}
li.slick-slide {
	/* min-height: 550px; */
	background: #fff;
	/* border: 0px solid #e2f5f7; */
	overflow: hidden;
	/* display: flex !important; */
	transition: border  0.35s ease;
}
li.slick-slide:focus {
    outline: none;
}
.slick-active {
	box-shadow: 0 0 0 0px #ccc;
	border-radius: 2px;
}



/*----------------------------------------------------
               ステップ式
----------------------------------------------------*/

.header_step {
	background-color: var(--color-bg-light);
	position: relative;
	top: 0;
	left: auto;
	width: 100%;
	height: 100px;
	box-shadow: 0px 3px 10px -10px rgba(0,0,0,0.5);
	transition: all 0.35s ease;
	z-index: 999;
}
.l-steps_wrap {
    margin: 0 auto;
    padding: 15px 0 0;
    max-width: 360px;
}
@media screen and (min-width: 992px) {
    .l-steps_wrap {
		max-width: 440px;
    }
}
.flow_step {
	display: flex;
	margin: 0;
	padding: 0;
	list-style-type: none;
	counter-reset: flow_step-counter;
	justify-content: center;
	align-items: center;
}
.flow_step__item {
	font-size: 13px;
	line-height: 1.2em;
	position: relative;
	width: auto;
	text-align: center;
	color: #53aec2;
	flex: 1 0 0;
}
.flow_step__item::before {
	font-size: 16px;
	font-weight: 600;
	line-height: 34px;
	display: block;
	width: 34px;
	height: 34px;
	margin: 0 auto 7px;
	content: counter(flow_step-counter);
	counter-increment: flow_step-counter;
	text-align: center;
	color: #60c2d8;
	border: 2px solid #60c2d8;
	border-radius: 50%;
	background-color: #fff;
}
.flow_step__item:not(:last-child)::after {
	position: absolute;
	top: 0;
	left: 100%;
	display: block;
	margin-top: 14px;
	margin-left: -11px;
	width: 22px;
	height: 6px;
	content: '';
	background-image: url(../img/arrow.svg);
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}
.flow_step__item.flow_step__item--current::before {
	color: #fff;
	background-color: #60c2d8;
}
.flow_step__item--current {
	font-weight: 600;
}



/*----------------------------------------------------
               返礼品確認
----------------------------------------------------*/
.c-gift_confirmation_wrap {
	padding: 0 0 50px;
	position: relative;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-gift_confirmation_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-gift_confirmation_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-gift_confirmation_wrap {
	        max-width: 800px;
	}
}
/*.c-gift_confirmation_wrap::after {
	border: solid #60c2d8;
	border-width: 0px 0 5px 5px;
	content: "";
	display: inline-block;
	margin: auto;
	position: absolute;
	bottom: 60px;
	right: 50%;
	transform: rotate(-45deg);
	width: 20px;
	height: 20px;
}*/

.c-gift_confirmation_wrap_block {
	width: 100%;
	position: relative;
	height: auto;
	padding: 15px 15px;
	margin-bottom: 15px;
	z-index: 2;
	background-color: var(--color-bg-light);
	/* border-radius: 5px; */
	box-shadow: 0 3px 10px rgba(29, 131, 210, 0.2);
	border: 1px solid var(--color-bg-dark);
}
.c-gift_confirmation_wrap_inner {
	padding: 0px;
	margin: 10px 0;
}
.c-gift_confirmation_flex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.c-gift_confirmation_flex:not(:last-child) {
	margin-bottom: 3px;
	border-bottom: 1px solid #dcdcdc;
}

.gift_confirmation_item {
    padding: 2px 10px 4px;
    font-size: 11px;
    font-weight: 600;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
@media screen and (min-width: 740px) {
    .gift_confirmation_item {
        font-size: 13px;
        padding: 6px 10px 8px;
    }
}

.gift_confirmation_item_left {
    width: auto;
}
.gift_confirmation_item_right {
    width: auto;
    text-align: right;
    font-size: 13px;
}
@media screen and (min-width: 740px) {
    .gift_confirmation_item_right {
        font-size: 16px;
    }
}

.gift_confirmation_en {
	font-size: 10px;
	margin-left: 5px;
	margin-bottom: -1px;
}
@media screen and (min-width: 740px) {
    .gift_confirmation {
        font-size: 12px;
    }
}

.c-line_gift {
	display: block;
	border-right: 1px solid #dcdcdc;
	width: 70px;
}

.selectArea_gift {
	width: 100%;
}
.selectWrap_gift {
	font-size: 16px;
	position: relative;
	display: block;
}
.selectWrap_gift:before {
	content: "";
	position: absolute;
	top: 9px;
	bottom: auto;
	margin: auto;
	right: 10px;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-font-base);
	border-right: 2px solid var(--color-font-base);
	transform: rotate(135deg);
	pointer-events: none;
	z-index: 1;
}
@media screen and (min-width: 740px) {
    .selectWrap_gift:before {
	top: 12px;
	right: 13px;
	/* width: 5px; */
	/* height: 5px; */
	}
}
.sentakuPtn001_gift {
	background: #fff;
	padding: 0px 10px 0px 10px;
	width: 65px;
	border-radius: 5px;
	border: 1px solid #c6c5c5;
	cursor: pointer;
	outline: none;
	font-size: 16px;
	font-weight: normal;
	color: var(--color-font-base);
	text-align: left;
	font-family: 'Poppins',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
	/*box-shadow: 0px 2px 0px 0px var(--color-border2);*/
}
@media screen and (min-width: 740px) {
    .sentakuPtn001_gift {
	    font-size: 16px;
	    padding: 1px 10px 1px 15px;
	    width: 75px;
	}
}
.gift_header_wrap {
    display: flex;
}
.gift-img {
	max-width: 100%;
	width: 100%;
	height: auto;
	padding: 0px;
	object-fit: contain;
	border: 3px double #ddd;
	border-radius: 2px;
	background-color: var(--color-bg-light);
}
.gift_header_left {
    width: 37%;
    margin-right: 10px;
    position: relative;
}

.gift_header_left.soldout::before {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	content: "取り扱い停止中";
	color: #fff;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 12px;
	background-color: rgba(0, 0, 0, 0.7);
}




.gift_header_right {
	width: 63%;
	display: flex;
	flex-wrap: wrap;
	align-content: flex-start;
}
.m-city_gift {
	padding: 2px 5px;
	font-size: 11px;
	background-color: var(--color-border);
	margin-bottom: 3px;
	display: inline-block;
	font-weight: 600;
	width: 100%;
}
@media screen and (min-width: 740px) {
    .m-city_gift {
		font-size: 11px;
		margin-bottom: 5px;
	}
}

.c-delete_btn_flex_wrap {
    display: flex;
    justify-content: center;
    color: var(--color-bg-button);
    font-weight: 600;
}
.c-delete_btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.dli-close_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--color-bg-button);
}
.dli-close {
  display: inline-block;
  vertical-align: middle;
  color: var(--color-bg-light);
  line-height: 1;
  width: 12px;
  height: 0.1em;
  background: currentColor;
  border-radius: 0.1em;
  position: relative;
  transform: rotate(45deg);
}
.dli-close::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: inherit;
  border-radius: inherit;
  transform: rotate(90deg);
}

.dli-close_text {
    font-size: 12px;
    padding-left: 10px;
}

.c-gift-cart_header {
	padding: 10px 0;
	margin: 0 auto 20px;
	background-color: var(--color-icon);
	background-image: linear-gradient(221deg, #84ddf2 0%, #60c2d8 30%, #7fcdde 100%);
	color: #fff;
	border-radius: 3px;
	position: relative;
	font-size: 16px;
	text-align: center;
	font-weight: 600;
	border: 1px solid #31b9d8;
	box-shadow: 1px 1px 0 #7ec0d0;
	overflow: hidden;
}
@media (min-width: 576px) {
	.c-gift-cart_header {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-gift-cart_header {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-gift-cart_header {
	        max-width: 800px;
	}
}

.c-gift-cart_header span {
	content: "";
	position: absolute;
	top: 50%;
	left: 10px;
	transform: translateY(-50%);
	background: var(--color-bg-light);
	width: 7px;
	height: 25px;
	border-radius: 0px;
}
.c-gift-cart_header:before {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.1;
	transform: rotate(-50deg);
	position: absolute;
	bottom: -10px;
	right: -330px;
	width: 500px;
	height: 500px;
}
.c-gift-cart_header:after {
	background-color: #fff;
	content: '';
	display: block;
	opacity: 0.2;
	transform: rotate(-70deg);
	position: absolute;
	bottom: -100px;
	right: -500px;
	width: 500px;
	height: 500px;
}
.noGift_class {
	text-align: center;
	padding: 30px 0;
	font-size: 14px;
	background-color: var(--color-bg-light);
	border-radius: 0px;
	box-shadow: 0 3px 10px rgba(29, 131, 210, 0.2);
	border: 1px solid var(--color-bg-dark);
	}

.c-info_area_wrap {
    background-color: var(--color-bg-light);
    padding: 15px 10px;
    border: 5px solid var(--color-icon);
    /* box-shadow: 0px 5px 0px 0px var(--color-icon); */
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto 10px;
}
@media (min-width: 576px) {
	.c-info_area_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-info_area_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-info_area_wrap {
	        max-width: 800px;
	}
}
.c-info_area_wrap_left {
}

.c-info_area_wrap_right {
}
.c-info_total_text {
    border-left: 5px solid var(--color-icon);
    padding-left: 8px;
    font-size: 14px;
    color: var(--color-logo);
    font-weight: 600;
}
.c-info_total_price {
    font-size: 35px;
    font-weight: 500;
    /* border-bottom: 1px solid var(--color-icon); */
}
.c-info_total_price_en {
    font-size: 12px;
    margin-left: 2px;
    position: relative;
    top: -1px;
    font-weight: 600;
    color: var(--color-font-base);
}

/*----------------------------------------------------
               寄付申請
----------------------------------------------------*/
.c-donation_application_wrap {
	padding: 0 0 0px;
	position: relative;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-donation_application_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-donation_application_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-gift_confirmation_wrap {
	        max-width: 800px;
	}
}

.c-donation_application_wrap_block {
	width: 100%;
	position: relative;
	height: auto;
	padding: 5px 15px;
	margin-bottom: 20px;
	z-index: 2;
	background-color: var(--color-bg-light);
	/* border-radius: 5px; */
	/* box-shadow: 0 3px 10px rgba(29, 131, 210, 0.2); */
	border: 1px solid var(--color-bg-dark);
}

.c-info_donation_application_wrap {
	background-color: var(--color-bg-light);
	padding: 25px 25px;
	border: 5px solid var(--color-bg-dark);
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto 10px;
	/* box-shadow: 0 3px 10px rgba(29, 131, 210, 0.2); */
}
@media (min-width: 576px) {
	.c-info_donation_application_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-info_donation_application_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-info_donation_application_wrap {
	        max-width: 800px;
	}
}
.c-info_donation_application_text {
	border-left: 0px solid var(--color-icon);
	padding-left: 8px;
	font-size: 16px;
	color: var(--color-font-base);
	font-weight: 600;
}
.c-info_donation_application_total_price {
	font-size: 20px;
	font-weight: 500;
}
.gift_header_wrap2 {
	display: flex;
	padding: 10px 0;
	align-items: flex-start;
}
.gift_header_wrap2:not(:last-child) {
	margin-bottom: 5px;
	border-bottom: 1px solid #dcdcdc;
}

.m-donation_detail_wrap {
    display: flex;
    width: 100%;
    justify-content: space-between;
    font-weight: 600;
    padding-top: 5px;
}

.donation_detail_wrap_left {
    width: 40%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.donation_detail_wrap_right {
    width: 40%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
.donation_detail_list {
    font-size: 10px;
    display: inline-block;
    padding: 1px 5px;
    background-color: var(--color-bg-dark3);
    color: var(--color-bg-light);
    /* border-radius: 30px; */
    letter-spacing: 0.08em;
}
@media screen and (min-width: 740px) {
.donation_detail_list {
		font-size: 12px;
		padding: 1px 8px;
	}
}
.donation_detail_price {
    font-size: 14px;
}
@media screen and (min-width: 740px) {
.donation_detail_price {
		font-size: 16px;
	}
}

.c_form_group {
    padding-bottom: 30px;
}

.selectArea_general {
	font-size: 16px;
	position: relative;
	display: block;
    width: 100%;
}
.selectWrap_general:before {
	content: "";
	position: absolute;
	top: 19px;
	bottom: auto;
	margin: auto;
	right: 10px;
	width: 7px;
	height: 7px;
	border-top: 2px solid var(--color-font-base);
	border-right: 2px solid var(--color-font-base);
	transform: rotate(135deg);
	pointer-events: none;
	z-index: 1;
}
@media screen and (min-width: 740px) {
.selectWrap_general:before {
	top: 19px;
	right: 13px;
	/* width: 5px; */
	/* height: 5px; */
	}
}
.sentakuPtn001_general {
	background: #fff;
	padding: 0px 10px 0px 15px;
	width: 100%;
	height: 50px;
	border-radius: 5px;
	border: 1px solid #c6c5c5;
	cursor: pointer;
	outline: none;
	font-size: 16px;
	font-weight: normal;
	color: var(--color-font-base);
	text-align: left;
	font-family: 'Poppins',Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
	/*box-shadow: 0px 2px 0px 0px var(--color-border2);*/
}
@media screen and (min-width: 740px) {
    .sentakuPtn001_general {
	    padding: 1px 10px 1px 15px;
	}
}

.col2__wrap {
	display: flex;
}
.col2Items {
	width: auto;
}
.radio03 {
	cursor: pointer;
	display: flex;
	padding: 10px 10px 10px 32px;
	position: relative;
	width: auto;
	font-size: 14px;
	line-height: 1;
	vertical-align: middle;
	align-items: center;
}
.radio03::before {
	position: absolute;
	background: #fff;
	border: 1px solid var(--color-bg-dark2);
	border-radius: 50%;
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: inset 0px 0px 2px 1px #dcdcdc;
}
input[type=radio]:checked + .radio03::before {
	border-color: var(--color-bg-dark2);
}
.radio03::after {
	background: var(--color-icon);
	border-radius: 50%;
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	left: 10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=radio]:checked + .radio03::after {
	opacity: 1;
}

.radio04 {
	cursor: pointer;
	display: flex;
	padding: 10px 10px 10px 35px;
	position: relative;
	width: auto;
	font-size: 15px;
	line-height: 1;
	vertical-align: middle;
	align-items: center;
}
.radio04::before {
	position: absolute;
	background: #fff;
	border: 1px solid var(--color-bg-dark2);
	border-radius: 50%;
	content: '';
	display: block;
	width: 22px;
	height: 22px;
	left: 5px;
	top: 50%;
	transform: translateY(-50%);
	box-shadow: inset 0px 0px 2px 1px #dcdcdc;
}
input[type=radio]:checked + .radio04::before {
	border-color: var(--color-bg-dark2);
}
.radio04::after {
	background: var(--color-icon);
	border-radius: 50%;
	content: '';
	display: block;
	width: 12px;
	height: 12px;
	left: 10px;
	opacity: 0;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: transform .2s ease-in-out, opacity .2s ease-in-out;
}
input[type=radio]:checked + .radio04::after {
	opacity: 1;
}

.innerform_wrap {
    padding: 0px 0px 10px 0;
}
.innerform_wrap___2 {
    padding: 0px 0px 10px 7px;
}


.tf-c-form__row2 {
	/*margin-bottom: 24px;*/
	padding: 0 0 0 0px;
}

.tf-c-form__more {
	border: 1px solid #c6c5c5;
	padding: 7px 10px;
	border-radius: 5px;
}
.tf-c-form__more_item {

}
.tf-c-form__item_flex {
    display: flex;
}
.tf-c-form__item_flex___2 {
	display: flex;
	padding-left: 10px;
}

.tf_c-form__item_flex_items {
    width: calc(100% / 3 - 10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-right: 10px;
}
.tf-c-form__item_flex_items_wide {
    width: 20px;
    padding: 7px;
}

.c_infoArea_wrap {
	padding: 0 10px;
	margin: 0 auto;
	font-size: 13px;
}
@media (min-width: 576px) {
	.c_infoArea_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c_infoArea_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c_infoArea_wrap {
	        max-width: 800px;
	}
}

.yearClass {
	width: 70px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: 15px;
}

.qa-list dl {
	position: relative;
	margin: 30px 0 0;
	/* border: 1px solid var(--color-bg-dark3); */
	font-size: 14px;
}
.qa-list dl dt::after {
	position: absolute;
	top: 20px;
	right: 22px;
	display: block;
	width: 12px;
	height: 12px;
	margin: auto;
	content: '';
	transform: rotate(135deg);
	border-top: 3px solid var(--color-bg-light);
	border-right: 3px solid var(--color-bg-light);
	transition: .3s;
}
.qa-list dt.open::after {
	transform: rotate(-45deg);
	top: 24px;
}
.qa-list dl dt {
	position: relative;
	margin: 0;
	padding: 17px 20px 12px 60px;
	font-weight: bold;
	background-color: var(--color-bg-dark3);
	background-image: linear-gradient(to bottom, #959595 0%,#cccccc 75%);
	background-size: auto 200%;
	background-position: 0 0;
	color: var(--color-bg-light);
	/* border-radius: 10px; */
	box-shadow: 0px 5px 0px 0px #9f9f9f;
	cursor: pointer;
	transition: .6s ease;
}
@media screen and (min-width: 992px) {
    .qa-list dl dt:hover {
	    background-position: 0 50%;
	   }
}

.qa-list dl dt::before {
	font-size: 22px;
	line-height: 1;
	position: absolute;
	top: 9px;
	left: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	content: 'Q';
	color: var(--color-bg-dark3);
	padding: 10px;
	width: 37px;
	height: 37px;
	background-color: var(--color-bg-light);
	background-image: linear-gradient(to bottom, #ffffff 0%,#ededed 100%);
	border-radius: 50%;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
	box-shadow: inset 0px 1px 1px 0px #aaa;
}
.qa-list dl dd::before {
	font-size: 22px;
	line-height: 1;
	position: absolute;
	top: 20px;
	left: 10px;
	display: flex;
	justify-content: center;
	align-items: center;
	content: 'A';
	color: var(--color-bg-light);
	padding: 10px;
	width: 37px;
	height: 37px;
	background-color: var(--color-bg-dark3);
	border-radius: 50%;
	font-family: "Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}
.qa-list dl dd {
	position: relative;
	margin: 0;
	padding: 20px 20px 20px 60px;
	border: 1px solid var(--color-bg-dark3);
}
.qa-list dl dd p {
	margin: 0px 0 0;
	font-size: 13px;
}

 /* ラベル版設定 */
 .tf-c-form-control_lbl {
	display: block;
	width: 100%;
	min-height: 50px;
	margin: 0;
	padding: .75em .85em;
	outline: none;
	background-clip: border-box;
	background-color: #f1f1f1;
	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;
}
.generalBox {
	padding: 70px 30px 0;
	color: #FF5722;
	font-weight: 600;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.generalBox {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.generalBox {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.generalBox {
	        max-width: 800px;
	}
}

/*----------------------------------------------------
               決済完了（& 失敗）
----------------------------------------------------*/
.c-paymentType_wrap {
	padding: 0 0 0px;
	position: relative;
	margin: 0 auto;
}
@media (min-width: 576px) {
	.c-paymentType_wrap {
		max-width: 510px;
	}
}
@media screen and (min-width: 740px) {
	.c-paymentType_wrap {
	        max-width: 550px;
	}
}

@media screen and (min-width: 992px) {
	.c-paymentType_wrap {
	        max-width: 800px;
	}
}
.c-paymentType_header {
    padding: 25px 0 35px;
    text-align: center;
}
.header-logo-icon_step {
    margin: 0;
    padding: 0;
    position: relative;
    display: block;
    padding-bottom: 2px;
}
.header-logo-img_step {
    width: 190px;
    height: auto;
    vertical-align: middle;
    display: inline-block;
}
@media screen and (min-width: 740px) {
    .header-logo-img_step {
    width: 190px;
    }
}
.c-paymentType_card {
    display: inline-block;
    color: var(--color-font-light);
    font-size: 21px;
    /* border-top: 1px solid #607D8B; */
    font-weight: 600;
}

.m-paymentType_box {
	position: relative;
	padding: 15px 20px;
	border-radius: 10px;
    background-color: var(--color-bg-light);
}
.m-paymentType_box.ok {
	border: 4px solid var(--color-icon);
}
.m-paymentType_box.ng {
	border: 4px solid var(--color-font-err);
}

.m-paymentType_message_ok {
    position: relative;
    text-align: center;
    color: var(--color-font-base);
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px dashed var(--color-icon);
    padding: 10px 0 20px;
    margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
    .m-paymentType_message_ok {
	        font-size: 18px;
	   }
}
.m-paymentType_message_ng {
    position: relative;
    text-align: center;
    color: var(--color-font-err);
    font-size: 17px;
    font-weight: 600;
    border-bottom: 1px dashed var(--color-font-err);
    padding: 10px 0 20px;
    margin-bottom: 15px;
}
@media screen and (min-width: 992px) {
    .m-paymentType_message_ng {
	        font-size: 18px;
	   }
}

.m-paymentType_text {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 0px;
}
@media screen and (min-width: 992px) {
    .m-paymentType_text {
	        font-size: 14px;
	   }
}
.paymentType_errText {
    display: block;
    /* text-align: center; */
    padding-bottom: 5px;
    /* font-size: 14px; */
}
@media screen and (min-width: 992px) {
    .paymentType_errText {/* font-size: 16px; */}
}

.icon_img_wrap {
    display: inline-flex;
    align-items: center;
    margin-right: 10px;
    vertical-align: middle;
}
.icon_img {
    width: 30px;
    height: auto;
}

.supplementaryExplanation_area {
    padding: 20px 15px 15px;
    color: #000;
}
@media screen and (min-width: 992px) {
    .supplementaryExplanation_area {
	        font-size: 14px;
	   }
}
.supplementaryExplanation_link {
    color: var(--color-link-deep);
    font-weight: 600;
    /* text-decoration: underline; */
}

/*----------------------------------------------------
               多階層アコーディオン
----------------------------------------------------*/
.drawerMenu_furusato {
	width: auto;
	position: relative;
}
.gnav_furusato{
	position: relative;
	top: 0;
	padding: 0 0 0;
	z-index: 2;
}
.nav_furusato {
  margin: 0 0 20px;
  padding: 0px 0;
  list-style: none;
  font-size: 15px;
  position: relative;
  border: 1px solid var(--color-icon);
  background-color: var(--color-bg-base);
  border-radius: 10px;
  box-shadow: 0px 0px 0px 3px #c1e9ef;
  z-index: 10;
  overflow: hidden;
}

.nav-item_sub {
	display: none;
}
.largeCategory {
	margin-top: 0;
	margin-bottom: 0;
	background: var(--color-bg-light);
}

.largeCategory li {
	margin-bottom: 0;
	width: 100%;
	position: relative;
	padding: 0px 0 0px 0px;
	border-top: 1px solid var(--color-icon);
}

.mediumCategory {
	display: none;
	border-top: 1px solid var(--color-icon);
	/* background: var(--color-bg-base3_2); */
}
.mediumCategory li {
	width: 100%;
	width: calc(100% - 30px) !important;
	padding-left: 0px;
	margin-left: 20px;
	border-top: none;
}
.mediumCategory li:not(:last-of-type){
  border-bottom: 1px solid var(--color-icon);
}

.smallCategory {
	display: none;
}
.smallCategory li {
	padding-left: 1em;
	border-top: none !important;
	border-bottom: none;
}
.largeCategory > li a {
	display: inline-block;
	font-size: 14px;
	width: auto;
	margin-left: 0.5em;
}
.mediumCategory > li a {
	display: inline-block;
	border-bottom: none;
	padding: 15px 0px 15px 0px;
	margin-left: 1em;
	width: auto;
	font-size:14px;
}

.smallCategory li a {
	font-size: 12px;
	margin-left: 0;
}

.menuBtn {
	position: absolute;
	/* border: 1px solid #333; */
	z-index: 100;
	display: flex;
	width: 30px;
	height: 30px;
	justify-content: center;
	align-items: center;
	background: var(--color-link-deep);
	border-radius: 30px;
	transition: .2s ease;
	cursor: pointer;
}
.menuBtn:hover {
	background: var(--color-icon);
}
.menuBtn_one {
	top: 17px;
	right: 10px;
	/* background: #fff; */
}
.menuBtn_two {
	top: 15px;
	right: 10px;
	/* background: #eef7ff; */
}
.menuBtn_three {
	top: 8px;
	right: 0;
	/* background: transparent; */
}
.menuBtn:before {
	position: absolute;
	content: '';
	top: 14px;
	right: 9px;
	height: 2px;
	width: 12px;
	background: var(--color-bg-light);
	transform: rotate(90deg);
	transition: all .3s ease-in-out;
}
.menuBtn:after {
	position: absolute;
	content: '';
	top: 14px;
	right: 9px;
	height: 2px;
	width: 12px;
	background: var(--color-bg-light);
	transition: all .3s ease-in-out;
}
.menuBtn.open:before {
	transform: rotate(180deg);
}
.menuBtn.open:after {
	opacity: 0;
}

.menu-item_furusato {
  text-align: left;
  padding: 0;
  margin-bottom: 0px;
  line-height: normal;
  position: relative;
}
.menu-item_furusato a {
	display: inline-block;
	padding: 20px 10px 20px 12px;
	width: auto;
	text-decoration: none;
	color: var(--color-font-base3);
	font-weight: 600;
	transition: opacity 0.15s ease;
}
.menu-item_furusato a:hover {
	opacity: 1;
	text-decoration: underline;
	text-underline-offset: 5px;
}
/* リンク無効 */
.megaMenu{
	 pointer-events: none; 
}

/*----------------------------------------------------
               お知らせブロック（アコーディオン）
----------------------------------------------------*/
.qa-list2 dl {
    position: relative;
    margin: 0;
    padding: 12px 30px 12px 10px;
    cursor: pointer;
    border-bottom: 1px solid var(--color-icon);
    border-left: 1px solid var(--color-icon);
    border-right: 1px solid var(--color-icon);
    background: var(--color-bg-base4);
    line-height: 1.1em;
    transition: background 0.3s ease;
}
.qa-list2 dl:hover {
	background: #f4f1e7;
}

.qa-list2 dl:first-child {
    border-top: 1px solid var(--color-icon);
}
.qa-list2 dl::before {
    position: absolute;
    top: 30px;
    right: 15px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid var(--color-icon);
    border-right: 2px solid var(--color-icon);
}
.qa-list2 .open::before {
    transform: rotate(-45deg);
}
.qa-list2 dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 0px;
    font-weight: 600;
    color: var(--color-font-base);
    font-size: 13px;
}


.qa-list2 dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 15px 0;
    padding: 0 0 0 0px;
}
.qa-list2 dl dd p {
    margin: 30px 0px 0px 15px;
    font-size: 13px;
    padding: 15px;
    background: var(--color-bg-light);
    border: 1px solid var(--color-border2);
    box-shadow: 0 1px 2px rgba(220,225,232,.5), 0 1px 2px rgba(220,225,232,.5);
    border-radius: 5px;
}
.qa-list2 dl dd p:first-child{
    margin-top: 0;
}
.qa_title_block {
	display: block;
	margin: 0 0 3px;
}
.qa_date_block {font-weight: normal;font-size: 12px;color: var(--color-bg-light);background: var(--color-icon);padding: 1px 10px;display: inline-block;}

/*----------------------------------------------------
               重要なお知らせ
----------------------------------------------------*/
.c-hero-area_wrap_flex___importantNotices {
	width: 100%;
	position: relative;
	height: auto;
	padding: 0px 15px;
	z-index: 2;
	margin-bottom: 50px;
}

.m-helo-area_text___importantNotices {
	width: auto;
	letter-spacing: .08em;
	top: 0;
	margin: 0;
	transform: translateY(0%);
	position: relative;
	z-index: 1;
}
.m-importantNotices_box {
	position: relative;
	padding: 15px 15px;
	border-radius: 10px;
	background-color: var(--color-bg-light);
	border: 4px solid var(--color-font-err);
	margin-bottom: 20px;
}
.m-importantNotices_message {
    position: relative;
    color: var(--color-font-err);
    font-size: 15px;
    font-weight: 600;
    border-bottom: 1px dashed var(--color-font-err);
    padding: 10px 0 20px;
    line-height: 1.5;
    margin-bottom: 15px;
    display: flex;
    justify-content: center;
}
@media screen and (min-width: 992px) {
    .m-importantNotices_message {
	        font-size: 17px;
	   }
}

.m-importantNotices_text {
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 0px;
    word-wrap: break-word;
    /*min-height: 150px;*/
	max-height: 300px;
    overflow-y: auto;
}
@media screen and (min-width: 992px) {
    .m-importantNotices_text {
		font-size: 14px;
		padding: 3px 10px;
		/*min-height: 250px;*/
		max-height: 500px;
	   }
}

.portantNotices_entty {
    display: block;
    padding-bottom: 20px;
    font-size: 12px;
}
@media screen and (min-width: 992px) {
    .portantNotices_entty {
        font-size: 13px;
    }
}
/*.linkSetting {
    color: var(--color-icon);
}*/

.m-importantNotices_text::-webkit-scrollbar-track {
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	border-radius: 7px;
	background-color: #f5f5f5
}

.m-importantNotices_text::-webkit-scrollbar {
	width: 7px;
	background-color: #f9f9f9;
}

.m-importantNotices_text::-webkit-scrollbar-thumb {
	border-radius: 7px;
	-webkit-box-shadow: inset 0 0 3px rgba(0,0,0,.3);
	background-color: #ccc;
}
/*----------------------------------------------------
               応援メッセージ
----------------------------------------------------*/
.m-support_wrap {
    padding : 0;
    margin: -30px 0 0;
}
.support_items {
    font-size: 12px;
    padding: 0;
    margin: 0 0 20px;
    border: 3px solid var(--color-logo);
    background-color: var(--color-bg-light);
    border-radius: 20px 5px 5px 5px;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
	.support_items {
		font-size: 14px;
		margin: 0 0 30px;
	}
}
.support_title {
    padding: 10px 20px 10px 47px;
    font-size: 13px;
    font-weight: bold;
    background: var(--color-logo);
    border-bottom: 3px solid var(--color-logo);
    color: var(--color-bg-light);
    position: relative;
}
@media screen and (min-width: 992px) {
	.support_title {
		font-size: 15px;
	}
}
.support_title::before {
	content: "";
	position: absolute;
	top: 50%;
	left: 5px;
	transform: translateY(-50%);
	width: 35px;
	height: 35px;
	border-radius: 50%;
	background-color: #fff;
	background-image: url(../img/ouen001.svg);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 24px;
	border: 1px solid var(--color-logo);
	z-index: 0;
}

.support_content {
    padding: 15px 15px 5px;
    line-height: 1.5;
}
.support_footer {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	padding: 0px 15px 10px;
	/* border-top: 1px solid #60c2d8; */
	color: var(--color-font-light);
}
.support_footer_left {
    padding: 0;
}
.support_footer_right {
    padding: 0;
}

.review_items {
    font-size: 12px;
    padding: 0;
    margin: 0 0 20px;
    border: 1px solid var(--color-logo);
    background-color: var(--color-bg-light);
    border-radius: 5px;
    position: relative;
    overflow: hidden;
}
@media screen and (min-width: 992px) {
	.review_items {
		font-size: 14px;
		margin: 0 0 30px;
	}
}
.review_title {
	padding: 8px 15px;
	font-size: 13px;
	font-weight: bold;
	background: var(--color-logo);
	/* border-bottom: 3px solid var(--color-logo); */
	color: var(--color-bg-light);
	position: relative;
}
@media screen and (min-width: 992px) {
	.review_title {
		font-size: 15px;
	}
}
.review_content {
    padding: 0px 15px 10px;
    line-height: 1.5;
}
.review_ratingWrap {
    padding: 10px 15px 5px;
}
.review_footer {
	display: flex;
	justify-content: space-between;
	font-size: 11px;
	padding: 0px 15px 10px;
	/* border-top: 1px solid #60c2d8; */
	color: var(--color-font-light);
}

/* 下部「バナー」設定 */
.c-com_wrap {
	display: grid;
	grid-gap: 10px 10px;
	margin: 0 auto;
	padding: 0px 30px 80px;
	align-items: center;
}
.row_1col {
	grid-template-columns: repeat(1, minmax(0, 1fr));
}
.row_2col {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}
.c-com_items {
	/* border: 1px solid #777; */
	margin: 0 auto;
	max-width: 200px;
}
.c-com_wrap a {
	display: block;
	padding: 0px 0px;
}
.img_com {
	width: 100%;
	height: auto;
	object-fit: contain;
	margin: auto;
	display: block;
}

/* 控除上限額シミュレーション */
.spouses_salary {
	display: block;
	font-size: 13px;
	color: var(--color-link-deep);
	padding: 0 0 0px 5px;
}

.arrow_next {
	position: relative;
	height: 16px;
	width: 16px;
	background-color: #79c447;
	transform: rotate(90deg);
	display: table;
	margin: 0px auto -30px;
}
.arrow_next::before {
    position:
    absolute;
    content:
    "";
    border:
    solid 16px transparent;
    border-left: solid 16px #79c447;
    top: -8px;
    left:12px;
}

.simulation_results_wrap {
	margin: 70px 0 20px;
	padding: 0px 0px 30px;
	font-size: 16px;
	border: 5px solid var(--color-icon);
	/* box-shadow: 5px 5px 0px 0px var(--color-icon); */
	text-align: center;
	border-radius: 10px;
	overflow: hidden;
	background-color: #ffffff;
	/*background-image: linear-gradient(#e7fbff 1px, transparent 0), linear-gradient(90deg, #e7fbff 1px, transparent 0);*/
	background-size: 30px 30px;
}
.simulation_results_title {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 30px;
    padding: 5px 0 8px;
    /* text-decoration: underline; */
    /* text-underline-offset: 10px; */
    /* text-decoration-style: dotted; */
    color: #ffffff;
    background: var(--color-icon);
    position: relative;
    letter-spacing: 0.15em;
}
.simulation_results_title:before {
	position: absolute;
	top: 45%;
	left: 5px;
	transform: translateY(-50%);
	display: inline-block;
	width: 30px;
	height: 30px;
	content: '';
	background-color: #fff;
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7,2H17A2,2 0 0,1 19,4V20A2,2 0 0,1 17,22H7A2,2 0 0,1 5,20V4A2,2 0 0,1 7,2M7,4V8H17V4H7M7,10V12H9V10H7M11,10V12H13V10H11M15,10V12H17V10H15M7,14V16H9V14H7M11,14V16H13V14H11M15,14V16H17V14H15M7,18V20H9V18H7M11,18V20H13V18H11M15,18V20H17V18H15Z" /></svg>');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 30px;
}

.simulation_results_text {
    font-size: 16px;
}
.simulation_results_flex {
    display: flex;
    justify-content: center;
    align-items: baseline;
    width: fit-content;
    margin: 0 auto 10px;
    font-weight: normal;
    background: linear-gradient(transparent 70%, #feeeef 70%);
}
.simulation_results_num {
    font-size: 50px;
    color: #fe565b;
    line-height: 1;
    font-family: Arial, Hiragino Sans,Hiragino Kaku Gothic ProN,BIZ UDPGothic,Meiryo,sans-serif;
}
.simulation_results_yen {
    font-size: 18px;
    padding-left: 5px;
}

.message_area {
	margin: 0 auto;
	padding: 10px 0px 10px;
	color: var(--color-font-base);
	font-size: 13px;
	font-weight: 100;
	text-align: left;
	border-radius: 5px;
	line-height: 1.65;
    max-width: 550px;
}
.message_area li {
	padding: 0;
	text-indent: -1em;
	margin: 0 0 0 1em;
}

/* 「控除上限額シミュレーション」リンク */
.m-simulation_link_wrap {
	margin: 40px 0 30px;
    position: relative;
}


.c-link3 {
          display: block;
          position: relative;
          margin: 0 auto;
          text-align: center;
          padding: 20px 10px;
          text-align: center;
          width: 100%;
          max-width: 315px;
          color: var(--color-link-deep);
          font-size: 14px;
          font-weight: 600;
          border-radius: 5px;
          transition: 0.3s ease;
          letter-spacing: 0.1em;
          text-decoration: underline;
          text-underline-offset: 10px;
          text-decoration-style: dotted;
          /* border-bottom: 1px solid var(--color-icon); */
          /* border-top: 1px solid var(--color-icon); */
          border: 2px solid var(--color-icon);
          box-shadow: 3px 3px 0px 0px var(--color-icon);
          background-image: linear-gradient(#ddf9ff 1px, transparent 0), linear-gradient(90deg, #ddf9ff 1px, transparent 0);
          background-color: #ffffff;
          background-size: 20px 20px;
}
@media screen and (min-width: 740px) {
	.c-link3 {
		font-size: 15px;
		max-width: 380px;
	}
}
.c-link3::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--color-icon);
	border-radius: 50vh;
	transition: 0.3s ease;
}
.c-link3::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7,2H17A2,2 0 0,1 19,4V20A2,2 0 0,1 17,22H7A2,2 0 0,1 5,20V4A2,2 0 0,1 7,2M7,4V8H17V4H7M7,10V12H9V10H7M11,10V12H13V10H11M15,10V12H17V10H15M7,14V16H9V14H7M11,14V16H13V14H11M15,14V16H17V14H15M7,18V20H9V18H7M11,18V20H13V18H11M15,18V20H17V18H15Z" /></svg>');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 25px;
	background: #fff;
	transition: 0.3s ease;
}
.c-link3:hover {
	/* background: #e8fbff; */
	color: var(--color-font-base);
	border: 2px solid var(--color-font-base);
	box-shadow: 3px 3px 0px 0px var(--color-font-base);
	background-image: linear-gradient(#eeeeee 1px, transparent 0), linear-gradient(90deg, #eeeeee 1px, transparent 0);
	/* letter-spacing: 0.12em; */
	opacity: 1;
}
.c-link3:hover::before  {
    transform: translateY(-50%) scale(1.2);
    background-color: var(--color-font-base);
    opacity: 1;
}
.c-link3:hover::after {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.c-link4 {
          display: block;
          position: relative;
          margin: 0 auto;
          padding: 20px 0px 20px 35px;
          width: fit-content;
          color: var(--color-link-deep);
          font-size: 14px;
          font-weight: 600;
          border-radius: 5px;
          transition: 0.3s ease;
          letter-spacing: 0.1em;
          text-decoration: underline;
          text-underline-offset: 10px;
          text-decoration-style: solid;
          background-color: #ffffff;
          background-size: 20px 20px;
}
@media screen and (min-width: 740px) {
	.c-link4 {
		font-size: 15px;
		padding: 20px 0px 20px 35px;
	}
}
.c-link4::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--color-link-deep);
	border-radius: 50vh;
	transition: 0.3s ease;
}
.c-link4::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -5px;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M7,2H17A2,2 0 0,1 19,4V20A2,2 0 0,1 17,22H7A2,2 0 0,1 5,20V4A2,2 0 0,1 7,2M7,4V8H17V4H7M7,10V12H9V10H7M11,10V12H13V10H11M15,10V12H17V10H15M7,14V16H9V14H7M11,14V16H13V14H11M15,14V16H17V14H15M7,18V20H9V18H7M11,18V20H13V18H11M15,18V20H17V18H15Z" /></svg>');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 25px;
	background: #fff;
	transition: 0.3s ease;
}
.c-link4:hover {
	/* background: #e8fbff; */
	color: var(--color-font-base);
	/* letter-spacing: 0.12em; */
	opacity: 1;
}
.c-link4:hover::before  {
    transform: translateY(-50%) scale(1.2);
    background-color: var(--color-font-base);
    opacity: 1;
}
.c-link4:hover::after {
    transform: translateY(-50%) scale(1.2);
    opacity: 1;
}

.c-link5 {
	display: block;
	position: relative;
	margin: 0 auto;
	padding: 20px 0px 20px 35px;
	width: fit-content;
	color: var(--color-link-deep);
	font-size: 14px;
	font-weight: 600;
	border-radius: 5px;
	transition: 0.3s ease;
	letter-spacing: 0.1em;
	text-decoration: underline;
	text-underline-offset: 10px;
	text-decoration-style: solid;
	background-color: #ffffff;
	background-size: 20px 20px;
}

@media screen and (min-width: 740px) {
	.c-link5 {
		font-size: 15px;
		padding: 20px 0px 20px 35px;
	}
}
.c-link5::before {
	content: '';
	position: absolute;
	top: 50%;
	left: -20px;
	transform: translateY(-50%);
	width: 40px;
	height: 40px;
	background-color: var(--color-icon);
	border-radius: 50vh;
	transition: 0.3s ease;
}

.c-link5::after {
	content: '';
	position: absolute;
	top: 50%;
	left: -13px;
	transform: translateY(-50%);
	width: 25px;
	height: 25px;
	mask-image: url('data:image/svg+xml;charset=UTF-8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><title>cellphone-information</title><path d="M13 7H11V9H13V7M13 11H11V17H13V11M17 1H7C5.9 1 5 1.9 5 3V21C5 22.1 5.9 23 7 23H17C18.1 23 19 22.1 19 21V3C19 1.9 18.1 1 17 1M17 19H7V5H17V19Z" /></svg>');
	mask-repeat: no-repeat;
	mask-position: center;
	mask-size: 25px;
	background: #fff;
	transition: 0.3s ease;
}

.c-link5:hover {
	/* background: #e8fbff; */
	color: var(--color-font-base);
	/* letter-spacing: 0.12em; */
	opacity: 1;
}

.c-link5:hover::before {
	transform: translateY(-50%) scale(1.2);
	background-color: var(--color-font-base);
	opacity: 1;
}

.c-link5:hover::after {
	transform: translateY(-50%) scale(1.2);
	opacity: 1;
}

/*----------------------------------------------------
               ■ナビゲーション（ドロワー）メニュー ■
----------------------------------------------------*/
body.nav-open {
	overflow:hidden;
}
/* ナビゲーション（ドロワー）メニュー */
.drawerMenu {
	margin: 0;
	padding: 0;
	position: relative;
	width: 70px;
	height: 70px;
	background-color: var(--color-icon);
}

.gnav {
  position: fixed;
  right: 0; /* これで隠れる */
  top: 0;
  width: 100%; /* スマホに収まるくらい */
  height: 100%;
  padding-top: 100px;
  background-color: var(--color-icon);
  /* transition: background-color .1s ease; */
  z-index: 100;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
  display: none;
  overscroll-behavior-y: contain;
}
.hamburger {
	position: absolute;
	right: 0px;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 300;
	padding: 0;
}
.nav {
	margin: 0;
	padding: 0px 60px 100px 50px;
	list-style: none;
	font-size: 14px;
}
.menu-item {
  text-align: left;
  padding: 0 0px;
  border-bottom: 1px dashed var(--color-bg-light);
}
.menu-item a {
  display: block;
  padding: 17px 0px 17px 25px;
  border-bottom: 0px solid #fff;
  text-decoration: none;
  color: var(--color-bg-light);
  /* background: #efefef; */
  font-weight: bold;
  position: relative;
}
.menu-item a::before {
	content: "";
	position: absolute;
	top: 22px;
	left: 2px;
	background: var(--color-icon-light);
	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: 20px;
  width: 29px;
  height: 1px;
  background-color: var(--color-bg-light);
  transition: all .3s;
}
.hamburger__line--1 {
  top: 22px;
}
.hamburger__line--2 {
  top: 29px;
}
.hamburger__line--3 {
  bottom: 32px;
}
.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: 45px;
	left: 20px;
	display: block;
	/* width: 39px; */
	font-weight: 400;
	color: var(--color-bg-light);
}
 
 /*左からフェードイン*/
.fade_botom {
	opacity: 0;
	animation-name: fadein-bottom;
	animation-timing-function: ease-in-out;
	animation-duration: 0.3s;
	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.25s;
}
.menu-item:nth-of-type(3) {
  animation-delay: 0.3s;
}
.menu-item:nth-of-type(4) {
  animation-delay: 0.35s;
}
.menu-item:nth-of-type(5) {
  animation-delay: 0.4s;
}
.menu-item:nth-of-type(6) {
  animation-delay: 0.45s;
}
.menu-item:nth-of-type(7) {
  animation-delay: 0.5s;
}
.menu-item:nth-of-type(8) {
  animation-delay: 0.55s;
}
.menu-item:nth-of-type(9) {
  animation-delay: 0.6s;
}
.menu-item:nth-of-type(10) {
  animation-delay: 0.65s;
}

@media screen and (min-width: 992px) {
	.drawerMenu {
        display: none;
	}
}


/*----------------------------------------------------
               カートアイコン
----------------------------------------------------*/
.icon-mobile_cart {
	margin: 0;
	padding: 0;
	position: relative;
	width: 70px;
	height: 70px;
	background-color: var(--color-bg-button);
}
.icon-mobile_cart:hover {
    opacity: 1;
}
.hamburger_cart {
	position: absolute;
	right: 0px;
	top: 0;
	width: 100%;
	height: 100%;
	cursor: pointer;
	z-index: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon_header {
    background-image: url(../img/cart001.svg);
    width: 25px;
    height: 25px;
    background-position: 0% 0%;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 8px;
    position: relative;
}
.bubble-count {
	position: absolute;
	top: 6px;
	left: 24px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: var(--color-bg-light);
	/* background: var(--color-bg-light); */
	/* border: 1px solid var(--color-bg-light); */
	font-weight: 500;
	font-size: 11px;
	height: 17px;
	min-width: 17px;
	line-height: 1;
	border-radius: 21px;
	letter-spacing: 0;
	transition: background .2s ease-in-out,color .2s ease-in-out;
}

/*----------------------------------------------------
               ポップアップ・アラート
----------------------------------------------------*/
.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;
}

    .popUpButton001:hover,.popUpButton002:hover {
        opacity: 1;
        background-color: var(--color-font-base);
    }

.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;
}
