@charset "UTF-8";
/* ================================================
BASE
================================================ */
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/

/*変数*/
:root {
	--pink: #f4abac;
	--green: #79af73;
	--blue: #91acda;
	--brown: #5b5a42;
	--mincho: "游明朝", "Yu Mincho","ヒラギノ明朝 ProN", "Hiragino Mincho ProN","ＭＳ 明朝", "MS Mincho",serif;
}
/*ベース*/
p, li, a, dt, dd, address, th, td, label, input, textarea{
	font-size: 1rem;
  color: var(--brown);
	line-height: 1.5;
}
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;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  font-family: 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, sans-serif; }

body {
  line-height: 1; }

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

nav 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; }

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none; }

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold; }

del {
  text-decoration: line-through; }

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

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

li {
  list-style: none; }

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0; }

input, select {
  vertical-align: middle; }

strong {
  font-weight: normal; }

/* clearfix */
.fix:before, #header:before,
.fix:after,
#header:after {
  content: "";
  display: table; }


.fix:after,
#header:after {
  clear: both; }

.fix, #header {
  *zoom: 1; }

.flex {
	display: flex;
	align-items: center;
	justify-content: center;
}
.flex._space_around {
	justify-content: space-around;
	margin-top: 5%;
}
@media (max-width: 768px) {
	.flex {
		flex-direction: column;
	}
}
.red{
	color: #c84e32;
}
.br_pc {
	display: none;
}
.br_sp, .br_tab {
	display: none;
}

@media (max-width: 768px) {
	.br_pc {
	display: none;
}
	.br_tab {
		display: block;
	}
}
@media (max-width: 425px) {
	.br_sp {
		display: block;
	}
}
/* ================================================
Layout
================================================ */
.header_wrapper {
  padding: 0 0 20px 0; }

.header_wrapper .container {
	width: 100%;
	max-width: none;
}
.content_wrapper .container {
	width: 93%;
	max-width: 1220px;
	padding-top: 2rem;
}

/*  16カラム  */
/*	16 COLUMN : RESPONSIVE GRID SYSTEM
	DEVELOPER : DENIS LEBLANC
	URL : http://responsive.gs
	VERSION : 3.0
	LICENSE : GPL & MIT */
/* 	SET ALL ELEMENTS TO BOX-SIZING : BORDER-BOX */
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  *behavior: url(/scripts/boxsizing.htc);
  /*	If you need support for IE7 and lower make 
		sure the boxsizing.htc file is linked properly.
		More info here:  https://github.com/Schepp/box-sizing-polyfill */ }

/*	MAIN CONTAINER 
	Set the width to whatever you want the width of your site to be. */
.container {
  max-width: 1260px;
  margin: 0 auto; }
  .container img {
    max-width: 100%;
    height: auto; 
}


/*	SELF CLEARING FLOATS - CLEARFIX METHOD */
.container:after,
.row:after,
.col:after,
.clr:after,
.group:after {
  content: "";
  display: table;
  clear: both; }

/* 	DEFAULT ROW STYLES 
	Set bottom padding according to preference */
.row {
  padding-bottom: 0; }

/* DEFAULT COLUMN STYLES */
.col {
  display: block;
  float: left;
  width: 100%; }

@media (min-width: 768px) {
  .gutters .col {
    margin-left: 2%; }
  .gutters .col:first-child {
    margin-left: 0; } }

/*	COLUMN WIDTH ON DISPLAYS +768px 
	You might need to play with media queries here to suite your design. */
@media (min-width: 768px) {
  .span_1 {
    width: 6.25%; }
  .span_2 {
    width: 12.5%; }
  .span_3 {
    width: 18.75%; }
  .span_4 {
    width: 25%; }
  .span_5 {
    width: 31.25%; }
  .span_6 {
    width: 37.5%; }
  .span_7 {
    width: 43.75%; }
  .span_8 {
    width: 50%; }
  .span_9 {
    width: 56.25%; }
  .span_10 {
    width: 62.5%; }
  .span_11 {
    width: 68.75%; }
  .span_12 {
    width: 75%; }
  .span_13 {
    width: 81.25%; }
  .span_14 {
    width: 87.5%; }
  .span_15 {
    width: 93.75%; }
  .span_16 {
    width: 100%; }
  .gutters .span_1 {
    width: 4.375%; }
  .gutters .span_2 {
    width: 10.75%; }
  .gutters .span_3 {
    width: 17.125%; }
  .gutters .span_4 {
    width: 23.5%; }
  .gutters .span_5 {
    width: 29.875%; }
  .gutters .span_6 {
    width: 36.25%; }
  .gutters .span_7 {
    width: 42.625%; }
  .gutters .span_8 {
    width: 49.0%; }
  .gutters .span_9 {
    width: 55.375%; }
  .gutters .span_10 {
    width: 61.75%; }
  .gutters .span_11 {
    width: 68.125%; }
  .gutters .span_12 {
    width: 74.5%; }
  .gutters .span_13 {
    width: 80.875%; }
  .gutters .span_14 {
    width: 87.25%; }
  .gutters .span_15 {
    width: 93.625%; }
  .gutters .span_16 {
    width: 100%; } }

/* ================================================
OBJECT
================================================ */
/* COMPONENT
------------------------------------------ */
#gnav {
  width: 97%;
  margin: 0 auto;
  background-color: #f4abac;
  -webkit-box-shadow: 0px 3px 11.4px 0.6px rgba(115, 84, 29, 0.2);
  box-shadow: 0px 3px 11.4px 0.6px rgba(115, 84, 29, 0.2);
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
  position: relative;
  z-index: 100;
  text-align: center; }
  #gnav .gnav_link li {
    display: inline-block;
    position: relative; }
  #gnav .gnav_link a {
    color: #fff;
    text-decoration: none;
    display: block;
    height: 100%;
    padding: 14px 10px;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    -webkit-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    position: relative;
    top: 0; }
    #gnav .gnav_link a:hover, #gnav .gnav_link a:focus, #gnav .gnav_link a.active {
      background-color: #fff;
      color: #ef3f50;
      top: 0;
      -webkit-box-shadow: 0 4px 8px rgba(90, 45, 25, 0.1);
      box-shadow: 0 4px 8px rgba(90, 45, 25, 0.1); }
      #gnav .gnav_link a:hover:after, #gnav .gnav_link a:focus:after, #gnav .gnav_link a.active:after {
        content: '';
        position: absolute;
        bottom: -17px;
        left: 50%;
        margin-left: -4px;
        width: 0;
        height: 0;
        background-color: transparent;
        border: 8px solid transparent;
        border-top: 9px solid #fff; }
  #gnav {
    padding: 12px 0 15px; 
	    max-width: 1260px; }
  .gnav_link a {
    font-size: 95%;
    padding: 20px 14px; }
@media only screen and (min-width: 768px) {
 }

/* サブナビ
------------------------------------------ */
.section.second_nav {
  width: 94%;
	    max-width: 1240px;
    margin: auto;
  margin: 10px auto 25px;
  text-align: center;
  padding: 20px 0 7px;
  position: relative;
  z-index: 50;
  top: -30px;
  margin-bottom: -20px; }
  .section.second_nav li {
    display: inline-block; }
    .section.second_nav li a {
      padding: 16px 1.4em 14px;
      display: inline-block;
      position: relative;
      top: 0;
      border-radius: 8px;
      -webkit-transition: all .2s ease;
      -o-transition: all .2s ease;
      transition: all .2s ease; }
      .section.second_nav li a.active, .section.second_nav li a:hover {
        padding: 14px 1.4em;
        top: 3px;
        background-color: #ef3f50;
        color: #fff; }
        .section.second_nav li a.active:after, .section.second_nav li a:hover:after {
          content: '';
          position: absolute;
          bottom: -17px;
          left: 50%;
          margin-left: -4px;
          width: 0;
          height: 0;
          background-color: transparent;
          border: 8px solid transparent;
          border-top: 9px solid #fff;
          border-top-color: #ef3f50; }

.sub_nav_ttl {
  position: relative; }
  .sub_nav_ttl:after {
    content: '';
    position: absolute;
    width: 3px;
    height: 35px;
    right: -5px;
    top: -9px;
}

@media only screen and (min-width: 768px) {
  .section.second_nav {
    position: relative; } }

/* ================================================
Buttons
================================================ */
.btn {
  background: var(--blue);
  color: #fff;
  text-decoration: none;
  display: block;
  border-radius: 5px;
  text-align: center;
  border: 2px #fff solid;
  -webkit-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}
  .btn:hover {
    background: #fff;
    color: var(--blue);
    border-color: var(--blue)
    -webkit-box-shadow: 0 3px 0 var(--blue);
    box-shadow: 0 3px 0 var(--blue);
    top: -2px; }
  .btn.send {
    background: #f57255; }
  .btn.back {
    background: #414141; 
}

.btn_arrow {
    width: 1.3rem;
    height: 1.3rem;
    vertical-align: middle;
    display: inline-flex;
    background: url(./images/lib/images/cmn/arrow_white_blue.svg) no-repeat center center / contain;
    margin: 0 5px 3px 0;
}
.btn:hover i { 
	background: url(./images/lib/images/cmn/arrow_blue.svg) no-repeat center center / contain;
}

.btn_arrow-red {
  width: 12px;
  height: 12px;
  vertical-align: baseline;
  display: inline-block;
  background: url(./images/lib/images/cmn/arrow_white_red.svg) no-repeat;
  background-size: contain;
  margin: 0 0 0 5px; }

.btn._green_border {
	font-size: 1.25rem;
	font-family: var(--mincho);
	background: var(--green);
	padding: 4% 0;
	border-radius: 50px;
	width: 90%;
}
.btn._green_border:hover {
	background: #fff;
    color: var(--green);
    border-color: var(--green);
	-webkit-box-shadow: 0 3px 0 var(--green);
    box-shadow: 0 3px 0 var(--green);
}
.btn._green_border i {
	background: url(./images/lib/images/cmn/arrow_white_green.svg) no-repeat center center / contain;
}
.btn._green_border:hover i {
	background: url(./images/lib/images/cmn/arrow_green.svg) no-repeat center center / contain;
}

/* ================================================
見出し
================================================ */
.ttl_ribbon {
	color: #fff;
	text-align: center;
	width: 95%;
	margin: 0 auto 2rem auto;
	padding: 0.5rem 2rem;
	background: #c84e32;
	position: relative;
}

.ttl_ribbon:before,
.ttl_ribbon:after {
	 content: '';
	position: absolute;
	top: 0;
	display: block;
	height: 4px;
	border: 26px solid #c84e32;
	z-index: 1;
}

.ttl_ribbon:before {
  left: -40px;
  border-left-width: 15px;
  border-left-color: transparent;
}

.ttl_ribbon:after {
  right: -40px;
  border-right-width: 15px;
  border-right-color: transparent;
}

.ttl_ribbon span {
	font-size: 2.5rem;
    font-family: var(--mincho);
	font-weight: 100;
	position: relative;
	display: block;
	z-index: 2;
}
@media (max-width: 768px) {
	.ttl_ribbon {
    	width: 95%;
    	padding: 0.5rem 0;
	}
	.ttl_ribbon span {
		font-size: 2rem;
	}
	.ttl_ribbon:before, .ttl_ribbon:after {
		border: 22px solid #c84e32;
	}
	.ttl_ribbon:before {
		left: -30px;
    	border-left-width: 15px;
    	border-left-color: transparent;
	}
	.ttl_ribbon:after {
		right: -30px;
    	border-right-width: 15px;
    	border-right-color: transparent; 
	}
}
@media (max-width: 640px) {
	.ttl_ribbon {
		margin: 0 auto 1rem;
	}
	.ttl_ribbon span {
		font-size: clamp(1.25rem, 0.756rem + 1.86vw, 1.5rem);
		line-height: 1.3;
	}
    .ttl_ribbon:before, .ttl_ribbon:after {
        border: 21px solid #c84e32;
    }
	.ttl_ribbon:before {
        left: -14px;
        border-left-width: 8px;
		border-left-color: transparent; 
    }
	.ttl_ribbon:after {
        right: -14px;
        border-right-width: 8px;
		border-right-color: transparent; 
	}
}
@media (max-width: 425px) {
	.ttl_ribbon {
	}
	.ttl_ribbon:before, .ttl_ribbon:after {
        border: 21px solid #c84e32;
        top: 31%;
    }
	.ttl_ribbon:before {
        left: -15px;
        border-left-width: 8px;
		border-left-color: transparent; 
    }
	.ttl_ribbon:after {
        right: -15px;
        border-right-width: 8px;
		border-right-color: transparent; 
	}
	.ttl_ribbon span {
		font-size: 1.2rem;
	}
}
.ttl_pink {
	color: var(--pink);
	font-size: 2rem;
	font-family: var(--mincho);
	font-weight: 100;
	line-height: 1.5; 
	padding: 0.2rem 0.5rem 0.2rem 01rem;
	border-left: solid 15px var(--pink);
	margin-bottom: 1.5rem;
	width: 100%;
	position: relative;
}
.ttl_pink::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #dfdfdf;
	top: 99%;
	left: 0;
}
@media (max-width: 640px) {
	.ttl_pink {
		font-size: 1.5rem;
	}
}
.ttl_green {
	color: var(--brown);
	font-size: 1.25rem;
	font-family: var(--mincho);
	font-weight: 100;
	border-bottom: 2px solid #dfdfdf;
	position: relative;
	padding-bottom: 1rem;
	margin-bottom: 1.5rem;
}
.ttl_green::after {
	content: "";
	position: absolute;
	display: block;
	border-bottom: solid 3px var(--green);
	bottom: -3px;
	width: 4rem;
}
.ttl_blue {
	color: var(--brown);
	font-size: 1.25rem;
	padding: 0.25rem 0.5rem;
	border-left: solid 9px var(--blue);
}
@media (max-width: 640px) {
	.ttl_blue {
		font-size:1.1rem;
	}
}

/* ================================================
パーツ
================================================ */
/*  リスト  */
  .disc li {
    padding: 5px 0 5px 15px;
    margin: 5px 0;
	position: relative;
}
.disc li::before {
	content: "";
	position: relative;
	width: 0.5rem;
	height: 0.5rem;
	border-radius:50px;
	background: var(--pink);
	display: inline-flex;
	top: 50%;
	left: -15px;
	transform: translate(50%, -50%);
}


.image {
	display: block;
	text-align: center;
	border-radius: 5px;
}

sub {
  font-size: .75em;
  vertical-align: text-bottom; }

.caution li {
  font-size: 14px;
  margin: 0; }

.content-box {
  margin-bottom: 25px; }

@media only screen and (min-width: 768px) {
    .content-box .text ul {
      min-height: 120px;
      text-align: left;
      font-size: 1.15em;
      line-height: 1.4;
      margin: 10px 0 0; }
    .content-box .table_ttl {
      padding: .5em 1em;
      margin-bottom: 0; }
      .content-box .table_ttl.last {
        width: 100%; }
        .content-box .table_ttl.last:after {
          content: none;
	}
}

/* ================================================
Header
================================================ */
.content_ttl {
  width: 102%;
  background-color: #f09709;
  color: #fff;
  padding: 12px 0 12px 25px;
  position: relative;
  left: -24px;
  font-size: 1.6em;
  letter-spacing: 1px;
  font-weight: normal;
  margin-bottom: 25px; }
  .content_ttl:before {
    content: '';
    background: url(./images/lib/images/cmn/sub_header_2_tri.svg);
    width: 9px;
    height: 5px;
    position: absolute;
    left: 0;
    bottom: -5px; }

.table_ttl {
	color: #fff;
	text-align: center;
	font-size: 1.5em;
	letter-spacing: 1.5px;
	line-height: 1.2;
	background: var(--green);
	padding: 0.5rem 0 1rem;
	border-radius: 5px;
}
.section._flow .table_ttl {
    text-align: left;
	padding: 0.5rem 1rem;
}
.flow_content {
	width: 80%;
	margin: auto;
}
.flow_content .box-inner:first-of-type .disc li:first-child::before,
.flow_content .box-inner:nth-of-type(4) .disc li:first-child::before {
	content: none;
}
.flow_content .box-inner {
    width: 80%;
    margin: auto;
}

.table_ttl_2 {
  text-align: center;
  padding: 7px 0;
  background: #75bd93;
  border-radius: 3px;
  color: #fff; }

@media only screen and (min-width: 768px) {
  #sub_ttl h2 {
    max-width: 70%; }
}
@media only screen and (max-width: 768px) {
	.flow_content {
		width: 95%;
	}
	.flow_content .box-inner {
		width: 100%;
	}
}
@media only screen and (max-width: 425px) {
	.section._flow .table_ttl {
		font-size: 1.25rem;
	}
}

/* ================================================
Copy
================================================ */
.lead_copy {
  line-height: 1.6;
  font-size: 1.1em;
  padding: 0 0 0 2%; }

.article {
  line-height: 1.6;
	margin: 3% 0;
}
@media (max-width: 768px) {
	.article {
		margin: 6% 0;
	}
}

.caution_article {
  width: 85%;
  margin: 0 auto 25px;
  padding: 1.2em 1.5em;
  border: 1px #333 dotted;
  border-radius: 5px; }

em {
  font-style: normal;
  font-weight: bold; }

/* ================================================
IMG
================================================ */
/*.clm2_img li {
  text-align: center;
  margin: 20px; }

@media only screen and (min-width: 768px) {
  .clm2_img {
    margin: 30px 0 30px -1%; }
    .clm2_img li {
      width: 47%;
      float: left;
      margin: 0 1% 20px 1%; } }*/
@media (max-width: 768px) {
	.flex li img {
		margin-bottom: 5%;
	}
}


/* サブキーイメージ
------------------------------------------ */
.lead_img {
  width: 96%;
  height: 270px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 5px;
  margin: 20px auto 40px; }
.lead_img.mimamori_top {
	background: url(./images/lib/images/services/service_1_img.jpg) no-repeat center right 20%  / cover; 
}
.lead_img.daily_support {
    background: url(./images/lib/images/services/service_2_img.jpg) no-repeat center right 25% / cover; 
}
.lead_img.emergency_support {
    background: url(./images/lib/images/services/service_3_img.jpg) no-repeat center right 20% / cover; 
}
.lead_img.funeral_support {
    background: url(./images/lib/images/services/service_4_img.jpg); 
}
.lead_img.flow_top {
    background: url(./images/lib/images/flow/flow_1_img.jpg) no-repeat center center/ cover;
}
.lead_img.contact_top {
    background: url(./images/lib/images/cmn/contact_1_img.jpg); 
}
.lead_img.plan_top {
    background: url(./images/lib/images/price/plan_1_img.jpg) no-repeat center center / cover; 
}

.contact-bg_img {
  position: relative; }
  .contact-bg_img::before {
    display: none; }

.z-auto {
  position: relative;
  z-index: auto; }

@media only screen and (min-width: 768px) {
  .lead_copy {
    line-height: 1.6;
    font-size: 1.1em;
    width: 60%;
    float: left;
    margin-right: 2%; }
  .lead_img {
    width: 36%;
    height: 270px;
    float: left;
    margin: 0; }
  .contact-bg_img {
    position: relative; }
    .contact-bg_img::before {
      content: '';
      display: block;
      background: url(./images/lib/images/cmn/plan_1_img.jpg) no-repeat top right/contain;
      width: 20em;
      height: 210px;
      position: absolute;
      top: -60px;
      right: 0;
      z-index: 0; } }


/* テーブル
------------------------------------------ */
.table {
	width: 100%;
	/*display: block;*/
	border: 1px solid var(--green);
}
  .table .table_caption {
    display: none; }
  .table th {
    background: var(--green);
    color: #fff;
    padding: .5em 0;
    text-align: center;
    font-weight: normal; }
  .table th,
  .table td {
    display: block;
    text-align: center; }
  .table td {
    padding: .4em 0;
    line-height: 1.6; }
    .table td + td {
      /*border-top: 1px dotted var(--green);*/
      padding-bottom: 1.5em; }

/*  身元保証制度と後見人制度の違い  */
.table_difference {
	margin: 3% auto 0;
	text-align: center;
	width: 65%;
}
.table_difference th,
.table_difference td {
	padding: 0.5rem;
	vertical-align: middle;
}
.table_difference th {
	color: #fff;
	font-weight: inherit;
	background: var(--blue);
	border-bottom: 1px solid #fff;
	height: 4rem;
	width: 20%;
}
.table_difference .bg_green {
	color: #fff;
	font-size: 1.25rem;
	font-family: var(--mincho);
	font-weight: 100;
	background: var(--green);
	border: 1px solid #fff;
}
.table_difference td {
	border: 1px solid #dfdfdf;
	border-right: none;
}
.table_difference tr:last-child td {
	border-bottom: none;
}
.table_difference .blank {
	border: none;
	background: none;
}
@media screen and (max-width: 768px) {
	.table_difference {
		width: 95%;
	}
	.table_difference td {
		width: 40%;
	}
}
@media screen and (max-width: 640px) {
	.table_difference th {
    	height: auto;
    	width: 13%;
    	writing-mode: vertical-rl;
		-ms-writing-mode: tb-rl;
	}
}

/*  費用一覧  */
.plan .check {
  margin: 0 auto;
  display: block;
  position: relative;
  cursor: pointer; }
  .plan .check::before {
    position: absolute;
    z-index: 1;
    top: 0.1rem;
    left: 0.1rem;
    width: 0.75rem;
    height: 0.375rem;
    content: '';
    -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -o-transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    transition: transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75), -webkit-transform 0.4s cubic-bezier(0.45, 1.8, 0.5, 0.75);
    -webkit-transform: rotate(-45deg) scale(0, 0);
    -ms-transform: rotate(-45deg) scale(0, 0);
    transform: rotate(-45deg) scale(0, 0);
    border: 2px solid var(--pink);
    border-top-style: none;
    border-right-style: none; }
  .plan .check:checked::before {
    -webkit-transform: rotate(-45deg) scale(1, 1);
    -ms-transform: rotate(-45deg) scale(1, 1);
    transform: rotate(-45deg) scale(1, 1); }
  .plan .check::after {
    position: absolute;
    top: -0.125rem;
    left: -0.1rem;
    width: 1rem;
    height: 1rem;
    content: '';
    cursor: pointer;
    border: 2px solid #bbbbbb;
    background: #f3f3f3; }

.plan .table {
  border: none; 
  display: table;}
  .plan .table th {
    border-right: 1px solid #fff; }
  .plan .table td + td {
    border-top: none; }
.plan .table td {
    border-right: 1px solid var(--pink);
    border-bottom: 1px solid var(--pink); 
}
  .plan .table .table_caption {
    background: #fdecee;
    border-top: 1px solid var(--pink);
}

.plan .form {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  border: 2px solid #bbbbbb;
  background: #f3f3f3;
  font-size: 1.2rem;
  padding: 3%;
  font-weight: bold;
  color: var(--pink);
  width: 75%;
  text-align: center; }

.plan .small {
  margin-top: 1px; }

.plan .right {
	float: right;
}

.plan .white-line {
  border-top: 1px solid #fff !important;
  border-left: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

.plan .pink-bg {
	background: #fdecee;
}

.plan .blue-border {
  border-right: 1px solid #91acda !important;
  border-bottom: 1px solid #91acda !important; }

.plan .btn-red {
  color: #DD5132;
  text-align: center;
  border: 2px solid #DD5132;
  padding: 1%;
  font-size: 1rem;
  display: block;
  width: 98%;
  margin: 0 auto;
  -webkit-transition: .4s;
  -o-transition: .4s;
  transition: .4s;
  text-decoration: none; }
  .plan .btn-red:hover {
    background: #DD5132;
    color: #fff; }

.plan .col-p {
  background: #f4b6c7;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

.plan .col-g {
  background: #b7dab0;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

.plan .col-o {
  background: #f7c380;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

.plan .col-b {
  background: #b5ccea;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

.plan .col-s {
  background: #e0edf9 !important;
  border-left: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-bottom: 1px solid #fff !important; }

@media screen and (max-width: 767px) {
  .two-columns {
    width: 100% !important; }
  .table_ttl {
    padding: .4em 0.2rem; }
  .plan02 .bg-w {
    text-align: center; } 
	.plan .table td {
		border-bottom: 1px solid #dfdfdf;
	}
	.plan .blue-border{
		border-bottom: 1px solid #dfdfdf !important;
	}
}

@media only screen and (min-width: 768px) {
	.plan02 .bg-w {
    	text-align: left;
    	width: 30%;
	} 
    .bt-g.plus {
		width: 5%;
	}
	.plan02 .total {
		width: 30%;
	}
  }

@media screen and (max-width: 767px) {
  .plan .check {
    margin: 0; }
  .plan .table td + td {
    padding-bottom: 3%; }
  .plan .table td {
    padding: 3% 1%; }
  .plan .table th {
    border-right: 1px solid #dfdfdf !important; }
  .plan .table td {
    border-left: 1px solid #dfdfdf;
    border-right: 1px solid #dfdfdf !important; }
  .plan .col-g {
    border-top: 1px solid #fff !important; }
  .sp-box {
    width: 50%;
    border: 1px solid #75bd93;
    display: inline-block !important; }
  .space {
    height: 30px !important; }
  .plan02 td + td {
    padding-bottom: 3%; }
  .plan02 td {
    padding: 3% 0; }
  .plan02 .total {
    border: 1px solid #75bd93 !important; }
  .txt-box {
    background: #FFF;
    border: 2px solid #75bd93;
    border-radius: 5px;
    padding: 15px;
    line-height: 1.6;
    width: 100% !important;
    margin: 0 auto;
	  position: relative;}
    /* &::before{
      content: "";
      position: absolute;
      top: -22px!important;
      left: 6%;
      margin-left: -15px;
      border: 12px solid transparent;
      border-bottom: 12px solid #FFF;
      z-index: 2;
    }
    &::after{
      content: "";
      position: absolute;
      top: -28px!important;
      left: 6%;
      margin-left: -17px;
      border: 14px solid transparent;
      border-bottom: 14px solid #75bd93;
      z-index: 1;
    } */ }
    .txt-box .txt-box_point {
      background: #75bd93;
      color: #FFF;
      padding: 2px 5px;
      border-radius: 5px;
      display: table;
      margin-bottom: 5px; } }

.plan02 {
  border: none;
  display: table; }
  .plan02 td + td {
    border-top: none !important; }
  .plan02 .bt-g {
    border-top: 1px solid var(--green) !important;
}
  .plan02 .total {
    background: #daefd6;
    text-align: center; 
}
  .plan02 .total-block {
    width: 65%;
    display: block;
    margin: 0 auto; }
    .plan02 .total-block.-l {
      text-align: left; }
  .plan02 .big {
    font-size: 1.1rem;
    font-weight: bold; }
  .plan02.bg-w {
      width: 35%;
  }
  .plan02 .total-block.-l {
    text-align: center;
}
.num-bg02 {
  position: relative; }
  .num-bg02::after {
    position: absolute;
    -webkit-transition: all 0.3s ease 0s;
    -o-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0; }
  .num-bg02::after {
    content: attr(data-tooltip);
    display: none;
    padding: 5px;
    background: #FFF;
    border: 2px solid #75bd93;
    color: #75bd93;
    font-weight: bold;
    border-radius: 5px;
    top: 30px;
    left: 0;
    width: 150px;
    z-index: 100; }
  .num-bg02:hover::after {
    top: 30px;
    opacity: 1;
    display: block; }

.num-bg {
  background: #FFF;
  padding: 3px;
  border-radius: 3px;
  width: 23px;
  text-align: center;
  display: inline-block;
  margin-right: 7px; }
  .num-bg.-o {
    color: #f7c380; }
  .num-bg.-g {
    color: #b7dab0; }
  .num-bg.-p {
    color: #f4b6c7; }

.num-bg02 {
  color: #FFF;
  padding: 3px;
  border-radius: 3px;
  width: 23px;
  text-align: center;
  display: inline-block;
  margin: 3px 5px; }
.num-bg02.-o {
    background: #f7c380;
}
.num-bg02.-g {
    background: #b7dab0; 
}
.num-bg02.-p {
	background: #f4b6c7;
}

.bg-w {
  background: none !important;
  color: var(--green) !important;
  border-right: 1px solid  var(--green);
  border-bottom: 1px solid  var(--green) !important;
  border-top: 1px solid  var(--green) !important;
  border-left: 1px solid  var(--green) !important;
  font-size: 1rem !important;
  text-align: left !important;
  line-height: 1.4;
  padding: 0.7em !important;
  font-weight: bold !important;
}
  .bg-w .small {
    font-size: .8rem;
    color: var(--brown);
    font-weight: normal; }

.bg-g {
  background: var(--green);
  color: #fff; }
  .bg-g td {
	  color: #fff;
    border-right: 1px solid #FEF7EF !important;
    border-bottom: 1px solid #FEF7EF !important; }

.price.-flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	width: 99%;
	margin: 40px auto 0;
	-webkit-box-align: start;
	-ms-flex-align: center;
	align-items: center;
	border: 2px solid var(--pink);
	border-radius: 5px;
}
  .price.-flex .price-img {
    width: 400px;
    height: auto;
	border-radius: 3px 0 0 3px;
}
  .price.-flex .price-txt {
    padding: 15px;
    line-height: 1.6;
    background: #FFF; }
    .price.-flex .price-txt .txt-o {
      color: #f3ae63;
      font-size: 1.3rem;
      display: block;
      margin-bottom: 10px; }
    .price.-flex .price-txt .txt-s {
      font-size: .8rem;
      color: #000; }

@media screen and (max-width: 768px) {
  .price.-flex {
    display: block; }
    .price.-flex .txt-o {
      margin-bottom: 0; } 
	.price.-flex .price-img {
    	width: 100%; 
		border-radius: 3px 3px 0 0;
	}
}

.check-txt {
  font-size: .7rem;
  margin-right: 5%; }

.txt-red {
  color: #c84e32;
	text-align: end;
  float: right; }

.plus {
  text-align: center !important;
  font-weight: bold;
  font-size: 1.8rem;
  color: var(--green); 
}

.space {
  height: 5px;
  background: #FFF; }

.bb {
	border-bottom: 2px solid #c84e32;
}

.dot-text {
  padding-top: .4em;
  background-position: top left -2px;
  background-repeat: repeat-x;
  background-size: 1.3em .3em;
  background-image: -webkit-radial-gradient(center center, 0.15em 0.15em, #c84e32, #c84e32 100%, transparent);
  background-image: -o-radial-gradient(center center, 0.15em 0.15em, #c84e32, #c84e32 100%, transparent);
  background-image: radial-gradient(0.15em 0.15em at center center, #c84e32, #c84e32 100%, transparent); }

.point {
  background: #fff;
  padding: 2px 4px;
  margin: 8px 0;
  display: inline-block;
}

.w77 {
  width: 77%;
  margin: 0 auto; }

.disc-bg {
  background: #FFF;
  padding: 10px;
  border-radius: 10px;
  margin: 10px 2%; }
  .disc-bg.-g {
    border: 2px solid #75bd93; }
  .disc-bg.-o {
    border: 2px solid #f3ae63; }

.ttl-g {
  background: var(--green);
  color: #fff;
  width: 100%; }

.ttl-p {
  background: var(--pink);
  color: #fff;

  width: 100%; }

.txt-box {
  background: #FFF;
  border: 2px solid #75bd93;
  border-radius: 5px;
  padding: 15px;
  line-height: 1.6;
  margin: 0 auto;
  position: relative;
  width: 96%;
	margin: 0 auto;
}

  .txt-box .txt-box_point {
    background: #75bd93;
    color: #FFF;
    padding: 2px 5px;
    border-radius: 5px;
    display: table;
    margin-bottom: 5px; }

/*  日常生活支援  */
.daily_support_price {
  text-align: center; }
  .daily_support_price .table {
    display: table; }
    .daily_support_price .table th,
    .daily_support_price .table td {
      text-align: center;
      display: table-cell;
      vertical-align: middle; }
.daily_support_price .table td {
	border: 1px solid var(--green); 
}
      .daily_support_price .table td + td {
        padding: 1em 0; }

.premium_cost {
  display: table;
  font-size: 14px;
  margin-bottom: 45px; }
  .premium_cost th,
  .premium_cost td {
    display: table-cell; }
  .premium_cost .premium {
    width: 20%;
    border-right: 1px #fff solid;
    border-bottom: none; }
    .premium_cost .premium + th {
      border-bottom: 1px #fff solid; }
.premium_cost .last th{
	border-top: 1px solid #fff;
}
.travel-cost {
  position: relative;
  display: table;
  margin: 0 auto; }
  .travel-cost th {
    width: 100%; }
  .travel-cost th,
  .travel-cost td {
    text-align: center;
    padding: .6em .4em;
    display: table-cell; }
  .travel-cost td {
    border: 1px var(--green) solid; }
    .travel-cost td + td {
      border-top: none;
      padding: .6em .4em; }

.icon_plus {
  position: relative; }
  .icon_plus:before {
    content: '+';
    font-weight: bold;
    display: block;
    width: 35px;
    height: 35px;
    background: var(--green);
    color: #fff;
    border-radius: 20px;
    text-align: center;
    line-height: 32px;
    font-size: 1.75em;
    position: absolute;
    top: -40px;
    left: 50%;
    margin-left: -17px; }

/* ２カラム テーブル
------------------------------------------ */
.table_clm2 {
  display: table;
  margin: 0 auto; }
  .table_clm2 li {
    margin: 20p 0; }
  .table_clm2 th, .table_clm2 td {
    text-align: center !important;
    border: 1px solid #75bd93; }
  .table_clm2 td.bottom {
    padding: 2em 0; }
  .table_clm2 td.icon_plus:before {
    top: -20px; }
  .table_clm2 .price_container {
    padding: 2em 0; }
  .table_clm2 .price {
    display: block;
    font-size: 1.5em; }
  .table_clm2 .caution {
    margin: 0 1em;
    text-align: left; }

@media only screen and (min-width: 768px) {
  .table {
    width: 99%;
    margin: 0 auto;
    display: table;
    border-collapse: separate; }
    .table .table_caption {
      font-size: .8em;
      display: table-cell;
      text-align: center; }
    .table th,
    .table td {
      display: table-cell;
      vertical-align: middle; }
    .table th {
      font-size: .9em;
      letter-spacing: 1px;
      padding: .7em 0;
	border-bottom: 1px solid #fff;}
    .table td {
      border-right: 1px solid var(--green);
      border-bottom: 1px solid var(--green);
      padding: .7em 1%;
      text-align: left; }
      .table td + td {
        padding: .7em 1%; }
    .table .table_col1 {
      width: 18%; }
    .table .table_col2 {
      width: 60%; }
    .table .table_sol3 {
      width: 22%; }
    .table .last th,
    .table .last td {
      border-bottom: none; }
	
  /*  日常生活支援  */
  .daily_support_price {
    display: table;
    text-align: center;
    padding: .2em 0;
    width: 55%;
    margin: 10px auto 5px;
    float: left; }
    .daily_support_price .table th,
    .daily_support_price .table td {
      text-align: center;
      display: table-cell;
      width: auto; }
.daily_support_price .table td {
	border: 1px solid var(--green); 
}
  .inner {
    border: 1px dotted #75bd93;
    padding: 1em;
    border-radius: 10px; }
  .price_plan {
    width: auto;
    text-align: left;
    padding: .3em .4em;
    font-size: 12px;
    display: inline-block;
    border: 1px dotted #b9b9b9; }
  .travel-cost {
    display: block;
    width: 44%;
    float: left;
    padding: .2em 0;
    margin: 10px auto 5px 1%;
    position: relative;
    font-size: 14px; }
    .travel-cost td {
      text-align: center;
      vertical-align: middle;
      padding: 1em .3em; }
  .table_clm2 {
    width: 100%; }
    .table_clm2 > li {
      width: 49%;
      float: left; }
      .table_clm2 > li + li {
        margin-left: 2%; }
    .table_clm2 .bottom.icon_plus:before {
      left: 50%;
      margin-left: -17px;
      top: -5px; }
  .icon_plus:before {
    margin-left: -16px;
    left: -2%;
    top: 50%;
    margin-top: -17px; } }



/* 問い合わせフォーム
------------------------------------------ */
span#your_request {
  width: 96%;
  display: flex;
  margin: auto;
}
.wpcf7-list-item {
  line-height: 1.8rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  span#your_request {
    flex-direction: column;
  }
  .wpcf7-list-item{
    width: 100%;
    text-align: left;
  }
  .your_seibetsu .wpcf7-list-item {
    font-weight: normal;
    text-align: left;
    width: 90%;
  }
}
/* thanksページ
------------------------------------------ */
.thanks_page{
  color: #333;
}
.thanks_page p{
  text-align: center;
  line-height: 1.4rem;
  margin-bottom: 1rem;
}
.thanks_page .btn {
  width: 30%;
  margin: auto;
  padding: 1em;
  transition: 0.2;
}
.thanks_page .btn:hover {
	background: #fff;
	color: var(--blue);
	border-color: var(--blue);
	-webkit-box-shadow: 0 3px 0 var(--blue);
	box-shadow: 0 3px 0 var(--blue);
	top: -2px;
}

/* フッター前のお問い合わせ欄
------------------------------------------ */
.btm_contact_container {
  position: relative;
  margin-bottom: 40px; }
  .btm_contact_container._sub {
    padding: 70px 4% 0; }
    .btm_contact_container._sub .btm_contact {
      margin: 15px auto 0; }
    .btm_contact_container._sub .btm_contact_ttl {
      width: 100%;
      text-align: center;
      position: absolute;
      top: -5px;
      left: 0;
      right: 0;
      margin: 0 auto; }
.btm_contact {
	display: flex;
	align-items: center;
	justify-content: center;
}
.ttl_contact {
	font-size: 3rem;
	text-align: center;
	position: relative;
	margin: -6% auto 0;
	width: fit-content;
}

.ttl_contact:before,
.ttl_contact:after {
  position: absolute;
  z-index: 0;
  bottom: -10px;
  display: block;
  content: '';
  border: 0.7em solid #c63922;
}

.ttl_contact:before {
  left: -35px;
  border-left-width: 20px;
  border-left-color: transparent;
}

.ttl_contact:after {
  right: -35px;
  border-right-width: 20px;
  border-right-color: transparent;
}

.ttl_contact span {
	font-family: var(--mincho);
	letter-spacing: .3rem;
  position: relative;
  z-index: 1;
  display: block;
  padding: 1rem;
  color: #fff;
  background: #c84e32;
}

.ttl_contact span:before,
.ttl_contact span:after {
  position: absolute;
  bottom: -20px;
  display: block;
  width: 5px;
  height: 10px;
  content: '';
  border-style: solid;
  border-color: #b70505 transparent transparent transparent;
}

.ttl_contact span:before {
  left: 6px;
  border-width: 10px 0 0 10px;
}

.ttl_contact span:after {
  right: 6px;
  border-width: 10px 10px 0 0;
}
.btm_contact_container._sub .btm_contact li {
	width: 50%; 
}
.btm_contact_tel {
  text-align: center; }


.btm_contact_mail {
  margin: 25px auto;
  width: 85%;
  text-align: center; }
  .btm_contact_mail .btn {
    margin: 8px auto 0;
    padding: 1.3em 0;
    top: 30px;
    line-height: 2.4; }
    .btm_contact_mail .btn._home {
      top: auto;
      font-size: 1.25rem;
      padding: 1em 0; }
      .btm_contact_mail .btn._home:hover {
        top: auto; }
    .btm_contact_mail .btn:hover {
      bottom: auto;
      top: 30px;
      bottom: 4px !important; }
      .btm_contact_container._sub .btm_contact_mail .btn {
        width: 80%;
        margin: 8px auto 0;
        display: block;
        font-size: 1.5em;
        padding: 0.5rem 0;
	}
.btm_contact h4 {
	font-size: 1.5rem;	
	margin: 3% 0;
}
.btm_contact_tel {
	width: 100%;
	position: relative;
}
.btm_contact_tel::after {
	content: "";
	position: absolute;
	width: 1px;
	height: 100%;
	background: var(--brown);
	top: 0;
	right: 4%;
}
.btm_contact_tel a {
	font-size: 2.5rem;
	font-weight: bold;
	text-decoration: none;
	position: relative;
	transition: .4s;
	margin: 0 0 3% 5%;
	display: inline-block;
}
.btm_contact_tel a:hover {
	opacity: 0.6;
}
.btm_contact_tel a::before {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	background: url(./images/lib/images/cmn/tel.svg) no-repeat center center / contain;
	top: 50%;
	transform: translate(50%, -50%);
	left:  -15%;
}

.btm_contact_container._sub {
	padding: 20px;
}
@media only screen and (max-width: 1024px) {
	.btm_contact {
		flex-direction: column;
	}
	.btm_contact_container._sub .btm_contact li {
		width: 100%;
	}
	.btm_contact_container._sub .btm_contact li:first-child {
		margin-bottom: 5%;
	}
	.btm_contact_tel::after {
		width: 100%;
		height: 1px;
		top: 115%;
		left: 0;
	}
	.btm_contact h4 {
			margin: 0;
		}
	.btm_contact_tel a {
		margin: 0 0 0 5%;
	}
}


@media only screen and (min-width: 768px) {
  .btm_contact_container._home {
    text-align: center;
    padding: 110px 20px 0; }
    .btm_contact_container._home .btm_contact_ttl {
      position: absolute;
      top: 30px;
      width: 110%;
      left: 50%;
      margin: 0 0 0 -55%; }
    .btm_contact_container._home .btm_contact li {
      width: 100%; }
    .btm_contact_container._home .btm_contact .btm_contact_mail {
      margin: 25px 0; }

    .btm_contact_container._sub .btm_contact_ttl {
      position: relative;
      top: -22px;
      text-align: center;
      margin-bottom: -28px; }
    .btm_contact_container._sub .btm_contact {
      margin: 15px 0 25px;
      position: relative; }

        .btm_contact_container._sub .btm_contact li + li {
          width: 45%; }
    .btm_contact_container._sub .btm_contact_mail {
      margin: 0;
      height: 100%; }
}
	@media only screen and (max-width: 768px) {
		.ttl_contact {
			margin: -10% auto 0;
		}
		.btm_contact_mail .btn {
			top: 0;
		}
		.btm_contact_container._sub .btm_contact_mail .btn {
			width: 100%;
		}
	}
@media only screen and (max-width: 640px) {
	.ttl_contact {
        margin: -13% auto 0;
    }
	.btm_contact_container._sub .btm_contact li:first-child {
		margin: 5% 0;
	}
	
}
@media only screen and (max-width: 425px) {
	.ttl_contact {
		font-size: 1.8rem;
	}
	.ttl_contact:before {
		left: -21px;
	}
	.ttl_contact:after {
		right: -21px;
	}
	.btm_contact h4 {
		font-size: 1.3rem;
	}
	.btm_contact_tel a {
		font-size: 1.8rem;
		margin: 0 0 3% 10%;
	}
	.btm_contact_tel a::before {
		left: -19%;
	}
}
.copy-txt {
  color: var(--brown);
	text-align: center;
	line-height: 1.5;
	display: block;
}

.section {
  background: #fff;
  height: 100%;
  border-radius: 5px;
  margin: 25px auto 0;
  padding: 35px;
  -webkit-box-shadow: 0px 3px 11.4px 0.6px rgba(115, 84, 29, 0.2);
  box-shadow: 0px 3px 11.4px 0.6px rgba(115, 84, 29, 0.2); }

@media only screen and (max-width: 425px) {
	.section {
		padding: 20px;
	}
}
.home_services {
  position: relative; }
  .home_services:before {
    content: none; }

section.home_services, section.home_topics.section.row.gutters{
    width: 100%;
}
.home_contents {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin: 5% 0 0;
}
.home_content_detail {
	width: 40%;
	box-shadow: none;
	-webkit-box-shadow: none;
	margin: 0;
	padding: 3%;
	display: flex;
    flex-direction: column;
    align-items: center;
}
.home_content_detail img {
	border-radius: 5px;
	margin-bottom: 1.5rem;
}
.home_content_detail p {
	margin-bottom: 1rem;
}

.title_border {
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: #aaaaaa 1px dotted;
  text-align: center; }

@media only screen and (min-width: 768px) {
  ._green_arrow2top:before {
    content: '';
    background: url(./images/lib/images/home/home_green_tri.svg) no-repeat center;
    width: 45px;
    height: 26px;
    background-size: contain;
    position: absolute;
    top: -25px;
    left: 16%; } }
@media only screen and (max-width: 768px) {
	.home_contents {
		flex-direction: column;
	}
	.home_content_detail {
		width: 85%;
	}
	.home_content_detail:first-child {
		margin-bottom: 3%;
	}
}

/* PROJECT
------------------------------------------ */
#header {
	position: relative;
	z-index: 500;
	width: 100%;
	text-align: center;
	margin: 0; 
	padding: 20px 35px;
}
#header.section {
	color: #fff;
	border-radius: 0;
}
  #header img {
	  width: 100%;
    max-width: 100%;
    height: auto; }
.header_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1260px;
    margin: auto;
    flex-wrap: wrap;
}
.header_ttl_logo {
    text-align: center;
    max-width: 30%;
}


.header_ttl_logo a {
	transition: .4s;
}
.header_ttl_logo a:hover {
	opacity: 0.5;
}
.header_left {
	display: flex;
    justify-content: flex-end;
    align-items: center;
}
.header_tel {
	    min-width: 260px;
	margin: 0 3% 0 2rem;
}
.header_tel a {
    font-size: 2rem;
    font-weight: bold;
    color: #595942;
    text-decoration: none;
	position: relative;
	transition: .4s;
}
.header_tel a:before {
	content: "";
	position: absolute;
	width: 1.5rem;
	height: 1.5rem;
	background: url(./images/lib/images/cmn/tel.svg) no-repeat center center / contain;
	top: 50%;
	transform: translate(50%, -50%);
	left: -45px;
}
.header_tel a:hover {
	opacity: 0.6;
}
.header_contact {
    min-width: 250px;
}
.header_contact a {
    font-size: 1.2rem;
	font-weight: bold;
    letter-spacing: 1.5px;
    height: 100%;
	display: flex;
    align-items: center;
    justify-content: center;
	background:  var(--blue);
	padding: 10%;
}
.header_contact a:hover {
	background: #fff;
    color: var(--blue);
    border-color: var(--blue);
    -webkit-box-shadow: 0 3px 0 var(--blue);
    box-shadow: 0 3px 0 var(--blue);
}
.header_contact a i {
		background: url(./images/lib/images/cmn/arrow_white_blue.svg) no-repeat center center / contain;
	margin-bottom: 0;
}
.header_contact a:hover i {
		background: url(./images/lib/images/cmn/arrow_blue.svg) no-repeat center center / contain;
}

@media (max-width: 1024px) {
	.header_contents {
		flex-direction: column;
		align-items: center;
	}
	.header_ttl_logo {
    	width: 60%;
		max-width: none;
	}
	.header_left {
		width: 90%;
		justify-content: center;
		margin-top: 2%;
	}
	.header_contact {
		width: 100%;
	}
	.header_contact a {
		font-size: 1rem;
		letter-spacing: normal;
		width: 100%;
		padding: 1.5rem 0;
	}
}

@media (min-width: 768px) {
  #header {
    text-align: left; }
}
@media (max-width: 640px) {
	.header_ttl_logo {
        width: 80%;
    }
	.header_left {
		flex-direction: column;
	}
	.header_tel {
    	margin: 2% 0 4% 10%;
	}
}
@media (max-width: 425px) {
	.header_ttl_logo {
        width: 100%;
	}
}

/*  HOME  */
#home_keyimg {
	height: 50vw;
	min-height: 400px;
	max-height: 600px;
	padding: 2rem 1rem;
	background: url(./images/lib/images/home/fv.jpg) no-repeat center center/ cover;
}

.home_keyimg_ttl {
	color: var(--brown);
	font-size: clamp(2rem, 1.429rem + 1.43vw, 2.5rem);
	line-height: 1.3; 
	font-family: var(--mincho);
	letter-spacing: 0.3rem;
	text-align: center;
	text-shadow: 0px 0px 10px rgba(255, 255, 255, 0.5);
  -webkit-animation: home_key 5s ease;
  animation: home_key 5s ease; }

/*.home_keyimg_copy {
  text-align: center;
  -webkit-animation: home_key 8s ease;
  animation: home_key 8s ease; }*/

@-webkit-keyframes home_key {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@keyframes home_key {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }

@media (max-width: 768px) {
	.home_keyimg_ttl {
		font-size: 1.8rem;
		letter-spacing: 0.1rem;
	}
}
@media (max-width: 640px) {
	.home_keyimg_ttl {
		font-size: 1.6rem;
	}
}
@media (max-width: 425px) {
	.home_keyimg_ttl {
		font-size: 1.5rem;
		text-align: center;
	}
}

/* バナー
------------------------------------------ */
.home_bnrs .section {
  text-align: center; }

.home_bnrs p {
  line-height: 1.4;
  margin: 8px 0;
  text-align: left; }

.home_bnrs .btn {
  height: 50px;
  line-height: 45px; }

.home_bnrs_1 {
  position: relative;
  padding-top: 67px; }
  .home_bnrs_1 .home_bnrs_1_title {
    width: 110%;
    position: absolute;
    top: 15px;
    left: 50%;
    margin-left: -55%;
    text-align: center;
    border-bottom: none; }

.home_bnrs_1_img {
  height: 110px;
  background: url(./images/lib/images/home/home_main_bnr_ttl_1.jpg) no-repeat 50% 25%; }

.home_bnrs_2_img {
  height: 110px;
  background-color: #fff2e3;
  background-image: url(./images/lib/images/home/home_main_bnr_img_2.jpg);
  background-size: auto !important;
  background-repeat: no-repeat;
  background-position: center; }

.home_bnrs_3_img {
  height: 110px;
  background-image: url(./images/lib/images/home/home_main_bnr_img_3.jpg);
  background-position: 50% 50%; }

.back_img {
  background-size: cover;
  width: 100%;
  border-radius: 10px;
  display: block; }

/* ================================================
サービスリスト
================================================ */
 .btm_contact_ttl img, .btm_contact_tel img, .btm_contact_mail img{
    max-width: 100%;
    height: auto;
}
.services_list {
	display: flex;
	flex-wrap: wrap;
	margin: auto;
    width: 95%;
}
.home_services ul li {
	width: 49%;
	margin: 0 auto; 
}
.home_services p {
  line-height: 1.4;
}
.home_services_list {
	text-decoration: none;
	border-radius: 5px;
	margin: 10px auto;
	display: flex;
	align-items: center;
    justify-content: space-between;
	position: relative;
	border: 1px solid var(--brown);
	transition: .4s;
}
.home_services_list:hover {
	opacity: 0.6;
}
.home_services_list img{
	border-radius: 5px 0 0 5px;
	    display: block;
}
.services_list_txt {
	width: 65%;
	padding: 1rem;
}
.services_list_txt h4,
.services_list li:last-child h4 {
	color: var(--green);
	font-size: 1.5rem;
	font-family: var(--mincho);
    margin-bottom: 1rem;
}
.home_services ul li:last-child {
	width: 100%;
}
.home_services ul li:last-child a {
	width: 99%;
	padding: 1rem;
		display: flex;
	align-items: center;
	justify-content: center;
}
.services_list li:last-child h4 {
	text-align: center;
	line-height: 1.4;
	margin: 0 4% 0 0;
}
@media (max-width: 1024px) {
	.home_services ul li {
		width: 100%;
	}
	.home_services ul li:last-child a {
		flex-direction: column;
	}
	.services_list_txt {
		width: 75%;
	}
	.services_list li:last-child h4 {
		margin: 0;
	}
}

@media (max-width: 640px) {
	.services_list_txt h4, .services_list li:last-child h4 {
		font-size: 1.3rem;
		line-height: 1.5;
	}

}
@media (max-width: 425px) {
	.home_services_list figure {
		width: 50%;
	}
	.home_services_list img {
        width: 100%;
		border-radius: 0;
	}
	    .services_list_txt {
        width: 95%;
			padding: 0.5rem;
    }
	    .services_list_txt h4, .services_list li:last-child h4 {
			font-size: 1.2rem;
			margin-bottom: 0.5rem;
	}
	.home_services ul li:last-child a {
		padding: 0.5rem;
	}
}
/* トピックス
------------------------------------------ */
.home_topics {
    margin-top: 1.5rem !important;
}

.home_topics h3{
  text-align:center;
}
.home_topics ul{
  display: flex;
  justify-content: space-evenly;
  padding: 2rem 0 0;
}
.home_topics ul li{
  display: flex;
  flex-direction: column;
  width: calc(100% / 3 - 2rem);
}
.home_topics ul li a{
  text-decoration :none;
	transition:0.2s;
}
.home_topics ul li a:hover{
	opacity: 0.6;
}
.home_topics ul li a p{
  color: #898989;
  font-size: .95em;
  padding: 1rem 0 0.5rem;
}
.home_topics ul li h4{
  color: #333333;
  font-size: 1.5em;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.home_topics ul li a h4:hover{
	color: #75bd93;
}
.home_topics ul li img{
  display: block;
  width: 100%;
  height: 250px;
  object-fit: cover;
}
.home_topics_detail_btn{
  color: #75bd93;
  text-align: center;
  border: 1px solid #75bd93;
  border-radius: 10px;
  background: #fff;
  padding: 0.8rem;
  margin-top: auto;
}
a.home_topics_detail_btn:hover{
  color: #fff;
  background: #75bd93;
  opacity: 1!important;
}

/* トピックス・お知らせ共通
------------------------------------------ */
.home_topics_all_a, .home_info_all_a{
  color: #fff;
  font-size: 1.3em;
  width: 50%;
  padding: 1rem;
  margin: auto;
  margin-top: 2rem;
}
@media only screen and (max-width: 768px) {
  .home_topics ul {
    flex-direction: column;
    padding: 1rem 0 0;
  }
  .home_topics ul li{
    width: 100%;
    margin: 1rem 0;
  }
  .home_topics_all_a, .home_info_all_a{
    font-size: 1.2rem;
  }
}

/* お知らせ
------------------------------------------ */
.news_ttl {
  padding: 5px 25px 3px;
  background-color: #75bd93;
  border-radius: 5px;
  color: #fff;
  line-height: 1.6;
  font-size: .7em; }

.news_detail {
  padding: 5px 15px;
  line-height: 1.6; }

@media only screen and (min-width: 768px) {
  .news_ttl {
    width: 20%;
    float: left;
    clear: left;
    text-align: center;
    padding: 5px 0;
    background-color: #75bd93;
    border-radius: 5px;
    color: #fff;
    line-height: 1.6; }
  .news_detail {
    width: 80%;
    margin: 1.3rem 20%;
    padding: 0 15px;
    line-height: 1.6; } }
    .news_detail a {
      color: #333;
      font-weight: 700;
  }
  .news_detail a:hover{
    color:#75bd93;
  }
/*  SUB  */
#sub_ttl {
  position: relative;
  padding: 40px;
  text-align: center; }

.sub_ttl_img {
  display: none; }

.sub_exp {
  position: relative; }

@media only screen and (min-width: 768px) {
  #sub_ttl {
    padding: 40px 0 40px 80px;
    text-align: left; }
  .sub_ttl_img {
    display: block;
    position: absolute;
    right: 50px;
    top: -20px; } }

/*  Services  */
.other_services li {
  width: 85%;
  margin: 0 auto; }

.other_services_list {
  text-decoration: none;
  color: #272727;
  background-color: #ffe6cb;
  border-radius: 10px;
  margin: 20px 0 10px;
  background-position: -25% center;
  background-repeat: no-repeat;
  background-size: 50%;
  -webkit-transition: background-color .35s ease;
  -o-transition: background-color .35s ease;
  transition: background-color .35s ease;
  display: block;
  padding: 1.5em 20px;
  position: relative; }
  .other_services_list:before {
    top: 25px; }
  .other_services_list h4 {
    font-size: 1.55em;
    font-weight: normal;
    font-family: serif;
    text-align: center;
    margin-bottom: .5em; }
  .other_services_list p {
    margin: 5px 0 0;
    text-align: center; }
  .other_services_list:hover {
    background-color: #fff; }

@media only screen and (min-width: 1040px) {
  .home_services .row {
    margin-left: -1%; }
  .other_services_list {
    display: block;
    margin: 0 0 15px 1%; }
}

/* 万一の時
------------------------------------------ */
.case-list{
	margin-bottom: 3%;
}
.case {
  margin: 20px 0; }
.case_img {
	min-height: 60px;
	width: 20%;
	margin: auto;
	position: relative; 
}
  .case_img img {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    margin: auto; }
.case_ttl {
	background: var(--green);
	padding-top: 0.5rem;
}
.case-list .case,
.case-list .content-box,
.three-columns .case,
.three-columns .content-box {
      width: 32%;
	display: flex;
	flex-direction: column;
}
.case {
	border: 1px solid var(--green);
	border-radius: 5px;
}
.section .case ul {
	padding: 10px;
	min-height: calc(1.6em * 2);
}
.case_wrap {
	width: 32%;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.case_wrap > .case {
    width: 100%;
}
@media only screen and (max-width: 768px) {
	.case-list .case,
	.case-list .content-box,
	.three-columns .case,
	.three-columns .content-box {
		width: 100%;
	}
	.case_img {
		width: 60px;
	}
	.case_wrap {
		width: 100%;
		margin-bottom: 10%;
	}
}
@media only screen and (min-width: 768px) {
  .case-list,
  .three-columns {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }

  .two-columns {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .two-columns .content-box {
      width: 48%; } }
.box-inner {
	padding: 0.5rem;
}
.two-columns .content-box .box-title .table_ttl {
	border-radius: 3px 3px 0 0;
}
.content-box.equal-height._competition:first-child {
	border:1px solid var(--green);
	border-radius:  5px;
}
.content-box.equal-height._competition:last-child {
	border:1px solid var(--pink);
	border-radius:  5px;
}

/* お客様の声
------------------------------------------ */
.voice_image {
	width: 20%;
	margin-right: 5%;
}
.voice {
	margin: 20px 0; 
	width: 60%;
}

.voice_ttl {
	color: #fff;
	font-size: 1.25rem;
	font-weight: bold;
	display: inline-block;
	padding: 0.5rem 8%;
	background-color: var(--green);
	border-radius: 5px;
 }

.voice_detail {
  margin: 0 auto;
  line-height: 1.5; }
  .voice_detail.voice_detail_woman {
    background: url(./images/lib/images/cmn/voice_img_woman.png) no-repeat 3% bottom;
    background-size: 80px; }

.speech {
  padding-top: 1em;
  line-height: 1.6;
  display: inline-block;
}

@media only screen and (max-width: 768px) {
	.voice {
		width: 100%;
		margin: 0;
	}
	.voice_image {
		width: 35%;
		margin: 5% 0 0;
	}
	.voice_ttl {
    	padding: .5rem 0%;
        width: 100%;
        text-align: center;
	}
}

@media only screen and (max-width: 425px) {
	.voice_ttl {
		font-size: 1rem;
	}
}
/*   Aboutus  */
.philosophy {
	font-size: 1.2em;
	line-height: 1.6; 
}
  .philosophy .philosophy_text {
	  font-size: 2.5rem;
	font-family: var(--mincho);
	text-align: center;
    margin: 2% 0;
}
  .philosophy .article {
    font-size: .85em;
    margin: 0 0 5%;
    padding: 1em 0;
    border-top: 1px #333 dotted;
    border-bottom: 1px #333 dotted;
    color: #6d6d6d; }

.aboutus_outline:last-chld {
	display: flex;
}
  .aboutus_outline dt {
    background: var(--blue);
    color: #fff;
    text-align: center;
    line-height: 1.4;
    border-radius: 5px;
    font-size: .9em; 
}
  .aboutus_outline .name_field {
	  color: var(--brown);
    background: none;
    text-align: left;
    margin: 0 0 0;
    line-height: 1.4;
    border-radius: 5px;
    font-size: 1.1em; }
  .aboutus_outline dd {
    padding: .2em 1em .4em 0;
    margin: 0 0 15px;
    line-height: 1.4; }
.aboutus_outline a {
	color: #f4767c;
	text-decoration: none;
	transition: .4s;
	position: relative;
}
.aboutus_outline a::after {
	content: "";
	position: absolute;
	width: 100%;
	height: 1px;
	background: #f4767c;
	top: 120%;
	left: 0;
	transition: .4s;
}
.aboutus_outline a:hover,
.aboutus_outline a:hover::after {
	opacity: 0.6;
}

.name {
  display: block;
  font-family: serif;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

@media only screen and (min-width: 768px) {
  .philosophy {
    line-height: 1.8; }
  .aboutus_outline dt {
    width: 11%;
    float: left;
    clear: left; }
  .aboutus_outline .name_field {
	color: var(--brown);
    width: 19rem;
    background: none;
    text-align: left;
    padding: .1em 3em .1em 0;
    margin: 0 0 15px;
    line-height: 1.4;
    border-radius: 5px;
}
  .aboutus_outline dd {
    margin-left: 12%; } }
.aboutus_outline_adress {
	display: flex;
	margin-bottom: 3%;
}
.aboutus_outline_adress div {
	width: 50%;
	display: flex;
	align-items: flex-start;
}
.aboutus_outline_adress > div > dt {
	color: #fff;
	text-align: center;
    background: var(--blue);
	border-radius: 5px;
	width: 30%;
	margin-right: 3%;
	padding: 0.5rem 0;
}
@media only screen and (max-width: 768px) {
	.philosophy .philosophy_text {
		font-size: 1.5rem;
	}
	.aboutus_outline_adress,
	.aboutus_outline_adress div {
		flex-direction: column;
	}
	.aboutus_outline_adress div,
	.aboutus_outline_adress > div > dt {
		width: 100%;
	}
	.aboutus_outline_adress div {
		margin-bottom: 1rem;
	}
	.aboutus_outline_adress > div > dt {
		margin: 0 0 0.5rem 0;
	}
}

/*  Topics  */
.topics_wrap {
  padding: 2rem;
}
.topics_content{
  display: flex;
  background: #fff;
  padding: 2rem;
  border-radius: 16px;
  margin: 2rem 0;
}
.topics_content img{
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.topixs_sentences{
  display: flex;
  flex-direction: column;
}
.topcs_data {
  color: #898989;
  padding: 1rem 0;
}
.topics_h3{
  font-size: 1.8rem;
  line-height: 1.5em;
  margin-bottom: 1rem;
}
.topics_h3 a{
  color: #75bd93;
}
.topics-sentences p {
  line-height: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .topics_content {
    flex-direction: column;
  }
}

/*  Contact  */
.form-select-list li {
  text-align: left;
  width: 96%;
  font-size: 1.3em;
  vertical-align: middle;
  margin: 15px auto;
  font-weight: bold;
  border: 1px #75bd93 dotted;
  padding: .6em 0; }
  .form-select-list li input {
    vertical-align: text-bottom;
    width: 15px;
    height: 15px;
    margin-right: 10px; }

.form-select-list.horizontal-list li {
  font-weight: normal; }

#input-area {
  font-size: 1.2em; }

.table_form input {
  padding: .3em;
  font-size: 1.2em;
  border-radius: 3px;
  border: 1px #717171 solid;
}
.your_seibetsu input {
  width: auto;
}
input.input-zipcode {
  width: 20%;
}
textarea#input-body {
  width: 100%;
}
.table_form th,
.table_form th label {
	color: #fff;
}
@media only screen and (max-width: 768px) {
  .table_form input {
    width: 95%; }
  .your_seibetsu input {
      width: auto;
  }
	.table_form th, .table_form td {
    	width: 100%;
	}
	.table_form {
    display: table;
	}
}

@media only screen and (min-width: 768px) {
	.table_form {
		width: 90%;
	}
  .table_form td {
    padding-left: 1em; } }

.btn.submit {
  width: 65%;
  padding: .4em 0;
  font-size: 1.4em;
  margin: 25px auto; }

.require {
	font-size: 12px;
	padding: .2em .4em;
	background: #c84e32;
	color: #fff;
	border-radius: 5px;
	margin-left: 0.5em;
}

.pp {
	width: 90%;
	height: 250px;
	overflow-y: scroll;
	margin: 40px auto;
	padding: 3rem;
	border: 1px solid var(--green); 
}


@media only screen and (min-width: 768px) {
  .form-select-list {
    -js-display: flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between; }
    .form-select-list li {
      text-align: center;
      width: 100%;
      font-size: 1.3em; } }

/* ================================================
カスタム投稿共通
================================================ */
/*  シングルページ  */
.custom_single_contents_data{
  color: #fff;
  text-align: center;
  padding: 5px 0;
  background-color: #75bd93;
  width: 270px;
  border-radius: 5px;
  padding: 0.5rem 5rem;
  margin-bottom: 1rem;
}
.custom_single_contents_h2 {
  color: #333;
  font-size: 1.8rem;
  line-height: 2rem;
  margin-bottom: 1.5rem;
}
.custom_single_contents_sentence p{
  line-height: 2;
}
.custom_single_contents_sentence img {
  display: block;
}

.custom_single_contents_sentence h1 {
  color: #75bd93;
  font-size: 1.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid #75bd93;
  margin: 1rem 0;
}
.custom_single_contents_sentence h2 {
  color: #333;
  font-size: 1.2rem;
  padding: 0.8rem;
  border-left: 6px solid #75bd93;
  margin: 1rem 0;
}
.custom_single_contents_sentence a {
  color: #f57255;
}
.custom_single_contents_sentence a:hover {
  color: blue;
}

@media only screen and (max-width: 768px) {
  .custom_single_contents_h2 {
    font-size: 1.6rem;
  }
  .custom_single_contents_sentence h3{
    font-size: 1.5rem;
  }
}
/*  ページャー  */
.archive_pagination {
  margin: 2rem auto;
}
.page-numbers {
  background: #fef7ef;
  display: flex;
  justify-content: center;
  width: 50%;
  margin: auto;
  border-radius: 15px;
}
.page-numbers li {
  line-height: 2rem;
  padding: 1rem;
}
a.page-numbers {
  color: #333;
}
a.page-numbers:hover {
  color: #75bd93;
}
.page-numbers .current {
  color: #fff;
  line-height: 2rem;
  width: 2rem;
  height: 2rem;
  border: 100px;
  background: #75bd93;
}
.info_archive_contents_data, .topics_archive_data{
  text-align: center;
  background-color: #75bd93;
  border-radius: 5px;
  color: #fff;
  line-height: 1.6;
  padding: 0.5rem 5rem;
  margin-right: 3rem;
}

.info_archive_contents h3 a, .topics_archive_contents h3 a {
  color: #333;
  font-size: 1.4rem;
  line-height: 2rem;
}
.info_archive_contents h3 a:hover, .topics_archive_contents h3 a:hover{
  color: #75bd93;
}
.info_archive_contents_p, .topics_archive_contents_p{
  color: #333;
  line-height: 1.6;
}
      
/* ================================================
お知らせカスタム投稿
================================================ */
/*  アーカイブ  */
.info_archive_contents {
  display: flex;
  align-items: baseline;
  padding: 1.5rem 0;
  border-bottom: 1px solid #333;
}
.info_archive_contents h3 {
  padding-bottom: 1rem;
}
.info_archive_contents:first-child {
  padding-top: 0;
}
.info_archive_contents:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.info_archive_contents > div:last-child {
  display: flex;
  flex-direction: column;
}
.info_archive_content_btn{
  color: #75bd93;
  text-align: center;
  text-decoration: none;
  border: 1px solid #75bd93;
  border-radius: 10px;
  width: 30%;
  background: #fff;
  padding: 0.8rem;
  margin-left: auto;
  transition: 0.2s;
}
.info_archive_content_btn:hover {
  color: #fff;
  background: #75bd93;
  opacity: 1 !important;
}

@media only screen and (max-width: 768px) {
  .info_archive_contents {
    flex-direction: column;
  }
  .info_archive_contents h3 {
    padding-top: 1rem;
  }
  .info_archive_contents_p {
    padding-bottom: 1rem;
}
  .info_archive_content_btn{
    width: 80%;
    margin: auto;
  }
}

/* ================================================
トピックスカスタム投稿
================================================ */
/*  アーカイブ  */
.topics_archive_contents{
  display: flex;
  justify-content: space-evenly;
}
.topics_archive_img,.topics_archive_sentences {
  width: 45%;
}
.topics_archive_sentences {
  display: flex;
  flex-direction: column;
}
.topics_archive_img img {
  width: 100%;
}
.topics_archive_data, .topics_archive_sentences h3 {
  margin-bottom: 1rem;
}
.topics_archive_data {
  width: 200px;
  padding: 0;
}
.topics_archive_content_btn {
  padding: 1rem;
  margin-top: auto;
}
@media only screen and (max-width: 768px) {
  .topics_archive_contents {
    flex-direction: column;
  }
  .topics_archive_img, .topics_archive_sentences {
    width: 100%;
  }
  .topics_archive_data, .topics_archive_content_btn {
    margin-top: 1rem;
  }
}

/*  シングルページ  */
.custom_single_contents_sentence img {
  max-width: 750px;
  width: 100%;
  margin: 1rem auto;
}

/* ================================================
ELEMENT
================================================ */
/*  Color  */
body {
  background-color: #ffe6e7; }

.red_bg {
  background-color: #f4767c;
  color: #fff; }
  .red_bg a {
    color: #fff;
    text-decoration: none; }

.green_bg {
  background: #75bd93; }

.w80 {
  width: 80px !important; }

.w110 {
  width: 110px; }

.w400 {
  width: 60%; }

.mb5 {
  margin-bottom: 5px; }

.mt15 {
  margin-top: 15px; }

.mb15 {
  margin-bottom: 15px; }

.mt10 {
  margin-top: 10px; }

.mb10 {
  margin-bottom: 10px; }

.mb25 {
  margin-bottom: 25px; }

.mt40 {
  margin-top: 40px; }

.mb40 {
  margin-bottom: 40px; }

.w96 {
  width: 96%;
  margin: auto; }

.no_border_btm th, .no_border_btm td {
  border-bottom: none !important; }

.no_border_top th, .no_border_top td {
  border-top: none !important; }




  /*オリジナルテーブル*/

  .requirement_ttl th:first-of-type {
    width: 35%;
  }

  .requirement_ttl th:last-of-type {
    width: 65%;
  }

  .requirement_table {
    width: 96%;
    margin: auto;
  }

  .requirement_ttl th {
    background-color: var(--green);
    color: #fff;
    font-size: .9em;
    padding:1%;
  }

  .requirement_content td {
    border: 1px solid var(--green);
    padding: 1.4%;
    box-sizing: border-box;
    line-height: 1.3em;
  }
  .requirement_content td i {
    display: none;
  }
  .requirement_noto {
    width: 96%;
    display: block;
    margin: 8px auto;
    font-size: 0.9rem;
    color: #444;
    line-height:1.2rem;
  }

  @media screen and (max-width: 630px) {
    .requirement_content td i {
      display: inline-block;
      font-size: 0.5rem;
      vertical-align: middle;
      margin-right: 6px;
    }
    .requirement_ttl {
      display: none;
    }
    .requirement_ttl th:first-of-type {
      width: auto;
      display: block;
    }
  
    .requirement_ttl th:last-of-type {
      width: auto;
      display: block;
    }
    .requirement_content {
      border-top: 2px solid var(--green);
    }
    .requirement_content:first-of-type {
      border: none;
    }
    .requirement_content:last-of-type {
      border-bottom: 2px solid var(--green);
    }

    .requirement_content td {
      display: flex;
      align-items: baseline;
      width: auto;
      padding: 3%;
      border: none;

    }
    .requirement_content td:first-of-type {
      padding-bottom: 6px;
      font-size: 1.1rem;
    }
    .requirement_content td:last-of-type {
      padding-top: 0;
      font-size: 0.9rem;
      color:#555;
      margin-left: 16px;
    }
    .requirement_content td i {
      position: relative;
      top:-2.8px;
    }
  }
  @media screen and (max-width: 320px) {
    .requirement_content td {
      display: flex;
      align-items: baseline;
    }
    .requirement_content td:first-of-type {
      padding-bottom: 6px;
      font-size: 1.2rem;
    }
    .requirement_content td:last-of-type {
      font-size: 0.9rem;
    }
  }


/* .txt-l{
  text-align: left;
}
.txt-r{
  text-align: right;
} */
br {
  color: rgba(255, 255, 255, 0); }

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

@media only screen and (min-width: 768px) {
  .pc {
    display: table-row; }
  .sp {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .txt-r-pc {
    text-align: right !important; } }

@media screen and (max-width: 767px) {
  .sp-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: end;
    -ms-flex-align: end;
    align-items: flex-end; } }

/*  FOOTER  */
#footer {
  position: relative;
  margin-top: 180px;
  background-color: #fff;
  padding: 30px 0 0;
	display: flex;
    flex-direction: column;
}
#footer .container {
	margin-bottom: 45px;
	
}
  #footer ul {
    margin: 0 auto 1rem 0;
    text-align: center; 
	display: flex;
	align-items: center;
	justify-content: center;
}
@-moz-document url-prefix() {
	.footer_logo,
	.footer_logo_store {
		width: 50%;
	}
	@media (max-width: 768px) {
		.footer_logo,
		.footer_logo_store {
			width: 90%;
		}
	}
}


    #footer li img {
      width: 100%; }
    #footer li + li {
      margin-left: 2%; }
.footer_logo_store {
	display: flex;
	align-items: center;
	justify-content: end;
}
.footer_logo_store p {
	margin-right: 1rem;
}
#footer li.footer_logo_store img {
	width: 20%;
}
#footer:before {
    content: '';
    width: 100%;
    height: 103px;
    background: url(./images/lib/images/cmn/footer_deco.svg) no-repeat center center / cover;
    position: absolute;
    top: -27%;
    left: 0;
	z-index: -10;
}

.copyright {
	background: var(--green);
  text-align: center;
  width: 100%;
  padding: 1% 0;
  color: #fff; }

footer > .home_services, footer > .row.gutters {
    width: 93%;
    max-width: 1220px;
	margin: 3% auto 0;
}

@media (max-width: 1024px) {
	#footer {
		margin-top: 100px;
	}
}
@media (max-width: 768px) {
	footer > .home_services, footer > .row.gutters {
		margin: 10% auto 0;
	}
	#footer div.container{
		padding: 0 8%;
	}
}
@media (max-width: 640px) {
	#footer:before {
		width: 100%;
    	top: -23%;
		left: 0;
	}
	#footer ul {
		flex-direction: column;
	}
	.footer_logo_store {
    	justify-content: center;
	}
	.copyright {
		padding: 20px 0;
	}
}

/* Firefox */
@-moz-document url-prefix() {
.header_ttl_logo {
	width: 40%;
	}
	#footer::before{
		top:-38%;
	}
	#footer li img {
		width: 320px;
	}
	@media (max-width: 768px) {
		.sp-box{
			width: 100%;
		}
	}
	@media (max-width: 640px) {
		#footer::before{
		top:-23%;
		}
	}
}

/* ================================================
STATE
================================================ */
