@charset "UTF-8";
/*------------------------
スタイルの初期化
------------------------*/
body,div,pre,p,blockquote,
form,fieldset,input,textarea,select,option,
dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,
table,th,td,embed,object,figure { margin:0; padding:0; }
html {
	font-size: 62.5%;
}
body {
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック','Zen Kaku Gothic New',sans-serif;
	font-weight: 400;
	font-size: 16px;
	color: #000;
	line-height: 1;
	letter-spacing: .025em;
	text-autospace: ideograph-alpha;
	font-feature-settings: 'palt';
}
a {
	transition:.3s color linear,opacity .3s linear;
	text-decoration:none;
	color:#000;
	display: block;
}
a:hover{
	opacity: .7;
}
a img {
	border:0;
	outline:none;
}
img{
	vertical-align:top;
	max-width: 100%;
}
ul, ol { list-style-type:none; }
sup { position: relative; vertical-align: baseline; top: -0.9em; font-size: 0.5em; }
hr { width: 100%;
margin: 20px 0;}
h1,h2,h3,h4,h5,h6 { font-size: 100%;}
th, caption{ text-align: left; font-weight: normal; }
th,td { empty-cells:show; }
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] { padding:0 2px; margin-right:0.4em; }
input[type="submit"] { display:inline; margin:0; }
input[type="radio"] { margin-right:0.1em; }
textarea { padding:2px; }
optgroup { font-style:normal; }
option { padding-right:10px; }
*:focus {
outline: none;
}
*{
	box-sizing: border-box;
}
/*ボタンデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"],button {
	border-radius: 0;
	-webkit-box-sizing: content-box;
	-webkit-appearance: button;
	appearance: button;
	border: none;
	box-sizing: border-box;
	cursor: pointer;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
	display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
	outline-offset: -2px;
}
input[type="text"] , 
input[type="email"] , 
input[type="tel"] , 
input[type="password"] ,
textarea {
	-webkit-appearance: none;
	appearance: none;
	padding: 10px!important;
	background: #fff;
	border: 1px solid #dcdcdc;
	width: 80%;
	font-family: 'Noto Sans JP','メイリオ','Meiryo','ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','ＭＳ Ｐゴシック',sans-serif;
}
input[type="tel"] {
	width: 16em;
}
area{
	border:none;
	outline:none;
}
input, select, textarea {
	font-size: 1.6rem;
}
textarea {
	width: 90%;
	height: 10em;
}
select {
	text-overflow: "";
	background: #fff ;
	background-size: auto 4px;
	padding: 10px 48px 10px 10px;
	border: 1px solid #dcdcdc;
	max-width: 18em;
	cursor: pointer;
}
select::-ms-expand {
	display: none;
}
::placeholder {
	color: #dcdcdc;
}


/*チェックボックスのスタイル*/
input[type="checkbox"]{
	border: 1px solid #c1c1c1;
	vertical-align: -6px;
	-webkit-appearance: none;
	position: relative;
	box-sizing: border-box;
	width: 20px;
	height: 20px;
	background: #fff;
	margin-right: 8px;
}
input[type="checkbox"]:checked {
	background: var(--main);
	border: 1px solid #dcdcdc;
}
input[type="checkbox"]:checked:before {
	position: absolute;
	left: 3px;
	top: 11px;
	display: block;
	content: "";
	width: 5px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(45deg);
	-webkit-transform-origin: right center;
}
input[type="checkbox"]:checked:after {
	display: block;
	position: absolute;
	left: 8px;
	top: 12px;
	content: "";
	width: 10px;
	height: 2px;
	background: #fff;
	-webkit-transform: rotate(-53deg);
	-webkit-transform-origin: left center;
}
/*ラジオボタンのスタイル*/
input[type="radio"] {
	-webkit-appearance: none;
	appearance: none;
	width: 20px;
	height: 20px;
	border: 1px solid transparent;
	position: relative;
	margin-right: 8px;
}
input[type="radio"]::before {
	content: "";
	display: block;
	position: absolute;
	top: 3px;
	left: 0;
	width: 18px;
	height: 18px;
	border: 1px solid #dcdcdc;
	border-radius: 50%;
}
input[type="radio"]::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: #dcdcdc;
	border-radius: 50%;
}
input[type="radio"]:checked::after {
	content: '';
	display: block;
	position: absolute;
	top: 7px;
	left: 4px;
	width: 12px;
	height: 12px;
	background: var(--main);
	border-radius: 50%;
}
input[type="submit"] {
	width: 380px;
	background: var(--sub);
	color: #fff;
	padding: 20px;
	font-size: 16px;
	text-align: center;
	border-radius: 6px;
	transition: all .3s ease 0s;
}
input[type="submit"]:hover {
	background: var(--main);
	box-shadow: 2px 2px 8px rgba(0, 0, 0, .12);
}

table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 30px;
}
table th {
	width: 300px;
	background: #777;
	color: #eeeeee;
	vertical-align: middle;
	padding: 20px;
	box-sizing: border-box;
	font-size: 16px;
	font-weight: bold;
	border-top: #ffffff 1px solid;
	border-bottom: #ffffff 1px solid;
}
.must {
	margin-left: 5px;
	font-size: 14px;
	font-weight: bold;
	display: inline-block;
	background: none;
	padding: 0;
}
table td {
	padding: 20px 20px 20px 30px;
	border-top: #eeeeee 1px solid;
	border-bottom: #eeeeee 1px solid;
	background-color: #ad8383;
}
.wpcf7-validates-as-required{
	font-size: 16px;
}
label{
	margin-right: 15px;
}


/*------------------------
共通指定デザイン
------------------------*/
:root {
	--text: #1e1e1e;
	--main: #4E514C;
	--sub: #333;
	--gray:#eeeeee;
	--line:#d67171;
	--faq:#2b7d62/* #bf4242 */;
}
/*ボタン*/
.btn a{
	background: #333;
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: bold;
	position: relative;
	transition: all .3s ease 0s;
}
.btn a:hover{
	opacity: 0.5;
}
.btn a::after {
	content: '';
	width: 6px;
	height: 6px;
	border-bottom: 2px solid #fff;
	border-left: 2px solid #fff;
	-webkit-transform: rotate( -135deg);
	transform: rotate( -135deg);
	position: absolute;
	top: 0;
	bottom: 0;
	right: 15px;
	margin: auto;
	transition: all .3s ease 0s;
}
.flex-box {
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.red , 
.must {
	color: #ff0007;
}
.image img{
	width: 100%;
	height: 100%;
}
.text{
	text-align: justify;
}
/*sp*/
.sp{
	display: none;
}
.wf {
	font-family: 'Open Sans', sans-serif;
	font-feature-settings: "palt";
}

/*------------------------
ヘッダー
------------------------*/
header {
    position: absolute;
    width: 100%;
}

header .inner {
    margin: 0 auto; /* 中央寄せ */
	padding: 30px 150px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}


header .logo {
    min-height: 60px;
}

header .logo a {
    text-decoration: none;
}

header .logo .image img {
    height: 60px;
    width: auto;
}

header .nav-inner {
    list-style: none;
    padding: 0;
    margin: 0;
}

header .nav-inner li {
    display: inline-block;
	font-size: 16px;
    margin-left: 20px; /* ナビゲーションアイテムの間隔は適宜変更してください */
}

header .nav-inner a {
    text-decoration: none;
    color: #333; /* ナビゲーションテキストの色は適宜変更してください */
}





/*------------------------
ナビ ----- */


/*------------------------
フッター
------------------------*/
footer{
	background: #424242;
}
footer .inner{
	margin: 0 auto;
	padding: 40px 150px;
	color: #fff;
	display: flex;
	justify-content: space-between;
	align-items: center
}

/*----- Left -----*/

footer .inner .left{
	min-width: 180px;
}
footer .logo .image img{
	height: auto;
	width: 180px;
	overflow: hidden;
}

/*----- right -----*/

footer .right .g-nav ul{
	display: flex;
	overflow: hidden;
}
footer .right .g-nav ul li a{
	color: #fff;
	padding: 8px 20px;
}

/*------ コピーライト -------*/
.copy{
	background: #383838;
	color: #fff;
	font-size: 12px;
	text-align: center;
	padding: 10px 0;
}

/*------ ページアップボタン -------*/
#page-top {
	width: 64px;
	height: 64px;
	position: fixed;
	right: 0;
	bottom: 0;
	z-index: 20;
	cursor: pointer;
	margin: 20px;
	opacity: 0;
	visibility: hidden;
	-webkit-transition: 0.2s opacity ease-in-out,0.2s visibility ease-in-out;
	transition: 0.2s opacity ease-in-out,0.2s visibility ease-in-out;
}
#page-top.show {
	opacity: 1;
	visibility: visible;
}
#page-top a {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
	background: #353535;
	border-radius: 50%;
}
#page-top a:after {
	position: absolute;
	content: '';
	top: 5px;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	vertical-align: middle;
	width: 14px;
	height: 14px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: rotate(-45deg);
}

/*------------------------
パンくず
------------------------*/
.breadcrumb-wrap {
	background: none;
}
#breadcrumb {
	overflow: hidden;
	font-size: 14px;
	width: 1080px;
	margin: 0 auto;
	padding: 10px 0;
}
#breadcrumb li {
	float: left;
}
#breadcrumb li a{
	display: inline-block;
}
#breadcrumb li::before {
	content: '';
	width: 6px;
	height: 6px;
	display: inline-block;
	border-bottom: 1px solid #1e1e1e;
	border-right: 1px solid #1e1e1e;
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
	margin: auto 10px 0 10px;
	vertical-align: 1px;
}
#breadcrumb li:first-child:before{
	content: none;
}

/*------------------------
後続ページタイトル
------------------------*/
.page_ttl{
	text-align: center;
	margin-bottom: 60px;
}
.page_ttl .sub{
	font-size: 18px;
	font-weight: bold;
	line-height: 1;
	color: var(--sub-text);
}

.page_ttl .text-wrap{
	padding: 83px 0 117px;
}

.page_ttl h1{
	font-size: 36px;
	font-weight: bold;
	letter-spacing: .04em;
}

/*------------------------
ページャー
------------------------*/
.wp-pagenavi{
	margin: 40px 0 0;
}
.wp-pagenavi .pages {
	display: none;
}
.wp-pagenavi a, .wp-pagenavi span {
	width: 35px;
	height: 35px;
	margin: 0 2px;
	white-space: nowrap;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background: var(--sub-text);
	color: #fff;
	font-size: 18px;
	font-weight: bold;
	background-color: #444;
}
.wp-pagenavi span.current {
	background: #d67171;
}
.wp-pagenavi a:hover{
	opacity: 1;
	background: #d67171;
}


#problem .block-wrap{
	display: flex;
	justify-content: center;
}
#problem .block-wrap .block{
	background: #fff;
	padding: 0 30px 30px;
	width: 390px;
	margin: 0 10px;
	box-shadow: 0.2rem 0.4rem 0.8rem 0rem rgb(110 109 109 / 22%);
}
#problem .block-wrap .block .image{
	height: 225px;
	margin-top: -55px;
	margin-bottom: 15px;
}
#problem .block-wrap .block h3{
	font-size: 26px;
	color: var(--sub-text);
	border-bottom: 2px solid var(--sub-text);
	margin-bottom: 10px;
}
#problem .block-wrap .block h3 .min{
	font-size: 16px;
	display: block;
	font-weight: 500;
	line-height: 1;
	color: var(--text);
}
#problem .block-wrap .block .text{
	font-size: 16px;
	margin-bottom: 10px;
	min-height: 80px;
}
#problem .block-wrap .block .btn a{
	font-size: 15px;
	padding: 11px 57px;
	border-radius: 5px;
}

/*SNS シェアボタン*/

.share-box{
	margin-bottom: 20px;
}

.share-text{
	line-height: 1.65;
}
/*
.a2a_kit{
	padding: 10px 0;
	display: flex;
	flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.a2a_kit a{
	width: 42px;
	height: 42px;
	margin-right: 24px;
}

.a2a_button_x{
	background-image: url(/pc/img/common/x-share.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.a2a_button_line{
	background-image: url(/pc/img/common/line-share.png);
	background-size: contain;
	background-repeat: no-repeat;
}

.a2a_button_pinterest{
	background-image: url(/pc/img/common/pinterest-share.png);
	background-size: contain;
	background-repeat: no-repeat;
} */


  /* 各カテゴリアイテム */
  .category-wrapper {
    padding: 60px 40px 20px;
    margin-bottom: 60px;
    background-image: url(/pc/img/common/cat_bg.jpg);
    background-position: center;
    background-color: rgba(0,0,0,.5);
    background-blend-mode: color;
    color: #fff;
  }
  
  .category-content{
	width: 1080px;
	margin: 0 auto;
	margin-bottom: 40px;
  }

  .category-content h2{
	font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
  }
  
  .category-content .category{
	text-align: center;
  }

  .category-content .category a{
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
	letter-spacing: 0.25em;
	color: #fff;
	border: 1px solid #fff;
	padding: 30px 40px;
	transition: .3s ;
	}
.category-content .category a:hover{
	background-color:  #4b1d1f;
}

  .category a::before{
	content: '';
	display: inline-block;
	vertical-align: inherit;
	color: #fff;
	line-height: 1;
	width: 0;
	height: 0;
	border-style: solid;
	border-color: transparent;
	border-width: 0.375em 0.64952em;
	border-left-color: currentColor;
	border-right: 0;
	margin-right: 6px;
}

/*  */


.category-content ul {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
	margin-bottom: 20px;
}

.category-content li {
	width: 255px;
	height: 120px;
    background-color: #fff;
	margin-bottom: 14px;
	box-sizing: border-box;
	border: 4px solid #7d1d21;
	background-color: #fff;
	margin-right: 20px;
}

.category-content ul li:nth-child(4n) {
    margin-right: 0;
}
.category-content ul li a {
    padding: 5px;
    display: flex;
    align-items: center;
}
.category-content ul li .image {
    height: 100px;
    width: 100px;
    overflow: hidden;
	margin-right: 10px;
}
.category-content ul li .image img {
    transition: 1s all;
    object-fit: cover;
}

.category-content ul li p {
    font-size: 18px;
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 10px;
	margin-right: 10px;
    flex: 1;
	justify-content: space-between;
}
.category-content ul li p span:last-child{
	color: #fff;
    display: block;
	padding: 12px;
    width: 20%;
    height: 100%;
    position: relative;
    background: #333;
    border-radius: 50%;
}
.category-content ul li p span:last-child::after{
    position: absolute;
    content: '';
    top: 0;
    left: -2px;
    right: 0;
    bottom: 0;
    margin: auto;
    vertical-align: middle;
    width: 6px;
    height: 6px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}

.posi{
	position: relative;
    top: -60px;
}

  /*---------------------
  カラム幅
  -----------------------*/
  .column {
	width: 1080px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;

}

.column .column-text{
	width: 480px;
}
.column .column-img{
	width: 540px;
}
.column .column-text section{
	width: 480px;
}
.column .column-text section .inner{
	width: 480px;
}

.mail-box{
	width: 1080px;
	padding: 40px;
	margin: 0 auto;
	margin-bottom: 90px;
	box-shadow: 0px 0px 20px -5px #ccc;

}

.mail-box textarea {
	width: 90%;
	height: 5em;
	margin-bottom: 10px;
}
.wpcf7-response-output {
	display: none;
  }