@charset "UTF-8";
/* RESET */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

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

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  background: transparent;
  transition: all 0.4s ease;
  text-decoration: none;
}

a:hover {
  opacity: 0.6;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

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

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

ul {
  list-style-type: none;
}

ol {
  list-style-type: decimal;
}

figure img, h2 img, h3 img, h4 img {
  width: 100%;
  height: auto;
}

.forPC {
  display: block;
}

.forSP {
  display: none;
}

img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
}

html {
  font-size: 0.769230769vw;
  /* 1500で10 0.6666666667vw */
  overflow-x: hidden;
  overflow-y: auto;
  scroll-behavior: smooth;
}

@media screen and (max-width: 950px) {
  .forPC {
    display: none;
  }

  .forSP {
    display: block;
  }

  html {
    font-size: 1.3333333333vw;
    /*  */
    overflow-x: hidden;
  }
}
@media screen and (min-width: 1300px) {
  html {
    font-size: 10px;
  }
}
@media screen and (min-width: 951px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
body {
  font-family: 'Noto Sans JP', sans-serif;
  overflow-x: hidden;
}
body.interview {
  background: #000;
}

header {
  width: 100%;
  height: 10rem;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../images/bg_header.webp) repeat;
  background-size: 54rem;
  z-index: 2;
}
header.vanish {
  display: none;
}
header .inner {
  width: 100%;
  height: 100%;
  position: relative;
}
header .inner h1 {
  width: 34.7rem;
}
header .inner a.menu-open {
  position: absolute;
  top: 0;
  right: 0;
  width: 10rem;
  height: 10rem;
  background: #000;
  padding: 3.9rem 3rem;
  box-sizing: border-box;
  cursor: pointer;
}
header .inner a.menu-open span {
  display: block;
  width: 4rem;
  height: 0.3rem;
  background: #fff;
  margin-bottom: 0.7rem;
}
header .inner a.menu-open:hover {
  opacity: 1;
}
header .inner a.menu-open.open span:nth-of-type(1) {
  transform: rotate(45deg) translate(0.8rem, 0.5rem);
}
header .inner a.menu-open.open span:nth-of-type(2) {
  opacity: 0;
}
header .inner a.menu-open.open span:nth-of-type(3) {
  transform: rotate(-45deg) translate(1rem, -0.6rem);
}
@media screen and (max-width: 950px) {
  header .inner a.menu-open.open span:nth-of-type(3) {
    transform: rotate(-45deg) translate(0.8rem, -0.7rem);
  }
}
header .inner p.entry {
  width: 15rem;
  height: 10rem;
  position: absolute;
  top: 0;
  right: 10rem;
  background: #fff;
}
header .inner p.entry a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
header .inner p.entry a span {
  font-family: "Noto Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
header .inner p.entry a:hover {
  opacity: 1;
}

.text {
  overflow: hidden;
  /* 1つ目の影を隠す */
  color: transparent;
  /* テキスト本体は透明にする */
  font-size: 60px;
  /*
   影の設定
   1つ目：Y方向の位置にマイナスに設定してテキスト本体の上に配置、ぼかしなし
   2つ目：位置はテキスト本体と同じ、ぼかしなし
  */
  text-shadow: 0 1.5em 0 #ff0000, 0 0 0 #ff0000;
  transition: text-shadow 0.3s;
}
.text span {
  height: 2rem;
}

.text:hover {
  text-shadow: 0 0 0 #ff0000, 0 -1.5em 0 #ff0000;
  /* 2つの影の位置を上方向に1.5emずつずらす */
}

#fp-nav.fp-right {
  right: 4rem;
}
@media screen and (max-width: 950px) {
  #fp-nav.fp-right {
    right: 2rem;
    top: 30%;
  }
}

#fp-nav {
  z-index: 1;
}

#fp-nav ul li {
  margin-bottom: 2.7rem;
}

#fp-nav ul li a span {
  width: 1.2rem;
  height: 1.2rem;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 0 0 0;
}

#fp-nav ul li a:hover {
  opacity: 1;
}

#fp-nav ul li a:hover span {
  background: white;
  margin: 0 0 0 0;
}

#fp-nav ul li:hover a span {
  width: 1.2rem;
  height: 1.2rem;
}

#fp-nav ul li a.active span {
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: white;
  margin: 0 0 0 0;
  position: relative;
}
#fp-nav ul li a.active span::after {
  content: '';
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid #fff;
  position: absolute;
  top: -1rem;
  left: -1rem;
}
@media screen and (max-width: 950px) {
  #fp-nav ul li a.active span::after {
    width: 3.2rem;
    height: 3.2rem;
    top: -1rem;
    left: -1rem;
    border: 0.1rem solid #fff;
    box-sizing: border-box;
  }
}

#fp-nav ul li:hover a.active span {
  width: 1.2rem;
  height: 1.2rem;
}

#fp-nav ul li a.active span.fp-sr-only, #fp-nav ul li a.active span.fp-sr-only::after {
  display: none;
}

#fp-nav ul li a.active:hover span {
  margin: 0 0 0 0;
}

#menu-panel {
  opacity: 0;
  pointer-events: none;
  width: 37.5rem;
  height: calc(100vh - 10rem);
  background: #000;
  padding-top: 3.4rem;
  box-sizing: border-box;
  position: absolute;
  top: 10rem;
  right: 0;
  z-index: 2;
  transition: all 0.4s ease;
}
@media screen and (max-width: 950px) {
  #menu-panel {
    width: 100%;
  }
}
#menu-panel ul {
  width: 30rem;
  margin: auto;
}
@media screen and (max-width: 950px) {
  #menu-panel ul {
    width: 60rem;
  }
}
#menu-panel ul li {
  border-bottom: 0.2rem solid #fff;
}
#menu-panel ul li a {
  font-size: 1.6rem;
  font-weight: 700;
  color: #fff;
  width: 100%;
  height: 6.5rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  transition: all 0.4s ease;
}
@media screen and (max-width: 950px) {
  #menu-panel ul li a {
    font-size: 3.2rem;
    height: 15rem;
  }
}
#menu-panel ul li a:hover {
  text-decoration: none;
}

#menu-panel.open {
  opacity: 1;
  pointer-events: auto;
}

section {
  position: relative;
}

.home p.scrollBtn {
  margin: 9vh 0 auto 0;
  transform: translateX(-50%);
  width: 10rem;
  height: 10rem;
}
@media screen and (max-width: 950px) {
  .home p.scrollBtn {
    margin: auto;
    width: 100%;
    transform: translateX(0);
  }
}
.home p.scrollBtn a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("../images/scroll.webp") no-repeat;
  background-size: 100%;
}
@media screen and (max-width: 950px) {
  .home p.scrollBtn a {
    width: 10rem;
    height: 10rem;
    margin: 5rem auto auto;
  }
}
.home .bg {
  width: 100%;
  height: 100%;
  background: url("../images/home.webp") no-repeat center top 10rem;
  background-size: cover;
  animation: fadeIn01 3s ease-out forwards;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 950px) {
  .home .bg {
    background: url("../images/home_sp.webp") no-repeat center top 10rem;
    background-size: 950px;
  }
}
@media screen and (max-width: 750px) {
  .home .bg {
    background: url("../images/home_750.webp") no-repeat center top 10rem;
    background-size: cover;
  }
}
.home .catch {
  position: absolute;
  top: 28vh;
  left: 50.1%;
}
@media screen and (max-width: 950px) {
  .home .catch {
    top: auto;
    bottom: 2.4rem;
    left: 50%;
    width: 66rem;
    transform: translateX(-50%);
  }
}
.home .catch .deg {
  font-family: "Zen Old Mincho", serif;
  font-size: 7.1rem;
  font-weight: 700;
  overflow: hidden;
  padding: 0 2rem;
  line-height: 1;
}
.home .catch .deg + p {
  margin-top: 1.8rem;
}
.home .catch .deg p.marker {
  display: inline-block;
  background: #ff0000;
  font-feature-settings: "palt";
  padding: 0.6rem 0.6rem;
  color: #fff;
  animation: slideIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  transform: skewX(-10deg);
  margin-left: -110%;
  letter-spacing: -0.2rem;
}
@media screen and (max-width: 950px) {
  .home .catch .deg p.marker {
    padding: 0.6rem 1rem;
  }
}
.home .catch .deg.deg01 {
  width: 56rem;
  margin-left: 3.4rem;
  font-size: 4.06rem;
}
.home .catch .deg.deg01 p.marker {
  animation-delay: 1.5s;
}
@media screen and (max-width: 950px) {
  .home .catch .deg.deg01 p.marker {
    padding: 0.6rem 2rem 0.6rem 0.6rem;
  }
}
.home .catch .deg.deg02 {
  width: 60rem;
  margin-left: 1.7rem;
  margin-top: 1.5rem;
}
.home .catch .deg.deg02 p.marker {
  padding: 0.6rem 0.2rem 0.6rem 0.6rem;
  animation-delay: 4s;
}
@media screen and (max-width: 950px) {
  .home .catch .deg.deg02 p.marker {
    padding: 0.6rem 1rem 0.6rem 0.6rem;
  }
}
.home .catch .deg.deg03 {
  width: 56rem;
  margin-top: 1.5rem;
}
.home .catch .deg.deg03 p.marker {
  padding: 0.6rem 0 0.6rem 0.6rem;
  animation-delay: 6s;
}
@media screen and (max-width: 950px) {
  .home .catch .deg.deg03 p.marker {
    padding: 0.6rem 2rem 0.6rem 1rem;
  }
}
.home .lead {
  margin: 3.3vh 0 0 0;
  padding-left: 1.5rem;
}
.home .lead p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  animation: fadeIn01 2s ease-out forwards;
  animation-delay: 7.6s;
  opacity: 0;
}
@media screen and (max-width: 950px) {
  .home .lead p {
    font-size: 2.6rem;
    line-height: 4.7rem;
  }
}

p.marker01 span {
  animation: textanimation 1.3s forwards;
  /* 2s */
  opacity: 0;
}

p.marker01 span:nth-of-type(1) {
  animation-delay: 1.7s;
}

p.marker01 span:nth-of-type(2) {
  animation-delay: 1.9s;
}

p.marker01 span:nth-of-type(3) {
  animation-delay: 2.1s;
}

p.marker01 span:nth-of-type(4) {
  animation-delay: 2.3s;
}

p.marker01 span:nth-of-type(5) {
  animation-delay: 2.5s;
}

p.marker01 span:nth-of-type(6) {
  animation-delay: 2.7s;
}

p.marker01 span:nth-of-type(7) {
  animation-delay: 2.9s;
  letter-spacing: -1rem;
}

p.marker01 span:nth-of-type(8) {
  animation-delay: 3.1s;
}

p.marker01 span:nth-of-type(9) {
  animation-delay: 3.3s;
}

p.marker01 span:nth-of-type(10) {
  animation-delay: 3.5s;
}

p.marker01 span:nth-of-type(11) {
  animation-delay: 3.7s;
}

p.marker01 span:nth-of-type(12) {
  animation-delay: 3.9s;
}

p.marker01 span:nth-of-type(13) {
  animation-delay: 4.1s;
  letter-spacing: -1rem;
}

p.marker02 span {
  animation: textanimation 1s forwards;
  /* 1.2s */
  opacity: 0;
}

p.marker02 span:nth-of-type(1) {
  animation-delay: 4.2s;
}

p.marker02 span:nth-of-type(2) {
  animation-delay: 4.4s;
  letter-spacing: -1.8rem;
}

p.marker02 span:nth-of-type(3) {
  animation-delay: 4.6s;
  letter-spacing: -1.8rem;
}

p.marker02 span:nth-of-type(4) {
  animation-delay: 4.8s;
}

p.marker02 span:nth-of-type(5) {
  animation-delay: 5s;
}

p.marker02 span:nth-of-type(6) {
  animation-delay: 5.2s;
}

p.marker02 span:nth-of-type(7) {
  animation-delay: 5.4s;
}

p.marker02 span:nth-of-type(8) {
  animation-delay: 5.6s;
}

p.marker03 span {
  animation: textanimation 0.8s forwards;
  /* 0.92s */
  opacity: 0;
}

p.marker03 span:nth-of-type(1) {
  animation-delay: 6.2s;
}

p.marker03 span:nth-of-type(2) {
  animation-delay: 6.4s;
}

p.marker03 span:nth-of-type(3) {
  animation-delay: 6.6s;
}

p.marker03 span:nth-of-type(4) {
  animation-delay: 6.8s;
}

p.marker03 span:nth-of-type(5) {
  animation-delay: 7s;
}

p.marker03 span:nth-of-type(6) {
  animation-delay: 7.2s;
  letter-spacing: -1.8rem;
}

@keyframes textanimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeIn01 {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes slideIn {
  0% {
    margin-left: -100%;
    opacity: 0;
  }
  100% {
    margin-left: 0;
  }
}
.ttlBox {
  margin: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 950px) {
  .ttlBox {
    width: 60rem;
    margin: auto;
  }
}
.ttlBox h2 {
  width: 22.27rem;
  height: 17.25rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 950px) {
  .ttlBox h2 {
    width: 27.8rem;
    height: 21.6rem;
    margin: auto;
  }
}
.ttlBox p.lead {
  font-family: "Zen Old Mincho", serif;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 6rem;
  color: #fff;
  margin-bottom: 2.5rem;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .ttlBox p.lead {
    font-size: 5.4rem;
    line-height: 1.4;
    margin-top: 7rem;
  }
}
.ttlBox p.explain {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.9;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .ttlBox p.explain {
    text-align: left;
    font-size: 2.6rem;
  }
}

ul.addLink {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 4.6rem auto auto;
  margin-block-start: 0;
  margin-block-end: 0;
}
ul.addLink li {
  border-right: 1px solid #fff;
  padding: 0 1.5rem;
}
@media screen and (max-width: 950px) {
  ul.addLink li {
    display: flex;
    align-items: center;
  }
}
ul.addLink li:last-of-type {
  border-right: none;
}
ul.addLink li a {
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  background: url("../images/ico_ext.webp") no-repeat center right;
  background-size: 1.92rem;
  padding-right: 2.3rem;
}
@media screen and (max-width: 950px) {
  ul.addLink li a {
    font-size: 2.2rem;
    background: url("../images/ico_ext.webp") no-repeat center right;
    background-size: 2.3rem;
    padding-right: 3rem;
  }
}

.toMore {
  width: 120rem;
  margin: auto;
}
@media screen and (max-width: 950px) {
  .toMore {
    width: 60rem;
  }
}
.toMore ul {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 2.2rem;
}
.toMore ul li {
  transition: all 0.4s ease;
  position: relative;
  cursor: pointer;
}
.toMore ul li img {
  position: relative;
  z-index: 2;
  transition: all 0.4s ease;
}
.toMore ul li:hover img {
  opacity: 0.6;
}
.toMore ul li .sheet {
  position: absolute;
  content: '';
  width: 100%;
  height: 17.6rem;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 950px) {
  .toMore ul li .sheet {
    height: 13.89rem;
  }
}
.toMore ul.section01 {
  margin-top: 4.5rem;
  justify-content: flex-end;
}
.toMore ul.section01 li {
  width: 16rem;
  height: 3.2rem;
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
  background: url("../images/more_plus.webp") no-repeat top right;
  background-size: 3.2rem;
  padding-right: 4rem;
  box-sizing: border-box;
  transition: all 0.4s ease;
}
@media screen and (max-width: 950px) {
  .toMore ul.section01 li {
    width: 19rem;
    height: 4rem;
    font-size: 2.6rem;
    background: url("../images/more_plus_sp.webp") no-repeat top right;
    background-size: 4rem;
  }
}
.toMore ul.section03, .toMore ul.section04 {
  margin-top: 4.5rem;
  justify-content: center;
  gap: 2.2rem;
}
.toMore ul.section03 li, .toMore ul.section04 li {
  width: 22.8rem;
  font-size: 1.8rem;
  font-weight: 500;
  color: #fff;
  box-sizing: border-box;
  position: relative;
  text-align: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 950px) {
  .toMore ul.section03 li, .toMore ul.section04 li {
    width: 18rem;
    font-size: 2.2rem;
  }
}
.toMore ul.section03 li::after, .toMore ul.section04 li::after {
  content: '';
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/more_plus.webp") no-repeat top right;
  background-size: 3.2rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  .toMore ul.section03 li::after, .toMore ul.section04 li::after {
    width: 4rem;
    height: 4rem;
    background: url("../images/more_plus.webp") no-repeat top right;
    background-size: 4rem;
  }
}
.toMore ul.section03 li img, .toMore ul.section04 li img {
  margin-bottom: 0.6rem;
}
@media screen and (max-width: 950px) {
  .toMore ul.section04 li {
    width: 28.5rem;
  }
}

@media screen and (max-width: 950px) {
  .fp-is-overflow > .fp-overflow {
    overflow-y: visible;
  }
}

section.section01 {
  background: url("../images/bg_section01.webp") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  section.section01 {
    background: url("../images/bg_section01_sp.webp") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  section.section01 {
    background: url("../images/bg_section01_750.webp") no-repeat center center;
    background-size: cover;
  }
}
section.section01 .ttlBox {
  margin-top: 31vh;
}
@media screen and (max-width: 950px) {
  section.section01 .ttlBox {
    margin-top: -8rem;
  }
}

section.section02 {
  background: url("../images/bg_section02.webp") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  section.section02 {
    background: url("../images/bg_section02_sp.webp") no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  section.section02 {
    background: url("../images/bg_section02_750.webp") no-repeat center top;
    background-size: cover;
  }
}
section.section02 .ttlBox {
  margin-top: 18vh;
}
@media screen and (max-width: 950px) {
  section.section02 .ttlBox {
    margin-top: 35rem;
  }
}
@media screen and (max-width: 950px) {
  section.section02 .ttlBox p.lead {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 950px) {
  section.section02 .ttlBox p.explain {
    font-feature-settings: "palt";
  }
}
section.section02 .toInterviewBox {
  margin: 4rem auto auto;
  display: flex;
  justify-content: center;
  gap: 2.4rem;
}
@media screen and (max-width: 950px) {
  section.section02 .toInterviewBox {
    width: 60rem;
    flex-wrap: wrap;
    gap: 2rem;
  }
}
section.section02 p.toInterview {
  width: 28.2rem;
  height: auto;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  section.section02 p.toInterview {
    width: 29rem;
  }
}
section.section02 p.toInterview a {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  width: 100%;
  height: auto;
  padding: 1.5rem 0 1.5rem 2.2rem;
  background: url("../images/ico_post.webp") no-repeat center right 1.8rem;
  background-size: 0.9rem;
  box-sizing: border-box;
  color: #fff;
  transition: all 0.4s ease;
  border: 1px solid #fff;
}
section.section02 p.toInterview a span {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
}
@media screen and (max-width: 950px) {
  section.section02 p.toInterview a span {
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 950px) {
  section.section02 p.toInterview a {
    font-size: 2rem;
    line-height: 3rem;
    padding: 1.6rem 2.1rem;
    background: url("../images/ico_post.webp") no-repeat center right 1.8rem;
    background-size: 1.13rem;
  }
}
section.section02 p.toInterview a:hover {
  opacity: 0.6;
  text-decoration: none;
}

section.section03 {
  background: url("../images/bg_section03.webp") no-repeat center center;
  background-size: cover;
  height: 100vh;
}
@media screen and (max-width: 950px) {
  section.section03 {
    background: url("../images/bg_section03_sp.webp") no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  section.section03 {
    background: url("../images/bg_section03_750.webp") no-repeat center center;
    background-size: cover;
  }
}
section.section03 .toMore {
  margin-bottom: 4rem;
}
@media screen and (max-width: 950px) {
  section.section03 .toMore {
    margin-bottom: 4.5rem;
  }
}
section.section03 .ttlBox {
  margin-top: 12vh;
}
@media screen and (max-width: 950px) {
  section.section03 .ttlBox {
    margin-top: 0;
  }
}
@media screen and (max-width: 950px) {
  section.section03 .ttlBox p.lead {
    letter-spacing: -0.1rem;
    margin-top: 6rem;
  }
}

section.section04 {
  background: url("../images/bg_section04.webp") no-repeat center center;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  section.section04 {
    background: url("../images/bg_section04_sp.webp") no-repeat center center;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  section.section04 {
    background: url("../images/bg_section04_750.webp") no-repeat center center;
    background-size: cover;
  }
}
section.section04 .ttlBox {
  margin-top: 14vh;
}
@media screen and (max-width: 950px) {
  section.section04 .ttlBox p.lead {
    letter-spacing: -0.2rem;
  }
}

section.section05 {
  background: url("../images/bg_section05.webp") no-repeat center top;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  section.section05 {
    background: url("../images/bg_section05_sp.webp") no-repeat center top;
    background-size: cover;
  }
}
@media screen and (max-width: 750px) {
  section.section05 {
    background: url("../images/bg_section05_750.webp") no-repeat center top;
    background-size: cover;
  }
}
section.section05 .ttlBox {
  margin-top: 31vh;
}
@media screen and (max-width: 950px) {
  section.section05 .ttlBox {
    margin-top: 10rem;
  }
}

section.section06 {
  background: #fff;
}
@media screen and (min-height: 1080px) {
  section.section06::before {
    content: '';
    width: 100%;
    height: 20vh;
    background: url(../images/bg_header.webp) repeat;
    background-size: 54rem;
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 950px) {
  section.section06 {
    background: url(../images/bg_header.webp) repeat;
    background-size: 54rem;
  }
}
section.section06 .inner {
  width: 100%;
  margin: auto;
  padding-top: 9.3rem;
  background: url(../images/bg_header.webp) repeat;
  background-size: 54rem;
}
@media screen and (max-width: 950px) {
  section.section06 .inner {
    position: absolute;
    bottom: 0;
  }
}
section.section06 .inner h2 {
  width: 76.8rem;
  font-family: "Zen Old Mincho", serif;
  font-size: 6.2rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  margin: auto auto 5.8rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  section.section06 .inner h2 {
    font-size: 4.8rem;
  }
}
section.section06 .inner h2 span {
  display: inline-block;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid #fff;
}
section.section06 .inner h2 span + span {
  margin-top: 3rem;
}
section.section06 .inner .toMore {
  width: 76.8rem;
  margin: auto auto 3.5rem;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .toMore {
    width: 60rem;
  }
}
section.section06 .inner .toMore ul.toModal {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  margin-bottom: 3.5rem;
}
section.section06 .inner .toMore ul.toModal li {
  width: 37.4rem;
  height: 7.8rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  padding: 0 1.8rem;
  background: url(../images/ico_plus.webp) no-repeat center right 1.8rem black;
  background-size: 1.6rem;
  border: none;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .toMore ul.toModal li {
    width: 100%;
    height: 12rem;
    font-size: 3rem;
    font-weight: 700;
    padding: 0 2.6rem;
    background: url(../images/ico_plus.webp) no-repeat center right 2.6rem black;
    background-size: 2.4rem;
  }
}
section.section06 .inner .toMore p.toEntry {
  width: 76.8rem;
  height: 14.8rem;
  background: #fff;
  margin-bottom: 7.4rem;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .toMore p.toEntry {
    width: 100%;
    height: 14.8rem;
    font-size: 5.2rem;
    font-weight: 700;
  }
}
section.section06 .inner .toMore p.toEntry a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
section.section06 .inner .toMore p.toEntry a span {
  font-family: "Noto Sans", sans-serif;
  font-size: 5.6rem;
  font-weight: 700;
}
section.section06 .inner .toMore p.toEntry a:hover {
  opacity: 1;
}
section.section06 .inner .linkBox {
  width: 100%;
  background: #000;
  padding: 4.5rem 0;
}
section.section06 .inner .linkBox ul.large {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-bottom: 4.5rem;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .linkBox ul.large {
    align-items: center;
    gap: 1.5rem;
  }
}
section.section06 .inner .linkBox ul.large li a {
  font-size: 2rem;
  font-weight: 500;
  color: #fff;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .linkBox ul.large li a {
    font-size: 2.4rem;
  }
}
section.section06 .inner .linkBox ul.small {
  widht: 100%;
  height: 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
}
section.section06 .inner .linkBox ul.small li {
  border-right: 1px solid #fff;
}
section.section06 .inner .linkBox ul.small li:last-of-type {
  border-right: none;
}
section.section06 .inner .linkBox ul.small li a {
  font-size: 1.4rem;
  font-weight: 500;
  color: #fff;
  padding: 0 1.5rem;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .linkBox ul.small li a {
    font-size: 2rem;
  }
}
section.section06 .inner .footer {
  width: 100%;
  background: #fff;
  padding-top: 5rem;
  padding-bottom: 2rem;
}
section.section06 .inner .footer ul.logos {
  margin: auto;
  margin-bottom: 3.7rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3.6rem;
}
section.section06 .inner .footer ul.logos li:nth-child(1) {
  width: 25.58rem;
}
section.section06 .inner .footer ul.logos li:nth-child(2) {
  width: 23.6rem;
}
section.section06 .inner .footer p.rights {
  font-size: 1rem;
  font-weight: 500;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 950px) {
  section.section06 .inner .footer p.rights {
    font-size: 2rem;
  }
}

/* modal */
.modal-content {
  all: unset;
  opacity: 0;
  transform: scale(0.7);
  outline: none;
  /* デフォルトのフォーカスアウトラインを消す */
  -webkit-focus-ring-color: transparent;
  /* Safari 独自のフォーカスリング色を透明化 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.modal-content:focus {
  outline: none !important;
}
.modal-content.is-open {
  opacity: 1;
  transform: scale(0.7);
}
.modal-content.is-open::backdrop {
  opacity: 1;
}
.modal-content::backdrop {
  background-color: rgba(0, 0, 0, 0.6) !important;
  opacity: 0;
  transition: all 0.4s ease;
  border: none;
  outline: none;
}

dialog:-internal-dialog-in-top-layer::backdrop {
  position: fixed;
  inset: 0px;
  background: rgba(0, 0, 0, 0.6);
}

.modal {
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 501;
  padding: 4em 0;
  overflow-y: scroll;
}
@media screen and (max-width: 950px) {
  .modal {
    background-color: rgba(0, 0, 0, 0.7);
  }
}

.modal-content {
  width: 120rem;
  padding: 6rem 0 0 0;
  background: none;
  border-bottom: 1px solid #fff;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s ease;
  outline: none;
  /* デフォルトのフォーカスアウトラインを消す */
  -webkit-focus-ring-color: transparent;
  /* Safari 独自のフォーカスリング色を透明化 */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  max-height: 90vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 950px) {
  .modal-content {
    width: 70rem;
    padding: 8rem 0 0 0;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    max-height: 75vh;
    /* 80vh */
    position: fixed;
    top: 2rem;
    overflow-y: scroll !important;
  }
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51, .modal-content.dialog52 {
    overflow-y: hidden !important;
    border-bottom: 1px solid #fff;
  }
}
.modal-content.is-open {
  opacity: 1;
  transform: scale(1);
}
.modal-content .inner {
  width: 100%;
  padding: 0 0 0 0;
  background: #000;
  border: 1px solid #fff;
  border-bottom: none;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-sizing: border-box;
  gap: 0;
}
.modal-content p.close-button {
  width: 6rem;
  height: 6rem;
  background: url("../images/close-button.webp") no-repeat;
  background-size: 100%;
  position: absolute;
  top: -6rem;
  right: -0.2rem;
  cursor: pointer;
}
@media screen and (max-width: 950px) {
  .modal-content p.close-button {
    width: 8rem;
    height: 8rem;
    background: url("../images/close-button.webp") no-repeat;
    background-size: 100%;
    top: -8rem;
    right: -0.2rem;
  }
}
.modal-content h3 {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  position: absolute;
  top: 4.5rem;
  left: 4.8rem;
  line-height: 1;
}
@media screen and (max-width: 950px) {
  .modal-content h3 {
    top: 7rem;
  }
}
.modal-content h3.dialog41, .modal-content h3.dialog42, .modal-content h3.dialog51, .modal-content h3.dialog61, .modal-content h3.dialog62 {
  left: 0;
  width: 100%;
  text-align: center;
}
.modal-content ul.prepost {
  position: absolute;
  top: 6rem;
  left: 49.6rem;
  width: 5.4rem;
  height: 2.6rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s ease;
  z-index: 2;
}
@media screen and (max-width: 950px) {
  .modal-content ul.prepost {
    top: 7.8rem;
    left: auto;
    right: 3rem;
    width: 6.7rem;
  }
}
.modal-content ul.prepost li:hover {
  opacity: 0.6;
}
.modal-content ul.prepost li.pre {
  width: 2.07rem;
  height: 2.6rem;
  background: url("../images/ico_pre.webp") no-repeat top left;
  background-size: 1.1rem;
  cursor: pointer;
}
.modal-content ul.prepost li.post {
  width: 2.07rem;
  height: 2.6rem;
  background: url("../images/ico_post.webp") no-repeat top right;
  background-size: 1.1rem;
  cursor: pointer;
}
.modal-content.dialog11 .inner {
  padding-bottom: 6.4rem;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog11 .inner {
    padding-bottom: 2rem;
  }
}
.modal-content.dialog11 h3 {
  width: 21.1rem;
  margin: 7.2rem auto 6.6rem;
  position: static;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog11 h3 {
    width: 24.6rem;
  }
}

.modal.is-show .modal-content {
  opacity: 1;
  transform: scale(1);
}

.scrollArea {
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.scrollArea::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 950px) {
  .scrollArea {
    height: 101.4rem;
    overflow-y: scroll;
    margin-top: 15rem;
    padding-bottom: 5rem;
  }
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 1rem;
  background: #999;
}

.simplebar-scrollbar {
  background: #fff;
}

.simplebar-scrollbar.simplebar-visible {
  background: #fff !important;
}

.simplebar-scrollbar.simplebar-visible:before {
  background: #fff !important;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}

.simplebar-track .simplebar-scrollbar::before {
  background: #fff;
}

.card {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 0;
  margin: 0;
}
@media screen and (max-width: 950px) {
  .card {
    flex-direction: column;
  }
}
@media screen and (max-width: 950px) {
  .card + .card {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 950px) {
  .card.sp15 {
    margin-top: 15rem;
  }
}
.card .texts {
  width: 50%;
  color: #fff;
  padding: 1.6rem 4.8rem;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  .card .texts {
    width: 100%;
    padding: 1.6rem 4.4rem;
  }
}
.card .texts.widthImg {
  width: 54rem;
}
@media screen and (max-width: 950px) {
  .card .texts.widthImg {
    width: 60rem;
    padding: 1.6rem 0;
  }
}
.card .texts.deg01 {
  padding-top: 16rem;
}
@media screen and (max-width: 950px) {
  .card .texts.deg01 {
    padding-top: 0;
  }
}
.card .texts h4 {
  font-family: "Zen Old Mincho", serif;
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 950px) {
  .card .texts h4 {
    text-align: center;
    font-size: 3.6rem;
    margin-bottom: 3.8rem;
  }
}
.card .texts p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 950px) {
  .card .texts p {
    font-size: 2.6rem;
    line-height: 4.76rem;
    margin-bottom: 2rem;
  }
}
.card .texts p.catchCopy {
  font-family: "Zen Old Mincho", serif;
  font-size: 5.49rem;
  font-weight: 700;
  line-height: 1;
  margin-top: -1rem;
  padding-left: 2.7rem;
}
@media screen and (max-width: 950px) {
  .card .texts p.catchCopy {
    font-size: 6.5rem;
    padding-left: 0;
  }
}
.card .texts p.catchCopy span {
  display: inline-block;
  background: #ff0000;
  font-feature-settings: "palt";
  padding: 0.5rem 0.6rem;
  color: #fff;
  transform: skewX(-10deg);
  letter-spacing: -0.2rem;
  margin-bottom: 1.4rem;
}
.card .texts p.catchCopy span:nth-of-type(1) {
  margin-left: 4.4rem;
}
.card .texts p.catchCopy span:nth-of-type(2) {
  margin-left: 3.3rem;
}
.card .texts p.catchCopy span:nth-of-type(3) {
  margin-left: 2.2rem;
}
.card .texts p.catchCopy span:nth-of-type(4) {
  margin-left: 1.1rem;
}
.card figure {
  width: 50%;
  padding: 0;
  overflow: hidden;
}
@media screen and (max-width: 950px) {
  .card figure {
    width: 60rem;
    margin: auto;
  }
}
@media screen and (max-width: 950px) {
  .card figure.sp100 {
    width: 100%;
  }
}
.card figure img {
  margin: 0 0 -0.3rem 0;
}
.card .texts2 {
  width: 51.6%;
  padding-right: 4.8rem;
  box-sizing: border-box;
}
@media screen and (max-width: 950px) {
  .card .texts2 {
    width: 100%;
    padding: 0 4.4rem;
  }
}
.card .texts2.kaihen {
  width: 52.6rem;
  padding-top: 0.5rem;
}
@media screen and (max-width: 950px) {
  .card .texts2.kaihen {
    width: 60rem;
    padding: 0 0;
    margin-top: 5rem;
    padding-bottom: 6.4rem;
  }
}
.card .texts2 p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
  color: #fff;
}
@media screen and (max-width: 950px) {
  .card .texts2 p {
    font-size: 2.6rem;
    line-height: 4.8rem;
    font-feature-settings: "palt";
  }
}
.card .texts2 p.sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

.modal-content.dialog11 .scrollArea {
  overflow-y: hidden;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog11 .scrollArea {
    overflow-y: auto;
    width: 98%;
    height: calc(75vh - 15rem);
    margin-top: 0;
    margin-bottom: 3rem;
    padding: 0 2.5rem 4.8rem;
  }
}

.modal-content.dialog41 .scrollArea {
  overflow-y: hidden;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog41 .scrollArea {
    overflow-y: auto;
    width: 98%;
    height: calc(72vh - 15rem);
    margin-top: 15rem;
    margin-bottom: 3rem;
    padding: 0 2.5rem 4.8rem;
  }
}

.modal-content.dialog42 .scrollArea {
  overflow-y: hidden;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog42 .scrollArea {
    overflow-y: auto;
    width: 98%;
    height: 80rem;
    /* calc(72vh - 15rem) */
    margin-top: 15rem;
    margin-bottom: 3rem;
    padding: 0 2.5rem 4.8rem;
  }
}

.cardBox {
  width: 100%;
  padding: 13rem 4.5rem 4.8rem;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  .cardBox {
    flex-direction: column;
    padding: 0 1.5rem 4.8rem;
  }
}

.cardBox2 {
  width: 100%;
  padding: 13rem 4.5rem 4.8rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  .cardBox2 {
    height: auto;
    /* 101.4rem */
    overflow-y: hidden;
    margin-top: 0;
    padding: 0 1.5rem 0;
  }
}
@media screen and (max-width: 950px) {
  .cardBox2 .card2 {
    margin-top: 0;
  }
}

.card2 {
  width: 53rem;
}
@media screen and (max-width: 950px) {
  .card2 {
    width: 100%;
    margin-top: 2.5rem;
  }
}
@media screen and (max-width: 950px) {
  .card2 + .card2 {
    margin-top: 1.5rem;
  }
}
.card2 h4 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  background: #ff0000;
  line-height: 1;
  padding: 0.6rem;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 950px) {
  .card2 h4 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    padding: 0.8rem 2rem;
  }
}
.card2 p {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 950px) {
  .card2 p {
    font-size: 2.6rem;
    line-height: 4rem;
    margin-bottom: 2rem;
  }
}

ul.toModal {
  width: 63.2rem;
  margin: 5rem auto auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  ul.toModal {
    flex-direction: column;
    row-gap: 1.8rem;
  }
}
ul.toModal li {
  width: 30.8rem;
  height: 6.4rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.6rem;
  font-weight: 500;
  color: #fff;
  padding: 0 1.8rem;
  background: url("../images/ico_plus.webp") no-repeat center right 1.8rem rgba(0, 0, 0, 0.3);
  background-size: 1.6rem;
  border: 1px solid #fff;
  box-sizing: border-box;
  cursor: pointer;
  transition: all 0.4s ease;
}
@media screen and (max-width: 950px) {
  ul.toModal li {
    width: 100%;
    height: 10rem;
    font-size: 2.6rem;
    padding: 0 2.6rem;
    background: url("../images/ico_plus.webp") no-repeat center right 1.8rem rgba(0, 0, 0, 0.3);
    background-size: 2.4rem;
  }
}
ul.toModal li:hover {
  opacity: 0.6;
}

.dialog01 {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s ease;
}

.dialog01.is-open {
  opacity: 1;
  transform: scale(1);
}

.dialog02 {
  width: 80rem;
  height: 30vh;
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s ease;
}

.dialog02.is-open {
  opacity: 1;
  transform: scale(1);
}

.dialog31 {
  opacity: 0;
  transform: scale(0.7);
  transition: all 0.4s ease;
}

.dialog31.is-open {
  opacity: 1;
  transform: scale(1);
}

@media screen and (max-width: 950px) {
  .dialog31 h3, .dialog32 h3, .dialog33 h3 {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media screen and (max-width: 950px) {
  .dialog31 .scrollArea {
    width: 96%;
    margin: 13rem auto 3rem;
    padding: 0 2.5rem 4.5rem;
    height: calc(72vh - 15rem);
    /* 102vh */
    margin-top: 15rem;
    overflow-y: scroll;
  }
}

@media screen and (max-width: 950px) {
  .modal-content.dialog31 {
    overflow-y: hidden !important;
    border-bottom: 1px solid #fff;
  }
}

.modal-content.dialog51 {
  overflow-y: hidden;
}
.modal-content.dialog51 .scrollArea {
  width: 96%;
  margin: 13rem auto 3rem;
  padding: 0 2.5rem 4.5rem;
  height: 68vh;
  box-sizing: border-box;
  overflow-y: scroll;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51 .scrollArea {
    height: calc(72vh - 15rem);
    /* 70vh */
    margin-top: 15rem;
    overflow-y: scroll;
  }
}
.modal-content.dialog51 .scrollArea h4 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51 .scrollArea h4 {
    font-size: 3.4rem;
  }
}
.modal-content.dialog51 .scrollArea p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  margin-bottom: 4rem;
  text-align: justify;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51 .scrollArea p {
    font-size: 2.6rem;
    line-height: 4.76rem;
  }
}
.modal-content.dialog51 .scrollArea figure {
  width: 92rem;
  margin: auto;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51 .scrollArea figure {
    width: 60rem;
  }
}
@media screen and (max-width: 950px) {
  .modal-content.dialog51 .scrollArea figure img {
    margin-bottom: 3rem;
  }
}

.modal-content.dialog52 {
  overflow-y: hidden;
}
.modal-content.dialog52 .scrollArea {
  width: 96%;
  margin: 13rem auto 3rem;
  padding: 0 2.5rem 4.5rem;
  height: auto;
  box-sizing: border-box;
  overflow-y: hidden;
  overflow-x: hidden;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog52 .scrollArea {
    height: calc(72vh - 15rem);
    /* 70vh */
    margin-top: 15rem;
    overflow-y: scroll;
  }
}
.modal-content.dialog52 .scrollArea h4 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 6rem;
  text-align: center;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog52 .scrollArea h4 {
    font-size: 3.4rem;
  }
}
.modal-content.dialog52 .scrollArea p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  margin-bottom: 4rem;
  text-align: justify;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog52 .scrollArea p {
    font-size: 2.6rem;
    line-height: 4.76rem;
  }
}
.modal-content.dialog52 .scrollArea figure {
  width: 110rem;
  margin: auto;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog52 .scrollArea figure {
    width: 60rem;
  }
}

.modal-content.dialog61, .modal-content.dialog62 {
  overflow-y: hidden;
}
.modal-content.dialog61 .scrollArea, .modal-content.dialog62 .scrollArea {
  width: 96%;
  margin: 13rem auto 3rem;
  padding: 0 2.5rem 4.5rem;
  height: 56vh;
  box-sizing: border-box;
  overflow-y: scroll;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea, .modal-content.dialog62 .scrollArea {
    width: 60rem;
    padding: 0 0 4.5rem;
    height: 50vh;
    margin-top: 15rem;
  }
}
.modal-content.dialog61 .scrollArea h4, .modal-content.dialog62 .scrollArea h4 {
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  margin-bottom: 6rem;
  text-align: center;
}
.modal-content.dialog61 .scrollArea p, .modal-content.dialog62 .scrollArea p {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  color: #fff;
  margin-bottom: 4rem;
  text-align: justify;
}
.modal-content.dialog61 .scrollArea figure, .modal-content.dialog62 .scrollArea figure {
  width: 92rem;
  margin: auto;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea figure, .modal-content.dialog62 .scrollArea figure {
    width: 100%;
  }
}
.modal-content.dialog61 .scrollArea table, .modal-content.dialog62 .scrollArea table {
  width: 100%;
  border-top: 1px solid #fff;
  font-size: 1.6rem;
  line-height: 2;
  color: #fff;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea table, .modal-content.dialog62 .scrollArea table {
    font-size: 2.6rem;
  }
}
.modal-content.dialog61 .scrollArea table th, .modal-content.dialog61 .scrollArea table td, .modal-content.dialog62 .scrollArea table th, .modal-content.dialog62 .scrollArea table td {
  padding: 0.9rem 2rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea table th, .modal-content.dialog61 .scrollArea table td, .modal-content.dialog62 .scrollArea table th, .modal-content.dialog62 .scrollArea table td {
    padding: 2.4rem 2rem;
  }
}
.modal-content.dialog61 .scrollArea table th, .modal-content.dialog62 .scrollArea table th {
  font-weight: 700;
  text-align: center;
  background: #ff0000;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea table th, .modal-content.dialog62 .scrollArea table th {
    width: 26.6%;
    padding: 2.4rem 0;
  }
}
.modal-content.dialog61 .scrollArea table td, .modal-content.dialog62 .scrollArea table td {
  font-weight: 500;
  font-feature-settings: "palt";
}
.modal-content.dialog61 figure, .modal-content.dialog62 figure {
  width: 110rem;
  margin: 11.5rem auto 3.7rem;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 figure, .modal-content.dialog62 figure {
    width: 52.2rem;
    margin-top: 15rem;
  }
}
.modal-content.dialog61 p.toEntry, .modal-content.dialog62 p.toEntry {
  width: 40rem;
  height: 8rem;
  margin: auto auto 4.3rem;
  background: #fff;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 p.toEntry, .modal-content.dialog62 p.toEntry {
    width: 60rem;
    height: 12rem;
  }
}
.modal-content.dialog61 p.toEntry a, .modal-content.dialog62 p.toEntry a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.modal-content.dialog61 p.toEntry a span, .modal-content.dialog62 p.toEntry a span {
  font-family: "Noto Sans", sans-serif;
  font-size: 2.6rem;
  font-weight: 700;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 p.toEntry a span, .modal-content.dialog62 p.toEntry a span {
    font-size: 3.8rem;
  }
}

.modal-content.dialog62 .scrollArea {
  height: auto;
}
@media screen and (max-width: 950px) {
  .modal-content.dialog62 .scrollArea {
    width: 96%;
    height: 50vh;
  }
}

@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea {
    width: 96%;
  }
}
@media screen and (max-width: 950px) {
  .modal-content.dialog61 .scrollArea table {
    width: 60rem;
    margin-left: 3.5rem;
  }
}

.modal-content.dialog61 ul.prepost, .modal-content.dialog62 ul.prepost {
  position: absolute;
  top: 6rem;
  left: auto;
  right: 4.6rem;
  width: 5.4rem;
  height: 2.6rem;
  display: flex;
  justify-content: space-between;
  transition: all 0.4s ease;
}

.fp-watermark {
  display: none;
}

.mvInt {
  width: 100%;
  height: 64rem;
  margin-top: 10rem;
  margin-bottom: 6.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1660px) {
  .mvInt {
    height: 38.5vw;
  }
}
@media screen and (max-width: 950px) {
  .mvInt {
    height: 90rem;
    display: block;
    padding: 63rem 0 0 4rem;
  }
}
.mvInt.int01 {
  background: url("../images/mv01.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  .mvInt.int01 {
    background: url("../images/mv01_sp.webp") no-repeat;
    background-size: cover;
  }
}
.mvInt.int02 {
  background: url("../images/mv02.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  .mvInt.int02 {
    background: url("../images/mv02_sp.webp") no-repeat;
    background-size: cover;
  }
}
.mvInt.int03 {
  background: url("../images/mv03.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  .mvInt.int03 {
    background: url("../images/mv03_sp.webp") no-repeat;
    background-size: cover;
  }
}
.mvInt.int04 {
  background: url("../images/mv04.webp") no-repeat;
  background-size: cover;
}
@media screen and (max-width: 950px) {
  .mvInt.int04 {
    background: url("../images/mv04_sp.webp") no-repeat;
    background-size: cover;
  }
}
.mvInt .pageInfo {
  width: 69.2rem;
  margin: auto;
  transform: translateX(40%);
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo {
    width: 67rem;
    transform: translateX(0);
  }
}
.mvInt .pageInfo .intLeadBox {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
  letter-spacing: -0.2rem;
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo .intLeadBox {
    gap: 1.2rem;
  }
}
.mvInt .pageInfo .intLeadBox .deg01 {
  margin-left: 2.4rem;
}
.mvInt .pageInfo .intLeadBox .deg02 {
  margin-left: 1.2rem;
}
.mvInt .pageInfo .intLeadBox .deg03 {
  margin-left: 0;
}
.mvInt .pageInfo p.intLead {
  height: 5rem;
  display: inline-block;
  background: #ff0000;
  font-feature-settings: "palt";
  padding: 0 0.6rem 0.2rem;
  color: #fff;
  transform: skewX(-10deg);
  font-family: "Zen Old Mincho", serif;
  font-size: 4.3rem;
  line-height: 5rem;
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo p.intLead {
    font-size: 5.2rem;
    height: 6rem;
    line-height: 6rem;
    letter-spacing: -0.4rem;
  }
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo p.intLead.tsume {
    letter-spacing: -0.5rem;
  }
}
.mvInt .pageInfo p.intName {
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 0.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo p.intName {
    font-size: 2.6rem;
  }
}
.mvInt .pageInfo p.intName span {
  font-family: "Zen Old Mincho", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-right: 1.2rem;
}
@media screen and (max-width: 950px) {
  .mvInt .pageInfo p.intName span {
    font-size: 5rem;
  }
}
.mvInt .pageInfo p.intSpec {
  width: 68rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 0.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #000;
}
.mvInt .pageInfo p.intDtail {
  width: 68rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 0.6rem;
  font-feature-settings: "palt";
}

@media screen and (max-width: 950px) {
  .intTxt {
    width: 67rem;
    margin: auto auto 8rem;
    color: #fff;
  }
}
.intTxt p.intName {
  font-size: 1.6rem;
  font-weight: 500;
  margin-left: 0.6rem;
  margin-bottom: 2rem;
}
@media screen and (max-width: 950px) {
  .intTxt p.intName {
    font-size: 2.6rem;
    margin-bottom: 1rem;
  }
}
.intTxt p.intName span {
  font-family: "Zen Old Mincho", serif;
  font-size: 5rem;
  font-weight: 700;
  margin-right: 1.2rem;
}
@media screen and (max-width: 950px) {
  .intTxt p.intName span {
    font-size: 5rem;
  }
}
.intTxt p.intSpec {
  width: 68rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 0.6rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 0.1rem solid #000;
}
@media screen and (max-width: 950px) {
  .intTxt p.intSpec {
    font-size: 2.6rem;
    line-height: 4.7rem;
    border-bottom: 0.1rem solid #fff;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}
.intTxt p.intDtail {
  width: 68rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.5;
  margin-left: 0.6rem;
  font-feature-settings: "palt";
}
@media screen and (max-width: 950px) {
  .intTxt p.intDtail {
    font-size: 2.6rem;
    line-height: 4.7rem;
  }
}

section.intBody {
  width: 120rem;
  margin: auto auto 15rem;
  color: #fff;
}
@media screen and (max-width: 950px) {
  section.intBody {
    width: 67rem;
  }
}
section.intBody .headLineBox {
  padding-bottom: 4rem;
  border-bottom: 0.2rem solid #FF0000;
}
@media screen and (max-width: 950px) {
  section.intBody .headLineBox {
    border-bottom: 0.4rem solid #FF0000;
  }
}
section.intBody p.headLine {
  font-family: "Zen Old Mincho", serif;
  font-size: 4.39rem;
  font-weight: 700;
  line-height: 6.27rem;
  transform: skewX(-10deg);
  letter-spacing: -0.2rem;
}
@media screen and (max-width: 950px) {
  section.intBody p.headLine {
    font-size: 4.4rem;
    line-height: 6.37rem;
    letter-spacing: -0.3rem;
  }
}
section.intBody p.lead {
  margin-top: 4rem;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
  text-align: justify;
}
@media screen and (max-width: 950px) {
  section.intBody p.lead {
    font-size: 2.6rem;
    line-height: 4.76rem;
  }
}
section.intBody figure {
  width: 100%;
  margin: 3.2rem auto 8.4rem;
}

section.otherInt {
  width: 100%;
  margin: auto;
  padding-bottom: 9.8rem;
}
section.otherInt h2 {
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin-bottom: 5rem;
}
section.otherInt ul {
  width: 120rem;
  margin: auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 950px) {
  section.otherInt ul {
    width: 58.4rem;
    flex-wrap: wrap;
    row-gap: 3.6rem;
  }
}
section.otherInt ul li {
  width: 28.2rem;
}
section.otherInt ul li figure {
  width: 100%;
  margin-bottom: 1.2rem;
  position: relative;
}
section.otherInt ul li figure::after {
  content: '';
  width: 3.2rem;
  height: 3.2rem;
  background: url("../images/ico_arrow_int.webp") no-repeat;
  background-size: 3.2rem;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 950px) {
  section.otherInt ul li figure::after {
    width: 4rem;
    height: 4rem;
    background: url("../images/ico_arrow_int.webp") no-repeat;
    background-size: 4rem;
  }
}
section.otherInt ul li a {
  color: #fff;
}
section.otherInt ul li p.otherIntName {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 0.7rem;
}
@media screen and (max-width: 950px) {
  section.otherInt ul li p.otherIntName {
    font-size: 2rem;
  }
}
section.otherInt ul li p.otherIntName span {
  font-size: 2rem;
  font-weight: 700;
  margin-right: 1rem;
}
@media screen and (max-width: 950px) {
  section.otherInt ul li p.otherIntName span {
    font-size: 2.6rem;
  }
}
section.otherInt ul li p.otherIntPosition {
  font-size: 1.4rem;
  font-weight: 500;
}
@media screen and (max-width: 950px) {
  section.otherInt ul li p.otherIntPosition {
    font-size: 2rem;
  }
}

p.rightsInt {
  width: 100%;
  height: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 950px) {
  p.rightsInt {
    font-size: 2rem;
    height: 6rem;
  }
}
