@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&display=swap");
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-auto {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}

.flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-stretch {
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-btw {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-dir-row {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-dir-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.position-rel {
  position: relative !important;
}

.position-abs {
  position: absolute !important;
}

.position-fix {
  position: fixed !important;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 600px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.mg-left {
  margin-left: auto;
}

.mg-right {
  margin-right: auto;
}

.mg-center {
  margin-left: auto;
  margin-right: auto;
}

.display-bl {
  display: block;
}

.display-ib {
  display: inline-block;
}

.display-in {
  display: inline;
}

.fade-in {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: translateY(80px);
  transform: translateY(80px);
}
.fade-in.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.fade-in.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}
.fade-in.fixed {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  -webkit-transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s, opacity 0.75s linear 0s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0s;
  opacity: 0;
  -webkit-transform: translateY(0px);
  transform: translateY(0px);
}
.fade-in.fixed.show {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.fade-in.fixed.delay1 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  -webkit-transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s, opacity 0.75s linear 0.075s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.075s;
}
.fade-in.fixed.delay2 {
  -webkit-transition: -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  -webkit-transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s;
  transition: transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s, opacity 0.75s linear 0.125s, -webkit-transform 1.75s cubic-bezier(0.19, 1, 0.22, 1) 0.125s;
}

section.space,
.container.space,
.container-fluid.space,
.content.space {
  padding-top: 160px;
  padding-bottom: 160px;
}
section.min-space,
.container.min-space,
.container-fluid.min-space,
.content.min-space {
  padding-top: 80px;
  padding-bottom: 80px;
}
section.top-space,
.container.top-space,
.container-fluid.top-space,
.content.top-space {
  padding-top: 160px;
}
section.bottom-space,
.container.bottom-space,
.container-fluid.bottom-space,
.content.bottom-space {
  padding-bottom: 160px;
}
section.min-top-space,
.container.min-top-space,
.container-fluid.min-top-space,
.content.min-top-space {
  padding-top: 80px;
}
section.min-bottom-space,
.container.min-bottom-space,
.container-fluid.min-bottom-space,
.content.min-bottom-space {
  padding-bottom: 80px;
}
section.large-top-space,
.container.large-top-space,
.container-fluid.large-top-space,
.content.large-top-space {
  padding-top: 200px;
}
section.large-bottom-space,
.container.large-bottom-space,
.container-fluid.large-bottom-space,
.content.large-bottom-space {
  padding-bottom: 200px;
}
@media (max-width: 600px) {
  section.space,
  .container.space,
  .container-fluid.space,
  .content.space {
    padding-top: 72px;
    padding-bottom: 72px;
  }
  section.min-space,
  .container.min-space,
  .container-fluid.min-space,
  .content.min-space {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  section.top-space,
  .container.top-space,
  .container-fluid.top-space,
  .content.top-space {
    padding-top: 72px;
  }
  section.bottom-space,
  .container.bottom-space,
  .container-fluid.bottom-space,
  .content.bottom-space {
    padding-bottom: 72px;
  }
  section.min-top-space,
  .container.min-top-space,
  .container-fluid.min-top-space,
  .content.min-top-space {
    padding-top: 40px;
  }
  section.min-bottom-space,
  .container.min-bottom-space,
  .container-fluid.min-bottom-space,
  .content.min-bottom-space {
    padding-bottom: 40px;
  }
  section.large-top-space,
  .container.large-top-space,
  .container-fluid.large-top-space,
  .content.large-top-space {
    padding-top: 100px;
  }
  section.large-bottom-space,
  .container.large-bottom-space,
  .container-fluid.large-bottom-space,
  .content.large-bottom-space {
    padding-bottom: 100px;
  }
}

.container {
  max-width: 1440px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
.container.narrow {
  max-width: 940px;
}
.container.wide {
  max-width: 1600px;
}
.container.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 600px) {
  .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.no-padding, .container.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
}

.container-fluid {
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
}
.container-fluid.no-padding {
  padding-left: 0;
  padding-right: 0;
}
@media (max-width: 600px) {
  .container-fluid {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container-fluid.no-padding, .container-fluid.no-padding-sp {
    padding-left: 0;
    padding-right: 0;
  }
}

.content {
  max-width: 740px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 40px;
  padding-right: 40px;
}
.content.wide {
  max-width: 1120px;
}
.content.narrow {
  max-width: 600px;
}
.content.minimum-space {
  padding-top: 40px;
  padding-bottom: 40px;
}
.content.minimum-top-space {
  padding-top: 40px;
}
.content.minimum-bottom-space {
  padding-bottom: 40px;
}
.content.no-padding {
  padding-left: 0;
  padding-right: 0;
}
.container .content, .container-fluid .content {
  padding-left: 0;
  padding-right: 0;
}
.container.no-padding .content, .container-fluid.no-padding .content {
  padding-left: 40px;
  padding-right: 40px;
}
@media (max-width: 600px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .content.no-padding, .content.no-padding-sp {
    padding-left: 0px;
    padding-right: 0px;
  }
  .container .content, .container-fluid .content {
    padding-left: 0;
    padding-right: 0;
  }
  .container.no-padding .content, .container-fluid.no-padding .content {
    padding-left: 20px;
    padding-right: 20px;
  }
  .container.no-padding-sp .content, .container-fluid.no-padding-sp .content {
    padding-left: 0;
    padding-right: 0;
  }
}

.fs-1 {
  font-size: 3rem !important;
}

.fs-2 {
  font-size: 2rem !important;
}

.fs-3 {
  font-size: 1.75rem !important;
}

.fs-4 {
  font-size: 1.5rem !important;
}

.fs-5 {
  font-size: 1.25rem !important;
}

.fs-6 {
  font-size: 1.125rem !important;
}

.fs-sm {
  font-size: 0.875rem !important;
}

.fs-min {
  font-size: 0.75rem !important;
}

@media (max-width: 600px) {
  .fs-1.fs-1-sp,
  .fs-2.fs-1-sp,
  .fs-3.fs-1-sp,
  .fs-4.fs-1-sp,
  .fs-5.fs-1-sp,
  .fs-6.fs-1-sp,
  .fs-sm.fs-1-sp,
  .fs-min.fs-1-sp {
    font-size: 2rem !important;
  }
  .fs-1.fs-2-sp,
  .fs-2.fs-2-sp,
  .fs-3.fs-2-sp,
  .fs-4.fs-2-sp,
  .fs-5.fs-2-sp,
  .fs-6.fs-2-sp,
  .fs-sm.fs-2-sp,
  .fs-min.fs-2-sp {
    font-size: 1.75rem !important;
  }
  .fs-1.fs-3-sp,
  .fs-2.fs-3-sp,
  .fs-3.fs-3-sp,
  .fs-4.fs-3-sp,
  .fs-5.fs-3-sp,
  .fs-6.fs-3-sp,
  .fs-sm.fs-3-sp,
  .fs-min.fs-3-sp {
    font-size: 1.5rem !important;
  }
  .fs-1.fs-4-sp,
  .fs-2.fs-4-sp,
  .fs-3.fs-4-sp,
  .fs-4.fs-4-sp,
  .fs-5.fs-4-sp,
  .fs-6.fs-4-sp,
  .fs-sm.fs-4-sp,
  .fs-min.fs-4-sp {
    font-size: 1.25rem !important;
  }
  .fs-1.fs-5-sp,
  .fs-2.fs-5-sp,
  .fs-3.fs-5-sp,
  .fs-4.fs-5-sp,
  .fs-5.fs-5-sp,
  .fs-6.fs-5-sp,
  .fs-sm.fs-5-sp,
  .fs-min.fs-5-sp {
    font-size: 1.125rem !important;
  }
  .fs-1.fs-6-sp,
  .fs-2.fs-6-sp,
  .fs-3.fs-6-sp,
  .fs-4.fs-6-sp,
  .fs-5.fs-6-sp,
  .fs-6.fs-6-sp,
  .fs-sm.fs-6-sp,
  .fs-min.fs-6-sp {
    font-size: 1rem !important;
  }
  .fs-1.fs-rg-sp,
  .fs-2.fs-rg-sp,
  .fs-3.fs-rg-sp,
  .fs-4.fs-rg-sp,
  .fs-5.fs-rg-sp,
  .fs-6.fs-rg-sp,
  .fs-sm.fs-rg-sp,
  .fs-min.fs-rg-sp {
    font-size: 0.875rem !important;
  }
  .fs-1.fs-sm-sp,
  .fs-2.fs-sm-sp,
  .fs-3.fs-sm-sp,
  .fs-4.fs-sm-sp,
  .fs-5.fs-sm-sp,
  .fs-6.fs-sm-sp,
  .fs-sm.fs-sm-sp,
  .fs-min.fs-sm-sp {
    font-size: 0.875rem !important;
  }
  .fs-1.fs-min-sp,
  .fs-2.fs-min-sp,
  .fs-3.fs-min-sp,
  .fs-4.fs-min-sp,
  .fs-5.fs-min-sp,
  .fs-6.fs-min-sp,
  .fs-sm.fs-min-sp,
  .fs-min.fs-min-sp {
    font-size: 0.75rem !important;
  }
}
body {
  font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", YuGothicMedium, "游ゴシック体", YuGothic, "Yu Gothic", "游ゴシック", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro W3", "メイリオ", Meiryo, "Helvetica Neue", Helvetica, sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  font-size: 1rem;
  letter-spacing: 0.5px;
}
@media (max-width: 600px) {
  body {
    font-size: 0.9375rem;
  }
}

.black {
  color: black !important;
}

.white {
  color: white !important;
}

.weight-normal {
  font-weight: 400 !important;
}

.weight-medium {
  font-weight: 500 !important;
}

.weight-bold {
  font-weight: 700 !important;
}

.weight-black {
  font-weight: 900 !important;
}

.l-height-100 {
  line-height: 100% !important;
}

.l-height-125 {
  line-height: 125% !important;
}

.l-height-150 {
  line-height: 150% !important;
}

.l-height-175 {
  line-height: 175% !important;
}

.l-height-200 {
  line-height: 200% !important;
}

h1, h2, h3, h4, h5, h6 {
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  margin: 0.25em 0px;
  font-weight: 700;
}
h1 > small, h2 > small, h3 > small, h4 > small, h5 > small, h6 > small {
  font-size: 60%;
  vertical-align: middle;
}
h1.min-space, h2.min-space, h3.min-space, h4.min-space, h5.min-space, h6.min-space {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}
h1.top-space, h2.top-space, h3.top-space, h4.top-space, h5.top-space, h6.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
h1.bottom-space, h2.bottom-space, h3.bottom-space, h4.bottom-space, h5.bottom-space, h6.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
h1, h2 {
  line-height: 125%;
}

h3, h4, h5, h6 {
  line-height: 145%;
}

h1 {
  font-size: 2.25rem;
}
@media (max-width: 600px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  font-size: 2rem;
}
h2.large {
  font-size: 2.5rem;
}
@media (max-width: 600px) {
  h2 {
    font-size: 2rem;
  }
  h2.large {
    font-size: 2.5rem;
  }
}

h3 {
  font-size: 1.75rem;
}
h3.large {
  font-size: 2rem;
}
@media (max-width: 600px) {
  h3 {
    font-size: 1.5rem;
  }
  h3.large {
    font-size: 1.625rem;
  }
}

h4 {
  font-size: 1.5rem;
}
h4.large {
  font-size: 2rem;
}
@media (max-width: 600px) {
  h4 {
    font-size: 1.125rem;
  }
  h4.large {
    font-size: 1.75rem;
  }
}

h5 {
  font-size: 1.25rem;
}
h5.large {
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  h5 {
    font-size: 1.125rem;
  }
  h5.large {
    font-size: 1.25rem;
  }
}

h6 {
  font-size: 1.125rem;
}
h6.large {
  font-size: 1.25rem;
}
@media (max-width: 600px) {
  h6 {
    font-size: 1.0625rem;
  }
  h6.large {
    font-size: 1.125rem;
  }
}

p {
  font-size: 1rem;
  line-height: 1.85em;
  margin-top: 1.85em;
  margin-bottom: 1.85em;
}
p.lead-text {
  font-size: 1.125rem;
  font-weight: 500;
}
p.sub-copy {
  font-size: 1.25rem;
  font-weight: 500;
}
p.large-space {
  margin-top: 3em;
  margin-bottom: 3em;
}
p.min-space {
  margin-top: 1.15em;
  margin-bottom: 1.15em;
}
p.top-space {
  margin-top: 1.85em;
  margin-bottom: 0px;
}
p.bottom-space {
  margin-top: 0px;
  margin-bottom: 1.85em;
}
p.no-space {
  margin: 0;
}
p.small {
  font-size: 0.875rem;
}
p.large {
  font-size: 1.25rem;
}
p.bold {
  font-weight: 700;
}
@media (max-width: 600px) {
  p {
    line-height: 1.85em;
    margin-top: 1.75em;
    margin-bottom: 1.75em;
    font-size: 0.875rem;
  }
  p.lead-text {
    font-size: 1rem;
    font-weight: 500;
  }
  p.smaller {
    font-size: 13px;
  }
  p.large {
    font-size: 1rem;
  }
}
@media (max-width: 350px) {
  p.large {
    font-size: 15px;
  }
}

span.underline {
  text-decoration: underline;
}

strong {
  font-weight: 700;
}

small {
  display: inline-block;
  font-size: 80%;
  line-height: 1.75;
}
sup, sub {
  font-size: 70%;
  letter-spacing: 0;
}
sub {
  vertical-align: baseline;
}

li, dt, dd {
  font-size: 1rem;
  word-wrap: break-word;
  word-break: break-all;
}
@media (max-width: 600px) {
  li, dt, dd {
    font-size: 15px;
  }
}

ul.list {
  margin-top: 2.15em;
  margin-bottom: 2.15em;
}
ul.list li, ul.list dt, ul.list dd {
  line-height: 1.65;
}

.text-center {
  text-align: center !important;
}

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.text-justify {
  text-align: justify !important;
}

@media (max-width: 600px) {
  .text-center.sp-left,
  .text-right.sp-left,
  .text-justify.sp-left {
    text-align: left !important;
  }
  .text-left.sp-center,
  .text-right.sp-center,
  .text-justify.sp-center {
    text-align: center !important;
  }
  .text-left.sp-right,
  .text-center.sp-right,
  .text-justify.sp-right {
    text-align: right !important;
  }
  .text-left.sp-justify,
  .text-center.sp-justify,
  .text-right.sp-justify {
    text-align: justify !important;
  }
}
.button {
  display: inline-block;
  width: 100%;
  max-width: 280px;
  font-size: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid currentColor;
  position: relative;
}
.button:after {
  content: "";
  position: absolute;
  right: 4px;
  top: 12px;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
@media (max-width: 600px) {
  .button {
    max-width: 240px;
    font-size: 1.125rem;
  }
}

a.ic-blank {
  display: inline-block;
  padding-right: 24px;
  background-image: url(../images/ic_new_tab.svg);
  background-position: right center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
}
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 0.25rem;
}

.m-2 {
  margin: 0.5rem;
}

.m-3 {
  margin: 1rem;
}

.m-4 {
  margin: 1.5rem;
}

.m-5 {
  margin: 3rem;
}

.m-6 {
  margin: 2.5rem;
}

.m-auto {
  margin: auto;
}

.mx-0 {
  margin-right: 0;
  margin-left: 0;
}

.mx-1 {
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.mx-2 {
  margin-right: 0.5rem;
  margin-left: 0.5rem;
}

.mx-3 {
  margin-right: 1rem;
  margin-left: 1rem;
}

.mx-4 {
  margin-right: 1.5rem;
  margin-left: 1.5rem;
}

.mx-5 {
  margin-right: 2.5rem;
  margin-left: 2.5rem;
}

.mx-6 {
  margin-right: 3rem;
  margin-left: 3rem;
}

.mx-auto {
  margin-right: auto;
  margin-left: auto;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

.my-3 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.my-4 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.my-5 {
  margin-top: 2.5rem;
  margin-bottom: 2.5rem;
}

.my-6 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}

.mt-0 {
  margin-top: 0;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 1rem;
}

.mt-4 {
  margin-top: 1.5rem;
}

.mt-5 {
  margin-top: 2.5rem;
}

.mt-6 {
  margin-top: 3rem;
}

.mt-auto {
  margin-top: auto;
}

.me-0 {
  margin-right: 0;
}

.me-1 {
  margin-right: 0.25rem;
}

.me-2 {
  margin-right: 0.5rem;
}

.me-3 {
  margin-right: 1rem;
}

.me-4 {
  margin-right: 1.5rem;
}

.me-5 {
  margin-right: 2.5rem;
}

.me-6 {
  margin-right: 3rem;
}

.me-auto {
  margin-right: auto;
}

.mb-0 {
  margin-bottom: 0;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 1rem;
}

.mb-4 {
  margin-bottom: 1.5rem;
}

.mb-5 {
  margin-bottom: 2.5rem;
}

.mb-6 {
  margin-bottom: 3rem;
}

.mb-auto {
  margin-bottom: auto;
}

.ms-0 {
  margin-left: 0;
}

.ms-1 {
  margin-left: 0.25rem;
}

.ms-2 {
  margin-left: 0.5rem;
}

.ms-3 {
  margin-left: 1rem;
}

.ms-4 {
  margin-left: 1.5rem;
}

.ms-5 {
  margin-left: 2.5rem;
}

.ms-6 {
  margin-left: 3rem;
}

.ms-auto {
  margin-left: auto;
}

.p-0 {
  padding: 0;
}

.p-1 {
  padding: 0.25rem;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 1rem;
}

.p-4 {
  padding: 1.5rem;
}

.p-5 {
  padding: 2.5rem;
}

.p-6 {
  padding: 3rem;
}

.px-0 {
  padding-right: 0;
  padding-left: 0;
}

.px-1 {
  padding-right: 0.25rem;
  padding-left: 0.25rem;
}

.px-2 {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.px-3 {
  padding-right: 1rem;
  padding-left: 1rem;
}

.px-4 {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}

.px-5 {
  padding-right: 2.5rem;
  padding-left: 2.5rem;
}

.px-6 {
  padding-right: 3rem;
  padding-left: 3rem;
}

.py-0 {
  padding-top: 0;
  padding-bottom: 0;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-4 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-5 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.py-6 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.pt-0 {
  padding-top: 0;
}

.pt-1 {
  padding-top: 0.25rem;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 1rem;
}

.pt-4 {
  padding-top: 1.5rem;
}

.pt-5 {
  padding-top: 2.5rem;
}

.pt-6 {
  padding-top: 3rem;
}

.pe-0 {
  padding-right: 0;
}

.pe-1 {
  padding-right: 0.25rem;
}

.pe-2 {
  padding-right: 0.5rem;
}

.pe-3 {
  padding-right: 1rem;
}

.pe-4 {
  padding-right: 1.5rem;
}

.pe-5 {
  padding-right: 2.5rem;
}

.pe-6 {
  padding-right: 3rem;
}

.pb-0 {
  padding-bottom: 0;
}

.pb-1 {
  padding-bottom: 0.25rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 1rem;
}

.pb-4 {
  padding-bottom: 1.5rem;
}

.pb-5 {
  padding-bottom: 2.5rem;
}

.pb-6 {
  padding-bottom: 3rem;
}

.ps-0 {
  padding-left: 0;
}

.ps-1 {
  padding-left: 0.25rem;
}

.ps-2 {
  padding-left: 0.5rem;
}

.ps-3 {
  padding-left: 1rem;
}

.ps-4 {
  padding-left: 1.5rem;
}

.ps-5 {
  padding-left: 2.5rem;
}

.ps-6 {
  padding-left: 3rem;
}

.gap-0 {
  gap: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 1rem;
}

.gap-4 {
  gap: 1.5rem;
}

.gap-5 {
  gap: 2.5rem;
}

.gap-6 {
  gap: 3rem;
}

.row-gap-0 {
  row-gap: 0;
}

.row-gap-1 {
  row-gap: 0.25rem;
}

.row-gap-2 {
  row-gap: 0.5rem;
}

.row-gap-3 {
  row-gap: 1rem;
}

.row-gap-4 {
  row-gap: 1.5rem;
}

.row-gap-5 {
  row-gap: 2.5rem;
}

.row-gap-6 {
  row-gap: 3rem;
}

.column-gap-0 {
  -moz-column-gap: 0;
  -webkit-column-gap: 0;
          column-gap: 0;
}

.column-gap-1 {
  -moz-column-gap: 0.25rem;
  -webkit-column-gap: 0.25rem;
          column-gap: 0.25rem;
}

.column-gap-2 {
  -moz-column-gap: 0.5rem;
  -webkit-column-gap: 0.5rem;
          column-gap: 0.5rem;
}

.column-gap-3 {
  -moz-column-gap: 1rem;
  -webkit-column-gap: 1rem;
          column-gap: 1rem;
}

.column-gap-4 {
  -moz-column-gap: 1.5rem;
  -webkit-column-gap: 1.5rem;
          column-gap: 1.5rem;
}

.column-gap-5 {
  -moz-column-gap: 2.5rem;
  -webkit-column-gap: 2.5rem;
          column-gap: 2.5rem;
}

.column-gap-6 {
  -moz-column-gap: 3rem;
  -webkit-column-gap: 3rem;
          column-gap: 3rem;
}

.pc {
  display: block !important;
}

.pci {
  display: inline !important;
}

.sp {
  display: none !important;
}

.spi {
  display: none !important;
}

.lpc {
  display: block !important;
}

.lpci {
  display: inline !important;
}

.tb {
  display: none !important;
}

.tbi {
  display: none !important;
}

.ltb {
  display: block !important;
}

.ltbi {
  display: inline !important;
}

.smt {
  display: none !important;
}

.smti {
  display: none !important;
}

.xsp {
  display: none !important;
}

.xspi {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .lpc {
    display: none !important;
  }
  .lpci {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
  .tbi {
    display: inline !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
  .pci {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .spi {
    display: inline !important;
  }
}
@media screen and (max-width: 480px) {
  .ltb {
    display: none !important;
  }
  .ltbi {
    display: none !important;
  }
  .smt {
    display: block !important;
  }
  .smti {
    display: inline !important;
  }
}
@media screen and (max-width: 320px) {
  .sp.ex-xp {
    display: none !important;
  }
  .spi.ex-xp {
    display: none !important;
  }
  .ex-xp {
    display: none !important;
  }
  .xsp {
    display: block !important;
  }
  .xspi {
    display: inline !important;
  }
}
html,
body {
  height: 100%;
  margin: 0px;
  padding: 0px;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(255, 255, 255, 0);
}

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

:focus {
  outline: 0;
}

a {
  text-decoration: none;
  outline: none;
  color: currentColor;
}

button, input[type=submit], input[type=reset] {
  cursor: pointer;
}

figure, picture {
  display: block;
  -webkit-margin-before: 0;
          margin-block-start: 0;
  -webkit-margin-after: 0;
          margin-block-end: 0;
  -webkit-margin-start: 0;
          margin-inline-start: 0;
  -webkit-margin-end: 0;
          margin-inline-end: 0;
  margin: 0;
}
figure img, picture img {
  width: 100%;
  height: auto;
}
figure img.auto-image, picture img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}
figure figcaption, picture figcaption {
  margin-top: 0.5rem;
}
figure + figure {
  margin-top: 1.5rem;
}
@media (max-width: 600px) {
  figure + figure {
    margin-top: 1.25rem;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
img.fit-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
img.fit-image.contain {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: contain;";
}
img.auto-image {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
}

svg {
  display: block;
  width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

video {
  width: 100%;
  height: auto;
}

header {
  width: 100vw;
  height: 60px;
  position: relative;
}
header.active {
  position: sticky;
  left: 0;
  top: 0;
  z-index: 10;
}
header::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
}
@media (max-width: 600px) {
  header {
    height: 60px;
  }
}
header .rmj-container {
  max-width: 1600px;
  padding-left: 40px;
  padding-right: 40px;
  margin-left: auto;
  margin-right: auto;
  height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
@media (max-width: 600px) {
  header .rmj-container {
    height: 60px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
header .rmj-logo {
  position: relative;
  z-index: 5;
}
header .rmj-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
header .rmj-logo img {
  width: 96px;
  height: auto;
}
header .rmj-navigation {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  background-color: white;
  display: none;
  opacity: 0;
  -webkit-transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
  transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1) 0s;
}
header .rmj-navigation::before {
  content: "";
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: 1px;
  background-color: #CCCCCC;
}
header .rmj-navigation.init {
  display: block;
}
header .rmj-navigation.show {
  opacity: 1;
}
header .rmj-navigation .rmj-menu {
  padding: 24px 40px 0px 40px;
  margin-top: 60px;
  width: 40%;
  max-width: 440px;
  margin-left: auto;
}
header .rmj-navigation .rmj-menu li {
  font-size: 1.25rem;
  margin: 0.5rem 0px;
}
header .rmj-navigation .rmj-menu li.sub-link {
  font-size: 1.125rem;
}
header .rmj-navigation .rmj-menu li a {
  display: inline-block;
  padding: 0.5rem 0px;
}
header .rmj-navigation .rmj-menu li a.ic-blank {
  padding: 0.5rem 24px 0.5rem 0px;
}
header .rmj-navigation .rmj-menu li a:hover {
  opacity: 0.5;
}
header .rmj-navigation .rmj-menu hr {
  width: 60px;
  height: 4px;
  border: none;
  background-color: #224064;
  margin: 1.5rem 0px;
}
@media (max-width: 600px) {
  header .rmj-navigation .rmj-menu {
    padding: 24px 20px 0px 20px;
    margin-top: 60px;
    width: 100%;
    max-width: 100%;
    margin-left: 0px;
  }
  header .rmj-navigation .rmj-menu li {
    font-size: 1.125rem;
    margin: 0.25rem 0px;
  }
  header .rmj-navigation .rmj-menu li.sub-link {
    font-size: 1rem;
  }
  header .rmj-navigation .rmj-menu li a {
    display: inline-block;
    padding: 0.5rem 0px;
  }
  header .rmj-navigation .rmj-menu li a.ic-blank {
    padding: 0.5rem 24px 0.5rem 0px;
  }
  header .rmj-navigation .rmj-menu li a:hover {
    opacity: 0.5;
  }
  header .rmj-navigation .rmj-menu hr {
    width: 40px;
    height: 3px;
  }
}
header .rmj-menu-button {
  width: 40px;
  height: 40px;
  border: 0;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  position: relative;
  z-index: 5;
  padding: 0;
  color: currentColor;
}
header .rmj-menu-button .btn-hamburger, header .rmj-menu-button .btn-hamburger:before, header .rmj-menu-button .btn-hamburger:after {
  position: absolute;
  background-color: currentColor;
}
header .rmj-menu-button .btn-hamburger:before {
  width: 20px;
  height: 2px;
}
header .rmj-menu-button .btn-hamburger:after {
  width: 16px;
  height: 2px;
}
header .rmj-menu-button .btn-hamburger {
  top: 50%;
  left: 50%;
  margin-top: -1px;
  margin-left: -10px;
  background-color: transparent;
  -webkit-transition: background-color 0.15s linear 0s;
  transition: background-color 0.15s linear 0s;
}
header .rmj-menu-button .btn-hamburger:before, header .rmj-menu-button .btn-hamburger:after {
  content: "";
  left: 0;
  display: block;
  border-radius: 1px;
  -webkit-transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out;
  -webkit-transition: top 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: top 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
  transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out;
  transition: top 0.25s ease-out, transform 0.25s ease-out, background-color 0.25s ease-out, width 0.25s ease-out, -webkit-transform 0.25s ease-out;
}
header .rmj-menu-button .btn-hamburger:before {
  top: -4px;
}
header .rmj-menu-button .btn-hamburger:after {
  top: 4px;
}
header .rmj-menu-button .btn-hamburger.active {
  background-color: transparent !important;
  -webkit-transition: background-color 0.25s linear 0.3s;
  transition: background-color 0.25s linear 0.3s;
}
header .rmj-menu-button .btn-hamburger.active:before, header .rmj-menu-button .btn-hamburger.active:after {
  width: 20px;
  top: 0px;
}
header .rmj-menu-button .btn-hamburger.active:before {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
header .rmj-menu-button .btn-hamburger.active:after {
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
header .rmj-menu-button .btn-label {
  position: absolute;
  overflow: hidden;
  clip: rect(0 0 0 0);
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
  border: 0;
}
@media (max-width: 600px) {
  header .rmj-menu-button {
    display: block;
  }
}

footer {
  padding: 40px 0px;
  border-top: 1px solid #CCCCCC;
}
footer .rmj-footer-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .rmj-footer-inner .rmj-footer-logo {
  width: 100%;
  margin-bottom: 2rem;
}
footer .rmj-footer-inner .rmj-footer-logo img {
  max-width: 96px;
}
footer .rmj-footer-inner .rmj-footer-nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
footer .rmj-footer-inner .rmj-footer-nav ul li {
  margin-right: 24px;
  font-size: 0.75rem;
}
footer .rmj-footer-inner .rmj-footer-nav ul li:last-child {
  margin-right: 0;
}
footer .rmj-footer-inner .rmj-footer-copyright {
  margin-left: auto;
  font-size: 0.75rem;
}
footer .mrf-social {
  text-align: center;
  margin-bottom: 3rem;
}
footer .mrf-social p {
  margin: 0;
}
footer .mrf-social .ic-social {
  margin-top: 1rem;
  display: inline-block;
  width: 24px;
  height: 24px;
}
footer .mrf-social .ic-social img {
  width: 100%;
  height: auto;
}
footer .mrf-copyright {
  text-align: center;
  font-size: 0.875rem;
}
@media (max-width: 600px) {
  footer {
    padding: 40px 0px 24px;
  }
  footer .rmj-footer-inner {
    display: block;
  }
  footer .rmj-footer-inner .rmj-footer-logo {
    margin-bottom: 3rem;
  }
  footer .rmj-footer-inner .rmj-footer-logo img {
    max-width: 120px;
  }
  footer .rmj-footer-inner .rmj-footer-nav ul {
    display: block;
  }
  footer .rmj-footer-inner .rmj-footer-nav ul li {
    margin-right: 0;
    margin-bottom: 1.25rem;
  }
  footer .rmj-footer-inner .rmj-footer-copyright {
    margin-left: 0;
    margin-top: 40px;
    text-align: right;
  }
}

#remuji-web {
  color: #224064;
}
#remuji-web p.lead-text {
  font-size: 1.5rem;
}
@media (max-width: 600px) {
  #remuji-web p.lead-text {
    font-size: 1.125rem;
  }
}

.bg-gray {
  background-color: #F5F5F5;
}

.relative {
  position: relative;
}

a.text-link {
  text-decoration: underline;
}

a.square-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 100%;
  max-width: 352px;
  height: 60px;
  border: 1px solid #CCCCCC;
  font-weight: 600;
}
a.square-button:hover {
  color: white;
  background-color: #224064;
}
@media (max-width: 600px) {
  a.square-button {
    height: 44px;
  }
}

.section-title {
  font-size: 2.25rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media (max-width: 600px) {
  .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }
}

.embed-movie {
  position: relative;
  padding-top: 56.26%;
}
.embed-movie > iframe {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.pcf {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.spf {
  display: none !important;
}

@media (max-width: 600px) {
  .pcf {
    display: none !important;
  }
  .spf {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
.rmj-hero {
  width: 100vw;
  height: 52.34375vw;
  max-height: calc(100vh - 60px);
  overflow-y: hidden;
  position: relative;
}
@media (max-width: 600px) {
  .rmj-hero {
    height: 180vw;
    max-height: none;
  }
  .rmj-hero.teaser-hero {
    height: auto;
  }
}
.rmj-hero .top-slides {
  width: 100%;
  height: 100%;
}
.rmj-hero .top-slides .slide-item {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  filter: alpha(opacity=0);
  -ms-filter: "alpha(opacity=00)";
  -webkit-opacity: 0;
  -moz-opacity: 0;
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.rmj-hero .top-slides .slide-item.init {
  -webkit-transition: opacity 0.75s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
  transition: opacity 0.75s cubic-bezier(0.445, 0.05, 0.55, 0.95) 0ms;
}
.rmj-hero .top-slides .slide-item.selected {
  z-index: 2;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
}
.rmj-hero .top-slides .slide-item picture {
  width: 60%;
  height: 100%;
}
.rmj-hero .top-slides .slide-item a {
  display: block;
  width: 60%;
  height: 100%;
}
.rmj-hero .top-slides .slide-item a picture {
  width: auto;
  height: auto;
}
.rmj-hero .top-slides .slide-item .slide-item-body a {
  width: 100%;
  height: auto;
}
.rmj-hero .top-slides picture, .rmj-hero .top-slides figure {
  width: 100%;
  height: 100%;
}
.rmj-hero .top-slides picture img, .rmj-hero .top-slides figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: "object-fit: cover;";
}
.rmj-hero .top-slides .slide-item-body {
  width: 40%;
  padding: 100px 40px 0px;
}
.rmj-hero .top-slides .slide-item-body span {
  font-size: 1.25rem;
  font-weight: 600;
}
.rmj-hero .top-slides .slide-item-body h5 {
  font-size: 52px;
  font-weight: 600;
  margin-top: 0;
}
.rmj-hero .top-slides .slide-item-body p {
  font-size: 1rem;
  margin: 0;
}
.rmj-hero .top-slides .slide-item-body.teaser-body h1 {
  font-size: 52px;
  letter-spacing: 0.5rem;
}
@media (max-width: 600px) {
  .rmj-hero .top-slides .slide-item {
    display: block;
  }
  .rmj-hero .top-slides .slide-item a {
    width: 100vw;
    height: 85vw;
  }
  .rmj-hero .top-slides .slide-item .slide-item-body a {
    width: 100%;
    height: auto;
  }
  .rmj-hero .top-slides .slide-item-body {
    width: 85vw;
    margin-left: auto;
    padding: 20px 20px 0px;
  }
  .rmj-hero .top-slides .slide-item-body span {
    font-size: 1rem;
  }
  .rmj-hero .top-slides .slide-item-body h5 {
    font-size: 30px;
  }
  .rmj-hero .top-slides .slide-item-body p {
    font-size: 1rem;
    line-height: 150%;
  }
}
.rmj-hero .top-slides.teaser-slide .slide-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
  -webkit-opacity: 1;
  -moz-opacity: 1;
  opacity: 1;
  position: static;
}
.rmj-hero .top-slides.teaser-slide .slide-item picture {
  width: 60%;
  height: 100%;
}
.rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body {
  padding: 0px 40px 0px;
}
.rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body h1 {
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0.5em;
  line-height: 150%;
  margin: 0;
}
.rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body p {
  font-size: 1.25rem;
  font-weight: 500;
  margin: 1.5rem 0px;
}
.rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body p.large {
  font-size: 1.5rem;
  font-weight: 700;
}
.rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1080px) {
  .rmj-hero .top-slides.teaser-slide .slide-item {
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
}
@media (max-width: 600px) {
  .rmj-hero .top-slides.teaser-slide {
    height: auto;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item {
    display: block;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item picture,
  .rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body {
    width: 100%;
    height: auto;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body {
    padding: 40px 20px 0px;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body h1 {
    font-size: 40px;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body p {
    font-size: 1rem;
    line-height: 170%;
    margin: 1.5rem 0px;
  }
  .rmj-hero .top-slides.teaser-slide .slide-item .slide-item-body p.large {
    font-size: 1.25rem;
  }
}
.rmj-hero .slide-nav {
  position: absolute;
  width: 40%;
  right: 0;
  bottom: 25%;
  z-index: 3;
  padding: 0px 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.rmj-hero .slide-nav li {
  height: 8px;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #CCCCCC;
  cursor: pointer;
}
.rmj-hero .slide-nav li.selected {
  background-color: #224064;
}
@media (max-width: 1160px) {
  .rmj-hero .slide-nav {
    bottom: 8px;
  }
}
@media (max-width: 600px) {
  .rmj-hero .slide-nav {
    width: 85vw;
    bottom: 8px;
    right: 0;
    padding: 0px 20px;
    gap: 4px;
  }
  .rmj-hero .slide-nav li {
    height: 4px;
  }
}

.about-content {
  max-width: 1000px !important;
  padding-right: 17.5% !important;
}
.about-content .lead-text {
  font-size: 1.25rem !important;
}
.about-content .site-heading span {
  display: inline;
  position: relative;
  font-size: 72px;
  letter-spacing: 1.75rem;
  line-height: 1.5em;
  padding-bottom: 0.25em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(85%, transparent), color-stop(85%, currentColor), color-stop(88%, currentColor), color-stop(88%, transparent));
  background: linear-gradient(to bottom, transparent 85%, currentColor 85%, currentColor 88%, transparent 88%);
}
.about-content .site-heading .logo {
  margin-bottom: 2.5rem;
}
.about-content .site-heading .logo img {
  max-width: 194px;
}
@media (max-width: 600px) {
  .about-content .site-heading span {
    font-size: 40px;
    letter-spacing: 1.75rem;
    line-height: 1.5em;
    padding-bottom: 0.25em;
  }
  .about-content .site-heading .logo {
    margin-bottom: 1rem;
  }
  .about-content .site-heading .logo img {
    width: 144px;
    max-width: 35vw;
  }
}
.post-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.post-list .post-item {
  width: calc(50% - 12px);
  margin-bottom: 64px;
}
.post-list .post-item:nth-child(even) {
  margin-left: auto;
}
.post-list .post-item a {
  display: block;
}
.post-list .post-item .post-item-meta {
  margin-top: 1.5rem;
}
.post-list .post-item .post-item-meta span {
  font-size: 1.25rem;
  font-weight: 600;
}
.post-list .post-item .post-item-meta h6 {
  font-size: 1.75rem;
  margin: 0.25rem 0px 1rem;
}
.post-list .post-item .post-item-meta p {
  margin: 0;
}
@media (max-width: 600px) {
  .post-list .post-item {
    width: 100%;
    margin-bottom: 32px;
  }
  .post-list .post-item .post-item-meta {
    margin-top: 1rem;
  }
  .post-list .post-item .post-item-meta span {
    font-size: 1.125rem;
    font-weight: 600;
  }
  .post-list .post-item .post-item-meta h6 {
    font-size: 1.5rem;
    margin: 0.25rem 0px 0.75rem;
  }
  .post-list .post-item .post-item-meta p {
    font-size: 0.875rem;
    line-height: 150%;
  }
}
.post-list.related-items {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.post-list.related-items .post-item {
  width: calc(33.3333% - 12px);
  margin-bottom: 0;
  padding-bottom: 1rem;
  border-bottom: 1px solid #224064;
}
.post-list.related-items .post-item:nth-child(even) {
  margin-left: 0px;
}
.post-list.related-items .post-item .post-item-meta {
  margin-top: 1.5rem;
}
.post-list.related-items .post-item .post-item-meta span {
  font-size: 1rem;
}
.post-list.related-items .post-item .post-item-meta h6 {
  font-size: 1.375rem;
  margin: 0.25rem 0px 1rem;
}
@media (max-width: 600px) {
  .post-list.related-items {
    display: block;
  }
  .post-list.related-items .post-item {
    width: 100%;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #224064;
  }
  .post-list.related-items .post-item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .post-list.related-items .post-item figure {
    width: 32%;
  }
  .post-list.related-items .post-item .post-item-meta {
    width: 68%;
    padding-left: 0.5rem;
    margin-top: 0;
  }
  .post-list.related-items .post-item .post-item-meta span {
    font-size: 0.75rem;
  }
  .post-list.related-items .post-item .post-item-meta h6 {
    font-size: 1rem;
    margin: 0.25rem 0px 1rem;
  }
}

.event-list {
  margin-top: 48px;
}
.event-list .event-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.event-list .event-item:last-child {
  margin-bottom: 0;
}
.event-list .event-item figure {
  width: 38%;
}
.event-list .event-item .event-item-meta {
  width: 62%;
  padding-left: 4%;
}
.event-list .event-item .event-item-meta h6 {
  font-size: 1.25rem;
  margin: 0px 0px 0.25rem;
}
.event-list .event-item .event-item-meta span {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
}
.event-list .event-item .event-item-meta .date {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #224064;
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}
@media (max-width: 600px) {
  .event-list .event-item figure {
    width: 80px;
    height: 80px;
  }
  .event-list .event-item figure img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    font-family: "object-fit: cover;";
  }
  .event-list .event-item .event-item-meta {
    width: calc(100% - 80px);
    padding-left: 0.5rem;
  }
  .event-list .event-item .event-item-meta h6 {
    font-size: 18px;
  }
  .event-list .event-item .event-item-meta span {
    font-size: 12px;
  }
  .event-list .event-item .event-item-meta .date {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    font-size: 16px;
  }
  .event-list .event-item .event-link {
    width: 100%;
  }
}

.book-image {
  margin-top: 80px;
  width: 36%;
  padding-bottom: 32px;
  position: relative;
  z-index: 1;
}
.book-image img {
  max-width: 365px;
  -webkit-box-shadow: 0px 16px 28px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 16px 28px rgba(0, 0, 0, 0.2);
}
@media (max-width: 600px) {
  .book-image {
    margin-top: 40px;
    width: 100%;
    padding-bottom: 0;
    text-align: center;
  }
  .book-image img {
    max-width: 80%;
  }
}

.book-bar {
  position: absolute;
  bottom: 0;
  z-index: 0;
  width: 100%;
  background-color: #224064;
}
@media (max-width: 600px) {
  .book-bar {
    position: static;
    padding-top: 100px;
    margin-top: -100px;
  }
}

.book-info {
  padding: 1.5rem 1rem;
}
.book-info .book-info-inner {
  width: 64%;
  margin-left: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
.book-info p {
  max-width: 580px;
  font-size: 1rem;
}
.book-info p strong {
  display: block;
  margin: 1rem 0px;
  font-size: 1.5rem;
}
.book-info p span {
  font-size: 1.125rem;
  font-weight: 700;
}
@media (max-width: 600px) {
  .book-info {
    width: 100%;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .book-info .book-info-inner {
    width: 100%;
    margin-left: 0;
    padding-left: 0.5rem;
    padding-right: 0.5rem;
  }
  .book-info p {
    max-width: 100%;
    font-size: 0.875rem;
  }
  .book-info p strong {
    font-size: 1.375rem;
  }
  .book-info p span {
    font-size: 1rem;
  }
}

.post-image {
  padding-top: 40px;
}
@media (max-width: 600px) {
  .post-image {
    padding-top: 20px;
  }
}

.overflow-h {
  overflow: hidden;
}

.content .inner {
  max-width: 740px;
  margin-right: auto;
}
.content.top-border {
  border-top: 1px solid #CCCCCC;
}
.post-head {
  margin-top: 48px;
  padding-bottom: 2rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.post-head h1 {
  font-size: 3rem;
}
.post-head h1 span {
  display: block;
  font-size: 2rem;
}
.post-head::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #224064;
  position: absolute;
  left: 40px;
  bottom: 0;
}
@media (max-width: 600px) {
  .post-head {
    margin-top: 40px;
    padding-bottom: 1.5rem;
    margin-bottom: 2rem;
  }
  .post-head h1 {
    font-size: 1.875rem;
  }
  .post-head h1 span {
    font-size: 1.25rem;
  }
  .post-head::after {
    width: 40px;
    height: 3px;
    left: 0;
  }
}

.post-content h4 {
  padding-left: 32px;
  font-size: 36px;
}
.post-content p {
  padding-left: 32px;
  font-size: 16px;
  line-height: 200%;
}
.post-content p a {
  text-decoration: underline;
}
@media (max-width: 600px) {
  .post-content h4 {
    padding-left: 0px;
    margin-bottom: 40px;
    font-size: 1.5rem;
  }
  .post-content p {
    padding-left: 0px;
    font-size: 16px;
  }
}

.post-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 48px 0px;
}
.post-gallery li {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
@media (max-width: 600px) {
  .post-gallery {
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    margin: 40px 0px;
  }
}

/* ライトボックス（前出のものをそのまま流用） */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: white;
}
.gallery-lightbox.open {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.lightbox__figure {
  position: relative;
  margin: 0;
  max-width: 100vw;
  max-height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 48px 72px;
}

.lightbox__img {
  max-width: calc(100vw - 160px);
  max-height: calc(100vh - 160px);
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.lightbox__cap {
  color: #224064;
  font-size: 14px;
  max-width: min(50vw, 900px);
}

.lb-btn {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 3;
  width: 56px;
  height: 56px;
  border: none;
  background-color: transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 28px;
  cursor: pointer;
}
.lb-btn img {
  width: 16px;
  height: auto;
}

.lb-prev {
  left: 20px;
}

.lb-next {
  right: 20px;
}

.lb-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #224064;
  font-size: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

@media (max-width: 600px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .lightbox__figure {
    padding: 40px 48px;
  }
  .lightbox__img {
    max-width: calc(100vw - 100px);
    max-height: calc(100vh - 120px);
  }
  .lightbox__cap {
    min-width: min(75vw, 900px);
  }
  .lb-btn {
    width: 48px;
    height: 48px;
    font-size: 24px;
  }
  .lb-prev {
    left: 4px;
  }
  .lb-next {
    right: 4px;
  }
}
body.lb-lock {
  overflow: hidden;
}

@media (max-width: 600px) {
  .rmj-look .container.space {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.look-main {
  padding-top: 40px;
  text-align: right;
  position: relative;
}
.look-main img {
  width: 75%;
}
@media (max-width: 600px) {
  .look-main {
    padding-top: 20px;
  }
  .look-main img {
    width: 100%;
  }
}
.look-main .look-main-meta {
  position: absolute;
  left: 0;
  bottom: 24px;
  width: 40%;
  text-align: left;
  padding-bottom: 2rem;
}
.look-main .look-main-meta h1 {
  font-size: 3.375rem;
}
.look-main .look-main-meta h1 span {
  display: block;
  font-size: 2.25rem;
}
.look-main .look-main-meta::after {
  content: "";
  width: 60px;
  height: 4px;
  background-color: #224064;
  position: absolute;
}
@media (max-width: 600px) {
  .look-main .look-main-meta {
    position: static;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 1.5rem;
  }
  .look-main .look-main-meta h1 {
    font-size: 1.875rem;
  }
  .look-main .look-main-meta h1 span {
    font-size: 1.25rem;
  }
  .look-main .look-main-meta p {
    font-size: 0.875rem;
  }
  .look-main .look-main-meta::after {
    width: 40px;
    height: 3px;
  }
}

.look-content.left-edge {
  margin-left: -40px;
}
.look-content.right-edge {
  margin-right: -40px;
}
.look-content + .look-content {
  margin-top: 160px;
}
.look-content + .look-content.min-space {
  margin-top: 40px;
}
.look-content .thumb {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}
@media (max-width: 600px) {
  .look-content.left-edge {
    margin-left: 0;
  }
  .look-content.left-edge figure,
  .look-content.left-edge picture {
    margin-left: -20px;
  }
  .look-content.right-edge {
    margin-right: 0;
  }
  .look-content.right-edge figure,
  .look-content.right-edge picture {
    margin-right: -20px;
  }
  .look-content + .look-content {
    margin-top: 64px;
  }
  .look-content + .look-content.min-space {
    margin-top: 32px;
  }
}
.look-content .row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.look-content .row.reverse {
  -ms-flex-direction: row-reverse;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
          flex-direction: row-reverse;
}
.look-content .row .item {
  width: calc(50% - 12px);
}
.look-content .row .item:nth-child(even) {
  margin-left: auto;
}
.look-content .row .item.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.look-content .row .item.center p {
  width: 50%;
  min-width: 352px;
}
.look-content .look-caption {
  max-width: 540px;
  margin: 0px auto;
}
.look-content .look-caption p {
  font-size: 0.875rem;
}
@media (max-width: 600px) {
  .look-content .row {
    display: block;
  }
  .look-content .row.right-side {
    -webkit-transform: translateX(8.5%);
            transform: translateX(8.5%);
  }
  .look-content .row.left-side {
    -webkit-transform: translateX(-8.5%);
            transform: translateX(-8.5%);
  }
  .look-content .row .item {
    width: calc(100% - 60px);
    margin: 0px auto 16px;
  }
  .look-content .row .item.center {
    display: block;
    width: calc(100% - 60px);
    margin: 0px auto;
  }
  .look-content .row .item.center p {
    width: 100%;
    min-width: 0px;
  }
  .look-content .look-caption {
    max-width: calc(100% - 60px);
    margin: 0px auto;
  }
}

.link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.link-list li {
  width: 100%;
  margin-bottom: 24px;
}
.link-list li:last-child {
  margin-bottom: 0;
}
.link-list li a {
  margin: 0px auto;
}