@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;
}

.h3Wrap {
  margin: 1em auto;
  text-align: center;
  width: calc(100% - 40px);
}
.h3Wrap h3 {
  font-weight: 800;
  font-size: clamp(1.625rem, 1.542rem + 0.42vw, 1.875rem);
}
.h3Wrap.navy h3 {
  color: #1A265B;
}

/*** secAboutTop ***/
.secAboutTop {
  width: 100%;
  overflow: hidden;
  max-width: 100vw;
  margin: 60px auto 110px;
}
.secAboutTop .introduction_txt {
  max-width: 990px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.secAboutTop .introduction_txt p {
  line-height: 1.5;
  font-size: max(0.875rem, min(0.833rem + 0.21vw, 1rem));
}
.secAboutTop .aboutUsTopImg {
  position: relative;
  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;
  margin: 120px auto;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.secAboutTop .aboutUsTopImg picture, .secAboutTop .aboutUsTopImg img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 520px;
}
.secAboutTop .aboutUsTopImg::before {
  background-color: #FBFAF6;
  content: "";
  display: block;
  width: 80vw;
  height: 500px;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: -250px;
  z-index: -1;
}

/*** secMessage ***/
.secMessage {
  width: 100%;
  max-width: 2600px;
  margin: 0 auto 180px;
}
.secMessage h2 {
  font-weight: 600;
  font-size: 24px;
  font-size: max(1.5rem, min(1.375rem + 0.63vw, 1.875rem));
}
.secMessage .messageWrap {
  max-width: 980px;
  width: calc(100% - 40px);
  margin: 45px auto;
}
.secMessage .messageWrap .presidentImg {
  width: 380px;
  margin-right: 68px;
  float: left;
}
.secMessage .messageWrap .presidentImg img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.secMessage .messageWrap .presidentImg .name {
  text-align: center;
  padding: 20px 0 15px;
}
.secMessage .messageWrap .messageTxt p {
  line-height: 1.9;
  font-size: max(0.875rem, min(0.833rem + 0.21vw, 1rem));
}

/***  secIntroducing  ***/
.secIntroducing {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto 180px;
  background-color: #F2F0E8;
  padding: 80px 0 160px;
}
.secIntroducing .introInr {
  max-width: 980px;
  margin: 0 auto;
  width: calc(100% - 40px);
}
.secIntroducing .introInr h2 {
  font-weight: 600;
  color: #1A265B;
  font-size: 24px;
  font-size: max(1.5rem, min(1.375rem + 0.63vw, 1.875rem));
}
.secIntroducing .introInr h3 {
  font-size: 1.125rem;
  font-weight: 600;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secIntroducing .introInr h3 small {
  margin-left: 40px;
  font-weight: 300;
  font-size: 0.875rem;
  -ms-flex-negative: 1;
      flex-shrink: 1;
}
.secIntroducing .introInr table + h2 {
  margin-top: 100px;
}
.secIntroducing .introInr table + h3 {
  margin-top: 60px;
}
.secIntroducing .introInr h2 + table {
  margin-top: 50px;
}
.secIntroducing .introInr h2 + h3 {
  margin-top: 85px;
}
.secIntroducing .introInr h3 + table {
  margin-top: 20px;
}
.secIntroducing .introInr table {
  border-collapse: collapse;
  width: 100%;
}
.secIntroducing .introInr .tb01 th, .secIntroducing .introInr .tb01 td {
  padding: 14px 20px;
  border: solid 1px #F2F0E8;
  line-height: 1.6;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.secIntroducing .introInr .tb01 th {
  background-color: #FBFAF6;
  font-weight: 600;
  width: 28%;
}
.secIntroducing .introInr .tb01 td {
  background-color: #fff;
}
.secIntroducing .introInr .tb01 td:first-of-type {
  width: 40%;
}
.secIntroducing .introInr .tb01 td + td {
  border-left-style: hidden;
}
.secIntroducing .introInr .tb01.col2 td:first-of-type {
  width: auto;
}
.secIntroducing .introInr .wp-block-heading {
  margin-bottom: 1em;
}
.secIntroducing .introInr .wp-block-group + .wp-block-group {
  margin-top: 60px;
}

/*** secTerms ***/
.secTerms {
  background-color: #1A265B;
  margin: 100px 0;
}
.secTerms.valencia {
  background-color: #ee4d00;
}
.secTerms .inner {
  padding: 50px 0;
  margin: 0 auto;
  width: calc(100% - 40px);
}
.secTerms .inner .btnLinkTo {
  margin: 0 auto;
}
.secTerms .inner .btnLinkTo a {
  border: 2px solid #fff;
  font-size: 1.25rem;
  width: 620px;
  padding-right: 2em;
  min-height: 65px;
  height: auto;
}
.secTerms .inner .btnLinkTo a::after {
  background-size: auto 22px;
}

/*** secForm ***/
.secForm {
  width: 100%;
  overflow: hidden;
  max-width: 100vw;
  margin: 60px auto 110px;
}
.secForm .form_txt {
  max-width: 990px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
.secForm .form_txt p {
  line-height: 1.5;
  font-size: max(0.875rem, min(0.833rem + 0.21vw, 1rem));
}

.introduction_txt.pp h2 {
  margin: 1em 0 0.5em;
  text-align: left;
  font-weight: 600;
}
.introduction_txt.pp h3 {
  font-weight: 600;
  margin-top: 0.5em;
}
@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));
  }
  .secAboutTop .aboutUsTopImg {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
  .secAboutTop .aboutUsTopImg picture, .secAboutTop .aboutUsTopImg img {
    width: 370px;
  }
      .secAboutTop .aboutUsTopImg picture:nth-of-type(n+2), .secAboutTop .aboutUsTopImg img:nth-of-type(n+2) {
        margin-left: 40px;
      }
}
@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;
  }
}
@media only screen and (max-width: 890px){
  body {
    margin: 0;
  }
  .pc_disp {
    display: none;
  }
  .sp_disp {
    display: block;
  }
  .secTerms .inner .btnLinkTo a {
    max-width: 650px;
    width: calc(100% - 40px);
    padding: 1em 3.5em 1em 1em;
  }
}
@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;
  }
  .secMessage .messageWrap .presidentImg {
    width: 100%;
    max-width: 380px;
    float: none;
    margin: 0 auto;
  }
}
@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;
  }
  .secAboutTop {
    margin-bottom: 20vw;
  }
  .secAboutTop .aboutUsTopImg picture, .secAboutTop .aboutUsTopImg img {
    width: calc(100vw - 60px);
  }
  .secAboutTop .aboutUsTopImg::before {
    width: 100vw;
  }
  .secAboutTop .aboutUsTopImg {
    margin-top: 10vw;
  }
  .secMessage {
    margin-bottom: 20vw;
  }
  .secMessage .messageWrap {
    margin-top: 5vw;
  }
  .secIntroducing .introInr h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .secIntroducing .introInr h3 small {
    margin-left: 0;
  }
  .secIntroducing .introInr h2 + table {
    margin-top: 5vw;
  }
  .secIntroducing .introInr h2 + h3 {
    margin-top: 5vw;
  }
  .secIntroducing .introInr .tb01 {
    width: 100%;
  }
  .secIntroducing .introInr .tb01 th, .secIntroducing .introInr .tb01 td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
  .secIntroducing .introInr .tb01 th {
    border-top-color: #F2F0E8;
    border-top-width: 5px;
  }
  .secIntroducing .introInr .tb01 td:first-of-type {
    width: auto;
  }
  .secIntroducing .introInr .tb01 td + td {
    border-left-style: solid;
    border-top-style: hidden;
  }
  .secIntroducing .introInr .tb01 td + td.disp {
    padding-top: 0;
  }
  .secIntroducing .introInr .tb01 td + td:not(.disp) {
    display: none;
  }
  .secIntroducing .introInr .tb01 tr:last-child {
    border-bottom: solid 1px #ccc;
  }
  .secIntroducing .introInr .wp-block-group + .wp-block-group {
    margin-top: 5em;
  }
  .secTerms .inner .btnLinkTo a {
    height: auto;
    width: calc(100% - 20px);
    font-size: 1rem;
    font-size: max(0.875rem, min(0.413rem + 2.31vw, 1.25rem));
  }
  .secTerms .inner .btnLinkTo a::after {
    background-size: auto 16px;
  }
  .secForm {
    margin-bottom: 20vw;
  }
}
@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);
  }
}
@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;
    }
  }
  .secAboutTop .aboutUsTopImg picture, .secAboutTop .aboutUsTopImg img { /* IS SAFARI */ }
  @supports (-webkit-appearance: none) and (not (translate: none)) {
    .secAboutTop .aboutUsTopImg picture, .secAboutTop .aboutUsTopImg img { /* SAFARI 14.0 or less */ }
    .secAboutTop .aboutUsTopImg picture:nth-of-type(n+2), .secAboutTop .aboutUsTopImg img:nth-of-type(n+2) {
      margin-left: 60px;
    }
    @media only screen and (max-width: 1200px) {
      .secAboutTop .aboutUsTopImg picture:nth-of-type(n+2), .secAboutTop .aboutUsTopImg img:nth-of-type(n+2) {
        margin-left: 40px;
      }
    }
  }
}
/*# sourceMappingURL=../map/aboutus.css.map */
