@charset "utf-8";

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
  -webkit-overflow-scrolling: touch !important;
 
  -webkit-touch-callout:none;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

a:link,a:visited,a:hover,a:active{
    color: #00634F;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select {
  vertical-align: middle;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background-repeat: no-repeat;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.hidden {
  display: none;
}

/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html{
  font-size: 16px;
}

@font-face{
    font-family: Noto Sans JP;
    src: url("../font/Noto_Sans_JP/NotoSansJP-Regular.otf") format("truetype");
}

body{
    /*ゴシック*/
    font-family: 'Noto Sans JP','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','MS PGothic','メイリオ',Meiryo, Osaka,sans-serif;
    color: #333;
    line-height: 32px;
}

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

/*共通の設定
---------------------------------------------------------------------------*/
.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

.pc_hd {
    display: block !important;
}

.sp_hd {
    display: none !important;
}

@media only screen and (max-width: 980px) {
    .pc_hd {
        display: none !important;
    }

    .sp_hd {
        display: block !important;
    }
    .hd_space {
    	height: 50px;
    }
    .hd_space_top {
    	height: 80px;
    }
}

@media only screen and (max-width: 750px) {
    .pc {
        display: none !important;
    }

    .sp {
        display: block !important;
    }
}

/*header
---------------------------------------------------------------------------*/
.pc_header_wrap {
	width: 100%;
}

.pc_header_wrap > .header_navarea {
	height: 130px;
	padding-left: 15px;
	padding-right: 15px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.header_navarea > a > h1 {
	width: 20em;
}
.header_navarea > a > h1 > img {

}

.header_rightarea {
	display: flex;
}
.header_rightarea > nav > ul {
	padding-right: 5px;
	padding-top: 20px;
}
.header_rightarea > nav > ul > li {
	display: inline-block;
	font-weight: bold;
	color: #00634F;
	padding-right: 10px;
}

.header_rightarea .header_tel_info {
	width: 285px;
}

.header_rightarea > .header_tel_info > .mark {
	height: 27px;
	background-color: #C0272D;
	border-radius: 20px;
	color: #fff;
	font-size: 16px;
	line-height: 1.8;
	font-weight: bold;
	letter-spacing: 2px;
	text-align: center;
}
.header_rightarea > .header_tel_info .header_tel_number {
	width: 285px;
	text-align: center;
	font-size: 26px;
	font-weight: bold;
	padding-top: 5px;
}
.header_rightarea > .header_tel_info .header_tel_number > img {
	width: 30px;
	padding-right: 3px;
}
.header_rightarea > .header_tel_info a {
	color: #333;
}
.sp_header_wrap {
	position: fixed;
    top: 0;
    left:0;
    height: 50px;
    width: 100%;
	background-color: #00634F;
}

.sp_header_wrap > .header_logo_sp {
	padding-left: 8px;
	padding-top: 5px;
}
.header_logo_sp > h1 > img {
	width: 250px;
}

/*　---------------------------------------ハンバーガーメニュー*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 5px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 2px ;
  left    : 6px;
  background : #fff;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.sp_nav {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background-color: #00634F;
  text-align: left;
  width: 100%;
  opacity: 0;
  transition: opacity .6s ease, visibility .6s ease;
  padding-top: 50px;
  padding-bottom: 50px;
  visibility: hidden;
}
.sp_nav > .spnav_logo {
	width: 85%;
	margin: 0 auto;
	margin-bottom: 20px;
}

nav.sp_nav ul {
  margin: 0 auto;
  padding: 0;
  width: 85%;
}

nav.sp_nav ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  transition: .4s all;
  border-bottom: 1px solid #fff;
}
nav.sp_nav ul li:last-child {
  padding-bottom: 0;
}
nav.sp_nav ul li:hover{
  background :none;
}

nav.sp_nav ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.sp_nav.active {
  opacity: 100;
  visibility: visible;
}

/*フローティングバナー
-----------------------*/

.fixed_btn_sp {
    position: fixed;
    bottom: 10px;
    right: 10px;
    padding: 8px 10px;
    z-index: 20;
}

.fixed_btn_sp  .fixed_sp {
    width: 100px;
}

/*メインビジュアルPC
-----------------------*/
.pc_header > .pc_mainvisual {
	width: 100%;
	background-image: url("../images/top_back.png");
	background-size: cover;
	height: 600px;
	position: relative;

}
.pc_header > .pc_mainvisual > img {
	bottom: 0px;
	display: block;
	max-width: 900px;
	margin: 0 auto;
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-41%);
}
@media only screen and (min-width: 780px) {
	.sp_mainvisual {
		text-align: center;
	}
    .sp_mainvisual > img {
    	width: 70%;
    }
}
@media only screen and (max-width: 779px) {
	.sp_mainvisual {
		text-align: center;
	}
    .sp_mainvisual > img {
    	width: 80%;
    }
}

/*TOPページ
---------------------------------------------------------------------------*/
.top_sec1 {
	padding: 100px 0 100px 0;
}
.top_sec1_wrap {
	
}
.top_sec1_wrap > h3 {
	font-weight: 900;
	font-size: 32px;
	line-height: 2;
	letter-spacing: 2px;
	text-align: center;
}
.top_sec1_cntn1 {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding-top: 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.top_sec1_cntn1 > .top_sec1_img {
	width: 475px;
}

.top_sec1_cntn1 > .top_sec1_txt {
	width: 480px;
	text-align: left;
	font-weight: bold;
	padding-top: 20px;
}

.top_sec1_cntn1 > .top_sec1_txt > .explan_txt {
	line-height: 1.78;
}
.top_sec1_cntn1 > .top_sec1_txt > .explan_txt span {
	color: #333;
	border-bottom: 1px solid #333;
}

.top_sec1_cntn2 {
	padding-top: 30px;
	text-align: center;
}

.top_sec1_cntn2 > .y_3box {
	width: 1000px;
	margin: 0 auto;
}

.top_sec1_cntn2 > .y_3box > .y_box_list {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-bottom: 30px;
}
.top_sec1_cntn2 > .y_3box > .y_box_list > li {
	width: 300px;
}
.top_sec1_cntn2 > .y_3box > .y_box_list > li > p {
	width: 300px;
	background-color: #FBED21;
	padding-top: 10px;
	padding-bottom: 10px;
	font-weight: 900;
	font-size: 24px;
	color: #00634F;
}
.top_sec1_cntn2 > .top_soudan_copy {
	font-size: 24px;
	font-weight: bold;
	color: #00634F;
	line-height: 1.8;
}

.top_sec2 {
	background-image: url("../images/top_kaitori_back.png");
	background-repeat: no-repeat;
	background-size: cover;
}
.top_sec2_wrap {
	padding-top: 100px;
	padding-bottom: 80px;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.top_sec2_wrap > .top_sec2_ttl {
	font-size: 32px;
	padding-bottom: 20px;
	letter-spacing: 2px;
}
.top_sec2_wrap > .top_kaitorihinmoku_txt {
	font-size: 16px;
	font-weight: bold;
}
.top_sec2_wrap > .top_sec2_listwrap {
	padding-top: 50px;
	padding-bottom: 30px;
}
.kaitori_rist {
	max-width: 965px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.kaitori_rist > .hinmoku_box {
	width: 305px;
	height: 330px;
	padding: 13px;
	border-radius: 10px;
	background-color: #fff;
	margin-bottom: 20px;
}
.kaitori_rist > .hinmoku_box > .hinmoku_img {
	width: 280px;
}
.kaitori_rist > .hinmoku_box > .hinmoku_name {
	padding-top: 13px;
	padding-bottom: 5px;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 1.2px;
}
.kaitori_rist > .hinmoku_box > .hinmoku_sublist {
	line-height: 1.6;
}

/*----------------------------------section1-2 responsive*/
@media only screen and (max-width: 980px) {
	.top_sec1 {
		padding: 80px 0 30px 0 ;
	}
	.top_sec1_wrap {
		width: 95%;
		margin: 0 auto;
		padding-bottom: 50px;
	}
	.top_sec1_wrap > h3 {
	font-weight: 900;
	font-size: 28px;
	line-height: 1.6;
	letter-spacing: 1px;
}
	.top_sec1_wrap > h3 .sp {
		font-size: 16px;
	}
	.top_sec1_cntn1 {
	justify-content: center;
}
	.top_sec1_cntn1 > .top_sec1_img {
		
	}
	.top_sec1_cntn2 {
}

.top_sec1_cntn2 > .y_3box {
	max-width: 400px;
	margin: 0 auto;
	text-align: center;
}

.top_sec1_cntn2 > .y_3box > .y_box_list {
	justify-content: center;
	padding-bottom: 10px;
}
.top_sec1_cntn2 > .y_3box > .y_box_list > li {
	margin-bottom: 20px;
}
	.top_sec2_wrap {
		padding-top: 50px;
		padding-bottom: 50px;
	}
	}

@media only screen and (max-width: 750px) {
	.top_sec1 {
	padding: 80px 0 50px 0;
}
.top_sec1_wrap {
    padding-bottom: 20px;
}
.top_sec1_cntn1 {
    padding-top: 30px;
}
.top_sec1_wrap > h3 {
	font-weight: 900;
	font-size: 25px;
	line-height: 1.6;
	letter-spacing: 1px;
}
	.top_sec2_wrap {
		padding-bottom: 50px;
	}
	.top_sec2_wrap > .top_kaitorihinmoku_txt {
	width: 95%;
	margin: 0 auto;
}
}

	/*----------------------------買取品目リスト*/
	@media only screen and (max-width: 980px) {
	.kaitori_rist {
		width: 70%;
		margin: 0 auto;
	}
	}
	@media only screen and (max-width: 860px){
		.kaitori_rist {
			width: 80%;
			margin: 0 auto;
		}
	}
	@media only screen and (max-width: 750px){
		.kaitori_rist {
			width: 75%;
			margin: 0 auto;
		}
		.kaitori_rist > .hinmoku_box {
			width: 45%;
			height: 250px;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_img {
			width: 98%;
			text-align: center;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_img > img {

		}
		.kaitori_rist > .hinmoku_box > .hinmoku_name {
			font-size: 15px;
			padding-top: 8px;
			padding-bottom: 0;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_sublist {
			font-size: 14px;
		}
	}
	@media only screen and (max-width: 560px){
		.kaitori_rist {
			width: 94%;
			margin: 0 auto;
		}
		.kaitori_rist > .hinmoku_box {
			width: 48%;
			height: 270px;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_img {
			width: 98%;
			text-align: center;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_img > img {

		}
		.kaitori_rist > .hinmoku_box > .hinmoku_name {
			font-size: 16px;
			padding-top: 8px;
			padding-bottom: 0;
		}
		.kaitori_rist > .hinmoku_box > .hinmoku_sublist {
			font-size: 14px;
		}
	}

.top_sec3 {
	padding-top: 100px;
	padding-bottom: 100px;
	background-color: #F7F7F7;
}
.top_sec3_wrap {
	max-width: 1000px;
	margin: 0 auto;
}

.top_sec3_wrap > .top_sec3_ttl {
	font-size: 32px;
	font-weight: 900;
	line-height: 1.8;
	color: #C0272D;
	text-align: center;
	margin-bottom: 10px;
}
.top_sec3_wrap > .top_kaitorianshin_txt {
	font-size: 16px;
	font-weight: bold;
	text-align: center;
	color: #C0272D;
}

.top_sec3_cntn1 {
	max-width: 1000px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin-top: 40px;
}
.top_sec3_cntn1 > .anshin_item {
	width: 290px;
}

.anshin_item > .an_item_sub {
	padding-bottom: 5px;
	border-bottom: 2px solid #00634F;
	margin-bottom: 20px;
}

.anshin_item > .an_item_sub > p {
	color: #00634F;
	font-weight: 900;
	font-size: 18px;
	letter-spacing: 1.2px;
}
.anshin_item > .an_item_sub > p > span {
	font-size: 24px;
}
.anshin_item > .an_item_img {
	height: 250px;
	padding-top: 15px;
	padding-bottom: 15px;
	text-align: center;
}
.anshin_item > .an_item_img > .an_item2 {
	padding-top: 20px;
}
.anshin_item > .an_item_img > .an_item3 {
	padding-top: 20px;
}
/*----------------------------------section3 responsive*/

@media only screen and (max-width: 860px) {
	.top_sec3 {
		padding-top: 80px;
		padding-bottom: 50px;
	}
	.top_sec3_wrap {
	width: 95%;
	margin: 0 auto;
}
	.top_sec3_cntn1 {
		width: 302px;
		margin: 0 auto;
		display: block;
		padding-top: 50px;
	}
	.top_sec3_cntn1 > .anshin_item {
		margin-bottom: 40px;
	}
}

@media only screen and (max-width:750px) {
	.top_sec3_wrap > .top_sec3_ttl {
	font-size: 26px;
	font-weight: 900;
}
}

.top_sec4  {
	padding-top: 100px;
	padding-bottom: 50px;
}
.top_sec4 > .top_sec4_wrap {
	max-width: 940px;
	margin: 0 auto;
}

.top_sec4_wrap > .top_sec4_ttl {
	font-size: 36px;
	font-weight: 900;
	margin-bottom: 70px;
	text-align: center;
}
.top_sec4_wrap > .top_sec4_cntn1 {
	max-width: 940px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}
.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_img {
	max-width: 400px;
}
.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo {
	margin-left: 40px;
	padding-top: 10px;
}
.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo > dl {
	display: flex;
	margin-bottom: 10px;
}
.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo > dl > dt {
	width: 150px;
	font-weight: bold;
}

.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo > dl > dd {

}

.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo > p {
	color: #333;
	font-weight: 700;
	line-height: 1.6;
}

/*----------------------------------section4 responsive*/
@media only screen and (max-width: 860px) {
	.top_sec4 > .top_sec4_wrap {
		width: 95%;
		margin: 0 auto;
	}
	.top_sec4_wrap > .top_sec4_ttl {
		font-size: 25px;
		margin-bottom: 30px;
	}
	.top_sec4_wrap > .top_sec4_cntn1 {
		display: flex;
  justify-content: center;
}
	.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo {
		margin-left: 0px;
	}
	.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_img > img {

}
.top_sec4_wrap > .top_sec4_cntn1 > .top_shop_gaiyo > dl {
    display: block;
    margin-bottom: 10px;
}
}


/*問い合わせエリア
---------------------------------------------------------------------------*/
#toiawase_info_area {
	max-width: 940px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 100px;
}
#toiawase_info_area > .line_bn {
	max-width: 940px;
	margin-bottom: 40px;
}
#toiawase_info_area > .line_bn .pc {
	max-width: 940px;
}
.toiawase_cntn1 {
	max-width: 940px;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.toiawase_cntn1 > .tel_info {
	width: 450px;
	height: 195px;
	background-color: #F2F2F2;
}
.toiawase_cntn1 > .tel_info > h5 {
	font-size: 18px;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 20px;
}
.tel_number_cntn .tel_number > img {
	width: 26px;
}
.tel_number_cntn a  {
	font-size: 26px;
	font-weight: 900;
	color: #333;
	padding-bottom: 10px;
}
.tel_uketsuke {
	margin-top: 10px;
}

.toiawase_cntn1 > .mail_info {
	width: 450px;
	height: 195px;
	background-color: #F2F2F2;
}
.toiawase_cntn1 > .mail_info > h5 {
	font-size: 18px;
	font-weight: bold;
	padding-top: 30px;
	padding-bottom: 10px;
}
.toiawase_cntn1 > .mail_info .mail_btn {
	width: 350px;
	margin: 0 auto;
	background-color: #333333;
	padding-top: 10px;
	padding-bottom: 10px;
}
.toiawase_cntn1 > .mail_info .mail_btn p {
	font-size: 16px;
	font-weight: bold;
	color: #fff;
}
.mail_info .mail_btn img {
	width: 25px;
	margin-right: 10px;
	vertical-align: middle;
}

.toiawase_cntn1 > .mail_info .email_addless {
	padding-top: 15px;
}

#toiawase_info_area > p {
	font-weight: bold;
	color: #C0272D;
	line-height: 1.6;
	margin-top: 15px;
	letter-spacing: 0.8px;
}

@media only screen and (min-width: 860px) {
	#toiawase_info_area > .line_bn .linebn_pc {
		display: block !important;
	}
	#toiawase_info_area > .line_bn .linebn_sp {
		display: none !important;
	}
}
@media only screen and (max-width: 859px) {
	#toiawase_info_area > .line_bn .linebn_sp {
		display: block !important;
		width: 375px;
	}
	#toiawase_info_area > .line_bn .linebn_pc {
		display: none !important;
	}
	#toiawase_info_area {
	max-width: 375px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 50px;
}
.toiawase_cntn1 {
	max-width: 375px;
	margin: 0 auto;
	display: block;
}

.toiawase_cntn1 > .tel_info {
	width: 100%;
	height: 195px;
	margin-bottom: 30px;
}

.tel_number_cntn > .tel_number > img {
	width: 24px;
}
.toiawase_cntn1 > .mail_info {
	width: 100%;
	height: 195px;
}
.toiawase_cntn1 > .mail_info .mail_btn {
    width: 300px;
}

}

@media only screen and (max-width:750px) {
	#toiawase_info_area > p {
		font-size: 15px;
}
}

@media only screen and (max-width: 450px){
	.top_sec4_wrap > .top_sec4_cntn1 {
    width: 95%;
    display: flex;
    flex-wrap: wrap;
}
	#toiawase_info_area > .line_bn {
	width: 95%;
	margin: 0 auto;
	margin-bottom: 40px;
}
}



/*footer
---------------------------------------------------------------------------*/
footer {
	padding-top: 50px;
	background-color: #00634F;
}
footer > .footer_wrap {
	max-width: 95%;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	color: #fff;
	padding-left: 10%;
	padding-right: 10%;
}
.ft_leftarea > h6 {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.ft_leftarea > h6 > .shop_name_sub {
	font-size: 19px;
}
.ft_leftarea > h6 > .shop_name {
	font-size: 26px;
	padding-left: 10px;
}

.ft_leftarea > h6 > .shop_name > span {
font-size: 18px;
}
.ft_leftarea > .shop_sub_txt {
	font-size: 16px;
	margin-bottom: 20px;
}
.ft_leftarea > .ft_tel_number a {
	color: #fff;
	letter-spacing: 1.2px;
}
.ft_leftarea > .ft_tel_number p {
	font-size: 26px;
	font-weight: 900;
}
.ft_leftarea > .ft_tel_number {
	margin-bottom: 10px;
}
.ft_leftarea > .ft_tel_number p > img {
	width: 24px;
	margin-right: 5px;
	margin-bottom: 3px;
}
.ft_leftarea > .open_time {
	line-height: 1.8;
	letter-spacing: 1.1px;
}
.ft_menuarea {
	width: 350px;
}
.ft_menuarea > .ft_menu_ttl {
	padding-bottom: 8px;
	border-bottom: 1px solid #fff;
}
.ft_menuarea > .ft_menu_ttl > p {
	font-size: 17px;
	font-weight: bold;
}

.ft_menuarea > .ft_menu_list {
	padding-top: 8px;
}
.ft_menu_list a {
	color: #fff;
}

.copyright_area {
	width: 95%;
	margin: 0 auto;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
	border-top: 1px solid #fff;
	margin-top: 30px;
	color: #fff;
	font-size: 13px;
}

/*footerここまで
---------------------------------------------------------------------------*/

/*---------------下層ページメインコンテンツ*/
.indivisual_main_contents {
	border-top: 2px solid #00634F;
}


/*---------------パンくずリスト*/
.breadcrumb {
	max-width: 1000px;
	margin: 0 auto;
	text-align: left;
  list-style: none;
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
  font-size: 13px;
}

.breadcrumb li:after {/* >を表示*/
  content: '>';
  padding: 0 0.2em;
  color: #666;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a{
  text-decoration: none;
  color: #333;/*色*/
}

.breadcrumb li a:hover {
  text-decoration: underline;
}
@media only screen and (max-width: 750px) {
.breadcrumb {
	max-width: 100%;
	padding-left: 20px;

}	
}

/*---------------下層ページメインビジュアル*/
.individual_main_visual {
	width: 100%;
	margin: 0 auto;
	height: 420px;
	background-image: url("../images/page_main_back.png");
	background-size: cover;
}

.individual_main_visual > .indv_mv_wrap {
	text-align: center;
	width: 280px;
	margin: 0 auto;
	
}
.individual_main_visual > .indv_mv_wrap > .indv_mv_ttl {
	font-size: 30px;
	letter-spacing: 2px;
	font-weight: 900;
	padding-top: 170px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	border-bottom: 2px solid #333333;
}
.page_lead_sec {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
	padding-top: 80px;
	padding-bottom: 80px;
}
.page_lead_sec > p {
	font-weight: bold;
	line-height: 2.1;
	letter-spacing: 1px;
}
@media only screen and (max-width: 750px) {
	.individual_main_visual {
	width: 100%;
	margin: 0 auto;
	height: 375px;
	background-image: url("../images/page_main_back.png");
	background-size: cover;
}
	.page_lead_sec {
	width: 95%;
	margin: 0 auto;
    text-align: center;
    padding-top: 50px;
    padding-bottom: 50px;
}
.page_lead_sec > p {
    font-weight: bold;
    line-height: 1.9;
    letter-spacing: 1px;
    font-size: 15px;
}
}
/*---------------品目リスト*/

.hinmoku_sec1 {
	background-color: #D7E6E3;
	padding-bottom: 100px;
}
.hinmoku_sec1 > .hinmoku_wrap {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
.hinmoku_title {
	width: 330px;
	margin: 0 auto;
	background-color: #00634F;
	border-radius: 0 0 8px 8px;
	margin-bottom: 50px;

}
.hinmoku_title > p {
	padding-top: 35px;
	padding-bottom: 30px;
	font-size: 23px;
	font-weight: 900;
	color: #fff;
	letter-spacing: 1.8px;
}

/*---------------無料出張サービス*/

.service_contents {
	background-image: url("../images/delisatei_ctt_back.png");
	background-size: cover;
	height: 660px;
	margin-bottom: 100px;
}

.service_contents > .service_contents_wrap {
	max-width: 885px;
	margin: 0 auto;
	text-align: center;
	padding-top: 70px;
}

.service_contents_wrap > .service_ttl {
	color: #fff;
	font-size: 26px;
	line-height: 1.9;
	letter-spacing: 1.1px;
}

.service_contents_wrap > .service_cntn {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 40px;
}
.service_contents_wrap > .service_cntn > .service_item {
	width: 280px;
}
.service_contents_wrap > .service_sub {
	padding-top: 40px;
	color: #FBED34;
	font-weight: bold;
	font-size: 18px;
	letter-spacing: 1.1px;
}
@media only screen and (max-width: 750px) {
.service_contents {
    background-image: url(../images/delisatei_ctt_back_sp.png);
    background-size: cover;
    height: 1207px;
    margin-bottom: 50px;
}
.service_contents > .service_contents_wrap {
    width: 95%;
    margin: 0 auto;
    text-align: center;
    padding-top: 70px;
}
.service_contents_wrap > .service_ttl {
    color: #fff;
    font-size: 22px;
    line-height: 1.7;
    letter-spacing: 1.1px;
}
.service_contents_wrap > .service_cntn {
	width: 95%;
	margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 40px;
}
.service_contents_wrap > .service_cntn > .service_item {
	text-align: center;
	margin-bottom: 20px;
}
.service_contents_wrap > .service_sub {
	width: 95%;
	margin: 0 auto;
    padding-top: 10px;
    font-size: 16px;
    letter-spacing: 1px;
}

}



/*---------------------------------------------------店舗案内ページ*/

.shop_info {
	background-color: #EEF4F3;
} 
.shop_info > .shop_info_wrap {
	width: 100%;
	margin: 0 auto;
	padding-top: 100px;
	padding-bottom: 100px;
}
.shop_info > .shop_info_wrap > .shop_info_image {
	max-width: 940px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.shop_info_image > .shop_image {
	width: 440px;
}

.shop_info_outline {
	max-width: 750px;
	margin: 0 auto;
	padding-top: 70px;
}

.shop_info_outline p {
	color: #12513E;
	font-weight: bold;
	font-size: 18px;
	text-align: center;
	margin-bottom: 50px;
}

.shop_info_outline > dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 40px;
	color: #12513E;
}
.shop_info_outline > dl > dt {
	width: 170px;
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 8px;
	border-bottom: 2.5px solid #12513E;
	padding-left: 10px;
}
.shop_info_outline > dl > dd {
	width: 580px;
	font-size: 17px;
	padding-bottom: 8px;
	border-bottom: 1px solid #12513E;
	padding-left: 10px;
	letter-spacing: 1px;
}

.shop_access {
	max-width: 750px;
	margin: 0 auto;
	padding-top: 70px;

}

.shop_access > dl {
	border-bottom: 1px solid #12513E;
	padding-bottom: 15px;
	color: #12513E;
}

.shop_access > dl > dt {
	width: 170px;
	font-size: 17px;
	font-weight: bold;
	padding-bottom: 8px;
	border-bottom: 2.5px solid #12513E;
	padding-left: 10px;
	letter-spacing: 1px;
}

.shop_access > dl > dd {
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	padding-left: 10px;
}
.shop_access > dl > dd > .access_title {
	width: 170px;
	font-size: 16px;
	font-weight: bold;
	letter-spacing: 1px;
}
.shop_access > dl > dd > .access_detail {
	width: 550px;
	font-size: 16px;
	padding-left: 30px;
	letter-spacing: 1px;
}
.shop_access_map {
	padding-top: 50px;
}

@media only screen and (max-width: 750px) {
	.shop_info > .shop_info_wrap > .shop_info_image {
	max-width: 440px;
	margin: 0 auto;
	text-align: center;
}

.shop_info_image > .shop_image > img {
	width: 95%;
	margin-bottom: 20px;
}
	.shop_info_outline {
	max-width: 85%;
	margin: 0 auto;
	padding-top: 50px;
}
.shop_info_outline > dl {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
	color: #12513E;
}
.shop_info_outline > dl > dt {
	width: 200px;
	font-size: 16px;
	font-weight: bold;
	padding-bottom: 8px;
	border-bottom: 2.5px solid #12513E;
	padding-left: 5px;
}
.shop_info_outline > dl > dd {
	width: 580px;
	font-size: 15px;
	padding-bottom: 0px;
	padding-top: 8px;
	border-bottom: none;
	padding-left: 5px;
	letter-spacing: 1px;
}
.shop_access {
	max-width: 85%;
	margin: 0 auto;
	padding-top: 50px;

}

.shop_access > dl {
	border-bottom: 1px solid #12513E;
	padding-bottom: 15px;
	color: #12513E;
}

.shop_access > dl > dt {
	width: 200px;
	font-size: 16px;
	padding-left: 5px;
}

.shop_access > dl > dd {
	padding-top: 20px;
	display: flex;
	flex-wrap: wrap;
	padding-left: 5px;
}
.shop_access > dl > dd > .access_title {
	width: 200px;
	font-size: 16px;
}
.shop_access > dl > dd > .access_detail {
	max-width: 375px;
	font-size: 15px;
	padding-left: 0px;
}
.shop_access_map {
	padding-top: 20px;
}
.shop_access_map > iframe {
	max-width: 100%;
	text-align: center;
}
}


/*---------------------------------------------------お問い合わせページ*/

.contact_main {
	padding-top: 120px;
	padding-bottom: 100px;
}
.contact_main_wrap {
	max-width: 1000px;
	margin: 0 auto;
}
.contact_main_container1 > .contact_main_title {
	font-size: 30px;
	color: #00634F;
	margin-bottom: 50px;
	text-align: center;
}
.contact_means_box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

}
.contact_means_box > .means_item {
	width: 310px;
	height: 310px;
	border: 2px solid #00634F;
	text-align: center;
	padding-bottom: 10px;
	padding-top: 50px;
}

.contact_means_box > .means_item > img {
	width: 165px;
	margin-bottom: 25px;
}

.contact_means_box > .means_item > .means_img_3 {
	width: 220px;
	padding-top: 20px;
	margin-bottom: 25px;
}
.contact_means_box > .means_item > p {
	font-size: 20px;
	font-weight: bold;
	color: #00634F;
}

.contact_main_container2 {
	max-width: 915px;
	margin: 0 auto;
	padding-top: 80px;
}
.contact_main_container2 > .contact_guide_wrap {
	text-align: center;
	padding-bottom: 100px;
}
.contact_guide_wrap > .contact_guide_headline > p {
	font-size: 24px;
	font-weight: bold;
	color: #12513E;
	padding-bottom: 20px;
	border-bottom: 1px solid #00634F;
	margin-bottom: 30px;

}
.contact_guide_wrap > .contact_detail {
	display: flex;
	flex-wrap: wrap;
}
.contact_detail_img > img {
	width: 350px;
}
.contact_guide_wrap > .contact_detail > .contact_detail_txt {
	width: 560px;
	text-align: left;
	padding-left: 30px;
	color: #00634F;
	font-weight: bold;
	font-size: 15px;
	line-height: 1.8;
	letter-spacing: 1.1px;
}

.contact_guide_wrap > .contact_detail > .contact_detail_txt span {
	color: #00634F;
	border-bottom: 1px solid #00634F;
}
.contact_guide_wrap > .delivery_contact_cntn {
	max-width: 915px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	padding-top: 30px;
}
.contact_guide_wrap > .delivery_contact_cntn .d_contact_box {
	width: 298px;
	height: 67px;
	background-color: #808080;
	text-align: center;
}

.contact_guide_wrap > .delivery_contact_cntn .d_contact_box img {
	width: 21px;
	vertical-align: top;
	padding-top: 8px;
	margin-right: 8px;
}
.d_contact_box > .d_mail_btn,.d_line_btn {
	padding-top: 18px;
	color: #fff;
	font-weight: bold;
}
.d_contact_box > .d_tel_btn {
	color: #fff;
	font-weight: bold;
	line-height: 1.7;
	letter-spacing: 1.5px;
	padding-top: 7px;
	padding-bottom: 7px;
}
.d_contact_box > .d_tel_btn > img  {
	width: 16px;
	margin-top: -4px;
}
@media only screen and (max-width: 750px) {
.contact_main {
	padding-top: 70px;
	padding-bottom: 50px;
}
.contact_main_wrap {
	max-width: 95%;
	margin: 0 auto;
}
.contact_main_container1 > .contact_main_title {
	font-size: 24px;
	line-height: 1.8;
	margin-bottom: 30px;
}
.contact_means_box > .means_item {
	text-align: center;
	margin: 0 auto;
	margin-bottom: 30px;
}
.contact_main_container2 {
	max-width: 95%;
	margin: 0 auto;
	padding-top: 80px;
}
.contact_main_container2 > .contact_guide_wrap {
	text-align: center;
	padding-bottom: 70px;
}
.contact_guide_wrap > .contact_guide_headline > p {
	font-size: 24px;
	font-weight: bold;
	color: #00634F;
	padding-bottom: 20px;
	border-bottom: 2px solid #00634F;
	margin-bottom: 30px;

}
.contact_guide_wrap > .contact_detail {
	display: block;
	width: 100%;
	margin: 0 auto;
}
.contact_detail_img {
	text-align: center;
}
.contact_detail_img > img {
	width: 350px;
}
.contact_guide_wrap > .contact_detail > .contact_detail_txt {
    width: 100%;
    text-align: left;
    padding-left: 0px;
    color: #00634F;
    padding-top: 20px;
}
.contact_guide_wrap > .delivery_contact_cntn {
	width: 375px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.contact_guide_wrap > .delivery_contact_cntn a {
    width: auto;
    height: 67px;
    margin-bottom: 20px;
}

.d_contact_box {
	margin-bottom: 20px;
}
}

/*---------------------------------------------------プライバシーポリシー*/
.indv_mv_wrap > .indv_mv_ttl_pp {
	font-size: 24px;
	letter-spacing: 2px;
	font-weight: 900;
	padding-top: 170px;
	padding-left: 10px;
	padding-right: 10px;
	padding-bottom: 20px;
	border-bottom: 2px solid #333333;
}

#privacy_policy {
	background-color: #EEF4F3;
	padding-top: 100px;
	padding-bottom: 100px;
}
#privacy_policy > .privacy_policy_wrap {
	max-width: 1000px;
	margin: 0 auto;
	background-color: #fff;
}
#privacy_policy > .privacy_policy_wrap > .pp_exposition {
	max-width: 850px;
	margin: 0 auto;
	padding-top: 80px;
	padding-bottom: 80px;
}
.pp_exposition > .pp_lead {
	color: #00634F;
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 20px;
}
.pp_exposition > .pp_txt {
	color: #00634F;
	font-size: 15px;
	line-height: 1.8;
}
.pp_chapter {
	margin-top: 30px;
}
.pp_chapter > dl {
	color: #00634F;
}
.pp_chapter > dl > dt {
	font-size: 16px;
	font-weight: bold;
	margin-bottom: 8px;
}
.pp_chapter > dl > dd {
	font-size: 15px;
	margin-bottom: 20px;
	line-height: 1.8;
}

.pp_exposition > .pp_top_link {
	width: 230px;
	margin: 0 auto;
	border: 1px solid #00634F;
	text-align: center;
	margin-top: 50px;
}
.pp_exposition > .pp_top_link > a {
	
}
.pp_exposition > .pp_top_link > a > p {
	font-weight: bold;
	padding-top: 8px;
	padding-bottom: 8px;
}

@media only screen and (max-width: 750px) {
	#privacy_policy {
	padding-top: 60px;
	padding-bottom: 60px;
}
#privacy_policy > .privacy_policy_wrap {
	max-width: 90%;
}
#privacy_policy > .privacy_policy_wrap > .pp_exposition {
	max-width: 95%;
	margin: 0 auto;
	padding-top: 50px;
	padding-bottom: 50px;
}
}


