/* CSS Document */
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}

html[lang="ja"] {
  font-family: "Zen Maru Gothic", serif;
}
/* リセットCSS（Reset CSS） */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
    
}




/* ページのボックスモデルを変更しない */
* {
  box-sizing: border-box ;
}

ul, ol{
    list-style: none;
}

/* ページ全体に対する基本的なスタイル */
html {
    font-size: 18px;
   
    position: relative;
    height: 100%;
    text-align: justify;
    text-justify: inter-word;
}

body {
    font-family: "Zen Maru Gothic", serif;
    font-weight: 500;
    font-style: normal;
    color: #635e56;
    padding: 0;
    margin: 0;
    background-color: #e5f2e6;
    background-image: url("../img/dot.png");
    word-break: break-all;
    
}


/* リンクのスタイル */
a {
      text-decoration: none;
    transition:  0.3s;
    color: #42210b;
}

a:hover{
    color: #F15A25;
}

button{
    transition:  0.3s;
}

fieldset, legend{
    padding: 0;
    margin: 0;
}


.container{
    width: calc(100% - 96px);
    max-width: 1600px;
    margin: 0 auto;

}


header{
    width: 100%;
    background-color: #fff;
    color: #fffab5;
    font-size: 1.3em;
    font-weight: 700;
}


header .container .header_box{
    display:flex;
    justify-content: space-between;
    align-items: center;
}


.search-box {
    display: flex;
    align-items: center;
    gap: 8px; /* ボタンと入力欄の間のスペース */
    padding: 8px 0;
    justify-content: flex-end;
}

.input-container {
    display: flex;
    align-items: center;
    border: 2px solid #635e56; /* 枠線 */
    border-radius: 16px; /* 角丸 */
    padding: 16px; /* 内側余白 */
    background-color: #fff;
}

.input-container i {
    color: #aaa; /* アイコンの色 */
    margin-right: 8px; /* アイコンと入力欄の間のスペース */
}

.input-container input {
    border: none;
    outline: none;
    width: 200px; /* 必要に応じて変更 */
    font-size: 0.9em;
    font-family: "Zen Maru Gothic", serif;
}

.search-box button {
    background-color: #8e5015; /* ボタンの色 */
    color: #fff; /* 文字色 */
    border: none;
    border-radius:16px;
    padding: 12px 24px;
    font-size: 1em;
    font-weight: bold;
    cursor: pointer;
    font-family: "Zen Maru Gothic", serif;
}

button{
    font-family: "Zen Maru Gothic", serif;
}

/* Font Awesome アイコンのスタイル */
.search-box button i {
    font-size: 2em;
}

::placeholder {
    color: #8e5015;
  }



.hamburger, .globalMenuSp{
    display: none !important;
}

#top_first{
    background-color: #faf5ed;
}

.top_hero {
    position: relative; /* hero_title を hero_img の上に重ねるための基準 */
    height: auto; /* 必要に応じて調整 */
    width: 100%;
}

.hero_title {
    position: absolute; /* 重ねるために absolute を使用 */
    top: 50%; /* 上から50%の位置に配置 */
    left: 20%; /* 左から50%の位置に配置 */
    transform: translate(-50%, -50%); /* 中心に配置するために調整 */
    z-index: 2; /* hero_img より前面に表示 */
    text-align: center; /* 必要に応じて中央揃え */
    
}

.hero_title img{
    width:600px;
}

.hero_img{
    width: 100%;
    display: flex;
    justify-content: flex-end;
}


.hero_img img {
    display: block; /* 画像を中央揃えしたい場合 */
    width: 70%; /* 必要に応じて画像サイズを調整 */
    height: auto;
}


#kosodate_banner{
    background-color: #faf5ed;
    padding: 40px 0;
}

#kosodate_banner ul{
    display: flex;
    font-size: 1.2em;
}

#kosodate_banner ul li{
    width: 50%;
    padding: 0 40px;
}

#kosodate_banner ul li img{
    width: 100%;
    border-radius: 16px;
}

#kosodate_banner ul li img:hover{
    opacity: 0.8;
}



#home_second{
    padding:120px 0;
    background-color: #faf5ed;
}


#home_second h2{
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    padding-bottom:80px;
}

#home_second h2 span{
    display: block;
    font-size: 0.8em;
    color: #8e5015;
}

#home_second div ul{
    display: flex;
    justify-content: space-between;
}

#home_second div ul .news_box{
    background-color: #fff;
    padding: 40px 24px;
    width: 45%;
    border-radius: 24px;
     position: relative; 
}


#home_second div ul .news_box .news_img1{
    position: absolute; /* 重ねるために absolute を使用 */
    top: -10%; /* 上から50%の位置に配置 */
    right: -10%; /* 左から50%の位置に配置 */
}


#home_second div ul .news_box .news_img2{
    position: absolute; /* 重ねるために absolute を使用 */
    bottom: -10%; /* 上から50%の位置に配置 */
    right: -10%; /* 左から50%の位置に配置 */
}


#home_second div ul .news_box h3{
    font-size: 1.8em;
    display: flex;
    align-items: center;
    color: #8e5015;
    padding-bottom: 16px;
    border-bottom: solid 3px #f7931e;
}

#home_second div ul .news_box h3 img{
    padding-right: 8px;
}

#home_second div ul .news_box ol{
    padding: 40px;
}

#home_second div ul .news_box ol li {
    padding: 24px 0;
    border-bottom: dotted 2px #f7931e;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}



#home_second div ul .news_box ol li span{
    color: #8e5015;
}

#home_second div ul .news_box .city_cat, #main .city_cat{
    background-color: #84933e;
    color: #fff;
    padding: 2px 16px;
    border-radius: 32px;
    margin-left: 8px;
    font-size: 0.8em;
}

#home_second div ul .news_box .news_cat2, #main .news_cat2{
    background-color: #C4E2E3;
    color: #000;
    padding: 2px 16px;
    border-radius: 32px;
    margin-left: 8px;
    font-size: 0.8em;
}




#home_second div ul .news_box ol li img{
    height: 24px;
    margin-left: 4px;
}


#home_second div ul .news_box ol li a{
    display: inline !important;
    word-break: break-all;
}

#home_second div ul .news_box ol li p{
    margin-top: 4px;
}



#home_second div .more {
    padding: 0 40px;
}


#home_second div .more a{
    color: #8e5015;
    font-size: 1.1em;
}

#home_second div .more a i{
    padding-left: 8px;
}

#top_third {
    background-color: #faf5ed;
    background-image: 
        url("../img/cloud.png"), /* 背景画像を追加 */
        linear-gradient(0deg, #faf5ed 0%, #c0e1e2 100%);
    background-size: contain, cover; /* 背景のサイズ調整 */
    background-position: top, center; /* 背景の位置を中央揃え */
    background-repeat: no-repeat, no-repeat; /* 背景の繰り返しを無効化 */
    padding-top: 120px;
}


#top_third h2{
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    padding-bottom:80px;
}


#top_third .shop_about ul {
    background-color: #fff;
    padding: 40px;
    display: flex;
    border-radius: 24px;
    gap: 16px; /* li間の隙間を追加 */
    margin-bottom: 140px;
}

#top_third .shop_about ul li {
    width: 25%;
    display: flex; /* 子要素の配置をフレックスボックスで管理 */
    flex-direction: column; /* 縦方向に整列 */
    align-items: center; /* 中央揃え */
    text-align: center;
    border-right: solid 1px #ddd; /* 境界線の色を指定 */
    padding: 16px;
}

/* 最後のliの右ボーダーを削除 */
#top_third .shop_about ul li:last-child {
    border-right: none;
}

/* 子要素の高さを揃える */
#top_third .shop_about ul li > div {
    flex: 1; /* 高さを均等にする */
    display: flex; /* 画像を中央揃え */
    justify-content: center;
    align-items: center;
    margin-bottom: 16px; /* 画像とタイトルの間の余白 */
}

#top_third .shop_about ul li h3,
#top_third .shop_about ul li p {
    margin: 0 0 32px; /* 下に余白を追加 */
}

#top_third .shop_about ul li a {
    margin-top: auto; /* 一番下に配置 */
}



#top_third .shop_about ul li h3{
    font-size: 1.5em;
}

#top_third .shop_about a{
    color: #8e5015;
    padding: 4px 24px;
    border:solid 1px #8e5015;
    border-radius: 24px;
    font-weight: 700;
    font-size: 1.1em;
}

#top_third .shop_about a i{
    padding-left: 16px;
    color: #f7931e;;
}


#top_fourth{
    background-color: #faf5ed;
    padding-top: 120px;
    padding-bottom: 240px;
    border-bottom-left-radius: 50% 100px;
    border-bottom-right-radius: 50% 100px;  
}


#top_fourth h2{
    text-align: center;
}



#top_fourth .container{
    background-color: #fff;
    padding: 48px;
    border-radius: 24px;
    margin-top: -20px;
}

#top_fourth .container .shop_counts ul{
    padding: 0 40px 40px;
    display: flex;
    gap: 16px; /* li間の隙間を追加 */
    border-bottom: dotted 2px;
}

#top_fourth .container .shop_counts li {
    width: 25%;
    display: flex; /* 子要素の配置をフレックスボックスで管理 */
    flex-direction: column; /* 縦方向に整列 */
    align-items: center; /* 中央揃え */
    text-align: center;
    border-right: solid 1px #ddd; /* 境界線の色を指定 */
    padding: 16px;
}

/* 最後のliの右ボーダーを削除 */
#top_fourth .container .shop_counts li:last-child {
    border-right: none;
}

#top_fourth .container .shop_counts li > div, #top_fourth .container .shop_counts li > h3 {
    flex: 1; /* 高さを均等にする */
    display: flex; /* 画像を中央揃え */
    justify-content: center;
    align-items: center;
    margin-bottom: 16px; /* 画像とタイトルの間の余白 */
}

#top_fourth .container .shop_counts li h3{
    font-weight: 700;
    font-size: 1.2em;
}

#top_fourth .container .shop_counts li p span{
    font-size: 1.5em;
    color: #ec5555;
}

#top_fourth .container .shop_search{
    padding: 0 40px;
    margin-top: 40px;
}


#top_fourth .container .shop_search dl{
    display: flex;
    margin-bottom: 16px;
}

#top_fourth .container .shop_search dl dt{
    font-size: 1.5em;
    color: #59923a;
    width: 12%;
}

#top_fourth .container .shop_search dl dd{
    width: 88%;
    display: flex;
    flex-wrap: wrap;
}

#top_fourth .container .shop_search dd div{
    font-size: 1.5em;
    color: #65a046;
    width: 15%;
}

#top_fourth .container .shop_search dd ul{
    width: 85%;
    display: flex;
    flex-wrap: wrap;
}

#top_fourth .container .shop_search input[type="text"]{
    width: 50%;
    border-radius: 8px;
    padding: 12px;
    border: solid 1px;
    font-size: 1.2em;
}

#top_fourth .container .shop_search dd .flex2 li{
    width: 50%;
    margin-bottom: 8px;
}

#top_fourth .container .shop_search dd .flex4 li{
    width: 25%;
    margin-bottom: 8px;
}

#top_fourth .container .shop_search label{
    font-size: 1.2em;
    
}

#top_fourth .container .search_button {
    text-align: center;
    margin:80px 0;
}


#top_fourth .container .search_button a {
    font-size: 1.5em;
    padding: 16px 48px;
    border-radius: 16px;
    background-color: #8e5015;
    color: #fff;
    letter-spacing: 1em;
}

#top_fourth .container .search_button a i{
    padding-right: 40px;
}


#top_fifth{
    padding: 120px 0  360px;
    background-color: #e5f2e6;
    background-image: url("../img/dot.png");
}

#top_fifth h2{
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    padding-bottom:80px;
}


#top_fifth h2 span{
    display: block;
    font-size: 0.8em;
    color: #8e5015;
}

#top_fifth .pickup{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

#top_fifth .pickup > li{
    width: 30%;
    background-color: #fff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: #e5a741 5px 5px;
}

#top_fifth .pickup .shop_img{
    width: 100%;
    border-radius: 24px;
    margin-top: 4px;
    margin-bottom: 4px;
}

#top_fifth .pickup .shop_img img{
    width: 100%;
    object-fit: cover;
}

#top_fifth .pickup .shop_cat2 img{
    margin-right: 4px;
}

#top_fifth .pickup h3{
    font-size: 1.5em;
    padding: 8px 0;
    border-bottom: dotted 3px #f7931e;
}

#top_fifth .pickup h3 a{
    color: #8e5015;
    font-weight: 700;
}

#top_fifth .pickup .shop_address {
        padding: 16px 0;
    border-bottom: dotted 3px #f7931e;
    margin-bottom: 16px;
}


#top_fifth .pickup .shop_address img{
    margin-right: 8px;
}

#top_fifth .pickup .shop_address .map_link a{
    border-radius: 16px;
    padding: 2px 16px;
    border: solid 1px ;
}

#top_fifth .pickup .shop_address li{
    margin: 4px 0;
}


#main .bread_search{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#main .breadcrumb{
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	list-style-type: none;
	padding: 0;
	font-size: 0.9em;
}

#main .breadcrumb li a{
	text-decoration: underline;
}

#main .breadcrumb li  i{
	padding:0 15px;
}


#main .main_contents{
	padding:48px;
    background-color: #fff;
    margin:0 0 240px;
    border-radius: 16px;
}

#main .main_contents h2{
    background-image: url(../img/back_border.png);
    vertical-align: middle !important;
    padding:0;
    margin:0 0 5px;
    font-weight: bold;
    font-size: 1.9em;
    }
    
#main .main_contents h2 span{
        background-color: white;
        vertical-align: middle !important;
        padding-right:20px;
}
    
#main .main_contents h3{
        margin:  0;
        padding: 0;
        font-size: 1.2em;
        padding:10px 0;
        font-weight: bold;
        
    }

#main .main_contents h3 span{
        padding-left: 10px;
        border-left:solid 3px  #ff9f00;
    }

    #main .main_contents h4{
        background-color:#fff1bf;
        line-height:1.1em;
        font-size: 1.1em;
        margin: 20px 0 0 0;
        padding:10px ;
        border-radius:5px;
        font-weight: bold;
    }
    

    #main .main_contents p{
        margin: 16px 0;
        line-height: 1.8em;
        text-align: justify;
        
    }

#main .main_contents p a{
	text-decoration: underline;
}


#main .search_box table{
	width: 100%;
	text-align: left;
	table-layout: fixed;
}

#main .search_box table tr{
	padding-bottom:20px !important;
}

#main .search_box table th h4{
	font-size: 1.1em;
	padding-left:10px;
	border-left:solid 4px  #ff9f00;
	margin: 0;
	text-align: left !important;
}

#main .search_box table h5{
	font-size: 1em;
	padding: 0;
	margin: 0;
}

#main .search_box table th{
	vertical-align: top;
	text-align:left;
}

#main .search_box table td{
	vertical-align: top;
}

#main .search_box table .th01{
	width: 30%;
}

#main .search_box table .th02{
	width: 20%;
}
#main .search_box table .th03{
	width: 10%;
}


#main .search_box table td ul{
	list-style-type: none;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
		flex-wrap: wrap;
	padding: 0;
	margin: 0;
}

#main .search_box table td ul li{
	width: 25%;
	padding:0 10px 10px 0;
	box-sizing:border-box;
	font-size: 0.9em;
}

#main .search_box table td .syurui li{
	width: 50%;
	padding:0 10px 10px 0;
	box-sizing:border-box;
}



#main .search_box table td input[type="text"]{
	padding:10px 5px;
	margin-bottom:15px;
	width: 70%;
	box-shadow: none;
	border-radius: 5px;
	border: solid 1px black;
}


#main .search_box table td ul li input{
	font-size: 0.95em;
}



#main .main_contents .main_con_list{
	margin: 0 0 30px;
	padding: 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	list-style-type: none;
	width: 100%;
	-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
}

#main .main_contents .main_con_list li {
	padding:5px;
	box-sizing: border-box;
	width : calc(100% / 3) ;
}

#main .main_contents .main_con_list2 li {
	padding:5px;
	box-sizing: border-box;
	width : calc(100% / 2) ;
}


#main .main_contents .main_con_list li a{
	width: 100%;
}


#main .main_contents .main_con_list li a{
	background-color: #fff;
	color: #404040    ;
	padding:15px 15px;
	box-sizing: border-box;
	text-align: center;
	width: 100%;
	display: block;
	border-radius: 30px;
	line-height: 1em;
	text-decoration: none;
    border: solid 2px #ff9f00;
    font-weight: bold;
}

#main .main_contents .main_con_list li a i{
	float: right;
	vertical-align: middle;
    color: #ff9f00;
}

#main .main_contents .link_under{
	text-decoration: underline;
}

#main .main_contents .s_shop_img{
display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
  	width:700px;
  	margin: 0 auto;
  	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}


#main .main_contents .center_img{
	text-align: center;
	margin:20px 0 0;
}

#main .main_contents .center_img p{
	margin: 5px 0;
	padding: 0;
    text-align: center;
}

#main .main_contents .center_img img{
	margin-bottom: 20px;
}

#main .main_contents .circle_list{
	list-style-image: url(../img/list.gif);
	margin-left:1.3em;
	padding: 0;
	margin: 10px 0 20px 1.5em;
}

#main .main_contents .circle_list li{
	margin-bottom: 5px;
}

#main .main_contents .number_list{
	list-style-type: decimal;
	margin-left:1.3em;
	padding: 0;
	margin: 10px 0 20px 1.5em;
}

#main .main_contents .number_list li{
	margin-bottom: 5px;
}


#main .main_contents .link_list {
	margin:10px 0 15px;
	padding: 0;
	list-style-type: none;
}


#main .main_contents .link_list li{
	margin: 0 0 16px;
	padding:0;

}

#main .main_contents .link_list li a{
	text-decoration: underline;
}

#main .main_contents .link_list li i{
	color:#ff9f00;
	padding-right: 5px;
}

#main .main_contents .ex_table{
    margin: 20px 0;
    width: 100%;
    border-collapse: collapse;
    border: solid 1px #ccc;
}

#main .main_contents .ex_table td, #main .main_contents .ex_table th{
    border: solid 1px #ccc;
    padding: 8px;
}

#main .main_contents .ex_table th{
    font-weight: bold;
}

#main .main_contents .ex_table .bg_g{
    background-color: #D9E9C0;
    font-weight: bold;

}

#main .main_contents .ex_table .bg_y{
    background-color: #FAF5C7;
    width: 40%;
}

#main .main_contents .ex_table .bg_b{
    background-color: #eaf4fc;
    width: 40%;
}


#main .main_contents .table_2{
	width: 100%;
	margin:20px 0;
	border-collapse: collapse;
	text-align: left;
	vertical-align: top;
}

#main .main_contents .table_2 a{
	text-decoration: underline;
}


#main .main_contents .table_2 tr{
	border-bottom:1px black dotted;
}

#main .main_contents .table_2 th{
	width:250px;
	padding:10px;
	box-sizing: border-box;
}
#main .main_contents .table_2 td{
	padding:10px;
	box-sizing: border-box;
}

#main .main_contents .attention{
	color:#FF2E00;
	font-weight: bold;
}

#main .main_contents .under_bold{
	text-decoration: underline;
	font-weight: bold;
}

#main .main_contents a{
	text-decoration: underline;
}

#main .main_contents h5{
	font-size: 1em;
	margin: 15px 0 0;
	line-height:1em;

}

#main .main_contents .border_box{
    width: 100%;
	max-width:600px;
	border: solid 1px;
	margin: 0 auto;
	padding: 25px;
	text-align: center;
}


#main .main_contents .table_2x2, #main .main_contents .table_1x5, #main .main_contents .table_2x8, #main .main_contents .table_3x9, #main .main_contents .table_4x10{
	width: 100%;
	margin:30px 0;
	border-collapse: collapse;
	text-align: left;
}

#main .main_contents .table_2x2 th, #main .main_contents .table_2x8 th, #main .main_contents .table_3x9 th{
	background-color: #fef0bf;
	padding:15px 10px;
	box-sizing: border-box;
}

#main .main_contents .table_2x2 td , #main .main_contents .table_2x8 td, #main .main_contents .table_3x9 td, #main .main_contents .table_4x10 td{
	padding:15px 10px;
	box-sizing: border-box;
	vertical-align: top;
}

#main .main_contents .table_1x5 tr, #main .main_contents .table_2x8 tr, #main .main_contents .table_3x9 tr, #main .main_contents .table_4x10 tr{
	background: white;

}
#main .main_contents .table_1x5 tr:nth-child(odd)  , #main .main_contents .table_2x8 tr:nth-child(odd)  , #main .main_contents .table_3x9 tr:nth-child(odd) , #main .main_contents .table_4x10 tr:nth-child(odd){
	background: #fafafa;
}

#main .main_contents .table_1x5 td{
	padding:15px 10px;
	box-sizing: border-box;
}

#main .main_contents .katakana_list {
	list-style-type: katakana;
	margin:0.5em 0 0.5em 2em;
	padding:0;
}

#main .main_contents .form_table{
	width: 100%;
	border-collapse: collapse;
	border-bottom:dashed 1px #ccc;
	margin-top:20px;
}

#main .main_contents .form_table th{
	width:250px;
	vertical-align: top !important;
	text-align: left;
	padding:5px;
	font-size: 0.9em;
	font-weight: normal;
}


#main .main_contents .form_table2 th{
	width:150px;

}


#main .main_contents .form_table th span{
	display: block;
	font-size: 0.8em;
	color:red;
}

#main .main_contents .form_table td{
	vertical-align: top !important;
	text-align: left;
	padding:0 20px 20px;
}

#main .main_contents .form_table td img{
	width:90%;
	}


#main .main_contents .form_table .form_cat ul{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
		-ms-flex-wrap: wrap;
  	flex-wrap: wrap;
		list-style-type: none;
		padding: 0;
		margin: 0;
}

#main .main_contents .form_table .form_cat li{
	width : 33.33333% ; /* 譛ｪ蟇ｾ蠢懊ヶ繝ｩ繧ｦ繧ｶ逕ｨ繝輔か繝ｼ繝ｫ繝舌ャ繧ｯ */
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
	padding: 0;
	margin: 0;
}

#main .main_contents .form_table .form_cat2 li{
	width : 50% ;
	padding: 0;
	margin: 0;
}

#main .main_contents .form_table #box, #main .main_contents .form_table #box2{
display:none;
}

#main .main_contents .form_table span{
	font-size: 0.8em;
}


#main .main_contents .form_table td input{
	padding:5px;
	margin-bottom:5px;
}

#main .main_contents .form_table td .input_l {
	width: 100%;
}

#main .main_contents .form_table td .input_m{
	width: 100px;
}

#main .main_contents .form_table td textarea{
	width: 100%;
	height:100px;
	padding:5px;
}

#main .main_contents .form_table td .list{
	padding:5px;
	margin-bottom:5px;
}	

#main .main_contents .qa_list{
	padding:20px 20px 0 30px;
}

#main .main_contents .qa_list .title{
	list-style-type: none;
	margin: 0 0 30px;
	padding: 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-ms-flex-wrap: wrap;
flex-wrap: wrap;
	width: 100%;
}
#main .main_contents .qa_list .title li{
	width: 50%;
	margin-bottom:5px;
}

#main .main_contents .qa_list .title li i{
	padding-right: 10px;
	color: #ff9f00;
}

#main .main_contents .qa_list .title li a{
	text-decoration: underline;
}
	

#main .main_contents .qa_list	.item .question .qa_q{
	color:#ff9f00;
	padding-right: 10px;
	font-size: 1.2em;
}

#main .main_contents .qa_list	.item .answer .qa_a{
	color:#62cbf2;
	padding-right: 10px;
	font-size: 1.2em;
	margin-bottom:3px;
}


#main .main_contents .qa_list	.faq {
	margin: 20px 0;
	  width: 100%;
	}

    #main .main_contents .qa_list	.item .question {
	  padding: 5px 0px;
	  display: flex;
	  justify-content: space-between;
	  align-items: center;
	  cursor: pointer;
	}

    #main .main_contents .qa_list	.item .question h4 {
	  margin: 0;
			font-size: 1.1em;
	}


    #main .main_contents .qa_list	.item .question i{
font-size: 1.5em;
color:#ff9f00;
}


#main .main_contents .qa_list	.item .question .fa-minus-circle {
	  display: none;
			}

            #main .main_contents .qa_list	.item.jquery-accordion-active .fa-minus-circle {
	  display: block;
	}

    #main .main_contents .qa_list	.item.jquery-accordion-active .fa-plus-circle {
	  display: none;
	}

    #main .main_contentsn .qa_list	.item .answer {
	  padding: 5px 0px;
	  display: none;
	}

    #main .main_contents .qa_list	.item .answer p{
	padding:0 0 0 1.5em;
	margin: 5px 0;
	letter-spacing: 0.03em;
}

#main .main_contents .qa_list	.item .answer h5{
	font-size: 1.1em;
	font-weight: bold;
	padding: 0;
	margin: 0;
}


	

#main .main_contents #acMenu dt{
display:block;
padding: 0;
margin-top:10px;
cursor:pointer;
}
#main .main_contents #acMenu dd{
padding: 0 ;
margin:0px;
display:none;
}


#main .main_contents .news_list{
	margin: 0;
	padding: 0;
	list-style-type: none;
}

#main .main_contents .news_list p{
	padding: 0;
	margin: 2px 0 15px;
}

#main .main_contents p .news_days{
	text-align: right;
	display: block;
	margin-bottom:5px;
}

#main .main_contents .news_list .news_new{
		color:#d32f2f;
	margin-left:5px;
	font-weight:bold;
}


#main .main_contents .card_box{
    display: flex;
    padding: 0 40px;
}

#main .main_contents .card_box div{
    width: 50%;
    padding: 16px;
}

#main .main_contents .card_box div h4{
    margin-bottom: 8px;
    text-align: center;
}
#main .main_contents .card_box .card_plus h4{
    background-color:#B2D3E9;
}

#main .main_contents .card_box div .card_img li{
    display: flex;
    justify-content: center;
    margin-bottom: 8px;
}
#main .main_contents .card_box img{
    max-width: 100%;
}


#main .back_button, #main .next_button{
	width: 100%;
	text-align: center;
	margin: 50px 0 50px;
}

#main .back_button a, #main .next_button a{
	background-color: #8e5015;
	color: white;
	padding:10px;
	width: 300px;
	border-radius: 30px;
	display: inline-block;
	text-decoration: none;
}

#main .back_button a:hover, #main .next_button a:hover{
    opacity: 0.8;
}

#main .back_button a i{
	float: left;
	line-height: 25px;
}


#main .next_button a i{
	float: right;
	line-height: 25px;
}

#main .back_button a::after, #main .next_button a::after{
	clear: both;
	content: "";
	display: block;
}

#main .search_list dl{
    margin: 24px 0;
    display: flex;
}

#main .search_list dl dd{
    padding: 0 0 0 16px;
}

#main .search_list dl dd .shop_txt{
    margin: 8px 0;
    font-size: 0.9em;
}



#main .search_list dl h4{
    margin: 0 0 8px;
    padding: 0;
    background-color: #fff;
}



#main .page_list ul{
    margin: 40px 0;
	display:-webkit-box;
	display:-ms-flexbox;
	display:flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	list-style-type: none;
}
#main  .page_list ul li{
	 line-height: 36px;
	 margin: 2px;
}

#main  .page_list ul li a{
	display: inline-block;
	  width: 40px;
	  height: 40px;
	  border-radius: 50%;
	  background:#ff9f00;
	  text-align:center;
	  line-height: 32px;
			color: #404040;
			font-weight: bold;
		border: solid 2px #ff9f00;
        text-decoration: none;
}


#main .page_list ul .active a{
		color: #404040;
		background-color: white;

}

#main .shop_details .base_details{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}

#main .shop_details .shop_address li{
    display: flex;
}
#main .shop_details .shop_address li img{
    margin-right: 5px;
}


#main .shop_details table{
	width: 100%;
	border-collapse: collapse;
	border-spacing: 0;
	margin:10px 0px 40px;
}

#main .shop_details table tr{
/*	border-top:dashed 1px black; */
	border-bottom:dashed 1px black;
	padding:10px:
}

#main .shop_details table th{
	width:200px;
	text-align: left;
	padding:15px;
	vertical-align: top;
}

#main .shop_details table td{
	padding:15px;
	text-align: justify;
}

#main .shop_details table .shop_img td{
	display:-webkit-box;
  	display:-ms-flexbox;
  	display:flex;
}

#main .shop_details table .shop_img td a{
	width : 33.33333% ;
  width : -webkit-calc(100% / 3) ;
  width : calc(100% / 3) ;
  padding:0px 4px;
  box-sizing:border-box;
}

#main .shop_details table .shop_img td a img{
width:100%;
}


#main .shop_details table td .tokuten{
	margin:0;
	padding:0;
}

#main .shop_details table td .bottom10{
	margin-bottom:10px;
}

#main .shop_details table td .tokuten h4{
	padding:0;
	margin:0;
}

#main .shop_details table td .tokuten h4 span{
		vertical-align: middle;
		font-size:1.05em;
}

#main .shop_details table td .tokuten h4 img{
	vertical-align: middle;
	padding-right:5px;
	width:auto;
	height:30px;
}

#main .shop_details table td .tokuten p{
	margin:0;
	padding:5px 0;
	}





#main .shop_details table a{
	text-decoration: underline;
}

#main .shop_details table td iframe{
	width: 100%;
	height:400px;
}

#main .shop_details .sns_line{
    color: #00B900;
    font-size: 1.5em;
}

#main .shop_details .sns_x{
    color: #0F1419;
    font-size: 1.5em;
}

#main .shop_details .sns_facebook{
    color: #4267B2;
    font-size: 1.5em;
}

#main .shop_details .sns_instagram{
   color: #FF7A00;
    font-size: 1.5em;
}

#main .checksheet{
    font-size: 1.1em;
}


#main .checksheet h1{
    text-align: center;
    font-size: 2em;
    font-weight: 700;
    padding-bottom:40px;
}

#main .checksheet h1 span{
    display: block;
    font-size: 0.8em;
    color: #8e5015;
}

#main .checksheet .check_menu{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
    
}

#main .checksheet .check_menu a{
    display: flex;
    align-items: center;
    width: 48%;
    background-color: #fff;
    border-radius: 24px;
    border:solid 3px #8e5015;
    font-family: "Zen Maru Gothic", serif;
    font-size: 1.5em;
    font-weight: 600;
    padding: 0 48px;
    margin-bottom: 24px;
    cursor: pointer;
    height: 200px;
    text-decoration: none;
}

#main .checksheet .check_menu a:hover{
    border:solid 3px #EC7897;
    background-color: #FAF5ED;
}

#main .checksheet .check_menu a p{
    margin-left: 48px;
}

#main .checksheet .check_menu a p span{
    font-size: 0.7em;
}

#main .checksheet .check_menu a img{
    width: 80px;
}

#main .checksheet .check_sheet_img{
    text-align: center;
    margin-bottom: 48px;
    margin-top: 16px;
}

#main .checksheet .check_sheet_img img{
    width: 70%;
    max-width: 480px;
}


#main .checksheet .check_top_text{
    font-size: 1.4em;
}


#main .checksheet .check_start {
    text-align: center;
    margin: 120px 0;
}

#main .checksheet .check_start button{
    border-radius: 80px;
    background-color:  #8e5015;
    padding: 12px 48px;
    border: none;
    cursor: pointer;
    color:#fff;
    font-size: 1.5em;
}

#main .checksheet .check_start button:hover{
    opacity: 0.8;
}

#main .checksheet .check_top_img{
    background-image: url(../img/check01.png);
    width: 100%;
    display: block;
    content: "";
    height: 80px;
    background-repeat: repeat-x;   
    background-size: contain;
    background-position:center;
}

#main .checksheet .check_exam .exam_title{
    background-color: #fafafa;
    border:solid 3px  #EC7897;
    border-bottom: none;
    display: inline-block;
    padding: 16px 32px 8px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    margin-bottom: -3px;
    z-index: 10;

}

#main .checksheet .check_exam .exam_box{
    padding: 32px;
    border-radius: 0 8px 8px 8px;
    background-color: #fafafa;
    border:solid 3px  #EC7897;
}


.progress-container {
  width: 100%;
  height: 24px;
  margin-bottom: 24px;
  background-color: #f3f3f3;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: inset 0 0 5px rgba(0,0,0,0.1);
  position: relative; /* 相対位置基準にするため追加 */
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #FFB347, #FF7733);
  width: 0;
  transition: width 0.4s ease;
  border-radius: 12px 0 0 12px;
}

/* 真ん中に固定されるラベル */
.progress-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #333;
  font-weight: bold;
  font-size: 0.85rem;
  pointer-events: none;
  white-space: nowrap;
}



#main .checksheet .check_exam .exam_box dl{
    display: block;
    font-size: 2em;
    margin-bottom: 80px;
}

#main .checksheet .check_exam .exam_box dl dt{
    color: #EC7897;
}

#main .checksheet .check_exam .exam_box .radio {
    display: none;
}

#main .checksheet .check_exam .exam_box .radio_label {
    display: block;
    width: 100%;
    font-size: 1.5em;
    padding: 12px 0 12px 48px;
    margin-bottom: 16px;
    border-radius: 16px;
    cursor: pointer;
    text-align: left;
    border: solid 3px #8E5015;
    background-color: #fff;
    position: relative;
}

/* 選択時の見た目変更（任意） */
#main .checksheet .check_exam .exam_box input[type=radio]:checked + label {
    background-color: #FDE8D1; /* 例えばオレンジ系の背景 */
    border-color: #8E5015;
}




#main .checksheet .check_exam .exam_box .button1 button:hover{
    background-color: #ecfcff;
    border: solid #64B7C9;
}

#main .checksheet .check_exam .exam_box .button2 button:hover{
    background-color: #f4fce9;
    border: solid #8CB65C;
}

#main .checksheet .check_exam .exam_box .button3 button:hover{
    background-color: #fdf9ec;
    border: solid #FCEE21;
}

#main .checksheet .check_exam .exam_box .button4 button:hover{
    background-color: #fff7ea;
    border: solid #FAB857;
}

#main .checksheet .check_exam .exam_box .button5 button:hover{
    background-color: #fff3f8;
    border: solid #EC7897;
}

#main .checksheet .check_exam .exam_box .option_text{
    font-size: 1.4em;
}


#main .checksheet .check_exam .exam_box .option li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.4em;
}

#main .checksheet .check_exam .exam_box input[type=checkbox] {
    display: none;
}

#main .checksheet .check_exam .exam_box .check_label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    user-select: none;
}

/* チェックボックスの外枠 */
#main .checksheet .check_exam .exam_box .check_label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border: 3px solid #8E5015;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.2s;
}

/* チェックマーク */
#main .checksheet .check_exam .exam_box input[type=checkbox]:checked + label::after {
    content: "\f00c"; /* チェックマークのアイコン */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 8px;
    font-size: 20px;
    color: #8E5015;
}

/* ホバー効果（任意） */
#main .checksheet .check_exam .exam_box input[type=checkbox] label:hover::before {
    background-color: #FDE8D1;
}



#main .checksheet .page_button {
    display: flex;
    justify-content: center;
    margin: 40px 0;
}




#main .checksheet .page_button a{
    border-radius: 80px;
    background-color:  #8e5015;
    width: 240px;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 0 16px;
    color:#fff;
    font-size: 1.2em;
     padding: 12px;
     text-align: center;
     text-decoration: none;
}


#main .checksheet .error{
    text-align: center;
    margin: 0 0 24px 0;
    color: red;

}





.selectbox-3 {
    display: inline-flex;
    align-items: center;
    position: relative;
}

.selectbox-3::after {
    position: absolute;
    right: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-3 select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
}

#main .checksheet .survey{
    text-align: center;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

#main .checksheet .survey ul{
    margin: 80px 0 80px;
}

#main .checksheet .survey ul li{
    margin-bottom: 24px;
}

#main .checksheet .survey ul p{
    display: block;
    text-align: left !important;
    font-size: 1.2em;
    margin-bottom: 8px;
    font-weight: bold;
}

.radio-group {
  display: flex;
  gap: 12px;
  margin: 16px 0;
  align-items: center;
  flex-wrap: wrap;
}

.radio-group2{
    display: block;
    gap: 0;
    align-items: left;
    text-align: left;
}
.radio-group2 div{
    margin-bottom: 8px;
}




.radio-group input[type="radio"] {
  accent-color: #8e5015; /* 深緑（選択時の円の色） */
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* ホバー時のフォーカスリングを追加 */
.radio-group input[type="radio"]:hover {
  outline: 2px solid #74C69D;
  outline-offset: 2px;
}

/* キーボードフォーカスが来たとき */
.radio-group input[type="radio"]:focus-visible {
  outline: 3px solid #74C69D;
  outline-offset: 2px;
}

/* ラベルの見た目は自然なままで少し余白だけ */
.radio-group label {
  margin-right: 8px;
  font-size: 1em;
  color: #333;
  cursor: pointer;
}



#main .checksheet .survey textarea{
    width: 100%;
    border: solid 1px #ccc;
    border-radius: 8px;
    padding:8px;
    height: 120px;

}



#main .checksheet .survey .search_button {
    text-align: center;
}


#main .checksheet .survey .search_button a {
    font-size: 1.2em;
    padding: 16px 48px;
    border-radius: 16px;
    background-color: #8e5015;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}

#main .checksheet .result{
    text-align: center;
}

#main .checksheet .result h3{
    font-size: 1.6em;
}

#main .checksheet .result p{
    margin: 40px;
    text-align: justify;
    text-align: left !important;
}



footer{
    margin-top: -120px;
    border-top-left-radius: 50% 100px;
    border-top-right-radius: 50% 100px;
    background-image: url("../img/footer.png");
    background-image: -webkit-linear-gradient(#d8e49f 0%, #a3b74e 100%);
    background-image: -o-linear-gradient(#d8e49f 0%, #a3b74e 100%);
    background-image: linear-gradient(#d8e49f 0%, #a3b74e 100%);
    position: relative;
    padding-bottom: 80px;
}


footer .f_img{
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}



footer .container .link_list{
    padding: 120px 0;
    text-align: center;
}

footer .container .link_list h2{
    text-align: center;
    font-size: 2.5em;
    font-weight: 700;
    padding-bottom:80px;
}


footer .container .link_list h2 span{
    display: block;
    font-size: 0.8em;
    color: #8e5015;
}

footer .container .link_list ul{
    display: flex;
    justify-content: center;
}

footer .container .link_list ul li{
    padding: 16px;
}


footer .container .link_list ul li img{
    height: 80px;
}


.footer_main{
    padding: 40px;
    border-radius: 24px;
    background-color: #fff;
}


.footer_main li a::before {
    content: "\f138";  
    font-family: 'Font Awesome 6 Free', sans-serif;
    padding-right: 16px;
    font-weight: 900 !important; /* 必要に応じて */
    color: #f7931e;
}

.footer_main h5{
    font-size: 1.1em;
    margin: 8px 0;
}


.footer_main .f_menu_list{
    display: flex;
    width: 100%;
}

.footer_main .f_menu_list div{
   flex-grow: 1;
}

.footer_submenu{
    margin: 8px 0;
    display: flex;
    justify-content: space-between;
}

.footer_submenu ul{
    display: flex;
}

.footer_submenu ul li{
    margin-right: 16px;
}


.copyright{
    padding: 32px 0;
    text-align: center;
}


.pc{
    display: block;
}

.sp{
    display: none !important;
}




/* デスクトップ (Large devices) */
@media (min-width: 1200px) and (max-width: 1599px)  {
    
    html {
        font-size: 15px;
    }

    .container {
        width: 1120px;
        margin: 0 auto;
    }
    
    .h_title img{
        width: 200px;
    }
    
    
    .hero_title img{
    width:480px;
}
    
    #home_second div ul .news_box .news_img1{
    position: absolute; /* 重ねるために absolute を使用 */
    top: 0%; /* 上から50%の位置に配置 */
    right: 0%; /* 左から50%の位置に配置 */
}


#home_second div ul .news_box .news_img2{
    position: absolute; /* 重ねるために absolute を使用 */
    bottom: 0%; /* 上から50%の位置に配置 */
    right: 0%; /* 左から50%の位置に配置 */
}


    #home_second div ul .news_box .news_img1 img{
    width: 80px;
}


#home_second div ul .news_box .news_img2 img{
    width: 80px;
}

#top_fourth .container .shop_search dl dt{
    width: 15%;
}

#top_fourth .container .shop_search dl dd{
    width: 85%;
    display: flex;
    flex-wrap: wrap;
}

#top_fourth .container .shop_search dl dd div{
    width: 20%;
    display: inline-block;
}

#top_fourth .container .shop_search dl dd ul{
    width: 80%;
    margin-bottom: 20px;
}


#top_fourth .container .shop_search dd .flex4 li{
    width: 33%;
    margin-bottom: 8px;
}



    #top_fourth h2 img{
        width: 80%;
    }
    
    footer .f_img img{
        width: 100%;
    }
    
    .footer_main .f_menu_list{
        flex-wrap: wrap;
    }


    
}


@media (min-width: 1200px){



#top header .h_title{
    padding: 16px 48px;
}


#top header nav{
    display: flex;
    padding:8px 0 0;
}

#top header nav .mainmenu{
    display: flex;
}

#top header nav .mainmenu li{
    text-align: center;
    font-size: 16px;
    
}

#top header nav .mainmenu li:last-child{
    border: none;
}



#top header nav .mainmenu li span{
    display: block;
    color: #42210b;
}

.mainmenu {
    list-style: none;
    padding: 0;
}

.mainmenu li:hover{
    color: #f7931e;
}

.mainmenu > li {
    position: relative;
    width: 180px;
    cursor: pointer;
    display: inline-block; /* メインメニューを横並びに */
    padding-bottom: 8px; 
    border-right: 1px dotted #635e56;
}

.mainmenu li .submenu {
    display: none; /* 初期状態では非表示 */
    position: absolute;
    top: 100%; /* 親メニューの真下に表示 */
    left: -250px;
    background-color: rgba(255, 255, 255);
    padding: 24px 32px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    width: 400px;
    border-radius:0 0 40px 40px;
}

.mainmenu li:hover .submenu {
    display: block; /* ホバー時に表示 */
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.submenu li {
    padding: 5px 0;
}


.submenu li a {
    display: flex;         /* フレックスボックスを使用 */
    justify-content: space-between; /* 左右に配置 */
    align-items: center;
    text-decoration: none;
    padding: 8px 10px; 
    border-bottom:solid 1px #42210b;
    text-align: left;
}

.submenu li a::after {
    content: '＞';  
    font-size: 14px;  
}




    .mainmenu > li {
    position: relative;
    width: 140px;
}

}






@media (max-width: 1199px){

.pc{
    display: none;
}

.sp{
    display: block !important;
}
    

    body{
        font-size: 75%;
    }


#main .search-box{
    display: none !important;
}


    header{
        position: fixed;
        z-index: 10000;
        padding: 0;
        margin: 0;
    }    

    .h_title{
        padding: 0;
        margin: 0;
    }

    .h_title img{
        width: 180px;
        padding: 16px 0;
    }
    
    .mainmenu > li{
        align-items: center;
        display:flex;
        flex-wrap: wrap;
        padding: 16px 0;
        color: #383838;
    }

   
    
    .mainmenu li img{
        width: 32px;
        padding:0 8px;
    }    
    
    .mainmenu > li > a img{
        padding:0 8px 0 0;
        margin: 0;
    }

    .mainmenu > li > a{
        align-items: center !important;
        display:flex !important;
        padding: 0 8px;
    }


    .mainmenu br{
        display: none;
    }

    .submenu li{
        display: flex;
        padding: 8px 0 8px 48px;
        box-sizing: border-box !important;
    }

    .submenu li br{
        display: block;
    }



    .submenu li a::after{
        content: "\f054";  
    font-family: 'Font Awesome 6 Free', sans-serif;
    padding:0 16px;
    font-weight: 900 !important; /* 必要に応じて */
    }

    .search-box {
        display: flex;
        align-items: center;
        gap: 8px; /* ボタンと入力欄の間のスペース */
        padding: 8px 0;
        justify-content: flex-end;
    }
    
    .mainmenu .sp{
        display: flex;
        justify-content: flex-start;
    }


    .input-container {
        display: flex;
        align-items: center;
        border: 2px solid #635e56; /* 枠線 */
        border-radius: 16px; /* 角丸 */
        padding: 8px; /* 内側余白 */
        background-color: #fff;
    }
    
    .input-container i {
        color: #aaa; /* アイコンの色 */
        margin-right: 8px; /* アイコンと入力欄の間のスペース */
    }
    
    .input-container input {
        width: 160px; /* 必要に応じて変更 */
        font-size: 1em;
    }
    
    .search-box button {
        background-color: #8e5015; /* ボタンの色 */
        color: #fff; /* 文字色 */
        border: none;
        border-radius:16px;
        padding: 8px;
        font-size: 1em;
        font-weight: bold;
        cursor: pointer;
    }
    
    
    /* Font Awesome アイコンのスタイル */
    .search-box button i {
        font-size: 2em;
    }
    



    
    .container{
        width: calc(100% - 36px);

    }    

    #kosodate_banner ul{
        display: block;
    }

    #kosodate_banner ul li{
        width: 100%;
        padding: 0;
        margin-bottom: 16px;
    }

    #kosodate_banner ul li img{
        width: 100%;
        border-radius: 16px;
    }

    

    #top_first {
        padding-top: 20px;
    }
    
    #top_first .top_hero_sp img{
        width: 100%;
    }
    

    #home_second{
        padding:60px 0;
        background-color: #faf5ed;
    }
    
    
    #home_second h2{
        text-align: center;
        font-size: 1.8em;
        font-weight: 700;
        padding-bottom:24px;
    }
    
    #home_second h2 span{
        display: block;
        font-size: 0.8em;
        color: #f7931e;
    }
    
    #home_second div ul{
        display: block;
        width: 100%;
    }
    
    #home_second div ul .news_box{
        background-color: #fff;
        padding: 16px;
        width: 100%;
        border-radius: 24px;
         position: relative; 
         margin-bottom: 48px;
    }
    
    
    #home_second div ul .news_box .news_img1{
        display: none;
    }

    #home_second div ul .news_box .news_img2{
        display: none;
    }
    
    
    #home_second div ul .news_box h3{
        font-size: 1.5em;
    }
    
    #home_second div ul .news_box ol{
        padding: 16px;
    }
    

    
    #top_third h2{
        font-size: 1.8em;
        padding-bottom:40px;
    }
    
    
    #top_third .shop_about ul {
        padding: 24px;
        display: block;
        border-radius: 24px;
        margin-bottom: 24px;
    }
    
    #top_third .shop_about ul li {
        width: 100%;
        border: none;
    }
    

    
    #top_third .shop_about ul li h3{
        font-size: 1.5em;
    }
    
    #top_third .shop_about a{
        color: #f7931e;
        padding: 4px 24px;
        border:solid 1px #f7931e;
        border-radius: 24px;
        font-weight: 700;
        font-size: 1.1em;
    }
    
    #top_third .shop_about a i{
        padding-left: 16px;
    }
    
    
    #top_fourth{
        background-color: #faf5ed;
        padding-top: 80px;
        padding-bottom: 120px;
        border-bottom-left-radius: 50% 30px;
        border-bottom-right-radius: 50% 30px;  
    }
    
    #top_fourth .container{
        padding: 0 8px 80px;
    }

    
    #top_fourth h2 img{
        text-align: center;
        width: 50%;
    }
    

    #top_fourth .container .shop_counts ul{
        display: block;
}

    #top_fourth .container .shop_counts li {
        width: 100%;
        margin-bottom: 8px;
        border: none;
    }

    
    #top_fourth .shop_counts ul li:nth-child(2n){
        border: none;
    }
    
    #top_fourth .container .shop_search{
        padding: 0;
    }


    #top_fourth .container .shop_search dl{
    display: block;
    padding: 8px;
}

#top_fourth .container .shop_search dl dt{
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}


    
#top_fourth .container .shop_search dl dd input[type=text]{
    width: 100%;
}

#top_fourth .container .shop_search dl dd div{
    width: 100%;
}

#top_fourth .container .shop_search dl dd{
    width: 100%;
    display: block;
}

#top_fourth .container .shop_search dl dd ul{
    width: 100%;
}
    
    #top_fourth .container .shop_search dd .flex2 li{
    width: 100%;
    margin-bottom: 8px;
}


#top_fourth .container .shop_search dd .flex4 li{
    width: 50%;
    margin-bottom: 8px;
}
    
#top_fifth h2{
    font-size: 1.8em;
    padding-bottom:40px;
}


    
    #top_fifth .pickup > li{
    width: 100%;
}
    
.breadcrumb{
    flex-wrap: wrap;
}

.breadcrumb li{
    padding: 4px 0;
}

#main{
    padding-top: 96px;
}

#main .main_contents{
    padding: 20px;
}

#main .main_contents h2{
    font-size: 1.2em;
}

#main .main_contents h3{
    font-size: 1.1em;
}

#main .main_contents img{
    max-width: 100%;
}


#main .search_list dl{
    margin: 24px 0;
    display: block;
}

#main .search_list dl dd{
    padding: 0;
    margin-top: 8px;
}

#main .search_list dl dt img{
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 24px;
}



#main .search_list dl dd .shop_txt{
    margin: 8px 0;
}



#main .search_list dl h4{
    margin: 0 0 8px;
    padding: 0;
    background-color: #fff;
}

#main .main_contents .main_con_list li {
	width: 100%; 
}

#main .main_contents .main_con_list2 li {
	width: 100%; 
}


#main .main_contents .card_box{
    display: block;
    padding: 0;
}

#main .main_contents .card_box div{
    width: 100%;
}


#main .main_contents .card_box div .card_img li img{
    width: 100%;
}




#main .shop_details .base_details{
    display: block;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 16px;
}



#main .shop_details table{
	display: block;
}

#main .shop_details table tr{
    display: block;
}

#main .shop_details table th{
	display: block;
    padding: 8px;
    font-weight: bold;
}

#main .shop_details table td{
	display: block;
    padding: 8px;
}

#main .back_button, #main .next_button{
	width: 100%;
	text-align: center;
	margin: 50px 0 50px;
}

#main .back_button a, #main .next_button a{
	padding:8px;
	width: 80%;
    line-height: 1em;
}

#main .back_button a:hover, #main .next_button a:hover{
    opacity: 0.8;
}

#main .back_button a i{
	float: left;
	line-height: 20px;
}


#main .next_button a i{
	float: right;
	line-height: 20px;
}

#main .checksheet{
    font-size: 0.95em;
}

#main .checksheet h1{
    font-size: 1.7em;
}


#main .checksheet .check_menu a{
    width: 100%;
    height: 140px;
    padding: 0 24px;
}

#main .checksheet .check_menu a:hover{
    border:solid 3px #EC7897;
    background-color: #FAF5ED;
}

#main .checksheet .check_menu a p{
    margin-left: 16px;
    line-height: 1.5em;
}

#main .checksheet .check_menu a p span{
    font-size: 0.7em;
}

#main .checksheet .check_menu a img{
    width: 48px;
}

#main .checksheet .check_start {
    text-align: center;
    margin: 120px 0;
}

#main .checksheet .check_start button{
    border-radius: 80px;
    background-color:  #8e5015;
    padding: 12px 48px;
    border: none;
    cursor: pointer;
    color:#fff;
    font-size: 1.5em;
}

#main .checksheet .check_start button:hover{
    opacity: 0.8;
}

#main .checksheet .check_top_img{
    background-image: url(../img/check01.png);
    width: 100%;
    display: block;
    content: "";
    height: 80px;
    background-repeat: repeat-x;   
    background-size: contain;
    background-position:center;
}

#main .checksheet .check_exam .exam_title{
    background-color: #fafafa;
    border:solid 3px  #EC7897;
    border-bottom: none;
    display: inline-block;
    padding: 16px 16px 8px;
    font-weight: bold;
    border-radius: 8px 8px 0 0;
    margin-bottom: -3px;
    z-index: 10;

}

#main .checksheet .check_exam .exam_box{
    padding: 16px;
    border-radius: 0 8px 8px 8px;
    background-color: #fafafa;
    border:solid 3px  #EC7897;
}

#main .checksheet .check_exam .exam_box dl{
    display: block;
    font-size: 1.3em;
    margin-bottom: 40px;
    font-weight: bold;
}

#main .checksheet .check_exam .exam_box dl dt{
    padding: 0 0 8px;
    color: #EC7897;
}


#main .checksheet .check_exam .exam_box .radio {
    display: none;
}

#main .checksheet .check_exam .exam_box .radio_label {
    display: block;
    width: 100%;
    font-size: 1.2em;
    font-weight: bold;
    padding: 12px;
}

/* 選択時の見た目変更（任意） */
#main .checksheet .check_exam .exam_box input[type=radio]:checked + label {
    background-color: #FDE8D1; /* 例えばオレンジ系の背景 */
    border-color: #8E5015;
}

#main .checksheet .check_exam .exam_box .option_text{
    font-size: 1.2em;
}




#main .checksheet .check_exam .exam_box .option li {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.2em;
}

#main .checksheet .check_exam .exam_box input[type=checkbox] {
    display: none;
}

#main .checksheet .check_exam .exam_box .check_label {
    position: relative;
    padding-left: 40px;
    cursor: pointer;
    user-select: none;
}

/* チェックボックスの外枠 */
#main .checksheet .check_exam .exam_box .check_label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    border: 3px solid #8E5015;
    border-radius: 6px;
    background-color: #fff;
    transition: all 0.2s;
}

#main .checksheet .check_exam .exam_box input[type=checkbox]:checked + label::after {
    content: "\f00c"; /* チェックマークのアイコン */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 4px;
    top: 8px;
    font-size: 20px;
    color: #8E5015;
}

/* ホバー効果（任意） */
#main .checksheet .check_exam .exam_box input[type=checkbox] label:hover::before {
    background-color: #FDE8D1;
}





#main .checksheet .check_exam .exam_box .button1 button:hover{
    background-color: #ecfcff;
    border: solid #64B7C9;
}

#main .checksheet .check_exam .exam_box .button2 button:hover{
    background-color: #f4fce9;
    border: solid #8CB65C;
}

#main .checksheet .check_exam .exam_box .button3 button:hover{
    background-color: #fdf9ec;
    border: solid #FCEE21;
}

#main .checksheet .check_exam .exam_box .button4 button:hover{
    background-color: #fff7ea;
    border: solid #FAB857;
}

#main .checksheet .check_exam .exam_box .button5 button:hover{
    background-color: #fff3f8;
    border: solid #EC7897;
}



#main .checksheet .page_button {
    display: flex;
    justify-content: center;
    margin: 40px 0 0;
    flex-wrap: wrap-reverse;
}

#main .checksheet .page_button a{
    border-radius: 80px;
    background-color:  #8e5015;
    width: 240px;
    border: none;
    cursor: pointer;
    display: inline-block;
    margin: 0 16px;
    color:#fff;
    font-size: 1.2em;
     padding: 12px;
     text-align: center;
     text-decoration: none;
     margin-bottom: 40px;
}





.selectbox-3 {
    display: block;
    align-items: center;
    position: relative;
}

.selectbox-3 span{
    display: block;
    margin-bottom: 4px;
}

.selectbox-3::after {
    position: absolute;
    right: 15px;
    bottom: 15px;
    width: 10px;
    height: 7px;
    background-color: #535353;
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    content: '';
    pointer-events: none;
}

.selectbox-3 select {
    appearance: none;
    min-width: 230px;
    height: 2.8em;
    padding: .4em calc(.8em + 30px) .4em .8em;
    border: 1px solid #d0d0d0;
    border-radius: 3px;
    background-color: #fff;
    color: #333333;
    font-size: 1em;
    cursor: pointer;
    width: 100%;
}

#main .checksheet .survey{
    text-align: center;
}




#main .checksheet .result{
    text-align: center;
}

#main .checksheet .result h3{
    font-size: 1.3em;
}

#main .checksheet .result p{
    margin:24px 0 0 0;
}



footer .f_img img{
    width: 100%;
}





.footer_main{
    padding: 24px;
    border-radius: 24px;
}



    footer .container .link_list ul{
    display: block;
}
    
    .footer_main .f_menu_list{
    display: block;
}


.footer_submenu{
    display: block;
}
    
    
    
    
.copyright{
    padding: 32px 0;
    text-align: center;
}


}




