@charset "UTF-8";
:root {
  --themeColor:#1449b4;
  --themeColor-lt:#fcf1ed;
  --pointColor:#CBB196;
  --linkColor:#008fa5;
  --bgColor:#f7f7f7;
  --fontColor: #191D29;
  --w:1040px;
  --side: calc((100% - (var(--w))) / 2);
  --widthXL:1140px;
  --widthLG:980px;
  --widthTab:768px;
  --font-go-base: "Hiragino Kaku Gothic Pro" ,"游ゴシック体", "Yu Gothic Medium" , "Yu Gothic", Meiryo ,sans-serif;
  --font-mi-base: "Hiragino Mincho ProN", "Yu Mincho","YuMincho", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  --font-tenor: 'Tenor Sans', var(--font-mi-base);
  --headerHeight: 70px;
  --headerHeightSp: 60px;
}

html {
  color: #000;
  background: #FFF;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, select, main, address, span {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  line-height: 140%;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
  box-sizing: border-box;
}

a, span, details, summary {
  box-sizing: border-box;
}

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

fieldset, img {
  border: 0;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

strong {
  font-style: normal;
}

ul li {
  list-style: none;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

sup {
  vertical-align: text-bottom;
}

sub {
  vertical-align: text-top;
}

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input, textarea, select {
  font-size: 100%;
}

legend {
  color: #000;
}

figure {
  margin: 0;
}

img {
  backface-visibility: hidden;
}

html {
  scroll-padding-top: 80px;
}

body {
  font-size: 0.875rem;
  color: var(--fontColor);
  font-family: var(--font-mi-base);
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "halt";
}

@media (max-width: 767px) {
  .for-pc {
    display: none !important;
  }
}

@media (min-width: 1140px) {
  .for-md-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .for-md-tab {
    display: none !important;
  }
}

@media (min-width: 980px) {
  .fot-tab {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .fot-tab {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .for-sp {
    display: none !important;
  }
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

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

a {
  text-decoration: none;
  transition: all 0.3s;
  color: var(--fontColor);
}
a img {
  opacity: 1;
  transition: all 0.3s;
}
@media (min-width: 768px) {
  a:hover img {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  a:active img {
    opacity: 0.8;
  }
}

p {
  line-height: 190%;
}
p + p {
  margin-top: 0.75rem;
}
@media (min-width: 768px) {
  p a:hover {
    color: var(--linkColor);
  }
}
@media (max-width: 767px) {
  p a:active {
    color: var(--linkColor);
  }
}

ol {
  padding-left: 1.25rem;
}

ruby rt {
  font-size: 40%;
}

em {
  color: #e13838;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
textarea {
  appearance: none;
  height: 55px;
  padding: 8px 10px;
  border: 1px solid #D9D9D9;
  border-radius: 5px;
}
@media (max-width: 767px) {
  input[type=text],
  input[type=tel],
  input[type=email],
  input[type=password],
  textarea {
    font-size: 1rem;
    height: 40px;
  }
}

select {
  height: 55px;
  padding: 8px 10px;
  border: 1px solid #D9D9D9;
  background: #fff;
  border-radius: 5px;
  color: var(--fontColor);
}
@media (max-width: 767px) {
  select {
    font-size: 1rem;
    height: 40px;
  }
}

textarea {
  width: 100%;
  height: 200px;
}

.btn-square {
  display: inline-flex;
  gap: 5px;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  background: #191D29;
  color: #fff;
}
.btn-square.is-gold {
  background: var(--pointColor);
}
@media (hover: hover) {
  .btn-square:hover {
    opacity: 0.8;
  }
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #CBB196;
  font-size: 1.25rem;
  border-bottom: 1px solid #CBB196;
  padding-bottom: 10px;
}
.btn-back::before {
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  background: url(../img/common/icon-back.svg) no-repeat center center/contain;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .btn-back:hover::before {
    transform: translateX(-5px);
  }
}

.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 54px;
  padding: 10px 20px;
  background: #CBB196;
  color: #fff;
  border: none;
  font-size: 1.25rem;
  font-weight: bold;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (hover: hover) {
  .btn-submit:hover {
    opacity: 0.8;
  }
}

.btn-pdf {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 58px;
  background: var(--pointColor);
  padding: 12px 40px;
  font-size: 1.25rem;
  color: #fff;
  font-weight: bold;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .btn-pdf {
    padding: 12px 20px;
    font-size: 1rem;
  }
}
@media (hover: hover) {
  .btn-pdf:hover {
    opacity: 0.8;
  }
}
.btn-pdf::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 15px;
  background: #fff;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  margin-right: 20px;
}
@media (max-width: 767px) {
  .btn-pdf::before {
    width: 6px;
    height: 10px;
    margin-right: 10px;
  }
}
.btn-pdf::after {
  content: "PDF";
  height: 34px;
  display: flex;
  align-items: center;
  font-size: 1rem;
  background: #fff;
  color: var(--fontColor);
  border-radius: 4px;
  margin-left: 20px;
  padding-inline: 20px;
}
@media (max-width: 767px) {
  .btn-pdf::after {
    font-size: 0.75rem;
    height: auto;
    padding: 4px 20px;
  }
}

.btn-simple {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 10px 20px;
  background: #191D29;
  color: white;
  border-radius: 5px;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (max-width: 767px) {
  .btn-simple {
    height: 40px;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  .btn-simple:hover {
    opacity: 0.8;
  }
}
.btn-simple.is-gold {
  background: var(--pointColor);
  border: 1px solid var(--pointColor);
}

.btn-gold {
  appearance: none;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--pointColor);
  font-family: var(--font-mi-base);
  color: #fff;
  height: 50px;
  min-width: 190px;
  padding: 10px 20px;
  border-radius: 2px;
  font-size: 1rem;
  font-weight: bold;
  transition: all 0.3s ease;
}
@media (hover: hover) {
  .btn-gold:hover {
    opacity: 0.8;
  }
}

.col {
  display: flex;
  flex-flow: row wrap;
}
@media (max-width: 767px) {
  .col {
    display: block;
  }
}
@media (max-width: 767px) {
  .col.is-sp-flex {
    display: flex;
  }
}
.col.is-oneline {
  flex-wrap: nowrap;
  justify-content: space-between;
}
.col-contents {
  width: 100%;
}
@media (max-width: 767px) {
  .col-contents {
    max-width: 100%;
  }
  .col:not(.is-sp-flex) .col-contents + .col:not(.is-sp-flex) .col-contents {
    margin-top: 10px;
  }
}
.is-oneline .col-contents {
  margin-bottom: 0;
}
.is-oneline .col-contents + .col-contents {
  margin-left: 2%;
}
@media (max-width: 767px) {
  .is-oneline:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-oneline:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-2 .col-contents {
  max-width: 48%;
}
.is-2 .col-contents:nth-child(even) {
  margin-left: calc(4% - 1px);
}
.is-2 .col-contents:nth-child(n+3) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-2 .col-contents:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (max-width: 767px) {
  .is-2:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-2:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-3 .col-contents {
  max-width: 32%;
}
.is-3 .col-contents:not(:nth-child(3n+1)) {
  margin-left: calc(2% - 1px);
}
.is-3 .col-contents:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-3 .col-contents:nth-child(n+4) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-3:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-3:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.is-4 .col-contents {
  max-width: 23%;
}
.is-4 .col-contents:not(:nth-child(4n+1)) {
  margin-left: calc(2.6% - 1px);
}
.is-4 .col-contents:nth-child(n+5) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .is-4 .col-contents:nth-child(n+5) {
    margin-top: 10px;
  }
}
@media (max-width: 767px) {
  .is-4:not(.is-sp-flex) .col-contents {
    max-width: 100%;
    margin: auto;
  }
  .is-4:not(.is-sp-flex) .col-contents + .col-contents {
    margin-top: 30px;
  }
}
.col-contents-title {
  margin-bottom: 5px;
}
.col-contents-text {
  margin-top: 5px;
}

.flImgContents-img {
  max-width: 37%;
  width: 100%;
}
@media (max-width: 767px) {
  .flImgContents-img {
    max-width: 100%;
  }
}
.flImgContents-img.is-s {
  max-width: 200px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-s {
    max-width: 100%;
  }
}
.flImgContents-img.is-ss {
  max-width: 100px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-ss {
    max-width: 70%;
    margin-right: auto;
    margin-left: auto;
  }
}
.flImgContents-img.is-l {
  max-width: 47%;
}
@media (max-width: 767px) {
  .flImgContents-img.is-l {
    max-width: 100%;
  }
}
.flImgContents-img.is-fr {
  float: right;
  margin: 0 0 20px 40px;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fr {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fr:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fr.is-sp-float {
    width: 35%;
    margin: 0 0 10px 10px;
  }
}
.flImgContents-img.is-fl {
  float: left;
  margin: 0 40px 20px 0;
}
@media (max-width: 767px) {
  .flImgContents-img.is-fl {
    margin: 0 auto 20px;
  }
  .flImgContents-img.is-fl:not(.is-sp-float) {
    float: none;
  }
  .flImgContents-img.is-fl.is-sp-float {
    width: 35%;
    margin: 0 10px 10px 0;
  }
}

.text-s {
  font-size: 85%;
}

.text-l {
  font-size: 120%;
}

.cl-red {
  color: #ff0000;
}

.list-normal > li {
  margin: 0 0 10px;
  text-indent: -1.6rem;
  padding-left: 1.6rem;
}
.list-normal > li::before {
  content: "●";
  margin-right: 5px;
  font-size: 10px;
  font-family: sans-serif;
  color: var(--themeColor);
}

.list-number {
  padding: 0 0 0 25px;
}
.list-number > li {
  list-style: decimal;
  margin: 0 0 10px;
}

.list-numbold {
  counter-reset: li;
  list-style: none;
  padding-left: 2.5rem;
}
.list-numbold > li::before {
  margin: 0 5px 0 -2rem;
  width: 2.5rem;
  content: counter(li) ". ";
  counter-increment: li;
  font-weight: bold;
}

.al-r {
  text-align: right;
}

.al-c {
  text-align: center;
}

.full {
  width: 100%;
}

.size-30 {
  width: 30%;
}
@media (max-width: 767px) {
  .size-30 {
    width: 70%;
  }
}

.size-60 {
  width: 60%;
}
@media (max-width: 767px) {
  .size-60 {
    width: 100%;
  }
}

.indent {
  width: 97%;
  margin: 0 0 0 auto;
}

.moreLink {
  position: relative;
  display: inline-block;
  padding-right: 30px;
  padding-bottom: 8px;
  font-family: var(--font-tenor);
  white-space: nowrap;
  color: #7B6B5A;
  border-bottom: 1px solid rgba(123, 107, 90, 0.4509803922);
}
@media (max-width: 767px) {
  .moreLink {
    font-size: 0.75rem;
    padding-right: 25px;
  }
}
.moreLink::before, .moreLink::after {
  content: "";
  display: inline-block;
  position: absolute;
  will-change: transform;
  background: var(--fontColor);
  transition: all 0.4s ease;
  background: rgba(123, 107, 90, 0.4509803922);
}
.moreLink::before {
  width: 1px;
  height: 15px;
  top: 1px;
  right: 7px;
}
@media (max-width: 767px) {
  .moreLink::before {
    top: 4px;
    height: 14px;
    right: 6.5px;
  }
}
.moreLink::after {
  width: 15px;
  height: 1px;
  right: 0;
  top: 8px;
}
@media (max-width: 767px) {
  .moreLink::after {
    width: 14px;
    top: 10px;
  }
}
@media (hover: hover) {
  .moreLink:hover {
    opacity: 0.8;
  }
  .moreLink:hover::before, .moreLink:hover::after {
    transform: rotate(180deg);
  }
}
.moreLink.is-white {
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}
.moreLink.is-white::before, .moreLink.is-white::after {
  background: rgba(255, 255, 255, 0.5);
}

.section-small {
  margin-top: 20px;
  margin-bottom: 20px;
}

.section-1 {
  margin-top: 30px;
  margin-bottom: 40px;
}
.section-1:first-child {
  margin-top: 0;
}

.section-2 {
  margin-top: 40px;
  margin-bottom: 70px;
}
.section-2:first-child {
  margin-top: 0;
}

.section-3 {
  margin-top: 40px;
  margin-bottom: 100px;
}
.section-3:first-child {
  margin-top: 0;
}

.section-center {
  max-width: var(--w);
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}
@media (min-width: 768px) and (max-width: 1139px) {
  .section-center {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 767px) {
  .section-center-sp {
    width: 90% !important;
    margin-left: auto;
    margin-right: auto;
  }
}

.nowrap {
  white-space: nowrap;
}

.table-1 {
  border-collapse: collapse;
  border-bottom: 1px solid rgba(130, 130, 130, 0.4784313725);
}
.table-1 tr {
  border-bottom: 1px solid rgba(130, 130, 130, 0.4784313725);
}
.table-1 th, .table-1 td {
  padding: 35px 0;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .table-1 th, .table-1 td {
    font-size: 0.875rem;
  }
}
.table-1 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-1.is-sideTitle th {
    padding: 10px 0;
  }
  .table-1.is-sideTitle td {
    padding: 20px 0;
  }
}

.table-2 thead {
  border-bottom: 1px solid #000;
}
.table-2 thead th {
  padding: 15px;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .table-2 thead th {
    padding: 10px;
    font-size: 0.875rem;
  }
}
.table-2 thead th:first-child {
  padding-left: 0;
}
.table-2 tbody tr:first-child th, .table-2 tbody tr:first-child td {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .table-2 tbody tr:first-child th, .table-2 tbody tr:first-child td {
    padding-top: 20px;
  }
}
.table-2 tbody th, .table-2 tbody td {
  vertical-align: top;
  padding: 15px;
  font-size: 0.875rem;
  word-break: break-all;
}
.table-2 tbody td:first-child {
  padding-left: 0;
}

.table-3 thead th {
  padding: 15px;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .table-3 thead th {
    padding: 0 10px;
    font-size: 0.875rem;
  }
}
.table-3 thead th:first-child {
  padding-left: 0;
}
.table-3 tbody th, .table-3 tbody td {
  padding: 15px;
  font-size: 1.25rem;
  word-break: break-all;
  color: #0B2540;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .table-3 tbody th, .table-3 tbody td {
    padding: 10px;
    font-size: 0.9375rem;
  }
}
@media (max-width: 767px) {
  .table-3 tbody th, .table-3 tbody td {
    padding: 10px;
    font-size: 1rem;
  }
}
.table-3 tbody th input::placeholder, .table-3 tbody td input::placeholder {
  color: #cecece;
}
@media (max-width: 767px) {
  .table-3.is-sideTitle tr + tr {
    margin-top: 20px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .table-3.is-sideTitle th, .table-3.is-sideTitle td {
    padding: 0;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .table-3.is-sideTitle th {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .table-3.is-sideTitle td {
    padding: 0;
  }
}

.table-4 {
  border-collapse: collapse;
}
.table-4 th, .table-4 td {
  border: 5px solid #fff;
  font-size: 0.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .table-4 th, .table-4 td {
    font-size: 0.875rem;
  }
}
.table-4 th {
  padding: 20px;
  background: #CBB196;
  color: #fff;
}
.table-4 td {
  padding: 10px;
}
.table-4 td input {
  height: 40px;
  background: #F2F0F1;
  border-radius: 0;
  border: none;
}
.table-4 a {
  color: var(--linkColor);
}
.table-4-require {
  margin-left: 5px;
  color: #CB0000;
}
@media (max-width: 767px) {
  .table-4.is-sideTitle tr + tr {
    margin-top: 24px;
  }
  .table-4.is-sideTitle th, .table-4.is-sideTitle td {
    border: none;
  }
  .table-4.is-sideTitle th {
    padding: 4px 10px;
  }
  .table-4.is-sideTitle td {
    padding: 0;
  }
}

.table-5 {
  border-collapse: collapse;
}
.table-5 tr {
  border-bottom: 1px solid #E6E5E5;
}
.table-5 tr:last-child {
  border-bottom: none;
}
.table-5 th, .table-5 td {
  padding: 20px 0;
  font-size: 1rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .table-5 th, .table-5 td {
    font-size: 0.875rem;
  }
}
.table-5 th {
  color: #CBB196;
  font-size: 1.125rem;
  font-family: var(--font-go-base);
}
@media (max-width: 767px) {
  .table-5 th {
    font-size: 0.9375rem;
  }
}
.table-5 a {
  color: var(--linkColor);
}
@media (max-width: 767px) {
  .table-5.is-sideTitle tr {
    padding: 20px 0;
  }
  .table-5.is-sideTitle th {
    padding: 0;
  }
  .table-5.is-sideTitle td {
    padding: 0;
  }
}

@media (max-width: 767px) {
  .is-sideTitle tr {
    display: block;
  }
  .is-sideTitle th, .is-sideTitle td {
    display: block;
    width: 100%;
    padding: 0;
  }
  .is-sideTitle th {
    margin-bottom: 5px;
    font-weight: bold;
  }
}

.wfix {
  table-layout: fixed;
}

@media (max-width: 767px) {
  .tableScrollWrap {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin-right: -5vw;
    padding-right: 5vw;
  }
}

.title-bold {
  margin-bottom: 5px;
  font-size: 1.6rem;
  font-weight: bold;
}

.title-l-sub {
  position: relative;
  display: block;
  width: fit-content;
  margin-bottom: 10px;
  font-size: 1rem;
  padding-bottom: 8px;
  font-family: var(--font-tenor);
}
@media (max-width: 767px) {
  .title-l-sub {
    padding-bottom: 4px;
  }
}
.title-l-sub::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, #AA8D63, #DCC8BD);
  margin-top: 5px;
}
.title-l-main {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .title-l-main {
    font-size: 1.25rem;
  }
}

.title-m {
  position: relative;
  margin-bottom: 40px;
  width: fit-content;
}
@media (max-width: 767px) {
  .title-m {
    margin-bottom: 20px;
  }
}
@media (max-width: 767px) {
  .title-m.is-sp-center {
    width: fit-content;
    margin-inline: auto;
    text-align: center;
  }
}
.title-m-main {
  font-size: 2rem;
  font-family: var(--font-tenor);
}
@media (max-width: 767px) {
  .title-m-main {
    font-size: 1.25rem;
  }
}
@media (max-width: 767px) {
  .is-sp-center .title-m-main {
    font-size: 1rem;
  }
}
.title-m-main::after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: 12px;
  left: 100%;
  width: 171px;
  height: 1px;
  background: linear-gradient(90deg, #AA8D63, #DCC8BD);
  margin: 0 0 5px 10px;
}
@media (max-width: 767px) {
  .title-m-main::after {
    bottom: -6px;
    left: 0;
    margin: 0;
  }
}
@media (max-width: 767px) {
  .is-sp-center .title-m-main::after {
    left: 0;
    top: 1.6em;
    bottom: auto;
    margin: 0;
    width: 100%;
  }
}
.title-m-sub {
  font-size: 1rem;
  margin-left: 10px;
}
@media (max-width: 767px) {
  .title-m-sub {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .title-m-sub.is-sp-center {
    display: block;
    font-size: 1.25rem;
    margin: 10px auto 0 5px;
  }
}

.title-center {
  text-align: center;
  margin-bottom: 40px;
}
.title-center-sub {
  position: relative;
  display: block;
  padding-bottom: 5px;
  margin-bottom: 10px;
  font-size: 1rem;
  font-family: var(--font-tenor);
}
@media (max-width: 767px) {
  .title-center-sub {
    padding-bottom: 4px;
    margin-bottom: 8px;
  }
}
.title-center-sub::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 49px);
  width: 98px;
  height: 1px;
  background: linear-gradient(90deg, #AA8D63, #DCC8BD);
  margin: 5px auto 0;
}
.title-center-main {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .title-center-main {
    letter-spacing: -0.02em;
  }
}

.title-simple {
  margin-bottom: 40px;
  font-size: 2rem;
}
@media (max-width: 767px) {
  .title-simple {
    margin-bottom: 20px;
    font-size: 1.5rem;
  }
}

.title-underline {
  font-size: 1.25rem;
  padding-bottom: 5px;
  margin-bottom: 10px;
  border-bottom: 1px solid #000;
}

.main {
  margin-top: var(--headerHeight);
}
@media (max-width: 979px) {
  .main {
    margin-top: var(--headerHeightSp);
  }
}

.contentsMain {
  padding-top: 200px;
}
@media (max-width: 767px) {
  .contentsMain {
    padding-top: 70px;
  }
}

.js-accordion-title {
  list-style: none;
  cursor: pointer;
}
.js-accordion-title::-webkit-details-marker {
  display: none;
}
@media (min-width: 768px) {
  .js-accordion-sp-only .js-accordion-title {
    pointer-events: none;
  }
}
.js-accordion-plus {
  position: absolute;
  right: 0;
  top: 20px;
  width: 28px;
  height: 28px;
  background: none;
  padding: 0;
  border: none;
}
@media (min-width: 768px) {
  .js-accordion-plus {
    display: none;
  }
}
.js-accordion-plus::before, .js-accordion-plus::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 50%;
  background: rgb(78, 78, 78);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}
.js-accordion-plus::before {
  width: 50%;
  height: 1px;
}
.is-ac-open .js-accordion-plus::after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.js-accordion-content {
  display: block;
  position: relative;
  height: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  .js-accordion-sp-only .js-accordion-content {
    height: auto;
    overflow: auto;
  }
}
.js-accordion-content-inner {
  width: 100%;
}
@media (min-width: 768px) {
  .js-accordion-sp-only .js-accordion-content-inner {
    width: auto;
  }
}

.scrollIcon {
  position: absolute;
  top: calc(100vh - 250px);
  height: 250px;
  left: 85px;
}
@media (min-width: 980px) and (max-width: 1139px) {
  .scrollIcon {
    left: 5%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .scrollIcon {
    left: 3%;
  }
}
@media (max-width: 767px) {
  .scrollIcon {
    left: 8px;
  }
}
.scrollIcon-text {
  font-size: 0.75rem;
  color: #fff;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .scrollIcon-text {
    transform: rotate(90deg);
  }
}
.scrollIcon::before, .scrollIcon::after {
  content: "";
  width: 0.5px;
  height: calc(100% - 30px);
  background: #fff;
  display: block;
  position: absolute;
  bottom: 0;
  left: calc(50% - 0.5px);
}
@media (max-width: 767px) {
  .scrollIcon::before, .scrollIcon::after {
    height: calc(100% - 50px);
  }
}
.scrollIcon::before {
  opacity: 0.3;
}
.scrollIcon::after {
  transform-origin: top;
  animation: scaleYAnim 3s infinite;
}

@keyframes scaleYAnim {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  49% {
    transform-origin: top;
  }
  50% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
.pageTitle {
  position: relative;
  aspect-ratio: 4.8;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pageTitle {
    aspect-ratio: 2.4;
  }
}
.pageTitle-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}
.pageTitle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.pageTitle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.pageTitle-main {
  position: relative;
  color: #fff;
  z-index: 1;
  font-size: 2rem;
  letter-spacing: 0.1em;
  width: fit-content;
  margin-inline: auto;
  padding-inline: 5%;
}
@media (max-width: 767px) {
  .pageTitle-main {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
  }
}

.mypagePageTitle {
  position: relative;
  overflow: hidden;
  height: 126px;
}
@media (max-width: 767px) {
  .mypagePageTitle {
    height: 100px;
  }
}
.mypagePageTitle-inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}
.mypagePageTitle-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.mypagePageTitle-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}
.mypagePageTitle-main {
  position: relative;
  color: #fff;
  z-index: 1;
  font-size: 2rem;
  letter-spacing: 0.1em;
}
@media (min-width: 768px) {
  .mypagePageTitle-main {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mypagePageTitle-main {
    max-width: 90%;
  }
}
.mypagePageTitle-main {
  white-space: nowrap;
}
@media (max-width: 767px) {
  .mypagePageTitle-main {
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.breadCrumb {
  background: #FAFAFA;
  padding: 20px 50px;
}
@media (max-width: 767px) {
  .breadCrumb {
    padding: 10px 10px;
  }
}
.breadCrumb-ul {
  display: flex;
  flex-wrap: wrap;
}
.breadCrumb-ul-li {
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .breadCrumb-ul-li {
    font-size: 0.625rem;
  }
}
.breadCrumb-ul-li + .breadCrumb-ul-li::before {
  content: "/";
  display: inline-block;
  margin: 0 10px;
  color: rgb(78, 78, 78);
}
.breadCrumb-ul-li a {
  color: #828282;
}

.backBtn {
  text-align: center;
  margin-block: 40px;
}

.footerContact {
  height: 289px;
  padding-block: 80px;
  background: url(../img/common/bg-contact.jpg) no-repeat center center/cover;
}
@media (max-width: 767px) {
  .footerContact {
    height: auto;
    padding-inline: 20px;
    background-image: url(../img/common/bg-contact-sp.jpg);
  }
}
.footerContact-lead {
  font-size: 0.9375rem;
  color: #fff;
  width: fit-content;
  margin-inline: auto;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .footerContact-lead {
    font-size: 0.875rem;
  }
}
.footerContact-btns {
  text-align: center;
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 20px;
}
@media (max-width: 767px) {
  .footerContact-btns {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
}
.footerContact-btns .btn-square {
  width: 220px;
  height: 50px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .footerContact-btns .btn-square {
    width: 90%;
    margin-inline: auto;
    height: 43px;
    font-size: 1rem;
  }
}
.footerContact-btns .btn-square.is-black {
  border: 1px solid #fff;
}

.footer {
  background: #191D29;
  color: #fff;
  padding: 50px 0 20px;
}
@media (max-width: 767px) {
  .footer {
    padding-bottom: 100px;
  }
}
@media (min-width: 768px) {
  .footer-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .footer-inner {
    max-width: 90%;
  }
}
.footer-inner {
  max-width: 1240px;
  padding-inline: 20px;
}
.footer-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .footer-heading {
    flex-direction: column;
    gap: 20px;
    justify-content: start;
    align-items: start;
  }
}
.footer-heading-logo {
  width: 280px;
  max-width: 100%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footer-heading-logo {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .footer-heading-logo {
    max-width: 200px;
  }
}
.footer-heading-btns {
  display: flex;
  gap: 10px;
}
.footer-heading-btns .is-black {
  background: #fff;
  color: var(--fontColor);
}
.footer-heading-btns .is-black svg path {
  fill: var(--fontColor);
}

.footerNavi {
  width: fit-content;
  margin-inline: auto 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .footerNavi {
    margin-inline: 0;
  }
}
.footerNavi-ul {
  display: flex;
  gap: 50px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-ul {
    gap: 4%;
  }
}
@media (max-width: 767px) {
  .footerNavi-ul {
    flex-direction: column;
  }
}
.footerNavi-ul-li {
  width: 195px;
}
@media (min-width: 980px) and (max-width: 1139px) {
  .footerNavi-ul-li {
    width: 160px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .footerNavi-ul-li {
    width: 100%;
  }
}
.footerNavi-ul-li-title, .footerNavi-ul-li a {
  display: block;
  color: #fff;
}
@media (hover: hover) {
  .footerNavi-ul-li a:hover {
    color: var(--pointColor);
  }
}
.footerNavi-ul-li-title {
  padding-bottom: 15px;
  margin-bottom: 20px;
  font-size: 1.125rem;
  font-family: var(--font-tenor);
  border-bottom: 1px solid #fff;
}

.footerNaviSub-li a {
  padding: 5px 0;
}
@media (hover: hover) {
  .footerNaviSub-li a:hover {
    color: var(--pointColor);
  }
}

.footerBottom {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
@media (max-width: 767px) {
  .footerBottom {
    flex-direction: column;
    gap: 20px;
  }
}

.footerBottomNavi-ul-li {
  font-family: var(--font-tenor);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}
.footerBottomNavi-ul-li a {
  color: #fff;
}
@media (hover: hover) {
  .footerBottomNavi-ul-li a:hover {
    color: var(--pointColor);
  }
}

.footeCopy {
  font-family: var(--font-tenor);
  font-size: 0.75rem;
  letter-spacing: 0.02em;
  opacity: 0.5;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  background: #F2F0F1;
}
@media (max-width: 979px) {
  .header {
    height: var(--headerHeightSp);
    padding-right: 40px;
  }
}
.header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #F2F0F1;
  backdrop-filter: blur(20px);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (max-width: 979px) {
  .header::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-bottom: 0.5px solid #fff;
    opacity: 0.5;
    z-index: 6;
  }
}
.is-nav-bg .header::before {
  opacity: 1;
}
.is-nav-bg-no-transparent .header::before {
  background: #F2F0F1;
}
.header-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 767px) {
  .header-bg {
    display: none;
  }
}
.is-nav-hover .header-bg {
  opacity: 1;
}
.header-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 3%;
}
@media (max-width: 979px) {
  .header-inner {
    height: 100%;
    padding-left: 4%;
    align-items: center;
  }
}
.header-logo {
  position: relative;
  z-index: 8;
}
@media (min-width: 980px) and (max-width: 1139px) {
  .header-logo {
    width: 20%;
  }
}
@media (max-width: 767px) {
  .header-logo {
    width: 160px;
  }
}
.header-r {
  display: flex;
  align-items: center;
  gap: 0 8.5rem;
}
@media (min-width: 1140px) {
  .header-r {
    gap: 0 20px;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .header-r {
    gap: 0 1vw;
  }
}

.headerContact {
  position: relative;
  display: flex;
  gap: 0 10px;
}
@media (max-width: 767px) {
  .headerContact {
    width: calc(100% - 80px);
    margin: 30px auto;
  }
}
@media (max-width: 767px) {
  .headerContact-li {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .headerContact-li .btn-square {
    width: 100%;
    height: 40px;
    font-size: 0.875rem;
    padding-inline: 1vw;
  }
}

@media (max-width: 979px) {
  .gNavi {
    position: fixed;
    left: 100%;
    top: 0;
    width: 100%;
    height: 100vh;
    padding: 130px 0;
    margin: 0;
    background: #32475D;
    transition: all 0.8s cubic-bezier(0.78, 0.01, 0.18, 1);
    transform: translateX(0);
    z-index: 5;
    overflow-y: scroll;
  }
}
@media (max-width: 979px) and (max-width: 979px) {
  .gNavi {
    background: #EAE2D8;
  }
}
@media (max-width: 979px) {
  .dwMenu-active .gNavi {
    transform: translateX(-100%);
  }
}
@media (max-width: 979px) and (min-width: 768px) and (max-width: 979px) {
  .gNavi {
    max-width: 100%;
  }
}
.gNavi-ul {
  display: flex;
  align-items: center;
}
@media (min-width: 980px) {
  .gNavi-ul {
    height: var(--headerHeight);
  }
}
@media (max-width: 979px) {
  .gNavi-ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0;
    width: calc(100% - 80px);
    margin-inline: auto;
  }
}
.gNavi-ul::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  width: 100%;
  border-bottom: 0.5px solid #191D29;
}
@media (max-width: 979px) {
  .gNavi-ul::after {
    display: none;
  }
}
.gNavi-ul-li {
  position: relative;
  font-family: var(--font-tenor);
}
@media (min-width: 980px) {
  .gNavi-ul-li {
    height: 100%;
  }
}
@media (max-width: 979px) {
  .gNavi-ul-li {
    width: 100%;
  }
}
@media (min-width: 980px) {
  .is-nav-bg .gNavi-ul-li {
    color: var(--fontColor);
  }
  .is-nav-bg .gNavi-ul-li a {
    color: var(--fontColor);
  }
}
@media (min-width: 980px) {
  .gNavi-ul-li-title {
    height: 100%;
  }
}
@media (max-width: 979px) {
  .gNavi-ul-li-title {
    margin-bottom: 5px;
    border-bottom: 0.5px solid rgb(78, 78, 78);
  }
}
@media (max-width: 979px) {
  .is-contact .gNavi-ul-li-title {
    border-bottom: none;
    margin-bottom: 0;
    height: 100%;
  }
}
.gNavi-ul-li-title > a, .gNavi-ul-li-title > span {
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 0.9375rem;
  padding: 0 20px;
  z-index: 1;
}
@media (min-width: 980px) and (max-width: 1139px) {
  .gNavi-ul-li-title > a, .gNavi-ul-li-title > span {
    font-size: 0.875rem;
    padding-inline: 10px;
  }
}
@media (max-width: 979px) {
  .gNavi-ul-li-title > a, .gNavi-ul-li-title > span {
    padding: 20px 0;
    font-size: 1.0625rem;
    letter-spacing: 0.05em;
  }
  .js-addHoverClass .gNavi-ul-li-title > a, .js-addHoverClass .gNavi-ul-li-title > span {
    width: calc(100% - 40px);
  }
}
.gNavi-ul-li-title > a::after, .gNavi-ul-li-title > span::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 1px;
  width: 0;
  transition: all 0.3s ease-in-out;
  transform-origin: left;
  background: #000000;
  will-change: width;
  z-index: 3;
}
@media (hover: hover) {
  .gNavi-ul-li-title > a:hover::after, .gNavi-ul-li-title > span:hover::after {
    width: 100%;
    left: 0;
    right: auto;
  }
}
.gNavi-bottom {
  margin-top: 60px;
}
@media (max-width: 979px) {
  .gNavi-bottom {
    padding-inline: 35px;
  }
}
.gNavi-bottom-nav {
  display: block;
  margin-bottom: 20px;
  font-family: var(--font-tenor);
}
.gNavi-bottom-nav a {
  font-size: 0.75rem;
  z-index: 1;
}
.gNavi-bottom-small {
  display: block;
  margin-top: 10px;
  color: rgb(78, 78, 78);
  line-height: 1;
  font-family: var(--font-go-base);
  opacity: 0.5;
  font-size: 0.75rem;
  letter-spacing: -0.03em;
}
.gNavi-bottomNavi {
  margin-left: auto;
  margin-right: auto;
  max-width: 90%;
  width: 90%;
  width: calc(100% - 80px);
}
.gNavi-bottomNavi-item {
  width: fit-content;
}
.gNavi-bottomNavi-item a {
  display: block;
}
@media (max-width: 767px) {
  .gNavi-bottomNavi-item a {
    margin-top: 50px;
    font-size: 0.75rem;
  }
}

@media (min-width: 980px) {
  .gNaviSub {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #F2F0F1;
    padding-left: 10%;
    z-index: 0;
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: all 0.3s ease;
  }
}
@media (max-width: 767px) {
  .gNaviSub {
    padding-left: 3%;
  }
}
@media (min-width: 980px) {
  .gNavi-ul-li:hover .gNaviSub {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }
}
@media (min-width: 768px) {
  .gNaviSub-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .gNaviSub-inner {
    max-width: 90%;
  }
}
.gNaviSub-inner {
  max-width: 1000px;
  display: flex;
  gap: 0 150px;
}
@media (min-width: 980px) {
  .gNaviSub-inner {
    padding-block: calc(var(--headerHeight) + 30px) 30px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNaviSub-inner {
    padding-block: 10px 20px;
  }
}
.gNaviSub-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .gNaviSub-title {
    display: none;
  }
}
.gNaviSub-title-sub {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
.lang-en .gNaviSub-title-sub {
  display: none;
}
.gNaviSub-title-main {
  font-size: 1.3125rem;
  font-family: var(--font-tenor);
}
.gNaviSub-list {
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .gNaviSub-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 60px;
  }
}
@media (max-width: 767px) {
  .gNaviSub-list {
    padding-top: 15px;
    font-size: 0.875rem;
  }
}
.gNaviSub-list a {
  display: flex;
  padding: 5px 0;
}
@media (min-width: 768px) {
  .gNaviSub-list a::before {
    content: "";
    width: 8px;
    height: 8px;
    display: inline-block;
    border: 1px solid #000;
    margin-right: 8px;
    margin-top: 3px;
    border-radius: 50%;
    transition: all 0.3s ease;
  }
}
@media (min-width: 768px) and (hover: hover) {
  .gNaviSub-list a:hover::before {
    background: #000;
  }
}

.filter {
  position: fixed;
  width: 100%;
  height: 120%;
  bottom: 0;
  left: 0;
  pointer-events: none;
  transition: all 0.3s;
  z-index: 3;
}
.dwMenu-active .filter {
  background: rgba(0, 0, 0, 0.4);
  pointer-events: auto;
}

.dwMenu {
  position: fixed;
  top: 15px;
  right: 17px;
  width: 35px;
  height: 35px;
  cursor: pointer;
  z-index: 15;
}
@media (min-width: 980px) {
  .dwMenu {
    display: none;
  }
}
.dwMenu-hamburger {
  appearance: none;
  position: relative;
  border: none;
  background: none;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  padding: 0;
  animation: rotateone-back 1s forwards;
}
.dwMenu-active .dwMenu-hamburger {
  animation: rotateone 1s forwards;
}
.dwMenu-hamburger span {
  position: absolute;
  left: 5px;
  display: inline-block;
  width: 25px;
  height: 1px;
  background: var(--fontColor);
  transition: all 0.4s ease;
}
.dwMenu-hamburger span:nth-of-type(1) {
  top: 9px;
  animation: menu-bar01 0.55s forwards;
}
.dwMenu-hamburger span:nth-of-type(2) {
  top: 17px;
  transition: opacity 0.25s 0.25s, background 0.3s 0s ease;
  opacity: 1;
}
.dwMenu-hamburger span:nth-of-type(3) {
  top: 25px;
  animation: menu-bar02 0.55s forwards;
}
.dwMenu-active .dwMenu-hamburger span {
  background: rgb(78, 78, 78);
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(1) {
  animation: active-menu-bar01 0.55s forwards;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(2) {
  opacity: 0;
}
.dwMenu-active .dwMenu-hamburger span:nth-of-type(3) {
  animation: active-menu-bar03 0.55s forwards;
}

@keyframes rotateone {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(180deg);
  }
}
@keyframes rotateone-back {
  0% {
    transform: rotate(180deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(8px) rotate(35deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-8px) rotate(-35deg);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(8px) rotate(35deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-8px) rotate(-35deg);
  }
}
.wpArticle {
  word-break: break-all;
  font-size: 0.9375rem;
}
.wpArticle p {
  margin-bottom: 20px;
}
.wpArticle p a {
  text-decoration: underline;
}
.wpArticle em {
  font-style: italic;
  color: initial;
}
.wpArticle ol {
  margin: 10px 20px;
  padding: 0;
}
.wpArticle ul {
  margin: 10px 20px;
  list-style-type: disc;
  list-style-position: outside;
  list-style-image: none;
}
.wpArticle ul li {
  list-style: unset;
}
.wpArticle blockquote p {
  font-size: 1.125rem;
}
.wpArticle h1 {
  margin: 50px 40px;
  padding: 10px 15px;
  background: #eef1f3;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .wpArticle h1 {
    margin-bottom: 30px;
  }
}
.wpArticle h2 {
  margin: 50px auto 30px;
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .wpArticle h2 {
    font-size: 1.125rem;
  }
}
.wpArticle h3 {
  margin: 50px auto 20px;
  padding: 5px 0 5px 10px;
  border-bottom: 1px solid #ccc;
  border-left: 5px solid var(--themeColor);
  font-size: 1rem;
  font-weight: bold;
}
.wpArticle h4 {
  margin: 50px auto 5px;
  font-size: 1rem;
  font-weight: bold;
}
.wpArticle img {
  height: auto;
}
@media (max-width: 767px) {
  .wpArticle img {
    display: block;
    margin: 10px auto;
  }
}
.wpArticle table {
  border-collapse: collapse;
  margin-bottom: 20px;
}
.wpArticle table thead {
  border-bottom-width: 1px;
}
.wpArticle table tfoot {
  border-top-width: 1px;
}
.wpArticle table a {
  text-decoration: underline;
}
.wpArticle table th,
.wpArticle table td {
  padding: 10px;
  border: 1px solid #ccc;
}
@media (max-width: 767px) {
  .wpArticle table th,
  .wpArticle table td {
    font-size: 0.8125rem;
  }
}
.wpArticle table th {
  background: #eee;
}
.wpArticle .wp-block-button__link {
  font-size: 0.875rem;
}
.wpArticle .more-link {
  color: var(--linkColor);
}
.wpArticle .wp-caption {
  max-width: 100%;
}
.wpArticle .wp-block-pullquote,
.wpArticle .wp-block-quote {
  background: var(--bgColor);
  padding: 30px;
  text-align: left;
}
.wpArticle .wp-block-pullquote p,
.wpArticle .wp-block-quote p {
  font-size: 0.875rem;
}
.wpArticle .wp-block-pullquote cite,
.wpArticle .wp-block-quote cite {
  display: block;
  text-align: right;
  font-size: #999;
}
.wpArticle .wp-block-columns {
  gap: 30px;
}
.wpArticle .wp-block-gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.wpArticle .wp-block-gallery img {
  margin: 0;
}
.wpArticle .wp-block-image .alignright {
  float: right;
  margin: 0 0 20px 30px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignright img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .alignleft {
  float: left;
  margin: 0 30px 20px 0;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft {
    float: none;
    margin: 10px auto;
  }
}
@media (max-width: 767px) {
  .wpArticle .wp-block-image .alignleft img {
    width: 100% !important;
  }
}
.wpArticle .wp-block-image .aligncenter {
  display: block;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-media-text {
    display: block;
  }
  .wpArticle .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}
.wpArticle .wp-block-list li {
  margin-bottom: 5px;
}
.wpArticle .wp-block-group.has-background {
  margin-bottom: 20px;
  padding: 20px;
}
@media (max-width: 767px) {
  .wpArticle .wp-block-group.has-background {
    padding: 20px 5%;
  }
}
.wpArticle .wp-block-group.has-background p:last-child {
  margin-bottom: 0;
}
.wpArticle .border img {
  border: 1px solid #ccc;
}

.pagination {
  margin: 70px 0;
}
.pagination-box {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.pagination-box li {
  font-size: 1rem;
}
.pagination-box li:not(.page-of) {
  display: flex;
  box-align: center;
  align-items: center;
  justify-content: center;
  background: var(--pointColor);
  width: 40px;
  height: 40px;
  margin: 0 5px 5px 0;
  color: #fff;
  border: 1px solid var(--pointColor);
}
@media (max-width: 767px) {
  .pagination-box li:not(.page-of) {
    width: 30px;
    height: 30px;
  }
}
.pagination-box li.page-of {
  margin-right: 10px;
  padding-top: 10px;
}
@media (max-width: 767px) {
  .pagination-box li.page-of {
    padding-top: 7px;
  }
}
.pagination-box li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: #fff;
  color: var(--pointColor);
}
@media (hover: hover) {
  .pagination-box li a:hover {
    background: #f8f3e3;
  }
}

.js-modalBg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
}

.js-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  display: grid;
  place-items: center;
  z-index: 10;
  visibility: hidden;
}
.js-modal-inner {
  position: relative;
  max-width: 80%;
  height: fit-content;
}
.js-modal-close {
  appearance: none;
  background: #fff;
  border: none;
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: url(../img/common/icon-close.png) center center/contain no-repeat;
  cursor: pointer;
  transition: all 0.2s;
}
@media (hover: hover) {
  .js-modal-close:hover {
    transform: scale(1.1);
  }
}
.js-modal-contents {
  height: 80vh;
  max-height: fit-content;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
}
.js-modal-contents-scroll {
  width: 100%;
  height: 100%;
  max-height: fit-content;
  padding-right: 10px;
  overflow-y: scroll;
}
.js-modal-contents-scroll::-webkit-scrollbar {
  width: 4px;
  border-radius: 0;
}
.js-modal-contents-scroll::-webkit-scrollbar-button {
  display: none;
}
.js-modal-contents-scroll::-webkit-scrollbar-thumb {
  overflow: hidden;
  border-radius: 0;
  background: #008dad;
}
.js-modal-contents-scroll::-webkit-scrollbar-corner {
  background: transparent;
}

.mpPostSect + .mpPostSect {
  margin-top: 60px;
}
.mpPostSect-lead {
  margin-bottom: 20px;
}
.mpPostSect-more {
  margin-top: 20px;
  text-align: right;
}
.mpPostSect .newsSect-wrap {
  max-width: 680px;
  margin-inline: auto 0;
}

.mpPostItemSect-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .mpPostItemSect-grid {
    grid-template-columns: 1fr;
  }
}

.mpPostItemSect {
  border-radius: 4px;
  overflow: hidden;
}
.mpPostItemSect-link {
  display: block;
}
.mpPostItemSect-img {
  aspect-ratio: 240/160;
}
.mpPostItemSect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpPostItemSect-desc {
  background: #CBB196;
  color: #fff;
  padding: 10px;
}
.mpPostItemSect-desc-date {
  display: block;
  font-family: var(--font-go-base);
  margin-bottom: 4px;
}
.mpPostItemSect-desc-title {
  font-size: 0.875rem;
}

.topMv {
  position: relative;
}
.topMv-img {
  height: calc(100vh - var(--headerHeight));
  overflow: hidden;
  background: #000;
}
.topMv-img > div {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.topMv-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.75;
}

.topMvContents {
  position: absolute;
  left: 6.9444444444vw;
  color: #fff;
}
@media (min-width: 768px) {
  .topMvContents {
    top: 30%;
  }
}
@media (max-width: 767px) {
  .topMvContents {
    top: 40%;
  }
}
.topMvContents-title {
  font-size: 2.5rem;
  padding-bottom: 10px;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5019607843);
}
@media (max-width: 767px) {
  .topMvContents-title {
    font-size: 1.5rem;
  }
}
.topMvContents-subtitle {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .topMvContents-subtitle {
    font-size: 1rem;
  }
}
.topMvContents-subtitle .text-s {
  display: block;
  margin-bottom: 4px;
  font-size: 1.125rem;
}
@media (max-width: 767px) {
  .topMvContents-subtitle .text-s {
    font-size: 0.75rem;
  }
}

.topNews {
  padding-block: 80px;
}
@media (min-width: 768px) {
  .topNews {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .topNews {
    max-width: 90%;
  }
}
.topNews {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .topNews {
    padding: 80px 20px;
    flex-direction: column;
  }
}
.topNews .title-l {
  flex: 1;
}
.topNews-main {
  width: 76%;
}
@media (max-width: 767px) {
  .topNews-main {
    width: 100%;
  }
}
.topNews-main-btn {
  margin-top: 40px;
  text-align: right;
}

@media (max-width: 767px) {
  .newsSect-wrap {
    margin-top: 20px;
  }
}

.newsSect {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid rgba(130, 130, 130, 0.4392156863);
}
@media (max-width: 767px) {
  .newsSect {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding-bottom: 10px;
  }
}
.newsSect-time {
  width: 100px;
  font-family: var(--font-tenor);
  font-size: 0.8125rem;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .newsSect-time {
    width: 100%;
  }
}
@media (hover: hover) {
  a:hover .newsSect-time {
    color: var(--pointColor);
  }
}
.newsSect-cate {
  min-width: 120px;
}
@media (max-width: 767px) {
  .newsSect-cate {
    position: absolute;
    top: 18px;
    left: 6em;
  }
}
.newsSect-cate-item {
  height: fit-content;
  padding: 8px 10px;
  line-height: 1;
  font-size: 0.625rem;
  color: #fff;
  background: var(--pointColor);
}
@media (max-width: 767px) {
  .newsSect-cate-item {
    padding: 4px 8px;
  }
}
.newsSect-title {
  color: #828282;
  font-size: 1rem;
  line-height: 1.6;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .newsSect-title {
    width: 100%;
    font-size: 0.875rem;
  }
}
@media (hover: hover) {
  a:hover .newsSect-title {
    color: var(--pointColor);
  }
}

.memberArticles {
  padding-block: 80px;
  background: #EAE2D8;
}
@media (max-width: 767px) {
  .memberArticles {
    padding: 80px 20px;
  }
}
@media (min-width: 768px) {
  .memberArticles-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .memberArticles-inner {
    max-width: 90%;
  }
}

.memberArticle-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .memberArticle-wrap {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}

.memberArticle-img {
  margin-bottom: 20px;
  aspect-ratio: 1.5;
}
@media (max-width: 767px) {
  .memberArticle-img {
    margin-bottom: 15px;
  }
}
.memberArticle-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.memberArticle-time {
  display: block;
  font-size: 0.8125rem;
  margin-bottom: 5px;
  color: #A0A0A0;
  font-family: var(--font-go-base);
}
.memberArticle-title {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .memberArticle-title {
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
}
.memberArticle-excerpt {
  margin-bottom: 10px;
  font-family: var(--font-go-base);
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.memberArticle-excerpt p {
  line-height: 1.4;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .memberArticle-excerpt p {
    font-size: 0.625rem;
  }
}
.memberArticle-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
@media (max-width: 767px) {
  .memberArticle-tags {
    gap: 5px;
  }
}
.memberArticle-tags-item {
  background: #000;
  font-size: 0.625rem;
  padding: 5px 15px;
  color: #fff;
  border-radius: 2px;
  font-family: var(--font-go-base);
}
@media (max-width: 767px) {
  .memberArticle-tags-item {
    padding: 4px 10px;
    font-size: 0.5rem;
  }
}

.topAbout {
  padding-block: 80px;
  background: #F2F0F1;
}
@media (min-width: 768px) {
  .topAbout-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .topAbout-inner {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .topAbout-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topAbout-lead {
  width: fit-content;
  margin-inline: auto;
  font-size: 1rem;
  padding-bottom: 80px;
}
@media (max-width: 767px) {
  .topAbout-lead {
    padding-bottom: 20px;
  }
}
.topAbout-more {
  text-align: right;
  margin-top: 5px;
}

.topPurpose {
  display: flex;
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 767px) {
  .topPurpose {
    flex-direction: column;
    margin-top: 60px;
    padding-top: 80px;
    border-top: 1px solid rgba(0, 0, 0, 0.3764705882);
  }
}
.topPurpose-desc {
  flex: 1;
}
.topPurpose-desc-text {
  margin-block: 40px;
  font-size: 0.9375rem;
}
.topPurpose-desc-text p {
  line-height: 2.2;
}
.topPurpose-desc-more {
  text-align: right;
  margin-top: 40px;
}
.topPurpose-img {
  max-width: 60%;
}
@media (max-width: 767px) {
  .topPurpose-img {
    max-width: 100%;
  }
}

.topActivity {
  padding-block: 80px 130px;
}
@media (max-width: 767px) {
  .topActivity {
    padding-block: 80px;
  }
}
@media (min-width: 768px) {
  .topActivity-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .topActivity-heading {
    max-width: 90%;
  }
}
.topActivity-heading {
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .topActivity-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.topActivity-heading .title-m {
  margin-bottom: 20px;
}
.topActivity-heading-lead {
  margin-bottom: 40px;
  font-size: 0.875rem;
}
.topActivity-heading-lead p {
  line-height: 2;
}
.topActivity-heading-lead p + p {
  margin-top: 20px;
}
@media (max-width: 767px) {
  .topActivity-heading-lead p + p {
    margin-top: 30px;
  }
}
.topActivity-cont {
  max-width: 1240px;
  margin-inline: auto;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .topActivity-cont {
    padding-right: 100px;
  }
}
@media (max-width: 767px) {
  .topActivity-cont {
    flex-direction: column;
    padding: 0 20px;
  }
}

.topActivityItem-wrap {
  width: 640px;
  max-width: 100%;
}
.topActivityItem-wrap::before {
  content: "";
  display: inline-block;
  width: 669px;
  height: 670px;
  position: absolute;
  right: calc(50% + 240px);
  background: url(../img/common/bg-mark.svg) no-repeat center center/contain;
}

.topActivityItem {
  position: relative;
  display: block;
  background: #000;
}
.topActivityItem + .topActivityItem {
  margin-top: 10px;
}
.topActivityItem-img {
  opacity: 0.4;
  transition: all 0.7s ease;
}
.topActivityItem-img img {
  opacity: 1;
}
@media (hover: hover) {
  a:hover .topActivityItem-img {
    opacity: 0.8;
  }
  a:hover .topActivityItem-img img {
    opacity: 1;
  }
}
.topActivityItem-on {
  position: absolute;
  top: 35%;
  left: 40px;
  width: calc(100% - 80px);
  color: #fff;
}
@media (max-width: 767px) {
  .topActivityItem-on {
    top: 35%;
    width: 100%;
    left: 0;
  }
}
.topActivityItem-on-title {
  font-size: 1.75rem;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .topActivityItem-on-title {
    margin-bottom: 0;
    font-size: 1.125rem;
    text-align: center;
    font-weight: bold;
  }
}
.topActivityItem-on-text {
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .topActivityItem-on-text {
    font-size: 0.875rem;
    text-align: center;
  }
}
.topActivityItem-on-more {
  text-align: right;
  margin-top: 25px;
}
@media (max-width: 767px) {
  .topActivityItem-on-more {
    margin-right: 20px;
    margin-top: 20px;
  }
}
@media (hover: hover) {
  a:hover .topActivityItem-on-more .moreLink {
    opacity: 0.8;
  }
  a:hover .topActivityItem-on-more .moreLink::before, a:hover .topActivityItem-on-more .moreLink::after {
    transform: rotate(180deg);
  }
}

.contentsPanels {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  padding-block: 80px;
  gap: 1px;
}
.contentsPanels-item {
  position: relative;
  background: #000;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contentsPanels-item {
    height: 280px;
  }
}
@media (max-width: 767px) {
  .contentsPanels-item {
    height: 180px;
  }
}
.contentsPanels-item:nth-child(1), .contentsPanels-item:nth-child(2), .contentsPanels-item:nth-child(3) {
  grid-column: span 4;
}
@media (max-width: 767px) {
  .contentsPanels-item:nth-child(1), .contentsPanels-item:nth-child(2), .contentsPanels-item:nth-child(3) {
    grid-column: span 12;
  }
}
.contentsPanels-item:nth-child(4), .contentsPanels-item:nth-child(5) {
  grid-column: span 6;
}
.contentsPanels-item-bg {
  height: 100%;
}
.contentsPanels-item-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 1s ease;
  transform: scale(1.1);
}
@media (hover: hover) {
  .contentsPanels-item:hover img {
    opacity: 0.6;
    transform: scale(1);
  }
}
.contentsPanels-on {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: grid;
  place-content: center;
  color: #fff;
  font-size: 1.25rem;
}

.companyInfo {
  display: flex;
  gap: 12%;
  justify-content: center;
  padding: 80px 0;
}
@media (min-width: 768px) {
  .companyInfo {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .companyInfo {
    max-width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .companyInfo {
    flex-direction: column;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .companyInfo {
    flex-direction: column;
    gap: 60px;
    padding: 80px 20px;
  }
}

.companyTable {
  max-width: 794px;
  width: 100%;
}
.companyTable tr:first-child th, .companyTable tr:first-child td {
  padding-top: 0;
}
@media (max-width: 767px) {
  .companyTable tr th {
    width: 100px;
  }
}
.companyTable tr th, .companyTable tr td {
  word-break: break-all;
}
.companyTable tr th a, .companyTable tr td a {
  color: var(--fontColor);
  text-decoration: underline;
}

.structureSect {
  background: url(../img/outline/bg-organize.jpg) no-repeat center center/cover;
  padding: 80px 5%;
}

.jfoStructure {
  text-align: center;
}

.officer {
  padding-block: 80px;
  background: #F2F0F1;
}

.memberCard-wrap {
  display: flex;
  gap: 40px;
}
@media (min-width: 768px) {
  .memberCard-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .memberCard-wrap {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .memberCard-wrap {
    flex-wrap: wrap;
    justify-content: center;
    gap: 60px;
  }
}

.memberCard-img {
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .memberCard-img {
    width: 50%;
    margin-inline: auto;
    margin-bottom: 10px;
  }
}
.memberCard-desc {
  text-align: center;
}
.memberCard-desc-en {
  font-size: 0.75rem;
  margin-bottom: 8px;
}
@media (max-width: 767px) {
  .memberCard-desc-en {
    font-size: 0.625rem;
  }
}
.memberCard-desc-role {
  font-size: 1rem;
  letter-spacing: 0.03em;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .memberCard-desc-role {
    margin-bottom: 10px;
    font-size: 0.875rem;
  }
}
.memberCard-desc-name {
  margin-bottom: 20px;
  font-size: 1.25rem;
  font-family: var(--font-tenor);
}
@media (min-width: 768px) and (max-width: 1139px) {
  .memberCard-desc-name {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .memberCard-desc-name {
    margin-bottom: 10px;
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .purposeSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .purposeSummary {
    max-width: 90%;
  }
}
.purposeSummary {
  padding-block: 160px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .purposeSummary {
    padding-block: 120px;
  }
}
@media (max-width: 767px) {
  .purposeSummary {
    padding-block: 80px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.purposeSummary .title-m {
  margin-bottom: 80px;
}
.purposeSummary-lead {
  margin-bottom: 80px;
  font-size: 2rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .purposeSummary-lead {
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
}
.purposeSummary-text {
  width: fit-content;
  margin-inline: auto 0;
  font-size: 1.125rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .purposeSummary-text {
    font-size: 0.9375rem;
  }
}

.usArea {
  background: #F2F0F1;
  padding: 160px 0;
}
@media (min-width: 768px) and (max-width: 979px) {
  .usArea {
    padding: 120px 0;
  }
}
@media (max-width: 767px) {
  .usArea {
    padding: 80px 0;
  }
}

@media (min-width: 768px) {
  .usSect-wrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .usSect-wrap {
    max-width: 90%;
  }
}

.usSect {
  padding-inline: 100px;
}
@media (min-width: 768px) and (max-width: 1139px) {
  .usSect {
    padding-inline: 0;
  }
}
@media (max-width: 767px) {
  .usSect {
    padding-inline: 20px;
  }
}
.usSect + .usSect {
  margin-top: 240px;
}
@media (min-width: 768px) and (max-width: 1139px) {
  .usSect + .usSect {
    margin-top: 120px;
  }
}
@media (max-width: 767px) {
  .usSect + .usSect {
    margin-top: 80px;
  }
}
.usSect-title {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 2.625rem;
  letter-spacing: 0.03em;
  font-family: var(--font-tenor);
}
@media (max-width: 767px) {
  .usSect-title {
    margin-bottom: 20px;
    font-size: 1.75rem;
  }
}
.usSect-title::before, .usSect-title::after {
  content: "";
  display: inline-block;
  width: 171px;
  max-width: 100%;
  height: 1px;
  background: var(--fontColor);
}
.usSect-title::after {
  display: none;
}
.is-reverse .usSect-title {
  justify-content: flex-start;
}
.is-reverse .usSect-title::before {
  display: none;
}
.is-reverse .usSect-title::after {
  display: inline-block;
}
.usSect-lead {
  font-size: 1.75rem;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .usSect-lead {
    line-height: 1.8;
    font-size: 1.125rem;
  }
}
.is-reverse .usSect-lead {
  width: fit-content;
  margin-inline: auto 0;
}

.teikanArea {
  background: #F2F0F1;
  padding-block: 80px;
  padding-inline: 20px;
}

.teikanContent {
  background: #fff;
  max-width: 974px;
  margin-inline: auto;
  padding: 80px;
}
@media (max-width: 767px) {
  .teikanContent {
    max-width: 100%;
    padding: 40px 20px;
  }
}
.teikanContent-title-sub {
  display: block;
  font-size: 1.25rem;
  text-align: center;
}
@media (max-width: 767px) {
  .teikanContent-title-sub {
    font-size: 1rem;
  }
}
.teikanContent-title-main {
  display: block;
  margin-block: 40px;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 767px) {
  .teikanContent-title-main {
    margin-block: 20px;
    font-size: 1.5rem;
  }
}

.teikanSect + .teikanSect {
  margin-top: 40px;
}
@media (max-width: 767px) {
  .teikanSect + .teikanSect {
    margin-top: 60px;
  }
}
.teikanSect-title {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .teikanSect-title {
    margin-bottom: 20px;
    font-size: 1.125rem;
  }
}
.teikanSecItem + .teikanSecItem {
  margin-top: 40px;
}
.teikanSecItem-title {
  font-size: 1rem;
}
.teikanSecItem-text {
  margin-top: 4px;
}
.teikanSecItem-text p + p {
  margin-top: 2em;
}

.memberContainer {
  margin-bottom: 160px;
}
@media (max-width: 767px) {
  .memberContainer {
    margin-bottom: 100px;
  }
}

.memberListSummary {
  padding: 80px 0;
}
@media (max-width: 767px) {
  .memberListSummary {
    padding-bottom: 40px;
  }
}
.memberListSummary-lead {
  margin-block: 40px 0;
  line-height: 2;
  font-size: 1rem;
  width: fit-content;
  margin-inline: auto;
  text-align: center;
}
@media (max-width: 767px) {
  .memberListSummary-lead {
    margin-block: 20px 0;
    font-size: 0.875rem;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.pageNavi {
  margin-bottom: 80px;
}
.pageNavi-ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 767px) {
  .pageNavi-ul {
    gap: 20px;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-top: 40px;
  }
}
.pageNavi-ul-li {
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .pageNavi-ul-li {
    font-size: 1rem;
  }
}
.pageNavi-ul-li a {
  position: relative;
  display: block;
  padding: 8px 32px 8px 16px;
}
@media (max-width: 767px) {
  .pageNavi-ul-li a {
    padding: 8px 16px 8px 8px;
  }
}
.pageNavi-ul-li a::after {
  content: "";
  position: absolute;
  right: 0;
  top: calc(50% - 3.5px);
  display: block;
  width: 13px;
  height: 7px;
  background: url(../img/common/icon-arrow-b.svg) no-repeat center;
  transform: translateY(0);
  transition: transform 0.3s;
}
@media (hover: hover) {
  .pageNavi-ul-li a:hover::after {
    transform: translateY(4px);
  }
}

@media (min-width: 768px) {
  .memberSect {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .memberSect {
    max-width: 90%;
  }
}
.memberSect {
  margin-top: 40px;
}
.memberSect + .memberSect {
  margin-top: 80px;
}
.memberSect-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .memberSect-heading {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.memberSect-heading-title-main {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .memberSect-heading-title-main {
    font-size: 1.25rem;
  }
}
.memberSect-heading-title-sub {
  display: inline-block;
  margin-left: 10px;
  color: #7B6B5A;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .memberSect-heading-title-sub {
    margin-left: 5px;
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .memberSect-heading-date {
    font-size: 0.75rem;
  }
}
.memberSect-cont {
  background: #F2F0F1;
  padding: 40px;
}
@media (max-width: 767px) {
  .memberSect-cont {
    padding: 20px;
  }
}
.memberSect-cont-note {
  margin-top: 20px;
  text-align: right;
}

@media (max-width: 767px) {
  .memberTable-scroll {
    overflow-x: auto;
  }
}

.memberTable {
  width: 100%;
}
@media (max-width: 767px) {
  .memberTable {
    width: fit-content;
  }
}
.memberTable tbody td {
  word-break: break-all;
}
@media (max-width: 767px) {
  .memberTable tbody td {
    min-width: 40vw;
  }
}

.financialReport {
  padding-block: 95px 80px;
}
@media (min-width: 768px) {
  .financialReport {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .financialReport {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .financialReport {
    padding-block: 60px 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}

.frSect {
  max-width: 860px;
  margin-inline: auto;
  font-family: var(--font-go-base);
}

.frSectList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .frSectList {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 767px) {
  .frSectList {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}
.frSectList-li a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 40px;
  padding: 8px 16px 8px 30px;
  border-radius: 4px;
  border: 1px solid var(--fontColor);
  color: var(--fontColor);
  font-weight: bold;
  font-size: 0.75rem;
}
@media (max-width: 767px) {
  .frSectList-li a {
    padding: 8px 8px 8px 20px;
    font-size: 0.6875rem;
  }
}
@media (hover: hover) {
  .frSectList-li a:hover {
    background: rgba(208, 208, 208, 0.1450980392);
  }
}
.frSectList-li a::before {
  content: "";
  position: absolute;
  left: 16px;
  top: calc(50% - 4px);
  display: inline-block;
  width: 5px;
  height: 8px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background: var(--fontColor);
}
@media (max-width: 767px) {
  .frSectList-li a::before {
    left: 8px;
  }
}
.frSectList-li .kakuchoshi {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fontColor);
  font-size: 0.5625rem;
  padding: 0 6px;
  height: 1.5em;
  border-radius: 20px;
  line-height: 1;
}

.newsMainSect {
  display: flex;
  gap: 5%;
  padding-block: 80px;
}
@media (min-width: 768px) {
  .newsMainSect {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .newsMainSect {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .newsMainSect {
    flex-direction: column;
    gap: 0;
    padding-block: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.newsMainSect .title-l {
  width: 20%;
}
@media (max-width: 767px) {
  .newsMainSect .title-l {
    margin-bottom: 30px;
    width: 100%;
  }
}
.newsMainSect-cont {
  flex: 1;
}

.newsList-item {
  position: relative;
  display: flex;
  align-items: center;
  padding: 20px 0;
  color: #828282;
  border-bottom: 1px solid rgba(130, 130, 130, 0.462745098);
}
@media (max-width: 767px) {
  .newsList-item {
    padding: 16px 0;
    flex-direction: column;
    align-items: flex-start;
  }
}
.newsList-item-date {
  box-sizing: border-box;
  display: block;
  width: 120px;
  font-family: var(--font-tenor);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .newsList-item-date {
    margin-bottom: 10px;
  }
}
@media (hover: hover) {
  a:hover .newsList-item-date {
    padding-left: 10px;
  }
}
.newsList-item-cate {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 2px 10px;
  margin-right: 30px;
  background: #CBB196;
  font-size: 0.625rem;
  font-weight: bold;
  color: #fff;
  font-family: var(--font-tenor);
}
@media (max-width: 767px) {
  .newsList-item-cate {
    position: absolute;
    top: 12px;
    right: 0;
    height: 20px;
    margin-right: 0;
  }
}
.newsList-item-title {
  flex: 1;
  font-size: 1rem;
}
@media (hover: hover) {
  .newsList a:hover {
    background: #f6f6f6;
  }
}

.newsDetailContainer {
  margin-bottom: 100px;
}

.newsDetailWrap {
  display: flex;
}
@media (min-width: 768px) {
  .newsDetailWrap {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .newsDetailWrap {
    max-width: 90%;
  }
}
.newsDetailWrap {
  padding-block: 100px 40px;
  gap: 80px;
}
@media (max-width: 767px) {
  .newsDetailWrap {
    flex-direction: column;
    padding-block: 60px 20px;
    gap: 40px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.newsDetailWrap-main {
  flex: 1;
}
.newsDetailWrap-sidebar {
  width: 260px;
}
@media (max-width: 767px) {
  .newsDetailWrap-sidebar {
    width: 100%;
  }
}

.article {
  font-family: var(--font-go-base);
}
.article-time {
  display: block;
  margin-bottom: 10px;
  font-size: 1.125rem;
  color: #191D29;
}
.article-title {
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .article-title {
    margin: 16px 0;
    font-size: 1.125rem;
  }
}
.article-body {
  font-size: 1rem;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .article-body {
    font-size: 0.875rem;
  }
}

.sideArticles-title {
  font-size: 1.125rem;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #CBB196;
  font-weight: bold;
}
.sideArticles-list-item {
  display: block;
  font-family: var(--font-go-base);
  border-bottom: 1px solid rgba(0, 0, 0, 0.4235294118);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
@media (hover: hover) {
  .sideArticles-list-item:hover {
    color: var(--pointColor);
  }
}
.sideArticles-list-item-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sideArticles-list-item-heading-date {
  font-size: 1rem;
}
.sideArticles-list-item-heading-cate {
  display: block;
  margin-top: -4px;
  margin-left: 10px;
  padding: 3px 10px;
  background: #CBB196;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
}
.sideArticles-list-item-title {
  font-size: 1rem;
  margin-top: 10px;
  line-height: 1.2;
}

.privacySummary {
  padding: 80px 0 0;
  margin-bottom: 200px;
}
@media (min-width: 768px) {
  .privacySummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .privacySummary {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .privacySummary {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 80px;
    padding-block: 60px 0;
  }
}
.privacySummary-lead {
  line-height: 1.8;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .privacySummary-lead {
    font-size: 1rem;
  }
}

@media (min-width: 768px) {
  .privacyContents {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .privacyContents {
    max-width: 90%;
  }
}
.privacyContents {
  margin-bottom: 120px;
}
@media (max-width: 767px) {
  .privacyContents {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-bottom: 80px;
  }
}

.privacySect + .privacySect {
  margin-top: 80px;
}
@media (max-width: 767px) {
  .privacySect + .privacySect {
    margin-top: 40px;
  }
}
.privacySect-title {
  margin-bottom: 10px;
  font-size: 2rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .privacySect-title {
    margin-bottom: 8px;
    font-size: 1.25rem;
  }
}
.privacySect-text {
  font-size: 1.125rem;
  font-family: var(--font-go-base);
}
@media (max-width: 767px) {
  .privacySect-text {
    font-size: 0.875rem;
  }
}

.contactSummary {
  margin-bottom: 80px;
  padding: 80px 0 0;
}
@media (min-width: 768px) {
  .contactSummary {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .contactSummary {
    max-width: 90%;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactSummary {
    margin-bottom: 60px;
    padding-top: 60px;
  }
}
@media (max-width: 767px) {
  .contactSummary {
    margin-bottom: 40px;
    padding-block: 40px 0;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.contactSummary-lead {
  line-height: 2;
  font-size: 1.25rem;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactSummary-lead {
    font-size: 1rem;
  }
}
@media (max-width: 767px) {
  .contactSummary-lead {
    text-align: left;
    font-size: 0.875rem;
  }
}

.contactContents {
  background: #FAFAFA;
}
@media (min-width: 768px) {
  .contactContents {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .contactContents {
    max-width: 90%;
  }
}
.contactContents {
  border-radius: 4px;
  margin-bottom: 80px;
  padding: 80px 40px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactContents {
    padding: 60px 20px;
    margin-bottom: 60px;
  }
}
@media (max-width: 767px) {
  .contactContents {
    padding: 40px 5%;
    margin-bottom: 0;
  }
}

.contactTable {
  margin-bottom: 40px;
}
.contactTable th {
  width: 35%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable th {
    padding: 15px;
    width: 38%;
  }
}
@media (max-width: 767px) {
  .contactTable th {
    width: 100%;
  }
}
.contactTable td input {
  width: 100%;
  max-width: 100%;
}
.contactTable .titleicon {
  float: right;
  display: block;
  margin-right: 10px;
  padding: 2px 10px;
  border-radius: 2px;
  color: #fff;
  font-size: 0.75rem;
  font-weight: bold;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable .titleicon {
    padding-right: 0;
    margin-right: 5px;
  }
}
@media (max-width: 767px) {
  .contactTable .titleicon {
    line-height: 1.2;
  }
}
.contactTable .titleicon.is-required {
  color: #C60C0F;
  font-weight: normal;
  font-size: 1rem;
}
@media (min-width: 768px) and (max-width: 979px) {
  .contactTable .titleicon.is-required {
    font-size: 0.875rem;
  }
}
.contactTable-jusho-yubinmark {
  margin-right: 5px;
}
.contactTable-jusho-yubincode {
  max-width: 130px;
  margin-right: 10px;
}
@media (max-width: 767px) {
  .contactTable-jusho-input {
    margin-top: 10px;
  }
}
.contactTable input, .contactTable textarea {
  vertical-align: middle;
}
@media (max-width: 767px) {
  .contactTable input, .contactTable textarea {
    font-size: 1rem;
  }
}
.contactTable .checkboxWrap {
  display: flex;
  flex-wrap: wrap;
}
.contactTable .checkboxWrap label {
  width: 25%;
  display: inline-block;
  margin: 5px 0 0;
}
@media (max-width: 767px) {
  .contactTable .checkboxWrap label {
    width: 46%;
    margin: 15px 0 0;
  }
}
.contactTable .checkboxWrap input[type=checkbox], .contactTable .checkboxWrap input[type=radio] {
  margin-right: 5px;
}
.contactTable .radioWrap label {
  display: inline-block;
  margin: 0 30px 0 0;
}
.contactTable .radioWrap input[type=checkbox], .contactTable .radioWrap input[type=radio] {
  margin-right: 5px;
}
.contactTable .wpcf7-form-control-wrap {
  display: block;
}
@media (max-width: 767px) {
  .contactTable .wpcf7-form-control-wrap:has(.wpcf7-acceptance) {
    display: flex;
    margin: 20px 0 0;
    text-align: center;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .contactTable .wpcf7-form-control-wrap:has(.wpcf7-acceptance) .wpcf7-acceptance {
    width: 100%;
    display: flex;
  }
}
@media (max-width: 767px) and (max-width: 767px) {
  .contactTable .wpcf7-form-control-wrap:has(.wpcf7-acceptance) .wpcf7-list-item {
    display: block;
    width: fit-content;
    margin-inline: auto;
  }
}
.contactTable .wpcf7-acceptance input[type=checkbox] {
  margin-right: 5px;
  width: 26px;
  height: 26px;
  background: #D9D9D9;
}
.contactTable .wpcf7-acceptance .wpcf7-list-item-label {
  cursor: pointer;
  font-family: var(--font-go-base);
  font-weight: normal;
  font-size: 1rem;
}
@media (max-width: 767px) {
  .contactTable .wpcf7-acceptance .wpcf7-list-item-label {
    font-size: 0.75rem;
  }
}
.contactTable .wpcf7-not-valid-tip {
  position: absolute;
  top: calc(100% + 0.1em);
  display: block;
  font-size: 0.8125rem;
}
@media (max-width: 767px) {
  .contactTable .wpcf7-not-valid-tip {
    font-size: 0.6875rem;
  }
}

.contactBtns {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
}
.contactBtns .wpcf7-spinner {
  position: absolute;
  bottom: calc(100% + 10px);
  left: calc(50% - 40px);
}

#container .wpcf7-response-output {
  padding: 20px;
  border: 2px solid #f2f2f2;
  position: fixed;
  top: 10px;
  left: 5%;
  width: 90%;
  z-index: 10;
  background: #cf1414;
  color: #fff;
  text-align: center;
  animation: hideMsg 4s forwards;
}

@keyframes hideMsg {
  0% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.wpcf7-form-control a {
  text-decoration: underline;
}

.regarding {
  padding-block: 100px;
}
@media (min-width: 768px) {
  .regarding {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .regarding {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .regarding {
    padding-block: 50px;
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.regarding-lead {
  margin-bottom: 40px;
  line-height: 2;
}
.regarding-dl-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .regarding-dl-title {
    font-size: 1.125rem;
  }
}
.regarding-dl-btns {
  display: flex;
  justify-content: center;
  gap: 10px;
  background: #F2F0F1;
  padding: 40px;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .regarding-dl-btns {
    flex-direction: column;
    padding: 20px;
  }
}

.regardingPoint {
  margin-bottom: 40px;
  padding: 50px 100px;
  background: #F2F0F1;
  border-radius: 2px;
}
@media (max-width: 767px) {
  .regardingPoint {
    padding: 40px 5%;
  }
}
.regardingPoint-title {
  font-size: 1.25rem;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .regardingPoint-title {
    font-size: 1.125rem;
  }
}
.regardingPoint-text {
  font-size: 1rem;
  letter-spacing: 0.03em;
}

.registrationProcess {
  background: #F2F0F1;
  padding: 100px 0;
}
@media (max-width: 767px) {
  .registrationProcess {
    padding: 50px 0;
  }
}
@media (min-width: 768px) {
  .registrationProcess-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .registrationProcess-inner {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .registrationProcess-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.registrationProcess-steps {
  padding: 50px 100px;
  background: #fff;
}
@media (max-width: 767px) {
  .registrationProcess-steps {
    padding: 40px 5%;
  }
}
.registrationProcess-steps-item + .registrationProcess-steps-item {
  margin-top: 30px;
}
.registrationProcess-steps-item-num {
  font-weight: bold;
  font-size: 1rem;
}
.registrationProcess-steps-item-text {
  line-height: 2;
  margin-top: 5px;
  word-break: break-all;
}
.registrationProcess-steps-item-text a {
  text-decoration: underline;
}

.memberType {
  padding-block: 80px;
}
@media (max-width: 767px) {
  .memberType {
    padding-block: 40px;
  }
}
@media (min-width: 768px) {
  .memberType-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .memberType-inner {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .memberType-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.memberType-lead {
  margin-bottom: 40px;
  line-height: 2;
}
@media (min-width: 768px) {
  .memberType-lead {
    font-size: 1rem;
  }
}

.memberTypeList {
  background: #F2F0F1;
  border-radius: 4px;
  padding: 20px 40px 40px;
}
@media (max-width: 767px) {
  .memberTypeList {
    padding: 20px 5%;
  }
}
.memberTypeList-item {
  display: flex;
  gap: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4666666667);
  padding-block: 20px;
}
@media (max-width: 767px) {
  .memberTypeList-item {
    flex-direction: column;
    padding-block: 20px;
    gap: 10px;
  }
}
.memberTypeList-item-left {
  width: 48%;
}
@media (max-width: 767px) {
  .memberTypeList-item-left {
    width: 100%;
  }
}
.memberTypeList-item-left-main {
  display: block;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .memberTypeList-item-left-main {
    font-size: 1.125rem;
    margin-bottom: 10px;
  }
}
.memberTypeList-item-left-text {
  font-size: 1rem;
  margin-top: 10px;
}
.memberTypeList-item-text {
  display: flex;
  align-items: center;
  flex: 1;
  background: #fff;
  padding: 10px 20px;
}

.membershipFee {
  padding-block: 20px 100px;
}
@media (max-width: 767px) {
  .membershipFee {
    padding-block: 40px;
  }
}
@media (min-width: 768px) {
  .membershipFee-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .membershipFee-inner {
    max-width: 90%;
  }
}
@media (max-width: 767px) {
  .membershipFee-inner {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
  }
}
.membershipFee-lead {
  margin-bottom: 40px;
  line-height: 2;
}
@media (max-width: 767px) {
  .membershipFee-lead {
    margin-bottom: 20px;
  }
}

.feeList {
  background: #F2F0F1;
  border-radius: 4px;
  padding: 20px 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .feeList {
    padding: 20px 5%;
  }
}
@media (max-width: 767px) {
  .feeList {
    padding: 20px 5%;
  }
}
.feeList-table {
  width: 100%;
}
.feeList-table thead th {
  font-size: 1.25rem;
  border-bottom: 1px solid #000;
  padding-block: 10px;
}
@media (max-width: 767px) {
  .feeList-table thead th {
    font-size: 0.75rem;
  }
}
.feeList-table tbody th, .feeList-table tbody td {
  padding: 20px 5px;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .feeList-table tbody th, .feeList-table tbody td {
    font-size: 0.8125rem;
    padding-block: 20px 5px;
  }
}
.feeList-table tbody th:first-child, .feeList-table tbody td:first-child {
  padding-left: 0;
}
@media (min-width: 768px) {
  .feeList-table tbody tr:first-child th, .feeList-table tbody tr:first-child td {
    padding-top: 40px;
  }
}
.feeList-note {
  margin-top: 20px;
  font-size: 0.75rem;
}

.ctaMember {
  background: #F2F0F1;
  padding: 80px 0 110px;
  text-align: center;
}
@media (max-width: 767px) {
  .ctaMember {
    padding: 40px 0;
  }
}
.ctaMember-text {
  margin-bottom: 30px;
  font-size: 0.9375rem;
}
.ctaMember-btn {
  text-align: center;
}
.ctaMember-btn .btn-square {
  font-size: 1.25rem;
  height: 49px;
  padding-inline: 40px;
}

.memberInfo-success,
.memberInfo-error {
  padding: 14px 20px;
  border-radius: 4px;
  margin-bottom: 30px;
  font-size: 0.9375rem;
  font-weight: bold;
}

.memberInfo-success {
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #a5d6a7;
}

.memberInfo-error {
  background: #fdecea;
  color: #b71c1c;
  border: 1px solid #ef9a9a;
}

.required {
  color: #b71c1c;
  margin-left: 4px;
}

.loginArea {
  width: 100%;
  display: flex;
  min-height: 100dvh;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 979px) {
  .loginArea {
    flex-direction: column;
  }
}
@media (max-width: 767px) {
  .loginArea {
    flex-direction: column;
  }
}

.loginHeading {
  display: flex;
  flex-direction: column;
  width: 34.7222222222%;
  height: 100vh;
  padding: 15vh 5%;
  text-align: center;
}
@media (min-width: 980px) and (max-width: 1139px) {
  .loginHeading {
    padding: 10vh 20px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .loginHeading {
    padding: 20px;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .loginHeading {
    padding: 10px 20px;
    justify-content: space-between;
    width: 100%;
    height: fit-content;
  }
}
.loginHeading-title {
  margin-top: 40%;
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .loginHeading-title {
    margin-top: 20px;
    text-align: center;
  }
}
@media (max-width: 767px) {
  .loginHeading-title {
    margin-top: 10px;
    text-align: left;
    margin-bottom: 10px;
  }
}
.loginHeading-title-logo {
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .loginHeading-title-logo {
    width: 50%;
  }
}
.loginHeading-title-main {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .loginHeading-title-main {
    font-size: 1.25rem;
  }
}
.loginHeading-cont {
  text-align: center;
  height: fit-content;
  margin-block: auto 0;
}
.loginHeading-cont-btnArea {
  text-align: left;
}
@media (max-width: 767px) {
  .loginHeading-cont-btnArea {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
  }
}
.loginHeading-cont-btnArea-cap {
  display: block;
  margin-bottom: 5px;
}
@media (max-width: 767px) {
  .loginHeading-cont-btnArea-cap {
    font-size: 0.6875rem;
  }
}
.loginHeading-cont-btnArea .btn-simple, .loginHeading-cont-btnArea .btn-gold {
  width: 100%;
}
@media (max-width: 767px) {
  .loginHeading-cont-btnArea .btn-simple, .loginHeading-cont-btnArea .btn-gold {
    width: auto;
    height: 30px;
    white-space: nowrap;
    padding-inline: 5px;
    width: auto;
    font-size: 0.8125rem;
  }
}

.loginMain {
  flex: 1;
  background: #F2F0F1;
  padding: 100px 6.9444444444% 15vh;
}
@media (max-width: 767px) {
  .loginMain {
    padding: 50px 20px;
  }
}
.loginMain.is-bg-black {
  background: #191D29;
  color: #fff;
}

.loginMainBtn {
  margin-block: 35px 0;
  text-align: center;
}
.loginMainBtn button {
  width: 100%;
}

.registerFormSect-lead {
  margin-bottom: 10px;
}
.registerFormSect-lead p {
  line-height: 1.5;
}

.registerForm-main {
  background: #fff;
  padding: 40px;
  border-radius: 4px;
}
@media (max-width: 767px) {
  .registerForm-main {
    padding: 20px;
  }
}
.registerForm-btn {
  margin-top: 35px;
  text-align: center;
}

.registerTable {
  width: 100%;
}
@media (min-width: 768px) {
  .registerTable th {
    width: 200px;
  }
}
.registerTable input {
  width: 100%;
}

.registerThanks {
  display: grid;
  place-items: center;
  height: 100%;
}
@media (max-width: 767px) {
  .registerThanks {
    height: auto;
  }
}
.registerThanks-inner {
  height: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  padding-block: 23vh 0;
}
@media (max-width: 767px) {
  .registerThanks-inner {
    padding-block: 10vh 0;
  }
}
.registerThanks .loginMainBtn .btn-gold {
  width: 264px;
  max-width: 100%;
}

.loginMainMsg {
  margin-bottom: 20px;
}
.loginMainMsg-title {
  text-align: center;
  font-size: 1.25rem;
  margin-bottom: 10px;
}
.loginMainMsg-text {
  text-align: center;
}
.loginMainMsg-text p {
  line-height: 1.5;
}

.memberLogin {
  height: 100%;
}
.memberLogin-inner {
  padding-top: 20vh;
}
@media (max-width: 767px) {
  .memberLogin-inner {
    padding-top: 0;
  }
}
.memberLogin-error {
  margin-bottom: 15px;
  text-align: center;
}
.memberLogin-form {
  width: 345px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.memberLoginInputs-row + .memberLoginInputs-row {
  margin-top: 10px;
}
.memberLoginInputs-row-label {
  display: block;
  width: 100%;
  font-weight: bold;
}
.memberLoginInputs-row input {
  height: 50px;
  width: 100%;
}
.memberLoginInputs-forgot {
  margin-top: 20px;
  text-align: center;
}
.memberLoginInputs-forgot a {
  font-size: 0.875rem;
  text-decoration: underline;
  color: #fff;
}
@media (max-width: 767px) {
  .memberLoginInputs-forgot a {
    font-size: 0.75rem;
  }
}

.mypageTop {
  display: flex;
}
@media (min-width: 768px) {
  .mypageTop {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mypageTop {
    max-width: 90%;
  }
}
.mypageTop {
  max-width: 1340px;
  padding-inline: 50px;
  gap: 80px;
  margin-block: 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageTop {
    margin-block: 60px;
    padding-inline: 3%;
    gap: 40px;
  }
}
@media (max-width: 767px) {
  .mypageTop {
    flex-direction: column;
    margin-block: 40px;
    padding-inline: 20px;
    gap: 80px;
  }
}
.mypageTop-side {
  width: 32.2580645161%;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageTop-side {
    width: 25%;
  }
}
@media (max-width: 767px) {
  .mypageTop-side {
    width: 100%;
  }
}
.mypageTop-main {
  flex: 1;
}
.mypageTop-main .title-m {
  margin-bottom: 20px;
}

@media (max-width: 767px) {
  .companyCard {
    display: flex;
    gap: 20px;
  }
}
.companyCard-img {
  aspect-ratio: 400/210;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .companyCard-img {
    width: 40%;
  }
}
.companyCard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.companyCard-desc-sub {
  display: block;
  font-size: 1rem;
  font-family: var(--font-go-base);
}
@media (max-width: 767px) {
  .companyCard-desc-sub {
    font-size: 0.875rem;
  }
}
.companyCard-desc-main {
  margin-bottom: 40px;
  font-size: 1.25rem;
  font-weight: bold;
}
@media (max-width: 767px) {
  .companyCard-desc-main {
    display: block;
    margin-top: 10px;
    font-size: 1.125rem;
  }
}

.mypageLink {
  font-family: var(--font-go-base);
}
@media (max-width: 767px) {
  .mypageLink {
    display: flex;
    gap: 20px;
    justify-content: space-between;
  }
}
.mypageLink-link {
  display: block;
  width: fit-content;
  color: #CBB196;
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (min-width: 768px) {
  .mypageLink-link + .mypageLink-link {
    margin-top: 26px;
  }
}

.mpEventItemSect-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 767px) {
  .mpEventItemSect-grid {
    grid-template-columns: 1fr;
  }
}

.mpEventItemSect {
  padding: 20px;
  border: 1px solid #CBB196;
}
.mpEventItemSect-img {
  margin-bottom: 20px;
  aspect-ratio: 330/220;
}
.mpEventItemSect-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mpEventItemSect-desc-title {
  font-size: 1rem;
  margin-bottom: 10px;
}
.mpEventItemSect-desc-text {
  font-size: 0.75rem;
  line-height: 1.4;
  font-family: var(--font-go-base);
  margin-bottom: 10px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.mpEventItemSect-desc-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.mpEventItemSect-desc-tags-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #CBB196;
  height: 25px;
  border-radius: 2px;
  color: #fff;
  padding: 2px 15px;
  font-size: 0.625rem;
}

.mpPostItemSectModal .js-modal-contents {
  max-width: 800px;
  height: auto;
  max-height: min-content;
}
.mpPostItemSectModal .modal-close {
  z-index: 3;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}
.mpPostItemSectModal .modal-close svg {
  width: 100%;
  height: 100%;
}
.mpPostItemSectModal .js-modal-contents-scroll {
  overflow: hidden;
  padding-right: 0;
  max-height: min-content;
}
.mpPostItemSectModal .mpPostItemSectModal-inner {
  max-width: 800px;
  max-height: 80vh;
}
.mpPostItemSectModal video {
  max-width: 800px;
  max-height: 80vh;
  vertical-align: bottom;
}

.mypageEdit {
  display: flex;
}
@media (min-width: 768px) {
  .mypageEdit {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mypageEdit {
    max-width: 90%;
  }
}
.mypageEdit {
  gap: 40px;
  margin-block: 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageEdit {
    flex-direction: column;
    margin-block: 60px 40px;
  }
}
@media (max-width: 767px) {
  .mypageEdit {
    flex-direction: column;
    margin-block: 40px;
    padding-inline: 20px;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageEdit-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
  }
}
.mypageEdit-heading .title-l {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageEdit-heading .title-l {
    margin-bottom: 0;
  }
}
.mypageEdit-heading-lead {
  line-height: 2;
}
.mypageEdit-cont {
  flex: 1;
}

.mypageEditForm-inputs {
  border: 1px solid #CBB196;
  border-radius: 4px;
  padding: 40px;
}
@media (max-width: 767px) {
  .mypageEditForm-inputs {
    padding: 20px 20px 0;
  }
}
.mypageEditForm-inputs table {
  width: 100%;
}
.mypageEditForm-inputs input[type=text],
.mypageEditForm-inputs input[type=tel],
.mypageEditForm-inputs input[type=email],
.mypageEditForm-inputs input[type=password],
.mypageEditForm-inputs textarea {
  width: 100%;
  height: 44px;
}
.mypageEditForm-btn {
  text-align: center;
  margin-top: 40px;
}
.mypageEditForm-btn .btn-simple {
  width: 260px;
  height: 60px;
  font-family: var(--font-mi-base);
  font-weight: bold;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .movieArchive {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .movieArchive {
    max-width: 90%;
  }
}
.movieArchive {
  margin-block: 100px;
}
@media (max-width: 767px) {
  .movieArchive {
    margin-left: auto;
    margin-right: auto;
    max-width: 90%;
    width: 90%;
    margin-block: 60px;
  }
}
.movieArchive .mpPostSect-lead {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .movieArchive .mpPostSect-lead {
    margin-bottom: 40px;
  }
}

.mypageAccount {
  display: flex;
}
@media (min-width: 768px) {
  .mypageAccount {
    margin-left: auto;
    margin-right: auto;
    max-width: var(--w);
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 1139px) {
  .mypageAccount {
    max-width: 90%;
  }
}
.mypageAccount {
  gap: 40px;
  margin-block: 100px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageAccount {
    flex-direction: column;
    margin-block: 60px 40px;
  }
}
@media (max-width: 767px) {
  .mypageAccount {
    flex-direction: column;
    margin-block: 40px;
    padding-inline: 20px;
    gap: 20px;
  }
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageAccount-heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
  }
}
.mypageAccount-heading .title-l {
  margin-bottom: 30px;
}
@media (min-width: 768px) and (max-width: 979px) {
  .mypageAccount-heading .title-l {
    margin-bottom: 0;
  }
}
.mypageAccount-heading-lead {
  line-height: 2;
}
.mypageAccount-cont {
  flex: 1;
}

.mypageAccountForm-inputs {
  border: 1px solid #000;
  border-radius: 12px;
  padding: 40px;
}
@media (max-width: 767px) {
  .mypageAccountForm-inputs {
    padding: 20px 20px 0;
  }
}
.mypageAccountForm-inputs table {
  width: 100%;
}
.mypageAccountForm-inputs table th, .mypageAccountForm-inputs table td {
  font-family: var(--font-go-base);
}
.mypageAccountForm-inputs table th {
  width: 180px;
  font-weight: bold;
  color: #000;
}
.mypageAccountForm-btn {
  display: flex;
  justify-content: space-between;
  text-align: center;
  margin-top: 40px;
  gap: 20px;
}
.mypageAccountForm-btn .btn-simple {
  width: 100%;
  font-weight: bold;
  font-family: var(--font-go-base);
}
@media (min-width: 768px) {
  .mypageAccountForm-btn .btn-simple {
    height: 60px;
  }
}
