@charset "utf-8";

:root {
  --color-main1: #896900;
  --color-sub1: #ffffcc;
  --color-sub2: #eef5f4;
  --color-blk1: #333333;
  --color-blk2: #737373;
  --color-blk3: #cccccc;
  --color-blk4: #E9E9E9;
  --color-wht: #FFFFFF;
  --margin-big: 120px;
  --margin-middle: 60px;
  --margin-small: 20px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 0px;
  --font-mincho: "Noto Serif JP", serif;
  --padding01: 20px;
  --padding02: 40px;
  --padding03: 40px;
}

@media screen and (max-width: 1080px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 30px;
    --margin-col: 20px;
    --container-w1: 30px;
    --padding02: 20px;
  }
}

@media screen and (max-width: 560px) {
  :root {
    --margin-big: 40px;
    --margin-middle: 20px;
    --container-w1: 20px;
    --container-w2: 20px;
    --padding01: 10px;
    --padding02: 10px;
    --padding03: 20px;
  }
}

/*=====================================================================*/
html,
body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
  font-size: 18px;
  letter-spacing: 0.05em;
}

@media screen and (max-width: 1080px) {

  html,
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 560px) {

  html,
  body {
    font-size: 14px;
  }
}

body {
  color: var(--color-blk1);
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.8;
  background: #24140e;
  font-weight: 400;
  color: #00021b;
}

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

::-webkit-full-page-media,
:future,
:root img {
  image-rendering: auto;
}

svg {
  fill: currentColor;
  max-width: 100%;
}

p {
  margin: var(--margin-small) 0;
}

input,
button,
select,
textarea {
  font-family: "Noto Sans JP", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", sans-serif;
  outline: none;
}

input,
select,
textarea {
  background: #FFF;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

/*
link
---------------------------------------------------------*/
a {
  transition: all .3s ease;
}

a:link {
  color: #FFF;
  text-decoration: none;
}

a:visited {
  color: #FFF;
  text-decoration: none;
}

a:hover {
  opacity: .6;
  text-decoration: underline;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

/*
navskip
---------------------------------------------------------*/
.navskip {
  display: none;
}

/*=====================================================================*/

/*----------------------------------------*/
.l-container01 {
  margin: var(--margin-big) 0;
}

.l-container01:first-child {
  margin: 0 0 var(--margin-big);
}

.l-container01.bg01 {
  background: var(--color-sub2);
  margin: 0;
  padding: var(--margin-big) 0;
}

.l-container01.bg__contact {
  background: var(--color-sub2);
  margin: 0;
  padding: var(--margin-middle) 0;
}


/*----------------------------------------*/
.l-section01 {
  max-width: calc(770px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}

.l-section02 {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}

.l-section01.frame01 {
  border-left: 1px solid var(--color-blk2);
  border-right: 1px solid var(--color-blk2);
  padding-top: var(--margin-small);
  padding-bottom: var(--margin-small);
  background: #fffff9;
}

.l-section02.frame01 {
  border-left: 1px solid var(--color-blk2);
  border-right: 1px solid var(--color-blk2);
  padding-bottom: var(--margin-small);
}

.l-section00 {
  max-width: calc(770px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 890px) {
  .l-section00 {
    padding: 0 var(--container-w1);
  }
}

/*----------------------------------------*/
footer {
  border-top: 1px solid var(--color-sub1);
  padding: var(--container-w1);
}

footer ul {
  display: flex;
  justify-content: center;
  gap: 40px;
}

footer .copyright {
  text-align: center;
  color: #b8b8b8;
  margin-top: 12px;
}

/*----------------------------------------*/
.l-pagetop {
  position: fixed;
  bottom: 20px;
  right: 0;
  z-index: 100;
}

.l-pagetop a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  background-color: var(--color-main1);
  color: var(--color-wht);
}

/*----------------------------------------*/
.l-row {
  display: flex;
  flex-wrap: wrap;
}

.l-row__reverse {
  flex-direction: row-reverse;
}

.l-row__center {
  align-items: center;
}

.l-row__jcenter {
  justify-content: center;
}

.l-row__jspaceb {
  justify-content: space-between;
}

.l-row__childflex1 {
  flex: 1;
}

.l-row .col0 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col0>li {
  margin-right: var(--margin-col);
  margin-left: var(--margin-col);
  margin-bottom: var(--margin-col);
}

@media screen and (max-width: 960px) {
  .l-row .col0>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

.l-row .col2 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col2>li {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}

.l-row .col2>li:nth-child(2n) {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .l-row .col2>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

.l-row .col2__2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col2__2>li {
  margin-bottom: var(--margin-col);
}

.l-row .col2__2>li.text>p {
  margin: initial;
}

.l-row .col2__2>li.text {
  width: calc(((100% / 3) * 2) - (var(--margin-col) / 2));
}

.l-row .col2__2>li.img {
  width: calc(((100% / 3) * 1) - (var(--margin-col) / 2));
}

@media screen and (max-width: 560px) {
  .l-row .col2__2>li.text {
    width: 100%;
  }

  .l-row .col2__2>li.img {
    width: 100%;
  }
}

.l-row .col3 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col3>li {
  width: calc(100% / 3 - ((var(--margin-col) * 2) / 3));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}

.l-row .col3>li:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .l-row .col3>li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }

  .l-row .col3>li:nth-child(odd) {
    margin-right: var(--margin-col);
  }

  .l-row .col3>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 560px) {
  .l-row .col3>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

.l-row .col4 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col4>li {
  width: calc(100% / 4 - ((var(--margin-col) * 3) / 4));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}

.l-row .col4>li:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .l-row .col4>li {
    width: calc(100% / 3 - ((var(--margin-col) * 2) / 3));
  }

  .l-row .col4>li:nth-child(4n) {
    margin-right: var(--margin-col);
  }

  .l-row .col4>li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 660px) {
  .l-row .col4>li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }

  .l-row .col4>li:nth-child(3n) {
    margin-right: var(--margin-col);
  }

  .l-row .col4>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 420px) {
  .l-row .col4>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

.l-row .col5 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col5>li {
  width: calc(100% / 5 - ((var(--margin-col) * 4) / 5));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}

.l-row .col5>li:nth-child(5n) {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .l-row .col5>li {
    width: calc(100% / 3 - ((var(--margin-col) * 2) / 3));
  }

  .l-row .col5>li:nth-child(5n) {
    margin-right: var(--margin-col);
  }

  .l-row .col5>li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 560px) {
  .l-row .col5>li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }

  .l-row .col5>li:nth-child(3n) {
    margin-right: var(--margin-col);
  }

  .l-row .col5>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .l-row .col5>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

.l-row .col6 {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc(var(--margin-col) * -1);
}

.l-row .col6>li {
  width: calc(100% / 6 - ((var(--margin-col) * 5) / 6));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}

.l-row .col6>li:nth-child(6n) {
  margin-right: 0;
}

@media screen and (max-width: 960px) {
  .l-row .col6>li {
    width: calc(100% / 3 - ((var(--margin-col) * 2) / 3));
  }

  .l-row .col6>li:nth-child(3n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 560px) {
  .l-row .col6>li {
    width: calc(100% / 2 - (var(--margin-col) / 2));
  }

  .l-row .col6>li:nth-child(3n) {
    margin-right: var(--margin-col);
  }

  .l-row .col6>li:nth-child(2n) {
    margin-right: 0;
  }
}

@media screen and (max-width: 360px) {
  .l-row .col6>li {
    width: 100%;
    margin-right: 0 !important;
  }
}

/*=====================================================================*/

/*----------------------------------------*/
.p-form__bg {
  border: 1px solid var(--color-sub1);
  border-radius: 20px;
  padding: var(--container-w1) 150px;
}

.p-form {
  margin: auto;
}

.p-input {
  width: 100%;
  display: block;
}

.p-input>.title__area {
  display: flex;
  align-items: flex-start;
  width: 100%;
  font-weight: 700;
  position: relative;
  margin-bottom: 16px;
}

.p-input>.input__area {
  flex: 1;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.p-input>.input__area>.nowrap {
  flex: 1;
  display: flex;
  align-items: center;
}

.p-input>.input__area .attached {
  margin-right: 10px;
  margin-left: 10px;
}

.p-input>.input__area .attached__f {
  margin-right: 10px;
}

.input__flex1 {
  flex: 1;
}

.input__error {
  width: 100%;
  color: #DE1963;
}

.input__width01 {
  width: 5em;
}

.input__width02 {
  width: 8em;
}

.input__width03 {
  width: 10em;
}

@media screen and (max-width: 680px) {
  .p-input {
    display: block;
  }

  .input__width01 {
    width: 100%;
  }

  .input__width02 {
    width: 200%;
  }

  .input__width03 {
    width: 100%;
  }
}

/*必須・任意*/
.p-required {
  background: var(--color-main1);
  color: var(--color-wht);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}

.p-required.any {
  background: var(--color-blk3);
  color: var(--color-blk1);
}

/*ツールチップ　ヒント*/
.p-tooltip .tip__ico {
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
}

.p-tooltip .tip__ico:hover {
  opacity: .6;
}

.p-tooltip .tip__ico::before {
  content: "？";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-main1);
  border-radius: calc(1em * 1.8);
  color: var(--color-wht);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}

.p-tooltip .tip__text {
  width: max-content;
  max-width: 100%;
  background: var(--color-blk4);
  font-size: 0.8em;
  padding: .5em .8em;
  position: absolute;
  bottom: calc(1.7em * 1.8);
  right: 0;
  opacity: 0;
  transform-origin: bottom right;
  transform: scale(0, 0);
  transition: all .3s;
  z-index: 10;
}

.p-tooltip .tip__text::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: calc((1em * 1.8) / 3);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  border-top: 10px solid var(--color-blk4);
  border-bottom: 0;
}

.p-tooltip .tip__text>p {
  margin: .5em 0;
}

.p-tooltip .tip__ico:hover+.tip__text {
  display: block;
  transform: scale(1, 1);
  opacity: 1;
}

/*セレクトボックス*/
.p-input select {
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}

.p-input select:focus {
  border: 1px solid var(--color-main1);
}

/*テキストエリア*/
.p-input textarea {
  border-radius: 3px;
  border: 1px solid var(--color-blk2);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
  text-align: left;
}

.p-input textarea:focus {
  border: 1px solid var(--color-main1);
}

/*その他*/
.p-input input[type="file"] {
  cursor: pointer;
  width: 18em;
}

/*入力フォームまわり*/
.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]) {
  border-radius: 4px;
  border: 1px solid var(--color-blk1);
  padding: 8px 12px;
  color: var(--color-blk1);
  text-align: left;
  background: #FFF;
}

.p-input input:not([type="submit"]):not([type="reset"]):not([type="radio"]):not([type="checkbox"]):not([type="file"]):not([type="color"]):not([type="range"]):not([type="button"]):not([type="hidden"]):focus {
  border: 2px solid orange;
}

/*ラジオボタン・チェックボックス*/
.p-checklist {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: -1em;
}

.p-checklist>li {
  margin: 0 1em 1em 0;
  position: relative;
  display: flex;
}

.p-checklist label {
  display: inline-block;
  line-height: 1;
  margin-left: 1.2em;
  cursor: pointer;
}

.p-checklist input[type="radio"] {
  all: initial;
  background: url(../img/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}

.p-checklist input[type="radio"]:checked {
  background: url(../img/ico_radio01_2.svg) center center / 100% auto no-repeat;
}

.p-checklist input[type="checkbox"] {
  all: initial;
  background: url(../img/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
}

.p-checklist input[type="checkbox"]:checked {
  background: url(../img/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}

/*送信ボタン・リセットボタン*/
.p-formbutton {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-formbutton>button,
.p-formbutton>input {
  margin: 0 .5em;
}

@media screen and (max-width: 1080px) {
  .p-form__bg {
    padding: var(--container-w1) 40px;
  }
}

@media screen and (max-width: 560px) {
  .p-form__bg {
    padding: var(--container-w1) 20px;
  }
}


/*-------------------------------------------*/
.p-faq {
  background: var(--color-sub2);
  padding: var(--margin-small);
  margin-bottom: var(--margin-small);
}

.p-faq:last-child {
  margin-bottom: 0;
}

.p-faq__q {
  cursor: pointer;
  position: relative;
}

.p-faq__q:hover {
  opacity: .6;
}

.p-faq__q::before {
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}

.p-faq__q::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: all .3s;
}

.p-faq__q.faq__close::before {
  opacity: 0;
}

.p-faq__q.faq__close::after {
  transform: rotate(450deg);
}

.p-faq__q>p {
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}

.p-faq__q>p:first-child {
  margin: 0;
}

.p-faq__q>p:last-child {
  margin-bottom: 0;
}

.p-faq__q>p:first-child::before {
  content: "Q";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-main1);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-wht);
  font-weight: 700;
}

.p-faq__a {
  margin-top: calc(var(--margin-small) + 10px);
}

.p-faq__a>p {
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}

.p-faq__a>p:first-child {
  margin: 0;
}

.p-faq__a>p:last-child {
  margin-bottom: 0;
}

.p-faq__a>p:first-child::before {
  content: "A";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-blk1);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-wht);
  font-weight: 700;
}

/*=====================================================================*/
/*-------------------------------------------*/
.c-btn-icon01 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.c-btn-icon01>.icon {
  margin-right: 0.5em;
  display: inline-block;
}

.c-btn-icon01>.icon img {
  width: 1.2em;
}

.c-btn-icon01>.text {
  line-height: 1.4;
  display: inline-block;
}

.c-btn01 {
  background: var(--color-main1);
  color: var(--color-wht) !important;
  text-decoration: none !important;
  padding: 1em calc(2em) 1em 1em;
  display: inline-block;
  text-align: center;
  border-radius: 10px;
  position: relative;
  line-height: 1.4;
}

.c-btn01::before {
  content: "";
  border: 2px solid var(--color-wht);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}

.c-btn02 {
  background: var(--color-wht);
  color: var(--color-main1) !important;
  text-decoration: none !important;
  padding: 1em calc(2em) 1em 1em;
  display: inline-block;
  text-align: center;
  border: 1px solid var(--color-main1);
  border-radius: 10px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
}

.c-btn02::before {
  content: "";
  border: 2px solid var(--color-main1);
  border-top: none;
  border-left: none;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto;
  width: calc(1em - 5px);
  max-width: 14px;
  height: calc(1em - 5px);
  max-height: 14px;
  transform: rotate(-45deg);
}

.c-formbtn01 {
  border-radius: 3px;
  background: var(--color-main1);
  color: var(--color-wht);
  padding: 0.5em 2em;
  cursor: pointer;
}

.c-formbtn01:hover {
  opacity: .6;
}

.c-formbtn02 {
  border-radius: 3px;
  background: var(--color-blk4);
  color: var(--color-blk1);
  padding: 0.5em 2em;
  cursor: pointer;
}

.c-formbtn02:hover {
  opacity: .6;
}

/*----------------------------------------*/
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
}

.c-link__list li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}

.c-link__list li:after {
  display: none;
}

/*----------------------------------------*/
.c-box01 {
  padding: 1em;
  border: 1px solid var(--color-blk2);
}

.c-box01>p {
  margin: 0;
}

/*----------------------------------------*/
.c-title01 {
  font-size: 3em;
  font-weight: 900;
  text-align: center;
  margin-bottom: 0;
  position: relative;
  background: url(../img/common/pic_image01.png) center center / cover no-repeat;
  padding: .5em 20px;
  color: var(--color-wht);
}

.c-title02 {
  font-size: 2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: 1em 0;
  position: relative;
}

.c-title02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-sub1);
}

.c-title02::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}

.c-title03 {
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  background: var(--color-sub1);
}

.c-title04 {
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  margin: 1em 0;
  position: relative;
  border-left: 10px solid var(--color-main1);
}

.c-title05 {
  font-size: 1.5em;
  font-weight: 700;
  padding: .5em;
  margin: 1em 0;
  position: relative;
  border: 1px solid var(--color-main1);
}

/*----------------------------------------*/
.c-ul__disc {
  list-style-type: none;
}

.c-ul__disc>li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}

.c-ul__disc>li:before {
  position: absolute;
  top: 0.7em;
  left: 0;
  content: "";
  background: var(--color-blk1);
  border-radius: 10px;
  width: 0.5em;
  height: 0.5em;
}

.c-ul__number {
  list-style: decimal;
  padding-left: 1em;
}

.c-ul__number>li {
  margin-bottom: 0.5em;
}

.c-ul__number>li::marker {
  color: var(--color-blk1);
}

/*-------------------------------------------*/
.c-page__anchor {
  padding: 0 0 25px 0;
  border-bottom: 1px solid var(--color-main1);
}

.c-page__anchor>ul {
  display: flex;
  flex-wrap: wrap;
}

.c-page__anchor>ul>li {
  position: relative;
  padding: 0 1em 0 calc(20px + .5em);
  margin: .5em 1em .5em 0;
}

.c-page__anchor>ul>li:before {
  content: "";
  background: var(--color-main1);
  width: 20px;
  height: 20px;
  font-weight: 700;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  color: #d81862;
}

.c-page__anchor>ul>li::after {
  content: "";
  border: 1px solid var(--color-wht);
  border-top: none;
  border-left: none;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
  font-weight: 700;
  position: absolute;
  left: 5px;
  top: -6px;
  bottom: 0;
  margin: auto;
  color: #d81862;
}

/*----------------------------------------*/
.c-table01 th,
.c-table01 td {
  border: 1px solid var(--color-blk3);
  padding: .5em;
}

.c-table01 th {
  background: var(--color-blk4);
}

/*-------------------------------------------*/
.c-tab01-list {
  display: flex;
  margin-bottom: -1px;
}

.c-tab01-list-item {
  text-align: center;
  padding: 0.5em 1.5em 0.4em;
  cursor: pointer;
  border: 1px solid var(--color-sub1);
  border-radius: 10px 10px 0 0;
  margin-right: 5px;
  transition: all .4s;
}

.c-tab01-list-item:hover {
  opacity: .6;
}

.c-tab01-contents {
  background: #FFF;
  border: 1px solid var(--color-sub1);
  display: none;
  padding: 20px;
}

.c-tab-btn-active {
  background: var(--color-sub2);
  font-weight: 700;
}

.c-tab-contents-active {
  display: block;
}

@media screen and (max-width: 660px) {
  .c-tab01-list {
    flex-wrap: wrap;
  }

  .c-tab01-list-item {
    border-radius: 10px;
    margin: 0 10px 10px 0;
  }
}

/*=====================================================================*/
.l-section01 .c-title100:first-child {
  margin: 0 0 1.5em 0;
}

.article__area a:not([class]):link {
  color: var(--color-main1);
}

.article__area a:not([class]):visited {
  color: var(--color-main1);
}

.article__area h1:not([class]),
.article__area h2:not([class]) {
  margin: var(--margin-big) 0 60px;
  font-size: 2.2em;
  font-weight: 900;
  position: relative;
}

.article__area h3:not([class]) {
  margin: 0 0 1em;
  font-size: 1.5em;
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-main1);
}

.article__area h4:not([class]) {
  font-size: 1.2em;
  font-weight: 700;
  padding-bottom: .5em;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}

.article__area h4:not([class])::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-sub1);
}

.article__area h4:not([class])::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 30%;
  background: var(--color-main1);
}

.article__area h5:not([class]) {
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
}

.article__area h5:not([class])>span {
  display: inline-block;
  border: 1px solid var(--color-main1);
  padding: 0.5em 1em;
}

.article__area h6:not([class]) {
  font-size: 1.2em;
  font-weight: 700;
  margin: var(--margin-middle) 0 1em;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-sub2);
}

.article__area h1:first-child,
.article__area h2:first-child {
  margin-top: 0;
}

.article__area h1:not([class])+h1:not([class]),
.article__area h1:not([class])+h2:not([class]),
.article__area h1:not([class])+h3:not([class]),
.article__area h1:not([class])+h4:not([class]),
.article__area h1:not([class])+h5:not([class]),
.article__area h1:not([class])+h6:not([class]),
.article__area h2:not([class])+h2:not([class]),
.article__area h2:not([class])+h3:not([class]),
.article__area h2:not([class])+h4:not([class]),
.article__area h2:not([class])+h5:not([class]),
.article__area h2:not([class])+h6:not([class]) {
  margin-top: 40px;
}

.article__area h3:not([class])+h3:not([class]),
.article__area h3:not([class])+h4:not([class]),
.article__area h3:not([class])+h5:not([class]),
.article__area h3:not([class])+h6:not([class]),
.article__area h4:not([class])+h4:not([class]),
.article__area h4:not([class])+h5:not([class]),
.article__area h4:not([class])+h6:not([class]),
.article__area h5:not([class])+h5:not([class]),
.article__area h5:not([class])+h6:not([class]) {
  margin-top: 40px;
}

@media screen and (max-width: 1080px) {

  .article__area h1:first-child,
  .article__area h2:first-child {
    margin-bottom: 0;
  }
}

@media screen and (max-width: 660px) {

  .article__area h1:not([class]) br,
  .article__area h2:not([class]) br,
  .article__area h3:not([class]) br,
  .article__area h4:not([class]) br,
  .article__area h5:not([class]) br,
  .article__area h6:not([class]) br {
    display: none;
  }

  .article__area h1:not([class]),
  .article__area h2:not([class]) {
    font-size: 2rem;
    line-height: 1.5;
  }

  .article__area h3:not([class]) {
    line-height: 2;
  }

  .article__area h3:not([class])>span {
    font-size: 1.6rem;
  }

  .article__area h4:not([class]) {
    font-size: 1.4rem;
    line-height: 1.5;
  }

  .article__area h5:not([class]) {
    font-size: 1.3rem;
    line-height: 1.5;
  }

  .article__area h6:not([class]) {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}

.article__area ul:not([class]) {
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}

.article__area ul:not([class])>li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}

.article__area ul:not([class])>li:before {
  position: absolute;
  top: 0.75em;
  left: 0;
  content: "";
  background: var(--color-main1);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}

.article__area ul.checklist {
  list-style-type: none;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
}

.article__area ul.checklist>li {
  margin-bottom: 0.5em;
  position: relative;
  padding-left: 1em;
}

.article__area ul.checklist>li:before {
  content: "";
  position: absolute;
  top: 0.75em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 2px solid var(--color-main1);
  border-bottom: 2px solid var(--color-main1);
  transform: rotate(315deg);
}

.article__area ol:not([class]) {
  list-style: decimal;
  margin: var(--margin-small) 0 var(--margin-small) 0.5em;
  padding-left: 1em;
}

.article__area ol:not([class])>li {
  margin-bottom: 0.5em;
}

.article__area ol:not([class])>li::marker {
  font-weight: 700;
  color: var(--color-main1);
}

.article__area ol:not([class])>li::before {
  color: var(--color-blk1);
}

.article__area table:not([class]) {
  width: 100%;
  background: #efefe6;
  color: #333;
}

.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid #00021b;
  padding: .1em;
}

.article__area table:not([class]) th {
  background: #d5cb9b;
  width: 0;
  white-space: nowrap;
  text-align: center;
  font-weight: 700;
}

.article__area table:not([class]) th+th,
.article__area table:not([class]) th:has(+ th) {
  background: #d5cb9b;
  width: auto;
  white-space: initial;
}

/*=====================================================================*/
.u-left {
  text-align: left !important;
}

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

.u-center {
  text-align: center;
}

.u-center--pc {
  text-align: center;
}

@media screen and (max-width: 1080px) {
  .u-center--pc {
    text-align: left;
  }

  .u-center--sp {
    text-align: center;
  }
}

@media screen and (max-width: 1080px) {
  .u-spbr {
    display: none;
  }
}

.u-lh10 {
  line-height: 1 !important;
}

.u-lh12 {
  line-height: 1.2 !important;
}

.u-lh14 {
  line-height: 1.4 !important;
}

.u-lh16 {
  line-height: 1.6 !important;
}

.u-lh18 {
  line-height: 1.8 !important;
}

.u-lh20 {
  line-height: 2 !important;
}

/*----------------------------------------*/
.u-fw01 {
  font-weight: 100 !important;
}

.u-fw02 {
  font-weight: 200 !important;
}

.u-fw03 {
  font-weight: 300 !important;
}

.u-fw04 {
  font-weight: 400 !important;
}

.u-fw05 {
  font-weight: 500 !important;
}

.u-fw06 {
  font-weight: 600 !important;
}

.u-fw07 {
  font-weight: 700 !important;
}

.u-fw08 {
  font-weight: 800 !important;
}

.u-fw09 {
  font-weight: 900 !important;
}

/*----------------------------------------*/
.u-fnt--ssss {
  font-size: 0.6em;
}

.u-fnt--sss {
  font-size: 0.7em;
}

.u-fnt--ss {
  font-size: 12px;
}

.u-fnt--s {
  font-size: 14px;
}

.u-fnt--l {
  font-size: 1.1em;
}

.u-fnt--ll {
  font-size: 1.2em;
}

.u-fnt--lll {
  font-size: 1.4em;
}

.u-fnt--llll {
  font-size: 1.6em;
}

.u-fnt--lllll {
  font-size: 1.8em;
}

.u-fnt--llllll {
  font-size: 2em;
}

.u-fnt--lllllll {
  font-size: 2.2em;
}

.u-fnt--llllllll {
  font-size: 2.4em;
}

.u-fnt--lllllllll {
  font-size: 3em;
}

/*----------------------------------------*/
.u-fntcolor--main1 {
  color: var(--color-main1) !important;
}

.u-fntcolor--sub1 {
  color: #9bd5cc !important;
}

.u-fntcolor--red {
  color: #e41010 !important;
}

.u-fntcolor--orange {
  color: #e48510 !important;
}

.u-fntcolor--yellow {
  color: #e4cf10 !important;
}

.u-fntcolor--green {
  color: #0f9a00 !important;
}

.u-fntcolor--blue {
  color: #1041e4 !important;
}

.u-fntcolor--purple {
  color: #840bc0 !important;
}

/*----------------------------------------*/
.u-m--layout01 {
  margin-top: var(--margin-big) !important;
}

/* .u-m--layout02  {margin-top: var(--margin-middle) !important;} */
.u-m--layout03 {
  margin-top: var(--margin-small) !important;
}

.u-m10 {
  margin: 10px !important;
}

.u-m20 {
  margin: 20px !important;
}

.u-m30 {
  margin: 30px !important;
}

.u-m40 {
  margin: 40px !important;
}

.u-m50 {
  margin: 50px !important;
}

.u-m60 {
  margin: 60px !important;
}

.u-m70 {
  margin: 70px !important;
}

.u-m80 {
  margin: 80px !important;
}

.u-m90 {
  margin: 90px !important;
}

.u-m100 {
  margin: 100px !important;
}

.u-mt0 {
  margin-top: 0 !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb0 {
  margin-bottom: 0 !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb20 {
  margin-bottom: 20px !important;
}

.u-mb40 {
  margin-bottom: 40px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb60 {
  margin-bottom: 60px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb80 {
  margin-bottom: 80px !important;
}

.u-mb90 {
  margin-bottom: 90px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-ml0 {
  margin-left: 0 !important;
}

.u-ml10 {
  margin-left: 10px !important;
}

.u-ml20 {
  margin-left: 20px !important;
}

.u-ml40 {
  margin-left: 40px !important;
}

.u-mr0 {
  margin-right: 0 !important;
}

.u-mr10 {
  margin-right: 10px !important;
}

.u-mr20 {
  margin-right: 20px !important;
}

.u-mr40 {
  margin-right: 40px !important;
}

.u-mauto {
  margin: auto !important;
}

.u-m0 {
  margin: 0 !important;
}

/*----------------------------------------*/
.u-p10 {
  padding: 10px !important;
}

.u-p20 {
  padding: 20px !important;
}

.u-p30 {
  padding: 30px !important;
}

.u-p40 {
  padding: 40px !important;
}

.u-p50 {
  padding: 50px !important;
}

.u-p60 {
  padding: 60px !important;
}

.u-p70 {
  padding: 70px !important;
}

.u-p80 {
  padding: 80px !important;
}

.u-p90 {
  padding: 90px !important;
}

.u-p100 {
  padding: 100px !important;
}

.u-pt0 {
  padding-top: 0 !important;
}

.u-pt10 {
  padding-top: 10px !important;
}

.u-pt20 {
  padding-top: 20px !important;
}

.u-pt40 {
  padding-top: 40px !important;
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt60 {
  padding-top: 60px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt80 {
  padding-top: 80px !important;
}

.u-pt90 {
  padding-top: 90px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pb0 {
  padding-bottom: 0 !important;
}

.u-pb10 {
  padding-bottom: 10px !important;
}

.u-pb20 {
  padding-bottom: 20px !important;
}

.u-pb40 {
  padding-bottom: 40px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb60 {
  padding-bottom: 60px !important;
}

.u-pb70 {
  padding-bottom: 70px !important;
}

.u-pb80 {
  padding-bottom: 80px !important;
}

.u-pb90 {
  padding-bottom: 90px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pl0 {
  padding-left: 0 !important;
}

.u-pl10 {
  padding-left: 10px !important;
}

.u-pl20 {
  padding-left: 20px !important;
}

.u-pl40 {
  padding-left: 40px !important;
}

.u-pr0 {
  padding-right: 0 !important;
}

.u-pr10 {
  padding-right: 10px !important;
}

.u-pr20 {
  padding-right: 20px !important;
}

.u-pr40 {
  padding-right: 40px !important;
}

.u-p0 {
  padding: 0 !important;
}

/*----------------------------------------*/
.u-w100p {
  width: 100% !important;
}

.u-wauto {
  width: auto !important;
}

.u-wmx320 {
  width: 100% !important;
  max-width: 320px !important;
}

.u-wmx560 {
  width: 100% !important;
  max-width: 560px !important;
}

/*----------------------------------------*/
.u-kadomaru01 {
  border-radius: 10px;
}

.u-kadomaru02 {
  border-radius: 20px;
}

/*----------------------------------------*/
.u-border01 {
  border: 1px solid var(--color-main1)
}

.u-border02 {
  border: 2px solid var(--color-main1)
}

.u-bordertop01 {
  border-top: 1px solid var(--color-main1)
}

.u-borderbottom01 {
  border-bottom: 1px solid var(--color-main1)
}

/*----------------------------------------*/
.u-nolink {
  pointer-events: none;
}

/*----------------------------------------*/
.u-min01 {
  font-size: clamp(12px, 3vw, 14px) !important;
}

.u-big01 {
  font-size: clamp(calc(1.2em), calc(5vw * 0.3), calc(4em * 0.3)) !important;
  font-weight: 700;
  line-height: 1.5;
}

.u-big02 {
  font-size: clamp(calc(1.3em), calc(5vw * 0.4), calc(4em * 0.4)) !important;
  font-weight: 700;
  line-height: 1.5;
}

.u-big03 {
  font-size: clamp(calc(1.4em), calc(5vw * 0.5), calc(4em * 0.5)) !important;
  font-weight: 700;
  line-height: 1.5;
}

.u-big04 {
  font-size: clamp(calc(1.5em), calc(5vw * 0.6), calc(4em * 0.6)) !important;
  font-weight: 700;
  line-height: 1.4;
}

.u-big05 {
  font-size: clamp(calc(2em * 0.8), calc(5vw * 0.8), calc(4em * 0.8)) !important;
  font-weight: 900;
  line-height: 1.4;
}

.u-big06 {
  font-size: clamp(calc(2em * 0.9), calc(5vw * 0.9), calc(4em * 0.9)) !important;
  font-weight: 900;
  line-height: 1.4;
}

.u-big07 {
  font-size: clamp(2em, 5vw, 5em) !important;
  font-weight: 900;
  line-height: 1.4;
}

.u-bigmx01 {
  font-size: clamp(40px, 7vw, 75px) !important;
  font-weight: 900;
  line-height: 1.3;
}

/*----------------------------------------*/
.u-fshadow01 {
  text-shadow: 0 0 5px var(--color-blk1);
}

.u-deco01 {
  background: linear-gradient(transparent 60%, #663c04 60%) bottom left / 100% auto no-repeat;
}

.u-deco02 {
  background: linear-gradient(transparent calc(100% - 2px), #ddd 100%) bottom left / 100% auto no-repeat;
  padding-bottom: 2px;
  display: inline;
  line-height: 1.9;
}

.u-deco03 {
  background: #ddd bottom left / 100% auto no-repeat;
  line-height: 2;
}

.u-deco04 {
  background: linear-gradient(#999, #111);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.u-deco05 {
  border: 1px solid #ddd;
  padding: .5em 1em;
  display: inline-block;
}

:root {
  --textshadow01-weight: 1px;
  --textshadow01-blur: 1px;
  --textshadow01-color: #a1a1a1;
}

.u-textshadow01 {
  text-shadow:
    var(--textshadow01-weight) var(--textshadow01-weight) var(--textshadow01-blur) var(--textshadow01-color),
    calc(var(--textshadow01-weight) * -1) var(--textshadow01-weight) var(--textshadow01-blur) var(--textshadow01-color),
    var(--textshadow01-weight) calc(var(--textshadow01-weight) * -1) var(--textshadow01-blur) var(--textshadow01-color),
    calc(var(--textshadow01-weight) * -1) calc(var(--textshadow01-weight) * -1) var(--textshadow01-blur) var(--textshadow01-color),
    var(--textshadow01-weight) 0px var(--textshadow01-blur) var(--textshadow01-color),
    0px var(--textshadow01-weight) var(--textshadow01-blur) var(--textshadow01-color),
    calc(var(--textshadow01-weight) * -1) 0px var(--textshadow01-blur) var(--textshadow01-color),
    0px var(--textshadow01-weight) calc(var(--textshadow01-weight) * -1) var(--textshadow01-color)
}

:root {
  --textshadow02-weight: 2px;
  --textshadow02-blur: 2px;
  --textshadow02-color: #a1a1a1;
}

.u-textshadow02 {
  text-shadow:
    var(--textshadow02-weight) var(--textshadow02-weight) var(--textshadow02-blur) var(--textshadow02-color),
    calc(var(--textshadow02-weight) * -1) var(--textshadow02-weight) var(--textshadow02-blur) var(--textshadow02-color),
    var(--textshadow02-weight) calc(var(--textshadow02-weight) * -1) var(--textshadow02-blur) var(--textshadow02-color),
    calc(var(--textshadow02-weight) * -1) calc(var(--textshadow02-weight) * -1) var(--textshadow02-blur) var(--textshadow02-color),
    var(--textshadow02-weight) 0px var(--textshadow02-blur) var(--textshadow02-color),
    0px var(--textshadow02-weight) var(--textshadow02-blur) var(--textshadow02-color),
    calc(var(--textshadow02-weight) * -1) 0px var(--textshadow02-blur) var(--textshadow02-color),
    0px var(--textshadow02-weight) calc(var(--textshadow02-weight) * -1) var(--textshadow02-color)
}

.u-under01 {
  text-decoration: underline;
}

.u-italic {
  font-style: italic;
  letter-spacing: -0.05em;
}

/*=====================================================================*/
@keyframes Display__order {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

.animeTrigger.display__order .order1,
.animeTrigger.display__order .order2,
.animeTrigger.display__order .order3,
.animeTrigger.display__order .order4,
.animeTrigger.display__order .order5,
.animeTrigger.display__order .order6,
.animeTrigger.display__order .order7,
.animeTrigger.display__order .order8,
.animeTrigger.display__order .order9,
.animeTrigger.display__order .order10 {
  opacity: 0;
  filter: blur(30px);
  transform: translateY(100px);
}

.animeTrigger.display__order.animetion .order1 {
  animation: Display__order 1.2s ease .5s 1 forwards;
}

.animeTrigger.display__order.animetion .order2 {
  animation: Display__order 1.2s ease 1s 1 forwards;
}

.animeTrigger.display__order.animetion .order3 {
  animation: Display__order 1.2s ease 1.5s 1 forwards;
}

.animeTrigger.display__order.animetion .order4 {
  animation: Display__order 1.2s ease 2s 1 forwards;
}

.animeTrigger.display__order.animetion .order5 {
  animation: Display__order 1.2s ease 2.5s 1 forwards;
}

.animeTrigger.display__order.animetion .order6 {
  animation: Display__order 1.2s ease 3s 1 forwards;
}

.animeTrigger.display__order.animetion .order7 {
  animation: Display__order 1.2s ease 3.5s 1 forwards;
}

.animeTrigger.display__order.animetion .order8 {
  animation: Display__order 1.2s ease 4s 1 forwards;
}

.animeTrigger.display__order.animetion .order9 {
  animation: Display__order 1.2s ease 4.5s 1 forwards;
}

.animeTrigger.display__order.animetion .order10 {
  animation: Display__order 1.2s ease 5s 1 forwards;
}


strong {
  font-size: 28px;
  font-weight: bold;
  color: #d63431;
  text-decoration: underline;
}

.bold {
  font-weight: bold;
}

.blue {
  font-weight: bold;
  color: #20268c;
}

.red {
  color: #d70035;
}

.green {
  font-weight: bold;
  color: green;
}

.yellow {
  font-weight: bold;
  color: #e4cf10;
}

.fs16 {
  font-size: 16px;
}

.fs18 {
  font-size: 18px;
}

.fs20 {
  font-size: 20px;
}

.fs22 {
  font-size: 22px;
}

.fs24 {
  font-size: 24px;
}

.fs28 {
  font-size: 28px;
}

.fs32 {
  font-size: 32px;
}

.fs36 {
  font-size: 36px;
}

.fs40 {
  font-size: 40px;
}


.center {
  text-align: center;
}

b {
  font-weight: 900;
}

u {
  text-decoration: underline;
}

.box1 {
  border: 1px solid #ffffcc;
  box-shadow: 0 0 20px #817a1a inset;
  background: #221701;
  padding: 20px;
}

.box2 {
  border: #333333;
  background: #171931;
  padding: 20px;
  box-shadow: 0 0 8px #1a8165 inset;
}

.u-font01 {
  font-family: var(--font-mincho)
}

/*=====================================================================*/

.x-mainimage {
  background: url(../img/bg01.jpg) top center no-repeat;
  margin: auto;
  min-height: 940px;
}

.x-mainimage.bg20 {
  background:

    url(../img/bg_common01.png) bottom center repeat-x,
    url(../img/bg20.jpg) top center no-repeat;
}

.x-mainimage_inner {
  width: 100%;
  max-width: 980px;
  margin: auto;
  padding: 0.1em;
}

.x-mainimage_text01 {
  margin-top: 100px;
}

.x-mainimage_text01 .sp {
  display: none;
}

.x-mainimage_text01 .shadow {
  filter: drop-shadow(0 4px 4px #000b1a);
}

@media screen and (max-width: 780px) {
  .x-mainimage {
    background: url(../img/bg01.jpg) top center / 1000px auto no-repeat;
    min-height: initial;
  }

  .x-mainimage_text01 {
    margin-top: 60px;
  }

  .x-mainimage_text01 .pc {
    display: none;
  }

  .x-mainimage_text01 .sp {
    display: block;
  }
}

@media screen and (max-width: 560px) {
  .x-mainimage {
    background: url(../img/bg01.jpg) top center / 800px auto no-repeat;
    min-height: initial;
  }
}

/*---*/
.x-mainimage_textbox01 {
  background: #c1ab05;
  background: linear-gradient(160deg, #c1ab05 0%, #665a1a 100%);
  padding: var(--padding01);
  position: relative;
  margin-top: 20px;
}

.x-mainimage_textbox01 .inner {
  border: 1px solid #e5e573;
  padding: var(--padding01);
  background: #f8f4e6;
  font-family: var(--font-mincho);
}

.x-mainimage_textbox001 {
  background: #c1ab05;
  background: linear-gradient(160deg, #c1ab05 0%, #665a1a 100%);
  padding: var(--padding01);
  position: relative;
  margin-top: 20px;
}

.x-mainimage_textbox001 .inner {
  border: 1px solid #e5e573;
  padding: var(--padding01);
  background: #f8f4e6;
  font-family: var(--font-mincho);
}

.x-mainimage_textbox01 .text01 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  position: relative;
  z-index: 1;
  line-height: 1.2;
  margin: 12px auto 20px;
}

.x-mainimage_textbox01 .text11 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 36px;
  text-align: left;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  margin: 12px auto 20px;
}

.x-mainimage_textbox01 .text21 {
  font-family: var(--font-mincho);
  font-weight: 700;
  font-size: 24px;
  text-align: left;
  position: relative;
  z-index: 1;
  line-height: 1.6;
  margin: 12px auto 20px;
}

.x-mainimage_textbox01 .text02 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.x-mainimage_textbox01 .text02 li {
  padding-left: calc(1em + 4px);
  position: relative;
  font-size: 20px;
}

.x-mainimage_textbox01 .text02 li:not(:first-child) {
  margin-top: 8px;
}

.x-mainimage_textbox01 .text02 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1em);
  height: calc(1em*1.8);
  background: url(../img/check.svg) center center / 1em auto no-repeat;
}

.x-mainimage_textbox001 .text02 {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

.x-mainimage_textbox001 .text02 li {
  padding-left: calc(1em + 4px);
  position: relative;
  font-size: 20px;
}

.x-mainimage_textbox001 .text02 li:not(:first-child) {
  margin-top: 8px;
}

.x-mainimage_textbox001 .text02 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1em);
  height: calc(1em*1.8);
  background: url(../img/check.svg) center center / 1em auto no-repeat;
}

.x-mainimage_textbox001 .text02 li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: calc(1em);
  height: calc(1em*1.8);
  background: url(../img/uma_check.svg) center center / 1em auto no-repeat;
}

.x-mainimage_textbox01 .man {
  position: absolute;
  bottom: 21px;
  right: 21px;
  z-index: 0;
  width: 210px;
}

@media screen and (max-width: 980px) {
  .x-mainimage_textbox01 .man {
    position: static;
    width: 210px;
    margin: auto;
  }
}

@media screen and (max-width: 560px) {
  .x-mainimage_textbox01 .text01 {
    font-size: 28px;
    line-height: 1.4;
  }

  .x-mainimage_textbox01 .text11 {
    font-size: 24px;
    line-height: 1.4;
  }

  .x-mainimage_textbox01 .man {
    width: 160px;
  }
}

/*---*/
.x-opform {
  background: #1936BF;
  background: linear-gradient(125deg, #fcc800 0%, #ad8a00 100%);
  padding: var(--padding02);
  position: relative;
  border: 4px solid #896900;
  max-width: 890px;
  margin: 0 auto;
}

.x-opform .inner {
  background: #fff;
  box-shadow: 0 0 8px #000 inset;
  padding: var(--padding01);
  margin-top: var(--padding01);
  color: var(--color-blk1);
}

@media screen and (max-width: 980px) {
  .x-opform {}

  .l-section02 {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
}

/*---*/
.x-btn01_inner {
  max-width: 647px;
  margin: auto;
}

.x-btn01 {
  display: inline-block;
  background: url(../img/button_01.png) center center / 100% auto no-repeat;
  width: 100%;
  padding-bottom: 30.4%;
  margin: auto;
  cursor: pointer;
  transition: background-image .1s;
}

.x-btn01:hover {
  background: url(../img/button_01_on.png) center center / 100% auto no-repeat;
}

/*---*/
.x-btn02_inner {
  max-width: 647px;
  margin: auto;
}

.x-btn02 {
  display: inline-block;
  width: 100%;
  margin: auto;
  cursor: pointer;
  transition: background-image .1s;
  background: initial !important;
}

.x-btn02:hover {}

/*---*/

.x-btn10 {
  display: block;
  background: linear-gradient(160deg, #c10505 0%, #661a1a 100%);
  box-shadow: 0 0 4px inset #7e3f04;
  border: 2px solid #FFF;
  text-align: center;
  font-size: clamp(calc(1.4em), calc(5vw * 0.5), calc(4em * 0.5)) !important;
  font-weight: 900;
  color: #FFF;
  padding: 40px;
  width: 100%;
  margin: auto;
  cursor: pointer;
  transition: all .1s;
  border-radius: 100px;
  line-height: 1.4;
}

.x-btn10:hover {
  background: linear-gradient(160deg, #910404 0%, #3f1010 100%);
  transform: translateY(3px);
  color: #daa1a1;
}

@media screen and (max-width: 560px) {
  .x-btn10 {
    display: block;
    background: linear-gradient(160deg, #c10505 0%, #661a1a 100%);
    box-shadow: 0 0 4px inset #7e3f04;
    border: 2px solid #FFF;
    text-align: center;
    font-size: clamp(calc(1.4em), calc(5vw * 0.5), calc(4em * 0.5)) !important;
    font-weight: 900;
    color: #FFF;
    padding: 20px;
    width: 100%;
    margin: auto;
    cursor: pointer;
    transition: all .1s;
    border-radius: 12px;
  }

  .x-btn10:hover {
    background: linear-gradient(160deg, #910404 0%, #3f1010 100%);
    transform: translateY(3px);
    color: #daa1a1;
  }
}

/*---*/
.x-bg01 {
  background: #01358B;
  background: linear-gradient(300deg, rgba(1, 53, 139, 1) 0%, rgba(10, 26, 59, 1) 50%, rgba(1, 53, 139, 1) 100%);
  padding: var(--margin-big) 0;
  margin-top: var(--margin-big);
}

.x-bg02 {
  background: url(../img/bg02.jpg) center top / 1920px auto no-repeat fixed;
}

/*---*/
.x-title01 {
  background-image: url(../img/head_bg.gif);
  background-position: center;
  /* background: #01358B;
  background: linear-gradient(180deg, rgb(103, 124, 25) 0%, rgb(27, 26, 0) 67%); */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
}

.x-title01>span {
  position: relative;
  padding: 0 90px;
  font-size: 60px;
  font-weight: 700;
  font-family: var(--font-mincho);
  color: #f4f4f4;
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 1), 0px 0px 20px rgba(0, 0, 0, 1), 0px 0px 26px rgba(31, 31, 31, 1);
  line-height: 1.2;
  text-align: center;
}

.x-title01>span::before {
  content: "";
  background: url(../img/.png) center center / 100% 100% no-repeat;
  width: 88px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.x-title01>span::after {
  content: "";
  background: url(../img/.png) center center / 100% 100% no-repeat;
  width: 88px;
  height: 24px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  transform: scale(-1, 1);
}

@media screen and (max-width: 980px) {
  .x-title01 {
    padding: 40px 20px;
  }

  .x-title01>span {
    font-size: 40px;
    padding: 0;
  }

  .x-title01>span::before {
    top: 0;
    bottom: initial;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(-150%);
  }

  .x-title01>span::after {
    top: initial;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    transform: translateY(150%);
  }
}

/*---*/
.x-title02 {
  font-size: 44px;
  font-weight: 700;
  font-family: var(--font-mincho);
  color: #fcc800;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px solid #fcc800;
  padding: 0 0 20px 0;
}

@media screen and (max-width: 980px) {
  .x-title02 {
    font-size: 24px;
  }
}

/*---*/
@media screen and (max-width: 560px) {
  .x-table_sc {
    overflow: auto;
  }

  .x-table_sc::before {
    content: "[→] 横にスクロール";
  }

  .x-table_sc table {
    width: 560px !important;
  }
}

/* table#jisseki td:nth-of-type(4), table#jisseki td:nth-of-type(5) {
  text-align: right;
} */

/*---*/
.x-result {
  box-shadow: 0 0 8px #e1e1e1 inset;
  background: #070707;
  padding: var(--padding01) var(--padding02);
  font-family: var(--font-mincho);
  color: #e1e1e1;
}

.x-result .inner01 {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ffffcc;
  padding-bottom: 12px;
  margin-bottom: 12px;
}

.x-result .text01 {
  font-size: 32px;
  font-weight: 700;
  color: #ffffcc;
}

.x-result .text02 {
  font-size: 24px;
  font-weight: 700;
}

.x-result .inner02 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.x-result .text03 {
  font-size: 24px;
  font-weight: 700;
}

.x-result .text04 {
  font-size: 72px;
  font-weight: 900;
  line-height: 1.2;
  color: #e4cf10;
}

@media screen and (max-width: 980px) {
  .x-result .text01 {
    font-size: 24px;
    font-weight: 700;
    color: #ffffcc;
  }

  .x-result .text02 {
    font-size: 20px;
    font-weight: 700;
  }

  .x-result .text03 {
    font-size: 20px;
    font-weight: 700;
  }

  .x-result .text04 {
    font-size: 40px;
    font-weight: 900;
    line-height: 1.2;
    color: #e4cf10;
  }

  .x-result .inner02 {
    gap: 0;
  }
}

/*---*/
.x-voice {
  border: 1px solid #ffffcc;
  box-shadow: 0 0 8px #817a1a inset;
  position: relative;
  font-family: var(--font-mincho);
  padding: var(--padding03);
  background: #fffdf1;
  color: #333;
}

.x-voice:not(:first-child) {
  margin-top: var(--margin-middle);
}

.x-voice .title_bg {
  display: flex;
  align-items: center;
}

.x-voice .voice01 {
  width: 120px;
  border: 1px solid #333;
}

.x-voice .title {
  border-bottom: 1px solid #333;
  display: block;
  padding-bottom: 8px;
  font-weight: 700;
  margin: 0;
  font-size: 24px;
  flex: 1;
}

@media screen and (max-width: 560px) {
  .x-voice .title {
    font-size: 20px;
    line-height: 1.4;
    width: 100%;
    text-align: center;
  }

  .x-voice .title_bg {
    flex-direction: column;
    gap: 20px;
  }
}

/*---*/
.comment {
  background: #1936BF;
  background: linear-gradient(125deg, rgba(25, 54, 191, 1) 0%, rgba(7, 17, 55, 1) 100%);
  padding: var(--padding02);
  height: 600px;
  width: 100%;
  overflow: auto;
}

.box_comment {
  position: relative;
}

.box_comment:not(:first-child) {
  margin-top: 28px;
}

.box_comment::before {
  content: "";
  width: 48px;
  height: 48px;
  background: url(../img/pin.svg) center center no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}

.box_comment>div {
  margin-left: 60px;
  background: #FFF;
  border-radius: 8px;
  color: var(--color-blk1);
  padding: 10px 16px;
  font-family: var(--font-mincho);
}

/*---*/

.x-youkou {
  width: 100%;
}

.x-youkou tr {
  border-bottom: 1px solid #896900;
}

.x-youkou th {
  width: 0;
  white-space: nowrap;
  padding: 12px 40px 12px 0;
  font-size: 20px;
  font-weight: 700;
}

.x-youkou td {
  font-size: 20px;
  line-height: 1.6;
  padding: 12px 0;
}

.x-mainimage_textbox01.tokuten {
  background: linear-gradient(160deg, #c1ab05 0%, #665a1a 100%);
}

.x-mainimage_textbox01.tokuten h3 {
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #896900;
}

.x-mainimage_textbox001.tokuten h3 {
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #896900;
}

@media screen and (max-width: 560px) {

  .x-youkou,
  .x-youkou tbody,
  .x-youkou tr,
  .x-youkou th,
  .x-youkou td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .x-youkou th {
    padding-top: 10px;
  }

  .x-youkou td {
    padding-bottom: 10px;
  }
}

/*---*/
s {
  text-decoration: line-through;
}

/*---*/


.x-inputtable {
  width: 100%;
  margin: auto;
}

.x-inputtable th {
  width: 0;
  white-space: nowrap;
  padding: 0 40px var(--padding01) 0;
  font-weight: 700;
  vertical-align: top;
}

.x-inputtable td {
  padding-bottom: var(--padding01);
}

@media screen and (max-width: 560px) {

  .x-inputtable,
  .x-inputtable tbody,
  .x-inputtable tr,
  .x-inputtable th,
  .x-inputtable td {
    display: block;
    width: 100%;
    padding: 0;
  }

  .x-inputtable th {
    padding-top: 10px;
  }

  .x-inputtable td {
    padding-bottom: 10px;
  }
}

/*---*/
.d-checklist {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.d-checklist>li {
  position: relative;
  display: flex;
  flex: 1;
}

.d-checklist label {
  display: inline-block;
  line-height: 1;
  cursor: pointer;
  border: 1px solid #FFF;
  border-radius: 4px;
  padding: 16px 16px 16px 32px;
  width: 100%;
  background: url(../img/ico_radio01_1.svg) center left 8px / 1rem auto no-repeat;
  border: 1px solid var(--color-blk1);
}

.d-checklist input[type="radio"] {
  display: none;
}

.d-checklist input[type="radio"]:checked {
  background: url(../img/ico_radio01_2.svg) center center / 100% auto no-repeat;
}

.d-checklist input[type="radio"]:checked+label {
  font-weight: 700;
  color: var(--color-blk1);
  background: url(../img/ico_radio01_2.svg) center left 8px / 1rem auto no-repeat #e5e573;
}

/*=====================================================================*/

@keyframes anime_up {
  0% {
    opacity: 0;
    transform: translateY(80px)
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes anime_focus {
  0% {
    opacity: 0;
    filter: blur(20px);
    transform: scale(1.2)
  }

  100% {
    opacity: 1;
    filter: blur(0);
    transform: scale(1)
  }
}

.x-mainimage.animeTrigger.animetion .x-mainimage_text01 {
  opacity: 0;
  transform: translateY(80px);
  animation: anime_up 1.2s ease 0.5s 1 forwards;
}

.x-mainimage.animeTrigger.animetion .x-mainimage_text01.v2 {
  opacity: 0;
  transform: initial;
  animation: anime_focus 1.2s ease 0.5s 1 forwards;
}

.x-mainimage.animeTrigger.animetion .x-mainimage_textbox01 {
  opacity: 0;
  transform: translateY(80px);
  animation: anime_up 1.2s ease 1s 1 forwards;
}

.x-mainimage.animeTrigger.animetion .x-mainimage_text20 {
  opacity: 0;
  transform: translateY(80px);
  animation: anime_up 1.2s ease 1.5s 1 forwards;
}

.animeTrigger.anime_up {

  opacity: 0;
  transform: translateY(80px);
}

.animeTrigger.anime_up.animetion {
  animation: anime_up 1.2s ease 0s 1 forwards;
}

.sp_only {
  display: none;
}

.pc_only {
  display: inline-block;
}

@media screen and (max-width: 660px) {
  .sp_only {
    display: inline-block;
  }

  .pc_only {
    display: none;
  }
}

.center {
  text-align: center;
}

.center>img {
  margin: auto;
  display: inline-block;
}

.container {
  border: 2px solid #333;
  background: linear-gradient(160deg, #c1ab05 0%, #665a1a 100%);
  padding: 0.3rem;
  /* 全体の枠 */
  width: 100%;
  /* サンプル用の幅 */
  margin: 20px auto;
  font-family: sans-serif;
}

.top {
  display: flex;
  border-bottom: 2px solid #333;
  /* 上段と下段の境界線 */
  align-items: center;
  border: 1px solid #ffffcc;
  box-shadow: 0 0 8px #81531a inset;
  position: relative;
  font-family: var(--font-mincho);
  background: #fffdf1;
  color: #333;
}

.top .left {
  flex: 3;
  /* 横幅7割 */
  padding: 1rem;
  /* 中央の縦線 */
}

.top .right {
  flex: 7;
  /* 横幅3割 */
  text-align: center;
}

.bottom {
  padding: 1rem;
  background: #f8f4e6;
}

svg path {
  fill: #0f9a00;
}

.qaq {
  position: relative;
  color: black;
  background: #d0f2ff;
  line-height: 1.4;
  padding: 0.25em 0.5em;
  margin: 2em 0 0.5em;
  border-radius: 0 5px 5px 5px;
}

.qaq:after {
  /*タブ*/
  position: absolute;
  font-weight: 900;
  content: 'question';
  background: #007afc;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 3px 7px;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.05em
}

.service_old {
  position: relative;
  color: black;
  background: #fff0ea;
  line-height: 1.4;
  padding: 1em 1em;
  margin: 2em 0 0.5em;
  border-radius: 0 5px 5px 5px;
}

.service_old:after {
  /*タブ*/
  position: absolute;
  font-weight: 900;
  content: '従来のサービス提供の流れ';
  background: #622d18;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 10px 10px;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.05em
}

.service_new {
  position: relative;
  color: black;
  background: #ffe5b9;
  line-height: 1.4;
  padding: 1em 1em;
  margin: 2em 0 0.5em;
  border-radius: 0 5px 5px 5px;
}

.service_new:after {
  /*タブ*/
  position: absolute;
  font-weight: 900;
  content: '馬券師スカウトプロジェクトのサービス提供の流れ ';
  background: #fca000;
  color: #fff;
  left: 0px;
  bottom: 100%;
  border-radius: 5px 5px 0 0;
  padding: 10px 10px;
  font-size: 1em;
  line-height: 1;
  letter-spacing: 0.05em
}

.header {
    margin: 0 auto;
    padding: 0;
    /* position: relative; */
    height: 880px;
    background: url(../img/head_pc.png) center top no-repeat #221707;
}

@media screen and (max-width: 960px) {
    .header {
        height: 115.4vw;
        background: url(../img/head_sp.png) center top no-repeat #221707;
        background-size: cover;
    }
}