@charset "UTF-8";
/* =====================================================
  0.0 - Foundation
===================================================== */
/*
index
-----------------------------------------------------*/
/*
i-setting
-----------------------------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
/*
i-functions
-----------------------------------------------------*/
a,
img,
a img {
  transition: all 600ms;
}
a:hover,
img:hover,
a img:hover {
  opacity: 0.7;
}

/*
i-mixin
-----------------------------------------------------*/
/* ------------------------- 使い方 ----------------------------------------------------------

    @include sizing(width, wide, 365px, sp, 276px);
    ==> width: clamp(276px, 7.46vw + 248px, 365px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を上限下限をつけて設定）

    @include sizing(width, wide, 365px, sp, 276px, noClamp);
    ==> width: calc(7.46vw + 248px);
    （ビューポートがwide(1568px)のとき365px, sp(375px)のとき276pxになる自動補完値を設定）

    @include sizingRem(font-size, wide, 14px, sp, 12px);
    ==> font-size: clamp(0.75rem, 0.17vw + 0.70625rem, 0.875rem;
    （ビューポートがwide(1568px)のとき14px, sp(375px)のとき12pxになる自動補完値をremに変換して設定）
　　
    ※使いたいsassファイル上で@useしてください。
    ※scssファイル上での読みやすさ重視のため、mixinの引数に単位[px]が必要な仕様にしてあります。

// ---------------------------------------------------------------------------------------- */
/*
	Base
-----------------------------------------------------*/
*,
:before,
:after {
  box-sizing: border-box;
}

html {
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  text-rendering: optimizeLegibility;
  font-feature-settings: "palt";
  color: #333333;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-display: swap;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  font-size: clamp(0.875rem, 0.31vw + 0.8125rem, 1rem);
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.02em;
  background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -moz-crisp-edges;
  image-rendering: -o-crisp-edges;
}

video {
  max-width: 100%;
  height: auto;
}

a,
a:link,
a:visited {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a:active,
a:hover {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
li {
  list-style-type: none;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

p {
  margin: 0;
  padding: 0;
}

p + p {
  margin-top: 2rem;
}

img {
  border: 0;
  line-height: 0;
  vertical-align: bottom;
}

img {
  width: 100%;
  max-width: 100%; /* 1 */
  height: auto; /* 1 */
  vertical-align: middle; /* 2 */
  font-style: italic; /* 3 */
  background-repeat: no-repeat; /* 4 */
  background-size: cover; /* 4 */
  shape-margin: 0.75rem; /* 5 */
  display: block;
}

svg {
  vertical-align: bottom;
}

hr {
  display: none;
}

table {
  margin: 0;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
  margin: 0;
}

td {
  margin: 0;
}

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

form {
  margin: 0;
  padding: 0;
}

label {
  margin: 0;
  padding: 0;
}

input.btn {
  margin: 0 0.5em;
  padding: 0 1em;
}

button {
  border: none;
  font: inherit;
  line-height: inherit;
  background: none;
  margin: 0;
}

/* キーボード操作"以外"でフォーカスされた際はoutlineを消す */
.js-focus-visible :focus:not(.focus-visible) {
  outline: 0;
}

.-center {
  text-align: center;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/* //////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

RESET CSS

html5doctor.com Reset Stylesheet

//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////*/
abbr,
address,
article,
aside,
audio,
b,
blockquote,
canvas,
caption,
cite,
code,
dd,
del,
details,
dfn,
div,
dl,
dt,
em,
fieldset,
figcaption,
figure,
footer,
form,
h1,
h2,
h3,
h4,
h5,
h6,
header,
hgroup,
html,
i,
iframe,
img,
ins,
kbd,
label,
legend,
li,
mark,
menu,
nav,
object,
ol,
p,
pre,
q,
samp,
section,
small,
span,
strong,
sub,
summary,
sup,
table,
tbody,
td,
tfoot,
th,
thead,
time,
tr,
ul,
var,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
} /* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
} /* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: 700;
}

del {
  text-decoration: line-through;
}

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

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

button {
  padding: 0;
}

* {
  box-sizing: border-box;
}

em,
i {
  font-weight: normal;
  font-style: normal;
}

/* =====================================================
  1.0 - inc
===================================================== */
/* =====================================================
  2.0 - Layout
===================================================== */
/*
body
-----------------------------------------------------*/
html {
  scroll-padding-top: 60px;
}
@media screen and (min-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

body i {
  font-style: normal;
}

@media screen and (min-width: 768px) {
  .l-foot_img {
    display: none;
  }
}

/*
footer
-----------------------------------------------------*/
.l-footer {
  padding-top: 50px;
  padding-bottom: 1em !important;
  color: #fff;
  background: #18411a;
}
.l-footer .l-wrapper {
  max-width: 1104px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .l-footer .l-wrapper {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.l-footer .-logo {
  margin-bottom: 36px;
}
.l-footer .-logo img {
  width: 275px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer .-logo img {
    margin: 0;
  }
}
.l-footer .-logo img.-exterior {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer .-logo img.-exterior {
    display: block;
  }
}
.l-footer .-logo address {
  line-height: 1.625;
  font-style: normal;
  margin: 1em 0;
}
.l-footer .-navf {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-footer .-navf {
    width: 60%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.l-footer .-navf dt {
  font-size: 20px;
  line-height: 1;
  margin-bottom: 1.5em;
}
.l-footer .-navf dd,
.l-footer .-navf li {
  line-height: 1.6;
}
.l-footer .-navf dd {
  margin-bottom: 0.5em;
}
.l-footer .-navf dd a:before {
  content: "ー";
  margin-right: 0.4em;
}
.l-footer .-navf li {
  margin-bottom: 0.8em;
}
.l-footer .-sns {
  margin-bottom: 20px;
}
.l-footer .-sns img {
  width: 35px;
}
.l-footer .-copy {
  font-size: 12px;
}
@media screen and (min-width: 768px) {
  .l-footer .-copy {
    width: 100%;
  }
}

/* =========================
 header
========================= */
.l-header {
  position: sticky;
  z-index: 200;
  background: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  width: 100vw;
  height: 60px; /* SP高さ */
  top: 0;
  left: 0;
  right: 0;
  /* 右端のボタン群：PCのみ */
  /* ハンバーガー：SPのみ表示。アイコンはspanで描画しopen時に変形 */
}
@media screen and (min-width: 768px) {
  .l-header {
    position: relative;
    height: 100px; /* PC高さ */
  }
}
.l-header .-wrapper {
  width: 90%;
  margin: 0 auto;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .l-header .-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1004px;
    background: url("../img/common/head_bg.svg") no-repeat 55% 100%;
  }
}
.l-header .-logo {
  width: 68%;
  max-width: 307px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.l-header .-logo a {
  display: block;
}
.l-header .-logo a span {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header .-logo a span {
    display: block;
    font-size: 11px;
    line-height: 1.2;
    margin-bottom: 0.3em;
  }
}
.l-header .-btn {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-header .-btn {
    display: block !important;
  }
}
.l-header .-btn ul {
  display: flex;
  justify-content: space-between;
  width: 295px;
}
.l-header .-btn ul li a {
  display: block;
  width: 140px;
  padding: 0.5em 0;
  border-radius: 3em;
  background: #fff;
  color: #2e6030;
  border: 1px solid #2e6030;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: all 600ms;
}
.l-header .-btn ul li a:hover {
  color: #fff;
  background: #2e6030;
  opacity: 1;
}
.l-header .-btn ul li a i {
  margin-right: 0.5em;
}
.l-header .-hamburger {
  position: absolute;
  right: 8.5px;
  top: 50%;
  width: 45px;
  height: 45px;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .l-header .-hamburger {
    display: none;
  }
}
.l-header .-hamburger button {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  cursor: pointer;
  /* 3本ライン */
  /* 開いた状態（×アイコン化） */
}
.l-header .-hamburger button > span {
  display: block;
  position: absolute;
  left: 11.5px;
  top: 22px;
  width: 22px;
  height: 1px;
  background: #4466ce;
}
.l-header .-hamburger button > span:nth-child(1) {
  transform: translateY(-6px);
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header .-hamburger button > span:nth-child(2) {
  transition: opacity 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header .-hamburger button > span:nth-child(3) {
  transform: translateY(6px);
  transition: transform 350ms cubic-bezier(0.215, 0.61, 0.355, 1);
}
.l-header .-hamburger button.is-open > span:nth-child(1) {
  transform: rotate(45deg) translateY(0px);
}
.l-header .-hamburger button.is-open > span:nth-child(2) {
  opacity: 0;
}
.l-header .-hamburger button.is-open > span:nth-child(3) {
  transform: rotate(-45deg) translateY(0px);
}

/* =========================
overlay
========================= */
.-overlay {
  display: none;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 101;
  }
  .-overlay.is-open {
    opacity: 1;
    visibility: visible;
  }
}

/* =========================
nav
========================= */
.-nav {
  position: fixed;
  width: 100vw;
  height: 100vh;
  max-height: 0;
  z-index: 199;
  background: #18411a;
  overflow-y: scroll;
  transition: transform 0.6s ease;
}
@media screen and (min-width: 768px) {
  .-nav {
    position: relative;
    overflow: visible;
    height: auto;
    max-height: 100%;
  }
}
.-nav.is-open {
  overflow: visible;
  max-height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.-nav .l-wrapper {
  width: 100%;
}
.-nav ul.-conts {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts {
    flex-direction: row;
  }
}
.-nav ul.-conts > li {
  border-bottom: 1px solid #3f5840;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li {
    border: 0;
  }
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li:not(:first-child) {
    border-left: 1px solid #fff;
  }
}
.-nav ul.-conts > li > a, .-nav ul.-conts > li > button {
  display: block;
  color: #fff;
  padding: 0.8em 5%;
  background: #18411a;
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li > a, .-nav ul.-conts > li > button {
    padding: 0.8em 2em;
  }
}
.-nav ul.-conts > li > a:hover, .-nav ul.-conts > li > button:hover {
  color: #18411a;
  background: #fff;
}
.-nav ul.-conts > li > button {
  position: relative;
  width: 100%;
  padding-right: 3em;
  text-align: left;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li > button {
    width: auto;
  }
}
.-nav ul.-conts > li > button:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  margin: auto;
  vertical-align: middle;
  top: 0;
  bottom: 0;
  right: 2em;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(45deg);
  transition: transform 0.6s ease;
}
.-nav ul.-conts > li > button:hover:after {
  border-color: #18411a;
}
.-nav ul.-conts > li .-mega {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.6s ease;
  width: 100vw;
  background: #2e6030;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li .-mega {
    position: absolute;
    top: 84%;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s ease;
    padding: 1em 0;
  }
}
.-nav ul.-conts > li .-mega.is-open {
  max-height: 500px;
  visibility: visible;
  opacity: 1;
}
.-nav ul.-conts > li .-mega ul {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li .-mega ul {
    flex-direction: row;
    gap: 2em;
  }
}
.-nav ul.-conts > li .-mega ul li:not(:first-child) {
  border-top: 1px solid #354635;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li .-mega ul li:not(:first-child) {
    border: 0;
  }
}
.-nav ul.-conts > li .-mega ul li a {
  display: block;
  color: #fff;
  padding: 0.8em 5%;
}
@media screen and (min-width: 768px) {
  .-nav ul.-conts > li .-mega ul li a {
    position: relative;
    padding: 0.8em 2em 0.8em 0;
    vertical-align: middle;
  }
  .-nav ul.-conts > li .-mega ul li a:after {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    margin: auto;
    vertical-align: middle;
    top: 0;
    bottom: 0;
    right: 1em;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
}
.-nav ul.-sponly {
  margin-top: 3em;
  padding: 0 5%;
}
@media screen and (min-width: 768px) {
  .-nav ul.-sponly {
    display: none;
  }
}
.-nav ul.-sponly li {
  margin-bottom: 1em;
}
.-nav ul.-sponly li a {
  position: relative;
  display: block;
  text-align: center;
  background: #fff;
  border-radius: 3em;
  padding: 0.8em;
}
.-nav ul.-sponly li a i {
  margin-right: 0.5em;
}
.-nav ul.-sponly li a:before, .-nav ul.-sponly li a:after {
  content: "";
  position: absolute;
  display: inline-block;
  top: calc(50% - 0.5px);
  right: 1em;
}
.-nav ul.-sponly li a:before {
  width: 20px;
  height: 1px;
  border-radius: 9999px;
  background-color: #2e6030;
}
.-nav ul.-sponly li a:after {
  width: 8px;
  height: 1px;
  border-radius: 9999px;
  background-color: #2e6030;
  transform: rotate(45deg);
  transform-origin: calc(100% - 0.5px) 50%;
}

@media screen and (min-width: 768px) {
  .-nav.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* headerやoverlayより上/下は調整 */
  }
  /* 固定によりコンテンツが上に潜るのを防ぐ */
  body.has-fixed-nav {
    padding-top: var(--fixed-nav-height, 0px);
  }
}
/*
main
-----------------------------------------------------*/
.l-main {
  padding-bottom: 65px;
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-bottom: 120px;
  }
}
.l-main.p-home {
  padding-bottom: 0;
}

/*
spacer
-----------------------------------------------------*/
.l-sp {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-sp {
    display: none;
  }
}

.l-pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-pc {
    display: block;
  }
}

/*
wrapper
-----------------------------------------------------*/
.l-wrapper {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    width: 100%;
    max-width: 1004px;
  }
}

body#contact .l-main .l-wrapper,
body#privacy-policy .l-main .l-wrapper {
  max-width: 797px;
}

/*
cta
-----------------------------------------------------*/
.l-cta {
  max-width: 760px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #ddd;
  margin: 50px auto;
  padding: 5% 5% 10%;
}
@media screen and (min-width: 768px) {
  .l-cta {
    padding: 1em 1.5em 2em;
  }
}
.l-cta h4 {
  font-size: clamp(20px, 0vw + 20px, 20px);
  font-weight: 600;
  border-bottom: 1px solid #ddd;
  margin-bottom: 0.5em;
}
.l-cta h5 {
  font-size: clamp(14px, 0vw + 14px, 14px);
  margin-bottom: 1em;
}
.l-cta .-wrapper {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .l-cta .-wrapper {
    flex-direction: row;
    justify-content: space-between;
  }
}
.l-cta .-wrapper .-call,
.l-cta .-wrapper .-contact {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-cta .-wrapper .-call,
  .l-cta .-wrapper .-contact {
    width: auto;
  }
}
.l-cta .-wrapper .-call a {
  display: block;
  font-size: 31px;
  font-weight: 600;
}
.l-cta .-wrapper .-contact {
  margin-top: 1em;
  padding-top: 1em;
  border-top: 1px solid #ddd;
}
@media screen and (min-width: 768px) {
  .l-cta .-wrapper .-contact {
    border: 0;
    margin-top: 0;
    padding-top: 0;
    margin-right: 5em;
  }
}
.l-cta .-wrapper .-contact a {
  display: inline-block;
  color: #2e6030;
  border: 1px solid #2e6030;
  border-radius: 3em;
  padding: 1em 3em;
  width: 100%;
  text-align: center;
}
.l-cta .-wrapper .-contact a i {
  margin-right: 0.5em;
}
.l-cta .-wrapper .-contact a:hover {
  color: #fff;
  background: #2e6030;
  opacity: 1;
}

/* =====================================================
  3.0 - Object
===================================================== */
/*
  3.1 - Component
-----------------------------------------------------*/
/*
c-2column
-----------------------------------------------------*/
.c-2column {
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .c-2column {
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .c-2column .-content {
    width: 66%;
  }
}
@media screen and (min-width: 768px) {
  .c-2column .-sub {
    width: 24%;
  }
}
.c-2column .-sub ul.-banner {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-2column .-sub ul.-banner {
    display: block;
  }
}
.c-2column .-sub ul.-banner li {
  margin-bottom: 18px;
}
.c-2column .-sub dl {
  margin-bottom: 56px;
}
.c-2column .-sub dl dt {
  color: #fff;
  background: #2e3b60;
  border-radius: 10px 10px 0 0;
  padding: 0.8em;
}
.c-2column .-sub dl dd {
  border: 1px solid #ddd;
  border-top: 0;
}
.c-2column .-sub dl dd a {
  position: relative;
  display: block;
  line-height: 1.5;
  background: #fff;
  padding: 0.8em 1.8em 0.8em 0.8em;
  transition: all 600ms;
}
.c-2column .-sub dl dd a:hover {
  background: #ddd;
  opacity: 1;
}
.c-2column .-sub dl dd a:after {
  font-family: "FontAwesome";
  content: "\f105";
  position: absolute;
  top: 1em;
  right: 0.5em;
  width: 1em;
  height: 1em;
  color: #2e6030;
}
.c-2column .-sub dl dd:last-of-type {
  border-radius: 0 0 10px 10px;
}
.c-2column .-sub dl dd:last-of-type a {
  border-radius: 0 0 10px 10px;
}

/*
c-section
-----------------------------------------------------*/
.c-section {
  margin-bottom: clamp(50px, 6.7vw + 28.5px, 80px);
}
.c-section a {
  color: #1a0dab;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: all 600ms;
}
@media screen and (min-width: 768px) {
  .c-section a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #333;
  }
}
.c-section a:hover {
  text-decoration: none;
}
.c-section h2 {
  font-size: 20px;
  color: #fff;
  background: #2e6030;
  padding: 0.3em 5%;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  margin-bottom: 30px;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-section h2 {
    width: 100%;
    margin: 0 auto 35px;
    padding: 0.3em 0.5em;
  }
}
.c-section h2 i {
  margin-right: 0.5em;
}
.c-section h3 {
  position: relative;
  font-size: 20px;
  padding-bottom: 0.5em;
  margin-bottom: 2em;
}
.c-section h3:before, .c-section h3:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
}
.c-section h3:before {
  width: 100%;
  background: #9eeba2;
}
.c-section h3:after {
  width: 5em;
  background: #2e6030;
}
.c-section h4 {
  font-size: 18px;
  border-left: 4px solid #2e6030;
  padding-left: 0.5em;
  margin-bottom: 0.5em;
  font-weight: bold;
}
.c-section p {
  margin-bottom: 2em;
}
.c-section p.-right {
  text-align: right;
}
.c-section p.-call {
  margin: 0;
}
.c-section p.-call a {
  font-size: 31px;
  display: inline-block;
  margin-left: 1em;
  font-weight: bold;
}
.c-section p.-call + p {
  margin: 0;
}
.c-section ul.-disc {
  margin-bottom: 2em;
}
.c-section ul.-disc li {
  position: relative;
  padding-left: 1.5em;
}
.c-section ul.-disc li:before {
  content: "";
  position: absolute;
  width: 0.5em;
  height: 0.5em;
  border-radius: 1em;
  background: #95d397;
  top: 0.8em;
  left: 0.25em;
}
.c-section dl {
  margin-bottom: 2em;
  border-top: 1px solid #ddd;
}
.c-section dl div {
  display: flex;
  padding: 1em 0;
  border-bottom: 1px solid #ddd;
}
.c-section dl div dt {
  width: 10em;
}
.c-section dl div dd {
  width: calc(100% - 7em);
}
.c-section table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
}
.c-section table tbody th,
.c-section table tbody td {
  vertical-align: middle;
  padding: 1em;
  border: 1px solid #ddd;
  width: 100%;
  float: left;
  margin-top: -1px;
}
@media screen and (min-width: 768px) {
  .c-section table tbody th,
  .c-section table tbody td {
    width: auto;
    float: none;
    margin: 0;
  }
}
.c-section table tbody th > ul,
.c-section table tbody td > ul {
  margin: 0;
}
.c-section table tbody th > ul li,
.c-section table tbody td > ul li {
  display: inline-block;
  margin-right: 2em;
}
.c-section table tbody th {
  white-space: nowrap;
  background: #f7f7f7;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  .c-section table tbody th {
    min-width: 8em;
  }
}
.c-section > ol {
  counter-reset: item;
}
.c-section > ol li {
  position: relative;
  padding-left: 2.5em;
}
.c-section > ol li:before {
  position: absolute;
  width: 1em;
  height: 2em;
  top: 0;
  left: 0;
}
.c-section > ol > li {
  margin-bottom: 1em;
}
.c-section > ol > li:before {
  counter-increment: item;
  content: counter(item) ".";
  padding-left: 0.5em;
}
.c-section > ol > li > ol {
  counter-reset: sub-item;
}
.c-section > ol > li > ol > li:before {
  counter-increment: sub-item;
  content: "（" counter(sub-item) "）";
}
.c-section > ol > li > ol > li > ol {
  counter-reset: sub2-item;
}
.c-section > ol > li > ol > li > ol > li:before {
  counter-increment: sub2-item;
  content: counter(sub2-item, katakana);
}
.c-section .-thumb2 {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2%;
  margin-bottom: 2em;
}
.c-section .-thumb2 img {
  width: 49%;
  margin-bottom: 2%;
}
.c-section .-newsletter {
  display: flex;
  flex-wrap: wrap;
  gap: 14%;
  margin-top: 2em;
  margin-bottom: 2em;
}
.c-section .-newsletter a {
  display: block;
  width: 24%;
  margin-bottom: 8%;
}
.c-section .-newsletter a figure figcaption {
  margin-top: 1em;
}
.c-section .-ggmap iframe {
  aspect-ratio: 16/9;
  width: 100%;
}

/*
pagetitle
-----------------------------------------------------*/
.c-herohead {
  display: flex;
  border-bottom: 1px solid #ddd;
  background: #fff;
}
.c-herohead h1 {
  position: relative;
  line-height: 1;
  font-weight: 400;
  text-align: center;
  margin: 30px auto;
}
@media screen and (min-width: 768px) {
  .c-herohead h1 {
    margin: 45px auto;
  }
}
.c-herohead h1:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 78px;
  height: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.c-herohead h1 em {
  display: block;
  font-size: 36px;
}
.c-herohead h1 span {
  display: block;
  font-size: 12px;
  padding-top: 1em;
}

body#s-management .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-management .c-herohead h1:before {
  background-image: url("../img/common/icn-management.svg");
}
body#s-finance .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-finance .c-herohead h1:before {
  background-image: url("../img/common/icn-finance.svg");
}
body#s-taxation .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-taxation .c-herohead h1:before {
  background-image: url("../img/common/icn-taxation.svg");
}
body#s-hr .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-hr .c-herohead h1:before {
  background-image: url("../img/common/icn-hr.svg");
}
body#s-startup .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-startup .c-herohead h1:before {
  background-image: url("../img/common/icn-startup.svg");
}
body#s-mutualaid .c-herohead h1 {
  padding: 0 0 0 78px;
}
body#s-mutualaid .c-herohead h1:before {
  background-image: url("../img/common/icn-mutualaid.svg");
}
body#news .c-herohead h1 em, body#member .c-herohead h1 em {
  font-size: 30px;
}
@media screen and (min-width: 768px) {
  body#news .c-herohead h1, body#member .c-herohead h1 {
    padding: 0 0 0 78px;
  }
  body#news .c-herohead h1:before, body#member .c-herohead h1:before {
    font-family: "FontAwesome";
    content: "\f0a1";
    font-size: 40px;
  }
}

/*
c-breadcrumb
-----------------------------------------------------*/
.c-breadcrumb {
  background: #f8f8f8;
  padding: 0.8em 0;
  border-bottom: 1px solid #ddd;
  margin-bottom: clamp(27px, 6.03vw + 7.7px, 54px);
}
.c-breadcrumb ul {
  font-size: 12px;
}
.c-breadcrumb ul li {
  display: inline;
}
.c-breadcrumb ul li:not(:last-child):after {
  content: ">";
  padding: 0 0.3em;
}
.c-breadcrumb ul li a:hover {
  color: #1a0dab;
  text-decoration: underline;
  opacity: 1;
}

body#brand-post .c-breadcrumb {
  margin-bottom: clamp(38px, 3.57vw + 26.6px, 54px);
}

/*
c-lnk
-----------------------------------------------------*/
.c-lnk a {
  display: block;
  position: relative;
  padding-right: 2em;
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 1em;
  color: #1a0dab;
  margin-bottom: 1em;
  transition: all 600ms;
}
.c-lnk a:after {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  right: 1em;
  top: calc(50% - 4px);
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
}
.c-lnk a.-pdf:after {
  font-family: "FontAwesome";
  content: "\f56d";
  width: 1em;
  height: 1em;
  top: calc(50% - 1em);
  border: 0;
  transform: rotate(0);
}
.c-lnk a i.fa-file-pdf {
  color: #df1f1c;
  margin-right: 0.5em;
}
.c-lnk a i.fa-file-word {
  margin-right: 0.5em;
}
.c-lnk a i.fa-up-right-from-square {
  margin-left: 0.5em;
}
.c-lnk a:hover {
  color: #fff;
  background: #1a0dab;
  opacity: 1;
}
.c-lnk a:hover:after {
  border-color: #fff;
}

/*
pagenav
-----------------------------------------------------*/
.wp-pagenavi {
  display: flex;
  gap: 0.5rem;
  margin: 0 auto;
  position: relative;
  width: 100%;
  padding-top: 48px;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi {
    width: 96%;
    padding-top: 0;
    margin-top: clamp(60px, 8.93vw - 8.6px, 120px);
  }
}
@media screen and (min-width: 620px) {
  .wp-pagenavi {
    gap: 1rem;
  }
}
.wp-pagenavi .current,
.wp-pagenavi .page,
.wp-pagenavi .back {
  font-weight: 600;
  color: #707070;
  transition: 0.6s;
  text-decoration: none !important;
  border: 1px solid #707070;
  border-radius: 6px;
  display: inline-block;
  width: 4em;
  height: 2.5em;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .current,
  .wp-pagenavi .page,
  .wp-pagenavi .back {
    width: 5em;
    height: 3em;
  }
}
.wp-pagenavi .current.current, .wp-pagenavi .current:hover,
.wp-pagenavi .page.current,
.wp-pagenavi .page:hover,
.wp-pagenavi .back.current,
.wp-pagenavi .back:hover {
  background: #707070;
  color: #fff;
}
.wp-pagenavi .back {
  width: auto;
  padding: 0 3em;
}
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #333333;
  position: absolute;
  width: 35px;
  height: 35px;
  line-height: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: url(../img/common/icon_arrow_left_bk.svg) no-repeat 0% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    width: 45px;
    height: 45px;
  }
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .previouspostslink,
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .previouspostslink:before,
  .wp-pagenavi .nextpostslink:before {
    content: "prev";
    display: block;
    font-size: 16px;
    letter-spacing: 0.25rem;
    font-weight: 600;
    position: absolute;
    left: 45px;
    top: 50%;
    transform: translate(0%, -57%);
  }
}
.wp-pagenavi .nextpostslink {
  background: url(../img/common/icon_arrow_right_bk.svg) no-repeat 100% 50%/16px 9px;
}
@media screen and (min-width: 768px) {
  .wp-pagenavi .nextpostslink {
    background-position: 50% 50%;
  }
  .wp-pagenavi .nextpostslink:before {
    content: "next";
    left: auto;
    font-size: 16px;
    letter-spacing: 0.25rem;
    font-weight: 600;
    right: 45px;
    top: 50%;
    transform: translate(0%, -53%);
  }
}
.wp-pagenavi .previouspostslink {
  left: 0;
}
.wp-pagenavi .nextpostslink {
  right: 0;
}

/*
form
-----------------------------------------------------*/
.c-form p {
  margin: 0;
}
.c-form .-select {
  position: relative;
  width: 100%;
  display: inline-flex;
  align-items: center;
}
.c-form .-select:after {
  position: absolute;
  right: 1em;
  width: 10px;
  height: 7px;
  background-color: #333333;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
  pointer-events: none;
}
.c-form .-select select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  height: 2.8em;
  padding: 0.4em calc(0.8em + 30px) 0.4em 0.8em;
  border: none;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  cursor: pointer;
  border: 1px solid #cdd6dd;
}
.c-form ul {
  margin: 0;
  padding: 0;
}
.c-form ul li {
  display: block;
}
.c-form ul li label {
  width: auto;
}
.c-form input[type=text], .c-form input[type=email], .c-form input[type=tel], .c-form input[type=datetime], .c-form input[type=date], .c-form input[type=month], .c-form input[type=week], .c-form input[type=time], .c-form input[type=datetime-local], .c-form input[type=tel], .c-form input[type=serch], .c-form input[type=url], .c-form input[type=password], .c-form input[type=number], .c-form input[type=range], .c-form input[type=color], .c-form input[type=file], .c-form input[type=image] {
  width: 100%;
  font-size: clamp(1rem, 0.31vw + 0.9375rem, 1.125rem);
  font-weight: 400;
  padding: 0.8em;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #cdd6dd;
}
.c-form input[type=radio], .c-form input[type=checkbox] {
  vertical-align: middle;
  position: relative;
  top: -2px;
  margin-right: 0.3em;
}
.c-form input.zipcode {
  width: calc(100% - 2em);
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .c-form input.zipcode {
    width: 8em;
  }
}
.c-form textarea {
  width: 100%;
  font-size: clamp(1rem, 0.31vw + 0.9375rem, 1.125rem);
  font-weight: 400;
  padding: 0.8em;
  box-sizing: border-box;
  height: 10em;
  background: #fff;
  border: 1px solid #cdd6dd;
}
.c-form input[type=submit], .c-form input[type=button],
.c-form button[type=submit],
.c-form button[type=button] {
  width: 100%;
  display: inline-block;
  cursor: pointer;
  font-size: clamp(1.25rem, 0vw + 1.25rem, 1.25rem);
  font-weight: 500;
  padding: 0.6em 0;
  border: 1px solid #707070;
  border-radius: 3em;
  background: transparent;
  transition: all 0.6s;
}
@media screen and (min-width: 768px) {
  .c-form input[type=submit], .c-form input[type=button],
  .c-form button[type=submit],
  .c-form button[type=button] {
    display: block;
    width: auto;
    padding: 0.6em 5em;
    margin: 0 auto;
  }
}
@media (hover: hover) {
  .c-form input[type=submit]:hover, .c-form input[type=button]:hover,
  .c-form button[type=submit]:hover,
  .c-form button[type=button]:hover {
    color: #fff;
    background: #707070;
  }
}
.c-form input::-moz-placeholder, .c-form textarea::-moz-placeholder {
  color: #d0d0d0;
}
.c-form input::placeholder,
.c-form textarea::placeholder {
  color: #d0d0d0;
}
.c-form.-submit {
  text-align: center;
  margin: 5em auto;
}
.c-form .-policy {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-content: center;
  width: -moz-fit-content;
  width: fit-content;
  border: 0;
  margin: 5rem auto;
}
@media screen and (min-width: 768px) {
  .c-form .-policy {
    flex-direction: row;
  }
}
.c-form .-policy dt,
.c-form .-policy dd {
  flex-grow: 1;
}
.c-form .-policy dt {
  font-weight: bold;
  width: 100%;
  margin: 0 0 1rem 0;
}
@media screen and (min-width: 768px) {
  .c-form .-policy dt {
    width: 10em;
    margin: 0 1rem 0;
  }
}
.c-form .-policy dd {
  width: auto;
}
.c-form .-acceptance {
  border: 0;
}
.c-form .-acceptance label {
  display: block;
  width: 8em;
  margin: 0 auto;
}
.c-form .-acceptance input[type=checkbox] {
  width: 0;
  height: 0;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  display: none;
}
.c-form .-acceptance input[type=checkbox]:checked + span:after {
  opacity: 1;
}
.c-form .-acceptance .wpcf7-list-item-label {
  position: relative;
  padding-left: 50px;
  top: 0;
  left: 0;
  width: 100%;
  display: block;
  line-height: 40px;
  white-space: nowrap;
}
.c-form .-acceptance .wpcf7-list-item-label:before, .c-form .-acceptance .wpcf7-list-item-label:after {
  content: "";
  position: absolute;
  display: block;
  box-sizing: border-box;
}
.c-form .-acceptance .wpcf7-list-item-label:before {
  height: 40px;
  width: 40px;
  background: #707070;
  border-radius: 99px;
  top: 50%;
  left: 0;
  margin-top: -18px;
  transition: 0.3s;
}
.c-form .-acceptance .wpcf7-list-item-label:after {
  top: 50%;
  transition: 0.3s;
  transform: rotate(45deg);
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  width: 12px;
  height: 20px;
  left: 14px;
  margin-top: -10px;
  opacity: 0.05;
}
.c-form .-txt {
  max-width: 640px;
  margin: 5em auto;
}
.c-form .-txt p {
  font-weight: 400;
}

/*
c-swiper
-----------------------------------------------------*/
.c-swiper01 {
  position: relative;
  margin: 0;
  width: 100vw;
}
.c-swiper01::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(0, 0, 0, 0.2);
}
.c-swiper01 .swiper-slide {
  position: relative;
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
  height: 480px;
}
@media screen and (min-width: 768px) {
  .c-swiper01 .swiper-slide {
    margin: 0 auto;
    width: 100%;
    height: auto;
  }
}
.c-swiper01 .swiper-slide img {
  width: 300vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .c-swiper01 .swiper-slide img {
    position: static;
    width: 100%;
    height: auto;
    transform: none;
  }
}
.c-swiper01 .-txt {
  position: absolute;
  width: 100vw;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 99;
  display: grid;
  place-items: center;
  color: #fff;
  text-shadow: 0 0 6px #000;
  font-size: clamp(29px, 1.07vw + 25.6px, 43px);
  font-weight: bold;
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.c-swiper02 .-event {
  overflow: hidden;
  margin: 0 calc(50% - 50vw);
  width: 100vw;
}
@media screen and (min-width: 768px) {
  .c-swiper02 .-event {
    margin: 0 auto;
    width: 100%;
  }
}
.c-swiper02 .-event .swiper-slide a {
  display: block;
}
.c-swiper02 .-event .swiper-slide a figure img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #ddd;
  margin-bottom: 0.5em;
}
.c-swiper02 .-event .swiper-slide a figure figcaption date {
  display: block;
  font-size: 12px;
  line-height: 1.5;
  color: #909090;
  font-family: "Noto Serif", serif;
  margin-bottom: 0.5em;
}
.c-swiper02 .-event .swiper-slide a figure figcaption span {
  color: #1a0dab;
  line-height: 1.8;
}
.c-swiper03 .-brandimages {
  position: relative;
  overflow-x: hidden;
}
.c-swiper03 .-brandimages .swiper-slide {
  align-items: center;
}
.c-swiper03 .-brandimages .swiper-slide img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-swiper03 .-brandimages .swiper-button-next,
.c-swiper03 .-brandimages .swiper-button-prev {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-swiper03 .-brandimages .swiper-button-next,
  .c-swiper03 .-brandimages .swiper-button-prev {
    display: flex;
    background: #fff;
    border-radius: 50%;
    width: 60px;
    height: 60px;
  }
  .c-swiper03 .-brandimages .swiper-button-next:after,
  .c-swiper03 .-brandimages .swiper-button-prev:after {
    font-size: 20px;
    color: #808080;
  }
}
.c-swiper04 .-brandother {
  overflow: hidden;
}
.c-swiper04 .-brandother .swiper-slide a {
  display: block;
  color: #333;
  text-decoration: none;
}
.c-swiper04 .-brandother .swiper-slide a img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 6px 6px 0 0;
}
.c-swiper04 .-brandother .swiper-slide a div {
  background: #fff;
  padding: 5%;
  border-radius: 0 0 6px 6px;
}
.c-swiper04 .-brandother .swiper-slide a div i {
  display: block;
  font-size: 10px;
  color: #808080;
}/*# sourceMappingURL=common.css.map */