@charset "UTF-8";

/* --------------------------------

  CSS Reset

-------------------------------- */
html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
a,
p,
span,
em,
small,
strong,
sub,
sup,
mark,
del,
ins,
strike,
abbr,
dfn,
blockquote,
q,
cite,
code,
pre,
ol,
ul,
li,
dl,
dt,
dd,
div,
section,
article,
main,
aside,
nav,
header,
hgroup,
footer,
img,
figure,
figcaption,
address,
time,
audio,
video,
canvas,
iframe,
details,
summary,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: 400;
  font-style: normal;
}

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption {
  display: block;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after,
*::before,
*::after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

a {
  color: #005c41;
  border: none;
  text-decoration: none;
}

a:hover {
  color: #005c41;
}

img,
video,
iframe {
  max-width: 100%;
}

img {
  height: auto;
  border: none;
  vertical-align: top;
}

b,
strong {
  font-weight: 700;
}

em {
  font-style: italic;
}

blockquote,
q {
  quotes: none;
}

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

a,
area,
button,
[role="button"],
input:not([type="range"]),
label,
select,
summary,
textarea {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

/* input,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
} */

button {
  border: none;
  background: none;
}

button:hover,
button:active,
button:focus {
  outline: none;
}

button:active,
button:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}

.list-unstyled,
.list-style-none {
  list-style: none;
}

.text-left,
.text-start {
  text-align: left;
}

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

.text-right,
.text-end {
  text-align: right;
}

.text-white {
  color: #fff;
}

.text-danger {
  color: #b22d00 !important;
}

.text-indent {
  text-indent: 1em;
}

.flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.font-feature-settings {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

* {
  scroll-behavior: auto !important;
}

/* --------------------------------

  共通スタイル

-------------------------------- */
/* ページ内共通 */
/* .section {
  margin-right: -1em;
  margin-left: -1em;
}

@media screen and (min-width: 1100px), print {
  .section {
    margin-right: -2em;
    margin-left: -2em;
  }
} */

.section .inner {
  padding: 0 1em;
}

.section-secondary {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-bottom: 5em;
}

@media screen and (max-width: 767.98px) {
  .section-secondary {
    font-size: 1.4rem;
  }
}

@media screen and (min-width: 1100px), print {
  .section-secondary {
    padding-right: 3rem;
    padding-left: 3rem;
  }
}

.section-secondary:first-of-type {
  margin-top: 7rem;
}

@media screen and (min-width: 1100px), print {
  .section-secondary:first-of-type {
    margin-top: 20rem;
  }
}

.section-secondary .inner {
  line-height: 1.5;
}

@media screen and (min-width: 768px), print {
  .section-secondary .inner {
    line-height: 1.8;
  }
}

.section-header {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 3rem auto;
}

@media screen and (min-width: 768px), print {
  .section-header {
    margin: 0 auto 5rem auto;
  }
}

.section-heading {
  display: block;
  line-height: 1.8;
  padding-top: 2em;
}

.section-heading :before {
  position: absolute;
  display: block;
  content: "";
  width: 60px;
  height: 60px;
  background: url(../img/base/header-icon.png) no-repeat center / cover;
  top: -1.5em;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 860px), print {
  .section-heading :before {
    width: 80px;
    height: 80px;
  }
}

@media screen and (min-width: 1100px), print {
  .section-heading :before {
    width: 90px;
    height: 90px;
  }
}

.section-heading .jp {
  text-align: center;
  display: block;
  font-size: 2rem;
  color: #005c41;
  letter-spacing: 0.05em;
}

@media screen and (min-width: 768px), print {
  .section-heading .jp {
    font-size: 2.5rem;
  }
}

@media screen and (min-width: 1100px), print {
  .section-heading .jp {
    font-size: 3.5rem;
  }
}

/* コンテンツ画面中央寄せ */
.inner {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
}

.inner::after {
  content: "";
  display: table;
  clear: both;
}

/* アンカー位置調整 */
.anchor-point {
  display: block;
}

.anchor-point:before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -80px;
  margin-bottom: 80px;
  background: rgba(255, 255, 255, 0) url(../img/base/blank.gif);
  z-index: -100;
}

@media screen and (min-width: 1100px), print {
  .anchor-point:before {
    margin-top: -130px;
    margin-bottom: 130px;
  }
}

/* リード文 */
.lede {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  color: #777;
}

@media screen and (min-width: 1100px), print {
  .lede {
    font-size: 2rem;
  }
}

/* 共通リスト */
.list {
  list-style-type: none;
  line-height: 1.5;
}

.list li {
  position: relative;
  padding-left: 1.15em;
}

.list li:not(:last-child) {
  margin-bottom: 0.35em;
}

.list li::before {
  content: "";
  display: block;
  position: absolute;
  top: 0.45em;
  left: 0;
  width: 0.55em;
  height: 0.55em;
  border-radius: 100%;
  background-color: #777;
}

/* インデント */
.indent {
  margin-left: 1em;
  text-indent: -1em;
}

/* アンカー位置調整 */
.anchor-point::before {
  content: "";
  display: block;
  position: relative;
  height: 1px;
  margin-top: -101px;
  margin-bottom: 100px;
  background: transparent;
  pointer-events: none;
  z-index: -100;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: top;
  min-width: 17.5rem;
  height: 3.5rem;
  line-height: 1.2;
  font-size: 1.4rem;
  letter-spacing: 0.025em;
  border: 1px solid transparent;
  transition: border-color 0.25s, background-color 0.25s;
}

@media screen and (min-width: 768px), print {
  .btn {
    min-width: 23.5rem;
  }
}

.btn:hover {
  text-decoration: none;
  color: #fff;
}

.btn-primary {
  color: #fff;
  background-color: #e59045;
}

.btn-primary:hover {
  background-color: #ffc675;
}

.btn-secondary {
  color: #fff;
  border-color: currentColor;
}

.btn-secondary:hover {
  background-color: #ffc675;
}

.global-info {
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (min-width: 768px), print {
  .global-info {
    font-size: 1.6rem;
  }
}

@media screen and (min-width: 1100px), print {
  .global-info {
    text-align: left;
  }
}

.global-info .logo {
  margin-bottom: 2rem;
}

@media screen and (min-width: 1100px), print {
  .global-info .logo {
    margin-bottom: 3rem;
  }
}

.global-info .logo img {
  width: 24rem;
}

@media screen and (min-width: 768px), print {
  .global-info .logo img {
    width: 30rem;
  }
}

.global-info .add {
  margin-bottom: 1.5rem;
}

@media screen and (min-width: 1100px), print {
  .global-info .add {
    margin-bottom: 0;
    line-height: 1.5;
    font-size: 1.8rem;
  }
}

.global-info .add .br {
  display: block;
}

@media screen and (min-width: 768px), print {
  .global-info .add .br {
    display: none;
  }
}

.global-info .tel {
  display: inline-block;
  vertical-align: top;
}

.global-info .mail {
  margin-top: 2.5rem;
}

/* リンクボタン */
.link-button {
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding: 0.75em 3em;
  color: #fff;
  line-height: 1.2;
  text-align: center;
  border-radius: 10em;
  background-color: #e59045;
  -webkit-transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  transition: color 0.25s, border-color 0.25s, background-color 0.25s;
  font-size: 1.8rem;
}

@media screen and (min-width: 760px), print {
  .link-button {
    font-size: 2rem;
  }
}

@media screen and (min-width: 1100px), print {
  .link-button {
    font-size: 2.4rem;
  }
}

.link-button::before {
  position: absolute;
  content: "";
  border-top: 10px solid transparent;
  border-left: 10px solid #ffff;
  border-bottom: 10px solid transparent;
  top: 50%;
  left: 1.5em;
  transform: translateY(-50%);
}

.link-button-wrapper {
  text-align: center;
}

.link-button-lg {
  font-size: 1.1em;
}

/* 共通リンクボタン（ホバー）*/
@media (hover: hover) and (pointer: fine) {
  a.link-button:hover {
    color: #fff;
    text-decoration: none;
    opacity: 0.6;
  }
}

/* 字詰め */
.kerning {
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

/* 下線マーカー */
.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, rgba(0, 0, 0, 0)), color-stop(0%, rgb(0, 0, 0)));
  background: linear-gradient(rgba(0, 0, 0, 0) 85%, rgb(0, 0, 0) 0%);
}

/* 画像を角丸にする */
.img-radius {
  border-radius: 1.5rem;
}

/* Google Maps */
.gmap-area {
  position: relative;
}

.gmap-area::before {
  content: "";
  display: block;
  padding-top: 400px;
}

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

/* 共通テーブル */
.table-style {
  display: block;
  line-height: 1.5;
}

.table-style tbody {
  display: block;
}

.table-style tr {
  display: table;
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

@media screen and (max-width: 639.98px) {
  .table-style tr {
    display: block;
  }
}

.table-style tr:not(:last-child) {
  margin-bottom: 0.35rem;
}

@media screen and (max-width: 639.98px) {
  .table-style tr:not(:last-child) {
    margin-bottom: 1.5rem;
  }
}

.table-style th {
  vertical-align: top;
  padding: 2rem;
  background-color: #777;
}

@media screen and (max-width: 639.98px) {
  .table-style th {
    display: block;
    width: auto !important;
    padding: 1rem 1.5rem;
  }
}

.table-style td {
  vertical-align: top;
  padding: 2rem;
}

@media screen and (max-width: 639.98px) {
  .table-style td {
    display: block;
    padding: 1rem 1.5rem;
  }
}

.table-style .tel-link {
  color: #333;
}

.table-style a.tel-link {
  color: #333;
}

.table-style a.tel-link:hover {
  color: #999;
}

/* --------------------------------

  html, body

-------------------------------- */
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -o-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media screen and (min-width: 1100px), print {
  html {
    overflow-y: scroll;
  }
}

body {
  min-width: 32rem;
  line-height: 1.8;
  font-size: 1.6rem;
  font-family: "Kosugi Maru", "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  color: #333;
  text-align: left;
  background-color: #fff;
}

@media screen and (max-width: 1099.98px) {
  html.nav-open {
    position: relative;
    width: 100%;
    height: 100%;
    overflow-y: hidden;
    overflow-x: hidden;
  }
}

/* --------------------------------

  wrapper

-------------------------------- */
.wrapper {
  position: relative;
  overflow: hidden;
}

@media screen and (max-width: 1099.98px) {
  .wrapper .header-logo,
  .wrapper .nav-button {
    -webkit-transition: top 0.3s;
    transition: top 0.3s;
  }
  .wrapper .tel-button,
  .wrapper .contact-button,
  .wrapper .pagetop {
    -webkit-transition: bottom 0.3s;
    transition: bottom 0.3s;
  }
  .wrapper.hide .header-logo,
  .wrapper.hide .nav-button {
    top: -60px;
    -webkit-box-shadow: none;
    box-shadow: none;
  }
  /* .wrapper.hide .global-contact {
    bottom: -140px;
  } */
  /* .wrapper.hide .pagetop {
    bottom: 10px;
  } */
}

/* --------------------------------

  header

-------------------------------- */
/* ヘッダー */
/* 共通見出し */

.heading {
  position: relative;
  max-width: 1100px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.2;
  -webkit-font-feature-settings: "palt" 1;
  font-feature-settings: "palt" 1;
}

.heading.h2 {
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  font-size: 2.4rem;
  border-bottom: 2px solid #005c41;
}

.heading.h3 {
  padding: 0.5rem;
  background-color: #f8feec;
}

@media screen and (min-width: 1100px), print {
  .heading.h2 {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    font-size: 2.8rem;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1000;
  min-width: 320px;
  width: 100%;
  height: 105px;
  background-color: #ffffff;
  border-top: 5px solid #005c41;
}

.header .header-container {
  /* position: absolute;
  top: 0;
  left: 0; */
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  font-size: 100%;
  background-color: #fff;
  z-index: 900;
}

.header-logo {
  float: left;
  /* margin-top: 11px;

  height: 60px; */
}

.header-contact {
  float: right;
  margin-top: 15px;
}

@media screen and (min-width: 1100px), print {
  .header .header-container {
    margin-right: auto;
    margin-left: auto;
    padding: 0 1em;
    height: 100px;
    z-index: 1010;
    overflow: visible;
  }
}

@media screen and (min-width: 1100px), print {
  .header-logo {
    position: relative;
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
  }
}

.header-logo .site-logo a {
  display: block;
  position: absolute;
  top: 30px;
  left: 1.8rem;
  width: 178.35px;
}

@media screen and (min-width: 1100px), print {
  .header-logo .site-logo a {
    top: 25px;
    left: 0;
    width: 208px;
  }
}

.header-logo .site-logo img {
  display: block;
  width: 100%;
}

.header-contact {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin: 22.5px 0;
}

@media screen and (max-width: 1099.55px), print {
  .header-contact {
    display: none;
  }
}

/* メールボタン */
.contact-btn {
  display: block;
  position: fixed;
  top: 3.5rem;
  right: 1rem;
  width: 4rem;
  height: 4rem;
  z-index: 1010;
}

@media screen and (min-width: 1100px), print {
  .contact-btn {
    display: none;
  }
}

.contact-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: #e59045;
  transition: background-color 0.25s;
}

.contact-btn a::before {
  content: "";
  display: block;
  width: 1.8rem;
  height: 1.8rem;
  background: url(../img/icon-mail.svg) center no-repeat;
  background-size: contain;
}

.contact-btn a:hover {
  text-decoration: none;
}

.global-contact {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 140px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: rgba(0, 92, 65, 0.76);
  z-index: 101;
}

.global-contact-item {
  margin: 0 auto;
}

.global-contact-info p {
  color: #fff;
}

.global-contact-info p.text {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 480px), print {
  .global-contact {
    display: none;
  }
}

@media screen and (min-width: 768px), print {
  .global-contact-info p.text {
    margin-bottom: 1em;
  }
}

@media screen and (min-width: 1100px), print {
  .global-contact-info p.text {
    font-size: 1.8rem;
  }
}

.sp-br {
  display: block;
}

@media screen and (min-width: 768px), print {
  .sp-br {
    display: none;
  }
}

.sp-br2 {
  display: block;
}

@media screen and (min-width: 860px), print {
  .sp-br2 {
    display: none;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  header.fixed .header-container {
    position: fixed;
    top: -60px;
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}

/* ナビゲーション */
.nav {
  display: block;
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  z-index: 900;
}

@media screen and (max-width: 1099.98px) {
  .nav {
    transition: -webkit-transform 0.4s ease-out;
    transition: transform 0.4s ease-out;
    transition: transform 0.4s ease-out, -webkit-transform 0.4s ease-out;
  }
}

@media screen and (min-width: 1100px), print {
  .nav {
    position: absolute;
    right: auto;
    width: 100%;
    height: 8.5rem;
    background-color: #005c41;
  }
}

@media screen and (max-width: 1099.9px) {
  .nav-open .nav {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}

.nav-container {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  background-color: #fff;
  z-index: 10;
}

@media screen and (min-width: 1100px), print {
  .nav-container {
    max-width: 110rem;
    margin-right: auto;
    margin-left: auto;
    background-color: transparent;
    overflow: visible;
  }
}

.nav-btn {
  display: block;
  position: fixed;
  top: 3.5rem;
  right: 4.8rem;
  width: 4rem;
  height: 4rem;
  background-color: #005c41;
  cursor: pointer;
  z-index: 1010;
}

@media screen and (min-width: 1100px), print {
  .nav-btn {
    display: none;
  }
}

.nav-btn-line {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1.8rem;
  height: 0.1rem;
  margin: auto;
  background-color: #fff;
}

.nav-open .nav-btn-line {
  transition: all 0.8s;
}

.nav-btn-line1 {
  top: -1.2rem;
}

.nav-open .nav-btn-line1 {
  top: 0;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.nav-open .nav-btn-line2 {
  display: none;
}

.nav-btn-line3 {
  bottom: -1.2rem;
}

.nav-open .nav-btn-line3 {
  bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.nav-info {
  padding: 3rem 0;
}

@media screen and (min-width: 1100px), print {
  .nav-info {
    display: none;
  }
}

.nav-info .tel a {
  color: #333;
}

/* メインナビ */
@media screen and (max-width: 1099.98px) {
  .global-nav {
    padding-top: 1rem;
  }
}

@media screen and (max-width: 1099.98px) {
  .front-page .global-nav {
    padding-top: 10rem;
  }
}

@media screen and (min-width: 1100px), print {
  .global-nav .nav-list {
    display: flex;
    justify-content: center;
    padding-top: 3rem;
  }
}

.global-nav .nav-item {
  position: relative;
  margin-bottom: -1px;
}

@media screen and (min-width: 1100px), print {
  .global-nav .nav-item {
    margin: 0 0 0 4rem;
  }
}

.global-nav .nav-link {
  display: block;
  position: relative;
  padding: 1.75rem 2rem;
  line-height: 1em;
  color: #333;
  border-top: 1px solid #ffc675;
  border-bottom: 1px solid #ffc675;
}

@media screen and (min-width: 1100px), print {
  .global-nav .nav-link {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 2.5rem;
    padding: 0;
    font-size: 1.4rem;
    border: none;
    transition: color 0.25s;
    color: #fff;
  }

  .global-nav .nav-link::before {
    content: "";
    display: block;
    position: absolute;
    right: 0;
    bottom: -0.7rem;
    left: 0;
    width: 2rem;
    height: 0.2rem;
    margin: auto;
    background-color: currentColor;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s;
  }
}

.global-nav .nav-link:hover {
  text-decoration: none;
  color: #e59045;
}

@media screen and (min-width: 1100px), print {
  .global-nav .nav-link:hover {
    color: #fff;
  }

  .global-nav .nav-link:hover::before {
    opacity: 1;
  }
}

@media screen and (min-width: 1100px), print {
  .global-nav .nav-link.current {
    color: #333;
  }

  .global-nav .nav-link.current::before {
    opacity: 1;
  }
}

/* トップページ用 */
@media screen and (min-width: 1100px) and (max-height: 799.98px), print {
  .front-page .nav {
    top: calc(100vh - 8.5rem);
  }
}

@media screen and (min-width: 1100px) and (min-height: 800px), print {
  .front-page .nav {
    top: 66rem;
  }
}

/* スクロール時固定用 */
@media screen and (min-width: 1100px) {
  .is-fixed .nav {
    /* position: fixed; */
    top: -60px;
    box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05);
    -webkit-transform: translateY(60px);
    transform: translateY(60px);
    transition: -webkit-transform 0.2s;
    transition: transform 0.2s;
    transition: transform 0.2s, -webkit-transform 0.2s;
  }
}

.contact-link {
  display: block;
  position: relative;
  width: 262px;
  height: 100%;
  text-align: left;
  padding: 8px 12px 8px 63px;
  background-color: #e59045;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  cursor: pointer;
  font-size: 1.8rem;
  margin: 0 auto;
}

.contact-link a {
  color: #fff;
}

.contact-link:hover {
  opacity: 0.8;
}

.link-small-text {
  font-size: 1rem;
  display: block;
}

.contact-link:before {
  content: "";
  display: block;
  width: 3rem;
  height: 3rem;
  background: url(../img/icon-mail.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 25%;
  left: 7%;
}

/* --------------------------------

  main

-------------------------------- */

/* メインビジュアル */
.section-container.hero-container.lazy-background.visible {
  top: 80px;
  background: url(../img/bg.png) no-repeat center/cover;
  z-index: -3;
  position: relative;
}

.hero-section {
  margin-bottom: 8.5rem;
}

.hero-container {
  display: flex;
  height: 58rem;
  justify-content: center;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}

.inner-text {
  padding: 50px 60px;
  background-color: rgba(255, 255, 255, 0.92);
}

.hero-logo {
  z-index: 1;
  position: absolute;
  top: 24%;
}

.hero-catch.main-txt {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  padding-bottom: 0.5em;
  border-bottom: 4px solid #005c41;
}

.txt-or {
  color: #e59045;
  font-size: 2.5rem;
  font-weight: 700;
}

.hero-catch.sub-txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.44;
  padding-top: 2rem;
}

@media screen and (max-width: 1099px), print {
  .section-container.hero-container.lazy-background.visible {
    z-index: 0;
  }

  .hero-container {
    flex-direction: column-reverse;
    height: 48rem;
  }

  .hero-logo {
    top: -3rem;
  }

  .hero-inner .inner-text-container {
    margin: 5.3rem 0;
    padding: 3.2rem 0 4.1rem;
    background-color: #fff;
    border-bottom: solid 8px #829b8c;
  }

  .hero-catch.main-txt {
    font-size: 1.6rem;
    text-align: center;
  }

  .txt-or {
    font-size: 2rem;
  }

  .hero-catch.sub-txt {
    font-size: 1.6rem;
    text-align: center;
  }
}

@media screen and (max-width: 580px), print {
  .hero-logo {
    max-width: 200px;
  }

  .inner-text {
    padding: 30px 30px;
  }
}

@media screen and (max-width: 767.98px) {
  .hero-catch .br {
    display: block;
  }
}

.detail-link {
  text-align: left;
}

.detail-link a {
  position: relative;
  display: inline-block;
  width: 217px;
  height: 56px;
  font-size: 1.8rem;
  background-color: #e59045;
  color: #fff;
  text-align: left;
  text-decoration: none;
  line-height: 1.2;
  padding: 1em 15px;
  margin-top: 1.5em;
}

.detail-link a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 30px;
  height: 1px;
  background-color: #fff;
  transform: translateY(-50%);
}

.detail-link:hover {
  text-decoration: none;
  opacity: 0.8;
}

@media screen and (max-width: 1099.99px), print {
  .detail-link {
    text-align: center;
  }
}
/*取扱業務*/
.top-service-section {
  margin-top: 7em;
  padding: 3em 1em;
}

@media screen and (min-width: 860px), print {
  .top-service-section {
    margin-top: 10em;
  }
}

@media screen and (min-width: 1100px), print {
  .top-service-section {
    margin-top: 20em;
    padding: 5em 2em;
  }
}

.top-service-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1em;
  margin-bottom: 5em;
}

@media screen and (min-width: 1100px), print {
  .top-service-items {
    justify-content: space-between;
  }
}

.top-service-item {
  width: 45%;
  height: auto;
  border: 3px solid rgba(0, 158, 112, 0.3);
  background-color: #fff;
  border-radius: 25px;
  text-align: center;
}

@media screen and (min-width: 860px), print {
  .top-service-item {
    width: 246px;
    height: 246px;
  }
}

.top-service-item a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100%;
  font-size: 1.6rem;
}

@media screen and (min-width: 860px), print {
  .top-service-item a {
    font-size: 2.5rem;
  }
}

.top-service-item a:hover {
  opacity: 0.5;
}

.top-service-item img {
  height: 60px;
  margin: 0.5em auto;
}

@media screen and (min-width: 860px), print {
  .top-service-item img {
    height: 100px;
    margin: 1em auto;
  }
}

.top-service-text_main {
  width: fit-content;
  font-size: 1.8rem;
  text-align: center;
  padding-bottom: 0.5em;
  margin: 0 auto 1em;
  border-bottom: 4px dotted #009e70;
}

@media screen and (min-width: 860px), print {
  .top-service-text_main {
    font-size: 2.5rem;
  }
}

.top-service-text_sub {
  text-align: center;
}

/*メリット*/
.top-merit-section {
  padding: 0em 1em 3em;
}

@media screen and (min-width: 1100px), print {
  .top-service-section {
    padding: 0em 2em 5em;
  }
}
.top-merit {
  position: relative;
}

.top-merit-heading {
  max-width: 939px;
  text-align: center;
  padding: 0.5em;
  border: 4px solid #005c41;
  border-radius: 25px;
  font-size: 2rem;
  color: #005c41;
  background-color: #fff;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

@media screen and (min-width: 1100px), print {
  .top-merit-heading {
    font-size: 2.8rem;
  }
}

.top-merit-body {
  width: 100%;
  background-color: #e2fff4;
  border-radius: 25px;
  margin-top: -3em;
  padding: 5em 1em 300px 1em;
}

@media screen and (min-width: 1100px), print {
  .top-merit-body {
    padding: 5em 1em 1em 380px;
  }
}

.top-merit-body > p {
  margin-bottom: 1.4em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .top-merit-body > p {
    margin-bottom: 1.4em;
    text-align: left;
  }
}

.top-merit-body-foot {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  width: 180px;
  height: auto;
  transform: translateX(-50%);
}

@media screen and (min-width: 1100px), print {
  .top-merit-body-foot {
    width: 268px;
    top: 1em;
    left: 3em;
    transform: none;
  }
}

.merit-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  gap: 2em;
  list-style-type: none;
}

.merit-list li {
  width: 100%;
  max-width: none;
  border-bottom: 4px dotted #009e70;
  padding-bottom: 0.5em;
}

@media screen and (min-width: 720px), print {
  .merit-list li {
    width: 45%;
  }
}

@media screen and (min-width: 1100px), print {
  .merit-list li {
    width: 50%;
    max-width: 280px;
  }
}

.merit-list li p {
  font-size: 2rem;
  position: relative;
  padding-left: 1.5em;
}

.merit-list li p::before {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 21px;
  background: url(../img/check-icon.png) no-repeat center/cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/*お知らせ*/
.top-news-section {
  margin-top: 7em;
  padding: 5em 1em;
  background-color: #f5f5f5;
}

@media screen and (min-width: 1100px), print {
  .top-news-section {
    margin-top: 10em;
    padding: 7em 2em 5em;
  }
}

/*相談実績*/
.top-cases-section {
  margin-top: 7em;
  padding: 5em 1em;
}

@media screen and (min-width: 1100px), print {
  .top-cases-section {
    margin-top: 10em;
    padding: 7em 2em 5em;
  }
}

/* 基礎知識 */
.knowledge-section {
  padding: 5em 1em;
  background-color: rgba(0, 92, 65, 0.06);
}

@media screen and (min-width: 1100px), print {
  .knowledge-section {
    padding: 7em 2em 5em;
  }
}

.knowledge-section .inner {
  padding: 0 1em;
}

.knowledge-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -0.5em -1.5em 0;
}

@media screen and (min-width: 768px), print {
  .knowledge-list {
    margin: 0 -1em -1.5em 0;
  }
}

.knowledge-topics {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 0.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .knowledge-topics {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
    padding: 0 1em 1.5em 0;
  }
}

@media screen and (min-width: 1100px), print {
  .knowledge-topics {
    -ms-flex-preferred-size: 33.3333333333%;
    flex-basis: 33.3333333333%;
    max-width: 33.3333333333%;
  }
}

.knowledge-link {
  position: relative;
  display: block;
  min-height: 100%;
  background-color: #fff;
  color: #333;
  padding: 1em 0;
}

.knowledge-link:hover {
  color: #333;
  text-decoration: none;
}

.knowledge-link:hover .knowledge-title {
  color: #017552;
}

.knowledge-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.knowledge-item.img {
  width: 90px;
  margin: 0 10px 0 0;
}

.knowledge-item.text {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.knowledge-img img {
  width: 90px;
  height: 90px;
  max-width: none;
  vertical-align: bottom;
}

.knowledge-title {
  font-size: 0.95em;
  font-weight: bold;
  color: #005c41;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

@media screen and (min-width: 768px), print {
  .knowledge-title {
    font-size: 1em;
  }
}

.knowledge-body {
  font-size: 0.8em;
}

/* よく検索されるキーワード */
.keyword-section {
  /* background: url(../img/base/keyword_bg.jpg) center no-repeat; */
  background-color: #ffffff;
  background-image: -o-repeating-linear-gradient(left, rgba(0, 92, 65, 0.1) 0px 1px, transparent 1px 10px), -o-repeating-linear-gradient(bottom, rgba(0, 92, 65, 0.1) 0px 1px, transparent 1px 10px);
  background-image: repeating-linear-gradient(90deg, rgba(0, 92, 65, 0.1) 0px 1px, transparent 1px 10px), repeating-linear-gradient(0deg, rgba(0, 92, 65, 0.1) 0px 1px, transparent 1px 10px);
  background-size: cover;
  padding: 5em 1em;
}

@media screen and (min-width: 1100px), print {
  .keyword-section {
    padding: 7em 2em 5em;
  }
}

.keyword-section .inner {
  padding: 0 1em;
}

.keyword-section .section-header {
  background: none;
}

.keyword-section .section-header:after {
  display: none;
}

.keyword-items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1em -1em 0;
}

.keyword-item {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  position: relative;
  padding: 0 1em 1em 0;
}

@media screen and (min-width: 768px), print {
  .keyword-item {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

@media screen and (min-width: 992px), print {
  .keyword-items {
    justify-content: center;
  }
  .keyword-item {
    -ms-flex-preferred-size: 20%;
    flex-basis: 20%;
    max-width: 20%;
  }
}

.keyword-item-inner {
  display: block;
  position: relative;
  height: 100%;
  padding-top: 70px;
}

.keyword-head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 70px;
  padding: 0 2.5em 0 1em;
  background-color: #005c41;
}

.keyword-body {
  position: relative;
  height: 100%;
}

.keyword-heading {
  display: block;
  position: relative;
  width: 100%;
  line-height: 1.3;
  font-size: 100%;
  color: #fff;
}

.keyword-list {
  position: relative;
  padding-bottom: 2em;
}

.keyword-list-container {
  position: relative;
  height: 100%;
  padding: 1em;
  border: 1em solid #005c41;
  border-top: none;
}

.keyword-list-container:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
}

.keyword .accordion-button {
  cursor: pointer;
}

.keyword .accordion-button:after {
  content: "";
  display: block;
  position: absolute;
  top: -3px;
  right: 20px;
  bottom: 0;
  width: 8px;
  height: 8px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
}

.keyword .accordion-button.active:after {
  bottom: -7px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.keyword .accordion-panel {
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s;
  -o-transition: max-height 0.4s;
  transition: max-height 0.4s;
}

.keyword .accordion-panel.active {
  min-height: 100%;
}

/*登録税理士を募集しています*/
.top-recruit-section {
  margin-top: 5em;
  padding: 0em 1em 3em;
}

@media screen and (min-width: 1100px), print {
  .top-recruit-section {
    padding: 0em 2em 5em;
  }
}
.top-recruit {
  position: relative;
}

.top-recruit-heading {
  max-width: 939px;
  text-align: center;
  padding: 0.5em 1em;
  border: 4px solid #005c41;
  border-radius: 25px;
  font-size: 2rem;
  color: #005c41;
  background-color: #fff;
  margin: 0 auto;
  z-index: 1;
  position: relative;
  line-height: 1.8;
}

@media screen and (min-width: 1100px), print {
  .top-recruit-heading {
    font-size: 2.8rem;
    text-align: left;
  }
}

span.dot {
  position: relative;
  display: inline-block;
}

span.dot::before {
  position: absolute;
  display: block;
  content: "";
  width: 4px;
  height: 4px;
  background-color: #009e70;
  border-radius: 100%;
  left: 50%;
  transform: translateX(-50%);
}

@media screen and (min-width: 1100px), print {
  span.dot::before {
    width: 8px;
    height: 8px;
  }
}

.top-recruit-body {
  width: 100%;
  background-color: #e2fff4;
  border-radius: 25px;
  margin-top: -3em;
  padding: 5em 1em 300px 1em;
}

@media screen and (min-width: 1100px), print {
  .top-recruit-body {
    padding: 5em 380px 2em 2em;
  }
}

.top-recruit-body > p {
  font-size: 2rem;
  margin-bottom: 1.4em;
  text-align: center;
}

@media screen and (min-width: 1100px), print {
  .top-recruit-body > p {
    font-size: 2.4rem;
    margin-bottom: 1.4em;
    text-align: left;
  }
}

.top-recruit-body-foot {
  position: absolute;
  z-index: 2;
  bottom: 0;
  right: inherit;
  left: 50%;
  width: 180px;
  height: auto;
  transform: translateX(-50%);
}

@media screen and (min-width: 1100px), print {
  .top-recruit-body-foot {
    width: 268px;
    top: 1em;
    right: 1em;
    left: inherit;
    transform: none;
  }
}

.recruit-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2em;
  gap: 2em;
  list-style-type: none;
}

.recruit-list li {
  width: 100%;
  max-width: none;
  border-bottom: 4px dotted #009e70;
  padding-bottom: 0.5em;
}

@media screen and (min-width: 720px), print {
  .recruit-list li {
    width: 45%;
  }
}

@media screen and (min-width: 1100px), print {
  .recruit-list li {
    width: 50%;
    max-width: 280px;
  }
}

.recruit-list li p {
  font-size: 2rem;
  position: relative;
  padding-left: 1.5em;
}

.recruit-list li p::before {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 21px;
  background: url(../img/check-icon.png) no-repeat center/cover;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

/* --------------------------------

  footer

-------------------------------- */
/* メインコンテンツ */
/* フッター */
.footer {
  padding: 0 1.5rem;
  background-color: #003727;
}

.footer-header {
  margin-bottom: 3rem;
  text-align: center;
}

/* @media screen and (min-width: 1100px),
print {
  .footer {
    padding: 0 3rem;
  }
} */

.footer-container {
  padding: 6rem 0;
  padding-bottom: 0.7em;
}

@media screen and (min-width: 1100px), print {
  .footer-container {
    padding: 5rem 0 0;
    padding-bottom: 0;
  }

  .footer-container.staff-container {
    padding: 5rem 1em 0;
  }
}

.footer-logo {
  margin: 0 auto 3em;
  width: fit-content;
}

.footer-nav-wrap {
  max-width: 900px;
  padding: 0 1em;
  margin: 0 auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
  list-style-type: none;
  justify-content: center;
  margin-bottom: 1em;
}

.footer-nav li {
  position: relative;
  padding-left: 0.5em;
}
.footer-nav li a {
  color: #fff;
}

.footer-nav li:hover a {
  color: #fff;
  text-decoration: underline;
}

.footer-nav li::before {
  position: absolute;
  content: "";
  border-top: 5px solid transparent;
  border-left: 5px solid #ffff;
  border-bottom: 5px solid transparent;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* お問い合せ */
.footer-container.contact-container {
  display: flex;
  justify-content: space-between;
  padding-top: 6rem;
  padding-bottom: 7.3rem;
}

.contact-heading {
  font-size: 3.3rem;
  letter-spacing: 1.65px;
  line-height: 1.45;
  color: #005c41;
}

.contact-item.contact-img {
  margin-top: -6.5em;
  margin-left: 3em;
}

@media screen and (max-width: 768px) {
  .contact-item.contact-img {
    margin-left: 0;
  }
}

.contact-item.contact-description {
  padding: 0 1.2em;
}

@media screen and (max-width: 1099.99px) {
  .footer-contact-wrap {
    margin-top: 5em;
  }
}

/* ページの先頭へ */
.footer .pagetop {
  display: block;
  position: fixed;
  width: 50px;
  height: 50px;
  right: 10px;
  bottom: 150px;
  margin: 0;
  text-align: center;
  overflow: hidden;
  z-index: 100;
  border: 1px solid #fff;
}

@media screen and (min-width: 1100px), print {
  .footer .pagetop {
    bottom: 150px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}

@media screen and (min-width: 1100px) {
  .footer .pagetop.fixed {
    opacity: 1;
    pointer-events: auto;
  }
}

@media screen and (max-width: 1099px), print {
  .footer .pagetop {
    bottom: 150px;
  }
}

@media screen and (max-width: 480px), print {
  .footer .pagetop {
    bottom: 10px;
  }
}

.footer .pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  background-color: #005c41;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.footer .pagetop a:hover {
  color: #fff;
  text-decoration: none;
  background-color: #0e936b;
}

.footer .pagetop a:hover:before {
  border-color: #fff;
}

.footer .pagetop a:before {
  content: "";
  display: block;
  position: absolute;
  top: 0.5em;
  right: 0;
  bottom: 0;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* コピーライト */
.copy {
  display: flex;
  align-items: center;
  height: 5rem;
  margin: 0 -1.5rem;
  padding: 1.5em 1.5rem 180px;
  color: #fff;
  background-color: #003727;
}


@media screen and (min-width: 480px), print {
  .copy {
    justify-content: center;
  }
}

@media screen and (min-width: 1100px), print {
  .copy {
    height: 8.4rem;
  }
}

@media screen and (max-width: 480px), print {
  .copy {
    padding: 1.5em;
  }
}

.copy small {
  display: block;
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0.025em;
}

/* --------------------------------

  トップページ

-------------------------------- */
/* --------------------------------

  お知らせ

-------------------------------- */
.news-area {
  position: relative;
}

.news-area .inner {
  line-height: 1.5;
}

.news-area .inner:not(:last-child) {
  margin-bottom: 0;
}

.news-area .news-list,
.news-area .news-thumb-list,
.news-area .news-img-list {
  padding-bottom: 2em;
}

.news-detail .inner {
  line-height: 1.5;
}

.news-detail .inner:not(:last-child) {
  margin-bottom: 0;
}

.news-detail .news-date {
  font-size: 0.9em;
}

.news-link {
  display: block;
  padding: 1em 0;
  /* border-bottom: 1px dotted #ccc; */
}

.news-title {
  word-break: break-all;
  word-wrap: break-word;
}

.news-body {
  word-break: break-all;
  word-wrap: break-word;
  text-align: left;
}

.news-text {
  margin-top: 1em;
  line-height: 1.8;
  word-break: break-all;
  word-wrap: break-word;
}

.news-text p,
.news-text div {
  word-break: break-all;
  word-wrap: break-word;
}

.news-back {
  clear: both;
  max-width: 1100px;
  margin: 2em auto 0;
  padding: 2em 0 0 0;
  text-align: center;
  border-top: 1px dotted #eee;
}

/* お知らせ一覧（テキストのみ）*/
.news-list .news-link {
  position: relative;
  padding: 0.8em 1em;
}

@media screen and (min-width: 640px), print {
  .news-list .news-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
}

.news-list .news-link:hover {
  text-decoration: none;
}

.news-list .news-link:hover .news-date {
  color: #765847;
}

.news-list .news-link:hover .news-title {
  text-decoration: underline;
}

.news-list .news-date {
  font-size: 0.9em;
  color: #000;
}

@media screen and (min-width: 640px), print {
  .news-list .news-date {
    width: 7em;
    font-size: 1em;
  }
}

ul.news-list li {
  padding: 1.5em 0;
  margin-bottom: 0;
  border-bottom: 1px solid #ddd;
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 640px), print {
  ul.news-list li {
    flex-direction: row;
  }
}

ul.news-list li em {
  width: 8em;
  margin-right: 1em;
}

.main ul.news-list > li:before {
  display: none;
}

.news-list {
  margin-bottom: 3em;
}

/* pagination */
.pagination {
  display: block;
  margin-top: 2em;
}

.news-list + .pagination {
  margin-top: 2.5rem;
}

@media screen and (min-width: 1100px), print {
  .news-list + .pagination {
    margin-top: 3.5rem;
  }
}

.pagination .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.pagination .page-numbers {
  display: block;
  margin: 0 0.4rem;
  padding: 1rem 1.5rem;
  line-height: 1.2;
  color: #fff;
  text-align: center;
  border-radius: 0.35rem;
  background-color: #aaa;
  -webkit-transition: background-color 0.25s;
  transition: background-color 0.25s;
}

@media screen and (max-width: 767.98px) {
  .pagination .page-numbers {
    margin: 0.2rem;
    font-size: 1.4rem;
  }
}

.pagination .page-numbers:hover {
  text-decoration: none;
}

.pagination .page-numbers[href]:hover,
.pagination .current {
  background-color: #555;
}

.pagination .screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

/*! TinyMCE Clear Float
 * https://wordpress.org/plugins-wp/tinymce-clear-buttons/
 */
.aligncenter {
  display: block;
  margin: auto;
}

.alignright {
  float: right;
  margin-left: 1em;
}

.alignleft {
  float: left;
  margin-right: 1em;
}

img[class*="wp-image-"],
img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
  margin-bottom: 1em;
}

/* --------------------------------

  下層ページ

-------------------------------- */
#cover.cat01 {
  background-image: url(../img/bg.png);
  padding-top: 2.5em;
  text-align: center;
}

#cover {
  height: 150px;
  margin-top: 80px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

h1.page-title {
  text-align: center;
  font-size: 2.6rem;
  color: #005c41;
  display: inline-block;
  padding: 0.5em 1em;
  background-color: rgba(255, 255, 255, 0.92);
}

.page-title .ft-en {
  display: block;
  margin-top: 0.5rem;
  line-height: 1em;
  font-size: 1.2rem;
  color: #005c41;
  text-transform: capitalize;
}

.page .nav {
  top: 14.3em;
}

.nav-open .page .nav {
  top: 80px;
}

/* --------------------------------

  コンタクトフォーム

-------------------------------- */
.formList {
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  background-color: #fff;
  border: 2px solid #daddd9;
}

.formList dt {
  position: relative;
  width: 240px;
  padding: 10px 30px 10px 10px;
  border-top: 1px solid #daddd9;
  font-weight: bold;
  font-size: 1.2rem;
}

.formList dt small {
  display: inline-block;
  position: absolute;
  right: 0;
  top: 13px;
  padding: 0 4px;
  background-color: #005c41;
  font-size: 1rem;
  color: #fff;
  border-radius: 2px;
}

.formList > *:nth-child(-n + 2) {
  border-top: none;
}

.formList dd {
  display: flex;
  flex-flow: row wrap;
  align-content: space-between;
  width: calc(100% - 240px);
  padding: 10px;
  border-top: 1px solid #daddd9;
}

.formList dd > div:nth-child(odd) {
  flex: 1;
}

.formList dd > div:nth-child(even) {
  width: 200px;
  padding-left: 10px;
}

.formList dd > div:nth-child(even) p {
  font-size: 1.2rem;
}

@media screen and (max-width: 768px) {
  .formList dd {
    display: block;
  }

  .formList dd > div:nth-child(even) {
    width: auto;
    margin-top: 5px;
    padding-left: 0;
  }
}

@media screen and (max-width: 600px) {
  .formList {
    display: block;
  }

  .formList dt {
    position: relative;
    width: auto;
    padding: 10px;
  }

  .formList dt small {
    position: static;
    margin-left: 10px;
  }

  .formList dd {
    width: 100%;
    padding: 0 10px 10px;
    border-top: none;
  }
}

/* フォームボタン */
#formArea .btnArea {
  margin-top: 30px;
  text-align: center;
}

#formArea .btnArea input[type="submit"] {
  display: inline-block;
  width: 200px;
  background-color: #005c41;
  color: #fff;
}

.formList input[type="text"],
.formList input[type="password"],
.formList input[type="email"],
.formList input[type="tel"],
.formList textarea {
  box-sizing: border-box;
  padding: 9px;
  border: 1px solid #ccc;
  line-height: 1.2;
  text-align: left;
  font-size: 1.4rem;
  border-radius: 2px;
  outline: none;
}

.formList input[type="text"]:focus,
.formList input[type="password"]:focus,
.formList input[type="email"]:focus,
.formList input[type="tel"]:focus,
.formList textarea:focus {
  border: 1px solid #005c41;
}

.formList select {
  height: 36px;
  border: 1px solid #ccc;
  background-color: #fff;
  outline: none;
}

.formList select:focus {
  border: 1px solid #005c41;
}

.full {
  width: 100%;
}

.zip1,
.zip2,
.tel1,
.tel2,
.tel3 {
  width: 60px;
}

.btn_action {
  list-style: none;
}

/* 基礎知識や事例 */
/* .category {
  padding: 2.5em 1em;
}

@media screen and (min-width: 1100px),
print {
  .category {
    padding: 2.5em 2em;
  }
}

.category .inner {
  padding: 0 1em;
}

@media screen and (min-width: 1100px),
print {
  .category .inner {
    padding: 0 2em;
  }
} */

.category-text {
  margin-bottom: 3em;
}

.category-text p:not(:last-child) {
  margin-bottom: 1em;
}

.category-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.category-list ul li {
  overflow: hidden;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .category-list ul li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.category-link {
  float: right;
  width: 100%;
  margin-left: -90px;
  padding-left: 100px;
  color: #333;
}

.category-link:hover {
  text-decoration: none;
}

.category-title {
  font-size: 1em;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.category-body {
  font-size: 0.9em;
}

.category-img {
  float: left;
  width: 90px;
}

.category-img img {
  width: 90px;
  height: 90px;
  vertical-align: bottom;
}

/* キーワード一覧 */
/* .taxonomy {
  padding: 2.5em 1em;
}

@media screen and (min-width: 1100px),
print {
  .taxonomy {
    padding: 2.5em 2em;
  }
}

.taxonomy .inner {
  padding: 0 1em;
}

@media screen and (min-width: 1100px),
print {
  .taxonomy .inner {
    padding: 0 2em;
  }
} */

.taxonomy-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.taxonomy-list ul li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .taxonomy-list ul li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.taxonomy-link {
  color: #333;
}

.taxonomy-link:hover {
  text-decoration: none;
}

.taxonomy-title {
  font-size: 1em;
  font-weight: bold;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.taxonomy-body {
  font-size: 0.9em;
}

/* 投稿ページ */
.detail {
  padding: 2.5em 1em;
}

@media screen and (min-width: 1100px), print {
  .detail {
    padding: 2.5em 2em;
  }
}

.detail .inner {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .detail .inner {
    padding: 0 2em;
  }
}

.detail-text {
  margin-bottom: 3em;
}

.detail-paging-subsection:first-child {
  overflow: hidden;
  margin-bottom: 1.5em;
}

.detail-paging-subsection a {
  font-weight: bold;
  text-decoration: underline;
}

.detail-paging-subsection .prev {
  float: left;
}

.detail-paging-subsection .next {
  float: right;
}

.detail-paging-subsection .back {
  text-align: center;
}

.detail .post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  margin: 0 -1.5em -1.5em 0;
}

.detail .post-list li {
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  max-width: 100%;
  padding: 0 1.5em 1.5em 0;
}

@media screen and (min-width: 768px), print {
  .detail .post-list li {
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    max-width: 50%;
  }
}

.detail .post-list li:before {
  display: none;
}

.detail .post-list li a {
  display: inline-block;
  font-weight: bold;
  color: #555;
  text-decoration: underline;
  margin-bottom: 0.5rem;
}

.detail .post-list li p {
  font-size: 0.9em;
}

.detail .post-list mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

.detail h2 {
  padding-left: 0.5em;
  padding-bottom: 0.3em;
  border-left: 4px solid #005c41;
  border-bottom: 1px solid #005c41;
}

.detail h3 {
  padding-bottom: 0.3em;
  border-bottom: 1px solid #005c41;
}

/* お問い合わせ */
.contact {
  padding: 2.5em 1em;
}

@media screen and (min-width: 1100px), print {
  .contact {
    padding: 2.5em 2em;
  }
}

.contact .inner {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .contact .inner {
    padding: 0 2em;
  }
}

.contact-description {
  border: 2px solid #c1272d;
  border-radius: 5px;
  padding: 10px;
}

.contact-form table {
  width: 100%;
}

.contact-form table tr {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr {
    display: table;
    width: 100%;
  }
}

.contact-form table tr:not(:last-child) {
  margin-bottom: 1.5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table tr:not(:last-child) {
    margin-bottom: 0;
  }
}

.contact-form table th {
  position: relative;
  display: block;
  margin-bottom: 0.5em;
}

@media screen and (min-width: 768px), print {
  .contact-form table th {
    display: table-cell;
    vertical-align: middle;
    width: 15em;
    margin-bottom: 0;
    padding: 0.8em 1em;
  }
}

.contact-form table th .title {
  font-weight: bold;
}

.contact-form table th .require,
.contact-form table th .option {
  display: block;
  position: absolute;
  top: 50%;
  right: 0;
  font-size: 0.9em;
  color: #fff;
  width: 3em;
  margin: 0 auto;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.contact-form table th .require {
  background-color: #e59045;
}

.contact-form table th .option {
  background-color: #999;
}

.contact-form table td {
  display: block;
}

@media screen and (min-width: 768px), print {
  .contact-form table td {
    display: table-cell;
    vertical-align: middle;
    padding: 0.8em 0 0.8em 1em;
  }
}

.contact-form table td input[type="text"],
.contact-form table td input[type="email"],
.contact-form table td input[type="tel"] {
  padding: 8px;
  border: 1px solid #999;
  border-radius: 3px;
  font-size: 1em;
}

.contact-form table td input::-webkit-input-placeholder {
  font-size: 0.9em;
  color: #ccc;
}

.contact-form table td input:-ms-input-placeholder {
  font-size: 0.9em;
  color: #ccc;
}

.contact-form table td input::-ms-input-placeholder {
  font-size: 0.9em;
  color: #ccc;
}

.contact-form table td input::-moz-placeholder {
  font-size: 0.9em;
  color: #ccc;
}

.contact-form table td input::placeholder {
  font-size: 0.9em;
  color: #ccc;
}

.contact-form table td .full {
  width: 100%;
}

.contact-form table td .per60 {
  width: 100%;
}

@media screen and (min-width: 768px), print {
  .contact-form table td .per60 {
    width: 60%;
  }
}

.contact-form table td select {
  padding: 8px 4px;
  border-radius: 3px;
}

.contact-submit {
  margin-top: 1em;
  text-align: center;
}

.contact-submit .btn {
  display: block;
  border: 1px solid #e59045;
  background-color: #e59045;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  width: 150px;
  margin: 0 auto;
  cursor: pointer;
}

.contact-submit .btn:hover {
  color: #e59045;
  background-color: #fff;
}

/* プライバシーポリシー */
.privacy {
  padding: 2.5em 1em;
}

@media screen and (min-width: 1100px), print {
  .privacy {
    padding: 2.5em 2em;
  }
}

.privacy .inner {
  padding: 0 1em;
}

@media screen and (min-width: 1100px), print {
  .privacy .inner {
    padding: 0 2em;
  }
}

.privacy strong {
  font-weight: bold;
}

.privacy h3 {
  font-size: 2.4rem;
  font-weight: 500;
  margin: 3.5em 0 1em;
  padding-bottom: 0.5em;
  border-bottom: 2px solid #005c41;
}

.privacy-section-inner {
  margin-bottom: 2.5em;
}

.privacy h4 {
  margin-bottom: 0.5em;
  font-size: 2.2rem;
  font-weight: 500;
  background-color: #eee;
  padding: 0.2em 0.5em;
}

.privacy h5 {
  margin-bottom: 0.3em;
  font-size: 1.8rem;
  font-weight: 600;
}

/* --------------------------------

  プリント

-------------------------------- */
@media print {
  html,
  body {
    width: 1100px;
    background: none;
  }
}

/* --------------------------------

  修正・追加用

-------------------------------- */
/* 250304 */
.news-body h4 {
  position: relative;
  font-size: 1.1em;
  padding: 0 0 0.3em 1.5em;
  margin: 3.5em 0 1.5em;
  border-bottom: 2px solid #005c41;
}

.news-body h4:before {
  position: absolute;
  display: block;
  content: "";
  top: 40%;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #005c41;
  -webkit-transform: translateY(-40%);
  transform: translateY(-40%);
}

.page-section table {
  width: 100%;
  text-align: center;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: solid 1px #ddd;
}
.page-section table tr:nth-child(2n + 1) {
  background: #eee;
}
.page-section table th,
.page-section table td {
  padding: 10px;
  border-bottom: solid 1px #ddd;
}
