@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@400;600;700&display=swap");
html {
  font-size: 62.5%;
  overflow-y: scroll;
}
@media screen and (max-width: 1100px) {
  html {
    font-size: calc(100vw * 10 / 1100);
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: calc(100vw * 10 / 375);
  }
}

*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, h5, h6, p, address, time,
ul, ol, li, dl, dt, dd,
table, th, td, img, figure, figcaption,
form, input, button, textarea, select {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-weight: normal;
  font-family: "メイリオ",Meiryo,"Hiragino Kaku Gothic Pro","ヒラギノ角ゴ Pro W3","ＭＳ Ｐゴシック",Arial,Verdana,sans-serif;
  word-wrap: break-word;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  color: #121212;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
}

select::-ms-expand {
  display: none;
}

button:hover {
  cursor: pointer;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.3s ease;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a img {
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
a:hover {
  opacity: .6;
  cursor: pointer;
}

img, object {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* ------------------------------
    base
------------------------------ */
body {
  color: #333;
  text-align: left;
  position: relative;
}

section {
  position: relative;
}

main {
  display: block;
}

.wrapper {
  overflow: hidden;
}

.wrap {
  width: 100%;
  max-width: 95rem;
  padding: 0;
  margin: 0 auto;
  position: relative;
}

p, th, td, dt, dd, li, input, button, textarea, label {
  font-size: 1.7rem;
  line-height: calc(30/17);
}
@media screen and (max-width: 767px) {
  p, th, td, dt, dd, li, input, button, textarea, label {
    font-size: 1.5rem;
  }
}

.flex {
  display: flex;
  justify-content: space-between;
}
.flex.reverse {
  flex-direction: row-reverse;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.tac {
  text-align: center;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.fwb {
  font-weight: 700;
}

.ft_oswald {
  font-family: 'Oswald', sans-serif;
}

.fixed {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.color_red1 {
  color: #ba1f25;
}

.color_red2 {
  color: #a2181e;
}

.color_red3 {
  color: #860001;
}

.color_wine {
  color: #600002;
}

.color_yel {
  color: #eecc52;
}

.color_yel2 {
  color: #f2d536;
}

.color_yel3 {
  color: #f0c458;
}

.highlight {
  background: linear-gradient(transparent 60%, #f3ea76 60%, #f3ea76 98%, transparent 98%);
}

.highlight2 {
  background: linear-gradient(transparent 45%, #ffd701 45%, #ffd701 98%, transparent 98%);
}

.udl {
  background: linear-gradient(transparent 88%, #121212 88%, #121212 92%, transparent 92%);
}

.udl_w {
  background: linear-gradient(transparent 88%, #fff 88%, #fff 92%, transparent 92%);
}

.mac .udl {
  border-bottom: 1px solid #121212;
  padding-bottom: .1em;
  background: none;
}

.mac .udl_w {
  border-bottom: 1px solid #fff;
  padding-bottom: .1em;
  background: none;
}

.preload *, .preload *::before, .preload *::after {
  transition: none !important;
}

@media screen and (min-width: 768px) {
  .fade {
    transition: opacity 0.3s ease;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .fade img {
    outline: 1px solid transparent;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .fade:hover {
    opacity: .6;
    cursor: pointer;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  body {
    min-width: inherit;
  }

  .wrap {
    width: 94%;
    padding: 0;
  }

  input, textarea, select, .select {
    font-size: 16px !important;
  }

  .udl, .mac .udl {
    background: none;
    border-bottom: 1px solid #0f0f0f;
    padding: .05em 0;
  }

  .udl_w, .mac .udl_w {
    background: none;
    border-bottom: 1px solid #fff;
    padding: .05em 0;
  }
}
/* ------------------------------
    responsive
------------------------------ */
@media screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf {
  *zoom: 1;
}
.cf:before {
  content: " ";
  display: table;
}
.cf:after {
  content: " ";
  display: table;
  clear: both;
}

.clear {
  clear: both;
}

/* ------------------------------
*  common
------------------------------ */
.contents_wrap {
  position: relative;
  width: 100%;
  max-width: 96rem;
  box-shadow: 0 0 4px 2px rgba(51, 51, 51, 0.3);
  background-color: #fff;
  margin: auto;
}

@media screen and (max-width: 767px) {
  .contents_wrap {
    width: 94%;
  }
}
/* ------------------------------
*  ttl
------------------------------ */
.ttl {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

/* ------------------------------
*  fv
------------------------------ */
.bg_wrap {
  background-color: #0e0e0e;
}

.fv {
  width: 100%;
  position: relative;
  margin: auto;
  background: url("../img/bg_fv_pc.png") no-repeat center top/cover;
}
.fv::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  top: 0;
}
@media screen and (min-width: 1680px) {
  .fv {
    background-size: 100% 100%;
  }
}
.fv .wrap {
  padding: 3.3rem 0 20.3rem;
}

.fv_ttl {
  margin: 0 auto;
  text-align: center;
  width: 87.3rem;
}

.fv_movie {
  margin: 3.4rem auto 0;
  text-align: center;
  width: 72.9rem;
  border: 0.3rem solid #fcf3b2;
}
.fv_movie iframe {
  border: 0;
  width: 100%;
  height: 100%;
  aspect-ratio: 64/36;
}

.fv_logo {
  width: 20rem;
  position: absolute;
  left: 3rem;
  top: 3rem;
}
@media screen and (min-width: 1440px) {
  .fv_logo {
    left: 8.4rem;
  }
}

@media screen and (max-width: 767px) {
  .fv {
    background: url("../img/bg_fv_sp.jpg") no-repeat center top/contain;
  }
  .fv::before {
    height: 0.25rem;
  }
  .fv .wrap {
    padding: 5rem 0 18rem;
  }

  .fv_ttl {
    width: 34.5rem;
  }

  .fv_movie {
    margin: 1.4rem auto 0;
    width: 34.6em;
    border-width: 2px;
  }

  .fv_logo {
    width: 10rem;
    left: 50%;
    transform: translateX(-50%);
    top: 1rem;
  }
}
/* ------------------------------
*  sec01
------------------------------ */
.sec01 {
  margin-top: -11rem;
}
.sec01 .inner p {
  color: #fff;
}
.sec01 .inner p + p {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec01 .inner p + p {
    margin-top: 5%;
  }
}
.sec01 .cont {
  position: relative;
  z-index: 3;
  width: 100%;
}
.sec01 .cont.cont01 {
  padding: 0 0.8rem;
}
.sec01 .cont.cont02 {
  padding: 0 0.8rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont02 {
    display: flex;
    flex-direction: column-reverse;
    z-index: 5;
  }
}
.sec01 .cont.cont02 .txt_box {
  width: 55.4rem;
  margin: 0 0 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont02 .txt_box {
    width: 100%;
    margin: 0 auto 5%;
  }
}
.sec01 .cont.cont02 .img_cont02_fig02 {
  position: absolute;
  left: -3rem;
  top: 0;
  width: 47rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont02 .img_cont02_fig02 {
    width: 80%;
    margin: 0 auto;
    position: relative;
    left: auto;
    top: auto;
  }
}
.sec01 .cont.cont03 {
  padding: 28.6rem 0.8rem 0;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont03 {
    padding-top: 38%;
  }
}
.sec01 .cont.cont03 .img_cont03_fig01 {
  position: absolute;
  left: 48%;
  transform: translateX(-50%);
  top: -12rem;
  width: 134.4rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont03 .img_cont03_fig01 {
    left: 50%;
    top: -18rem;
  }
  .sec01 .cont.cont03 .img_cont03_fig01 img {
    width: 100%;
  }
}
.sec01 .cont.cont03 .txt_box {
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont03 .txt_box {
    padding: 0;
  }
}
.sec01 .cont.cont04 {
  z-index: 4;
  padding: 0 0.8rem;
}
.sec01 .cont.cont05 {
  padding: 10rem 0 0;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont05 {
    display: flex;
    flex-direction: column;
    padding: 5rem 0.8rem 0;
  }
}
.sec01 .cont.cont05 .img_cont05_fig01 {
  position: absolute;
  right: -9.6rem;
  top: -10.2rem;
  width: 50rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont05 .img_cont05_fig01 {
    position: relative;
    right: auto;
    top: auto;
    width: 80%;
    margin: -18% auto -5%;
  }
}
.sec01 .cont.cont06 .txt_box {
  width: 50.4rem;
  margin: 0 0 0 auto;
  padding-top: 3.4rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont06 .txt_box {
    width: 100%;
    margin: 0 auto;
    padding: 0 0.8rem;
  }
}
.sec01 .cont.cont06 .img_cont06_fig01 {
  position: absolute;
  left: -6.8rem;
  top: 0;
  width: 58.5rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont06 .img_cont06_fig01 {
    position: relative;
    width: 60%;
    left: auto;
    margin: -5% auto;
  }
}
.sec01 .cont.cont07 {
  z-index: 5;
  padding: 6.4rem 1.9rem 0;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont07 {
    padding: 2rem 0.8rem 0;
  }
}
.sec01 .cont.cont07 .txt_box {
  width: 50.4rem;
  margin: 0 auto 4.6rem 0;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont07 .txt_box {
    width: 100%;
    margin-top: -5%;
    margin-bottom: 5%;
  }
}
.sec01 .cont.cont07 .img_cont07_fig01 {
  position: absolute;
  right: 2.8rem;
  top: 3.2rem;
  width: 35.9rem;
}
@media screen and (max-width: 767px) {
  .sec01 .cont.cont07 .img_cont07_fig01 {
    position: relative;
    right: auto;
    top: auto;
    width: 50%;
    margin: 0 auto;
  }
}
.sec01 .ttlwrap {
  position: relative;
}
.sec01 .ttlwrap.ttlwrap02 {
  margin-top: 3.4rem;
  margin-bottom: 3.4rem;
  height: 32rem;
  display: flex;
  align-items: center;
}
.sec01 .ttlwrap.ttlwrap02 .img_cont02_fig01 {
  position: absolute;
  right: -0.5rem;
  top: 62%;
  transform: translateY(-50%);
  width: 74.6rem;
}
@media screen and (max-width: 767px) {
  .sec01 .ttlwrap.ttlwrap02 {
    margin-top: 20%;
    margin-bottom: 8%;
    padding-top: 8%;
    height: auto;
  }
  .sec01 .ttlwrap.ttlwrap02 .img_cont02_fig01 {
    right: auto;
    left: 50%;
    top: -8rem;
    transform: translate(-50%, 0);
    width: 150%;
  }
}
.sec01 .ttlwrap.ttlwrap07 {
  padding-top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec01 .ttlwrap.ttlwrap07 {
    padding-top: 6.8rem;
  }
}
.sec01 .ttlwrap.ttlwrap07 .bg_sec01_ttl07 {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
}
@media screen and (min-width: 1600px) {
  .sec01 .ttlwrap.ttlwrap07 .bg_sec01_ttl07 {
    top: -5rem;
  }
}
.sec01 .ttlwrap.ttlwrap07 .bg_sec01_ttl07 img {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec01 .ttlwrap.ttlwrap07 .bg_sec01_ttl07 {
    top: 5%;
    width: 200%;
  }
}
.sec01 .ttl {
  position: relative;
  line-height: 1;
}
.sec01 .ttl.ttl01 {
  width: 85.8rem;
  margin: 0 auto 4.6rem;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl01 {
    width: 100%;
    margin: 0 auto 8%;
  }
}
.sec01 .ttl.ttl02 {
  width: 67.2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl02 {
    width: 90%;
    margin: 0 auto;
  }
}
.sec01 .ttl.ttl03 {
  width: 80.2rem;
  margin: 5.8rem auto 0;
  z-index: 4;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl03 {
    width: 100%;
    margin-top: 16%;
  }
}
.sec01 .ttl.ttl04 {
  width: 86.8rem;
  margin: 0 auto 6.2rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl04 {
    width: 100%;
    margin-bottom: 8%;
  }
}
.sec01 .ttl.ttl05 {
  width: 63.8rem;
  margin: 0 0 5.6rem -1rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl05 {
    width: 100%;
    margin: 0 auto;
  }
}
.sec01 .ttl.ttl06 {
  width: 82.2rem;
  margin: 5.8rem auto 0;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl06 {
    width: 100%;
    margin: 18% auto 0;
  }
}
.sec01 .ttl.ttl07 {
  width: 87.5rem;
  margin: 0 0 0 1rem;
  padding-top: 2rem;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl07 {
    width: 100%;
    margin: 0 auto;
    padding-top: 0;
  }
}
.sec01 .ttl.ttl08 {
  width: 83.9rem;
  margin: 0 auto;
  z-index: 5;
}
@media screen and (max-width: 767px) {
  .sec01 .ttl.ttl08 {
    width: 100%;
    margin: 0 auto;
  }
}
.sec01 .line_catch {
  width: 100%;
  margin: auto;
  position: relative;
  padding: 3.4rem 0 0;
  margin-bottom: -10rem;
}
@media screen and (max-width: 767px) {
  .sec01 .line_catch {
    padding-top: 6rem;
    margin-bottom: -2rem;
  }
}
.sec01 .line_catch .img {
  position: relative;
  z-index: 2;
  width: 95rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec01 .line_catch .img {
    width: 100%;
  }
}
.sec01 .line_catch .bg {
  width: 100vw;
  min-width: 160rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -23.8rem;
}
@media screen and (min-width: 1680px) {
  .sec01 .line_catch .bg {
    top: -15vw;
  }
}
.sec01 .line_catch .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec01 .line_catch .bg {
    min-width: inherit;
    width: 160%;
    top: -5vw;
  }
}
.sec01 .check_list {
  margin: 0 auto 4rem;
}
@media screen and (max-width: 767px) {
  .sec01 .check_list {
    margin-bottom: 8%;
  }
}
.sec01 .check_list li {
  position: relative;
  width: 100%;
  font-size: 2.4rem;
  line-height: 1.75;
  color: #121212;
  letter-spacing: -.065em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  border: 1px solid #c3933b;
  background: #fff;
  padding: .3em .3em .3em 2em;
}
@media screen and (max-width: 767px) {
  .sec01 .check_list li {
    font-size: 1.6rem;
    padding: .4em .3em .4em 2.2em;
  }
}
.sec01 .check_list li.wide {
  letter-spacing: -.025em;
}
.sec01 .check_list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_check.svg") no-repeat center center/contain;
  width: 3rem;
  height: 3rem;
  left: .5em;
  top: 0.6em;
}
@media screen and (max-width: 767px) {
  .sec01 .check_list li::before {
    width: 2rem;
    height: 2rem;
  }
}
.sec01 .check_list li + li {
  margin-top: 1.7rem;
}
@media screen and (min-width: 768px) {
  .sec01 .check_list + p {
    padding-left: 1em;
  }
}
.sec01 .coin_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  width: calc(100% + 2rem);
  gap: 3rem 0;
  margin: 4rem -1rem 6.4rem;
}
@media screen and (max-width: 767px) {
  .sec01 .coin_list {
    width: 100%;
    margin: 10% auto;
    gap: 2rem 0;
  }
}
.sec01 .coin_list li {
  position: relative;
  font-size: 3.2rem;
  line-height: 1.75;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #fff;
  letter-spacing: .01em;
  padding-left: 7.8rem;
}
.sec01 .coin_list li:nth-child(odd) {
  width: 45.8rem;
}
.sec01 .coin_list li:nth-child(even) {
  width: calc(100% - 45.8rem);
}
@media screen and (max-width: 767px) {
  .sec01 .coin_list li {
    font-size: 2rem;
    padding-left: 5.2rem;
    line-height: 1.5;
    width: 100% !important;
  }
}
.sec01 .coin_list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_coin.png") no-repeat center center/contain;
  width: 6.5rem;
  height: 6.4rem;
  left: 0;
  top: 0;
}
@media screen and (max-width: 767px) {
  .sec01 .coin_list li::before {
    width: 4.1rem;
    height: 4rem;
    top: -0.3em;
  }
}
.sec01 .txt_box {
  position: relative;
}

/* ------------------------------
*  sec02
------------------------------ */
.sec02 {
  background: #f3efe6;
  padding-bottom: 13.7rem;
  /*
  .txt_box{
  	&.box01{
  		margin-bottom: 8rem;
  	}
  }
  */
}
@media screen and (max-width: 767px) {
  .sec02 {
    padding-bottom: 10%;
  }
}
.sec02::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.sec02 .inner p + p {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec02 .inner {
    padding: 0 0.8rem;
  }
  .sec02 .inner p + p {
    margin-top: 5%;
  }
}
.sec02 .ttl {
  position: relative;
  width: 83.9rem;
  margin: 0 auto;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .sec02 .ttl {
    width: 90%;
  }
}
.sec02 .ttl_head {
  position: relative;
  width: 100vw;
  min-width: 160rem;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 19rem;
  padding-bottom: 12.5rem;
}
@media screen and (max-width: 767px) {
  .sec02 .ttl_head {
    min-width: inherit;
    padding-top: 10rem;
    padding-bottom: 10%;
  }
}
.sec02 .ttl_head .bg {
  width: 100vw;
  min-width: 160rem;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: -2.6rem;
}
@media screen and (min-width: 1680px) {
  .sec02 .ttl_head .bg {
    top: -2vw;
  }
}
.sec02 .ttl_head .bg img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .sec02 .ttl_head .bg {
    min-width: inherit;
    width: 220%;
  }
}
.sec02 .ttl_head + .txt_box {
  padding: 0 3rem 5.2rem;
}
@media screen and (max-width: 767px) {
  .sec02 .ttl_head + .txt_box {
    padding: 0 0 12%;
  }
}
.sec02 .cont {
  position: relative;
  margin: 0 auto;
}
.sec02 .cont_head {
  margin: 0 auto 6rem;
}
@media screen and (max-width: 767px) {
  .sec02 .cont_head {
    margin-bottom: 8%;
  }
}
.sec02 .cont_body .txt_box {
  padding: 0 2rem;
}
@media screen and (max-width: 767px) {
  .sec02 .cont_body .txt_box {
    padding: 0;
  }
}
.sec02 .cont + .cont {
  margin-top: 12.3rem;
}
@media screen and (max-width: 767px) {
  .sec02 .cont + .cont {
    margin-top: 15%;
  }
}
.sec02 .cont.cont02 .subttl01 {
  padding-top: 9rem;
}
@media screen and (max-width: 767px) {
  .sec02 .cont.cont02 .subttl01 {
    padding-top: 4.2rem;
  }
}
.sec02 .subttl01 {
  position: relative;
  padding-top: 4rem;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01 {
    padding-top: 2rem;
  }
}
.sec02 .subttl01::before, .sec02 .subttl01::after {
  position: absolute;
  content: "";
  background: url("../img/img_frame_sec02.png") no-repeat center center/contain;
  width: 23.4rem;
  height: 17rem;
  top: 0;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01::before, .sec02 .subttl01::after {
    width: 9.2rem;
    height: 6.7rem;
  }
}
.sec02 .subttl01::before {
  left: 0;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01::before {
    left: -0.8rem;
  }
}
.sec02 .subttl01::after {
  right: 0;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01::after {
    right: -0.8rem;
  }
}
.sec02 .subttl01 .txt01,
.sec02 .subttl01 .txt02 {
  position: relative;
  z-index: 2;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #0f0f0f;
  display: block;
  text-align: center;
}
.sec02 .subttl01 .txt01 {
  font-size: 4.8rem;
  line-height: calc(60/48);
  letter-spacing: -.03em;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01 .txt01 {
    font-size: 1.9rem;
  }
}
.sec02 .subttl01 .txt02 {
  font-size: 7.9rem;
  line-height: calc(60/48);
  transform: scale(0.96, 1);
  letter-spacing: -.06em;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl01 .txt02 {
    font-size: 3rem;
    margin-top: .2em;
  }
}
.sec02 .subttl02 {
  position: relative;
  width: 82.6rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 4.34rem;
  color: #600002;
  letter-spacing: -.03em;
  text-align: center;
  border-top: 1px solid #9e7413;
  border-bottom: 1px solid #9e7413;
  margin: 3rem auto -1rem;
}
@media screen and (max-width: 767px) {
  .sec02 .subttl02 {
    width: 100%;
    font-size: 2.1rem;
    line-height: 1.25;
    padding: .3em 0 .4em;
    margin: 1.1rem auto 1rem;
  }
}
.sec02 .head_txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  color: #0f0f0f;
  font-size: 3rem;
  line-height: calc(36/30);
  letter-spacing: -.025em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .sec02 .head_txt {
    font-size: 1.7rem;
  }
}
.sec02 .imgmain {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .sec02 .imgmain {
    width: 100% !important;
    margin: 5% auto !important;
  }
}
.sec02 .imgmain.img01 {
  width: 84.2rem;
  margin-top: 6.5rem;
  margin-bottom: 3rem;
}
.sec02 .imgmain.img02 {
  width: 83rem;
  margin-top: -2.4rem;
  margin-bottom: 4.4rem;
}
.sec02 .imgmain.img03 {
  width: 83.8rem;
  margin-top: 6.5rem;
  margin-bottom: 3.6rem;
}
.sec02 .imgmain.img04 {
  width: 83.7rem;
  margin-top: -2.6rem;
  margin-bottom: 4.2rem;
}
@media screen and (max-width: 767px) {
  .sec02 .graph_wrap {
    width: 100%;
    overflow-y: auto;
    padding-bottom: 1rem;
  }
}
.sec02 .graph {
  width: 91.6rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .sec02 .graph {
    width: 60rem;
  }
  .sec02 .graph img {
    width: 100%;
  }
}
.sec02 .tbl {
  width: 91.6rem;
  margin: 6.8rem auto 4.5rem;
}
@media screen and (max-width: 767px) {
  .sec02 .tbl {
    width: 100%;
    margin: 8% auto 3%;
  }
}
.sec02 .tbl_ttl {
  font-size: 2.4rem;
  letter-spacing: .01em;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 767px) {
  .sec02 .tbl_ttl {
    font-size: 1.7rem;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .sec02 .tbl_wrap {
    width: 100%;
    overflow-y: auto;
    padding-bottom: 1rem;
  }
}
.sec02 .tbl_inner {
  width: 100%;
  border-radius: 0.2rem;
  border: 0.2rem solid #cfb98d;
}
@media screen and (max-width: 767px) {
  .sec02 .tbl_inner {
    border-width: 1px;
    width: 60rem;
  }
}
.sec02 .tbl table {
  border-collapse: collapse;
  width: 100%;
}
.sec02 .tbl thead {
  background: #002541;
}
.sec02 .tbl thead th {
  color: #fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.sec02 .tbl thead th:nth-child(1) {
  width: 32%;
}
.sec02 .tbl thead th:nth-child(2) {
  width: 35%;
}
.sec02 .tbl thead th:nth-child(3) {
  width: 33%;
}
@media screen and (max-width: 767px) {
  .sec02 .tbl thead th {
    font-size: 1.7rem;
    padding: .3em 0;
  }
}
.sec02 .tbl tbody th, .sec02 .tbl tbody td {
  text-align: center;
  font-size: 2.29rem;
  color: #002541;
  letter-spacing: .01em;
  padding: .15em 0 .1em;
}
@media screen and (max-width: 767px) {
  .sec02 .tbl tbody th, .sec02 .tbl tbody td {
    font-size: 1.6rem;
    padding: .5em 0 .4em;
  }
}
.sec02 .tbl tbody td:nth-child(2) {
  border-left: 1px solid #ceb78a;
  border-right: 1px solid #ceb78a;
}
.sec02 .tbl tbody tr:nth-child(even) {
  background: #f1eaea;
}
.sec02 .tbl tbody tr:nth-child(odd) {
  background: #fff;
}
.sec02 .tbl tbody tr:not(:last-child) {
  border-bottom: 1px solid #5a0001;
}

/* ------------------------------
*  sec03
------------------------------ */
.sec03 {
  background: url("../img/bg_sec03.jpg") no-repeat center top/cover;
  padding: 6.4rem 0 16.2rem;
}
@media screen and (max-width: 767px) {
  .sec03 {
    padding: 8% 0 15%;
  }
}
.sec03::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.sec03 .contents_wrap {
  padding: 7.4rem 3.8rem 11rem;
}
.sec03 .contents_wrap::before, .sec03 .contents_wrap::after {
  position: absolute;
  content: "";
  background: url("../img/img_frame_sec03.png") no-repeat center center/contain;
  width: 9.2rem;
  height: 9.3rem;
  top: 2.2rem;
}
.sec03 .contents_wrap::before {
  left: 1.3rem;
}
.sec03 .contents_wrap::after {
  right: 1.3rem;
  transform: scale(-1, 1);
}
.sec03 .contents_wrap p {
  letter-spacing: .01em;
}
.sec03 .contents_wrap p + p {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .sec03 .contents_wrap {
    padding: 8% 3%;
  }
  .sec03 .contents_wrap::before, .sec03 .contents_wrap::after {
    width: 4.6rem;
    height: 4.7rem;
    top: 1rem;
  }
  .sec03 .contents_wrap::before {
    left: 1rem;
  }
  .sec03 .contents_wrap::after {
    right: 1rem;
  }
  .sec03 .contents_wrap p + p {
    margin-top: 5%;
  }
}
.sec03 .ttl {
  position: relative;
  font-size: 5.8rem;
  letter-spacing: -.07em;
  line-height: calc(72/60);
  white-space: nowrap;
  margin: 0 auto 7.4rem;
}
.sec03 .ttl::before, .sec03 .ttl::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1rem;
  border-bottom: 1px double #9e7413;
  left: 50%;
  transform: translateX(-50%);
}
.sec03 .ttl::before {
  bottom: -2rem;
}
.sec03 .ttl::after {
  bottom: -2.6rem;
}
@media screen and (max-width: 767px) {
  .sec03 .ttl {
    font-size: 2.6rem;
    line-height: 1.25;
    white-space: normal;
    margin-bottom: 12%;
  }
  .sec03 .ttl::before {
    bottom: -1.6rem;
  }
  .sec03 .ttl::after {
    bottom: -2rem;
  }
}
.sec03 .txt_box {
  gap: 0 4rem;
  margin-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .sec03 .txt_box {
    flex-direction: column;
    align-items: center;
    gap: 3.5rem 0;
    margin-bottom: 5%;
  }
}
.sec03 .img.imgmain {
  width: 34.8rem;
  flex-shrink: 0;
}
.sec03 .img.imgmain figcaption {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: .01em;
  text-align: center;
  color: #040603;
  padding-top: 3rem;
}
.sec03 .img.imgmain .lg {
  position: relative;
  font-size: 4rem;
  margin-left: 2rem;
  top: .1em;
}
@media screen and (max-width: 767px) {
  .sec03 .img.imgmain {
    width: 50%;
    margin: 0 auto;
  }
  .sec03 .img.imgmain figcaption {
    font-size: 1.7rem;
    padding-top: 1.5rem;
    width: calc(100% + 10rem);
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .sec03 .img.imgmain .lg {
    font-size: 2.2rem;
  }
}
.sec03 .media {
  display: flex;
  justify-content: space-between;
  width: 81.3rem;
  margin: 5.5rem auto 4.5rem;
}
.sec03 .media .img_media01 {
  width: 24rem;
}
.sec03 .media .img_media02 {
  width: 23rem;
}
.sec03 .media .img_media03 {
  width: 23.4rem;
}
@media screen and (max-width: 767px) {
  .sec03 .media {
    width: 100%;
    margin: 8% auto 5%;
  }
  .sec03 .media .img {
    width: 30% !important;
  }
  .sec03 .media .img img {
    height: 14.5rem;
  }
}
.sec03 .fig {
  display: flex;
  justify-content: space-between;
  width: 81.3rem;
  margin: 0 auto 5.5rem;
}
.sec03 .fig .img_fig01 {
  width: 52.2rem;
}
.sec03 .fig .img_fig02 {
  width: 24.3rem;
}
@media screen and (max-width: 767px) {
  .sec03 .fig {
    flex-direction: column;
    align-items: center;
    gap: 2rem 0;
    width: 100%;
    margin: 6% auto 8%;
  }
  .sec03 .fig .img_fig01 {
    width: 86%;
  }
  .sec03 .fig .img_fig02 {
    width: 50%;
    max-width: 18rem;
  }
}

/* ------------------------------
*  sec04
------------------------------ */
.sec04 {
  background: url("../img/bg_sec04.jpg") no-repeat center top/cover;
  padding: 0 0 9rem;
}
@media screen and (max-width: 767px) {
  .sec04 {
    padding-bottom: 8%;
  }
}
.sec04::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.sec04 .contents_wrap {
  padding: 7.5rem 3.5rem 13.4rem;
  margin-top: -6.3rem;
}
.sec04 .contents_wrap p:not([class]) {
  letter-spacing: .01em;
}
.sec04 .contents_wrap p:not([class]) + p:not([class]) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .sec04 .contents_wrap {
    padding: 6.5% 3%;
    margin-top: -1rem;
  }
  .sec04 .contents_wrap p:not([class]) + p:not([class]) {
    margin-top: 5%;
  }
}
.sec04 .ttl {
  position: relative;
  width: 65.1rem;
  margin: 0 auto 1.4rem;
  top: -6.2rem;
}
.sec04 .ttl::before, .sec04 .ttl::after {
  position: absolute;
  content: "";
  background: url("../img/img_frame_sec04.png") no-repeat center center/contain;
  width: 13.1rem;
  height: 13.5rem;
  top: 8rem;
}
.sec04 .ttl::before {
  left: -17rem;
}
.sec04 .ttl::after {
  right: -15rem;
  transform: scale(-1, 1);
}
@media screen and (max-width: 767px) {
  .sec04 .ttl {
    width: 80%;
    top: -3.1rem;
    margin-bottom: 0;
  }
  .sec04 .ttl::before, .sec04 .ttl::after {
    width: 5.2rem;
    height: 5.4rem;
    top: 4rem;
  }
  .sec04 .ttl::before {
    left: -3rem;
  }
  .sec04 .ttl::after {
    right: -3rem;
  }
}
.sec04 .subttl {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  font-size: 6.2rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  height: 17rem;
}
.sec04 .subttl::before {
  position: absolute;
  content: "";
  background: url("../img/bg_subttl.png") no-repeat center center/contain;
  width: 45.9rem;
  height: 17rem;
  left: 50%;
  transform: translateX(-50%);
  top: -6.5rem;
}
.sec04 .subttl.subttl01 {
  margin-top: 12.6rem;
  margin-bottom: -4rem;
}
.sec04 .subttl.subttl02 {
  margin-top: 10rem;
  margin-bottom: -2.8rem;
}
@media screen and (max-width: 767px) {
  .sec04 .subttl {
    font-size: 2.8rem;
    height: 10rem;
  }
  .sec04 .subttl::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 45.9/17;
    top: -4.2rem;
  }
  .sec04 .subttl.subttl01 {
    margin-top: 20%;
    margin-bottom: -2rem;
  }
  .sec04 .subttl.subttl02 {
    margin-top: 25%;
    margin-bottom: -2rem;
  }
}
@media screen and (max-width: 767px) {
  .sec04 .txt_box {
    flex-direction: column;
    align-items: center;
    gap: 2rem 0;
  }
}
.sec04 .txt_main {
  font-size: 6rem;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  letter-spacing: -.025em;
  margin-top: 2.8rem;
  margin-bottom: 1.8rem;
}
@media screen and (max-width: 767px) {
  .sec04 .txt_main {
    font-size: 2.4rem;
    margin-top: 8%;
    margin-bottom: 5%;
  }
}
.sec04 .img {
  position: relative;
  flex-shrink: 0;
}
.sec04 .img.fig01 {
  width: 31.7rem;
  left: -0.8rem;
}
.sec04 .img.fig02 {
  width: 30.9rem;
  right: -2rem;
}
@media screen and (max-width: 767px) {
  .sec04 .img {
    width: 65% !important;
    left: auto !important;
    right: auto !important;
    margin: 0 auto;
  }
}
.sec04 .check_list.list01 {
  padding-top: 3.2rem;
}
.sec04 .check_list.list02 {
  padding-top: 5.6rem;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .sec04 .check_list {
    padding: 0 !important;
  }
}
.sec04 .check_list li {
  position: relative;
  width: 100%;
  font-size: 2.35rem;
  line-height: calc(36/24);
  color: #121212;
  letter-spacing: -.05em;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  padding: 0 0 0 2.2em;
}
@media screen and (max-width: 767px) {
  .sec04 .check_list li {
    font-size: 1.7rem;
    padding-left: 1.8em;
  }
}
.sec04 .check_list li::before {
  position: absolute;
  content: "";
  background: url("../img/icn_check.svg") no-repeat center center/contain;
  width: 3rem;
  height: 3rem;
  left: .5em;
  top: .1em;
}
@media screen and (max-width: 767px) {
  .sec04 .check_list li::before {
    width: 2rem;
    height: 2rem;
    left: 0;
  }
}
.sec04 .check_list li.nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .sec04 .check_list li.nowrap {
    white-space: normal;
  }
}
.sec04 .check_list li.indent {
  text-indent: -1em;
  padding-left: 2.7em;
}
.sec04 .check_list li + li {
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .sec04 .check_list li + li {
    margin-top: 1rem;
  }
}
.sec04 .check_list + p {
  padding-left: 1em;
}

/* ------------------------------
*  sec05
------------------------------ */
.sec05::before {
  position: absolute;
  content: "";
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.sec05_head {
  background: #5a0002;
  height: 24.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sec05_head .ttl {
  width: 38.2rem;
}
@media screen and (max-width: 767px) {
  .sec05_head {
    height: auto;
    padding: 5% 0;
  }
  .sec05_head .ttl {
    width: 60%;
  }
}
.sec05_body {
  background: url("../img/bg_sec05.jpg") no-repeat center top/cover;
  padding: 4.2rem 0 12.5rem;
}
@media screen and (max-width: 767px) {
  .sec05_body {
    padding: 10% 0 16%;
  }
}
.sec05 .voice {
  position: relative;
  width: 100%;
  max-width: 93.4rem;
  box-shadow: 0px 4px 6px -2px rgba(86, 86, 79, 0.75);
  background-color: #fff;
  margin: auto;
  border: 3px solid #d4b94a;
  padding: 5.2rem 3.8rem 4.6rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice {
    padding: 9.2% 3% 6.5%;
  }
}
.sec05 .voice::before {
  position: absolute;
  content: "";
  background: url("../img/img_sec05_voice.png") no-repeat center center/contain;
  width: 22.8rem;
  height: 4.8rem;
  left: 50%;
  transform: translateX(-50%);
  top: -2.5rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice::before {
    width: 14rem;
    height: 2.9rem;
    top: -1.5rem;
  }
}
.sec05 .voice_head {
  margin: 0 auto 4.2rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice_head {
    margin-bottom: 6.5%;
  }
}
.sec05 .voice_body p + p {
  margin-top: 2.8rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice_body p + p {
    margin-top: 5%;
  }
}
.sec05 .voice_ttl {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  line-height: calc(50/40);
  letter-spacing: -.025em;
  font-weight: 700;
  margin-bottom: 5.2rem;
}
.sec05 .voice_ttl::before {
  position: absolute;
  content: "";
  background: url("../img/line_sec05.png") no-repeat center center/contain;
  width: 54.7rem;
  height: 1.2rem;
  left: 50%;
  transform: translateX(-50%);
  bottom: -3.4rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice_ttl {
    font-size: 2rem;
    margin-bottom: 4rem;
  }
  .sec05 .voice_ttl::before {
    width: 32.5rem;
    height: 0.7rem;
    bottom: -2.5rem;
  }
}
.sec05 .voice_name {
  font-family: "Noto Serif JP", serif;
  font-size: 3rem;
  line-height: calc(48/30);
  letter-spacing: -.025em;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .sec05 .voice_name {
    font-size: 1.7rem;
  }
}
.sec05 .voice + .voice {
  margin-top: 9rem;
}
@media screen and (max-width: 767px) {
  .sec05 .voice + .voice {
    margin-top: 10%;
  }
}

/* ------------------------------
*  sec06
------------------------------ */
.sec06 {
  background: url("../img/bg_sec06.jpg") no-repeat center top/cover;
  padding: 4.8rem 0 10.7rem;
}
@media screen and (max-width: 767px) {
  .sec06 {
    padding: 12% 0 8%;
  }
}
.sec06::before, .sec06::after {
  position: absolute;
  content: "";
}
.sec06::before {
  background: url("../img/line_gold.png") repeat-x;
  width: 100%;
  height: 0.5rem;
  left: 0;
  bottom: 0;
}
.sec06::after {
  background: url("../img/ttl_sec06_sub.png") no-repeat center center/contain;
  width: 34.2rem;
  height: 6.8rem;
  left: 50%;
  transform: translateX(-50%);
  top: -3.65rem;
}
@media screen and (max-width: 767px) {
  .sec06::after {
    width: 21rem;
    height: 4.2rem;
    top: -2.3rem;
  }
}
.sec06 .ttl {
  width: 87rem;
  margin: 0 auto 4.2rem;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .sec06 .ttl {
    width: 92%;
    margin-bottom: 6.5%;
  }
}
.sec06 .subttl {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  font-size: 6.2rem;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  height: 17rem;
  margin-top: 16.8rem;
  margin-bottom: -2.5rem;
}
.sec06 .subttl::before {
  position: absolute;
  content: "";
  background: url("../img/bg_subttl.png") no-repeat center center/contain;
  width: 45.9rem;
  height: 17rem;
  left: 50%;
  transform: translateX(-50%);
  top: -6.5rem;
}
@media screen and (max-width: 767px) {
  .sec06 .subttl {
    font-size: 2.8rem;
    height: 10rem;
    margin-top: 25%;
    margin-bottom: -2rem;
  }
  .sec06 .subttl::before {
    width: 100%;
    height: 100%;
    aspect-ratio: 45.9/17;
    top: -4.2rem;
  }
}
.sec06 .txt_main {
  font-size: 4.8rem;
  line-height: calc(60/48);
  font-weight: 700;
  color: #850000;
  font-family: "Noto Serif JP", serif;
  letter-spacing: -.075em;
  margin-top: 9.6rem;
  margin-bottom: 7.8rem;
}
@media screen and (max-width: 767px) {
  .sec06 .txt_main {
    font-size: 2.4rem;
    margin-top: 15%;
    margin-bottom: 8%;
  }
}
.sec06 .contents_wrap {
  border: 3px solid #9c7e21;
  border-radius: 3px;
  max-width: 96.3rem;
  padding: 14.5rem 3.8rem 10rem;
}
.sec06 .contents_wrap::before, .sec06 .contents_wrap::after {
  position: absolute;
  content: "";
  background: url("../img/img_frame_sec06.png") no-repeat center center/contain;
  width: 12.1rem;
  height: 8.8rem;
  top: 1.3rem;
}
.sec06 .contents_wrap::before {
  left: 1.3rem;
}
.sec06 .contents_wrap::after {
  right: 1.3rem;
  transform: scale(-1, 1);
}
.sec06 .contents_wrap p:not([class]) {
  letter-spacing: .01em;
}
.sec06 .contents_wrap p:not([class]) + p:not([class]) {
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .sec06 .contents_wrap {
    padding: 16.5% 3% 12%;
  }
  .sec06 .contents_wrap::before, .sec06 .contents_wrap::after {
    width: 6.0rem;
    height: 4.4rem;
    top: 1rem;
  }
  .sec06 .contents_wrap::before {
    left: 1rem;
  }
  .sec06 .contents_wrap::after {
    right: 1rem;
  }
  .sec06 .contents_wrap p:not([class]) + p:not([class]) {
    margin-top: 5%;
  }
}
.sec06 .cont::before {
  position: absolute;
  content: "";
  background: url("../img/line_sec06.png") no-repeat center center/contain;
  width: 43.1rem;
  height: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  top: 5rem;
}
@media screen and (max-width: 767px) {
  .sec06 .cont {
    flex-direction: column;
    align-items: center;
    gap: 3.6rem 0;
  }
  .sec06 .cont::before {
    width: 24rem;
    height: 0.9rem;
    top: 3rem;
  }
}
.sec06 .img.imgmain {
  width: 27.8rem;
  flex-shrink: 0;
  margin-right: 0.7rem;
}
.sec06 .img.imgmain figcaption {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: .01em;
  text-align: center;
  color: #040603;
  padding-top: 2.6rem;
  width: calc(100% + 4rem);
  margin-left: -2rem;
  margin-right: -2rem;
}
.sec06 .img.imgmain .lg {
  position: relative;
  font-size: 4rem;
  margin-left: 2rem;
  top: .1em;
}
@media screen and (max-width: 767px) {
  .sec06 .img.imgmain {
    width: 50%;
    margin: 0 auto;
  }
  .sec06 .img.imgmain figcaption {
    font-size: 1.7rem;
    padding-top: 1.5rem;
    width: calc(100% + 10rem);
    margin-left: -5rem;
    margin-right: -5rem;
  }
  .sec06 .img.imgmain .lg {
    font-size: 2.2rem;
  }
}
.sec06 .num_list {
  width: 54.4rem;
}
@media screen and (max-width: 767px) {
  .sec06 .num_list {
    width: 100%;
  }
}
.sec06 .num_list li {
  position: relative;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  color: #0f0f0f;
  font-size: 3rem;
  line-height: calc(48/30);
  padding-left: 6.6rem;
  border-bottom: 1px solid #001532;
  padding-bottom: 1.8rem;
}
.sec06 .num_list li::before {
  position: absolute;
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  left: 0;
  top: .1em;
  width: 4.6rem;
  height: 4.6rem;
}
.sec06 .num_list li + li {
  margin-top: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec06 .num_list li {
    font-size: 1.7rem;
    padding-left: 4.2rem;
    padding-bottom: 1.4rem;
  }
  .sec06 .num_list li::before {
    top: 0;
    width: 3rem;
    height: 3rem;
  }
  .sec06 .num_list li + li {
    margin-top: 1.2rem;
  }
}
.sec06 .num_list li:nth-child(1)::before {
  background-image: url("../img/icn_num01.png");
}
@media screen and (min-width: 768px) {
  .sec06 .num_list li:nth-child(2) {
    padding-bottom: 1rem;
  }
}
.sec06 .num_list li:nth-child(2)::before {
  background-image: url("../img/icn_num02.png");
}
.sec06 .num_list li:nth-child(3)::before {
  background-image: url("../img/icn_num03.png");
}
.sec06 .num_list li:nth-child(4)::before {
  background-image: url("../img/icn_num04.png");
}
.sec06 .num_list li:nth-child(5)::before {
  background-image: url("../img/icn_num05.png");
}
.sec06 .num_list li:nth-child(6)::before {
  background-image: url("../img/icn_num06.png");
}
.sec06 .sign {
  display: flex;
  justify-content: flex-end;
  margin-top: 8.8rem;
}
@media screen and (max-width: 767px) {
  .sec06 .sign {
    margin-top: 8%;
  }
}
.sec06 .sign_txt {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1.25;
  letter-spacing: .01em;
  text-align: center;
  color: #040603;
}
.sec06 .sign_txt .lg {
  position: relative;
  font-size: 4rem;
  margin-left: 2rem;
  top: .1em;
}
@media screen and (max-width: 767px) {
  .sec06 .sign_txt {
    font-size: 1.7rem;
    padding-top: 1.5rem;
  }
  .sec06 .sign_txt .lg {
    font-size: 2.2rem;
  }
}
.sec06 .contactform {
  margin-top: 6rem;
}
@media screen and (max-width: 767px) {
  .sec06 .contactform {
    padding: 0 0.8rem;
  }
}
.sec06 .contactform .content_title h2 {
  font-size: 3.4rem;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 767px) {
  .sec06 .contactform .content_title h2 {
    font-size: 3.2rem;
  }
}
.sec06 .contactform .form_input_submit input {
  width: 100%;
  background: #2563eb;
  color: #fff;
  padding: 1.5rem 1.25rem;
  border-radius: 10px;
  font-weight: bold;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.3s;
  border: none;
  font-family: "Noto Serif JP", serif;
  max-width: 60rem;
}
@media screen and (max-width: 767px) {
  .sec06 .contactform .form_input_submit input {
    max-width: inherit;
  }
}
.sec06 .contactform form.myForm div.submit {
  margin-top: 4rem;
}
.sec06 .contactform .content_form .input_unit {
  width: 100% !important;
}
@media screen and (max-width: 800px) {
  .sec06 .contactform .my_left.my_column {
    padding: 1rem 0 0 !important;
  }
  .sec06 .contactform .my_column.my_right {
    width: 100% !important;
    padding: 0 !important;
  }
  .sec06 .contactform .my_column.my_right input {
    width: 100% !important;
  }
}

/* ------------------------------
*  footer
------------------------------ */
.footer {
  position: relative;
  text-align: center;
  background: #0e0e0e;
  padding: 4.5rem 0 5.2rem;
}
.footer * {
  color: #fff;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: -.05em;
  line-height: 1.75;
}
.footer .logo {
  width: 20rem;
  line-height: 1;
  margin: 0 auto;
}
.footer .link {
  display: flex;
  justify-content: center;
  margin: 3.6rem auto 2rem;
}
.footer .link li {
  position: relative;
  display: inline-block;
}
.footer .link li:nth-child(n + 2)::before {
  position: absolute;
  content: "";
  background: #fff;
  width: 2px;
  height: calc(100% - 0.8em);
  left: -1em;
  top: .4em;
}
.footer .link li + li {
  margin-left: 2em;
}

@media screen and (max-width: 767px) {
  .footer {
    padding: 8% 0;
  }
  .footer * {
    font-size: 3.2vw;
  }
  .footer .logo {
    width: 100%;
    max-width: 20rem;
  }
  .footer .link {
    margin: 3.5% auto 3%;
  }
  .footer .link li:nth-child(n + 2)::before {
    left: -1.6em;
    top: .5em;
  }
  .footer .link li + li {
    margin-left: 3.2em;
  }
}
/* ------------------------------
*  fixbtn
------------------------------ */
.fixbtn {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  text-align: center;
  padding: 10px 0;
  max-width: 100%;
  z-index: 10;
}

@media screen and (max-width: 767px) {
  .fixbtn {
    padding: 3% 0;
  }
  .fixbtn .btn {
    width: 90.5%;
    margin: auto;
  }
}
/*--エラー用--*/
p.error {
  font-weight: 600;
  color: #ed1c24;
  font-size: 1.4rem !important;
  padding-top: 5px;
}

@media screen and (max-width: 767px) {
  /*--エラー用--*/
  p.error {
    font-size: 3vw !important;
    padding-top: 1vw;
  }
}
/* ------------------------------
*  thanks
------------------------------ */
.thanks {
  background: #fff;
  min-width: inherit;
}

.thanksWrap .wrap {
  width: 100%;
  margin: 0 auto;
  padding: 50px 0 0;
}

.thanksWrap .inner {
  padding: 1em 1em 3em;
  margin: 0 auto;
}

.thanksWrap .inner p {
  text-align: center;
}

.thanksWrap .ttl_wrap {
  background: #f7f7f7;
  padding: 30px 0;
}

.thanksWrap .ttl {
  font-size: 3.6rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.075em;
}

.thanksWrap .sub {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 60px;
  font-family: "Noto Sans JP", sans-serif;
}

.thanksWrap p {
  font-size: 1.6rem;
}

.thanksWrap p + p {
  margin-top: 25px;
}

.thanksWrap .btn {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  .thanksWrap {
    margin-top: 8%;
  }

  .thanksWrap .wrap {
    padding: 8% 0 0;
  }

  .thanksWrap .inner {
    padding: 5% 0 0;
    width: 95% !important;
  }

  .thanksWrap .ttl_wrap {
    padding: 5% 0;
  }

  .thanksWrap .ttl {
    font-size: 7.2vw;
  }

  .thanksWrap .sub {
    font-size: 6vw;
    margin-bottom: 8%;
  }

  .thanksWrap p + p {
    margin-top: 5%;
  }

  .thanksWrap .btn {
    margin-top: 8%;
  }

  .thanksWrap .btn a {
    font-size: 1.6rem;
  }
}
