@media print {
  body {
    overflow: visible !important;
  }
}

:root {
  /* base color */
  --color-green: #008a53;
  --color-red: #f00;
  --color-gray: #ccc;
  --serif: "Yu Mincho", "Hiragino Mincho ProN", serif;
  --sans: "Yu Gothic Medium", "游ゴシック Medium", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow: auto;
  /* scroll-behavior:smooth のおまじない */
}

body {
  line-height: 1.7;
  background-color: #fff;
  color: #000;
  font-family: var(--sans);
  font-weight: 500;
}

strong {
  color: #dc3a12;
}

blockquote {
  border: solid 1px #cccccc;
  background: #f0f0f0;
  margin: 1em;
  padding: 1em;
}

dl {
  margin: 1em 0;
}

dd {
  margin-left: 3em;
}

ul,
ol {
  margin: 1em 0 1em 2em;
  padding: 0;
}

p {
  margin: 1em 0;
}

a {
  text-decoration: underline;
}

a img {
  vertical-align: middle;
}

a:not([href]) {
  pointer-events: none;
  text-underline-offset: -0.5em;
}

input[type="text"]:focus,
textarea:focus {
  background-color: #ffc;
}

/* lazyload */
.fade {
  opacity: 0;
  transition: opacity 0.5s;
}

.fade.lazyloaded {
  opacity: 1;
}

.fadeUp {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.5s;
}

.fadeUp.lazyloaded {
  transform: translateY(0);
  opacity: 1;
}

.zoom {
  opacity: 0;
  transform: scale(0.9);
  transition: 0.5s;
}

.zoom.lazyloaded {
  transform: scale(1);
  opacity: 1;
}

/* clearfix */
.pkg:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.breadcrumbs {
  margin: 0 0 2em;
  padding: 10px 0;
  font-size: 12px;
}

.breadcrumbs ul {
  display: inline;
  margin: 0;
}

.breadcrumbs,
.breadcrumbs ul {
  list-style-type: none;
}

.breadcrumbs li {
  display: inline;
}

.breadcrumbs ul li {
  margin-left: 0.5em;
}

.breadcrumbs ul ul:before {
  content: ">";
  margin-left: 0.5em;
}

.entry-meta {
  font-size: 12px;
}

.entry-meta dt,
.entry-meta dd {
  display: inline;
}

.entry-header .entry-meta {
  text-align: right;
}

.entry-footer .entry-meta {
  clear: both;
  margin: 1em 0 0;
  border: dotted 1px #ccc;
  padding: 5px;
}

.entry-date {
  text-align: center;
}

/* content */
blockquote .cite {
  text-align: right;
}

a.img {
  display: block;
  text-decoration: none;
  overflow: hidden;
}

.img {
  display: block;
  position: relative;
  background-repeat: no-repeat;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
}

.img * {
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style-type: none;
  white-space: nowrap;
  overflow: hidden;
  text-indent: 100%;
}

.img br {
  display: none;
}

.img a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

table.img {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

table.img tr,
table.img th,
table.img td {
  background-color: transparent !important;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright,
.right {
  float: right;
  padding: 0 0 10px 10px;
}

.alignleft,
.left {
  float: left;
  padding: 0 10px 10px 0;
}

.clr {
  clear: both;
}

.img2 {
  text-align: center;
  text-indent: 0;
}

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

div.att {
  margin-top: 1em;
}

div.att>p,
p.att {
  margin-top: 1em;
  text-indent: -1em;
  padding-left: 1em;
  text-align: left;
}

div.att p {
  margin: 0;
}

div.att>p>span:first-child,
.att>em:first-child,
.att>span:first-child {
  color: red;
  font-style: normal;
}

span.att {
  text-indent: 0;
  padding: 0;
}

.att2 {
  color: red;
}

p.more a,
a.more {
  position: relative;
  padding-left: 12px;
}

p.more a:before,
a.more:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 6px;
  border-color: transparent transparent transparent #12a73b;
}

.button a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 2em auto 0;
  width: 300px;
  height: 48px;
  background: #008a53;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
}

.button a:after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: 12px;
  width: 12px;
  height: 16px;
  background: #d9e021;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

.checkList {
  list-style-type: none;
  margin-left: 0;
}

.checkList li {
  position: relative;
  padding: 5px 0 5px 42px;
  font-size: 128%;
}

.checkList li:after {
  content: "";
  display: block;
  position: absolute;
  margin-top: -15px;
  top: 20px;
  left: 20px;
  width: 8px;
  height: 16px;
  transform: rotate(40deg);
  border-bottom: 4px solid #53c54b;
  border-right: 4px solid #53c54b;
  box-shadow: 2px 2px 2px #ccc;
}

.checkList2 {
  margin-left: 0;
  list-style-type: none;
}

.checkList2 li {
  position: relative;
  padding: 5px 0 5px 40px;
  font-size: 128%;
}

.checkList2 li:before {
  content: "";
  position: absolute;
  left: 12px;
  top: 8px;
  border: solid 2px #000;
  width: 16px;
  height: 16px;
}

.checkList2 li:after {
  content: "";
  position: absolute;
  left: 17px;
  top: 0;
  width: 10px;
  height: 20px;
  transform: rotate(40deg);
  border-bottom: 3px solid #f00;
  border-right: 3px solid #f00;
  box-shadow: 2px 2px 2px #ccc;
}

/* wordpress */
.aligncenter {
  display: block;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}

.alignright {
  float: right;
  margin: 1em 0 1em 1em;
}

.alignleft {
  float: left;
  margin: 1em 1em 1em 0;
}

/* number list */
.nList {
  counter-reset: number;
  list-style-type: none;
  margin: 1em 0 1em 30px;
}

.nList li {
  position: relative;
  padding: 5px 0 5px 30px;
  font-size: 125%;
  color: #e2a91e;
  counter-increment: number;
}

.nList li:before {
  content: counter(number);
  position: absolute;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 15px;
  background: #e2a91e;
  color: #fff;
  font-size: 88%;
  text-align: center;
  font-weight: bold;
}

.nBoxList {
  counter-reset: number;
  list-style-type: none;
  margin: 1em 0;
  line-height: 1.5;
}

.nBoxList li {
  position: relative;
  margin: 10px 0 0;
  padding: 10px 10px 10px 50px;
  font-size: 125%;
  background-color: #a72c29;
  color: #fff;
  text-indent: -40px;
}

.nBoxList li:before {
  counter-increment: number;
  content: counter(number) ". ";
  width: 30px;
  height: 30px;
  background-color: #a72c29;
  color: #fff;
  text-align: center;
  z-index: -1;
}

.nBoxList2 {
  display: table;
  margin: 1em auto;
  width: auto;
  counter-reset: number;
  list-style-type: none;
}

.nBoxList2 li {
  position: relative;
  padding: 0 0 0 42px;
  background: initial;
  color: inherit;
  font-size: 16px;
  counter-increment: number;
}

.nBoxList2 li:before {
  content: counter(number);
  position: absolute;
  left: 0;
  top: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  background: #71bb48;
  color: #fff;
  font-size: 18px;
}

.nBoxList2 li>p:first-child {
  padding: 0;
  color: #0d6e53;
  font-size: 24px;
  font-weight: bold;
}

.b2 {
  color: red;
}

.b3 {
  background-image: linear-gradient(transparent 80%, #ff0 80%);
  font-weight: bold;
}

/* bouten */
/* .b3 { padding-top:.6em; background-position: top left -2px -8px; background-repeat: repeat-x; background-size: 1em .8em; background-image: radial-gradient(.18em .18em at center center,#e3a81c,#e3a81c 100%,transparent); font-size:119.05%; } */
.b4 {
  padding-top: 0.6em;
  text-emphasis: filled circle red;
  font-size: 119.05%;
}

a[href$=".pdf"]:before {
  content: url(pdf_small.png);
  margin-right: 2px;
}

input[type="search"] {
  border-radius: 20px;
  border: solid 1px #ccc;
  background: url(search.svg) no-repeat 4px 50%/16px 16px;
  padding-left: 20px;
  box-sizing: border-box !important;
}

/* table */
.table {
  margin: 1em auto 0;
  border-collapse: collapse;
}

table.line th,
table.line td,
.table th,
.table td {
  color: #333;
  padding: 20px;
  border: solid 1px #bfc55f;
}

.table th {
  font-weight: normal;
  vertical-align: middle;
  text-align: center;
}

.odd,
.table>tbody>tr>td {
  background: #fff;
}

.even,
.table2>tbody>tr:nth-of-type(2n)>td,
.table2>tbody>tr:nth-of-type(2n + 1)>th,
.table>tbody>tr>th {
  background: #5a7e55;
  color: #fff;
}

.table2>tbody>tr:nth-of-type(2n)>th {
  background-color: #eee;
}

.table>tbody>tr.head>th {
  background-color: #2c8120;
  font-weight: bold;
}

caption,
tr.caption>th {
  padding: 10px;
  background: #008a53 !important;
  color: #fff;
  font-weight: bold;
  text-align: left !important;
}

.fee {
  margin: 1em auto 0;
  width: 100%;
}

.fee>tbody>tr>th,
.fee>tbody>tr>td,
.table .val {
  vertical-align: middle;
  text-align: center;
}

.table .text {
  text-align: left !important;
}

table.list {
  width: 100%;
  margin-top: 1em;
}

table.list th,
table.list td {
  vertical-align: top;
  text-align: left;
}

table.list .head td {
  text-align: center;
}

.history {
  border-top: solid 1px #808080;
  width: 100%;
  margin-top: 1em;
}

.history th,
.history td {
  border-bottom: solid 1px #808080;
  padding: 20px;
  font-weight: normal;
  text-align: left;
  vertical-align: top;
}

.fsL {
  font-size: 128%;
}

.fsLL {
  font-size: 144%;
}

.mark,
.markTbl td {
  text-align: center;
  font-family: var(--sans);
}

.mailaddress {
  vertical-align: middle;
}

.gmap {
  position: relative;
  margin: 20px auto;
  width: 600px;
  height: 600px;
}

.gmap iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.slideMenu .head span {
  display: none;
}

#changeView {
  display: none;
}

.mobile #changeView {
  display: block;
}

#changeView {
  clear: both;
  margin: 16px auto;
  width: 320px;
}

#changeView li {
  float: left;
}

#changeView li a {
  display: block;
  height: 48px;
  text-indent: -9999px;
}

/* content */

#mkcontents,
#mkcontents table,
#contents {
  font-size: 16px !important;
  line-height: 1.7 !important;
}

.asset-footer {
  margin-top: 2em;
}

.asset-meta {
  margin: 0 0 1em;
  font-size: 12px;
  text-align: right;
}

.asset-body>*:first-child {
  margin-top: 0;
}

article {
  padding-bottom: 20px;
}

.page-title,
article h1 {
  margin: 0;
  color: #005a49;
  font-size: 34px;
  font-family: var(--serif);
}

article h1+h2,
article h1+h3,
article h2+h3 {
  margin-top: 1em;
}

article h2 {
  margin: 2em calc(50% - 50vw) 0;
  padding: 16px 0;
  width: 100vw;
  background: #005a49;
  color: #fff;
  font-size: 28px;
  text-align: center;
}

article h2 a {
  color: #fff;
}

article h2>.wrapper {
  display: block;
}

article h1+h2 {
  margin-top: 1em !important;
}

article h3 {
  border-left: solid 12px #007686;
  margin: 2em 0 0;
  padding-left: 12px;
  color: #007686;
  font-size: 28px;
}

article h4 {
  border-left: solid 10px #518736;
  margin: 1.5em 0 0;
  padding: 8px 8px 8px 15px;
  background: #fffbec;
  color: #518736;
  font-size: 22px;
}

article h5 {
  border-left: solid 10px #518736;
  margin: 1.5em 0 0;
  padding: 0 0 0 15px;
  color: #518736;
  font-size: 18px;
}

article h6 {
  margin: 1em 0 0;
  font-size: 18px;
  color: #518736;
}

article p {
  margin: 1em 0 0;
}

article b.b2 {
  color: red;
}

article fieldset {
  margin: 1em auto;
}

article legend {
  font-weight: bold;
}

.entryMeta {
  margin: 1em 0 0;
}

.entryMeta>span {
  display: table-cell;
  padding-right: 1em;
}

.entryMeta .cat {
  background-color: #6d9923;
  color: #fff;
  padding: 2px 5px;
}

article.case {
  margin: 1em 0 0;
}

#gotop {
  display: block;
  position: fixed;
  width: 100%;
  height: 0;
  top: auto;
  bottom: 20px;
  z-index: 9999;
}

#gotop a {
  display: none;
  position: relative;
  float: right;
  margin-top: -100px;
  margin-right: -15mm;
  background: #666;
  border-radius: 25px;
  width: 40px;
  height: 40px;
  text-indent: -9999px;
  opacity: 0.7;
}

#gotop a:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -7px;
  margin-top: -4px;
  border-style: solid;
  border-width: 4px 0 0 4px;
  border-color: #fff;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

.checkBox {
  list-style-type: none;
  margin: 0;
}

.checkBox input {
  display: none;
}

.checkBox label:before {
  content: "";
  position: absolute;
  border: solid 4px #ccc;
  margin-top: -10px;
  left: 0;
  top: 50%;
  width: 16px;
  height: 16px;
}

.checkBox label {
  display: block;
  position: relative;
  padding: 14px 0 14px 35px;
  font-size: 19px;
  font-weight: bold;
}

.checkBox input:checked+label:after {
  content: "";
  display: block;
  position: absolute;
  margin-top: -15px;
  top: 50%;
  left: 7px;
  width: 9px;
  height: 18px;
  transform: rotate(40deg);
  border-bottom: 3px solid #f00;
  border-right: 3px solid #f00;
}

/*  */
.subcatMenu {
  text-align: center;
}

.content-nav {
  text-align: center;
}

.content-nav a {}

.pagenate ul {
  list-style-type: none;
  margin-left: 0;
}

.pagenate li {
  display: inline;
  margin-left: 0.5em;
}

/* mailform */
.mailformMsg {
  color: var(--color-red);
}

#mail_form *:focus {
  background-color: #ffc;
}

#mail_form input[type="text"],
#mail_form textarea {
  font-weight: normal;
}

#mail_form label {
  font-weight: bold;
}

#mail_form input.name {
  width: 20em;
}

#mail_form input.tel {
  width: 14em;
}

#mail_form input.mail {
  width: 30em;
}

#mail_form input.zip {
  width: 8em;
}

#mail_form input.pref {
  width: 8em;
}

#mail_form input.address {
  box-sizing: border-box;
  width: 100%;
}

#mail_form textarea {
  box-sizing: border-box;
  width: 100%;
  height: 8em;
}

#mail_form label b {
  font-weight: normal;
  color: red;
}

#mail_form fieldset {
  background: transparent;
  margin: 1em 0 0;
  padding: 10px 15px;
}

#mail_form fieldset label {
  font-weight: normal;
  white-space: nowrap;
  float: left;
  margin-right: 1em;
}

#mail_form legend {
  font-weight: bold;
  color: #000;
}

#mail_form legend b {
  color: red;
}

#mail_form select {
  max-width: 100%;
}

#mail_form-checkbox {
  display: block;
  clear: both;
}

#mail_form-checkbox #mail_form-list-item {
  display: block;
}

#mail_form-checkbox label {
  font-weight: normal;
}

#mail_form-checkbox:after {
  display: block;
  clear: both;
  content: " ";
  height: 0;
}

#mail_form-radio label {
  font-weight: normal;
}

#mail_form .mf_month,
#mail_form .mf_day,
#mail_form .mf_hour,
#mail_form .mf_month2,
#mail_form .mf_day2,
#mail_form .mf_hour2,
#mail_form .mf_month3,
#mail_form .mf_day3,
#mail_form .mf_hour3 {
  display: inline;
}

#mail_form .mf_privacy {
  position: static;
  display: inline;
  margin-right: 1em;
}

#mail_form #mf_privacy {
  position: relative;
  text-align: center;
}

#mail_form #mf_privacy input[type="checkbox"] {
  margin-right: 8px;
}

#mail_form #mf_privacy #mail_form-not-valid-tip {
  position: absolute;
  left: 0;
  bottom: -1em;
  width: 100%;
}

#mail_form #mf_privacy #mail_form-form-control-wrap {
  display: inline;
}

#mail_form #mail_form-not-valid {
  background: pink;
}

#mail_form input[type="submit"]:active {
  border: inset 2px #ccc;
  transform: translate(1px, 1px);
}

/* widget */
.widget-posts {
  position: relative;
}

.widget-posts .outer {
  border: solid 1px #ccc;
  padding: 14px;
}

.widget-posts .head {
  background-color: #dbebf6;
  color: #fff;
}

.widget-posts .head a {
  display: block;
  height: 100%;
  text-indent: -9999px;
}

.widget-posts .categoryTop {
  position: absolute;
  right: 0;
  top: 0;
  width: auto;
  height: 40px;
}

.widget-posts .categoryTop a {
  float: right;
  line-height: 40px;
  width: 10px;
  background: url(li01.svg) no-repeat 0 50%;
  background-size: contain;
  text-decoration: none;
  margin-right: 10px;
  text-indent: -9999px;
}

.widget-posts ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.widget-posts li {
  border-bottom: dashed 1px #ccc;
}

.widget-posts li a {
  display: flex;
  padding: 10px;
  color: inherit;
  text-decoration: none;
}

.widget-posts li span {
  display: block;
}

.widget-posts .date {
  width: 9em;
  font-size: 14px;
}

.widget-posts .new {
  display: inline;
  margin-left: 5px;
  color: #f00;
}

.widget-flow {
  margin: 1em auto;
}

.widget-flow .step {
  position: relative;
  padding-left: 80px;
  margin-bottom: 18px;
}

.widget-flow .step:before {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 27px;
  width: 20px;
  height: 100%;
  background: #f8cb86;
  z-index: 0;
}

.widget-flow .step:after {
  content: "";
  position: absolute;
  left: 0;
  margin: 0 19px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 18px 18.5px 0 18.5px;
  border-color: #f8ca86 transparent transparent transparent;
  z-index: 1;
}

.widget-flow .step:last-child:before,
.widget-flow .step:last-child:after {
  border: none;
  padding-bottom: 0;
  background-color: #fff;
  background-image: none;
}

.widget-flow .step .head {
  position: relative;
  border: none;
  border-left: solid 6px #0c4f0b;
  margin-left: -80px;
  margin-top: 5px;
  background-color: #ededed;
  color: #333;
  z-index: 99;
}

.widget-flow .step .body {
  padding: 10px;
}

.wPrivacyPolicy {
  margin: 1em 0 0;
  border: solid 1px #ccc;
  padding: 9px;
  height: 200px;
  overflow: auto;
}

.wPrivacyPolicy>*:first-child {
  margin-top: 0;
}

.wShareButton ul {
  list-style-type: none;
  margin: 0;
}

.wShareButton ul:after {
  content: "";
  display: block;
  clear: both;
  height: 0;
}

.wShareButton li {
  float: left;
  margin: 10px;
}

.wShareButton .line {
  display: block;
  width: 82px;
  height: 20px;
  background: url(linebutton_82x20.png) no-repeat;
  background-size: 82px 20px;
  text-indent: -9999px;
}

.wMovie {
  max-width: 560px;
  margin: 10px auto;
}

.wMovie>div {
  position: relative;
  height: 0;
  padding: 56.25% 0 0;
}

.wMovie>div iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.wBox .inner {
  border: solid 1px #ccc;
  margin: 1em 0 0;
  padding: 19px;
  background: #ffe;
}

.wBox .inner>*:first-child {
  margin-top: 0;
}

.wAcc .acc {
  border: solid 1px #bbb;
  margin: 20px 0 0;
}

.wAcc input {
  display: none;
}

.wAcc label {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  padding: 18px 42px 18px 18px;
  background: #fff;
  color: #000;
  font-weight: bold;
  cursor: pointer;
}

.wAcc label+div {
  padding: 0 18px;
  overflow: hidden;
  transition: max-height 0.5s;
  max-height: 0;
  height: 100px;
}

.wAcc label span {
  color: #eb5e01;
  font-weight: bold;
}

.wAcc input+label:after {
  content: "+";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 13px;
  margin: 0;
  right: 10px;
  top: calc(50% - 12.5px);
  width: 25px;
  height: 25px;
  background: #cdab00;
  color: #fff;
  font-size: 20px;
}

.wAcc input:checked+label:after {
  content: "-";
}

.wAcc input:checked+label+div {
  display: block;
  height: auto;
  max-height: 300px;
}

.wAcc .body span:first-child {
  color: #12a73b;
  font-weight: bold;
}

.wAcc .head {
  display: flex;
  align-items: center;
  margin: 0 0 30px;
  padding: 0 20px;
  height: 56px;
  background-color: #000;
  background-repeat: no-repeat;
  background-position: 100% 0;
  color: #fff;
  font-size: 22px;
}

.wAcc .outer {
  padding: 0 28px;
}

.wAcc .more a {
  display: block;
  margin: 30px auto 0;
  padding: 0;
  width: 234px;
  height: 56px;
}

.widget-column a {
  color: inherit;
  text-decoration: none;
}

.widget-column .title {
  font-size: 114%;
  font-weight: bold;
}

.widget-column .cats {
  display: flex;
  flex-wrap: wrap;
  font-size: 12px;
}

.widget-column .cats a {
  display: block;
  margin: 1px;
  padding: 0 8px;
  background: #005a49;
  color: #fff;
}

.widget-column .cats a.kojin {
  background: #bca523;
}

.widget-column .cats a.hojin {
  background: #0a757f;
}

.widget-column .cats a.iryou {
  background: #2b83a2;
}

.widget-column .thumb img {
  width: 100%;
  height: auto;
}

.widget-column .noimg {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 0;
  padding-top: 66.67% !important;
  background: #ccc;
  text-align: center;
}

.widget-column .noimg:before {
  content: "no image";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

.widget-inquiry {
  margin: 1em auto;
  max-width: 750px;
}

.widget-inquiry .img {
  padding-top: 27.73%;
  height: 0;
}

.widget-inquiry .img.lazyloaded {
  background: url(inquiry.png) no-repeat 0 0 / contain;
}

.widget-inquiry .mail a {
  left: 75.87%;
  top: 24.52%;
  width: 21.33%;
  height: 0;
  padding-top: 10.67% !important;
}

.widget-inquiry .tel a {
  left: 30.53%;
  top: 35.1%;
  width: 42.53%;
  height: 0;
  padding-top: 5.07% !important;
}

/* QA */
.widget-qa ul {
  border-top: solid 1px #808080;
  margin: 0;
  list-style-type: none;
}

.widget-qa li {
  border-bottom: solid 1px #808080;
  padding: 20px;
}

@media print,
screen and (min-width: 751px) {
  :root {
    --header-menu-height: 56px;
  }

  /* 固定メニューの高さ */
  html {
    scroll-padding-top: calc(var(--header-menu-height) + var(--wp-admin--admin-bar--height, 0px)) !important;
    /* アンカーまでの余白 */
  }

  body {
    min-width: 1024px;
  }

  a:hover {
    opacity: 0.5;
  }

  /* hidden */
  .sp {
    display: none;
  }

  /* layout */

  .wrapper {
    width: 1024px;
    margin-right: auto;
    margin-left: auto;
  }

  /* #header {} */
  #header .wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100px;
  }

  #header-name.img {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 307px;
    height: 53px;
  }

  #header-name.img.lazyloaded {
    background: url(sitename.png) no-repeat;
  }

  #header-tel.img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 238px;
    height: 74px;
  }

  #header-tel.img.lazyloaded {
    background: url(header-tel.png) no-repeat;
  }

  #header-mail.img {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 112px;
    height: 64px;
  }

  #header-mail.img.lazyloaded {
    background: url(header-mail.png) no-repeat;
  }

  #header-menu ul {
    display: flex;
    margin: 0;
    list-style-type: none;
  }

  #header-menu li {
    border-left: solid 1px #000;
  }

  #header-menu li:first-child {
    border-left: none;
  }

  #header-menu a {
    display: inline-block;
    padding: 0 8px;
    color: inherit;
    text-decoration: none;
  }

  #header-menu2 {
    border-bottom: solid 2px #008a53;
  }

  #header-menu2>ul {
    display: flex;
    justify-content: space-around;
    margin-top: 8px;
    margin-bottom: 8px;
    list-style-type: none;
  }

  #header-menu2>ul>li {
    position: relative;
    border-right: dotted 1px #000;
    width: 20%;
  }

  #header-menu2>ul>li:first-child {
    border-left: dotted 1px #000;
  }

  #header-menu2>ul>li>a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 56px;
    color: inherit;
    text-decoration: none;
    text-align: center;
  }

  #header-menu2 ul ul {
    position: absolute;
    box-sizing: border-box;
    margin: 0;
    padding: 8px 4px;
    min-width: 100%;
    background: #008a53;
    transition: opacity 0.2s ease;
    visibility: hidden;
    opacity: 0;
    list-style-type: none;
    z-index: 99;
  }

  #header-menu2>ul>li:hover ul {
    visibility: visible;
    opacity: 0.9;
  }

  #header-menu2 ul ul a {
    display: flex;
    justify-content: center;
    align-items: center;
    border-bottom: solid 1px #fff;
    width: auto;
    height: 55px;
    color: #fff;
    font-size: 14px;
    white-space: nowrap;
    text-decoration: none;
    text-align: center;
  }

  /* footer */
  #footer {
    padding: 26px 0;
    background: #008a53;
    color: #fff;
  }

  #footer a {
    color: #fff;
  }

  #footer .wrapper {
    display: flex;
    justify-content: space-between;
  }

  #footer-name .img {
    width: 280px;
    height: 54px;
  }

  #footer-name .img.lazyloaded {
    background: url(f_logo.png) no-repeat;
  }

  #footer address {
    margin: 8px 0;
    font-size: 14px;
    font-style: normal;
  }

  #footer-banner ul {
    display: flex;
    margin: 0 0 0 -14px;
    list-style-type: none;
  }

  #footer-banner li {
    margin: 0 0 0 14px;
  }

  #footer-banner .img {
    width: 180px;
    height: 60px;
  }

  #footer-banner .b1 a {
    background: url(fb01.png) no-repeat;
  }

  #footer-banner .b2 a {
    background: url(fb02.png) no-repeat;
  }

  #footer-menu ul {
    list-style-type: none;
    margin: 1em 0;
    padding: 0;
    display: flex;
    justify-content: center;
  }

  #footer-menu li {
    position: relative;
  }

  #footer-menu li:before {
    content: "";
    position: absolute;
    margin-top: -8px;
    left: 0;
    top: 50%;
    width: 1px;
    height: 16px;
    background: #000;
  }

  #footer-menu li:first-child:before {
    content: none;
  }

  #footer-menu a {
    padding: 0 8px;
    color: inherit;
    text-decoration: none;
  }

  #footer-menu2 {
    background: #767676;
    padding: 0 0 5px;
    font-size: 14px;
  }

  #footer-menu2 ul {
    list-style-type: none;
    margin: 0;
    padding: 0 0 5px;
    display: flex;
    justify-content: center;
  }

  #footer-menu2 a {
    position: relative;
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0 15px;
  }

  #footer-menu2 a:before {
    content: "";
    position: absolute;
    left: 5px;
    top: 8px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 5px;
    border-color: transparent transparent transparent #fff;
  }

  #copyright {
    padding: 10px 0;
    font-size: 12px;
    text-align: center;
  }

  /* .blogcard */
  .blogcard {
    line-height: 1;
    background-color: #fff;
    border: 1px solid #eee;
    word-wrap: break-word;
    margin: 40px;
    box-shadow: 0 0 10px 6px rgba(0, 0, 0, 0.025);
  }

  .blogcard.ex {
    background-color: #f7f7f7;
  }

  .blogcard a {
    display: flex;
    text-decoration: none;
    opacity: 1;
    transition: all 0.2s ease;
  }

  .blogcard a:hover {
    opacity: 0.6;
  }

  .blogcard_thumbnail {
    float: left;
    padding: 20px;
  }

  .blogcard_title {
    font-size: 1em;
    font-weight: bold;
    line-height: 1.4;
    padding: 17px 20px 10px;
  }

  .blogcard_excerpt {
    font-size: 0.85em;
    line-height: 1.6;
    padding: 0 17px 15px 20px;
  }

  .blogcard_link {
    font-size: 0.65em;
    padding: 0 17px 15px 20px;
    text-align: left;
  }

  .blogcard_link .favicon {
    margin-bottom: -4px;
  }

  .blogcard_link .icon-external-link-alt::before {
    font-size: 0.75em;
  }

  /* home contents */
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 32px;
    min-height: 200px;
    background: url(h1_bg.jpg) no-repeat 50% 0 / cover;
  }

  header h1 {
    margin-right: auto;
    margin-left: auto;
    width: 1024px;
    color: #005a49;
    font-size: 32px;
    font-family: var(--serif);
    text-align: center;
  }

  section {
    margin: 0 calc(50% - calc(var(--window-width) / 2));
    padding: 64px 0;
    width: var(--window-width);
  }

  /* ウィンドウ幅一杯に広げる */
  section h2 {
    margin: 0 0 64px;
    padding: 0;
    color: #008a53;
    font-size: 18px;
    text-align: center;
  }

  section h2:before {
    content: attr(data-label);
    display: block;
    color: inherit;
    font-size: 42px;
    font-family: var(--serif);
  }

  #home-img {
    padding: 0;
    height: 560px;
  }

  #home-img.lazyloaded {
    background: url(main_img.jpg) no-repeat 50% 0;
  }

  /* service */
  #home-service {
    background: #008a53;
  }

  #home-service h2 {
    color: #fff;
  }

  .widget-service ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    list-style-type: none;
  }

  .widget-service li {
    margin: 10px;
    width: 328px;
  }

  .widget-service li a {
    height: 240px;
  }

  .widget-service .s1 .lazyloaded {
    background: url(tb01.png) no-repeat;
  }

  .widget-service .s2 .lazyloaded {
    background: url(tb02.png) no-repeat;
  }

  .widget-service .s3 .lazyloaded {
    background: url(tb03.png) no-repeat;
  }

  /* Policy */
  #home-policy {
    background: url(top_bg01.jpg) no-repeat 50% 0 / contain;
  }

  /* エリア図他 */
  #home-intro {
    background: #008a53;
  }

  .widget-menu img {
    vertical-align: top;
  }

  .widget-menu ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: -8px;
    list-style-type: none;
  }

  .widget-menu li {
    margin: 8px;
    width: 504px;
  }

  .widget-menu li a {
    height: 128px;
  }

  .widget-menu .m1 a,
  .widget-menu .m2 a {
    height: auto;
  }

  .widget-menu .m3 a {
    background: url(tb04.png) no-repeat;
  }

  .widget-menu .m4 a {
    background: url(tb05.png) no-repeat;
  }

  .widget-menu .m5 a {
    background: url(tb06.png) no-repeat;
  }

  .widget-menu .m6 a {
    background: url(tb07.png) no-repeat;
  }

  .widget-menu .m7 a {
    background: url(tb08.png) no-repeat;
  }

  .widget-menu .m8 a {
    background: url(tb09.png) no-repeat;
  }

  .widget-column ul {
    display: flex;
    justify-content: center;
    margin: -10px;
    list-style-type: none;
  }

  .widget-column li {
    margin: 10px;
    width: calc(33.33% - 20px);
  }

  .widget-column li>a:before {
    content: "";
    display: block;
    height: 240px;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
  }

  .widget-column li>a:before {
    background-image: url(kojin_ec01.jpg);
  }

  .widget-column li.kojin:nth-child(3n + 1)>a:before {
    background-image: url(kojin_ec01.jpg);
  }

  .widget-column li.kojin:nth-child(3n + 2)>a:before {
    background-image: url(kojin_ec02.jpg);
  }

  .widget-column li.kojin:nth-child(3)>a:before {
    background-image: url(kojin_ec03.jpg);
  }

  .widget-column li.hojin:nth-child(3n + 1)>a:before {
    background-image: url(hojin_ec01.jpg);
  }

  .widget-column li.hojin:nth-child(3n + 2)>a:before {
    background-image: url(hojin_ec02.jpg);
  }

  .widget-column li.hojin:nth-child(3)>a:before {
    background-image: url(hojin_ec03.jpg);
  }

  .widget-column li.iryou:nth-child(3n + 1)>a:before {
    background-image: url(iryou_ec01.jpg);
  }

  .widget-column li.iryou:nth-child(3n + 2)>a:before {
    background-image: url(iryou_ec02.jpg);
  }

  .widget-column li.iryou:nth-child(3)>a:before {
    background-image: url(iryou_ec03.jpg);
  }

  .widget-column a,
  .widget-column a span {
    display: block;
  }

  /* News */
  #home-news .wrapper {
    display: flex;

    &>*:nth-child(1) {
      margin-right: 10px;
      width: calc(50% - 10px);
    }

    &>*:nth-child(2) {
      margin-left: 10px;
      width: calc(50% - 10px);
    }
  }

  #home-news h2:before {
    color: #000;
  }

  .widget-news ul {
    margin: 0;
    list-style-type: none;
  }

  .widget-news li {
    border-bottom: solid 1px #b3b3b3;
    padding: 20px 0;
  }

  .widget-news li a {
    display: flex;
    color: inherit;
    text-decoration: none;
  }

  .widget-news .date {
    display: block;
    flex-shrink: 0;
    width: 8em;
  }

  /* マイコモン */
  .widget-mykomon {
    & dt {
      display: flex;
      border-bottom: solid 1px #b3b3b3;
      padding: 20px 0;

      & .item_date_left {
        flex-shrink: 0;
        width: 8em;
      }

      & .item_title {}
    }

    & .content_item_list_link {
      & a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2em auto 0;
        width: 300px;
        height: 48px;
        background: #008a53;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;

        &::after {
          content: "";
          position: absolute;
          top: calc(50% - 8px);
          right: 12px;
          width: 12px;
          height: 16px;
          background: #d9e021;
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
        }
      }
    }
  }

  #home-column {
    background: #fff9d8;
  }
}

@media screen and (min-width: 1601px) {
  #home-img {
    padding: 0;
    height: 700px;
  }

  #home-img.lazyloaded {
    background: url(main_img-large.jpg) no-repeat 50% 0;
  }
}

@media screen and (max-width: 1024px) {

  /* pc-sp */
  #gotop {
    display: block;
    position: static;
    width: 100%;
    height: 0;
    top: auto;
    bottom: 20px;
  }

  #gotop a {
    position: fixed;
    right: 0;
    bottom: 100px;
    display: none;
    margin: 0;
  }

  article h2 {
    margin-right: 0;
    margin-left: 0;
    width: auto;
  }

  section {
    margin: 0;
    width: 100%;
    overflow: hidden;
  }
}

@media screen and (max-width: 750px) {
  img {
    max-width: 100%;
    height: auto;
  }

  img.right,
  img.left {
    display: block;
    float: none;
    margin: 10px auto;
    padding: 0;
  }

  .img {
    background-size: contain !important;
  }

  /* hidden */
  .breadcrumbs,
  #footer-menu,
  .pc {
    display: none;
  }

  /* header */
  #header {
    border-bottom: solid 2px #008a53;
  }

  #header-name.img {
    margin: 0;
    padding: 0;
    height: 19.2vw;
  }

  #header-name.img.lazyloaded {
    background: url(sp_header.png) no-repeat;
  }

  #sp-menu a {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 12vw;
    height: 12vw;
    background: url(sp_menu.png) no-repeat 0 0 / contain;
    z-index: 9999;
    text-indent: -9999px;
  }

  #site-menu {
    display: block;
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background: #1a653a;
    color: #fff;
    z-index: 9999;
    font-size: 12px;
  }

  #site-menu h5 {
    margin: 0;
    padding: 10px 0 0;
    color: #fff;
    font-size: 3.3vw;
    font-family: var(--serif);
    text-align: center;
  }

  #site-menu b {
    color: #fac54c;
  }

  #site-menu ul {
    list-style-type: none;
    margin: 0;
    display: table;
    border-collapse: separate;
    border-spacing: 10px;
    width: 100%;
  }

  #site-menu li {
    display: table-cell;
    width: 50%;
    vertical-align: top;
  }

  #site-menu li a {
    display: block;
    height: 0;
    padding-top: 20.99%;
    background-repeat: no-repeat;
    background-size: contain;
    text-indent: -9999px;
  }

  #site-menu .mail a {
    background-image: url(sp_mail.png);
  }

  #site-menu .tel a {
    background-image: url(sp_tel.png);
  }

  .headroom {
    will-change: transform;
    transition: transform 200ms linear;
  }

  .headroom--pinned {
    transform: translateY(0%);
  }

  .headroom--unpinned {
    transform: translateY(100%);
  }

  /* footer */
  #footer-name {
    padding: 10px;
    text-align: center;
  }

  #footer-name .img {
    padding-top: 10%;
  }

  #footer-name .img.lazyloaded {
    background: url(sp_f_logo-g.png) no-repeat 50% 0/50% auto !important;
  }

  #footer-name address {
    margin: 10px 0;
    font-style: normal;
  }

  #footer-banner ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    padding: 0 5px;
    list-style-type: none;
  }

  #footer-banner li {
    margin: 5px;
    width: calc(50% - 10px);
  }

  #footer-banner .img {
    padding-top: 33.33%;
  }

  #footer-banner .b1 a {
    background: url(sp_fb01.png) no-repeat;
  }

  #footer-banner .b2 a {
    background: url(sp_fb02.png) no-repeat;
  }

  #sp-footer-menu ul {
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 0 -1px;
    list-style-type: none;
  }

  #sp-footer-menu li {
    margin: 1px 0 0 1px;
    width: calc(50% - 1px);
  }

  #sp-footer-menu li a {
    position: relative;
    display: block;
    box-sizing: border-box;
    padding: 6px 6px 6px 28px;
    height: 100%;
    background: #008a53;
    color: #fff;
    text-decoration: none;
  }

  #sp-footer-menu li a:before {
    content: "";
    position: absolute;
    left: 9px;
    top: 12px;
    width: 9px;
    height: 14px;
    background: #fff;
    clip-path: polygon(0 0, 0% 100%, 100% 50%);
  }

  #copyright {
    border-top: solid 1px #fff;
    margin-top: -1px;
    font-size: 11px;
    padding: 10px 0;
    text-align: center;
  }

  #gotop a {
    bottom: 25vw;
  }

  /* content */
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 21.33vw;
    margin-bottom: 1em;
    background: url(sp_h1_bg.jpg) no-repeat 0 0 / contain;
  }

  header h1 {
    color: #034a3b;
    font-size: 28px;
    text-align: center;
  }

  article {
    padding-right: 10px;
    padding-left: 10px;
  }

  article h1 {
    margin-right: -10px;
    margin-left: -10px;
    font-size: 28px;
  }

  article h2 {
    margin-right: -10px;
    margin-left: -10px;
    font-size: 24px;
  }

  article h3 {
    margin-right: -10px;
    margin-left: -10px;
    font-size: 22px;
  }

  article h4 {
    margin-right: -10px;
    margin-left: -10px;
    font-size: 20px;
  }

  article h5 {
    margin-right: -10px;
    margin-left: -10px;
    font-size: 18px;
  }

  article h6 {
    font-size: 18px;
  }

  article section {
    margin-right: -10px;
    margin-left: -10px;
  }

  table.table-row,
  table.table-row caption,
  table.table-row thead,
  table.table-row tbody,
  table.table-row tfoot,
  table.table-row tr,
  table.table-row th,
  table.table-row td {
    display: block;
    box-sizing: border-box;
    width: 100% !important;
  }

  .gmap {
    position: relative;
    margin: 20px auto;
    max-width: 100%;
    height: 100vw;
  }

  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    width: 100% !important;
    height: 100% !important;
  }

  .gmap small {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100% !important;
    height: 2em;
  }

  #mail_form .table th,
  #mail_form .table td {
    display: block;
    padding: 0;
    border: none;
  }

  #mail_form .table th {
    margin-top: 1em;
  }

  #mail_form input[type="text"],
  #mail_form input[type="email"],
  #mail_form textarea {
    display: block;
    box-sizing: border-box;
    width: 100%;
  }

  table.scroll {
    width: 1024px;
  }

  .iframeWrapper {
    width: 100%;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /* .blogcard */
  .blogcard {
    margin: 40px 0;
  }

  .blogcard_thumbnail img {
    width: 90px;
  }

  .blogcard_title {
    font-size: 0.95em;
    padding-bottom: 17px;
  }

  .blogcard_excerpt {
    display: none;
  }

  /* widget */
  .widget-posts .date,
  .widget-posts .title {
    display: block;
    clear: both;
    float: none;
    width: 100%;
  }

  .widget-flow {
    background-image: none;
  }

  .widget-flow .step {
    background-image: none;
    margin-bottom: 40px;
    padding-left: 0;
  }

  .widget-flow .step:before {
    content: none;
  }

  .widget-flow .step:after {
    position: absolute;
    left: 50%;
    margin-top: 10px;
    margin-left: -19px;
  }

  .widget-flow .step .head {
    margin-top: 1em;
    margin-left: 0;
  }

  /* home contents */
  header {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 16px;
    background: url(sp_h1_bg.jpg) no-repeat 50% 0 / cover;
  }

  section {
    margin: 0 calc(50% - calc(var(--window-width) / 2));
    padding: 20px 0;
    width: var(--window-width);
  }

  /* ウィンドウ幅一杯に広げる */
  section h2 {
    margin: 0 0 20px;
    padding: 0;
    color: #008a53;
    font-size: 16px;
    text-align: center;
  }

  section h2:before {
    content: attr(data-label);
    display: block;
    color: inherit;
    font-size: 28px;
    font-family: var(--serif);
  }

  #home-img {
    padding: 0;
    height: 80vw;
  }

  #home-img.lazyloaded {
    background: url(sp_main_img.jpg) no-repeat;
  }

  /* service */
  #home-service {
    background: #008a53;
  }

  #home-service h2 {
    color: #fff;
  }

  .widget-service ul {
    margin: 0;
    padding: 0 10px;
    list-style-type: none;
  }

  .widget-service li {
    margin: 10px auto 0;
    width: 85%;
  }

  .widget-service li a {
    padding-top: 71.88%;
    height: 0;
  }

  .widget-service .s1 .lazyloaded {
    background: url(sp_tb01.jpg) no-repeat;
  }

  .widget-service .s2 .lazyloaded {
    background: url(sp_tb02.jpg) no-repeat;
  }

  .widget-service .s3 .lazyloaded {
    background: url(sp_tb03.jpg) no-repeat;
  }

  /* Policy */
  #home-policy {
    padding: 60% 10px 20px;
    width: auto;
    background: url(sp_top_bg01.jpg) no-repeat 0 0 / contain;
  }

  #home-policy .nBoxList2 p:first-child {
    font-size: 20px;
  }

  #home-policy .nBoxList2 li::before {
    top: 2px;
  }

  /* エリア図他 */
  #home-intro {
    background: #008a53;
  }

  .widget-menu img {
    vertical-align: top;
  }

  .widget-menu ul {
    margin: 0;
    list-style-type: none;
  }

  .widget-menu li {
    margin: 10px auto 0;
    width: 85%;
  }

  .widget-menu li a {
    padding-top: 25.31%;
    height: 0;
    background-size: contain !important;
  }

  .widget-menu .m1 a,
  .widget-menu .m2 a {
    height: auto;
  }

  .widget-menu .m3 a {
    background: url(sp_tb04.png) no-repeat;
  }

  .widget-menu .m4 a {
    background: url(sp_tb05.png) no-repeat;
  }

  .widget-menu .m5 a {
    background: url(tb06.png) no-repeat;
  }

  .widget-menu .m6 a {
    background: url(tb07.png) no-repeat;
  }

  .widget-menu .m7 a {
    background: url(tb08.png) no-repeat;
  }

  .widget-menu .m8 a {
    background: url(tb09.png) no-repeat;
  }

  .widget-column ul {
    margin: 0;
    list-style-type: none;
  }

  .widget-column li {
    margin: 10px auto;
    width: 85%;
  }

  .widget-column li>a:before {
    content: "";
    display: block;
    padding-top: 73.125%;
    height: 0;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: contain;
  }

  .widget-column li>a:before {
    background-image: url(sp_kojin_ec01.jpg);
  }

  .widget-column li.kojin:nth-child(3n + 1)>a:before {
    background-image: url(sp_kojin_ec01.jpg);
  }

  .widget-column li.kojin:nth-child(3n + 2)>a:before {
    background-image: url(sp_kojin_ec02.jpg);
  }

  .widget-column li.kojin:nth-child(3)>a:before {
    background-image: url(sp_kojin_ec03.jpg);
  }

  .widget-column li.hojin:nth-child(3n + 1)>a:before {
    background-image: url(sp_hojin_ec01.jpg);
  }

  .widget-column li.hojin:nth-child(3n + 2)>a:before {
    background-image: url(sp_hojin_ec02.jpg);
  }

  .widget-column li.hojin:nth-child(3)>a:before {
    background-image: url(sp_hojin_ec03.jpg);
  }

  .widget-column li.iryou:nth-child(3n + 1)>a:before {
    background-image: url(sp_iryou_ec01.jpg);
  }

  .widget-column li.iryou:nth-child(3n + 2)>a:before {
    background-image: url(sp_iryou_ec02.jpg);
  }

  .widget-column li.iryou:nth-child(3)>a:before {
    background-image: url(sp_iryou_ec03.jpg);
  }

  .widget-column a,
  .widget-column a span {
    display: block;
  }

  /* News */
  #home-news {}

  #home-news h2:before {
    color: #000;
  }

  .widget-news ul {
    margin: 0;
    padding: 0 10px;
    list-style-type: none;
  }

  .widget-news li {
    border-bottom: solid 1px #b3b3b3;
    padding: 20px 0;
  }

  .widget-news li a {
    color: inherit;
    text-decoration: none;
  }

  .widget-news .date {
    display: block;
    width: 8em;
  }

  /* マイコモン */
  .widget-mykomon {
    margin-top: 40px;
    padding: 0 10px;

    & dt {
      border-bottom: solid 1px #b3b3b3;
      padding: 20px 0;

      & .item_date_left {
        flex-shrink: 0;
        width: 8em;
      }

      & .item_title {}
    }

    & .content_item_list_link {
      & a {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 2em auto 0;
        width: 300px;
        height: 48px;
        background: #008a53;
        color: #fff;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
        text-decoration: none;

        &::after {
          content: "";
          position: absolute;
          top: calc(50% - 8px);
          right: 12px;
          width: 12px;
          height: 16px;
          background: #d9e021;
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
        }
      }
    }
  }

  #home-column {
    background: #fff9d8;
  }

  .widget-menu02 li {
    width: 67.2%;
  }

  .widget-menu02 a {
    padding-top: 25.4%;
  }
}