@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap");
html {
  font-size: 16px;
}

*:where(:not(html, iframe, canvas, img, svg, video, audio):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

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

a, button {
  cursor: revert;
}

ol, ul, menu {
  list-style: none;
}

img {
  max-width: 100%;
}

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

input, textarea {
  -webkit-user-select: auto;
}

textarea {
  white-space: revert;
}

meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

::-webkit-input-placeholder {
  color: unset;
}

::-moz-placeholder {
  color: unset;
}

:-ms-input-placeholder {
  color: unset;
}

::-ms-input-placeholder {
  color: unset;
}

::placeholder {
  color: unset;
}

:where([hidden]) {
  display: none;
}

:where([contenteditable]:not([contenteditable=false])) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
  -webkit-user-select: auto;
}

:where([draggable=true]) {
  -webkit-user-drag: element;
}

a {
  color: #000;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #efefef inset;
          box-shadow: 0 0 0px 1000px #efefef inset;
  -webkit-transition: background-color 10000s ease-in-out 0s;
  transition: background-color 10000s ease-in-out 0s;
}

body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 100vh;
  font-family: "Noto Sans", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.8;
}

/*-------------------------------
header
--------------------------------*/
header {
  position: fixed;
  top: 0;
  z-index: 7777;
  width: 100vw;
  overflow: visible;
  -webkit-filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
          filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
  /* Hamburger menu button */
  /* Hamburger menbu text */
  /* Hamburger Menu Animation Start */
}
header nav {
  height: auto;
  margin: 0 auto;
  width: 100%;
  color: #000;
  background-color: #fff;
  overflow: visible;
}
header nav li a,
header nav li {
  color: #000;
  font-size: 0.875rem;
}
header nav li {
  -ms-flex-item-align: stretch;
      align-self: stretch;
  margin-bottom: 3px;
  padding: 0 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header nav li.current {
  border-bottom: 2px solid #ee4d00;
}
header nav li:not(.current) {
  border-bottom: 2px solid transparent;
}
header .navUpr {
  height: 70px;
  border-bottom: 1px solid #4fa4ae;
  z-index: 7777;
  position: relative;
}
header .navUpr .flxWrap {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 1280px;
  margin: 0 auto;
  width: calc(100% - 40px);
  position: relative;
}
header .navUpr .imgWrap {
  margin: 0 auto;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
header .navUpr .imgWrap h1 {
  aspect-ratio: 474/32;
}
header .navUpr .imgWrap img {
  display: block;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
header .navUpr .headSns {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
header .navUpr .headSns li {
  width: 45px;
  margin-right: 8px;
}
header .navUpr .headSns li:last-child {
  margin-right: 0;
  width: 40px;
}
header .navUpr .headSns li a {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
header .navUpr .headSns li a img {
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center center;
     object-position: center center;
}
header .navLwr {
  height: 50px;
}
header .navLwr .navList {
  height: 100%;
  margin: 0 auto;
  width: calc(100% - 40px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 18px;
     -moz-column-gap: 18px;
          column-gap: 18px;
}
header .menu_on_mobile {
  display: none;
  pointer-events: none;
  z-index: 7779;
}
header .spmenu {
  overflow: hidden;
  overflow: visible;
  list-style: none;
  position: absolute;
  width: 100%;
  height: 100vh;
  top: 0;
  margin-top: 70px;
  padding: 20px 0 10px 20px;
  background-color: #fff;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  -webkit-transform: scale(1, 0);
          transform: scale(1, 0);
  -webkit-transform-origin: top;
          transform-origin: top;
}
header .menu-btn:checked ~ .spmenu {
  background-color: #fff;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .spmenu a {
  pointer-events: all;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 2px;
  font-size: 16px;
  color: #1f1f1f;
  display: block;
  width: 100%;
  padding: 5px 0;
}
header .spmenu li {
  padding: 10px 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
header .spmenu li .sns {
  background-color: pink;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
header .spmenu li .sns > div {
  width: 30px;
  height: 30px;
}
header .spmenu li .sns > div a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: pink;
}
header .spmenu li .sns > div a img {
  display: block;
  width: 100%;
  height: 100%;
}
header .menu-btn:checked ~ .spmenu a,
header .menu-btn:checked ~ .spmenu li {
  opacity: 1;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
header .menu-btn {
  display: none;
}
header .menu-icon {
  pointer-events: all;
  display: inline-block;
  position: absolute;
  right: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
  padding: 24px 14px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
header .navicon {
  display: block;
  height: 3px;
  width: 26px;
  position: relative;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .navicon:before,
header .navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: #090305;
  -webkit-transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
header .navicon:before {
  top: 4px;
}
header .navicon:after {
  bottom: 4px;
}
header .menu-btn:checked ~ .menu-icon .navicon:before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .menu-btn:checked ~ .menu-icon .navicon:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
header .menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}
header .menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  -webkit-transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/*-------------------------------
breadcrumb
--------------------------------*/
.breadcrumb {
  max-width: 1680px;
  width: calc(100% - 40px);
  margin: 3em auto 1em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.breadcrumb li {
  display: block;
}
.breadcrumb li a {
  text-decoration: none;
}
.breadcrumb li + li::before {
  content: ">";
  margin: 0.5em;
}

/*-------------------------------
footer
--------------------------------*/
footer {
  background-color: #fff;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 30px;
  height: 360px;
  background: url(../images/footerTopImg.jpg.webp) repeat-x top center;
  background-size: auto 30px;
}
.no-webp footer {
  background: url(../images/footerTopImg.jpg) repeat-x top center;
  background-size: auto 30px;
}
footer .footerUpr {
  max-width: 2600px;
  margin: 0 auto;
  padding: 0 20px 20px;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerUpr .sideL {
  max-width: 340px;
  width: 30vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerUpr .sideL .footLogo {
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerUpr .sideL .footLogo img {
  display: block;
  height: 100%;
  width: auto;
}
footer .footerUpr .sideR {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
footer .footerUpr .sideR .footLink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
footer .footerUpr .sideR .footLink li {
  padding: 0 10px;
  line-height: 1;
  border-right: 1px solid #000;
}
footer .footerUpr .sideR .footLink li:last-child {
  border-right: none;
}
footer .footerUpr .sideR .policy {
  -ms-flex-item-align: end;
      align-self: flex-end;
  margin-top: 45px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
footer .footerUpr .sideR .policy a {
  position: relative;
}
footer .footerUpr .sideR .policy a::before {
  position: absolute;
  top: 50%;
  left: -40px;
  pointer-events: none;
  cursor: default;
  content: "";
  display: block;
  width: 30px;
  height: 2px;
  margin-right: 10px;
  background-color: #101010;
}
footer .footerLwr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  padding: 0 20px 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-weight: 600;
  text-align: center;
}
footer .footerLwr .ms_disp {
  display: none;
}

/* Clearfix */
.clearfix::before,
.clearfix::after {
  content: "";
  display: block;
  overflow: hidden;
}

.clearfix::after {
  clear: both;
}

a {
  text-decoration: none;
}

img {
  display: block;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  min-height: 0%;
}

ul,
ol {
  list-style: none;
}

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

.pc_disp {
  display: block;
}

.sp_disp {
  display: none;
}

.br_disp_580 {
  display: none;
}

.br_maxw767_hide {
  display: inline;
}

.br_x_disp {
  display: none;
}

.br_disp_767 {
  display: none;
}

.contents {
  margin: 0 auto;
  max-width: 3840px;
  width: 100%;
  margin-top: 120px;
}

h2 {
  font-size: 1.875rem;
  display: block;
  text-align: center;
}

/* pタグ */
p {
  font-size: 1.125rem;
}

/** リンクボタン ***/
.btnLinkTo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 4em auto;
}
.btnLinkTo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 10px;
  border: 1px solid #e6e6e2;
  width: 340px;
  height: 40px;
  font-size: 1rem;
  position: relative;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  padding-right: 2em;
  text-decoration: none !important;
}
.btnLinkTo a::after {
  content: "";
  position: absolute;
  display: block;
  width: 10%;
  height: 100%;
  right: 3%;
  top: 0;
  background: url(../images/svg/r_arrow_blk.svg) no-repeat center/contain;
}
.btnLinkTo.navy a, .btnLinkTo.valencia a {
  border: none;
  background-color: #1A265B;
  color: #fff;
}
.btnLinkTo.navy a::after, .btnLinkTo.valencia a::after {
  background-image: url(../images/svg/r_arrow_wht.svg);
}
.btnLinkTo.valencia a {
  padding: 20px 0;
  border: 2px solid #f7a680;
  background-color: transparent;
}

/*** top common ***/
.titleWrap.top {
  width: 100%;
  margin-bottom: 80px;
}
.titleWrap.top .secSttl {
  display: block;
  text-align: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}
.titleWrap.top .h2Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-itemaxw767: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
.titleWrap.top .h2Wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  top: 50%;
  background-color: #4fa4ae;
}
.titleWrap.top h2 {
  color: #ee4d00;
  font-weight: 600;
  background-color: #fff;
  padding: 0 20px;
  line-height: 1.3;
  z-index: 1;
}

/*** titleWrap ***/
.titleWrap:not(.top) {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto 65px;
}
.titleWrap:not(.top) .secSttl {
  display: block;
  text-align: center;
  font-weight: 600;
  font-size: max(1.25rem, min(1.042rem + 1.04vw, 1.875rem));
}
.titleWrap:not(.top) .h2Wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-itemaxw767: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  padding-bottom: 65px;
  border-bottom: 1px solid #4fa4ae;
}
.titleWrap:not(.top) h2 {
  font-weight: 600;
  padding: 0 20px;
  line-height: 1.4;
  font-size: max(1.875rem, min(1.563rem + 1.56vw, 2.813rem));
}
.titleWrap:not(.top) .h2Wrap:not(.singlepage) h2 {
  color: #ee4d00;
}
.titleWrap:not(.top) .h2Wrap.singlepage h2 {
  font-size: max(1.25rem, min(0.938rem + 1.56vw, 2.188rem));
}

/*** 会員募集のご案内  ***/
.secMemberRecruitment {
  background-color: #ee4d00;
  margin: 100px 0;
}
.secMemberRecruitment .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 50px 0;
  width: calc(100% - 40px);
}
.secMemberRecruitment .inner h2 {
  color: #fff;
  margin-bottom: 1em;
}
.secMemberRecruitment .inner p {
  color: #fff;
  margin: 0 auto;
  width: calc(100% - 100px);
}
.secMemberRecruitment .inner .btnLinkTo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 65px;
  padding-right: 1em;
}

/*** お問い合わせ ***/
.secContacts {
  margin: 100px 0;
}
.secContacts .inner {
  max-width: 980px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background-color: #f2f0e8;
  padding: 50px 70px 40px;
}
.secContacts .inner .flxWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  border-bottom: 1px solid #fff;
  padding-bottom: 20px;
}
.secContacts .inner > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}
.secContacts .inner h2 {
  margin-bottom: 1em;
  text-align: center;
  font-weight: 600;
}
.secContacts .inner .right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  align-itemaxw767: center;
  margin-left: 40px;
}
.secContacts .inner .right .btnLinkTo {
  width: calc(100% - 40px);
  max-width: 340px;
}
.secContacts .inner .left p {
  margin-bottom: 20px;
}
.secContacts .inner .btnLinkTo {
  margin: 0 auto;
}

/*** pagination ***/
.pagination {
  margin: 20px auto 0;
  text-align: center;
  font-size: 1rem;
}

.nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  line-height: 1;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-right: -15px;
}

.pagination .page-numbers {
  display: block;
  color: #ee4d00;
  border-radius: 3px;
  -webkit-box-shadow: 0 3px 3px #999;
          box-shadow: 0 3px 3px #999;
  background: #fff;
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
  border: 1px solid #ee4d00;
  padding: 10px 13px;
  margin-right: 15px;
}

.pagination .current {
  background: #ee4d00;
  color: #fff;
}

.pagination .prev,
.pagination .next {
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  color: #ee4d00;
  -webkit-box-shadow: 0 3px 3px #999;
          box-shadow: 0 3px 3px #999;
}

.pagination .dots {
  display: block;
  background: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  padding-left: 0;
  padding-right: 0;
}

.form_inner {
  margin: 50px auto;
  max-width: 800px;
  width: calc(100% - 40px);
}

.form_inner ::-webkit-input-placeholder {
  font-family: "Noto Sans JP";
  color: gray;
  font-size: 0.875rem;
}
.form_inner ::-moz-placeholder {
  font-family: "Noto Sans JP";
  color: gray;
  font-size: 0.875rem;
}
.form_inner :-ms-input-placeholder {
  font-family: "Noto Sans JP";
  color: gray;
  font-size: 0.875rem;
}
.form_inner ::-ms-input-placeholder {
  font-family: "Noto Sans JP";
  color: gray;
  font-size: 0.875rem;
}
.form_inner ::placeholder {
  font-family: "Noto Sans JP";
  color: gray;
  font-size: 0.875rem;
}
.form_inner input,
.form_inner textarea {
  border: none;
  padding: 10px;
  font-family: "Noto Sans JP";
}
.form_inner .form_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  margin: 30px 0;
}
.form_inner .form_item .head {
  width: 280px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-right: 10px;
  font-size: 1.125rem;
}
.form_inner .form_item .head label {
  height: 30px;
  line-height: 30px;
  margin-right: 5px;
}
.form_inner .form_item .head .require {
  margin-top: 3px;
  font-size: 0.875rem;
  color: #fff;
  background-color: #ff6868;
  padding: 3px 10px;
  border-radius: 3px;
}
.form_inner .form_item .body {
  width: 100%;
  overflow: hidden;
  border-radius: 3px;
}
.form_inner .form_item .body span,
.form_inner .form_item .body input,
.form_inner .form_item .body textarea {
  background-color: #efefef;
  width: 100%;
  display: block;
}
.form_inner .wpcf7-not-valid-tip {
  font-weight: bold;
  padding: 5px 0;
}
.form_inner .wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  background-color: #f7edd9;
  border: 1px solid #f1d6bc;
}
.form_inner .wpcf7 .wpcf7-validation-errors {
  color: #B94A48;
  background-color: #F2DEDE;
  border: 1px solid #EED3D7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form_inner .wpcf7 .wpcf7-mail-sent-ok {
  color: #3A87AD;
  background-color: #D9EDF7;
  border: 1px solid #BCE8F1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.form_inner .wpcf7c-conf {
  background-color: white;
}
.form_inner .btn_area {
  text-align: center;
  margin: 30px auto;
}
.form_inner .btn_area .wpcf7-spinner {
  position: absolute;
}
.form_inner .btn_area input {
  background-color: #1A265B;
  border: none;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  margin: 0 2%;
  max-width: 330px;
}
.form_inner .btn_area input[type=reset] {
  width: 45%;
}
.form_inner .btn_area input[type=submit] {
  width: 40%;
  max-width: 240px;
  min-width: 160px;
}
.form_inner .btn_area input:hover {
  background-color: #1A265B;
  color: #fff;
  cursor: pointer;
}
.form_inner .reCAPTCHA_branding {
  font-size: 0.875rem;
  width: calc(100% - 2em);
  margin: 0 auto;
}

#forminr {
  scroll-margin-top: 300px;
}

.contents iframe {
  width: 100% !important;
  max-width: 100% !important;
}

.wp-block-separator {
  margin: 1em 0;
}

.wp-block-image.maxw400 img {
  max-width: 400px;
  width: 100%;
}
.wp-block-image.maxw500 img {
  max-width: 500px;
  width: 100%;
}
.wp-block-image.maxw600 img {
  max-width: 600px;
  width: 100%;
}
.wp-block-image.maxw700 img {
  max-width: 700px;
  width: 100%;
}
.wp-block-image.maxw800 img {
  max-width: 800px;
  width: 100%;
}
.wp-block-image.maxw900 img {
  max-width: 900px;
  width: 100%;
}
.wp-block-image.maxw1000 img {
  max-width: 1000px;
  width: 100%;
}

/*画像中央合わせ*/
.aligncenter {
  margin-left: auto;
  margin-right: auto;
}

/**** secMV ***/
.secMV {
  display: block;
  width: 100%;
  max-width: 2600px;
  position: relative;
  margin: 0 auto 80px;
}
.secMV .contsWrap {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/top_carousel_base.jpg.webp) no-repeat center center/cover;
}
.no-webp .secMV .contsWrap {
  background: url(../images/top_carousel_base.jpg) no-repeat center center/cover;
}
.secMV .mainCarouselWrapper {
  margin-top: 40px;
  margin-bottom: 40px;
  margin-inline: auto;
  width: 100%;
}
.secMV .mainCarouselWrapper .splide {
  padding-bottom: 40px;
}
.secMV .mainCarouselWrapper .splide .splide__arrow:hover:not(:disabled) {
  opacity: 1;
}
.secMV .mainCarouselWrapper .splide .splide__arrow {
  background: #fff;
  height: 3em;
  width: 3em;
  opacity: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide {
  overflow: hidden;
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide .splide__slide_inr {
  position: relative;
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
  -webkit-transition: all ease 0.5s;
  transition: all ease 0.5s;
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide .splide__slide_inr a {
  display: block;
  width: 100%;
  height: 100%;
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide.is-active .splide__slide_inr {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide .imgWrap {
  aspect-ratio: 1280/850;
  overflow: hidden;
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide .imgWrap img, .secMV .mainCarouselWrapper .splide .splide__track .splide__list .splide__slide .imgWrap picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secMV .mainCarouselWrapper .splide .splide__track .splide__list .slide_txt {
  height: 65px;
  width: 100%;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  font-weight: 600;
  font-size: max(0.75rem, min(0.439rem + 0.86vw, 1.125rem));
}
.secMV .mainCarouselWrapper .splide__pagination {
  max-width: 1500px;
  left: 50%;
  right: initial;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: calc(100% - 40px);
}
.secMV .mainCarouselWrapper .page-bar {
  -ms-flex-negative: 1;
      flex-shrink: 1;
  border-radius: 0;
  width: 80px;
  height: 8px;
  border: 1px solid #ee4d00;
  background-color: #fff;
  margin-left: 10px;
  margin-right: 10px;
}
.secMV .mainCarouselWrapper .page-bar.is-active {
  background-color: #ee4d00;
  -webkit-transform: scale(1);
          transform: scale(1);
}

/**** secTopNews ***/
.secTopNews {
  margin: 0 auto 10em;
}
.secTopNews .topNewsWrap {
  margin: 0 auto;
  max-width: 1100px;
  width: calc(100% - 40px);
}
.secTopNews .newsList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.secTopNews .newsList li {
  width: 31%;
}
.secTopNews .newsList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secTopNews .newsList li .imgWrap {
  aspect-ratio: 690/400;
  overflow: hidden;
}
.secTopNews .newsList li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-filter 0.8s ease;
  transition: -webkit-filter 0.8s ease;
  transition: filter 0.8s ease;
  transition: filter 0.8s ease, -webkit-filter 0.8s ease;
}
.secTopNews .newsList .newsCategory {
  font-weight: 600;
  margin-top: 3px;
  padding: 0.5em 0;
}
.secTopNews .newsList .newstitle {
  word-break: break-all;
}
.secTopNews .newsList .newsDate {
  font-size: 0.875rem;
  text-align: right;
  margin-top: auto;
}

/**** secTopPlanTraining ***/
.secTopPlanTraining {
  max-width: 2600px;
  margin: 100px auto;
}
.secTopPlanTraining .planTraining {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.secTopPlanTraining .planTraining h2 {
  margin-bottom: 1em;
  font-weight: 600;
}
.secTopPlanTraining .planimg,
.secTopPlanTraining .traniningimg {
  max-height: 500px;
}
.secTopPlanTraining .planimg img, .secTopPlanTraining .planimg picture,
.secTopPlanTraining .traniningimg img,
.secTopPlanTraining .traniningimg picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secTopPlanTraining .plan {
  background: url(../images/top_plan_base.jpg.webp) no-repeat center/cover;
}
.no-webp .secTopPlanTraining .plan {
  background: url(../images/top_plan_base.jpg) no-repeat center/cover;
}
.secTopPlanTraining .training {
  background: url(../images/top_training_base.jpg.webp) no-repeat center/cover;
}
.no-webp .secTopPlanTraining .training {
  background: url(../images/top_training_base.jpg) no-repeat center/cover;
}
.secTopPlanTraining .training, .secTopPlanTraining .plan {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secTopPlanTraining .training .inner, .secTopPlanTraining .plan .inner {
  margin: 0 auto;
  padding: 40px 0;
  max-width: 500px;
  width: calc(100% - 50px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.secTopPlanTraining .training .inner .btnLinkTo, .secTopPlanTraining .plan .inner .btnLinkTo {
  margin-bottom: 0;
}

/***  secTopDigest  ***/
.secTopDigest {
  max-width: 2600px;
  margin: 100px auto;
}
.secTopDigest .topDigestWrap {
  margin: 0 auto;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secTopDigest .topDigestWrap .splide {
  width: 90%;
  padding-bottom: 80px;
}
.secTopDigest .topDigestWrap .splide .splide__arrows {
  display: block;
}
.secTopDigest .topDigestWrap .splide .splide__arrows .splide__arrow {
  top: initial;
  bottom: 0;
  background: #fff;
  height: 2em;
  width: 2em;
  opacity: 1;
  border: 1px solid #707070;
}
.secTopDigest .topDigestWrap .splide .splide__arrows .splide__arrow--prev {
  left: 0;
}
.secTopDigest .topDigestWrap .splide .splide__arrows .splide__arrow--next {
  right: initial;
  left: calc(2em + 10px);
}
.secTopDigest .digestList li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secTopDigest .digestList li .imgWrap {
  overflow: hidden;
  aspect-ratio: 1/1;
}
.secTopDigest .digestList li img, .secTopDigest .digestList li picture {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secTopDigest .digestList li img {
  -webkit-transition: -webkit-filter 0.8s ease;
  transition: -webkit-filter 0.8s ease;
  transition: filter 0.8s ease;
  transition: filter 0.8s ease, -webkit-filter 0.8s ease;
}
.secTopDigest .digestList .digestCategory {
  padding: 0.5em 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: 600;
  margin-top: 3px;
  line-height: 1;
}
.secTopDigest .digestList .digestCategory::before {
  content: "";
  display: block;
  display: inline-block;
  margin-right: 5px;
  width: 0.75em;
  height: 1em;
  background-color: #ee4d00;
}
.secTopDigest .digestList .digestCategory span {
  display: inline-block;
  margin: 0 5px;
}
.secTopDigest .digestList .digesttitle {
  word-break: break-all;
}
.secTopDigest .digestList .digestDate {
  font-size: 0.875rem;
  text-align: right;
  margin-top: auto;
}
.secTopDigest .btnLinkTo {
  max-width: 90%;
}
@media only screen and (max-width: 1920px){
  body {
    margin: 0;
  }
}
@media only screen and (max-width: 1200px){
  body {
    margin: 0;
  }
  .br_x_disp {
    display: inline-block;
  }
  p {
    font-size: max(0.875rem, min(0.83rem + 0.23vw, 1rem));
  }
  .secMV .contsWrap {
    aspect-ratio: initial;
    height: auto;
  }
  .secMV .mainCarouselWrapper .page-bar {
    width: 5vw;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 979px){
  body {
    margin: 0;
  }
  footer .footerUpr .sideL {
    width: auto;
    margin: 20px 20px 20px;
  }
  footer .footerUpr .sideR .footLink {
    margin-top: 20px;
  }
  footer .footerUpr .sideR .footLink li {
    margin-bottom: 20px;
  }
  .secContacts .inner {
    padding: 50px 20px 60px;
  }
  .secContacts .inner .flxWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: none;
  }
  .secContacts .inner .right {
    margin: 20px 0 0;
  }
  .secTopPlanTraining .planTraining {
    grid-template-columns: repeat(1, 1fr);
  }
  .secTopPlanTraining .planTraining > div:nth-of-type(3) {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .secTopPlanTraining .planimg,
  .secTopPlanTraining .traniningimg {
    max-height: 300px;
  }
}
@media only screen and (max-width: 890px){
  body {
    margin: 0;
  }
  .pc_disp {
    display: none;
  }
  .sp_disp {
    display: block;
  }
  .secTopNews {
    margin: 0 auto 5vw;
  }
}
@media only screen and (max-width: 767px){
  body {
    margin: 0;
  }
  header .navUpr {
    padding-right: 60px;
  }
  header .navUpr .flxWrap {
    width: 100%;
  }
  header .navUpr .imgWrap {
    padding-left: 20px;
    padding-right: 100px;
  }
  header .navUpr .headSns {
    right: 0;
  }
  header .navLwr {
    display: none;
  }
  header .menu_on_mobile {
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
  }
  .br_disp_767 {
    display: inline-block;
  }
  .contents {
    margin-top: 70px;
  }
  .titleWrap.top {
    margin-bottom: 30px;
  }
  .titleWrap:not(.top) {
    margin-bottom: 30px;
  }
  .secMemberRecruitment .inner h2 {
    font-size: 20px;
    font-size: max(1.25rem, min(0.803rem + 2.24vw, 1.875rem));
  }
  .pagination {
    font-size: 0.875rem;
  }
  .pagination .prev,
  .pagination .next {
    display: none;
  }
  .form_inner .form_item .head {
    font-size: 1rem;
  }
  .form_inner .form_item .head label {
    height: 25px;
    line-height: 25px;
  }
  .form_inner .form_item .head .require {
    padding: 2px 5px;
    margin-left: 20px;
    font-size: 0.75rem;
  }
  .form_inner .btn_area input {
    width: auto;
  }
  #forminr {
    scroll-margin-top: 200px;
  }
  .secTopNews .newsList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .secTopNews .newsList li {
    width: 100%;
    max-width: 400px;
    margin-bottom: 50px;
  }
  .secTopNews .newsList .newsDate {
    margin-top: 0.5em;
  }
  .secTopDigest .topDigestWrap .splide {
    padding-bottom: 100px;
    width: calc(100% - 20px);
  }
  .secTopDigest .topDigestWrap .splide .splide__arrows .splide__arrow--next {
    left: 3em;
  }
}
@media only screen and (max-width: 580px){
  body {
    margin: 0;
  }
  header .navUpr .imgWrap {
    padding-right: 0;
  }
  header .navUpr .headSns {
    display: none;
  }
  footer {
    height: auto;
  }
  footer .footerLwr {
    font-size: 0.6875rem;
    padding: 0 10px 20px;
  }
  footer .footerLwr .ms_disp {
    display: inline;
  }
  .br_disp_580 {
    display: inline-block;
  }
  .br_maxw767_hide {
    display: none;
  }
  h2 {
    font-size: 5vw;
    font-size: max(1.25rem, min(0.481rem + 3.85vw, 1.875rem));
  }
  .btnLinkTo {
    margin: 5vw auto;
  }
  .btnLinkTo a {
    width: 100%;
    max-width: calc(100vw - 60px);
  }
  .titleWrap:not(.top) .h2Wrap {
    padding-bottom: 10vw;
  }
  .secMemberRecruitment .inner p {
    width: calc(100% - 20px);
  }
  .secMemberRecruitment .inner .btnLinkTo a {
    max-width: 380px;
  }
  .pagination {
    font-size: 0.75rem;
  }
  .form_inner .form_item {
    display: block;
  }
  .form_inner .form_item .head {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 10px;
  }
  .form_inner .btn_area input {
    padding: 10px;
  }
  .form_inner .reCAPTCHA_branding {
    padding: 0 0 40px;
    font-size: 0.8125rem;
  }
  .secMV .mainCarouselWrapper {
    margin-top: 20px;
    margin-bottom: 20px;
  }
  .secMV .mainCarouselWrapper .splide .splide__arrow {
    height: 2em;
    width: 2em;
  }
  .secMV .mainCarouselWrapper .page-bar {
    width: 8vw;
    margin: 0 8px;
  }
}
@media only screen and (max-width: 420px){
  body {
    margin: 0;
  }
  header .navUpr .headSns li {
    width: 30px;
    margin-right: 5px;
  }
  header .navUpr .headSns li:last-child {
    width: 25px;
  }
  .btnLinkTo {
    width: 100%;
  }
}
@media only screen and (max-width: 340px){
  body {
    margin: 0;
  }
  footer .footerLwr {
    font-size: 0.625rem;
    letter-spacing: -0.02em;
  }
  .form_inner .btn_area input {
    margin: 0 2%;
  }
}
@media (hover: hover){
  header .navLwr .navList li a:hover {
    color: #ee4d00;
  }
  footer a:hover {
    opacity: 0.8;
  }
  .btnLinkTo a:hover {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  }
  .pagination .page-numbers:not(.current):not(.dots):hover {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
  .secTopNews .newsList li img:hover {
    -webkit-filter: brightness(120%);
            filter: brightness(120%);
  }
  .secTopDigest .digestList li img:hover {
    -webkit-filter: brightness(120%);
            filter: brightness(120%);
  }
}
@media (hover: none){
  header .navLwr .navList li a:active {
    color: #ee4d00;
  }
  .btnLinkTo a:active {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px);
    -webkit-box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.4);
            box-shadow: 0 5px 5px 1px rgba(0, 0, 0, 0.4);
  }
  .pagination .page-numbers:not(.current):not(.dots):active {
    -webkit-transform: translateY(-3px);
            transform: translateY(-3px);
  }
}
@media not all and (-webkit-min-device-pixel-ratio: 0), not all and (min-resolution: 0.001dpcm){
  header .navLwr .navList li { /* IS SAFARI */ }
  @supports (-webkit-appearance: none) and (not (translate: none)) {
    header .navLwr .navList li { /* SAFARI 14.0 or less */ }
    header .navLwr .navList li + header .navLwr .navList li {
      margin-left: 18px;
    }
  }
}
/*# sourceMappingURL=../map/top.css.map */
