@charset "UTF-8";
/* Foundation */
body {
  font-family: "dnp-shuei-mincho-pr6n", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-feature-settings: "pwid";
  letter-spacing: 0.08em;
}

/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

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

del {
  text-decoration: line-through;
}

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

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

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

input,
select {
  vertical-align: middle;
}

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

html,
body {
  overflow-x: hidden;
  overflow-x: clip;
}

a {
  text-decoration: none;
  color: inherit;
}

li {
  list-style: none;
}

.grecaptcha-badge {
  visibility: hidden;
}

.nomarginblock {
  margin-block-start: -0.5em;
}

/*html {
    visibility: hidden;
}

html.wf-active,
html.loading-delay {
    visibility: visible;
}*/
.visually-hidden {
  display: none;
}

/* Layout */
/* Foundation */
.l-header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  background: white;
  top: 0;
  z-index: 9999;
}
.l-header__logo {
  width: 75%;
  padding-left: 1rem;
}
.l-header__logo img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  .l-header__logo {
    width: 30%;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__nav {
    position: fixed;
    inset: 0;
    background: #328531;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 90;
    top: 65px;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__nav {
    visibility: visible;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: stretch;
  }
}
@media screen and (min-width: 1024px) {
  .l-header__menu {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-items: stretch;
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.l-header__menu--list {
  border-bottom: 1px solid white;
}
@media screen and (min-width: 1024px) {
  .l-header__menu--list {
    border-bottom: none;
    display: flex;
    align-items: center;
  }
}
.l-header__menu--list a {
  display: inline-block;
  padding: 1rem;
  width: 100%;
  color: white;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .l-header__menu--list a {
    padding: 0 clamp(1rem, -1.909rem + 4.55vw, 1.5rem);
    color: #3c3c3c;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: 0.3s;
  }
  .l-header__menu--list a:hover {
    color: #328531;
    background: #eaf3ea;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__menu--list a {
    padding: 0 2rem;
    color: #3c3c3c;
  }
}
.l-header__check {
  display: none;
}
.l-header__hamburger {
  display: none;
}
@media screen and (max-width: 1023px) {
  .l-header__hamburger {
    display: block;
    background: #328531;
    position: relative;
    width: 65px;
    height: 65px;
    cursor: pointer;
    z-index: 100;
  }
  .l-header__hamburger div {
    color: white;
    font-size: 0.75rem;
    width: 100%;
    text-align: center;
    position: absolute;
    bottom: 0.75em;
  }
  .l-header__hamburger span,
  .l-header__hamburger span::before,
  .l-header__hamburger span::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 3px;
    background: white;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.3s;
  }
  .l-header__hamburger span {
    top: 24px;
  }
  .l-header__hamburger span::before {
    top: -10px;
  }
  .l-header__hamburger span::after {
    top: 10px;
  }
}
@media screen and (max-width: 1023px) {
  .l-header__check:checked ~ .l-header__nav {
    opacity: 1;
    visibility: visible;
  }
}
.l-header__check:checked + .l-header__hamburger span {
  background: transparent;
}
.l-header__check:checked + .l-header__hamburger span::before {
  transform: rotate(45deg);
  top: 0;
  left: 0%;
}
.l-header__check:checked + .l-header__hamburger span::after {
  transform: rotate(-45deg);
  top: 0;
  left: 0%;
}
.l-header__sns {
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__sns {
    display: flex;
    width: 36px;
    align-items: center;
    justify-content: center;
    margin-left: clamp(1rem, -1.909rem + 4.55vw, 1.5rem);
    transition: 0.3s;
  }
  .l-header__sns:hover {
    opacity: 0.5;
  }
  .l-header__sns img {
    display: block;
  }
}
.l-header__contact {
  display: inline-block;
  padding: 1rem;
  width: 100%;
  color: white;
  font-weight: 500;
  border-bottom: 1px solid white;
}
@media screen and (min-width: 1024px) {
  .l-header__contact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    align-content: center;
    border-bottom: none;
    width: auto;
    padding: 0rem;
    font-size: clamp(1rem, 0.273rem + 1.14vw, 1.125rem);
    background: #328531;
    text-align: center;
    height: 80px;
    margin-left: clamp(1rem, -10.636rem + 18.18vw, 2rem);
    transition: 0.3s;
  }
  .l-header__contact:hover {
    background: #eac000;
  }
}
@media screen and (min-width: 1280px) {
  .l-header__contact {
    height: 100px;
  }
}
.l-header__contact--icon {
  width: 100%;
  display: none;
}
@media screen and (min-width: 1024px) {
  .l-header__contact--icon {
    display: block;
  }
}
.l-header__contact--icon img {
  width: clamp(1.5rem, -1.409rem + 4.55vw, 2rem);
}
.l-header__contact--text {
  width: 100%;
  margin-top: 0.5rem;
}

/* Foundation */
.l-footer {
  border-top: 2px solid #328531;
  background: #edf4ed;
  padding: 3rem 0 0;
}
@media screen and (min-width: 768px) {
  .l-footer {
    padding: 4rem 0 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer {
    padding: clamp(4rem, 2.222rem + 2.78vw, 5rem) 0 0;
  }
}
.l-footer__top {
  display: block;
  width: 85%;
  max-width: 1020px;
  margin: auto;
  padding-bottom: 3rem;
}
@media screen and (min-width: 1024px) {
  .l-footer__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
}
.l-footer__logo {
  width: 98%;
  margin-bottom: 1rem;
}
.l-footer__logo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__logo {
    margin-bottom: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__logo {
    width: 85%;
    max-width: 468px;
    margin-bottom: clamp(1.5rem, 0.611rem + 1.39vw, 2rem);
  }
}
@media screen and (min-width: 1280px) {
  .l-footer__logo {
    width: 468px;
  }
}
.l-footer__address {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__address {
    text-align: left;
    margin-bottom: 0 !important;
  }
}
.l-footer__right {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .l-footer__right {
    display: block;
  }
}
.l-footer__line {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  transition: 0.3s;
}
.l-footer__line:hover {
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .l-footer__line {
    width: auto;
  }
}
.l-footer__line--icon {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.l-footer__line--icon-img {
  width: 4rem;
  margin-right: 0.7rem;
}
.l-footer__line--icon-img img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-footer__line--icon-img {
    width: 3rem;
    margin-right: 0.7rem;
  }
}
.l-footer__line--text {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .l-footer__line--text {
    margin-right: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__line--text {
    margin-right: 2rem;
  }
}
.l-footer__line--block {
  background: #06c755;
  border-radius: 0.5em;
  color: white;
  padding: 0.5em 2em;
  font-weight: 500;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-footer__line--block {
    padding: 0.5em 1em;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__line--block {
    padding: 0.5em 1.5em;
  }
}
.l-footer__bottom {
  border-top: 1px solid #9d9d9d;
  width: 85%;
  max-width: 1020px;
  margin: auto;
  padding-top: 3rem;
  padding-bottom: 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom {
    flex-direction: row;
    justify-content: center;
    padding-bottom: clamp(4rem, 2.222rem + 2.78vw, 5rem);
  }
}
.l-footer__bottom--link {
  transition: 0.3s;
}
.l-footer__bottom--link:last-child {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .l-footer__bottom--link {
    width: 42%;
    max-width: 300px;
  }
  .l-footer__bottom--link:last-child {
    margin-left: 3rem;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-footer__bottom--link:last-child {
    margin-left: 6rem;
  }
}
.l-footer__bottom--link img {
  width: 100%;
}
.l-footer__bottom--link:hover {
  opacity: 0.5;
}
.l-footer__copyright {
  background: #328531;
  color: white;
  font-weight: 500;
  font-size: clamp(0.688rem, 0.464rem + 0.95vw, 0.75rem);
  text-align: center;
  padding: 0.7em 0;
}
@media screen and (min-width: 1024px) {
  .l-footer__copyright {
    font-size: clamp(0.75rem, 0.528rem + 0.35vw, 0.875rem);
    padding: clamp(0.75rem, 0.528rem + 0.35vw, 0.875rem) 0;
  }
}

.fixbottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: fixed;
  bottom: 0.5em;
  right: 0.5em;
  z-index: 9900;
}
.fixbottom__link {
  background: #eac000;
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  line-height: 60px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .fixbottom__link {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px;
    padding-top: 3px;
    padding-right: 3px;
  }
}
.fixbottom__link img {
  width: 50%;
  height: auto;
}
.fixbottom__line {
  display: block;
  text-align: center;
  width: 60px;
  height: 60px;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  .fixbottom__line {
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 40px;
    padding-top: 3px;
    padding-right: 3px;
  }
}
.fixbottom__line img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 1280px) {
  .fixbottom {
    display: none;
  }
}

/* Foundation */
.l-wrapper {
  padding: 4rem 0;
  background-size: 120%;
  background-position: bottom left;
  background-repeat: no-repeat;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    background-size: 100%;
  }
}
.l-wrapper.features {
  background-image: url(../img/bg_features.svg);
}
.l-wrapper.practice_areas {
  background-image: url(../img/bg_practice_areas.svg);
  background-position: bottom right;
}
.l-wrapper.greeting {
  background-image: url(../img/bg_greeting.svg);
}
.l-wrapper.fees {
  background-image: url(../img/bg_fees.svg);
  background-position: bottom right;
}
.l-wrapper.contact {
  background-image: url(../img/bg_contact.svg);
}
.l-wrapper.news {
  background-image: url(../img/bg_news.svg);
  background-position: bottom right;
}
.l-wrapper:nth-child(even) {
  background-color: #eaf3ea;
}
@media screen and (min-width: 768px) {
  .l-wrapper {
    padding: 5rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .l-wrapper {
    padding: clamp(5rem, 0.429rem + 7.14vw, 9rem) 0;
  }
}
.l-wrapper.white {
  background: none;
}
.l-wrapper__inner {
  width: 85%;
  max-width: 1200px;
  margin: auto;
}
@media screen and (min-width: 1600px) {
  .l-wrapper__inner {
    width: 1200px;
    margin: auto;
  }
}
.l-wrapper__inner--whitebox {
  background: white;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .l-wrapper__inner--whitebox {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
  }
}

/* Object */
/* Component */
/* Foundation */
html {
  color: #3c3c3c;
  scroll-behavior: smooth;
  scroll-padding-top: 65px;
}
@media screen and (min-width: 1024px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  color: #3c3c3c;
}

/* Foundation */
.c-breadcrumb {
  width: 85%;
  max-width: 1200px;
  margin: 1rem auto 0;
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .c-breadcrumb {
    font-size: clamp(0.75rem, 0.528rem + 0.35vw, 0.875rem);
  }
}
.c-breadcrumb__list {
  display: inline-block;
}
.c-breadcrumb__link {
  color: #328531;
  transition: 0.3s;
}
.c-breadcrumb__link::after {
  content: "＞";
  display: inline;
  margin: auto 0.5em;
  color: #3c3c3c;
}
.c-breadcrumb__link:hover {
  color: #eac000;
}

/* Foundation */
/* Foundation */
.c-button {
  color: #328531;
  position: relative;
  padding: 1em 1.5em;
  border: solid 1px #328531;
  background: white;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 1rem auto 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  .c-button {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-button {
    font-size: clamp(0.875rem, 0.653rem + 0.35vw, 1rem);
    display: inline-block;
    margin-top: 2rem;
    padding: 1.5em 1.5em;
  }
}
.c-button .buttontext {
  position: relative;
  padding-right: 2em;
  z-index: 2;
}
.c-button::after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1px #328531;
  border-right: solid 1px #328531;
  position: absolute;
  right: 1em;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  z-index: 2;
}
.c-button::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  content: "";
  background: #328531;
  transition: 0.3s;
  z-index: 1;
}
.c-button:hover {
  color: white;
}
.c-button:hover::after {
  border-top: solid 1px white;
  border-right: solid 1px white;
}
.c-button:hover::before {
  width: 100%;
}
.c-button__pcnews {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-button__pcnews {
    display: inline-block;
    margin-top: 0;
  }
}
.c-button__spnews {
  margin: 3rem auto 0;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1024px) {
  .c-button__spnews {
    display: none;
  }
}
.c-button__fees {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.c-button__fees--icon {
  width: clamp(1.5rem, -1.409rem + 4.55vw, 2rem);
  margin-right: 0.8em;
  position: relative;
  z-index: 2;
}
.c-button__fees--icon img {
  width: 100%;
  transition: filter 0.3s ease;
}
.c-button__fees:hover img {
  filter: grayscale(100%) brightness(0) invert(1);
}
.c-button__footer {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .c-button__footer {
    width: auto;
    margin-top: 0;
  }
}
@media screen and (min-width: 1024px) {
  .c-button__footer {
    width: 100%;
    margin-top: 2rem;
  }
}
.c-button__footer--icon {
  width: clamp(1.5rem, -1.409rem + 4.55vw, 2rem);
  margin-right: 0.8em;
  position: relative;
  z-index: 2;
}
.c-button__footer--icon img {
  width: 100%;
  transition: filter 0.3s ease;
}
.c-button__footer:hover img {
  filter: grayscale(100%) brightness(0) invert(1);
}
.c-button__line {
  background: #06c755;
  border-radius: 0.5em;
  color: white;
  padding: 1.5em;
  font-weight: 500;
  margin: auto;
  display: inline-block;
  margin-top: 1rem;
  transition: 0.3s;
}
.c-button__line:hover {
  opacity: 0.5;
}

/* Foundation */
.c-br-md-n {
  display: inline;
}
@media screen and (min-width: 768px) {
  .c-br-md-n {
    display: none;
  }
}

.c-br-md {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-br-md {
    display: inline;
  }
}

.c-br-md-lg {
  display: none;
}
@media screen and (min-width: 768px) {
  .c-br-md-lg {
    display: inline;
  }
}
@media screen and (min-width: 1024px) {
  .c-br-md-lg {
    display: none;
  }
}

.c-br-lg-n {
  display: inline;
}
@media screen and (min-width: 1024px) {
  .c-br-lg-n {
    display: none;
  }
}

.c-br-lg {
  display: none;
}
@media screen and (min-width: 1024px) {
  .c-br-lg {
    display: inline;
  }
}

.c-br-xl-n {
  display: inline;
}
@media screen and (min-width: 1280px) {
  .c-br-xl-n {
    display: none;
  }
}

.c-br-mq_xl {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-br-mq_xl {
    display: inline;
  }
}
@media screen and (min-width: 1600px) {
  .c-br-mq_xl {
    display: none;
  }
}

.c-br-xl {
  display: none;
}
@media screen and (min-width: 1280px) {
  .c-br-xl {
    display: inline;
  }
}

.c-br-xxl-n {
  display: inline;
}
@media screen and (min-width: 1600px) {
  .c-br-xxl-n {
    display: none;
  }
}

br.spview {
  display: inline;
}
@media screen and (min-width: 768px) {
  br.spview {
    display: none;
  }
}
br.tabview {
  display: inline;
}
@media screen and (min-width: 1024px) {
  br.tabview {
    display: none;
  }
}
br.tabview_n {
  display: none;
}
@media screen and (min-width: 1024px) {
  br.tabview_n {
    display: inline;
  }
}
br.pcview {
  display: none;
}
@media screen and (min-width: 768px) {
  br.pcview {
    display: inline;
  }
}

/* Foundation */
/* Foundation */
.headline {
  display: inline-block;
  position: relative;
}

.text {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  display: inline-flex;
  color: #fff;
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .text {
    font-size: 4rem;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
}
@media screen and (min-width: 1024px) {
  .text {
    font-size: clamp(2.5rem, -0.167rem + 4.17vw, 4rem);
  }
}
@media screen and (min-width: 1600px) {
  .text {
    font-size: 4.5rem;
  }
}
.text__line {
  position: relative;
  display: inline-flex;
  padding-left: 2rem;
}
.text__line::after {
  content: "";
  width: 0;
  height: 3px;
  background: #fff;
  position: absolute;
  left: 0;
  bottom: -8px;
  transition: width 0.8s ease;
}
.text__line--02 {
  margin-top: 1rem;
}
@media screen and (min-width: 1024px) {
  .text__line--02 {
    margin-top: 0;
    padding-left: 0;
  }
}

.headline.is-active .text__line::after {
  width: 100%;
}

.headline.is-active .text__line--02::after {
  transition-delay: 0.75s;
}

.text.is-active {
  --opacity: 1;
}

.char {
  display: inline-block;
  opacity: var(--opacity, 0);
  transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  transition-delay: calc(0.05s * var(--char-index));
  margin-right: 0.1em;
}

.visuallyHidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.js-fadeup {
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}
.js-fadeup.is-active {
  opacity: 1;
  transform: translateY(0);
}

.js-fadeup-delay {
  transition-delay: 0.2s;
}

.inviewfadeInUp {
  opacity: 0;
  transform: translate(0, 10px);
  transition: opacity 0.8s cubic-bezier(0.77, 0, 0.175, 1), transform 0.8s cubic-bezier(0.77, 0, 0.175, 1);
}

.fadeInUp {
  opacity: 1;
  transform: translate(0, 0);
}

/* Foundation */
.c-heading__ja {
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  display: inline-block;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-heading__ja--left {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .c-heading__ja {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-heading__ja {
    font-size: clamp(2rem, 1.556rem + 0.69vw, 2.25rem);
  }
}
.c-heading__en {
  color: #328531;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  display: inline-block;
  text-align: center;
  width: 100%;
  transition-delay: 0.15s;
}
@media screen and (min-width: 1024px) {
  .c-heading__en--left {
    text-align: left;
  }
}
@media screen and (min-width: 768px) {
  .c-heading__en {
    margin-bottom: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-heading__en {
    font-size: clamp(0.875rem, 0.653rem + 0.35vw, 1rem);
    margin-bottom: 3rem;
  }
}

.c-page-header {
  margin-top: 65px;
  width: 100%;
  position: relative;
  line-height: 0;
}
.c-page-header img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .c-page-header {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .c-page-header {
    margin-top: 100px;
  }
}
.c-page-header__title {
  position: absolute;
  line-height: 1;
  width: 100%;
  text-align: center;
  color: white;
  font-weight: 600;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 768px) {
  .c-page-header__title {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
}
.c-page-header__title--ja {
  font-size: 1.5rem;
}
@media screen and (min-width: 768px) {
  .c-page-header__title--ja {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .c-page-header__title--ja {
    font-size: clamp(2rem, 1.556rem + 0.69vw, 2.25rem);
  }
}
.c-page-header__title__en {
  font-size: 0.75rem;
}
@media screen and (min-width: 1024px) {
  .c-page-header__title__en {
    font-size: clamp(0.875rem, 0.653rem + 0.35vw, 1rem);
  }
}

/* Project */
/* Foundation */
.p-index__mv {
  margin-top: 65px;
  width: 100%;
  position: relative;
  line-height: 0;
}
.p-index__mv img {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-index__mv {
    margin-top: 80px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index__mv {
    margin-top: 100px;
  }
}
.p-index__mv--firstview {
  position: absolute;
  top: 2rem;
  left: 0;
  line-height: 1;
}
@media screen and (min-width: 1024px) {
  .p-index__mv--firstview {
    top: clamp(3rem, -4.111rem + 11.11vw, 7rem);
  }
}
.p-index__mv--subtitile, .p-index__mv--copy {
  padding-left: 2rem;
  color: white;
  font-weight: 600;
  text-shadow: 0px 0px 5px rgba(0, 0, 0, 0.3);
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .p-index__mv--subtitile, .p-index__mv--copy {
    text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.3);
  }
}
.p-index__mv--subtitile {
  font-size: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-index__mv--subtitile {
    font-size: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__mv--subtitile {
    font-size: clamp(1.25rem, -0.528rem + 2.78vw, 2.25rem);
  }
}
.p-index__mv--copy {
  font-size: 1rem;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  .p-index__mv--copy {
    font-size: 20px;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__mv--copy {
    font-size: clamp(0.875rem, -0.236rem + 1.74vw, 1.5rem);
  }
}
.p-index__inner--whitebox {
  background: white;
  box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
  padding: clamp(2rem, 0.452rem + 6.35vw, 3.5rem) clamp(1.5rem, -0.048rem + 6.35vw, 3rem);
}
@media screen and (min-width: 1024px) {
  .p-index__inner--whitebox {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
    padding: clamp(3rem, 1.222rem + 2.78vw, 4rem);
  }
}
.p-index__lead--text {
  font-size: clamp(1rem, 0.273rem + 1.14vw, 1.125rem);
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-index__lead--text {
    font-size: clamp(0.875rem, -0.236rem + 1.74vw, 1.5rem);
    margin-bottom: clamp(3rem, -0.556rem + 5.56vw, 5rem);
  }
}
.p-index__features {
  /*margin: 0 calc((100% - 85%) / 2);*/
  position: relative;
  /*background-position: bottom right;
  background-repeat: no-repeat;
  background-size: 75%;
  background-image: url(../img/feature_img.webp);
  */
}
@media screen and (min-width: 1600px) {
  .p-index__features {
    margin: 0 0 0 calc((100% - 1200px) / 2);
  }
}
.p-index__features--block {
  width: 100%;
  position: relative;
  z-index: 2;
  margin-bottom: clamp(1.75rem, 0.058rem + 6.94vw, 7rem);
}
@media screen and (min-width: 768px) {
  .p-index__features--block {
    width: 85%;
    margin-bottom: clamp(3rem, -0.692rem + 7.69vw, 7rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-index__features--block {
    width: 60%;
  }
}
@media screen and (min-width: 1280px) {
  .p-index__features--block {
    width: 50%;
  }
}
@media screen and (min-width: 1600px) {
  .p-index__features--block {
    width: 600px;
  }
}
.p-index__features--img {
  width: 88.2352941176%;
  position: absolute;
  bottom: calc(clamp(4rem, -0.615rem + 9.62vw, 9rem) * -1);
  right: calc((100% - 100vw) / 2);
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .p-index__features--img {
    bottom: calc(clamp(4rem, -0.615rem + 9.62vw, 9rem) * -1);
  }
}
@media screen and (min-width: 1600px) {
  .p-index__features--img {
    right: calc((1200px - 100vw) / 2);
  }
}
.p-index__features--img img {
  width: 100%;
}
.p-index__features--list {
  line-height: 1.6;
}
.p-index__features--item {
  margin-bottom: 0.3em;
  margin-left: 1em;
  text-indent: -1em;
}
@media screen and (min-width: 1024px) {
  .p-index__features--item {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-index__features--item::before {
  content: "⚫︎";
  margin-right: 0.125em;
  color: #328531;
  font-size: 0.875em;
}
@media screen and (min-width: 1024px) {
  .p-index__practice_areas {
    width: 65%;
    max-width: 900px;
  }
}
@media screen and (min-width: 1280px) {
  .p-index__practice_areas {
    width: 70%;
  }
}
.p-index__practice_areas--list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 768px) {
  .p-index__practice_areas--list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__practice_areas--list {
    gap: 3rem;
  }
}
.p-index__practice_areas--item {
  font-weight: 500;
  line-height: 1.4;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  outline: solid 1px white;
  outline-offset: -12px;
}
.p-index__practice_areas--item.inheritance {
  background-image: url(../img/practiceareas_06inheritance.png);
}
.p-index__practice_areas--item.subsidy {
  background-image: url(../img/practiceareas_05subsidy.png);
}
.p-index__practice_areas--item.succession {
  background-image: url(../img/practiceareas_04succession.png);
}
.p-index__practice_areas--item.medicalcorporation {
  background-image: url(../img/practiceareas_03medicalcorporation.png);
}
.p-index__practice_areas--item.facilitystandards {
  background-image: url(../img/practiceareas_02facilitystandards.png);
}
.p-index__practice_areas--item.establish {
  background-image: url(../img/practiceareas_01establish.png);
}
.p-index__greeting {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .p-index__greeting {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
  }
}
.p-index__greeting--photo {
  width: 70%;
  margin: auto;
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--photo {
    position: absolute;
    top: clamp(3rem, 1.222rem + 2.78vw, 4rem);
    right: clamp(3rem, 1.222rem + 2.78vw, 4rem);
  }
}
.p-index__greeting--photo img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-index__greeting--photo {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--photo {
    width: 33%;
  }
}
.p-index__greeting--office {
  font-weight: 500;
  margin-top: 1rem;
  text-align: center;
  width: 100%;
  display: inline-block;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--office {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    text-align: right;
  }
}
.p-index__greeting--name {
  font-size: 1.25em;
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--name {
    font-size: clamp(1.125rem, 0.903rem + 0.35vw, 1.25rem);
  }
}
.p-index__greeting--text {
  margin-top: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--text {
    margin-top: 0;
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--left {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__greeting--wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: column-reverse;
  }
}
.p-index__text {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-index__text {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-bottom: clamp(1.5rem, 0.222rem + 2.78vw, 2.5rem);
  }
}
.p-index__text--center {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-index__text--mdcenter {
    text-align: center;
  }
}
.p-index__fees--consultation {
  font-size: 1.125rem;
  font-weight: 500;
  color: #328531;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-index__fees--consultation {
    font-size: clamp(1.125rem, 0.903rem + 0.35vw, 1.25rem);
    margin-top: clamp(1.5rem, 0.222rem + 2.78vw, 2.5rem);
  }
}
.p-index__fees--table {
  width: 100%;
  border: 1px solid #9d9d9d;
  text-align: left;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-index__fees--table {
    width: 80%;
  }
}
.p-index__fees--table th,
.p-index__fees--table td {
  font-size: 0.875rem;
  border-bottom: 1px solid #9d9d9d;
  font-weight: 400;
  padding: 1em 0.7em;
  vertical-align: middle;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .p-index__fees--table th,
  .p-index__fees--table td {
    font-size: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__fees--table th,
  .p-index__fees--table td {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    padding: 1.5em;
  }
}
.p-index__fees--table th {
  background: #eaf3ea;
  border-right: 1px solid #9d9d9d;
}
.p-index__fees--table th:nth-child(2) {
  width: 40%;
}
@media screen and (min-width: 768px) {
  .p-index__fees--table th:nth-child(2) {
    width: auto;
  }
}
.p-index__fees--table td {
  text-align: right;
  width: 38%;
}
@media screen and (min-width: 768px) {
  .p-index__fees--table td {
    width: auto;
  }
}
.p-index__fees--note {
  width: 100%;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .p-index__fees--note {
    width: 80%;
    margin: auto;
    font-size: 1rem;
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__fees--note {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-top: 1.5rem;
  }
}
.p-index__fees--noteitem {
  margin-left: 1em;
  text-indent: -1em;
}
.p-index__contact--wrap {
  width: 100%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-index__contact--wrap {
    width: calc(70% + 2 * clamp(3rem, 1.222rem + 2.78vw, 4rem));
  }
}
.p-index__contact--title {
  display: inline-block;
  border-bottom: 2px solid #328531;
  width: 100%;
  font-size: 1.125rem;
  font-weight: 500;
  padding-bottom: 0.4em;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-index__contact--title {
    font-size: clamp(1.125rem, 0.903rem + 0.35vw, 1.25rem);
    margin-bottom: 1.5rem;
  }
}
.p-index__contact--title::before {
  content: "●";
  font-size: 0.8em;
  margin-right: 0.2em;
  color: #328531;
}
.p-index__contact--text {
  line-height: 1.6;
}
.p-index__contact--line {
  margin-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-index__contact--line {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__contact--line {
    margin-bottom: clamp(4rem, 2.222rem + 2.78vw, 5rem);
  }
}
.p-index__contact--line-text {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .p-index__contact--line-text {
    display: block;
    margin-right: 2rem;
  }
}
.p-index__contact--line-qr {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-index__contact--line-qr {
    display: block;
  }
}
.p-index__form--title {
  font-weight: 500;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
@media screen and (min-width: 1024px) {
  .p-index__form--title {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-bottom: 0.8rem;
  }
}
.p-index__form--title .required {
  color: white;
  background: #d33737;
  font-size: 0.75em;
  padding: 0.05em 0.5em;
  margin-left: 1rem;
}
.p-index__form--sub {
  font-size: 0.875em;
  color: #636363;
}
@media screen and (min-width: 1024px) {
  .p-index__form--sub {
    margin-left: 1rem;
  }
}
.p-index__form--dd {
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-index__form--dd {
    margin-bottom: 3rem;
  }
}
.p-index__form--text {
  width: 100%;
  padding: 0.75em;
  border-radius: 0.5rem;
  border: 1px solid #9d9d9d;
  font-size: 1rem;
  line-height: 1.5;
}
.p-index__form--text::-moz-placeholder {
  color: #9d9d9d;
}
.p-index__form--text::placeholder {
  color: #9d9d9d;
}
@media screen and (min-width: 1024px) {
  .p-index__form--text {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    padding: 1rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__form--text-short {
    width: 33%;
  }
}
.p-index__form--consent {
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-index__form--consent {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    text-align: center;
  }
}
.p-index__form--consent-link {
  color: #328531;
  font-weight: 500;
  text-decoration: underline;
  transition: 0.3s;
}
.p-index__form--consent-link:hover {
  color: #eac000;
}
.p-index__form--consent-box {
  margin: 1rem 0 2rem;
}
@media screen and (min-width: 1024px) {
  .p-index__form--consent-box {
    margin: 1rem 0 3rem;
  }
}
.p-index__form--submit {
  text-align: center;
}
.p-index__form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 0.4rem;
  color: #dc3232;
  font-size: 0.875rem;
  line-height: 1.5;
}
.p-index__form--button {
  width: 83%;
  background: #328531;
  color: white;
  font-size: 1.125rem;
  border: none;
  margin: auto;
  padding: 0.6em 0;
  font-family: inherit;
  transition: 0.3s;
}
.p-index__form--button:hover {
  background: #eac000;
}
@media screen and (min-width: 1024px) {
  .p-index__form--button {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .p-index__form--button {
    width: auto;
    padding: 0.6em 3em;
    font-size: clamp(1rem, 0.273rem + 1.14vw, 1.125rem);
  }
}
.p-index__form--nda {
  margin-top: 2rem;
  border-top: 1px solid #9d9d9d;
  padding-top: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-index__form--nda {
    margin-top: 5rem;
    padding-top: 3rem;
  }
}
.p-index__form--nda-title {
  color: #328531;
  font-weight: 500;
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-index__form--nda-title {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-index__form--rechaptcha {
  margin-bottom: 0;
}
.p-index__news {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.p-index__news--left {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-index__news--left {
    width: 30%;
  }
}
.p-index__news--right {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .p-index__news--right {
    width: 70%;
  }
}

.wpcf7-list-item label:has(.doui-input:not(:checked)) .wpcf7-list-item-label,
.doui-input:not(:checked) ~ .wpcf7-list-item-label {
  color: #9d9d9d !important;
}

.wpcf7-list-item label:has(.doui-input:checked) .wpcf7-list-item-label,
.doui-input:checked ~ .wpcf7-list-item-label {
  color: #3c3c3c !important;
}

.wpcf7-list-item label:has(.doui-input:not(:checked)) .wpcf7-list-item-label *,
.doui-input:not(:checked) ~ .wpcf7-list-item-label * {
  color: #9d9d9d !important;
}

.wpcf7-list-item label:has(.doui-input:checked) .wpcf7-list-item-label *,
.doui-input:checked ~ .wpcf7-list-item-label * {
  color: #3c3c3c !important;
}

/* Foundation */
.p-privacypolicy {
  line-height: 1.8;
  max-width: 1020px;
}
.p-privacypolicy__title {
  font-size: 1.125rem;
  font-weight: 500;
  color: #328531;
}
@media screen and (min-width: 1024px) {
  .p-privacypolicy__title {
    font-size: clamp(1.125rem, 0.903rem + 0.35vw, 1.25rem);
  }
}
.p-privacypolicy__text {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-privacypolicy__text {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-bottom: clamp(1.5rem, 0.222rem + 2.78vw, 2.5rem);
  }
}
.p-privacypolicy__text--mbno {
  margin-bottom: 0;
}
@media screen and (min-width: 1024px) {
  .p-privacypolicy__ul {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-privacypolicy__ul--mb {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 1024px) {
  .p-privacypolicy__ul--mb {
    margin-bottom: clamp(1.5rem, 0.222rem + 2.78vw, 2.5rem);
  }
}
.p-privacypolicy__list {
  margin-left: 1em;
  text-indent: -1em;
}
.p-privacypolicy__list::before {
  content: "・";
  display: inline;
}
.p-privacypolicy__link {
  text-decoration: underline;
  color: #3c3c3c;
}
.p-privacypolicy__link:hover {
  color: #328531;
}

/* Foundation */
.p-news {
  width: 100%;
  line-height: 1.8;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .p-news {
    align-items: stretch;
    width: 85%;
    max-width: 1200px;
    margin: auto;
  }
}
.p-news__left {
  width: 85%;
  margin: auto;
  padding-bottom: 4rem;
}
@media screen and (min-width: 768px) {
  .p-news__left {
    padding-bottom: 5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-news__left {
    width: 70%;
    margin: 0;
    padding-bottom: 0;
    position: relative;
  }
}
.p-news__left--title {
  font-size: 1rem;
  margin-bottom: 0.3em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-news__left--title {
    margin-bottom: 0.5em;
    font-size: clamp(1rem, 0.273rem + 1.14vw, 1.125rem);
  }
}
.p-news__right {
  width: 100%;
  background: #e2e2e2;
  padding: 1.5rem 0;
}
@media screen and (min-width: 768px) {
  .p-news__right {
    padding: 2.5rem 0;
  }
}
@media screen and (min-width: 1024px) {
  .p-news__right {
    width: 25%;
    padding: 0;
    background: none;
  }
}
.p-news__list {
  border-top: solid 1px #9d9d9d;
}
.p-news__list--sidebar {
  border-color: #328531;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .p-news__list--sidebar {
    margin-bottom: clamp(2rem, -1.556rem + 5.56vw, 4rem);
  }
}
.p-news__list--sidebar {
  /*&:last-of-type {
      margin-bottom: 0;
  }*/
}
.p-news__item {
  border-bottom: solid 1px #9d9d9d;
}
.p-news__item--archivechild {
  border-bottom: none;
}
.p-news__item--archivechild:first-of-type {
  border-top: solid 1px #9d9d9d;
}
.p-news__link {
  padding: 1rem 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  transition: 0.3s;
}
@media screen and (min-width: 1024px) {
  .p-news__link {
    padding: 1.5rem 0;
  }
}
@media screen and (min-width: 1280px) {
  .p-news__link {
    padding: 2rem 0;
  }
}
.p-news__link:hover {
  opacity: 0.5;
}
.p-news__link--sidebar {
  padding: 0.75rem 0;
}
@media screen and (min-width: 1024px) {
  .p-news__link--sidebar {
    padding: clamp(0.75rem, 0.306rem + 0.69vw, 1rem) 0;
  }
}
.p-news__link--archive {
  padding: 0;
}
.p-news__link .newstitle {
  width: 100%;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media screen and (min-width: 1024px) {
  .p-news__link .newstitle {
    margin-top: 0;
    width: auto;
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-news__link .newstitle-sidebar {
  margin-top: 0.3em;
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-news__link .newstitle-sidebar {
    margin-top: 0;
    display: block;
    width: 100%;
    font-size: clamp(0.766rem, 0.571rem + 0.3vw, 0.875rem);
  }
}
.p-news__info {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.p-news__info .date {
  margin-right: 1rem;
}
@media screen and (min-width: 1024px) {
  .p-news__info .date {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-news__info .date-sidebar {
  font-size: 0.875rem;
}
@media screen and (min-width: 1024px) {
  .p-news__info .date-sidebar {
    font-size: clamp(0.766rem, 0.571rem + 0.3vw, 0.875rem);
  }
}
.p-news__info .category {
  color: white;
  background: #328531;
  font-size: 0.8125em;
  padding: 0.15em 1em;
  margin-right: 1rem;
}
.p-news__info .category-sidebar {
  font-size: 0.625em;
  padding: 0.1em 0.5em;
  margin-right: 0.5em;
}
@media screen and (min-width: 1024px) {
  .p-news__info .category-sidebar {
    font-size: clamp(0.563rem, -0.165rem + 1.14vw, 0.688rem);
  }
}
.p-news__sidebar {
  width: 85%;
  background: white;
  margin: auto;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-news__sidebar {
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  .p-news__sidebar--left, .p-news__sidebar--right {
    width: 45%;
  }
}
@media screen and (min-width: 1024px) {
  .p-news__sidebar {
    display: block;
    width: 100%;
    padding: 0;
  }
  .p-news__sidebar--left, .p-news__sidebar--right {
    width: 100%;
  }
}
.p-news__sidebar--title {
  font-size: 1rem;
  margin-bottom: 0.3em;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .p-news__sidebar--title {
    margin-bottom: 0.5em;
    font-size: clamp(1rem, 0.273rem + 1.14vw, 1.125rem);
  }
}
.p-news__single {
  border-bottom: 1px solid #9d9d9d;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}
.p-news__single--title {
  font-size: 1.25rem;
}
@media screen and (min-width: 1024px) {
  .p-news__single--title {
    margin-top: 0.2em;
    font-size: clamp(1.25rem, 0.806rem + 0.69vw, 1.5rem);
  }
}
@media screen and (min-width: 1024px) {
  .p-news__single--contents {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}

.toggle {
  display: none;
}

.option {
  position: relative;
}

.title,
.content {
  width: 100%;
  display: block;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  padding: 0.75rem 0;
  border-bottom: 1px solid #9d9d9d;
}
.title:last-of-type {
  border-bottom: none;
}
@media screen and (min-width: 1024px) {
  .title {
    padding: clamp(0.75rem, 0.306rem + 0.69vw, 1rem) 0;
    width: 100% !important;
    display: block;
  }
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 1.25em;
  top: calc(50% - 0.375em);
  width: 2px;
  height: 0.75em;
  background-color: #999;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.content p {
  margin: 0;
  padding: 0.5em 1em 1em;
  font-size: 0.9em;
  line-height: 1.5;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

.nav-links {
  padding-top: 1rem;
  text-align: center;
  font-weight: 500;
}
@media screen and (min-width: 1024px) {
  .nav-links {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.nav-links .current {
  color: #328531;
}
.nav-links .page-numbers {
  margin-right: 1em;
  color: #636363;
  transition: 0.3;
}
.nav-links .page-numbers:hover {
  color: #328531;
}

.p-post-nav {
  width: 100%;
  padding: 1rem 0 0;
  margin-top: 1.5rem;
  border-top: 1px solid #9d9d9d;
}
@media screen and (min-width: 768px) {
  .p-post-nav {
    padding: 1.5rem 10% 0;
    margin-top: 2rem;
  }
}
.p-post-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (min-width: 1024px) {
  .p-post-nav {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-top: clamp(2rem, 0.222rem + 2.78vw, 3rem);
    padding: 2rem 20% 0;
    /*position: absolute;
    bottom: 0;
    left: 0;*/
  }
}
.p-post-nav__prev, .p-post-nav__archive, .p-post-nav__next {
  color: #636363;
}
.p-post-nav__prev:hover, .p-post-nav__archive:hover, .p-post-nav__next:hover {
  color: #328531;
}

/* Foundation */
.p-contact_completion {
  max-width: 720px;
}
.p-contact_completion__text {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}
@media screen and (min-width: 1024px) {
  .p-contact_completion__text {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
    margin-bottom: clamp(1.5rem, 0.222rem + 2.78vw, 2.5rem);
  }
}
.p-contact_completion__text--mbno {
  margin-bottom: 0;
}
.p-contact_completion__note {
  padding: 1.5rem;
  background: #eaf3ea;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .p-contact_completion__note {
    padding: 2.5rem;
  }
}
@media screen and (min-width: 1024px) {
  .p-contact_completion__note {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-contact_completion__note--title {
  color: #328531;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
@media screen and (min-width: 1024px) {
  .p-contact_completion__note--title {
    font-size: clamp(0.875rem, 0.148rem + 1.14vw, 1rem);
  }
}
.p-contact_completion__list {
  margin-left: 1em;
  text-indent: -1em;
}
.p-contact_completion__list::before {
  content: "・";
  display: inline;
}/*# sourceMappingURL=common.css.map */