@charset "UTF-8";
/* CSS Document */
@import url(//fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap);
@import url(//fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap);
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
#thisPage {
  line-height: 1;
}
#thisPage div, #thisPage span, #thisPage applet, #thisPage object, #thisPage iframe,
#thisPage h1, #thisPage h2, #thisPage h3, #thisPage h4, #thisPage h5, #thisPage h6, #thisPage p, #thisPage blockquote, #thisPage pre,
#thisPage a, #thisPage abbr, #thisPage acronym, #thisPage address, #thisPage big, #thisPage cite, #thisPage code,
#thisPage del, #thisPage dfn, #thisPage em, #thisPage img, #thisPage ins, #thisPage kbd, #thisPage q, #thisPage s, #thisPage samp,
#thisPage small, #thisPage strike, #thisPage strong, #thisPage sub, #thisPage sup, #thisPage tt, #thisPage var,
#thisPage b, #thisPage u, #thisPage i, #thisPage center,
#thisPage dl, #thisPage dt, #thisPage dd, #thisPage ol, #thisPage ul, #thisPage li,
#thisPage fieldset, #thisPage form, #thisPage label, #thisPage legend,
#thisPage table, #thisPage caption, #thisPage tbody, #thisPage tfoot, #thisPage thead, #thisPage tr, #thisPage th, #thisPage td,
#thisPage article, #thisPage aside, #thisPage canvas, #thisPage details, #thisPage embed,
#thisPage figure, #thisPage figcaption, #thisPage footer, #thisPage header, #thisPage hgroup,
#thisPage menu, #thisPage nav, #thisPage output, #thisPage ruby, #thisPage section, #thisPage summary,
#thisPage time, #thisPage mark, #thisPage audio, #thisPage video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
#thisPage {
  /* HTML5 display-role reset for older browsers */
}
#thisPage article, #thisPage aside, #thisPage details, #thisPage figcaption, #thisPage figure,
#thisPage footer, #thisPage header, #thisPage hgroup, #thisPage menu, #thisPage nav, #thisPage section {
  display: block;
}
#thisPage ol, #thisPage ul {
  list-style: none;
}
#thisPage blockquote, #thisPage q {
  quotes: none;
}
#thisPage blockquote:before, #thisPage blockquote:after,
#thisPage q:before, #thisPage q:after {
  content: "";
  content: none;
}
#thisPage table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  --basePixel: calc(100vw / 750);
}
@media (min-width: 767px) {
  :root {
    --basePixel: min(1px, calc(100vw / 1230));
  }
}

html, body {
  scrollbar-gutter: stable;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.hmenu_btn {
  display: block;
  width: calc(100 * var(--basePixel));
  height: calc(100 * var(--basePixel));
  position: fixed;
  z-index: 51;
  top: 0;
  right: 0;
  overflow: clip;
}
@media (min-width: 767px) {
  .hmenu_btn {
    width: calc(60 * var(--basePixel));
    height: calc(60 * var(--basePixel));
  }
}
.hmenu_btn span {
  display: block;
  width: 50%;
  height: 40%;
  position: absolute;
  top: 30%;
  left: 25%;
}
.hmenu_btn span:before, .hmenu_btn span:after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #000000;
  transition: 0.5s all ease;
}
.hmenu_btn span:before {
  top: 0;
}
.hmenu_btn span:after {
  bottom: 0;
}
.hmenu_btn span i {
  text-indent: -9999px;
  position: absolute;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #000000;
  left: 0;
  top: calc(50% - 1px);
  transition: 0.5s all ease;
}

body.hmenu_open {
  overflow: clip;
}
body.hmenu_open .hmenu_btn span:before {
  top: calc(50% - 1px);
  transform: rotate(-45deg);
}
body.hmenu_open .hmenu_btn span:after {
  bottom: calc(50% - 1px);
  transform: rotate(45deg);
}
body.hmenu_open .hmenu_btn span i {
  transform: translateX(calc(100% + 2px));
  opacity: 0;
}

.hmenu_body {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  overflow-x: clip;
  overflow-y: auto;
  z-index: 49;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.5s ease;
  opacity: 0;
  visibility: hidden;
}
.hmenu_body ul {
  font-size: calc(32 * var(--basePixel));
  padding-top: calc(100 * var(--basePixel));
  transform: translateY(-100%);
  transition: all 0.5s ease;
  background-color: aqua;
}

body.hmenu_open .hmenu_body {
  opacity: 1;
  visibility: visible;
}
body.hmenu_open .hmenu_body ul {
  transform: translateY(0);
}

body.modal_open {
  overflow: clip;
}

.modal_bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 6666;
  display: none;
  width: 100%;
  height: 120%;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal_boot {
  cursor: pointer;
}

.modal_box {
  position: fixed;
  z-index: 7777;
  display: none;
  max-width: 1050px;
  width: calc(100vw - 30px);
  margin: 0;
  background: #fff;
  box-sizing: border-box;
  background-color: #ffffff;
}
.modal_box .modal_base {
  height: 70vh;
  max-width: 1050px;
  overflow-x: clip;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal_box .modal_base {
    height: 90vh;
  }
}
.modal_box .modal_base .modal_inner {
  width: 100%;
}
@media (min-width: 768px) {
  .modal_box .modal_base .modal_inner {
    width: 1050px;
  }
}
.modal_box .modal_base .modal_inner .modal_contents {
  padding: 20px 15px 20px;
}
@media (min-width: 768px) {
  .modal_box .modal_base .modal_inner .modal_contents {
    padding: 50px 30px 50px;
    border-width: 4px;
  }
}
.modal_box .closeBtnArea {
  text-align: center;
}
.modal_box .closeBtnArea.upper {
  text-align: right;
}
.modal_box .closeBtnArea .modal_close {
  background-color: #c0141d;
  color: #ffffff;
  display: inline-block;
  text-align: center;
  font-size: 1.2rem;
  padding: 0.5em 2em;
  border-radius: 1000px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .modal_box .closeBtnArea .modal_close {
    font-size: 1.8rem;
    transition: 0.5s opacity ease;
  }
  .modal_box .closeBtnArea .modal_close:hover {
    opacity: 0.7;
  }
}

.fixbtn picture, #thisPage #sec01 .h3_sec01 picture, #thisPage #sec01 .h1_sec01 picture,
.fixbtn img,
#thisPage #sec01 .h3_sec01 img,
#thisPage #sec01 .h1_sec01 img {
  display: block;
}

#thisPage #sec01 .graph01:after, #thisPage #sec01 .graph01:before, #thisPage #sec01:before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

#thisPage {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  line-height: 1;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
#thisPage img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#thisPage a {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#thisPage a:hover, #thisPage a:active, #thisPage a:focus {
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
#thisPage .container {
  padding-left: calc(30 * var(--basePixel));
  padding-right: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage .container {
    padding-left: calc(15 * var(--basePixel));
    padding-right: calc(15 * var(--basePixel));
    max-width: 1230px;
    margin-left: auto;
    margin-right: auto;
  }
}
#thisPage .container-960 {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}
#thisPage .ja {
  font-family: "Noto Serif JP", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "YuMincho", "Yu Mincho", "MS PMincho", serif;
}
#thisPage .fc_white {
  color: #ffffff;
}
#thisPage .fc_red {
  color: #c1121f;
}
#thisPage .link01 {
  color: #ffffff;
  font-size: calc(22 * var(--basePixel));
  display: block;
  padding-top: calc(30 * var(--basePixel));
  padding-right: calc(30 * var(--basePixel));
  text-align: right;
  text-decoration: underline;
  position: relative;
}
@media (min-width: 767px) {
  #thisPage .link01 {
    font-size: calc(16 * var(--basePixel));
    padding-top: calc(15 * var(--basePixel));
    padding-right: calc(20 * var(--basePixel));
  }
}
#thisPage .tyusyaku {
  display: flex;
}
#thisPage .tyusyaku > *:nth-child(1) {
  flex-shrink: 0;
}
#thisPage .tyusyaku > *:nth-child(2) {
  flex-grow: 1;
}
#thisPage .fadeup > * {
  opacity: 0;
  transform: translateY(100%);
  transition: all 1s ease;
}
#thisPage .fadeup.active > * {
  opacity: 1;
  transform: translateY(0);
}
#thisPage sup {
  font-size: 70%;
  opacity: 1 !important;
}
#thisPage #sec01 {
  position: relative;
  background-color: #780000;
  background-image: url(../img/img01_sm.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100% auto;
  padding-bottom: calc(95 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec01 {
    background-image: url(../img/img01_md.png);
    padding-bottom: calc(80 * var(--basePixel));
  }
}
@media (min-width: 1230px) {
  #thisPage #sec01 {
    background-image: url(../img/img01_lg.png);
    background-size: auto;
  }
}
#thisPage #sec01:before {
  background: url(../img/img04_sm.png) no-repeat center bottom/100% auto;
}
@media (min-width: 767px) {
  #thisPage #sec01:before {
    background-image: url(../img/img04_md.png);
  }
}
#thisPage #sec01 .container {
  position: relative;
}
#thisPage #sec01 .h1_sec01 {
  width: calc(603 * var(--basePixel));
  margin: calc(52 * var(--basePixel)) auto 0;
}
@media (min-width: 767px) {
  #thisPage #sec01 .h1_sec01 {
    width: calc(1116 * var(--basePixel));
    margin: calc(15 * var(--basePixel)) 0 0;
  }
}
#thisPage #sec01 .txt01 {
  font-size: calc(22 * var(--basePixel));
  margin-top: calc(400 * var(--basePixel));
  line-height: 1.7272727273;
  color: #ffffff;
}
@media (min-width: 767px) {
  #thisPage #sec01 .txt01 {
    margin-top: calc(495 * var(--basePixel));
    line-height: 1.6666666667;
    font-size: calc(12 * var(--basePixel));
  }
}
#thisPage #sec01 .h2_sec01 {
  font-size: calc(48 * var(--basePixel));
  color: #ffffff;
  margin-top: calc(45 * var(--basePixel));
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
}
#thisPage #sec01 .h2_sec01 strong {
  color: #c1121f;
  display: inline-block;
  line-height: 1;
  padding: calc(5 * var(--basePixel)) calc(10 * var(--basePixel)) calc(6.5 * var(--basePixel));
  margin: 0 calc(10 * var(--basePixel));
  background-color: #ffffff;
}
#thisPage #sec01 .h2_sec01 strong span {
  font-size: 130%;
}
#thisPage #sec01 .h3_sec01 {
  width: 100%;
}
#thisPage #sec01 .h3_sec01 img {
  width: 100%;
}
#thisPage #sec01 .graph01 {
  display: block;
  width: 100%;
  position: relative;
  background-color: #ffffff;
}
#thisPage #sec01 .graph01 img {
  display: block;
  width: 100%;
}
#thisPage #sec01 .graph01:before {
  right: 100%;
  transition: right 1.5s ease-in;
  background: url(../img/graph02_sm.svg) no-repeat left center/auto 100%;
}
@media (min-width: 767px) {
  #thisPage #sec01 .graph01:before {
    background: url(../img/graph02.svg) no-repeat left center/auto 100%;
  }
}
#thisPage #sec01 .graph01:after {
  opacity: 0;
  transition: opacity 1s ease 1.5s;
  background: url(../img/graph03_sm.svg) no-repeat left center/contain;
}
@media (min-width: 767px) {
  #thisPage #sec01 .graph01:after {
    background: url(../img/graph03.svg) no-repeat left center/auto 100%;
  }
}
#thisPage #sec01 .graph01.active:before {
  right: 0;
}
#thisPage #sec01 .graph01.active:after {
  opacity: 1;
}
#thisPage #sec02 {
  background: url(../img/img05_sm.png) no-repeat center/cover;
  padding: calc(100 * var(--basePixel)) 0;
}
@media (min-width: 767px) {
  #thisPage #sec02 {
    background-image: url(../img/img05_md.png);
  }
}
#thisPage #sec02 .h2_sec02 {
  position: relative;
  font-size: calc(48 * var(--basePixel));
  line-height: 1.4166666667;
  font-weight: 700;
  color: #ffffff;
  text-align: center;
  text-shadow: 3px 3px 5px #000000;
}
@media (min-width: 767px) {
  #thisPage #sec02 .h2_sec02 {
    font-size: calc(40 * var(--basePixel));
    line-height: 1.35;
  }
}
@media (min-width: 767px) {
  #thisPage #sec02 .h2_sec02 > span {
    font-size: 80%;
  }
}
#thisPage #sec02 .h2_sec02 > span.txt02 {
  font-size: 80%;
}
#thisPage #sec02 .point {
  display: flex;
  flex-direction: column;
  gap: calc(50 * var(--basePixel)) 0;
  margin-top: calc(50 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec02 .point {
    margin-top: calc(56 * var(--basePixel));
    flex-direction: row;
    justify-content: center;
    gap: 0 calc(32 * var(--basePixel));
  }
}
#thisPage #sec02 .point img {
  display: block;
  width: 100%;
}
#thisPage #sec02 .point > * {
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #sec02 .point > * {
    width: calc(298 * var(--basePixel));
  }
}
#thisPage #sec03 {
  background: url(../img/bg_point01_sm.png) no-repeat right top/cover;
}
@media (min-width: 767px) {
  #thisPage #sec03 {
    background: #f3f2f2;
    position: relative;
  }
  #thisPage #sec03:before {
    position: absolute;
    content: "";
    width: calc(478 * var(--basePixel));
    height: calc(369 * var(--basePixel));
    background: url(../img/bg_point01_md.png) no-repeat 0 0;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
#thisPage #sec03 .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  #thisPage #sec03 .container {
    max-width: 990px;
  }
}
@media (min-width: 767px) {
  #thisPage #sec03 .l_space04 {
    letter-spacing: 0.04em;
  }
}
#thisPage #sec03 .point {
  width: calc(132 * var(--basePixel));
  display: block;
  margin-left: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec03 .point {
    margin-left: 0;
  }
}
#thisPage #sec03 h2 {
  font-size: calc(48 * var(--basePixel));
  text-align: center;
  margin-top: calc(50 * var(--basePixel));
  font-weight: 700;
  line-height: 1.4166666667;
}
@media (min-width: 767px) {
  #thisPage #sec03 h2 {
    text-align: left;
    font-size: calc(40.08 * var(--basePixel));
    line-height: 1;
    margin-top: calc(-60 * var(--basePixel));
    margin-left: calc(168 * var(--basePixel));
  }
}
#thisPage #sec03 .senteikijun ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(30 * var(--basePixel)) calc(46 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec03 .senteikijun ul {
    gap: calc(30 * var(--basePixel));
  }
}
#thisPage #sec03 .senteikijun ul li {
  width: calc((100% - 46 * var(--basePixel)) / 2);
}
#thisPage #sec03 .senteikijun ul li:first-of-type {
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage #sec03 .senteikijun ul li {
    width: calc((100% - 30 * var(--basePixel)) / 2);
  }
  #thisPage #sec03 .senteikijun ul li:first-of-type {
    width: 100%;
  }
}
#thisPage #sec04 {
  background: url(../img/bg_point02_sm.png) repeat-y 0 0/100%;
  position: relative;
}
#thisPage #sec04:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 750/317;
  background: url(../img/bg_point02_02_sm.png) no-repeat 0 0/contain;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 767px) {
  #thisPage #sec04 {
    background: #ffffff;
  }
  #thisPage #sec04:before {
    position: absolute;
    content: "";
    width: calc(327 * var(--basePixel));
    height: calc(370 * var(--basePixel));
    background: url(../img/bg_point02_md.png) no-repeat 0 0;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
#thisPage #sec04 .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  #thisPage #sec04 .container {
    max-width: 990px;
  }
}
#thisPage #sec04 .point {
  width: calc(132 * var(--basePixel));
  display: block;
  margin-left: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .point {
    margin-left: 0;
  }
}
#thisPage #sec04 h2 {
  font-size: calc(48 * var(--basePixel));
  text-align: center;
  margin-top: calc(50 * var(--basePixel));
  font-weight: 700;
  line-height: 1.4166666667;
}
@media (min-width: 767px) {
  #thisPage #sec04 h2 {
    text-align: left;
    font-size: calc(40.08 * var(--basePixel));
    line-height: 1;
    margin-top: calc(-60 * var(--basePixel));
    margin-left: calc(168 * var(--basePixel));
  }
}
#thisPage #sec04 .top10_box {
  background-color: #ffffff;
  border: 2px solid #c09739;
  width: 100%;
  padding: calc(30 * var(--basePixel)) 0;
  margin-top: calc(50 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .top10_box {
    padding: calc(50 * var(--basePixel)) 0 calc(40 * var(--basePixel));
    margin-top: calc(30 * var(--basePixel));
  }
}
#thisPage #sec04 .top10_box .inner {
  width: calc(626 * var(--basePixel));
  margin: 0 auto;
}
@media (min-width: 767px) {
  #thisPage #sec04 .top10_box .inner {
    width: 88%;
  }
}
#thisPage #sec04 .top10_box .inner .t_ttl {
  font-size: calc(26 * var(--basePixel));
  width: 100%;
  height: calc(60 * var(--basePixel));
  background-color: rgba(192, 151, 57, 0.2);
  padding: 0 calc(15 * var(--basePixel)) 0 calc(23 * var(--basePixel));
  align-content: center;
}
@media (min-width: 767px) {
  #thisPage #sec04 .top10_box .inner .t_ttl {
    font-size: calc(20 * var(--basePixel));
    padding: 0 calc(30 * var(--basePixel)) 0 calc(23 * var(--basePixel));
  }
}
#thisPage #sec04 .top10_box .inner .t_ttl p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#thisPage #sec04 .top10_box .inner .t_ttl p span.icon {
  width: calc(30 * var(--basePixel));
  height: calc(30 * var(--basePixel));
  position: relative;
  border-radius: 50%;
  border: 1px solid #c09739;
}
#thisPage #sec04 .top10_box .inner .t_ttl p span.icon:before {
  position: absolute;
  content: "";
  width: calc(13 * var(--basePixel));
  height: calc(2 * var(--basePixel));
  background-color: #c09739;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
#thisPage #sec04 .top10_box .inner .t_ttl p span.icon::after {
  position: absolute;
  content: "";
  width: calc(2 * var(--basePixel));
  height: calc(13 * var(--basePixel));
  background-color: #c09739;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  opacity: 1;
  transition: 0.5s ease;
}
#thisPage #sec04 .top10_box .inner .t_ttl.open p span.icon::after {
  opacity: 0;
}
#thisPage #sec04 .top10_box .inner .hidebox .box01 {
  display: flex;
  flex-wrap: wrap;
  gap: calc(30 * var(--basePixel)) calc(40 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec04 .top10_box .inner .hidebox .box01 {
    gap: calc(30 * var(--basePixel));
  }
}
#thisPage #sec04 .top10_box .inner .hidebox .box01 li {
  width: calc((100% - 40 * var(--basePixel)) / 2);
}
#thisPage #sec04 .top10_box .inner .hidebox .box01 li:first-of-type {
  width: 100%;
}
#thisPage .img60_63 {
  display: flex;
  flex-wrap: wrap;
  gap: calc(50 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage .img60_63 {
    flex-wrap: nowrap;
    gap: calc(30 * var(--basePixel));
  }
}
#thisPage .img60_63 > div {
  width: 100%;
}
@media (min-width: 767px) {
  #thisPage .img60_63 > div {
    width: calc((100% - 30 * var(--basePixel)) / 2);
  }
}
#thisPage .shadow {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
  position: relative;
}
#thisPage .shadow::before {
  position: absolute;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  border: 2px solid #c1121f;
  top: 5px;
  left: 5px;
  z-index: -1;
}
#thisPage .shadow .bg_polygon {
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
}
@media (min-width: 767px) {
  #thisPage .shadow .bg_polygon {
    clip-path: polygon(30px 0, 100% 0, 100% calc(100% - 30px), calc(100% - 30px) 100%, 0 100%, 0 30px);
  }
}
#thisPage .img_shadow {
  filter: drop-shadow(5px 5px 10px rgba(0, 0, 0, 0.2));
}
#thisPage #sec05 {
  background: url(../img/bg_point03_sm.png) repeat-y 0 0/100%;
  position: relative;
}
#thisPage #sec05:before {
  position: absolute;
  content: "";
  width: 100%;
  aspect-ratio: 750/378;
  background: url(../img/bg_point03_02_sm.png) no-repeat 0 0/contain;
  top: 0;
  left: 0;
  z-index: 1;
}
@media (min-width: 767px) {
  #thisPage #sec05 {
    background: url(../img/bg_point03_md.png) repeat-y 0 0/100%;
  }
  #thisPage #sec05:before {
    position: absolute;
    content: "";
    width: 100%;
    aspect-ratio: 1440/448;
    background: url(../img/bg_point03_02_md.png) no-repeat 0 0;
    top: 0;
    left: 0;
    z-index: 1;
  }
}
#thisPage #sec05 .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  #thisPage #sec05 .container {
    max-width: 990px;
  }
}
#thisPage #sec05 .point {
  width: calc(132 * var(--basePixel));
  display: block;
  margin-left: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec05 .point {
    margin-left: 0;
  }
}
#thisPage #sec05 h2 {
  font-size: calc(48 * var(--basePixel));
  text-align: center;
  margin-top: calc(50 * var(--basePixel));
  font-weight: 700;
  line-height: 1.4166666667;
}
@media (min-width: 767px) {
  #thisPage #sec05 h2 {
    text-align: left;
    font-size: calc(40.08 * var(--basePixel));
    line-height: 1;
    margin-top: calc(-60 * var(--basePixel));
    margin-left: calc(168 * var(--basePixel));
  }
}
#thisPage #sec04 .shadow::before {
  border-color: #c09739;
}
#thisPage #sec06 {
  background: url(../img/bg_sec06_sm.png) no-repeat center center/cover;
  position: relative;
}
@media (min-width: 767px) {
  #thisPage #sec06 {
    background: url(../img/bg_sec06_md.png) no-repeat center center/cover;
  }
}
#thisPage #sec06 .container {
  position: relative;
  z-index: 2;
}
@media (min-width: 767px) {
  #thisPage #sec06 .container {
    max-width: 990px;
  }
}
#thisPage #sec06 h2 {
  font-size: calc(36 * var(--basePixel));
  text-align: center;
  font-weight: 500;
  line-height: 1.4166666667;
  color: #ffffff;
}
@media (min-width: 767px) {
  #thisPage #sec06 h2 {
    font-size: calc(32 * var(--basePixel));
    line-height: 1;
  }
}
#thisPage #sec06 ul {
  display: flex;
  flex-wrap: wrap;
  gap: calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #sec06 ul {
    flex-wrap: nowrap;
    gap: calc(50 * var(--basePixel));
  }
}
@media (min-width: 767px) {
  #thisPage #sec06 ul li {
    width: calc((100% - 50 * var(--basePixel)) / 2);
  }
}
@media (min-width: 767px) {
  #thisPage #sec06 a:hover {
    opacity: 0.75;
  }
}
@media (min-width: 767px) {
  #thisPage #disclaimer .container {
    max-width: 1260px;
  }
}
#thisPage #disclaimer .container .box {
  border: 1px solid #000000;
  width: 100%;
  padding: calc(20 * var(--basePixel)) calc(30 * var(--basePixel));
}
@media (min-width: 767px) {
  #thisPage #disclaimer .container .box {
    padding: calc(10 * var(--basePixel)) calc(40 * var(--basePixel));
  }
}
#thisPage #disclaimer .container .underline {
  text-decoration: underline;
}
#thisPage #disclaimer .container a {
  color: #333333 !important;
}
#thisPage .slideToggle {
  cursor: pointer;
}
#thisPage .hidebox {
  display: none;
}

.fixbtn {
  position: fixed;
  background-color: #333333;
  bottom: 0;
  left: 0;
  display: flex;
  padding: calc(30 * var(--basePixel)) calc(15 * var(--basePixel));
  gap: 0 calc(11 * var(--basePixel));
  z-index: 10;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
@media (min-width: 767px) {
  .fixbtn {
    position: fixed;
    background-color: transparent;
    flex-direction: column;
    left: auto;
    right: 0;
    bottom: auto;
    top: 50%;
    transform: translateY(-50%);
    gap: calc(5 * var(--basePixel)) 0;
    padding: 0;
  }
  .fixbtn a {
    transition: opacity 0.5s ease;
  }
  .fixbtn a:hover {
    opacity: 0.75;
  }
}
.fixbtn img {
  width: 100%;
}
.fixbtn > * {
  filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
  width: calc((100% - 11 * var(--basePixel)) / 2);
}
@media (min-width: 767px) {
  .fixbtn > * {
    width: calc(40 * var(--basePixel));
  }
}
@media (max-width: 767px) {
  .str-pagetop {
    bottom: 75px;
  }
  .fixbtn.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}
/*# sourceMappingURL=style.css.map */