@charset "UTF-8";
/*--------------------------------------*
 * foundation
 *--------------------------------------*/
/* 
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;
}

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

html {
  font-size: 62.5%;
  line-height: 1.6;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  color: #333;
  font-family: "Noto Sans JP", "Hiragino Maru Gothic W4 JIS2004", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  font-size: 16px;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: bottom;
}

a {
  color: #2a8732;
}

ul {
  list-style: none;
}

mark {
  font-style: normal;
}

iframe[src*="google.com/maps/"] {
  width: 100%;
}

.anim-box {
  opacity: 0;
}

.anim-box.slideinU.is-animated.delay-time02 {
  animation-delay: 0.2s;
}

.anim-box.slideinU.is-animated.delay-time04 {
  animation-delay: 0.4s;
}

.anim-box.slideinU.is-animated {
  animation: slideInU 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

@keyframes slideInU {
  0% {
    transform: translateY(180px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.slideinUs.is-animated {
  animation: slideInUs 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

@keyframes slideInUs {
  0% {
    transform: translateY(40px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.slideinL.is-animated {
  opacity: 0;
  animation: slideInL 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

@keyframes slideInL {
  0% {
    transform: translateX(180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.slideinR.is-animated {
  opacity: 0;
  animation: slideInR 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

@keyframes slideInR {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
.anim-box.fadeIn.is-animated {
  animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.anim-box.stepRoot {
  opacity: 1;
}
.anim-box.stepRoot .leg, .anim-box.stepRoot .root {
  opacity: 0;
}

.anim-box.stepRoot.is-animated {
  opacity: 1;
}
.anim-box.stepRoot.is-animated .leg {
  animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
}
.anim-box.stepRoot.is-animated .root {
  animation: fadeIn 1s cubic-bezier(0.25, 1, 0.5, 1) 0s forwards;
  animation-delay: 0.3s;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*--------------------------------------*
* layout
*--------------------------------------*/
.l-wrapper {
  padding-top: 70px;
}
@media (min-width: 992px) {
  .l-wrapper {
    padding-top: 120px;
  }
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 10;
}
@media (max-width: 991px) {
  .l-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    background: #fff;
    z-index: 10;
  }
}
.l-header a {
  text-decoration: none;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 991px) {
  .l-header__inner {
    align-items: center;
    height: 100%;
  }
}
.l-header__logo-wrap {
  max-width: calc(100% - 90px);
  padding-left: 10px;
}
@media (min-width: 992px) {
  .l-header__logo-wrap {
    padding-top: 14px;
    padding-left: 22px;
    max-width: 30%;
    height: 120px;
  }
}
@media (max-width: 991px) {
  .l-header__logo-wrap img {
    width: 60%;
  }
}
@media (max-width: 499px) {
  .l-header__logo-wrap img {
    width: 75%;
  }
}
.l-header__right-wrap {
  display: flex;
}
@media (max-width: 991px) {
  .l-header__right-wrap {
    display: none;
  }
}
.l-header__middle-col {
  color: #606060;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
.l-header__address-contact {
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  height: 100%;
}
@media (min-width: 1330px) {
  .l-header__address-contact {
    flex-direction: row;
  }
}
.l-header__address {
  font-size: 10px;
  padding-bottom: 4px;
  padding-right: 7px;
}
@media (min-width: 1330px) {
  .l-header__address {
    padding-bottom: 0;
    padding-right: 0;
  }
}
.l-header__address span:before {
  content: "";
  display: inline-block;
  padding-right: 18px;
  background: url(../img/icon_map.svg) no-repeat center;
  width: 13.05px;
  height: 15.752px;
  vertical-align: middle;
}
.l-header__address a {
  color: #606060;
  text-decoration: none;
}
.l-header__address a:hover {
  text-decoration: underline;
}
.l-header__contact {
  display: flex;
  align-items: center;
  gap: 8px;
}
.l-header__contact-tel {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
  vertical-align: middle;
}
@media (min-width: 1330px) {
  .l-header__contact-tel span {
    margin-left: 1em;
  }
}
.l-header__contact-tel span:before {
  content: "";
  padding-right: 18px;
  display: inline-block;
  background: url(../img/icon_phone.svg) no-repeat center;
  width: 12.591px;
  height: 16.421px;
  vertical-align: middle;
}
.l-header__contact-hours {
  font-size: 10px;
}
.l-header__nav {
  margin-right: 30px;
}
.l-header__nav-container > .menu {
  display: flex;
}
.l-header__nav-container > .menu > .menu-item > a {
  height: 60px;
  padding: 0 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #333;
  font-weight: bold;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1199px) {
  .l-header__nav-container > .menu > .menu-item > a {
    font-size: 1.4vw;
  }
}
.l-header__nav-container > .menu > .menu-item > a:hover {
  opacity: 0.6;
}
.l-header__nav-container > .menu > .menu-item.has-sub-menu > a {
  padding-right: 15px;
  background: url(../img/icon_arrow_down.svg) no-repeat right center;
}
.l-header__nav-container > .menu > .menu-item.has-sub-menu.js-is-active > a {
  background: url(../img/icon_arrow_up.svg) no-repeat right center;
}
.l-header__nav-container > .menu > .menu-item.js-is-active > .sub-menu {
  top: 100%;
  height: auto;
  opacity: 1;
  max-height: 70vh;
  overflow-y: scroll;
}
.l-header__nav-container > .menu > .menu-item.js-is-active > .sub-menu .c-container {
  transform: translateY(0px);
}
.l-header__nav-container > .menu > .menu-item > .sub-menu {
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 35%, rgba(233, 233, 233, 0.95) 35%);
  border-top: 1px solid #2a8b32;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  z-index: 1;
}
@media (min-width: 1650px) {
  .l-header__nav-container > .menu > .menu-item > .sub-menu {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 38%, rgba(233, 233, 233, 0.95) 38%);
  }
}
@media (min-width: 2100px) {
  .l-header__nav-container > .menu > .menu-item > .sub-menu {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.95) 40%, rgba(233, 233, 233, 0.95) 40%);
  }
}
.l-header__nav-container > .menu > .menu-item > .sub-menu .c-container {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  transform: translateY(-10px);
}
.l-header__links {
  display: flex;
}
.l-header__links a {
  width: 50%;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #515b52;
  font-weight: bold;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.l-header__links a:hover {
  opacity: 0.6;
}
.l-header__links a:first-child {
  font-size: 13px;
  position: relative;
}
.l-header__links a:first-child:after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -15px;
  display: block;
  width: 2px;
  height: 31px;
  background: #c5c5c5;
}
.l-header__links a:last-child {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  font-weight: bold;
}
.l-header__links a:last-child span {
  vertical-align: middle;
}
.l-header__links a:last-child span:before {
  content: "";
  margin-right: 5px;
  padding-right: 18px;
  display: inline-block;
  background: url(../img/icon_separate_window.svg) no-repeat center;
  width: 15px;
  height: 15px;
  vertical-align: middle;
}
.l-header__cta {
  line-height: 1;
}
.l-header__cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 277px;
  height: 60px;
  display: flex;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  background: #2db30f;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (min-width: 1330px) {
  .l-header__cta a {
    font-size: 27px;
  }
}
.l-header__cta a:hover {
  background: #2ec609;
}
.l-header__cta a span:last-child {
  vertical-align: middle;
}
.l-header__cta a span:last-child:after {
  content: "";
  padding-left: 40px;
  display: inline-block;
  background: url(../img/icon_arrow-right.svg) no-repeat center;
  width: 21.83px;
  height: 1em;
  vertical-align: middle;
}
@media screen and (max-width: 1330px) {
  .l-header__cta a span:last-child:after {
    background-size: contain;
  }
}

.l-footer {
  margin-top: 90px;
}
body[class*=homepage] .l-footer {
  margin-top: 0;
}
.l-footer__sns {
  padding: 20px 0;
  background: #e9e9e9;
}
.l-footer__sns-items {
  gap: 20px;
}
@media (min-width: 500px) {
  .l-footer__sns-items {
    display: flex;
    justify-content: center;
  }
}
.l-footer__sns-item {
  margin-bottom: 16px;
}
@media (min-width: 500px) {
  .l-footer__sns-item {
    width: calc(33.3333333333% - 6.6666666667px);
    margin-bottom: 0;
  }
}
.l-footer__address {
  padding: 40px 0 30px;
}
.l-footer__address-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
@media (max-width: 499px) {
  .l-footer__address-wrap {
    width: 100%;
  }
}
.l-footer__address-list {
  margin-top: 20px;
}
.l-footer__address-list dt {
  font-size: 15px;
}
.l-footer__address-list dt a {
  text-decoration: none;
  color: #333;
}
.l-footer__address-list dt a:hover {
  text-decoration: underline;
}
.l-footer__address-list dd {
  font-size: 12px;
}
.l-footer__address-list dd.icon-map {
  line-height: 1.5;
  padding-top: 4px;
  position: relative;
}
.l-footer__address-list dd.icon-map a {
  color: #333;
  text-decoration: none;
}
.l-footer__address-list dd.icon-map a:hover {
  text-decoration: underline;
}
@media (max-width: 499px) {
  .l-footer__address-list dd.sp-center {
    text-align: center;
  }
}
.l-footer__address-list a.tel-btn {
  text-decoration: none;
  color: #333;
  pointer-events: none;
}
@media (max-width: 499px) {
  .l-footer__address-list a.tel-btn {
    pointer-events: auto;
    font-family: "Open Sans", sans-serif;
    font-weight: bold;
    font-size: 20px;
    background: transparent;
    border: 1px solid #b7b7b7;
    display: flex;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    text-decoration: none;
    padding: 14px 22px;
    margin-top: 20px;
  }
  .l-footer__address-list a.tel-btn:before {
    content: "";
    display: inline-block;
    height: 30px;
    line-height: 30px;
    padding-left: 38px;
    font-size: 32px;
    font-weight: bold;
    background: url(../img/icon_cta-phone.svg) left center no-repeat;
  }
}
@media (max-width: 499px) {
  .l-footer__address-list a.tel-btn span {
    display: none;
  }
}
.l-footer__address-list .wp-block-buttons .wp-block-button.tel-btn a.wp-block-button__link {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  background: transparent;
  border: 1px solid #b7b7b7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.l-footer__address-list .wp-block-buttons .wp-block-button.tel-btn a.wp-block-button__link:before {
  content: "";
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-left: 38px;
  font-size: 32px;
  font-weight: bold;
  background: url(../img/icon_cta-phone.svg) left center no-repeat;
}
.l-footer__qr {
  text-align: center;
}
@media (max-width: 499px) {
  .l-footer__qr {
    display: none;
  }
}
.l-footer__qr div:last-child {
  margin-top: 10px;
}
.l-footer__nav {
  padding: 25px 0 45px;
  background: #e9e9e9;
}
@media (max-width: 991px) {
  .l-footer__nav {
    display: none;
  }
}
.l-footer__nav a {
  color: #4c4c4c;
  text-decoration: none;
}
.l-footer__nav-inner {
  display: flex;
  justify-content: space-between;
}
.l-footer__nav-inner .menu > .menu-item {
  margin-top: 20px;
}
.l-footer__nav-inner .menu > .menu-item a:hover {
  text-decoration: underline;
}
.l-footer__nav-inner .menu > .menu-item > a {
  font-size: 16px;
  font-weight: bold;
}
.l-footer__nav-inner .menu > .menu-item > .sub-menu {
  margin-top: 18px;
  padding-left: 10px;
  border-left: 1px solid #2a8b32;
}
.l-footer__nav-inner .menu > .menu-item > .sub-menu > .menu-item > a {
  font-size: 14px;
}
.l-footer__nav-inner .menu > .menu-item > .sub-menu > .menu-item {
  margin-top: 12px;
}
.l-footer__nav-inner .menu > .menu-item > .sub-menu .sub-menu {
  margin-top: 10px;
  padding-left: 14px;
  font-size: 13px;
}
.l-footer__nav-inner .menu > .menu-item > .sub-menu .sub-menu .menu-item {
  margin-top: 6px;
}
.l-footer__copyright {
  padding: 35px 0;
  background: #e9e9e9;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-size: 12px;
  font-weight: bold;
  text-align: center;
}
@media (min-width: 992px) {
  .l-footer__copyright {
    padding: 0 0 35px;
  }
}
.l-footer__copyright a {
  text-decoration: none;
  color: #4c4c4c;
}
.l-footer__copyright a:hover {
  text-decoration: underline;
}

.l-page-top {
  position: fixed;
  bottom: 10px;
  right: 10px;
  z-index: 14999;
}
@media (max-width: 499px) {
  .l-page-top {
    display: none;
  }
}
.l-page-top a {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background: #efefef;
}
.l-page-top a:hover {
  background: #f7f7f7;
}
.l-page-top a .totop:before {
  content: "";
  background-image: url("../img/totop.svg");
  background-repeat: no-repeat;
  width: 10px;
  height: 6px;
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -3px;
  margin-left: -5px;
}

.grecaptcha-badge {
  display: none;
}

/*--------------------------------------*
 * object
 *--------------------------------------*/
.p-header-menu {
  display: flex;
}
.p-header-menu__image {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 365px;
  margin-bottom: 10px;
  padding: 60px 0;
}
@media screen and (max-height: 800px) {
  .p-header-menu__image {
    padding: 30px 0;
  }
}
.p-header-menu__title-wrap {
  width: 330px;
  padding: 55px 35px;
}
@media screen and (max-height: 800px) {
  .p-header-menu__title-wrap {
    padding: 30px 35px;
  }
}
.p-header-menu__title-eng {
  color: #2a8b32;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
}
.p-header-menu__title {
  color: #333;
  font-size: 25px;
  font-weight: bold;
}
.p-header-menu__menu {
  padding: 55px 10px 50px 50px;
}
@media screen and (max-height: 800px) {
  .p-header-menu__menu {
    padding: 30px 10px 20px 50px;
  }
}
.p-header-menu__menu a {
  display: inline-block;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  color: #f00;
  transform: translateX(0px);
}
.p-header-menu__menu a:hover {
  transform: translateX(-10px);
}
.p-header-menu__menu > .menu > .menu-item {
  margin-bottom: 18px;
}
@media screen and (max-height: 800px) {
  .p-header-menu__menu > .menu > .menu-item {
    margin-bottom: 12px;
  }
}
.p-header-menu__menu > .menu > .menu-item > a {
  position: relative;
  padding-left: 15px;
  color: #000;
  font-size: 18px;
}
@media screen and (max-height: 800px) {
  .p-header-menu__menu > .menu > .menu-item > a {
    font-size: 16px;
  }
}
.p-header-menu__menu > .menu > .menu-item > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  display: block;
  width: 8px;
  height: 8px;
  background: #2a8b32;
  border-radius: 50%;
}
.p-header-menu__menu > .menu > .menu-item > a:hover {
  color: #367d3d;
}
.p-header-menu__menu > .menu > .menu-item > .sub-menu {
  margin-top: 5px;
  margin-left: 20px;
  margin-bottom: 10px;
}
.p-header-menu__menu > .menu > .menu-item > .sub-menu > .menu-item > a {
  position: relative;
  padding-left: 10px;
  color: #000;
  font-size: 18px;
}
@media screen and (max-height: 800px) {
  .p-header-menu__menu > .menu > .menu-item > .sub-menu > .menu-item > a {
    font-size: 15px;
  }
}
.p-header-menu__menu > .menu > .menu-item > .sub-menu > .menu-item > a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -4px;
  display: block;
  width: 6px;
  height: 6px;
  background: #2a8b32;
  border-radius: 50%;
}
.p-header-menu__menu > .menu > .menu-item > .sub-menu > .menu-item > a:hover {
  color: #367d3d;
}

@media (min-width: 992px) {
  .p-xsnav {
    display: none;
  }
}
.p-xsnav__menu-btn {
  position: relative;
  display: flex;
  height: 70px;
  width: 70px;
  justify-content: center;
  align-items: center;
  z-index: 90;
  color: #fff;
  background-color: #2a8932;
  transition: all 0.3s;
  padding-bottom: 5px;
}
.p-xsnav__menu-btn span,
.p-xsnav__menu-btn span:before,
.p-xsnav__menu-btn span:after {
  content: "";
  display: block;
  height: 2px;
  width: 32px;
  background-color: #fff;
  position: absolute;
  transition: all 0.3s;
}
.p-xsnav__menu-btn span:before {
  bottom: 10px;
}
.p-xsnav__menu-btn span:after {
  top: 10px;
}
.p-xsnav__menu-btn:after {
  content: "メニュー";
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  font-size: 12px;
  text-align: center;
}
.p-xsnav #menu-btn-check {
  display: none;
}
.p-xsnav #menu-btn-check:checked ~ .p-xsnav__menu-btn span {
  background-color: rgba(255, 255, 255, 0); /*メニューオープン時は真ん中の線を透明にする*/
}
.p-xsnav #menu-btn-check:checked ~ .p-xsnav__menu-btn span::before {
  bottom: 0;
  transform: rotate(45deg);
}
.p-xsnav #menu-btn-check:checked ~ .p-xsnav__menu-btn span::after {
  top: 0;
  transform: rotate(-45deg);
}
.p-xsnav #menu-btn-check:checked ~ .p-xsnav__menu-btn:after {
  content: "閉じる";
}
.p-xsnav #menu-btn-check:checked ~ .p-xsnav__content {
  left: 0; /*メニューを画面内へ*/
}
.p-xsnav__content {
  width: 100%;
  height: calc(100% - 70px);
  position: fixed;
  top: 70px;
  left: 100%;
  z-index: 80;
  transition: all 0.5s;
  background-color: #fff;
}
.p-xsnav__content ul.menu {
  padding: 0px 0 0 0;
}
.p-xsnav__content li {
  border-bottom: solid 1px #e7e7e7;
  list-style: none;
}
.p-xsnav__content li a {
  display: block;
  position: relative;
  width: 100%;
  padding: 17px 25px;
  font-size: 19px;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  position: relative;
}
.p-xsnav__content li a small {
  display: none;
}
.p-xsnav__content li a a {
  width: 45px;
  padding-left: 0;
  padding-right: 0;
  position: absolute;
  right: 0;
  top: 0;
  border: 0;
  text-align: center;
}
.p-xsnav__content .sub-menu {
  display: none;
  background: rgba(0, 0, 0, 0.04);
}
.p-xsnav__content .sub-menu a {
  font-size: 17px;
  font-weight: normal;
  line-height: 1.5;
}
.p-xsnav__content .sub-menu li {
  border-bottom: 0;
}
.p-xsnav__content .sub-menu .menu-item > a {
  position: relative;
  padding-left: 70px;
}
.p-xsnav__content .sub-menu .menu-item > a:before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: #2a8932;
  border-radius: 50%;
  position: absolute;
  left: 45px;
  top: 25px;
}
.p-xsnav__content .sub-menu .menu-item > .sub-menu a {
  padding-left: 88px;
}
.p-xsnav__content .sub-menu .menu-item > .sub-menu a:before {
  left: 70px;
  width: 10px;
  height: 10px;
  top: 27px;
}
.p-xsnav__content .sub-menu-more {
  height: 100%;
}
.p-xsnav__content .sub-menu-more:before, .p-xsnav__content .sub-menu-more:after {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  content: "";
  position: absolute;
  top: 50%;
  right: 25%;
  width: 24px;
  height: 2px;
  background-color: #2a8932;
}
.p-xsnav__content .sub-menu-more:after {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.p-xsnav__content .sub-menu-active > .sub-menu {
  display: block;
}
.p-xsnav__content .sub-menu-active > a > .sub-menu-more:after {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
}
.p-xsnav__inner {
  position: absolute;
  top: 0px;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  overflow-y: auto;
  border-top: 3px solid #2a8932;
}
.p-xsnav__inner .tel-btn-wrap {
  padding: 10px 26px;
}
.p-xsnav__inner .tel-btn-wrap .tel-h {
  text-align: center;
  font-size: 17px;
  font-weight: bold;
}
.p-xsnav__inner .tel-btn-wrap .tel-p {
  text-align: center;
  font-size: 14px;
}
.p-xsnav__inner .tel-btn-wrap .tel-btn {
  border: 1px solid #b7b7b7;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 4px 2px 4px;
  margin-top: 10px;
}
.p-xsnav__inner .tel-btn-wrap .tel-btn a {
  color: #333333;
}
.p-xsnav__inner .tel-btn-wrap .tel-btn a .tel-title {
  font-size: 16px;
  color: #2a8732;
  text-align: center;
}
.p-xsnav__inner .tel-btn-wrap .tel-btn a .tel-num {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  height: 26px;
  line-height: 26px;
  padding-left: 33px;
  margin-top: 0;
  font-size: 23px;
  font-weight: bold;
  background: url(../img/icon_cta-phone.svg) left center no-repeat;
  background-size: contain;
}

.p-footer-xs {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 66px;
  display: flex;
  border-top: 1px solid #fff;
  z-index: 1;
}
@media (min-width: 992px) {
  .p-footer-xs {
    display: none;
  }
}
.p-footer-xs a {
  text-decoration: none;
}
.p-footer-xs__top {
  width: 66px;
  display: flex;
  justify-content: center;
  background: #f6f6f6;
}
.p-footer-xs__top img {
  width: 22px;
}
.p-footer-xs__entry {
  flex-grow: 1;
  vertical-align: middle;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  background: #2db10f;
}
.p-footer-xs__entry:after {
  content: "";
  display: inline;
  width: 100%;
  height: 30px;
  margin-left: 10px;
  margin-right: 10px;
  vertical-align: middle;
  font-size: 34px;
  font-weight: bold;
  background: url(../img/icon_arrow-right.svg) no-repeat center;
  background: url(../img/sp_cta_text.svg) no-repeat center;
  background-size: contain;
}
.p-footer-xs__edoyu {
  display: flex;
  width: 66px;
  justify-content: center;
  background: #f6f6f6;
}
.p-footer-xs__edoyu img {
  width: 38px;
}

h2.wp-block-heading {
  margin-top: 80px;
}
.u-empty-element + h2.wp-block-heading {
  margin-top: 60px;
}
h2.wp-block-heading .wp-block-heading__inner {
  display: block;
  color: #333;
  font-size: 36px;
  font-weight: bold;
  padding: 10px 0;
  position: relative;
  border-top: solid 3px #bbdebb;
  border-bottom: solid 3px #bbdebb;
}
@media (max-width: 499px) {
  h2.wp-block-heading .wp-block-heading__inner {
    font-size: 30px;
  }
}
h2.wp-block-heading .wp-block-heading__inner:after {
  content: "";
  display: block;
  background: #2a8732;
  position: absolute;
  top: -3px;
  left: 0;
  width: 40px;
  height: 3px;
}

@media screen and (max-width: 700px) {
  h2.wp-block-heading.sp-left {
    text-align: left;
  }
  h2.wp-block-heading.sp-left br {
    display: none;
  }
}
@media screen and (max-width: 700px) {
  h2.wp-block-heading.sp-left .wp-block-heading__inner {
    font-size: 27px;
  }
}

h2.wp-block-heading.anchor-h2 {
  padding-top: 160px;
  margin-top: -80px;
}
@media (max-width: 499px) {
  h2.wp-block-heading.anchor-h2 {
    padding-top: 80px;
    margin-top: 0;
  }
}

h3.wp-block-heading {
  margin-top: 60px;
  padding-left: 12px;
  color: #485449;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  border-left: 5px solid #2a8732;
}

h4.wp-block-heading {
  margin-top: 40px;
  color: #333333;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
}

h4.wp-block-heading.color-main {
  color: #2a8732;
}

h4.wp-block-heading.color-orange {
  color: #f4ac4e;
}

.wp-block-button__link {
  margin: 30px 0;
  color: #fff;
  background-color: #df9a30;
  box-shadow: none;
  text-decoration: none;
  padding: 20px 50px;
  border-radius: 0;
  font-size: 16px;
}
.wp-block-button__link:hover {
  background: #f4ac4e;
  transition: all 0.2s;
}

.wp-block-button.btn-new-window a.wp-block-button__link {
  position: relative;
}
.wp-block-button.btn-new-window a.wp-block-button__link::after {
  content: "";
  margin-right: 5px;
  padding-right: 18px;
  display: inline-block;
  background: url(../img/icon_separate_window_white.svg) no-repeat center;
  width: 15px;
  height: 15px;
  vertical-align: middle;
  padding-left: 4px;
}

ul + .wp-block-table {
  margin-top: 20px;
}

.wp-block-table {
  margin-top: 50px;
}
.wp-block-table table thead {
  border-style: none;
}
.wp-block-table table thead th {
  border-style: none;
  background: #f7f7f7;
  padding: 20px 25px;
  text-align: left;
}
@media (min-width: 500px) {
  .wp-block-table table thead th:first-child {
    width: 40px;
  }
}
@media (max-width: 499px) {
  .wp-block-table tr {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
}
.wp-block-table td {
  padding: 20px 25px;
  border: 0;
}
@media (min-width: 500px) {
  .wp-block-table td {
    border-top: 1px solid #e5e5e5;
    border-bottom: 1px solid #e5e5e5;
  }
}
@media (max-width: 499px) {
  .wp-block-table td {
    display: block;
  }
}
.wp-block-table td:first-child {
  font-weight: bold;
  border-left: none;
}
@media (max-width: 499px) {
  .wp-block-table td:first-child {
    padding-bottom: 0;
  }
}

@media (max-width: 499px) {
  .wp-block-table.table-enkaku table {
    font-size: 15px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku thead {
    font-size: 14px;
  }
}
@media (max-width: 1199px) {
  .wp-block-table.table-enkaku thead tr th {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku thead tr th {
    padding: 4px;
  }
}
@media (max-width: 991px) {
  .wp-block-table.table-enkaku thead tr th:nth-child(2) {
    min-width: 70px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku thead tr th:nth-child(2) {
    min-width: 50px;
  }
}
@media (max-width: 991px) {
  .wp-block-table.table-enkaku thead tr th:nth-child(3) {
    min-width: 70px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku thead tr th:nth-child(3) {
    min-width: 50px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku thead tr th:nth-child(4) {
    width: 110px;
  }
}
@media (max-width: 1199px) {
  .wp-block-table.table-enkaku tbody tr td {
    padding-left: 6px;
    padding-right: 6px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-enkaku tbody tr td {
    display: table-cell;
    padding: 4px;
  }
}
.wp-block-table.table-enkaku th:nth-child(1), .wp-block-table.table-enkaku th:nth-child(2), .wp-block-table.table-enkaku th:nth-child(3), .wp-block-table.table-enkaku td:nth-child(1), .wp-block-table.table-enkaku td:nth-child(2), .wp-block-table.table-enkaku td:nth-child(3) {
  text-align: center;
}

@media (max-width: 991px) {
  .wp-block-table.table-yokonaga {
    overflow: auto;
    overflow-x: scroll;
  }
}
@media (max-width: 991px) {
  .wp-block-table.table-yokonaga table {
    width: 600px;
  }
}
.wp-block-table.table-yokonaga table tr {
  border-top: 1px solid #e5e5e5;
}
@media (max-width: 991px) {
  .wp-block-table.table-yokonaga table tr {
    border-bottom: 0;
    display: flex;
  }
}
.wp-block-table.table-yokonaga table tr td {
  border-top: 0;
  border-bottom: 0;
  text-align: center;
}
@media (max-width: 991px) {
  .wp-block-table.table-yokonaga table tr td {
    flex: 1;
  }
}
.wp-block-table.table-yokonaga table tr td:first-child {
  min-width: 120px;
}
@media (max-width: 991px) {
  .wp-block-table.table-yokonaga table tr td:first-child {
    position: sticky;
    top: 0;
    left: 0;
    background: #f7f7f7;
    min-width: 80px;
    padding-left: 6px;
    padding-right: 6px;
  }
}
.wp-block-table.table-yokonaga table tr:last-child {
  border-bottom: 1px solid #e5e5e5;
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku table {
    font-size: 15px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku table td {
    display: table-cell;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku thead tr th {
    padding-left: 6px;
    padding-right: 6px;
  }
}
.wp-block-table.table-hikaku thead tr th:first-child {
  min-width: 200px;
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku thead tr th:first-child {
    min-width: 100px;
  }
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku tbody tr td {
    padding-left: 6px;
    padding-right: 0;
  }
}
.wp-block-table.table-hikaku tbody tr td:first-child {
  min-width: 200px;
}
@media (max-width: 499px) {
  .wp-block-table.table-hikaku tbody tr td:first-child {
    min-width: 100px;
  }
}

.wp-block-file {
  margin: 20px 0;
  padding: 16px 10px;
  line-height: 1;
}
@media (min-width: 500px) {
  .wp-block-file {
    padding: 6px 10px;
  }
}
.wp-block-file a:not(.wp-element-button) {
  position: relative;
  padding: 10px 0 10px 44px;
  color: #333;
  text-decoration: none;
}
@media (max-width: 499px) {
  .wp-block-file a:not(.wp-element-button) {
    padding-left: 30px;
  }
}
.wp-block-file a:not(.wp-element-button):hover {
  color: #2a8732;
}
.wp-block-file a:not(.wp-element-button)::before {
  content: "";
  display: block;
  height: 1em;
  width: 1em;
  background-size: 100% 100%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (min-width: 500px) {
  .wp-block-file a:not(.wp-element-button)::before {
    width: 28px;
    height: 35px;
  }
}
.wp-block-file a[href*=".pdf"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_pdf.svg);
}
.wp-block-file a[href*=".doc"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_doc.svg);
}
.wp-block-file a[href*=".docx"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_doc.svg);
}
.wp-block-file a[href*=".xls"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_xls.svg);
}
.wp-block-file a[href*=".xls"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_xls.svg);
}
.wp-block-file a[href*=".xlsz"]:not(.wp-element-button)::before {
  background-image: url(../img/icon_xls.svg);
}
.wp-block-file:not(.wp-element-button) {
  font-size: 1em;
}

.wp-block-file__button.wp-element-button {
  padding: 10px 25px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  background: #2a8732;
}
.wp-block-file__button.wp-element-button::before {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: url(../img/icon_download.svg) no-repeat center;
  background-size: 100%;
}
.wp-block-file__button.wp-element-button:hover, .wp-block-file__button.wp-element-button:focus, .wp-block-file__button.wp-element-button:active {
  color: #fff;
}
@media (max-width: 499px) {
  .wp-block-file__button.wp-element-button {
    display: none;
  }
}

.p-the-content p:has(img) {
  overflow: hidden;
}
.p-the-content h4.wp-block-heading + p {
  margin-top: 20px;
}
.p-the-content p {
  margin-top: 30px;
  line-height: 1.9;
}
.p-the-content ul {
  margin-top: 30px;
  padding-left: 16px;
}
.p-the-content ul li {
  position: relative;
  margin-top: 10px;
  padding-left: 18px;
}
.p-the-content ul li:before {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  top: 0.5em;
  width: 10px;
  height: 10px;
  margin-top: 0;
  background: linear-gradient(135deg, rgb(237, 216, 40) 50%, rgb(227, 158, 48) 50%);
  border-radius: 50%;
}
.p-the-content ul.no-entry-list {
  background-color: #fff4f3;
  padding: 30px 40px;
  position: relative;
}
@media (max-width: 499px) {
  .p-the-content ul.no-entry-list {
    padding: 220px 20px 30px 20px;
  }
}
.p-the-content ul.no-entry-list:before {
  content: "";
  background-image: url("../img/stop.png");
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  width: 280px;
  height: 280px;
  top: 50%;
  left: 50%;
  margin-left: -140px;
  margin-top: -140px;
  opacity: 0.2;
}
@media (max-width: 499px) {
  .p-the-content ul.no-entry-list:before {
    width: 160px;
    height: 160px;
    top: 40px;
    left: 50%;
    margin-left: -80px;
    margin-top: 0;
    opacity: 1;
  }
}
.p-the-content ul.no-entry-list li {
  font-weight: bold;
}
.p-the-content ul.no-entry-list li:before {
  width: 8px;
  height: 8px;
  background: #383838;
}
.p-the-content ol {
  margin-top: 50px;
  margin-bottom: 50px;
  list-style-type: none;
}
.p-the-content ol li {
  counter-increment: cnt;
  position: relative;
  margin-top: 10px;
  padding-left: 30px;
  font-size: 16px;
}
.p-the-content ol li:before {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  content: counter(cnt);
  color: #fff;
  width: 24px;
  height: 24px;
  background-color: #df9a30;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 24px;
}
.p-the-content img.alignleft {
  float: left;
  margin: 0 20px 20px 0;
}
.p-the-content img.alignright {
  float: right;
  margin: 0 0 20px 20px;
}
.p-the-content .content-copy {
  margin-top: 70px;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
  color: #2a8732;
}
@media (max-width: 991px) {
  .p-the-content .content-copy {
    font-size: 22px;
  }
}
.p-the-content h3.num-1, .p-the-content h3.num-2, .p-the-content h3.num-3 {
  margin-top: 60px;
  color: #485449;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  text-indent: -1em;
  padding-left: 1em;
}
.p-the-content h3.num-1:before, .p-the-content h3.num-2:before, .p-the-content h3.num-3:before {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  color: #2a8732;
  margin-right: 4px;
  font-size: 29px;
}
.p-the-content h3.num-1 .wp-block-heading__inner, .p-the-content h3.num-2 .wp-block-heading__inner, .p-the-content h3.num-3 .wp-block-heading__inner {
  padding-left: 4px;
}
.p-the-content h3.num-1:before {
  content: "1.";
}
.p-the-content h3.num-2:before {
  content: "2.";
}
.p-the-content h3.num-3:before {
  content: "3.";
}
.p-the-content .mt0 {
  margin-top: 0;
}

.wp-block-columns {
  margin-top: 30px;
}
@media (min-width: 500px) {
  .wp-block-columns .wp-block-column p:first-child {
    margin-top: 0;
  }
}

.wp-block-heading + .wp-block-image {
  margin-top: 30px;
}

@media (max-width: 991px) {
  p.span-user-select-none span {
    user-select: none;
  }
}

.wp-block-buttons + .wp-block-group {
  margin-top: 60px;
}

.wp-block-buttons .wp-block-button.tel-btn a.wp-block-button__link {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 20px;
  color: #333;
  background: transparent;
  border: 1px solid #b7b7b7;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.wp-block-buttons .wp-block-button.tel-btn a.wp-block-button__link:before {
  content: "";
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-left: 38px;
  font-size: 32px;
  font-weight: bold;
  background: url(../img/icon_cta-phone.svg) left center no-repeat;
}

@media (min-width: 500px) {
  .pc-none {
    display: none !important;
  }
}

@media (max-width: 499px) {
  .sp-none {
    display: none;
  }
}

@media (max-width: 499px) {
  .event-none {
    user-select: none;
    -moz-user-select: none; /* Firefox */
    -webkit-user-select: none; /* Safari、Chromeなど */
    -ms-user-select: none; /* IE10かららしい */
  }
}

.app-dl {
  max-width: 640px;
  background-color: #2a8732;
  color: #fff;
  padding: 20px 60px 20px 60px;
  margin-bottom: 54px;
}
@media (max-width: 991px) {
  .app-dl {
    padding: 20px 30px 0px 30px;
  }
}
.app-dl .app-title {
  font-weight: bold;
  font-size: 23px;
  text-align: center;
  color: #fff;
  margin-top: 0;
  margin-bottom: 14px;
  line-height: 1.5;
  margin-bottom: 20px;
}
.app-dl .wp-block-columns {
  margin-top: 0;
}
.app-dl .wp-block-columns p {
  margin-top: 4px;
}
.app-dl .wp-block-button__link {
  padding: 20px 30px;
}
.app-dl .wp-block-columns .wp-block-columns {
  flex-wrap: nowrap !important;
}
@media (min-width: 500px) {
  .app-dl img {
    max-width: 200px;
  }
}

.app-dl + h2.wp-block-heading {
  margin-top: 50px;
}

.flow-heading {
  margin-top: 60px;
  color: #485449;
  font-size: 27px;
  font-weight: bold;
  line-height: 1.2;
  display: flex;
}
.flow-heading .wp-block-heading__inner {
  display: flex;
}
.flow-heading .flow-num {
  font-family: "Open Sans", sans-serif;
  font-weight: bold;
  font-size: 27px;
  color: #2a8732;
  color: #fff;
  position: relative;
  text-align: center;
  display: block;
  width: 47px;
}
.flow-heading .flow-num:before {
  content: "";
  width: 47px;
  height: 47px;
  position: absolute;
  top: -7px;
  left: 0;
  background: #2a8732;
  z-index: -1;
  border-radius: 41px;
}
.flow-heading .heading__inner {
  padding-left: 8px;
  flex: 1;
}

.flow-group {
  border: solid 2px #f1f1f1;
  padding: 30px 40px;
}
@media (max-width: 991px) {
  .flow-group {
    padding: 30px 20px;
  }
}
.flow-group p:first-child {
  margin-top: 0;
}
.flow-group .wp-block-columns {
  margin-top: 0;
}
.flow-group p + .wp-block-columns {
  margin-top: 30px;
}

.flow-heading + .flow-group {
  margin-top: 30px;
}

h3 + .flow-group {
  margin-top: 30px;
}

.member-btns a.wp-block-button__link {
  min-height: 108px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 992px) {
  .member-btns a.wp-block-button__link {
    min-width: 300px;
  }
}
@media (max-width: 1199px) {
  .member-btns a.wp-block-button__link {
    padding: 20px 30px;
  }
  .member-btns a.wp-block-button__link br {
    display: none;
  }
}

#report {
  display: block;
  padding-top: 140px;
  margin-top: -140px;
}
@media (max-width: 499px) {
  #report {
    padding-top: 80px;
    margin-top: -80px;
  }
}

.wp-block-media-text .wp-block-columns {
  margin-top: 0;
}
@media (max-width: 991px) {
  .wp-block-media-text .wp-block-columns .wp-block-column p:first-child {
    margin-top: 30px;
  }
}
@media (min-width: 992px) {
  .wp-block-media-text p:first-child {
    margin-top: 0;
  }
}

.wp-block-media-text + .wp-block-image {
  margin-top: 3em;
}

.wp-block-media-text + .wp-block-media-text {
  margin-top: 30px;
}

.wp-block-columns + .wp-block-media-text {
  margin-top: 30px;
}

.lead {
  max-width: 800px;
  max-width: 840px;
  margin-bottom: 60px;
  padding: 40px 70px 40px 70px;
  font-size: 17px;
  border: 1px solid #2a8732;
  border-radius: 12px;
}
@media (max-width: 991px) {
  .lead {
    padding: 20px 30px 20px 30px;
  }
}
.lead p {
  line-height: 2;
}
.lead p:first-child {
  margin-top: 0;
}

/*
<div id="toc_container" class="no_bullets">
<p class="toc_title">
目次 <span class="toc_toggle"><span class="toc_brackets">[</span><a href="#">隠す</a><span class="toc_brackets">]</span></span>
</p>
<ul class="toc_list">
<li>
<a href="#i">同友会の事業内容</a></li>
<li><a href="#i-2">同友会事務局の仕事について</a></li>
</ul>
</div>
*/
.p-the-content .toc-wrap #toc_container {
  width: auto;
  display: table;
  margin-left: auto;
  margin-right: auto;
  background: #e9e9e9;
}
.p-the-content .toc-wrap #toc_container .toc_title {
  margin: 0;
  padding: 0.6em;
  text-align: center;
  border-bottom: 1px solid #2a8732;
}
.p-the-content .toc-wrap #toc_container .toc_toggle {
  display: inline-block;
  margin-left: 0.5em;
}
.p-the-content .toc-wrap #toc_container .toc_list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5em;
  margin-top: 0;
  padding: 1.5em;
}
@media (max-width: 499px) {
  .p-the-content .toc-wrap #toc_container .toc_list {
    flex-direction: column;
  }
}
@media (min-width: 1330px) {
  .p-the-content .toc-wrap #toc_container .toc_list {
    padding-left: 2em;
    padding-right: 2em;
  }
}
.p-the-content .toc-wrap #toc_container .toc_list li {
  margin-top: 0;
  padding-left: 0;
}
.p-the-content .toc-wrap #toc_container .toc_list li::before {
  display: none;
}
@media (min-width: 1330px) {
  .p-the-content .toc-wrap #toc_container .toc_list li {
    width: calc(33.33% - 1.5em);
  }
}
.p-the-content .toc-wrap #toc_container .toc_list a {
  padding-left: 15px;
  text-decoration: none;
  background: url(../img/icon_arrow_down.svg) no-repeat left center;
}
.p-the-content .toc-wrap #toc_container .toc_list a:hover {
  text-decoration: underline;
}

.p-the-content .recruit-lead {
  text-align: center;
  transform: rotate(-2deg);
}
.p-the-content .recruit-lead > div {
  display: inline-block;
  text-align: left;
}
.p-the-content .recruit-lead span {
  position: relative;
  display: inline-block;
  padding: 0 0.2em;
  color: #fff;
  font-weight: bold;
  font-size: 5vw;
  transform: scaleY(110%);
}
@media (min-width: 992px) {
  .p-the-content .recruit-lead span {
    font-size: 34px;
  }
}
.p-the-content .recruit-lead span::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 0%;
  height: 100%;
  background: #2a8732;
  z-index: -1;
  animation: recruit-lead 1.5s linear forwards;
}

@keyframes recruit-lead {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
.p-the-content .recruit-lead-bottom {
  margin-top: 34px;
  text-align: center;
  color: #e39e30;
  font-size: 3.4vw;
  font-weight: bold;
}
@media (min-width: 992px) {
  .p-the-content .recruit-lead-bottom {
    font-size: 26px;
  }
}

.p-content-header {
  color: #fff;
  font-size: 50px;
  font-weight: bold;
  background: #2a8732;
}
@media (max-width: 991px) {
  .p-content-header {
    font-size: 31px;
  }
}
@media (max-width: 499px) {
  .p-content-header {
    font-size: 30px;
    overflow: hidden;
  }
}
.p-content-header .c-container {
  overflow-x: clip;
}
.p-content-header__heading {
  display: flex;
  height: 165px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 499px) {
  .p-content-header__heading {
    height: 120px;
  }
}
.p-content-header__inner {
  position: relative;
  display: inline-block;
  padding: 12px 0 26px;
  line-height: 1;
  background: url(../img/content-header_line.svg) no-repeat center bottom;
}
@media (max-width: 499px) {
  .p-content-header__inner {
    background-size: 140px auto, 90px auto;
    line-height: 1.1;
  }
}
.p-content-header__inner:before {
  content: "";
  display: block;
  width: 105.14px;
  height: 145.77px;
  background: url(../img/content-header__left.svg) no-repeat center;
  position: absolute;
  left: -160px;
  top: 0;
}
@media (max-width: 991px) {
  .p-content-header__inner:before {
    width: 80px;
    height: 115px;
    background-size: contain;
    left: -70px;
    top: 20px;
  }
}
@media (max-width: 499px) {
  .p-content-header__inner:before {
    width: 61px;
    height: 86px;
    background-size: 100%;
    left: -78px;
    top: 0;
  }
}
.p-content-header__inner:after {
  content: "";
  display: block;
  width: 99.38px;
  height: 142.4px;
  background: url(../img/content-header__right.svg) no-repeat center;
  position: absolute;
  right: -140px;
  top: 0;
}
@media (max-width: 991px) {
  .p-content-header__inner:after {
    width: 80px;
    height: 115px;
    background-size: contain;
    right: -70px;
    top: 20px;
  }
}
@media (max-width: 499px) {
  .p-content-header__inner:after {
    width: 57px;
    height: 84px;
    background-size: 100%;
    right: -70px;
    top: 0;
  }
}

.p-breadcrumbs {
  margin-top: 40px;
  margin-bottom: 40px;
}
.p-breadcrumbs ul {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  font-size: 0.9em;
}
.p-breadcrumbs a {
  text-decoration: none;
}
.p-breadcrumbs .split {
  padding: 0 5px 0 1px;
}

.p-page-home-mv__slides {
  width: 100%;
  height: 100%;
}
.p-page-home-mv__slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.p-page-home-mv__slide-jobsumit {
  position: relative;
}
.p-page-home-mv__slide-jobsumit a {
  position: absolute;
  display: block;
}
.p-page-home-mv__slide-jobsumit-links a:first-child {
  top: 39%;
  right: 1%;
  width: 31%;
  height: 24%;
}
.p-page-home-mv__slide-jobsumit-links a:last-child {
  top: 67.5%;
  right: 1%;
  width: 31%;
  height: 24%;
}

.p-page-home-target {
  background: #e9e9e9;
}
.p-page-home-target__inner {
  padding: 40px 0;
  position: relative;
  display: flex;
  gap: 15px;
}
@media (min-width: 500px) {
  .p-page-home-target__inner {
    padding-left: 22%;
  }
}
@media (min-width: 1330px) {
  .p-page-home-target__inner {
    padding-left: 210px;
  }
}
@media (max-width: 499px) {
  .p-page-home-target__inner {
    padding-top: 15px;
    flex-direction: column;
  }
}
.p-page-home-target__info {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
@media (max-width: 499px) {
  .p-page-home-target__info {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
  }
  .loaded .p-page-home-target__info {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media (min-width: 500px) {
  .p-page-home-target__info {
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 20%;
  }
}
@media (min-width: 1330px) {
  .p-page-home-target__info {
    left: -50px;
    width: auto;
  }
}
.p-page-home-target__main-col {
  display: flex;
  gap: 15px;
}
@media (max-width: 499px) {
  .p-page-home-target__main-col {
    flex-direction: column;
  }
  .p-page-home-target__main-col img {
    width: 100%;
  }
}
.p-page-home-target__sub-col {
  display: flex;
  gap: 15px;
}
@media (max-width: 499px) {
  .p-page-home-target__sub-col {
    justify-content: center;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__sub-col {
    flex-direction: column;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner1 {
    max-width: 454px;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner2 {
    max-width: 321px;
  }
}
@media (max-width: 499px) {
  .p-page-home-target__banner2 .img-pc {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner2 .img-sp {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner3 {
    max-width: 118px;
  }
}
@media (max-width: 499px) {
  .p-page-home-target__banner3 .img-pc {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner3 .img-sp {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner4 {
    max-width: 118px;
  }
}
@media (max-width: 499px) {
  .p-page-home-target__banner4 .img-pc {
    display: none;
  }
}
@media (min-width: 500px) {
  .p-page-home-target__banner4 .img-sp {
    display: none;
  }
}

.p-page-home-activity {
  padding: 35px 0 70px;
  background: rgb(237, 216, 40);
  background: linear-gradient(180deg, rgb(237, 216, 40) 40%, rgb(227, 158, 48) 40%);
}
@media (min-width: 992px) {
  .p-page-home-activity__bg {
    background-image: url(../img/home_activity_bg_left.png), url(../img/home_activity_bg_right.png);
    background-repeat: no-repeat, no-repeat, no-repeat;
    background-position: 15px center, calc(100% - 15px) center;
  }
}
@media (min-width: 1330px) {
  .p-page-home-activity__bg {
    background-position: 10% center, 90% center;
  }
}
.p-page-home-activity__heading {
  text-align: center;
}
.p-page-home-activity__heading small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: block;
  color: #2a8b32;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.p-page-home-activity__heading span {
  display: block;
  color: #333;
  font-size: 50px;
  font-weight: bold;
}
.p-page-home-activity__panel {
  max-width: 855px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 30px;
  padding: 60px 50px 50px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.1);
}
@media (max-width: 499px) {
  .p-page-home-activity__panel {
    padding: 60px 15px 50px;
  }
}
.p-page-home-activity__panel-title {
  color: #c16546;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
}
@media (max-width: 499px) {
  .p-page-home-activity__panel-title {
    font-size: 25px;
  }
}
.p-page-home-activity__panel-body {
  margin: 35px 0 30px;
  font-size: 15px;
  line-height: 1.8;
}
@media (min-width: 500px) {
  .p-page-home-activity__panel-body {
    text-align: center;
  }
}
.p-page-home-activity__panel-more {
  margin-top: 40px;
  text-align: center;
}
.p-page-home-activity__panel-more a {
  display: inline-block;
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-activity__panel-more a:hover {
  background: #f4ac4e;
}

.p-page-home-topics {
  padding: 100px 0;
  background: #e9e9e9;
}
@media (min-width: 992px) {
  .p-page-home-topics__heading-nav {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.p-page-home-topics__heading {
  padding-left: 25px;
  border-left: 2px solid #80b680;
}
.p-page-home-topics__heading small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: block;
  margin-bottom: 0px;
  color: #2a8b32;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.p-page-home-topics__heading span {
  display: block;
  margin-left: -15px;
  color: #333;
  font-size: 50px;
  font-weight: bold;
}
.p-page-home-topics__nav {
  display: flex;
  gap: 10px;
}
.p-page-home-topics__nav a {
  position: relative;
  display: block;
  padding: 0 15px 6px;
  color: #333;
  font-size: 19px;
  font-weight: bold;
  text-decoration: none;
}
@media (max-width: 499px) {
  .p-page-home-topics__nav a {
    font-size: 15px;
  }
}
.p-page-home-topics__nav a:hover:after, .p-page-home-topics__nav a.is-active:after {
  content: "";
  display: block;
  width: 20px;
  height: 8px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
}
.p-page-home-topics__nav li:nth-child(1) a {
  border-bottom: 3px solid #2a8b32;
}
.p-page-home-topics__nav li:nth-child(1) a:after {
  background: #2a8b32;
}
.p-page-home-topics__nav li:nth-child(2) a {
  border-bottom: 3px solid #ddb71f;
}
.p-page-home-topics__nav li:nth-child(2) a:after {
  background: #ddb71f;
}
.p-page-home-topics__nav li:nth-child(3) a {
  border-bottom: 3px solid #356cb1;
}
.p-page-home-topics__nav li:nth-child(3) a:after {
  background: #356cb1;
}
.p-page-home-topics__nav li:nth-child(4) a {
  border-bottom: 3px solid #d13a51;
}
.p-page-home-topics__nav li:nth-child(4) a:after {
  background: #d13a51;
}
.p-page-home-topics__items {
  margin-top: 100px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
.p-page-home-topics__items > * {
  width: 100%;
}
@media (min-width: 500px) {
  .p-page-home-topics__items > * {
    width: calc((100% - 60px) / 3);
  }
}
.p-page-home-topics__item {
  display: block;
  text-decoration: none;
  background: #fff;
}
.p-page-home-topics__item img {
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.p-page-home-topics__item:hover img {
  transform: scale(1.05);
}
.p-page-home-topics__item-image {
  position: relative;
  overflow: hidden;
}
.p-page-home-topics__item-cat {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 15px;
  z-index: 1;
}
.p-page-home-topics__item-cat.cat-1 {
  background: #d13a51;
}
.p-page-home-topics__item-cat.cat-2 {
  background: #356cb1;
}
.p-page-home-topics__item-cat.cat-3 {
  background: #ddb71f;
}
.p-page-home-topics__item-body {
  padding: 12px 12px 30px;
}
.p-page-home-topics__item-time {
  color: #808080;
  font-size: 12px;
  line-height: 1;
}
.p-page-home-topics__item-ttl {
  margin-top: 10px;
  color: #333;
  font-size: 17px;
  font-weight: bold;
}
.p-page-home-topics__more {
  margin-top: 75px;
  text-align: center;
}
.p-page-home-topics__more a {
  display: inline-block;
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-topics__more a:hover {
  background: #f4ac4e;
}
.p-page-home-topics__nav-contents {
  display: none;
}
.p-page-home-topics__nav-contents.is-active {
  display: block;
}

.p-page-home-merit {
  background: #2a8932;
}
@media (min-width: 992px) {
  .p-page-home-merit {
    background: #639467 url(../img/home_merit-bg.jpg) center;
    background-size: cover;
  }
}
.p-page-home-merit > * {
  min-height: 0;
  min-width: 0;
}
.p-page-home-merit__inner {
  display: flex;
  flex-direction: column;
}
@media (min-width: 992px) {
  .p-page-home-merit__inner {
    flex-direction: row;
  }
  .p-page-home-merit__inner > * {
    width: 50%;
  }
}
.p-page-home-merit__slides-wrap {
  padding-bottom: 30px;
}
.p-page-home-merit__slide {
  max-width: 580px;
  position: relative;
  margin: 0 auto;
  padding: 45px 15px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
}
@media (max-width: 499px) {
  .p-page-home-merit__slide-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-page-home-merit__slide-num {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #edd828;
  font-size: 42px;
  font-weight: bold;
  text-align: center;
}
.p-page-home-merit__slide-ttl {
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 25px;
  font-weight: bold;
  line-height: 1.5;
}
.p-page-home-merit__slide-ttl:after {
  content: "";
  display: block;
  width: 109px;
  height: 89px;
  position: absolute;
}
@media (max-width: 499px) {
  .p-page-home-merit__slide-image img {
    max-width: 220px;
  }
}
.p-page-home-merit__main {
  text-align: center;
}
@media (max-width: 991px) {
  .p-page-home-merit__main {
    padding: 165px 15px 55px;
    background: url(../img/home_merit-bg-xs.jpg) no-repeat center;
    background-size: cover;
  }
}
@media (min-width: 992px) {
  .p-page-home-merit__main-more {
    transform: translateY(110%);
  }
}
.p-page-home-merit .slick-dots li button:before {
  opacity: 1;
  color: #fff;
}
.p-page-home-merit .slick-dots li.slick-active button:before {
  opacity: 1;
  color: #edd828;
}

.p-page-home-merit__slide-ttl.home_merit-icon1:after {
  background: url(../img/home_merit-icon1.png?240402) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 120px;
}

.p-page-home-merit__slide-ttl.home_merit-icon2:after {
  background: url(../img/home_merit-icon2.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 55px;
}

.p-page-home-merit__slide-ttl.home_merit-icon3:after {
  background: url(../img/home_merit-icon3.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 44px;
}

.p-page-home-merit__slide-ttl.home_merit-icon4:after {
  background: url(../img/home_merit-icon4.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 44px;
}

.p-page-home-merit__slide-ttl.home_merit-icon5:after {
  background: url(../img/home_merit-icon5.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 85px;
}

.p-page-home-merit__slide-ttl.home_merit-icon6:after {
  background: url(../img/home_merit-icon6.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 85px;
}

.p-page-home-merit__slide-ttl.home_merit-icon7:after {
  background: url(../img/home_merit-icon7.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 80px;
}

.p-page-home-merit__slide-ttl.home_merit-icon8:after {
  background: url(../img/home_merit-icon8.png?240401) no-repeat;
  background-size: contain;
  bottom: 20px;
  left: 100px;
}

.p-page-home-merit__slide-ttl {
  height: 300px;
}

.p-page-home-philosophy {
  padding: 60px 0 65px;
  background: #ffe9da;
}
.p-page-home-philosophy__heading {
  text-align: center;
}
.p-page-home-philosophy__heading small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: block;
  margin-bottom: 0px;
  color: #e39e30;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.p-page-home-philosophy__heading span {
  display: block;
  color: #333;
  font-size: 50px;
  font-weight: bold;
}
.p-page-home-philosophy__lead {
  margin-top: 45px;
  text-align: center;
}
.p-page-home-philosophy__items {
  margin-top: 55px;
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
@media (max-width: 499px) {
  .p-page-home-philosophy__items {
    flex-direction: column;
    gap: 10px;
  }
}
.p-page-home-philosophy__item {
  width: 100%;
  height: 135px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 15px;
  background: #fff;
  border: 1px solid #e39e30;
}
.p-page-home-philosophy__more {
  margin-top: 30px;
  text-align: center;
}
.p-page-home-philosophy__more a {
  display: inline-block;
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-philosophy__more a:hover {
  background: #f4ac4e;
}

.p-page-home-about {
  color: #fff;
  background: #2a8b32;
}
.p-page-home-about__inner {
  position: relative;
  min-height: 920px;
}
@media (max-width: 991px) {
  .p-page-home-about__inner {
    text-align: center;
  }
}
.p-page-home-about__heading span {
  display: inline-block;
  position: relative;
  padding: 80px 0px 40px;
  font-size: 8.2vw;
  font-weight: bold;
  line-height: 1;
  background: url(../img/icon_fukidashi1.svg) no-repeat center bottom;
  background-size: 100% auto;
}
@media (min-width: 500px) {
  .p-page-home-about__heading span {
    padding: 80px 25px 60px;
    font-size: 50px;
  }
}
.p-page-home-about__text-wrap {
  display: inline-block;
  text-align: left;
}
.p-page-home-about__answer {
  margin-top: 45px;
  padding-left: 40px;
  font-size: 32px;
  font-weight: bold;
  position: relative;
}
@media (max-width: 499px) {
  .p-page-home-about__answer {
    font-size: 28px;
  }
}
.p-page-home-about__answer span {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #edd828;
  font-size: 32px;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
.p-page-home-about__body {
  max-width: 360px;
  margin-top: 30px;
  padding-left: 40px;
  font-size: 15px;
  font-weight: bold;
}
.p-page-home-about__picture {
  position: relative;
  margin-top: -400px;
  text-align: right;
}
@media (max-width: 991px) {
  .p-page-home-about__picture {
    display: none;
  }
}
@media (min-width: 992px) {
  .p-page-home-about__picture {
    margin-top: -400px;
  }
}
@media (min-width: 1380px) {
  .p-page-home-about__picture {
    position: absolute;
    margin-top: 0;
    width: 100%;
    left: 0;
    top: -60px;
    text-align: right;
    width: 1250px;
  }
}
.p-page-home-about__picture-xs {
  position: relative;
  display: inline-block;
}
@media (min-width: 992px) {
  .p-page-home-about__picture-xs {
    display: none;
  }
}
.p-page-home-about__hiroshima-members {
  position: absolute;
  left: 52%;
  top: 39%;
  width: 29%;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members {
    left: 55%;
    top: 38%;
    width: 29%;
  }
}
.p-page-home-about__hiroshima-members span {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #ff9c24;
  font-size: 8vw;
  font-weight: bold;
  letter-spacing: -2px;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members span {
    font-size: 109px;
  }
}
.p-page-home-about__hiroshima-members small {
  color: #333;
  font-size: 3vw;
  font-weight: bold;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members small {
    font-size: 37px;
  }
}
.p-page-home-about__hiroshima-members-now {
  position: absolute;
  left: 52%;
  top: 54%;
  width: 29%;
  line-height: 1;
  text-align: center;
  color: #7a7a7a;
  font-size: 13px;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members-now {
    left: 55%;
    top: 54%;
    width: 29%;
  }
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members-now {
    font-size: 13px;
  }
}
.p-page-home-about__japan-members {
  position: absolute;
  left: 73%;
  top: 89%;
  width: 15%;
  line-height: 1;
  text-align: center;
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members {
    left: 76%;
    top: 89%;
    width: 12%;
  }
}
.p-page-home-about__japan-members span {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #333;
  font-size: 3vw;
  font-weight: bold;
  letter-spacing: -2px;
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members span {
    font-size: 36px;
  }
}
.p-page-home-about__japan-members-now {
  position: absolute;
  left: 73%;
  top: 94%;
  width: 15%;
  line-height: 1;
  text-align: center;
  color: #7a7a7a;
  font-size: 10px;
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members-now {
    left: 76%;
    top: 93.5%;
    width: 12%;
  }
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members-now {
    font-size: 10px;
  }
}
.p-page-home-about__hiroshima-members-xs {
  position: absolute;
  left: 18%;
  top: 25%;
  width: 62%;
  line-height: 1;
  text-align: center;
}
.p-page-home-about__hiroshima-members-xs span {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #ff9c24;
  font-size: 8vw;
  font-weight: bold;
  letter-spacing: -2px;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members-xs span {
    font-size: 109px;
  }
}
@media (max-width: 499px) {
  .p-page-home-about__hiroshima-members-xs span {
    font-size: 17vw;
  }
}
.p-page-home-about__hiroshima-members-xs small {
  color: #333;
  font-size: 3vw;
  font-weight: bold;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members-xs small {
    font-size: 37px;
  }
}
@media (max-width: 499px) {
  .p-page-home-about__hiroshima-members-xs small {
    font-size: 6vw;
  }
}
.p-page-home-about__hiroshima-members-now-xs {
  position: absolute;
  left: 18%;
  top: 36%;
  width: 62%;
  line-height: 1;
  text-align: center;
  color: #7a7a7a;
  font-size: 13px;
}
@media (min-width: 1380px) {
  .p-page-home-about__hiroshima-members-now-xs {
    font-size: 13px;
  }
}
.p-page-home-about__japan-members-xs {
  position: absolute;
  left: 61%;
  top: 90%;
  width: 35%;
  line-height: 1;
  text-align: center;
}
.p-page-home-about__japan-members-xs span {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  color: #333;
  font-size: 3vw;
  font-weight: bold;
  letter-spacing: -2px;
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members-xs span {
    font-size: 36px;
  }
}
@media (max-width: 499px) {
  .p-page-home-about__japan-members-xs span {
    font-size: 6vw;
  }
}
.p-page-home-about__japan-members-now-xs {
  position: absolute;
  left: 61%;
  top: 95%;
  width: 35%;
  line-height: 1;
  text-align: center;
  color: #7a7a7a;
  font-size: 10px;
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members-now-xs {
    left: 76%;
    top: 93.5%;
    width: 12%;
  }
}
@media (min-width: 1380px) {
  .p-page-home-about__japan-members-now-xs {
    font-size: 10px;
  }
}

.p-page-home-area {
  color: #fff;
  background: #2a8b32;
}
@media (min-width: 992px) {
  .p-page-home-area__heading-wrap {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
}
.p-page-home-area__heading {
  font-size: 38px;
  font-weight: bold;
}
.p-page-home-area__lead {
  padding: 0 0 12px 20px;
  font-size: 15px;
  font-weight: bold;
  background: url(../img/icon_fukidashi2.svg) no-repeat left bottom;
}
.p-page-home-area__items {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.p-page-home-area__item {
  width: calc((100% - 60px) / 5);
}
@media (max-width: 991px) {
  .p-page-home-area__item {
    width: calc((100% - 15px) / 2);
  }
}
.p-page-home-area__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-area__item a:hover {
  opacity: 0.8;
}
.p-page-home-area__item a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  width: 20px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
}
.p-page-home-area__item strong {
  color: #0a7a0d;
  font-size: 24px;
  font-weight: bold;
}
.p-page-home-area__item span {
  color: #333;
  font-size: 20px;
  font-weight: bold;
}
.p-page-home-area__item small {
  color: #5e5e5e;
  font-size: 14px;
}

.p-page-home-committee {
  padding-top: 80px;
  padding-bottom: 140px;
  color: #fff;
  background: #2a8b32;
}
@media (min-width: 992px) {
  .p-page-home-committee__heading-wrap {
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }
}
.p-page-home-committee__heading {
  font-size: 38px;
  font-weight: bold;
}
.p-page-home-committee__lead {
  padding: 0 0 12px 20px;
  font-size: 15px;
  font-weight: bold;
  background: url(../img/icon_fukidashi2.svg) no-repeat left bottom;
}
.p-page-home-committee__items {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media (max-width: 499px) {
  .p-page-home-committee__items {
    flex-direction: column;
    gap: 5px;
  }
}
@media (min-width: 500px) {
  .p-page-home-committee__item {
    width: calc((100% - 15px) / 2);
  }
}
@media (min-width: 992px) {
  .p-page-home-committee__item {
    width: calc((100% - 45px) / 4);
  }
}
.p-page-home-committee__item a {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 15px;
  color: #333;
  font-size: 15px;
  text-decoration: none;
  background: #fff;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
@media (max-width: 1199px) {
  .p-page-home-committee__item a {
    min-height: 88px;
  }
}
@media (max-width: 499px) {
  .p-page-home-committee__item a {
    padding: 10px 14px 10px 6px;
    min-height: 44px;
  }
}
.p-page-home-committee__item a:hover {
  opacity: 0.8;
}
.p-page-home-committee__item a:after {
  content: "";
  display: block;
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  width: 14px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
}
@media (max-width: 499px) {
  .p-page-home-committee__item a:after {
    width: 10px;
  }
}

.p-page-home-voice {
  margin-top: 150px;
}
.p-page-home-voice__heading {
  text-align: center;
}
.p-page-home-voice__heading small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: block;
  margin-bottom: 0px;
  color: #2a8932;
  font-size: 18px;
  font-weight: bold;
  line-height: 1;
}
.p-page-home-voice__heading span {
  position: relative;
  display: inline-block;
  color: #333;
  font-size: 50px;
  font-weight: bold;
}
.p-page-home-voice__heading span:after {
  content: "";
  display: block;
  background: url(../img/home_voice.svg) no-repeat center;
  width: 93.659px;
  height: 90.892px;
}
@media (min-width: 500px) {
  .p-page-home-voice__heading span:after {
    position: absolute;
    top: -45px;
    right: -115px;
  }
}
@media (max-width: 499px) {
  .p-page-home-voice__heading span:after {
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    right: -77px;
    top: -34px;
    background-size: contain;
    width: 66px;
    height: 65px;
  }
}
.p-page-home-voice__heading strong {
  color: #2a8932;
  font-weight: bold;
}
.p-page-home-voice__items {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media (max-width: 499px) {
  .p-page-home-voice__items {
    flex-direction: column;
  }
}
.p-page-home-voice__item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eaeaea;
}
@media (min-width: 500px) {
  .p-page-home-voice__item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 700px) {
  .p-page-home-voice__item {
    width: 100%;
  }
}
.p-page-home-voice figure {
  overflow: hidden;
  aspect-ratio: 3/3.8;
  aspect-ratio: 4/3.8;
}
.p-page-home-voice figure img {
  width: 100%;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.p-page-home-voice figure a:hover img {
  transform: scale(1.05);
}
.p-page-home-voice__ttl {
  height: 115px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ec9d2b;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .p-page-home-voice__ttl {
    height: auto;
    padding: 0 20px;
    font-size: 19px;
    min-height: 120px;
  }
}
@media (max-width: 499px) {
  .p-page-home-voice__ttl {
    padding: 0 30px;
    font-size: 22px;
    min-height: 115px;
  }
}
.p-page-home-voice__description {
  padding: 0 30px;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .p-page-home-voice__description {
    padding: 0 20px;
  }
}
@media (max-width: 499px) {
  .p-page-home-voice__description {
    padding: 0 30px;
  }
}
.p-page-home-voice__link {
  padding: 45px 30px 48px 0px;
}
@media screen and (max-width: 1100px) {
  .p-page-home-voice__link {
    padding: 45px 20px 48px 0px;
  }
}
@media (max-width: 499px) {
  .p-page-home-voice__link {
    padding: 45px 30px 48px 0px;
  }
}
.p-page-home-voice__link a {
  display: block;
  width: 166px;
  margin: 0 0 0 auto;
  padding: 18px 0px;
  color: #ec9d2b;
  font-size: 16px;
  text-align: center;
  text-decoration: none;
  border: 1px solid #ec9d2b;
}
@media (max-width: 991px) {
  .p-page-home-voice__link a {
    width: 120px;
    font-size: 15px;
  }
}
@media (max-width: 499px) {
  .p-page-home-voice__link a {
    width: 166px;
    font-size: 16px;
  }
}
.p-page-home-voice__more {
  margin-top: 60px;
  text-align: center;
}
.p-page-home-voice__more a {
  display: inline-block;
  padding: 16px 75px;
  color: #fff;
  text-decoration: none;
  background: #e19c30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-page-home-voice__more a:hover {
  background: #f4ac4e;
}

.p-page-home-event {
  margin-top: 90px;
}
.p-page-home-event__heading small {
  display: block;
  padding-left: 22px;
  color: #2a8932;
  font-size: 18px;
  font-weight: bold;
  border-left: 2px solid #2a8932;
}
.p-page-home-event__heading span {
  display: block;
  padding-top: 5px;
  padding-left: 22px;
  color: #333;
  font-size: 50px;
  font-weight: bold;
  line-height: 1;
  border-left: 2px solid #80b480;
}
.p-page-home-event__lead {
  margin-top: 30px;
  text-align: center;
}
.p-page-home-event__lead span {
  display: inline-block;
  padding: 0 18px 30px;
  color: #333;
  font-size: 26px;
  font-weight: bold;
  background: url(../img/icon_fukidashi3.svg) no-repeat center bottom;
  background-size: 100% auto;
}
.p-page-home-event__iframe {
  margin-top: 25px;
}
.p-page-home-event__iframe iframe {
  width: 100%;
  height: 390px;
}

.p-page-home-join {
  margin-top: 90px;
  padding: 50px 0 110px;
  background: rgb(237, 216, 40);
  background: linear-gradient(100deg, rgb(237, 216, 40) 40%, rgb(227, 158, 48) 40%);
}
.p-page-home-join .c-container {
  overflow: hidden;
}
.p-page-home-join__heading {
  text-align: center;
}
.p-page-home-join__heading small {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: block;
  color: #2a8932;
  font-size: 62px;
  font-weight: bold;
  line-height: 1;
}
.p-page-home-join__heading span {
  display: block;
  margin-top: 5px;
  font-size: 17px;
  font-weight: bold;
}
.p-page-home-join__panel {
  position: relative;
  margin-top: 25px;
  padding: 45px 40px 35px;
  background: #fff;
  border-radius: 10px;
}
@media (max-width: 991px) {
  .p-page-home-join__panel {
    padding: 45px 15px 0px;
  }
}
.p-page-home-join__panel-inner {
  max-width: 630px;
}
@media (max-width: 1199px) {
  .p-page-home-join__panel-inner {
    width: 50%;
  }
}
@media (max-width: 991px) {
  .p-page-home-join__panel-inner {
    width: auto;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-page-home-join__description {
  margin-top: 20px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .p-page-home-join__description br {
    display: none;
  }
}
.p-page-home-join__btn-wrap {
  margin-top: 35px;
}
.p-page-home-join__btn {
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  position: relative;
  display: block;
  padding: 35px 15px 35px 15px;
  color: #fff;
  font-size: 53px;
  font-weight: bold;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  background: #2db10f;
  border-radius: 15px;
  box-shadow: 0 10px 0 #1e8f00;
}
.p-page-home-join__btn:hover, .p-page-home-join__btn:active, .p-page-home-join__btn:focus {
  color: #fff;
}
@media (max-width: 760px) {
  .p-page-home-join__btn {
    font-size: 6vw;
  }
}
.p-page-home-join__btn:after {
  content: "";
  display: block;
  width: 120px;
  height: 119px;
  background: url(../img/icon_cta.svg);
  position: absolute;
  right: 9%;
  bottom: -50%;
}
@media (max-width: 760px) {
  .p-page-home-join__btn:after {
    right: 1%;
    bottom: -80px;
  }
}
.p-page-home-join__btn:hover {
  transform: translateY(10px);
  box-shadow: 0 0 0;
}
.p-page-home-join__tel-wrap {
  margin-top: 55px;
  text-align: center;
}
@media (max-width: 499px) {
  .p-page-home-join__tel-wrap {
    margin-top: 80px;
  }
}
.p-page-home-join__tel-wrap a {
  text-decoration: none;
  color: #333333;
  pointer-events: none;
}
@media (max-width: 499px) {
  .p-page-home-join__tel-wrap a {
    pointer-events: auto;
    border: 1px solid #b7b7b7;
    border-radius: 8px;
    padding: 10px 30px;
    display: inline-block;
  }
}
.p-page-home-join__tel {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding-left: 38px;
  font-size: 32px;
  font-weight: bold;
  background: url(../img/icon_cta-phone.svg) left center no-repeat;
}
@media (max-width: 499px) {
  .p-page-home-join__tel {
    font-size: 26px;
  }
}
.p-page-home-join__hours {
  margin-top: 5px;
  font-size: 10px;
}
@media (max-width: 991px) {
  .p-page-home-join__human {
    margin-top: 15px;
  }
}
@media (min-width: 992px) {
  .p-page-home-join__human {
    position: absolute;
    right: -118px;
    bottom: 0;
  }
}
@media (max-width: 1199px) {
  .p-page-home-join__human {
    width: 50%;
    right: -15px;
  }
}
@media (max-width: 991px) {
  .p-page-home-join__human {
    width: auto;
  }
}

.p-activity-search-form {
  background: #fff;
  padding: 0 0 30px 0;
}
.p-activity-search-form dl {
  margin-top: 1px;
}
@media (min-width: 500px) {
  .p-activity-search-form dl {
    display: flex;
  }
}
.p-activity-search-form dl dt {
  display: flex;
  padding: 15px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #333;
}
@media (min-width: 500px) {
  .p-activity-search-form dl dt {
    width: 10em;
  }
}
.p-activity-search-form dl dd {
  padding: 15px 35px;
  flex-grow: 1;
  line-height: 1.8;
}
.p-activity-search-form dl label {
  display: inline-block;
  margin-right: 1em;
}
@media (max-width: 499px) {
  .p-activity-search-form dl label {
    text-indent: -1.8em;
    padding-left: 1.8em;
  }
}
.p-activity-search-form input[type=checkbox] {
  margin-right: 0.8em;
}
.p-activity-search-form input[type=submit] {
  background: #e39e30;
}
.p-activity-search-form input[type=submit]:hover {
  background: #f4ac4e;
}
.p-activity-search-form select {
  padding: 5px;
  border: 1px solid #CCC;
}
.p-activity-search-form .p-activity-search-form__tax-area dt {
  background: #356cb1;
}
.p-activity-search-form .p-activity-search-form__tax-committee dt {
  background: #d13a51;
}
.p-activity-search-form .p-activity-search-form__tax-cat dt {
  background: #ddb71f;
}
.p-activity-search-form__between {
  display: inline-block;
  margin: 0 0.5em;
}
.p-activity-search-form__searchfield {
  border: 1px solid #CCC;
  width: 100%;
  font-size: 18px;
  padding: 0 10px;
  line-height: 2;
}
.p-activity-search-form__searchsubmit {
  width: 100%;
  padding: 20px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  background: #e19c30;
  border: 0;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-activity-search-form__searchsubmit:hover {
  background: #f4ac4e;
}

.p-activity-search-form__submit-wrap {
  position: relative;
  max-width: 300px;
  margin: 0 auto;
}
.p-activity-search-form__submit-wrap:after {
  content: "";
  height: 20px;
  width: 20px;
  position: absolute;
  pointer-events: none;
  background-image: url("../img/search.svg");
  background-size: contain;
  right: 44px;
  top: 50%;
  margin-top: -12px;
}

.p-activity-search-result__searched-count {
  margin: 30px 0;
}

.p-archive-activity-item {
  border-top: 1px solid #ccc;
  padding: 15px 0;
}
@media (max-width: 499px) {
  .p-archive-activity-item {
    padding: 25px 0 10px 0;
  }
}
.p-archive-activity-item > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  text-decoration: none;
  color: #333;
}
@media (min-width: 500px) {
  .p-archive-activity-item > a {
    flex-direction: row;
  }
}
@media (max-width: 499px) {
  .p-archive-activity-item > a {
    gap: 0;
  }
}
.p-archive-activity-item .js-link:hover {
  opacity: 0.8;
}
@media (min-width: 500px) {
  .p-archive-activity-item__thumbnail {
    width: 20%;
    flex-shrink: 0;
  }
  .p-archive-activity-item__thumbnail img {
    object-fit: cover;
    width: 100%;
    height: auto;
    aspect-ratio: 4/4;
  }
}
.p-archive-activity-item__body {
  flex-grow: 1;
  padding: 15px 0;
  width: 100%;
}
@media (min-width: 500px) {
  .p-archive-activity-item__body {
    padding: 20px;
  }
}
.p-archive-activity-item__area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-item__area > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #356cb1;
}
.p-archive-activity-item__committee {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-item__committee > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #d13a51;
}
.p-archive-activity-item__cat {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-item__cat > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #ddb71f;
}
.p-archive-activity-item__time {
  color: #808080;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
}
.p-archive-activity-item__title {
  margin-top: 10px;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: bold;
}
@media (max-width: 499px) {
  .p-archive-activity-item__title {
    margin-bottom: 12px;
    font-size: 19px;
  }
}

.p-archive-activity-card-item a {
  display: block;
  height: 100%;
  text-decoration: none;
  background: #fff;
}
.p-archive-activity-card-item a:hover .p-archive-activity-card-item__image-area {
  transform: scale(1.05);
}
.p-archive-activity-card-item .js-link:hover {
  opacity: 0.8;
}
.p-archive-activity-card-item__image {
  position: relative;
  overflow: hidden;
}
.p-archive-activity-card-item__image-area {
  background: no-repeat center;
  background-size: cover;
  aspect-ratio: 1/1;
  -webkit-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
@media (max-width: 499px) {
  .p-archive-activity-card-item__image-area {
    height: 290px;
    width: 100%;
    object-fit: cover;
  }
}
.p-archive-activity-card-item__default-cat {
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 13px;
  line-height: 1;
  padding: 15px;
  z-index: 1;
}
.p-archive-activity-card-item__default-cat.cat-1 {
  background: #d13a51;
}
.p-archive-activity-card-item__default-cat.cat-2 {
  background: #356cb1;
}
.p-archive-activity-card-item__default-cat.cat-3 {
  background: #ddb71f;
}
.p-archive-activity-card-item__body {
  padding: 15px 12px 12px;
}
.p-archive-activity-card-item__time {
  color: #808080;
  font-size: 12px;
  line-height: 1;
}
.p-archive-activity-card-item__ttl {
  margin-top: 10px;
  color: #333;
  font-size: 17px;
  font-weight: bold;
}
@media (max-width: 499px) {
  .p-archive-activity-card-item__ttl {
    font-size: 19px;
  }
}
.p-archive-activity-card-item__tax {
  margin-top: 20px;
  color: #333;
}
@media (max-width: 499px) {
  .p-archive-activity-card-item__tax {
    margin-top: 12px;
  }
}
.p-archive-activity-card-item__area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-card-item__area > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #356cb1;
}
.p-archive-activity-card-item__committee {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-card-item__committee > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #d13a51;
}
.p-archive-activity-card-item__cat {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.p-archive-activity-card-item__cat > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #ddb71f;
}

.p-single-activity-report__title {
  margin-top: 40px;
  line-height: 1.4;
}
.p-single-activity-report__heading {
  margin-top: 10px;
  font-size: 25px;
  padding-bottom: 16px;
  border-bottom: 3px solid #2a8732;
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  .p-single-activity-report__heading {
    font-size: 28px;
  }
}
.p-single-activity-report__area {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
}
.p-single-activity-report__area > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #356cb1;
}
.p-single-activity-report__committee {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
}
.p-single-activity-report__committee > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #d13a51;
}
.p-single-activity-report__cat {
  margin-top: 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  font-size: 14px;
}
.p-single-activity-report__cat > * {
  padding: 6px 10px 8px;
  color: #fff;
  line-height: 1;
  background: #ddb71f;
}
.p-single-activity-report__time {
  font-family: "Noto Sans JP", sans-serif;
  font-family: "Open Sans", sans-serif;
  font-size: 15px;
  color: #808080;
}
.p-single-activity-report__lead {
  display: flex;
}
.p-single-activity-report__lead__inner {
  width: max-content;
  border: 1px solid #2a8732;
  margin-top: 20px;
  padding: 10px 20px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 499px) {
  .p-single-activity-report__lead__inner {
    padding: 10px 10px;
    display: block;
    width: 100%;
  }
}
.p-single-activity-report__lead dl {
  display: flex;
  border-bottom: 0;
  font-size: 14px;
}
.p-single-activity-report__lead dl:first-child {
  border-top: none;
}
.p-single-activity-report__lead dl:last-child {
  border-bottom: 0;
}
@media (max-width: 499px) {
  .p-single-activity-report__lead dl {
    font-size: 14px;
  }
}
.p-single-activity-report__lead dt {
  text-align: center;
  padding: 6px 20px;
  padding-right: 0;
  position: relative;
  white-space: nowrap;
}
.p-single-activity-report__lead dt:before {
  content: "";
  height: 8px;
  width: 8px;
  border-radius: 20px;
  position: absolute;
  top: 14px;
  left: 6px;
  background-color: #2a8732;
}
.p-single-activity-report__lead dd {
  padding: 6px 20px;
  padding-left: 0;
}
@media (max-width: 499px) {
  .p-single-activity-report__lead dd {
    padding: 6px 10px;
    padding-left: 0;
  }
}
.p-single-activity-report__content {
  margin-top: 60px;
  margin-bottom: 100px;
}
.p-single-activity-report__nextprev-link .c-container {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .p-single-activity-report__nextprev-link .c-container {
    width: calc(100% - 30px);
  }
}
.p-single-activity-report__nextprev-link-nav-previous {
  display: flex;
}
.p-single-activity-report__nextprev-link-nav-previous a {
  border: 1px solid #e9e9e9;
  padding: 20px 30px 20px 40px;
  text-decoration: none;
  width: 98%;
  font-size: 14px;
  color: #333333;
  line-height: 1.9;
  max-width: 570px;
}
@media (min-width: 800px) {
  .p-single-activity-report__nextprev-link-nav-previous a {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .p-single-activity-report__nextprev-link-nav-previous a {
    padding: 20px 16px 20px 20px;
    font-size: 14px;
  }
}
.p-single-activity-report__nextprev-link-nav-previous a:hover {
  opacity: 0.7;
}
.p-single-activity-report__nextprev-link-nav-previous a span {
  font-size: 16px;
  display: block;
  position: relative;
  margin-bottom: 4px;
}
.p-single-activity-report__nextprev-link-nav-previous a span:before {
  content: "";
  display: block;
  position: absolute;
  left: -14px;
  top: 0;
  height: 100%;
  width: 6px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
  background-size: contain;
  transform: rotate(180deg);
}
.p-single-activity-report__nextprev-link-nav-next {
  display: flex;
  justify-content: flex-end;
}
.p-single-activity-report__nextprev-link-nav-next a {
  border: 1px solid #e9e9e9;
  padding: 20px 40px 20px 30px;
  text-decoration: none;
  width: 98%;
  margin-left: 2%;
  font-size: 14px;
  text-align: right;
  color: #333333;
  line-height: 1.9;
  text-align: left;
  max-width: 570px;
}
@media (min-width: 800px) {
  .p-single-activity-report__nextprev-link-nav-next a {
    max-width: 450px;
  }
}
.p-single-activity-report__nextprev-link-nav-next a:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .p-single-activity-report__nextprev-link-nav-next a {
    padding: 20px 20px 20px 16px;
    font-size: 14px;
  }
}
.p-single-activity-report__nextprev-link-nav-next a span {
  font-size: 16px;
  display: block;
  position: relative;
  text-align: right;
  margin-bottom: 4px;
}
.p-single-activity-report__nextprev-link-nav-next a span:before {
  content: "";
  display: block;
  position: absolute;
  right: -14px;
  top: 0;
  height: 100%;
  width: 6px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
  background-size: contain;
}
.p-single-activity-report__backlink a {
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
}
.p-single-activity-report__backlink a:hover {
  background: #f4ac4e;
}
.p-single-activity-report h2.wp-block-heading {
  margin-top: 60px;
  padding-left: 12px;
  color: #485449;
  line-height: 1.2;
  border-left: 5px solid #2a8732;
}
.p-single-activity-report h2.wp-block-heading .wp-block-heading__inner {
  font-size: 27px;
  color: #485449;
  border-top: 0;
  border-bottom: 0;
  padding: 0;
}
@media (max-width: 499px) {
  .p-single-activity-report h2.wp-block-heading .wp-block-heading__inner {
    font-size: 24px;
  }
}
.p-single-activity-report h2.wp-block-heading .wp-block-heading__inner::after {
  display: none;
}
.p-single-activity-report h2.wp-block-heading + .wp-block-media-text {
  margin-top: 30px;
}
.p-single-activity-report h3.wp-block-heading {
  margin-top: 40px;
  color: #333333;
  font-size: 19px;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 0;
  border-left: 0;
}
.p-single-activity-report h3.wp-block-heading + .wp-block-media-text {
  margin-top: 20px;
}
.p-single-activity-report h4.wp-block-heading {
  margin-top: 30px;
  color: #333333;
  font-size: 18px;
}
.p-single-activity-report .wp-block-image {
  margin-top: 1em;
}
.p-single-activity-report .js-link {
  cursor: pointer;
}
.p-single-activity-report .js-link:hover {
  opacity: 0.8;
}
.p-single-activity-report .wp-block-columns .wp-block-column:first-child .wp-block-image {
  margin-top: 0;
}
@media (min-width: 940px) {
  .p-single-activity-report .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide), .p-single-activity-report .wp-block-group.alignwide .wp-block-group__inner-container > * {
    width: 900px;
  }
}

.p-single-activity-report__nextprev-link {
  width: 100%;
}
@media (min-width: 940px) {
  .p-single-activity-report__nextprev-link {
    width: 900px;
    margin: 0 auto;
  }
}

.p-single-voice__heading {
  margin-top: 10px;
  font-size: 25px;
  padding-bottom: 16px;
  border-bottom: 3px solid #2a8732;
  margin-bottom: 20px;
}
@media (min-width: 500px) {
  .p-single-voice__heading {
    font-size: 28px;
  }
}
.p-single-voice__detail {
  max-width: 800px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  background: #eaeaea;
  align-items: center;
  justify-content: space-between;
  font-size: 16px;
  line-height: 1.7;
}
@media (min-width: 500px) {
  .p-single-voice__detail {
    flex-direction: row-reverse;
  }
}
@media (min-width: 500px) and (max-width: 800px) {
  .p-single-voice__detail > * {
    width: 50%;
  }
}
.p-single-voice__detail-image {
  text-align: center;
}
.p-single-voice__detail-text {
  margin: 30px 0;
  flex-grow: 1;
  text-align: center;
}
.p-single-voice__detail-name {
  font-size: 14px;
}
.p-single-voice__detail-name span {
  font-size: 18px;
}
.p-single-voice__content {
  margin-top: 60px;
  margin-bottom: 100px;
}
.p-single-voice__nextprev-link .c-container {
  display: flex;
  max-width: 1140px;
  margin: 0 auto;
}
@media (max-width: 1199px) {
  .p-single-voice__nextprev-link .c-container {
    width: calc(100% - 30px);
  }
}
.p-single-voice__nextprev-link-nav-previous {
  display: flex;
}
.p-single-voice__nextprev-link-nav-previous a {
  border: 1px solid #e9e9e9;
  padding: 20px 30px 20px 40px;
  text-decoration: none;
  width: 98%;
  font-size: 14px;
  color: #333333;
  line-height: 1.9;
  max-width: 570px;
}
@media (min-width: 800px) {
  .p-single-voice__nextprev-link-nav-previous a {
    max-width: 450px;
  }
}
@media (max-width: 991px) {
  .p-single-voice__nextprev-link-nav-previous a {
    padding: 20px 16px 20px 20px;
    font-size: 14px;
  }
}
.p-single-voice__nextprev-link-nav-previous a:hover {
  opacity: 0.7;
}
.p-single-voice__nextprev-link-nav-previous a span {
  font-size: 16px;
  display: block;
  position: relative;
  margin-bottom: 4px;
}
.p-single-voice__nextprev-link-nav-previous a span:before {
  content: "";
  display: block;
  position: absolute;
  left: -14px;
  top: 0;
  height: 100%;
  width: 6px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
  background-size: contain;
  transform: rotate(180deg);
}
.p-single-voice__nextprev-link-nav-next {
  display: flex;
  justify-content: flex-end;
}
.p-single-voice__nextprev-link-nav-next a {
  border: 1px solid #e9e9e9;
  padding: 20px 40px 20px 30px;
  text-decoration: none;
  width: 98%;
  margin-left: 2%;
  font-size: 14px;
  text-align: right;
  color: #333333;
  line-height: 1.9;
  text-align: left;
  max-width: 570px;
}
@media (min-width: 800px) {
  .p-single-voice__nextprev-link-nav-next a {
    max-width: 450px;
  }
}
.p-single-voice__nextprev-link-nav-next a:hover {
  opacity: 0.7;
}
@media (max-width: 991px) {
  .p-single-voice__nextprev-link-nav-next a {
    padding: 20px 20px 20px 16px;
    font-size: 14px;
  }
}
.p-single-voice__nextprev-link-nav-next a span {
  font-size: 16px;
  display: block;
  position: relative;
  text-align: right;
  margin-bottom: 4px;
}
.p-single-voice__nextprev-link-nav-next a span:before {
  content: "";
  display: block;
  position: absolute;
  right: -14px;
  top: 0;
  height: 100%;
  width: 6px;
  background: url(../img/icon_arrow.svg) no-repeat left center;
  background-size: contain;
}
.p-single-voice__backlink a {
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
  text-align: center;
  margin: 0 auto;
  margin-top: 30px;
  display: block;
}
.p-single-voice__backlink a:hover {
  background: #f4ac4e;
}
@media (min-width: 940px) {
  .p-single-voice .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  .p-single-voice .wp-block-group.alignwide .wp-block-group__inner-container > * {
    width: 900px;
  }
}

.p-single-voice__nextprev-link {
  width: 100%;
}
@media (min-width: 940px) {
  .p-single-voice__nextprev-link {
    width: 900px;
    margin: 0 auto;
  }
}

.p-archive-area-report-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 500px) {
  .p-archive-area-report-items {
    flex-direction: row;
  }
}

.p-archive-area-report-item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-archive-area-report-item {
    width: calc((100% - 30px) / 2);
  }
}
.p-archive-area-report-item__card {
  display: flex;
  justify-content: center;
}
.p-archive-area-report-item h3.wp-block-heading small {
  font-size: 0.8em;
}
.p-archive-area-report-item__image {
  margin-top: 20px;
  text-align: center;
}
.p-archive-area-report-item__image a img {
  border: 1px solid #cccccc;
}
.p-archive-area-report-item__more {
  margin-top: 20px;
  text-align: center;
}
.p-archive-area-report-item__more a {
  display: inline-block;
  width: 230px;
  padding: 22px;
  color: #fff;
  font-size: 16px;
  text-decoration: none;
  background: #e39e30;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.p-archive-area-report-item__more a:hover {
  background: #f4ac4e;
}

.p-archive-area-report-area-items {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 500px) {
  .p-archive-area-report-area-items {
    flex-direction: row;
  }
}

.p-archive-area-report-area-item {
  display: flex;
  flex-direction: column;
}
@media (min-width: 500px) {
  .p-archive-area-report-area-item {
    width: calc((100% - 60px) / 3);
  }
}
.p-archive-area-report-area-item__image {
  margin-top: 20px;
}
.p-archive-area-report-area-item__image a img {
  border: 1px solid #cccccc;
}

.p-archive-voice-items {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 500px) {
  .p-archive-voice-items {
    flex-direction: row;
  }
}

.p-archive-voice-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #eaeaea;
}
@media (min-width: 500px) {
  .p-archive-voice-item {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (max-width: 700px) {
  .p-archive-voice-item {
    width: 100%;
  }
}
.p-archive-voice-item__body-top {
  padding-bottom: 40px;
}
.p-archive-voice-item figure {
  overflow: hidden;
}
.p-archive-voice-item figure img {
  width: 100%;
  height: 390px;
  object-fit: cover;
  object-position: top;
}
@media screen and (max-width: 1100px) {
  .p-archive-voice-item figure img {
    height: 260px;
  }
}
@media screen and (max-width: 700px) {
  .p-archive-voice-item figure img {
    height: 390px;
  }
}
@media (max-width: 499px) {
  .p-archive-voice-item figure img {
    height: 390px;
  }
}
.p-archive-voice-item__ttl {
  height: 115px;
  padding: 0 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ec9d2b;
  font-size: 22px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
}
@media screen and (max-width: 1100px) {
  .p-archive-voice-item__ttl {
    height: auto;
    padding: 0 20px;
    font-size: 19px;
    min-height: 120px;
  }
}
@media (max-width: 499px) {
  .p-archive-voice-item__ttl {
    padding: 0 30px;
    font-size: 22px;
    min-height: 115px;
  }
}
.p-archive-voice-item__detail {
  height: 5em;
  padding: 1em 30px 0 0;
  font-size: 15px;
  text-align: right;
  line-height: 1.4;
}
@media screen and (max-width: 1100px) {
  .p-archive-voice-item__detail {
    height: auto;
    padding: 0 20px;
  }
}
.p-archive-voice-item__detail-name {
  font-size: 13px;
}
.p-archive-voice-item__detail-name span {
  font-size: 18px;
}
.p-archive-voice-item__description {
  padding: 0 30px;
  color: #333;
  font-size: 16px;
}
@media screen and (max-width: 1100px) {
  .p-archive-voice-item__description {
    padding: 0 20px;
  }
}
@media (max-width: 499px) {
  .p-archive-voice-item__description {
    padding: 0 30px;
  }
}
.p-archive-voice-item__description p {
  margin-bottom: 1em;
}

.p-page-search__form-wrap {
  padding: 40px 0;
  background: #e9e9e9;
}

.p-wp-pagenavi {
  margin-top: 80px;
  margin-bottom: 80px;
}
.p-wp-pagenavi .wp-pagenavi {
  margin-top: 30px;
  clear: both;
  text-align: center;
}
@media (max-width: 991px) {
  .p-wp-pagenavi .wp-pagenavi {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 0 16px;
  }
}
@media (max-width: 499px) {
  .p-wp-pagenavi .wp-pagenavi {
    padding: 0 6px;
  }
}
.p-wp-pagenavi .wp-pagenavi a, .p-wp-pagenavi .wp-pagenavi > span {
  color: #999;
  background-color: #FFF;
  border: solid 1px #e0e0d2;
  padding: 8px 15px;
  margin: 0 2px;
  white-space: nowrap;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
  text-align: center;
  text-decoration: none;
}
@media (max-width: 991px) {
  .p-wp-pagenavi .wp-pagenavi a, .p-wp-pagenavi .wp-pagenavi > span {
    margin-bottom: 10px;
  }
}
.p-wp-pagenavi .wp-pagenavi a:hover {
  color: #FFF;
  background-color: #999;
  border-color: #999;
}
.p-wp-pagenavi .wp-pagenavi span.current {
  color: #FFF;
  background-color: #2a8732;
  border-color: #2a8732;
  font-weight: bold;
}

.p-sc-activity-report {
  gap: 30px;
  margin-top: 30px;
}
@media (min-width: 500px) {
  .p-sc-activity-report {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 499px) {
  .p-sc-activity-report {
    gap: 0;
  }
}
@media (min-width: 500px) {
  .p-sc-activity-report > * {
    width: calc((100% - 60px) / 3);
  }
}
@media (max-width: 499px) {
  .p-sc-activity-report article.p-archive-activity-card-item {
    margin-top: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #ccc;
  }
}
@media (max-width: 499px) {
  .p-sc-activity-report article.p-archive-activity-card-item:first-child {
    margin-top: 0;
  }
}
.p-sc-activity-report .p-archive-activity-card-item__body {
  padding: 15px 0;
}
@media (max-width: 499px) {
  .p-sc-activity-report .p-archive-activity-card-item__body {
    padding: 15px 0 0 0;
  }
}

.p-sc-area-items {
  margin-top: 40px;
  padding: 30px 0;
  background: #2a8b32;
}
.p-sc-area-items .c-container li {
  margin: 0;
  padding: 0;
}
.p-sc-area-items .c-container li:before {
  display: none;
}
.p-the-content .p-sc-area-items ul {
  margin-top: 0;
  padding-left: 0;
}

.p-sc-committee-items {
  padding: 30px 0;
  background: #2a8b32;
}
.p-sc-committee-items .c-container li {
  margin: 0;
  padding: 0;
}
.p-sc-committee-items .c-container li:before {
  display: none;
}
.p-the-content .p-sc-committee-items ul {
  margin-top: 0;
  padding-left: 0;
}

.p-sc-area-items-inner ul a {
  border: 1px solid #2a8732;
}
.p-sc-area-items-inner .c-container li {
  margin: 0;
  padding: 0;
}
.p-sc-area-items-inner .c-container li:before {
  display: none;
}
.p-the-content .p-sc-area-items-inner ul {
  margin-top: 0;
  padding-left: 0;
}

.p-sc-committee-items-inner ul a {
  border: 1px solid #2a8732;
}
.p-sc-committee-items-inner .c-container li {
  margin: 0;
  padding: 0;
}
.p-sc-committee-items-inner .c-container li:before {
  display: none;
}
.p-the-content .p-sc-committee-items-inner ul {
  margin-top: 0;
  padding-left: 0;
}

.p-sc-member-search__wrap {
  position: relative;
}
.p-sc-member-search__member {
  position: absolute;
  cursor: pointer;
}
.p-sc-member-search img {
  vertical-align: bottom;
}
.p-sc-member-search__sub-win-wrap {
  position: absolute;
  background: #fff;
  border: 1px solid #128e49;
  border-radius: 8px;
  overflow: hidden;
  font-size: 14px;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
}
.p-sc-member-search__sub-win {
  display: none;
  padding: 15px;
}

.p-sc-50mag {
  position: relative;
  max-width: 862px;
  margin-left: auto;
  margin-right: auto;
}
.p-sc-50mag img {
  border: 1px solid #ee7935;
}
.p-sc-50mag a {
  position: absolute;
}
.p-sc-50mag__link1 {
  width: 17%;
  height: 15%;
  left: 9%;
  bottom: 12%;
}
.p-sc-50mag__link2 {
  width: 17%;
  height: 15%;
  left: 29%;
  bottom: 12%;
}
.p-sc-50mag a:hover {
  background: rgba(255, 255, 255, 0.3);
}

.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=date],
.wpcf7 input[type=tel],
.wpcf7 textarea,
.wpcf7 select {
  display: block;
  width: 100%;
  height: 34px;
  padding: 6px 12px;
  font-size: 14px;
  line-height: 1.42857143;
  color: #555;
  background-color: #fff;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
}
.wpcf7 input[type=text]::-moz-placeholder,
.wpcf7 input[type=email]::-moz-placeholder,
.wpcf7 input[type=date]::-moz-placeholder,
.wpcf7 input[type=tel]::-moz-placeholder,
.wpcf7 textarea::-moz-placeholder,
.wpcf7 select::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.wpcf7 input[type=text]:-ms-input-placeholder,
.wpcf7 input[type=email]:-ms-input-placeholder,
.wpcf7 input[type=date]:-ms-input-placeholder,
.wpcf7 input[type=tel]:-ms-input-placeholder,
.wpcf7 textarea:-ms-input-placeholder,
.wpcf7 select:-ms-input-placeholder {
  color: #999;
}
.wpcf7 input[type=text]::-webkit-input-placeholder,
.wpcf7 input[type=email]::-webkit-input-placeholder,
.wpcf7 input[type=date]::-webkit-input-placeholder,
.wpcf7 input[type=tel]::-webkit-input-placeholder,
.wpcf7 textarea::-webkit-input-placeholder,
.wpcf7 select::-webkit-input-placeholder {
  color: #999;
}
.wpcf7 textarea {
  height: auto;
}
.wpcf7 dl {
  margin-bottom: 20px;
  overflow: hidden;
  *zoom: 1;
}
@media (min-width: 1330px) {
  .wpcf7 dl {
    margin-bottom: 15px;
  }
}
.wpcf7 dl:after {
  content: "";
  display: table;
  clear: both;
}
@media (max-width: 1199px) {
  .wpcf7 dt {
    margin-bottom: 5px;
  }
}
@media (min-width: 1330px) {
  .wpcf7 dt {
    float: left;
    width: 25%;
    padding-top: 7px;
    padding-right: 30px;
    text-align: right;
  }
}
@media (min-width: 1330px) {
  .wpcf7 dd {
    float: left;
    width: 75%;
  }
}
@media (min-width: 1330px) {
  .wpcf7 .wpcf7-radio {
    overflow: hidden;
    *zoom: 1;
    display: block;
    padding-top: 7px;
  }
  .wpcf7 .wpcf7-radio:after {
    content: "";
    display: table;
    clear: both;
  }
}
.wpcf7 .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
}
.wpcf7 .wpcf7-checkbox {
  margin-top: 7px;
}
@media (max-width: 499px) {
  .wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-direction: column;
  }
}
.wpcf7 .wpcf7-checkbox .wpcf7-list-item {
  text-indent: -24px;
  padding-left: 24px;
  margin-bottom: 0.3em;
}
.wpcf7 .wpcf7-checkbox label,
.wpcf7 .wpcf7-radio label {
  position: relative;
  font-weight: normal;
  padding-left: 20px;
}
.wpcf7 .wpcf7-checkbox input,
.wpcf7 .wpcf7-radio input {
  margin-left: -15px;
  position: absolute;
}
.wpcf7 .checkbox input[type=checkbox],
.wpcf7 .checkbox-inline input[type=checkbox],
.wpcf7 .radio input[type=radio],
.wpcf7 .radio-inline input[type=radio] {
  margin-left: -20px;
  position: absolute;
}

input[type=submit] {
  /*デフォルトのスタイルを無効化する*/
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 0;
  background-color: #2a8732;
  background-color: #2db30f;
  border: none;
  color: #fff;
  cursor: pointer;
  margin-top: 30px;
}

.post-password-form input[type=submit] {
  height: 40px;
  margin-top: 0;
  padding: 0 40px;
}
.post-password-form input[type=password] {
  height: 40px;
}

.wpcf7 .required {
  color: red;
  font-size: 17px;
}
.wpcf7 p {
  margin-top: 0;
}
.wpcf7 .wpcf7-checkbox input {
  margin-left: -17px;
  position: absolute;
  margin-top: 9px;
}
@media (max-width: 499px) {
  .wpcf7 .wpcf7-checkbox input {
    margin-left: -20px;
  }
}
.wpcf7 .wpcf7-form-control {
  min-height: 50px;
}
.wpcf7 .pointer .wpcf7-list-item {
  margin-left: 0em;
}
.wpcf7 .wpcf7-submit {
  transition: 0.6s;
}
.wpcf7 .wpcf7-submit:hover {
  opacity: 0.7;
}
.wpcf7 .wpcf7-submit:disabled {
  background: #465841;
  opacity: 0.6;
}
.wpcf7 .wpcf7-submit:disabled:hover {
  opacity: 0.6;
}

p.form-sub-text {
  font-size: 15px;
}

.required {
  color: red;
}

h2.wp-block-heading + .wpcf7 {
  margin-top: 40px;
}

p + .wpcf7 {
  margin-top: 40px;
}

.w70-group .wp-block-group__inner-container {
  max-width: 76%;
}
@media (max-width: 1199px) {
  .w70-group .wp-block-group__inner-container {
    max-width: 100%;
  }
}

dd.wpcf7-btn {
  text-align: center;
  width: 100%;
}
dd.wpcf7-btn .wpcf7-spinner {
  display: block;
}

#wp_Plugin_Mailform.contactContent-confirm .contactForm dd {
  padding: 5px 10px;
  background: #eee;
  border-radius: 4px;
}

/*-------------------
* component
-------------------*/
.c-container > * {
  margin-left: auto;
  margin-right: auto;
}

.wp-block-group.alignfull .wp-block-group__inner-container > * {
  margin-left: auto;
  margin-right: auto;
}

.c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
.wp-block-group.alignwide .wp-block-group__inner-container > * {
  width: calc(100% - 30px);
}
@media (min-width: 1200px) {
  .c-container > *:not(.alignwide):not(.alignfull):not(.alignleft):not(.alignright):not(.is-style-wide),
  .wp-block-group.alignwide .wp-block-group__inner-container > * {
    width: 1140px;
  }
}