@charset "utf-8";
@-ms-viewport {
	width: device-width;
}
/*---------------------------------------
チェック
---------------------------------------*/
/*
*{
	border:1px solid #FF0000;
}
*/
/*---------------------------------------
clearfix
---------------------------------------*/
.clearfix {
	*zoom: 1;
}
.clearfix:before, .clearfix:after {
	display: table;
	content: "";
	line-height: 0;
}
.clearfix:after {
	clear: both;
}

/*---------------------------------------
全体
---------------------------------------*/
html {
  overflow-y: scroll;
}
body {
	margin: 0;
	padding: 0;
	font-family: YakuHanJP, 'Noto Sans JP', "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
	font-feature-settings: "palt";
	font-weight: 400;
	background: #ffffff;
	position: relative;
	width: 100%;
	/*
	overflow-x: hidden;
	overflow-y: auto;
	*/
}
main {
	width: 100%;
	box-sizing: border-box;
	scrollbar-width: none;       /* Firefox */
	-ms-overflow-style: none;    /* IE, Edge */
}
main::-webkit-scrollbar {
	display: none;               /* Chrome, Safari */
}

textarea:focus {
	outline: none;
}

a.a_link{
	text-decoration: underline;
}

/*---------------------------------------
TOPへ戻る
---------------------------------------*/ 
#page-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    font-size: 77%;
    z-index: 1;
}

#page-top a {
    background: var(--blue);
    text-decoration: none;
    color: #fff;
    width: 40px;
	height:40px;
    padding: 10px 0 14px 0;
    text-align: center;
    display: block;
    font-weight: 900;
	border-radius: 50%;
}

/*---------------------------------------
文字定義
---------------------------------------*/ 
:root {
  /* Kaisei Decol フォントファミリー */
  --font-kaisei: "Kaisei Decol", serif;

  /* Kaisei Decol ウェイト */
  --kaisei-regular: 400;
  --kaisei-medium: 500;
  --kaisei-bold: 700;
}

/*---------------------------------------
img定義
---------------------------------------*/
a img {
	display: inline;
}

.img_100 img{
	width:100%;
	margin: 0 auto;
}

.img_90 img{
	width:90%;
	margin: 0 auto;
}

/*---------------------------------------
hover
---------------------------------------*/
a img:hover {
    opacity: 0.8;
    transition: opacity 0.2s ease;
}

/*---------------------------------------
キービジュアル
---------------------------------------*/
.kv h1 img{
	width: 100%;
}

/*---------------------------------------
共通箇所
---------------------------------------*/
/*コンテンツ幅*/
.content_wrapper{
	max-width:580px;
	margin: 0 auto;
}

/*共通セクション*/
.common_section{
	padding: 3em 0.5em;
}

/*背景（赤）*/
.bg_red{
	background: url(../img/content/pat_01.png) repeat center / 70px,#dc0015;
}

/*背景（茶）*/
.bg_brown{
	background: url(../img/content/pat_01.png) repeat center / 70px,#481706;
}

/*背景（白）*/
.bg_white{
	background:#ffffff;
}

/*セクションタイトル*/
.common_section_title{
	width: 100%;
	text-align: center;
	margin-bottom: 1em;
}
.common_section_title h3{
	font-family: var(--font-kaisei);
	font-weight: var(--kaisei-bold);
	font-size: 1.3em;
	color: #ffffff;
	text-shadow:
    1px 1px 0 rgba(46, 25, 8, 0.95),
    2px 2px 1px rgba(46, 25, 8, 0.5);
}
.common_section_title img{
	width: 90%;
	margin: 0 auto;
}

.common_section_title.font_brown h3{
	color: #481706;
	text-shadow:none;
}
.common_text.font_brown p{
	color: #481706;
}

/*セクション説明箇所*/
.common_text{
	text-align: center;
}
.common_text p{
	font-family: var(--font-kaisei);
	font-weight: var(--kaisei-bold);
	font-size: 1em;
	color: #ffffff;
	line-height: 2.5em;
}
.common_text ul{
	text-align: left;
	color: #ffffff;
	font-size: 0.8em;
	line-height: 1.7em;
	width: 85%;
	margin: 2em auto 0 auto;
	padding: 0 0.5em;
}
.common_text ul li{
	list-style: disc;
	margin-bottom: 0.5em;
}

/*セクション商品画像*/
.common_goods_image{
	margin: 2em auto;
}

/*footer*/
footer{
	width: 100%;
    background: url(../img/content/footer_bg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
	color: #ffffff;
	text-align: center;
	font-size: 0.8em;
	padding: 2em 0 1.5em 0;
}
footer img{
	width: 35%;
	margin: 0 auto 1em;
}
footer p{
	font-size: 0.7em;
}

/*---------------------------------------
 商品詳細
---------------------------------------*/
.goods_detail{
	border-radius: 8px;
	border: 3px solid #f7ed74;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	background: url(../img/content/pat_01.png) repeat center / 70px,#fffff9;
	overflow: hidden;
	width: 95%;
	margin: 1.5em auto 2em auto;
	font-family: var(--font-kaisei);
	font-weight: var(--kaisei-bold);
}
.goods_detail_rank{
	background: url(../img/content/pat_01.png) repeat center / 70px,#dc0015;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
	padding: 0.5em;
	color: #ffffff;
	text-shadow:
    1px 1px 0 rgba(46, 25, 8, 0.95),
    2px 2px 1px rgba(46, 25, 8, 0.5);
	font-size: 1.4em;
}
.goods_detail_list{
	padding: 1em 0.5em 0 0.5em;
	color: #481706;
	font-size: 1em;
}
.goods_detail_rank dl{
	display: flex;
	align-items: center;
}
.goods_detail_list dl{
	display: flex;
	align-items: flex-start;
}
.goods_detail_rank dl dt,
.goods_detail_list dl dt{
	width: 20%;
}
.goods_detail_rank dl dt img,
.goods_detail_list dl dt img{
	width: 100%;
}
.goods_detail_rank dl dd,
.goods_detail_list dl dd{
	width: 80%;
	margin-left: 0.5em;
}
.goods_detail .common_goods_image{
	margin: 1em auto;
}

/*---------------------------------------
 申込みフォーム
---------------------------------------*/
form{
	width:95%;
	margin:2em auto 0 auto;
}
form dl{
	display: flex;
	align-items: center;
	gap:5px;
	width: 96%;
	margin: 0 auto;
}
form dl dt{
	margin: 0 0.2em;
	font-size: 13px;
}
form dl dd{
	margin: 0;
}
form input, .business_input, .employment_input, .id_input {
    width: 100%;
    border: 2px solid #f77a9d;
    background: #fdfec5;
    border-radius: 8px;
    padding: 0.7em 0.5em;
    -webkit-box-shadow: inset 0px 0px 5px 2px #E6E6E6;
    -moz-box-shadow: inset 0px 0px 5px 2px #E6E6E6;
    box-shadow: inset 0px 0px 5px 2px #E6E6E6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
}
.form_btn{
	width: 90%;
	margin: 1.5em auto 0 auto;
}
form button img{
	width: 100%;
}
.input_arrow {
    cursor: pointer;
}
.business_input, .employment_input, .id_input {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
dl.name_form{
	gap: 0;
}
dl.name_form dt{
	color: #481706;
	text-align: right;
	width: 17%;
}
dl.name_form dd{
	width: 83%;
}
form input.filled,
form input:focus,
form input:not(:placeholder-shown) {
    background: #ffffff !important;
}
::placeholder{
	font-size: 15px;
	color: gray;
}

/* 各項目のタイトル */
.form_section_title{
	display: flex;
	align-items: center;
	margin: 1.5em 0 1em 0;
}
.form_section_title p{
	color: #481706;
	font-size: 16px;
	font-weight: 600;
}
span.form_section_title_small{
	font-size: 13px;
}
p.form_required{
	background: #f77a9d;
	border-radius: 2px;
	text-align: center;
	color: #ffffff;
	font-size: 11px;
	font-weight: normal;
	padding: 0.2em 0.7em;
	margin: 0 0.3em 0 0.5em;
}
p.error{
	color: #ff0000;
	font-size: 13px;
	font-weight: 500;
}
p.form_caption{
	color: #434343;
	font-size: 12px;
	width: 95%;
	margin: 0.5em auto 0 auto;
}

/* 郵便番号検索 */
.address_search dl{
	display: block;
}
.address_search dl dd{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}
.address_search dl input{
	width: 60%;
}
.address_search dl button{
	background: #f77a9d;
	border-radius: 2px;
	text-align: center;
	color: #ffffff;
	padding: 0.2em 0.5em;
	margin-left: 0.7em;
}
.form_input_row dl{
	width: 96%;
	display: block;
}

/* 入力不備 */
.form_required {
    color: red;
    margin-left: 10px;
}

/* 申込内容確認 */
dl.confirm_wrapper{
	color: #481706;
	width: 95%;
	margin: 0 auto;
	padding: 1.5em 0 0.5em 0;
	display: flex;
	flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
}
dl.confirm_wrapper dt {
    width: 40%;
    margin: 0;
    padding: 0.5em 0;
}
dl.confirm_wrapper dd {
    width: 60%;
    margin: 0;
    padding: 0.5em 0;
	overflow-wrap: break-word;
	padding-left: 0.5em;
    text-indent: -0.5em;
}
dl.confirm_wrapper dd:before{
	content: ":";
	margin-right: 0.5em;
}
dl.confirm_wrapper dd img{
	width: 70%;
}
dl.confirm_wrapper dd.thumbnail:before{
	content: none;
}
dl.confirm_wrapper dd.confirm_post:before {
    content: ": 〒";
    margin-right: 0.1em;
}
dl.confirm_wrapper dd.confirm_age:after {
    content: "歳";
    margin-left: 0.1em;
}
dl.confirm_wrapper dd.confirm_income:after {
    content: "万円";
    margin-left: 0.1em;
}
.notice{
	background: #ffe7e7;
    border-radius: 8px;
    border: 2px solid #cccccc;
	padding: 0.7em;
	width: 95%;
	margin: 0.5em auto;
}
.notice dt{
	display: flex;
	flex-wrap: wrap;
    align-items: center;
    justify-content: center;
	text-align: center;
	margin-bottom: 0.7em;
	color: red;
}
.notice dt img{
	width: 30px;
	margin-right: 0.3em;
}
.notice dd{
	margin: 0;
	line-height: 1.7em;
	font-size: 14px;
}
.confirm_back{
	width: 55%;
	margin: 2em auto 0 auto;
}
.confirm_back img{
	width: 100%;
}

/*---------------------------------------
 出現アニメーション
---------------------------------------*/
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition:
    opacity .7s ease,
    transform .7s ease;
  transition-delay: var(--animate-delay, 0ms); /* JSの data-delay と連携 */
  will-change: opacity, transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.reveal.is-inview {
  opacity: 1;
  transform: none;
}

/* 動きが苦手な環境に配慮 */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}


