@charset "utf-8";
:root {
  --color-main1: #008989;
  --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: #00021b;
  font-weight: 400;
  color: #e4e4e4;
}
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-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: #00021b;
}
.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);
  margin-top: var(--margin-big);
}
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: "問";
  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: "答";
  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: var(--margin-middle) 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: .5em;
}
.article__area table:not([class]) th{
  background: #9bd5cc;
  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: #9bd5cc;
  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;
}

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

.red{
	font-weight : bold;
	color : #e57c7a;
}

.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: #1936BF;
  background: linear-gradient(125deg, rgba(25, 54, 191, 1) 0%, rgba(7, 17, 55, 1) 100%);
  padding: var(--padding01);
  position: relative;
  margin-top: 20px;
}
.x-mainimage_textbox01 .inner{
  border: 1px solid #e5e573;
  padding: var(--padding01);
  background: #001b59;
}
.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;
  margin-bottom: 16px;
}
.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/common02.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{
    margin: 20px 20px 0;
  }
  .x-mainimage_textbox01 .man{
    width: 160px;
  }
}
/*---*/
.x-opform{
  background: #1936BF;
  background: linear-gradient(125deg, rgba(25, 54, 191, 1) 0%, rgba(7, 17, 55, 1) 100%);
  padding: var(--padding02);
  position: relative;
  border: 4px solid #e5e573;
}
.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{
    margin-top: var(--margin-big);
  }
}
/*---*/
.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;
  background: url(../img/button_03.png) center center / 100% auto no-repeat;
  width: 100%;
  padding-bottom: 30.4%;
  margin: auto;
  cursor: pointer;
  transition: background-image .1s;
}
.x-btn02:hover{
  background: url(../img/button_03_on.png) center center / 100% auto no-repeat;
}
/*---*/

.x-btn10{
  display: block;
  background: #FFC107;
  background: linear-gradient(180deg, rgba(255, 193, 7, 1) 0%, rgba(255, 93, 56, 1) 67%);
  box-shadow: 0 0 4px inset #7e3f04;
  border: 2px solid #FFF;
  text-align: center;
  font-size: 40px;
  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(180deg, rgb(138, 104, 4) 0%, rgb(151, 55, 34) 67%);
  transform: translateY(3px);
  color: #dabca1;
}
@media screen and (max-width: 560px) {
  .x-btn10{
    display: block;
    background: #FFC107;
    background: linear-gradient(180deg, rgba(255, 193, 7, 1) 0%, rgba(255, 93, 56, 1) 67%);
    box-shadow: 0 0 4px inset #7e3f04;
    border: 2px solid #FFF;
    text-align: center;
    font-size: 32px;
    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(180deg, rgb(138, 104, 4) 0%, rgb(151, 55, 34) 67%);
    transform: translateY(3px);
    color: #dabca1;
  }
}
/*---*/
.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: #19367C;
  background: linear-gradient(180deg, rgba(25, 54, 124, 1) 0%, rgba(0, 2, 27, 1) 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: #ffffcc;
  line-height: 1.2;
  text-align: center;
}
.x-title01 > span::before{
  content: "";
  background: url(../img/common01.svg) 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/common01.svg) 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: 80px 20px 40px;
  }
  .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: #ffffcc;
  line-height: 1.2;
  text-align: center;
  border-bottom: 1px solid #ffffcc;
  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;
}
table#jisseki td:nth-of-type(5) {
  font-weight: 700;
  color: #e60013;
}
/*---*/
.x-result{
  border: 1px solid #ffffcc;
  box-shadow: 0 0 8px #817a1a inset;
  background: #1a1101;
  padding: var(--padding01) var(--padding02);
  font-family: var(--font-mincho);
}
.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 #01358B;
}
.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: #5b5522;
}
.x-mainimage_textbox01.tokuten h3{
  font-size: 32px;
  font-weight: 900;
  text-align: center;
  border-bottom: 1px solid #01358B;
}
@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;
}

/* =====================================================================
   2026 visual redesign — premium editorial system
   ===================================================================== */
:root {
  --color-main1: #d8b86a;
  --color-sub1: #f2d995;
  --color-sub2: #111a25;
  --color-blk1: #e8edf2;
  --color-blk2: #8795a4;
  --color-blk3: #4a5866;
  --color-blk4: #17222e;
  --ink: #071018;
  --ink-soft: #0c1822;
  --panel: rgba(18, 29, 40, .78);
  --panel-solid: #111d28;
  --gold: #e4c875;
  --gold-bright: #fff1bd;
  --mint: #6fd0bd;
  --coral: #ff7a6f;
  --line: rgba(228, 200, 117, .24);
  --shadow-lg: 0 35px 90px rgba(0, 0, 0, .42);
  --shadow-glow: 0 0 55px rgba(228, 200, 117, .13);
  --radius-sm: 10px;
  --radius-md: 20px;
  --radius-lg: 32px;
  --font-mincho: "Noto Serif JP", "Yu Mincho", serif;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--ink);
  scrollbar-width: thin;
}

body {
  position: relative;
  overflow-x: hidden;
  color: #dbe4eb;
  background:
    radial-gradient(circle at var(--mouse-x, 75%) var(--mouse-y, 12%), rgba(64, 151, 139, .13), transparent 28rem),
    radial-gradient(circle at 15% 35%, rgba(199, 158, 74, .08), transparent 30rem),
    linear-gradient(180deg, #071018 0%, #0a141d 48%, #071018 100%);
  font-feature-settings: "palt" 1;
  letter-spacing: .045em;
  line-height: 1.95;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .24;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 85%);
}

::selection {
  color: #071018;
  background: var(--gold);
}

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--ink); }
::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--gold), #9d7d3e);
  border: 2px solid var(--ink);
  border-radius: 99px;
}

a:hover {
  color: var(--gold-bright);
  opacity: 1;
  text-decoration: none;
}

img {
  image-rendering: auto;
}

.reading-progress {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: 3px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--mint), var(--gold-bright), var(--coral));
  box-shadow: 0 0 18px rgba(228, 200, 117, .7);
}

.floating-join {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(78px, 10vh, 108px);
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 999px;
  color: #081018 !important;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 12px 36px rgba(0,0,0,.32), 0 0 0 6px rgba(228,200,117,.08);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  transform: translateY(18px);
  opacity: 0;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), opacity .45s ease, box-shadow .25s ease;
}
.floating-join::after { content: "\2198"; font-size: 16px; }
.floating-join.is-visible { transform: translateY(0); opacity: 1; }
.floating-join:hover { box-shadow: 0 18px 48px rgba(0,0,0,.4), 0 0 0 9px rgba(228,200,117,.12); }

.x-mainimage {
  position: relative;
  isolation: isolate;
  min-height: 900px;
  overflow: hidden;
  background-position: top center;
  background-size: cover;
}
.x-mainimage::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3,10,16,.82), rgba(3,10,16,.12) 45%, rgba(3,10,16,.45)),
    linear-gradient(0deg, #071018 0%, transparent 38%, rgba(7,16,24,.2) 100%);
}
.x-mainimage::after {
  content: "";
  position: absolute;
  top: 50%;
  right: max(14px, calc((100vw - 1180px) / 2));
  z-index: 0;
  color: rgba(255,255,255,.36);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .36em;
  writing-mode: vertical-rl;
}
.x-mainimage_inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  padding: 1px clamp(20px, 5vw, 68px) 90px;
}
.x-mainimage_text01 {
  max-width: 920px;
  margin: 82px auto 0;
}
.x-mainimage_text01 img {
  filter: drop-shadow(0 16px 38px rgba(0,0,0,.7));
}

.x-mainimage_textbox01 {
  max-width: 920px;
  margin: 36px auto 0;
  padding: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(228,200,117,.52), rgba(89,201,180,.15), rgba(255,255,255,.06));
  box-shadow: var(--shadow-lg), var(--shadow-glow);
  backdrop-filter: blur(18px) saturate(125%);
}
.x-mainimage_textbox01 .inner {
  position: relative;
  overflow: hidden;
  border: 0;
  border-radius: calc(var(--radius-lg) - 1px);
  padding: clamp(28px, 5vw, 52px);
  background: linear-gradient(145deg, rgba(7,16,24,.88), rgba(18,35,45,.8));
}
.x-mainimage_textbox01 .inner::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 10% 0%, rgba(228,200,117,.15), transparent 38%);
}
.x-mainimage_textbox01 .text01,
.x-mainimage_textbox01 .text11,
.x-mainimage_textbox01 .text21 {
  color: #fff8e5;
  text-wrap: balance;
}
.x-mainimage_textbox01 .text01 {
  font-size: clamp(30px, 4.2vw, 48px);
  letter-spacing: .07em;
}
.x-mainimage_textbox01 .text02 li {
  font-size: clamp(16px, 2.2vw, 20px);
  padding: 9px 0 9px 34px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.x-mainimage_textbox01 .text02 li::before {
  top: 10px;
  filter: sepia(1) saturate(.7) brightness(1.45);
}

.l-section00,
.l-section01 {
  max-width: 980px;
}
.l-section01 { padding-inline: clamp(20px, 6vw, 74px); }

.l-section01.frame01 {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding-top: clamp(32px, 6vw, 72px);
  padding-bottom: clamp(32px, 6vw, 72px);
  background: linear-gradient(150deg, rgba(18,29,40,.88), rgba(7,16,24,.74));
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(14px);
}
.l-section01.frame01::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255,255,255,.045);
  border-radius: calc(var(--radius-lg) - 10px);
  pointer-events: none;
}
.article__area p { max-width: 44em; margin: 24px auto; }

.x-opform {
  position: relative;
  margin-top: -50px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 5vw, 52px);
  background:
    radial-gradient(circle at 90% 0%, rgba(111,208,189,.16), transparent 34%),
    linear-gradient(145deg, #142230, #09131c);
  box-shadow: var(--shadow-lg), 0 0 70px rgba(111,208,189,.08);
}
.x-opform::before {
  content: "";
  display: block;
  margin-bottom: 12px;
  color: var(--mint);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .34em;
  text-align: center;
}
.x-opform .inner {
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 38px);
  color: #e8edf2;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px rgba(255,255,255,.08);
}
.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"]) {
  min-height: 58px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 14px;
  padding: 14px 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 9px 22px rgba(0,0,0,.18);
  transition: border-color .25s, box-shadow .25s, transform .25s;
}
.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: 1px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(228,200,117,.13), 0 12px 28px rgba(0,0,0,.2);
  transform: translateY(-1px);
}
.x-btn01,
.x-btn02 {
  filter: drop-shadow(0 18px 26px rgba(0,0,0,.28));
  transition: transform .25s cubic-bezier(.2,.8,.2,1), filter .25s;
}
.x-btn01:hover,
.x-btn02:hover {
  transform: translateY(-4px) scale(1.01);
  filter: drop-shadow(0 23px 36px rgba(228,200,117,.22));
}

.x-bg01 {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(111,208,189,.12), transparent 26rem),
    linear-gradient(135deg, #0f2230 0%, #071018 55%, #111d28 100%);
}
.x-bg01::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 35%, rgba(255,255,255,.025) 35.1%, transparent 35.3%);
}
.x-bg02 {
  background-attachment: fixed;
  background-blend-mode: soft-light;
  background-color: #0b1721;
}

.x-title01 {
  position: relative;
  overflow: hidden;
  border-block: 1px solid var(--line);
  padding: clamp(56px, 8vw, 96px) 24px;
  background:
    radial-gradient(circle at 50% -30%, rgba(228,200,117,.2), transparent 50%),
    linear-gradient(180deg, #111e2a, #08121a);
}
.x-title01::before {
  content: "";
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--mint);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .42em;
}
.x-title01 > span {
  padding-inline: 100px;
  color: var(--gold-bright);
  font-size: clamp(32px, 5.5vw, 58px);
  letter-spacing: .08em;
  text-wrap: balance;
  text-shadow: 0 10px 40px rgba(0,0,0,.55);
}
.x-title01 > span::before,
.x-title01 > span::after { filter: sepia(1) saturate(.65) brightness(1.3); opacity: .7; }
.x-title02 {
  color: var(--gold-bright);
  border-image: linear-gradient(90deg, transparent, var(--gold), transparent) 1;
  font-size: clamp(28px, 5vw, 46px);
  letter-spacing: .08em;
  text-wrap: balance;
}

.box1,
.box2 {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(22px, 4vw, 38px);
  background: linear-gradient(145deg, rgba(228,200,117,.07), rgba(255,255,255,.025));
  box-shadow: inset 0 1px rgba(255,255,255,.06), 0 20px 50px rgba(0,0,0,.2);
}
.box2 { border-color: rgba(111,208,189,.22); }

.x-result {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(20px, 4vw, 38px);
  background:
    radial-gradient(circle at 90% 10%, rgba(228,200,117,.12), transparent 35%),
    linear-gradient(145deg, #151e26, #09131c);
  box-shadow: 0 24px 55px rgba(0,0,0,.28);
  transition: transform .3s, border-color .3s;
}
.x-result:hover { transform: translateY(-4px); border-color: rgba(228,200,117,.48); }
.x-result .inner01 { border-bottom-color: var(--line); }
.x-result .text01 { color: var(--gold-bright); }
.x-result .text04 {
  color: var(--gold);
  background: linear-gradient(135deg, var(--gold-bright), #c89945);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.x-voice {
  border: 1px solid rgba(228,200,117,.27);
  border-radius: var(--radius-md);
  padding: clamp(24px, 5vw, 46px);
  color: #22303b;
  background: linear-gradient(145deg, #fffcf1, #e8eee9);
  box-shadow: 0 26px 60px rgba(0,0,0,.24);
  transition: transform .3s;
}
.x-voice:hover { transform: translateY(-3px); }
.x-voice .voice01 { overflow: hidden; border: 3px solid #fff; border-radius: 50%; box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.x-voice .title { border-bottom-color: rgba(34,48,59,.2); }

.comment {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(18px, 4vw, 34px);
  background: linear-gradient(150deg, #0d1d28, #111927);
  box-shadow: inset 0 1px rgba(255,255,255,.05);
}
.box_comment > div {
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 4px 15px 15px 15px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 24px rgba(0,0,0,.15);
}
.box_comment::before { filter: sepia(1) saturate(.55) brightness(1.45); }

.x-youkou tr { border-bottom-color: var(--line); }
.x-youkou th { color: var(--gold-bright); }
table { border-collapse: separate; border-spacing: 0; }
table:not(.x-youkou):not(.x-inputtable) {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.03);
}
table:not(.x-youkou):not(.x-inputtable) th { color: var(--gold-bright); background: rgba(228,200,117,.08); }
table:not(.x-youkou):not(.x-inputtable) td,
table:not(.x-youkou):not(.x-inputtable) th { border-color: rgba(255,255,255,.08) !important; }

.red,
.u-fntcolor--red { color: #ff968c !important; }
.yellow,
.u-fntcolor--yellow { color: var(--gold-bright) !important; }
.green { color: var(--mint); }
strong { color: #ff968c; text-decoration-color: rgba(255,150,140,.5); text-decoration-thickness: 1px; text-underline-offset: .18em; }

footer {
  position: relative;
  border-top: 1px solid var(--line);
  padding: clamp(46px, 8vw, 84px) 24px;
  background: #050c12;
}
footer::before {
  content: "";
  display: block;
  margin-bottom: 30px;
  color: var(--gold);
  font: 700 clamp(22px, 4vw, 36px)/1 var(--font-mincho);
  letter-spacing: .26em;
  text-align: center;
}
footer ul a { position: relative; color: #cbd5dc !important; font-size: 13px; }
footer ul a::after { content: ""; position: absolute; inset: auto 0 -6px; height: 1px; transform: scaleX(0); background: var(--gold); transition: transform .25s; }
footer ul a:hover::after { transform: scaleX(1); }
footer .copyright { color: #687784; font-size: 11px; letter-spacing: .1em; }

.l-pagetop { right: clamp(16px, 3vw, 34px); bottom: 22px; }
.l-pagetop a {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--gold-bright);
  background: rgba(12,24,34,.82);
  box-shadow: 0 14px 30px rgba(0,0,0,.28);
  backdrop-filter: blur(12px);
}
.l-pagetop a:hover { transform: translateY(-3px); }

@media (max-width: 980px) {
  .x-mainimage { min-height: auto; background-size: 1100px auto; }
  .x-mainimage_textbox01 { margin-inline: 20px; }
  .x-title01 > span { padding-inline: 0; }
  .l-section00 { padding-inline: 20px; }
}

@media (max-width: 560px) {
  body { line-height: 1.85; letter-spacing: .025em; }
  .x-mainimage { background-size: 900px auto; }
  .x-mainimage::after { display: none; }
  .x-mainimage_inner { padding-inline: 0; padding-bottom: 70px; }
  .x-mainimage_text01 { margin-top: 54px; padding-inline: 20px; }
  .x-mainimage_textbox01 { margin-inline: 14px; border-radius: 22px; }
  .x-mainimage_textbox01 .inner { border-radius: 21px; padding: 24px 20px; }
  .x-opform { margin: -36px 14px 0; border-radius: 22px; }
  .l-section00 { padding-inline: 14px; }
  .l-section01.frame01 { margin-inline: 14px; width: auto; border-radius: 22px; }
  .l-section01.frame01::before { inset: 10px; border-radius: 15px; }
  .x-title01 { padding-block: 68px 48px; }
  .x-title01 > span::before,
  .x-title01 > span::after { opacity: .45; }
  .floating-join { right: 14px; bottom: 82px; padding: 11px 15px; }
  footer ul { gap: 22px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .animeTrigger, .animeTrigger * { opacity: 1 !important; transform: none !important; filter: none !important; }
}

/* =====================================================================
   2026 v2 — complete art-direction change
   Ivory editorial / cobalt / vermilion / chartreuse
   ===================================================================== */
:root {
  --paper: #f4eedf;
  --paper-deep: #e8ddca;
  --charcoal: #171b1f;
  --cobalt: #1246a3;
  --cobalt-dark: #0b2f73;
  --vermilion: #ef3e24;
  --acid: #c8dd22;
  --soft-line: rgba(23, 27, 31, .16);
  --color-main1: var(--vermilion);
  --color-sub1: var(--cobalt);
  --color-sub2: #e7dfcf;
  --color-blk1: var(--charcoal);
  --color-blk2: #68665f;
  --color-wht: #fffdf7;
  --gold: var(--vermilion);
  --gold-bright: #ff5a3d;
  --mint: var(--acid);
  --line: var(--soft-line);
  --shadow-lg: 14px 16px 0 rgba(18, 70, 163, .12);
  --shadow-glow: none;
}

body {
  color: var(--charcoal);
  background:
    linear-gradient(90deg, rgba(18,70,163,.04) 1px, transparent 1px),
    var(--paper);
  background-size: 56px 100%;
  font-family: "Noto Sans JP", sans-serif;
}
body::before {
  opacity: .24;
  background-image: radial-gradient(rgba(23,27,31,.17) .55px, transparent .55px);
  background-size: 5px 5px;
  mask-image: none;
}
::selection { color: #fff; background: var(--vermilion); }
a:link, a:visited { color: var(--cobalt); }
a:hover { color: var(--vermilion); }

.reading-progress {
  height: 5px;
  background: linear-gradient(90deg, var(--vermilion) 0 44%, var(--acid) 44% 62%, var(--cobalt) 62%);
  box-shadow: none;
}

.x-mainimage {
  min-height: 1020px;
  overflow: visible;
  color: var(--charcoal);
  background: var(--paper) url(../img/hero-editorial-v2.png) center top / cover no-repeat;
}
.x-mainimage::before {
  background: linear-gradient(90deg, rgba(244,238,223,.3), transparent 52%);
}
.x-mainimage::after {
  content: "";
  top: 90px;
  right: 24px;
  color: var(--cobalt);
  writing-mode: vertical-rl;
  font-size: 9px;
  letter-spacing: .32em;
}
.x-mainimage_inner {
  max-width: 1280px;
  padding: 0 clamp(22px, 6vw, 86px) 84px;
}
.hero-copy {
  width: min(620px, 56vw);
  padding-top: clamp(110px, 14vw, 190px);
  text-align: left;
}
.hero-copy__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  color: var(--cobalt);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .28em;
}
.hero-copy__eyebrow::before {
  content: "";
  width: 54px;
  height: 7px;
  background: var(--acid);
}
.hero-copy h1 {
  margin: 0;
  color: var(--charcoal);
  font-family: var(--font-mincho);
  font-size: clamp(50px, 6.7vw, 92px);
  font-weight: 800;
  letter-spacing: -.055em;
  line-height: 1.08;
  text-wrap: balance;
}
.hero-copy h1 em {
  display: inline;
  color: var(--vermilion);
  font-style: normal;
  background: linear-gradient(transparent 76%, rgba(200,221,34,.8) 76%);
}
.hero-copy__lead {
  margin: 32px 0 0;
  padding-left: 18px;
  border-left: 5px solid var(--cobalt);
  color: #393b3c;
  font-size: clamp(15px, 1.8vw, 19px);
  font-weight: 700;
  letter-spacing: .08em;
}

.x-mainimage_textbox01 {
  width: min(700px, 63vw);
  margin: 70px 0 -170px;
  border: 0;
  border-radius: 0;
  color: var(--charcoal);
  background: #fffdf7;
  box-shadow: 16px 18px 0 var(--cobalt);
  backdrop-filter: none;
}
.x-mainimage_textbox01 .inner {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  padding: clamp(26px, 4vw, 48px);
  color: var(--charcoal);
  background: #fffdf7;
}
.x-mainimage_textbox01 .inner::before {
  inset: 12px 12px auto auto;
  width: 42px;
  height: 42px;
  background: var(--acid);
  clip-path: polygon(50% 0, 63% 37%, 100% 50%, 63% 63%, 50% 100%, 37% 63%, 0 50%, 37% 37%);
}
.x-mainimage_textbox01 .text01,
.x-mainimage_textbox01 .text11,
.x-mainimage_textbox01 .text21 {
  color: var(--cobalt);
  text-align: left;
}
.x-mainimage_textbox01 .text02 li {
  border-bottom-color: var(--soft-line);
}
.x-mainimage_textbox01 .text02 li::before { filter: none; }

.x-opform {
  margin-top: -20px;
  border: 0;
  border-radius: 0;
  padding: clamp(30px, 5vw, 62px);
  color: #fff;
  background: var(--cobalt);
  box-shadow: 18px 18px 0 var(--vermilion);
}
.x-opform::before { color: var(--acid); text-align: left; }
.x-opform .inner {
  border: 2px solid #fff;
  border-radius: 0;
  color: var(--charcoal);
  background: var(--paper);
  box-shadow: none;
}
.x-opform .u-fntcolor--yellow { color: var(--acid) !important; }

.l-container01 { margin-block: clamp(70px, 10vw, 140px); }
.l-section00, .l-section01 { max-width: 1040px; }
.l-section01.frame01 {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  color: var(--charcoal);
  background: rgba(255,253,247,.85);
  box-shadow: 16px 18px 0 rgba(18,70,163,.16);
  backdrop-filter: none;
}
.l-section01.frame01::before { display: none; }
.article__area p { max-width: 42em; }

.x-bg01 {
  color: #fff;
  background:
    linear-gradient(128deg, transparent 0 68%, var(--vermilion) 68% 71%, transparent 71%),
    var(--cobalt);
}
.x-bg01::after {
  opacity: .35;
  background: radial-gradient(circle, var(--acid) 1px, transparent 1.5px);
  background-size: 18px 18px;
  mask-image: linear-gradient(90deg, black, transparent 42%);
}
.x-bg02 {
  color: #fff;
  background-color: var(--cobalt-dark);
  background-blend-mode: multiply;
}

.x-title01 {
  justify-content: flex-start;
  border: 0;
  padding: clamp(64px, 9vw, 110px) max(24px, calc((100vw - 1040px) / 2));
  background: var(--vermilion);
}
.x-title01::before {
  top: 24px;
  left: max(24px, calc((100vw - 1040px) / 2));
  transform: none;
  color: var(--charcoal);
}
.x-title01 > span {
  padding: 0;
  color: #fffdf7;
  font-size: clamp(38px, 6vw, 70px);
  letter-spacing: -.025em;
  text-align: left;
  text-shadow: none;
}
.x-title01 > span::before,
.x-title01 > span::after { display: none; }
.x-title02 {
  color: var(--cobalt);
  border: 0;
  padding: 0 0 16px;
  text-align: left;
  background: linear-gradient(var(--acid), var(--acid)) left bottom / 110px 9px no-repeat;
}

.box1, .box2 {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  color: var(--charcoal);
  background: #fffdf7;
  box-shadow: 10px 10px 0 var(--acid);
}
.box2 { box-shadow: 10px 10px 0 rgba(18,70,163,.22); }

.x-result {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  color: var(--charcoal);
  background: #fffdf7;
  box-shadow: 10px 10px 0 rgba(239,62,36,.22);
}
.x-result:hover { border-color: var(--cobalt); transform: translate(-3px, -3px); }
.x-result .text01 { color: var(--cobalt); }
.x-result .text04 {
  color: var(--vermilion);
  background: none;
  -webkit-text-fill-color: currentColor;
}
.x-result .inner01 { border-bottom-color: var(--charcoal); }

.x-voice {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  background: #fffdf7;
  box-shadow: 12px 12px 0 var(--cobalt);
}
.x-voice .voice01 { border-radius: 0; border-color: var(--charcoal); box-shadow: 6px 6px 0 var(--acid); }
.comment {
  border: 0;
  border-radius: 0;
  background: var(--cobalt);
  box-shadow: 12px 12px 0 var(--vermilion);
}
.box_comment > div { border-radius: 0 14px 14px 14px; }

.red, .u-fntcolor--red { color: var(--vermilion) !important; }
.yellow, .u-fntcolor--yellow { color: #927600 !important; }
.green { color: #537000; }
strong { color: var(--vermilion); }

table:not(.x-youkou):not(.x-inputtable) {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  background: #fffdf7;
}
table:not(.x-youkou):not(.x-inputtable) th { color: #fff; background: var(--cobalt); }
.x-youkou th { color: var(--cobalt); }
.x-youkou tr { border-bottom-color: var(--soft-line); }

.floating-join {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  color: #fff !important;
  background: var(--vermilion);
  box-shadow: 7px 7px 0 var(--acid);
}
.floating-join:hover { box-shadow: 3px 3px 0 var(--acid); transform: translate(4px,4px); }
.floating-join.is-visible:hover { transform: translate(4px,4px); }
.l-pagetop a {
  border: 2px solid var(--charcoal);
  border-radius: 0;
  color: #fff;
  background: var(--cobalt);
  box-shadow: 5px 5px 0 var(--acid);
  backdrop-filter: none;
}

footer {
  border-top: 0;
  color: #fff;
  background: var(--charcoal);
}
footer::before { color: var(--acid); }
footer ul a { color: #fff !important; }
footer ul a::after { background: var(--vermilion); }

@media (max-width: 980px) {
  .x-mainimage { min-height: 980px; background-size: auto 720px; background-position: 48% top; }
  .hero-copy { width: 68vw; }
  .x-mainimage_textbox01 { width: calc(100% - 40px); margin-inline: 20px; }
}

@media (max-width: 680px) {
  body { background-size: 30px 100%; }
  .x-mainimage {
    min-height: auto;
    padding-bottom: 0;
    background-size: auto 510px;
    background-position: 58% top;
  }
  .x-mainimage::before { background: linear-gradient(180deg, rgba(244,238,223,.05), var(--paper) 510px); }
  .x-mainimage_inner { padding: 0 0 90px; }
  .hero-copy {
    width: auto;
    min-height: 560px;
    padding: 70px 20px 0;
  }
  .hero-copy__eyebrow { max-width: 220px; line-height: 1.5; }
  .hero-copy h1 {
    max-width: 360px;
    font-size: clamp(40px, 12.4vw, 66px);
    line-height: 1.12;
  }
  .hero-copy__lead { max-width: 270px; margin-top: 24px; }
  .x-mainimage_textbox01 {
    width: calc(100% - 42px);
    margin: 0 28px -140px 14px;
    box-shadow: 9px 10px 0 var(--cobalt);
  }
  .x-mainimage_textbox01 .inner { padding: 24px 18px; }
  .x-opform { margin: 30px 10px 0; box-shadow: 9px 10px 0 var(--vermilion); }
  .l-section01.frame01 { box-shadow: 8px 9px 0 rgba(18,70,163,.16); }
  .x-title01 { padding-inline: 20px; }
  .x-title01::before { left: 20px; }
}

/* Trust campaign date artwork: 9月26日 */
.page-trust .x-mainimage_text01 {
  aspect-ratio: 2.08 / 1;
  overflow: hidden;
  border: 3px solid rgba(255,214,138,.72);
  background: #fff;
  box-shadow: 14px 16px 0 rgba(255,119,46,.8);
}
.page-trust .x-mainimage_text01 img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}
@media (max-width: 680px) {
  .page-trust .x-mainimage_text01 {
    aspect-ratio: 1.78 / 1;
    border-width: 2px;
    box-shadow: 7px 8px 0 rgba(255,119,46,.8);
  }
}

/* =====================================================================
   v12 — curve-free headers with restrained edging and colored lettering
   ===================================================================== */
.page-pride .x-mainimage_text01::before,
.page-pride .x-mainimage_text01::after,
.page-believe .x-mainimage_text01::before,
.page-believe .x-mainimage_text01::after,
.hero-title-art::before,
.hero-title-art::after {
  content: none !important;
  display: none !important;
}

.page-pride .x-mainimage_text01 img {
  filter:
    drop-shadow(1px 0 0 rgba(255,253,247,.88))
    drop-shadow(-1px 0 0 rgba(255,253,247,.88))
    drop-shadow(0 1px 0 rgba(255,253,247,.88))
    drop-shadow(0 7px 14px rgba(18,70,163,.2)) !important;
}
.page-believe .x-mainimage_text01 img {
  filter:
    drop-shadow(1px 0 0 rgba(244,250,246,.9))
    drop-shadow(-1px 0 0 rgba(244,250,246,.9))
    drop-shadow(0 1px 0 rgba(244,250,246,.9))
    drop-shadow(0 7px 14px rgba(7,95,92,.2)) !important;
}

.hero-title-art {
  min-height: 0;
  padding: clamp(24px, 4vw, 48px) 12px;
  color: #f7e7bf;
  text-shadow:
    1px 0 rgba(36,16,47,.72),
    -1px 0 rgba(36,16,47,.72),
    0 1px rgba(36,16,47,.72),
    0 6px 12px rgba(0,0,0,.32);
}
.hero-title-art__date { color: #f7e7bf; }
.hero-title-art__date em { color: #ffb45c; }
.hero-title-art__amount { color: #ffe6bd; }

@media (max-width: 680px) {
  .hero-title-art {
    min-height: 0;
    padding: 20px 0 26px;
  }
}

/* Trust header lettering is code-native so its backdrop stays genuinely transparent. */
.page-trust .x-mainimage_text01,
.page-trust .x-mainimage_text01.v2 {
  aspect-ratio: auto;
  overflow: visible;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.hero-title-art {
  position: relative;
  display: grid;
  place-items: center;
  gap: clamp(8px, 1.2vw, 18px);
  min-height: clamp(300px, 39vw, 500px);
  padding: clamp(82px, 10vw, 132px) 12px;
  color: #fff;
  font-family: var(--font-mincho);
  font-weight: 800;
  line-height: 1.08;
  text-align: center;
  text-shadow:
    2px 0 #24102f, -2px 0 #24102f,
    0 2px #24102f, 0 -2px #24102f,
    0 8px 16px rgba(0,0,0,.5);
}
.hero-title-art::before,
.hero-title-art::after {
  content: "";
  position: absolute;
  left: 14%;
  width: 72%;
  height: 18%;
  border-radius: 50%;
  color: rgba(255,214,138,.82);
  pointer-events: none;
}
.hero-title-art::before {
  top: 7%;
  border-top: clamp(4px, .7vw, 9px) solid currentColor;
  box-shadow: 0 clamp(-10px, -.9vw, -5px) 0 clamp(-6px, -.4vw, -3px) currentColor;
  transform: rotate(-2.5deg) skewX(-12deg);
}
.hero-title-art::after {
  bottom: 7%;
  border-bottom: clamp(4px, .7vw, 9px) solid currentColor;
  box-shadow: 0 clamp(5px, .9vw, 10px) 0 clamp(-6px, -.4vw, -3px) currentColor;
  transform: rotate(-2.5deg) skewX(12deg);
}
.hero-title-art__date,
.hero-title-art__amount {
  position: relative;
  z-index: 1;
  display: block;
}
.hero-title-art__date {
  font-size: clamp(28px, 4.6vw, 62px);
}
.hero-title-art__date em {
  color: #ffe242;
  font-style: normal;
}
.hero-title-art__amount {
  font-size: clamp(36px, 6.1vw, 82px);
}
.hero-title-art__amount strong {
  color: #ffd66e;
  font-size: 1.32em;
  letter-spacing: -.04em;
  background: linear-gradient(180deg, #fff2aa 0%, #f5c339 46%, #fff0a0 72%, #c88d12 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media (max-width: 680px) {
  .hero-title-art {
    min-height: 330px;
    padding: 80px 0;
  }
  .hero-title-art::before,
  .hero-title-art::after {
    left: 7%;
    width: 86%;
    height: 14%;
  }
  .hero-title-art__date {
    font-size: clamp(24px, 7vw, 38px);
  }
  .hero-title-art__amount {
    font-size: clamp(30px, 8.8vw, 48px);
  }
}

/* v8 final cascade: responsive safety and outlined header lettering */
.page-pride .article__area .x-mainimage_textbox01,
.page-believe .article__area .x-mainimage_textbox01,
.page-trust .article__area .x-mainimage_textbox01 {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  transform: none !important;
}
.page-pride .x-mainimage_text01 img {
  filter:
    sepia(1) saturate(1.85) hue-rotate(356deg) brightness(.94) contrast(1.12)
    drop-shadow(2px 0 0 #171b1f) drop-shadow(-2px 0 0 #171b1f)
    drop-shadow(0 2px 0 #171b1f) drop-shadow(0 -2px 0 #171b1f)
    drop-shadow(0 12px 22px rgba(18,70,163,.28));
}
.page-believe .x-mainimage_text01 img {
  filter:
    drop-shadow(2px 0 0 #092f32) drop-shadow(-2px 0 0 #092f32)
    drop-shadow(0 2px 0 #092f32) drop-shadow(0 -2px 0 #092f32)
    drop-shadow(0 14px 24px rgba(8,61,66,.25));
}
.page-trust .x-mainimage_text01 img {
  filter:
    drop-shadow(2px 0 0 #24102f) drop-shadow(-2px 0 0 #24102f)
    drop-shadow(0 2px 0 #24102f) drop-shadow(0 -2px 0 #24102f)
    drop-shadow(0 14px 26px rgba(0,0,0,.3));
}
@media (max-width: 820px) {
  .page-pride .x-mainimage,
  .page-believe .x-mainimage,
  .page-trust .x-mainimage {
    min-height: auto;
    padding-bottom: 82px;
    background-size: auto max(720px, 100%);
    background-position: center top;
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01 {
    width: calc(100% - 16px);
  }
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-inline: auto;
  }
  .x-mainimage + .l-section00 {
    width: 100%;
    padding: 54px 16px 0;
  }
  .x-opform {
    max-width: 100%;
    padding: clamp(22px, 5vw, 38px);
  }
  .x-table_sc {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 560px) {
  .l-section00,
  .l-section01 {
    width: calc(100% - 24px);
    padding-inline: 12px;
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01,
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: 100%;
    max-width: 100%;
  }
  .x-mainimage_inner {
    padding-inline: 10px;
  }
  .x-mainimage_textbox01 .inner {
    padding: 22px 16px;
  }
  .x-mainimage_textbox01 .text02 li,
  .page-pride .x-mainimage_textbox01 .text02 li {
    padding-left: 30px;
    font-size: 15px;
    line-height: 1.65;
  }
  .x-opform {
    margin-inline: 0;
    padding: 22px 14px;
  }
  .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"]) {
    width: 100% !important;
    font-size: 16px;
  }
  .l-section01.frame01 {
    width: calc(100% - 20px);
    margin-inline: auto;
    padding: 28px 18px;
  }
  footer ul {
    flex-wrap: wrap;
  }
}

/* =====================================================================
   v8 — outlined hero lettering and complete responsive hardening
   ===================================================================== */
*, *::before, *::after {
  box-sizing: border-box;
}
html, body {
  max-width: 100%;
  overflow-x: clip;
}

/* Dark perimeter around every light portion of the header artwork. */
.page-pride .x-mainimage_text01 img {
  filter:
    sepia(1) saturate(1.85) hue-rotate(356deg) brightness(.94) contrast(1.12)
    drop-shadow(2px 0 0 #171b1f)
    drop-shadow(-2px 0 0 #171b1f)
    drop-shadow(0 2px 0 #171b1f)
    drop-shadow(0 -2px 0 #171b1f)
    drop-shadow(0 12px 22px rgba(18,70,163,.28));
}
.page-believe .x-mainimage_text01 img {
  filter:
    drop-shadow(2px 0 0 #092f32)
    drop-shadow(-2px 0 0 #092f32)
    drop-shadow(0 2px 0 #092f32)
    drop-shadow(0 -2px 0 #092f32)
    drop-shadow(0 14px 24px rgba(8,61,66,.25));
}
.page-trust .x-mainimage_text01 img {
  filter:
    drop-shadow(2px 0 0 #24102f)
    drop-shadow(-2px 0 0 #24102f)
    drop-shadow(0 2px 0 #24102f)
    drop-shadow(0 -2px 0 #24102f)
    drop-shadow(0 14px 26px rgba(0,0,0,.3));
}

img, svg, video, canvas, iframe {
  max-width: 100%;
}
img {
  height: auto;
}
.l-section00,
.l-section01,
.x-mainimage_inner,
.x-mainimage_textbox01,
.x-opform,
.article__area {
  min-width: 0;
}
.article__area,
.article__area p,
.article__area li,
.x-mainimage_textbox01 li,
td, th {
  overflow-wrap: anywhere;
  word-break: normal;
}
input, select, textarea, button {
  max-width: 100%;
}

@media (max-width: 1100px) {
  .l-section00,
  .l-section01 {
    width: calc(100% - 40px);
    padding-inline: clamp(18px, 4vw, 44px);
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01 {
    width: min(980px, 94vw);
  }
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: min(940px, 92vw);
  }
  .x-title01 {
    padding-inline: max(28px, 5vw);
  }
  .x-title01::before {
    left: max(28px, 5vw);
  }
}

@media (max-width: 820px) {
  :root {
    --margin-big: 64px;
    --margin-middle: 34px;
  }
  html, body {
    font-size: 15px;
  }
  .page-pride .x-mainimage,
  .page-believe .x-mainimage,
  .page-trust .x-mainimage {
    min-height: auto;
    padding-bottom: 88px;
    background-size: auto max(760px, 100%);
    background-position: center top;
  }
  .x-mainimage_inner {
    width: 100%;
    padding-inline: 16px;
  }
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: calc(100% - 12px);
    margin-inline: auto;
    box-shadow: 10px 11px 0 var(--vermilion);
  }
  .x-mainimage_textbox01 .inner {
    padding: clamp(22px, 5vw, 38px);
  }
  .x-mainimage_textbox01 .text01,
  .x-mainimage_textbox01 .text11 {
    font-size: clamp(25px, 6vw, 38px);
  }
  .x-mainimage_textbox01 .text21,
  .x-mainimage_textbox01 .text02 li {
    font-size: clamp(16px, 3.2vw, 21px);
  }
  .x-mainimage + .l-section00 {
    width: 100%;
    padding: 56px 16px 0;
  }
  .x-opform {
    padding: clamp(24px, 6vw, 42px);
    box-shadow: 10px 11px 0 var(--vermilion);
  }
  .x-title01 > span {
    font-size: clamp(34px, 8vw, 56px);
  }
  .x-title02 {
    font-size: clamp(26px, 6.5vw, 40px);
  }
  .x-voice .title_bg {
    align-items: flex-start;
  }
  .comment {
    height: min(600px, 70vh);
  }
  .x-table_sc {
    max-width: 100%;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
  }
}

@media (max-width: 560px) {
  :root {
    --margin-big: 46px;
    --margin-middle: 28px;
    --margin-small: 16px;
  }
  html, body {
    font-size: 14px;
    line-height: 1.78;
  }
  .l-section00,
  .l-section01 {
    width: calc(100% - 24px);
    padding-inline: 12px;
  }
  .page-pride .x-mainimage,
  .page-believe .x-mainimage,
  .page-trust .x-mainimage {
    padding-bottom: 62px;
    background-size: auto 610px;
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01 {
    width: 100%;
    padding-top: 14px;
  }
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: 100%;
    margin-top: 14px;
    box-shadow: 7px 8px 0 var(--vermilion);
  }
  .x-mainimage_textbox01 .inner {
    padding: 22px 16px;
  }
  .x-mainimage_textbox01 .text01,
  .page-pride .x-mainimage_textbox01 .text01 {
    margin-inline: 0;
    padding: 9px 12px;
    font-size: clamp(23px, 7.4vw, 32px);
    transform: none;
  }
  .x-mainimage_textbox01 .text02 li,
  .page-pride .x-mainimage_textbox01 .text02 li {
    padding: 12px 2px 12px 30px;
    font-size: 15px;
    line-height: 1.65;
  }
  .x-mainimage_textbox01 .man {
    width: 98px;
    margin-top: 14px;
  }
  .x-mainimage + .l-section00 {
    padding: 42px 12px 0;
  }
  .x-opform {
    margin-inline: 0;
    padding: 24px 14px;
    box-shadow: 7px 8px 0 var(--vermilion);
  }
  .x-opform .inner {
    padding: 18px 12px;
  }
  .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"]) {
    width: 100% !important;
    min-height: 52px;
    font-size: 16px;
  }
  .l-section01.frame01 {
    width: calc(100% - 20px);
    margin-inline: auto;
    padding: 28px 18px;
    box-shadow: 7px 8px 0 rgba(18,70,163,.16);
  }
  .article__area p {
    margin-block: 18px;
  }
  .x-title01 {
    padding: 58px 18px 42px;
  }
  .x-title01::before {
    left: 18px;
  }
  .x-title01 > span {
    font-size: clamp(30px, 9.6vw, 44px);
    line-height: 1.25;
  }
  .x-title02 {
    font-size: clamp(24px, 7.8vw, 34px);
  }
  .x-result,
  .x-voice,
  .box1,
  .box2 {
    padding: 20px 16px;
    box-shadow: 7px 8px 0 rgba(18,70,163,.2);
  }
  .x-result .text04 {
    font-size: clamp(34px, 12vw, 52px);
  }
  .x-voice .title_bg {
    align-items: center;
  }
  .x-voice .voice01 {
    width: 92px;
  }
  .x-inputtable,
  .x-inputtable tbody,
  .x-inputtable tr,
  .x-inputtable th,
  .x-inputtable td {
    display: block;
    width: 100%;
  }
  .x-inputtable th {
    padding: 12px 0 4px;
    white-space: normal;
  }
  .x-inputtable td {
    padding: 0 0 12px;
  }
  .floating-join {
    right: 10px;
    bottom: 72px;
    max-width: calc(100vw - 20px);
  }
  footer {
    padding-inline: 16px;
  }
  footer ul {
    flex-wrap: wrap;
    gap: 16px 24px;
  }
}

@media (max-width: 360px) {
  .x-mainimage_inner {
    padding-inline: 8px;
  }
  .x-mainimage_textbox01 .inner {
    padding-inline: 12px;
  }
  .x-mainimage_textbox01 .text02 li,
  .page-pride .x-mainimage_textbox01 .text02 li {
    padding-left: 26px;
    font-size: 14px;
  }
  .x-opform {
    padding-inline: 10px;
  }
  .floating-join {
    padding: 10px 12px;
    font-size: 12px;
  }
}

/* Nested offer/benefit panels must size against their article, not the viewport. */
.page-pride .article__area .x-mainimage_textbox01,
.page-believe .article__area .x-mainimage_textbox01,
.page-trust .article__area .x-mainimage_textbox01 {
  width: 100%;
  max-width: 100%;
  margin-inline: 0;
  transform: none;
}

/* Pride hero: make the declaration the dominant header element */
.page-pride .x-mainimage_inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.page-pride .hero-copy {
  position: relative;
  z-index: 3;
}
.page-pride .x-mainimage_textbox01 {
  position: relative;
  z-index: 8;
  width: min(920px, 86vw);
  margin: 46px auto -180px;
  color: #fff;
  background: var(--cobalt);
  box-shadow: 18px 18px 0 var(--vermilion);
  transform: translateX(4%);
}
.page-pride .x-mainimage_textbox01 .inner {
  border: 3px solid var(--charcoal);
  padding: clamp(30px, 4.5vw, 56px);
  color: #fff;
  background:
    linear-gradient(110deg, rgba(255,255,255,.05), transparent 55%),
    var(--cobalt);
}
.page-pride .x-mainimage_textbox01 .inner::before {
  width: 58px;
  height: 58px;
  background: var(--acid);
}
.page-pride .x-mainimage_textbox01 .text01 {
  display: inline-block;
  margin: 0 0 26px -58px;
  padding: 12px 32px 14px 58px;
  color: #fff;
  background: var(--vermilion);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.25;
  transform: rotate(-1.2deg);
  box-shadow: 7px 7px 0 var(--acid);
}
.page-pride .x-mainimage_textbox01 .text02 {
  margin: 0;
}
.page-pride .x-mainimage_textbox01 .text02 li {
  position: relative;
  border-bottom: 2px solid rgba(255,255,255,.24);
  padding: 15px 8px 15px 44px;
  color: #fff;
  font-size: clamp(18px, 2.25vw, 24px);
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.65;
  text-shadow: 0 2px 0 rgba(0,0,0,.18);
}
.page-pride .x-mainimage_textbox01 .text02 li:last-child {
  border-bottom: 0;
  color: #fff;
  background: linear-gradient(transparent 67%, rgba(200,221,34,.44) 67%);
}
.page-pride .x-mainimage_textbox01 .text02 li::before {
  top: 20px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--acid);
  box-shadow: 0 0 0 6px rgba(200,221,34,.14);
}
.page-pride .x-mainimage_textbox01 .text02 .u-fntcolor--yellow {
  color: var(--acid) !important;
  text-decoration-color: var(--acid);
  text-decoration-thickness: 3px;
  text-underline-offset: 5px;
}
.page-pride .x-mainimage_textbox01 .man {
  right: -34px;
  bottom: -38px;
  width: 150px;
  opacity: .22;
  filter: grayscale(1);
}

@media (max-width: 680px) {
  .page-pride .x-mainimage_textbox01 {
    width: calc(100% - 28px);
    margin: -44px 14px -140px;
    box-shadow: 9px 10px 0 var(--vermilion);
    transform: none;
  }
  .page-pride .x-mainimage_textbox01 .inner {
    padding: 28px 18px 24px;
  }
  .page-pride .x-mainimage_textbox01 .text01 {
    margin: 0 0 22px -28px;
    padding: 10px 18px 12px 28px;
    font-size: clamp(25px, 8vw, 36px);
  }
  .page-pride .x-mainimage_textbox01 .text02 li {
    padding: 13px 2px 13px 34px;
    font-size: 16px;
    line-height: 1.65;
  }
  .page-pride .x-mainimage_textbox01 .text02 li::before {
    top: 19px;
    width: 13px;
    height: 13px;
  }
  .page-pride .x-mainimage_textbox01 .man { display: none; }
}

/* Content lock revision: original wording/assets, centered header, clean form gap */
.x-mainimage {
  min-height: 0;
  padding-bottom: clamp(72px, 9vw, 124px);
  background-position: center top;
}
.x-mainimage_inner {
  display: block;
  max-width: 1120px;
  padding-bottom: 0;
}
.x-mainimage_text01,
.x-mainimage_text01.v2 {
  width: min(900px, 84vw);
  margin: 0 auto;
  padding-top: clamp(70px, 9vw, 122px);
}
.x-mainimage_text01 img {
  margin-inline: auto;
  filter: drop-shadow(0 9px 18px rgba(255,253,247,.72)) drop-shadow(0 2px 0 rgba(255,253,247,.7));
}
.page-pride .x-mainimage_textbox01,
.x-mainimage_textbox01 {
  position: relative;
  z-index: 8;
  width: min(920px, 86vw);
  margin: clamp(32px, 4vw, 54px) auto 0;
  transform: none;
}
.page-pride .x-mainimage_textbox01 {
  box-shadow: 18px 18px 0 var(--vermilion);
}
.page-pride + .x-opform,
.page-pride .x-opform {
  margin-top: 0;
}
.x-mainimage + .l-section00 {
  position: relative;
  z-index: 2;
  padding-top: clamp(58px, 8vw, 104px);
}
.x-mainimage + .l-section00 .x-opform {
  margin-top: 0;
}

@media (max-width: 680px) {
  .x-mainimage {
    padding-bottom: 64px;
    background-position: 58% top;
  }
  .x-mainimage_text01,
  .x-mainimage_text01.v2 {
    width: calc(100% - 28px);
    min-height: 0;
    margin: 0 auto;
    padding: 54px 0 0;
  }
  .page-pride .x-mainimage_textbox01,
  .x-mainimage_textbox01 {
    width: calc(100% - 28px);
    margin: 30px auto 0;
    transform: none;
  }
  .x-mainimage + .l-section00 {
    padding-top: 58px;
  }
}

/* Pride-only refinements: remove diagonal red stripe and use Trust-like gold heading */
.page-pride .x-bg01 {
  background: var(--cobalt);
}
.page-pride .x-mainimage_text01 img {
  filter:
    sepia(1)
    saturate(1.85)
    hue-rotate(356deg)
    brightness(.94)
    contrast(1.12)
    drop-shadow(0 3px 0 rgba(255,253,247,.92))
    drop-shadow(0 11px 20px rgba(18,70,163,.2));
}

/* =====================================================================
   2026 v6 — page-by-page AI art direction and oversized hero treatment
   ===================================================================== */
.page-pride .x-mainimage,
.page-believe .x-mainimage,
.page-trust .x-mainimage {
  min-height: 100svh;
  padding-bottom: clamp(110px, 12vw, 170px);
  background-size: cover;
  background-position: center;
}
.page-pride .x-mainimage {
  background-image: url(../img/hero-editorial-v2.png);
}
.page-believe .x-mainimage {
  background-image: url(../img/hero-believe-ai.png);
}
.page-trust .x-mainimage {
  background-image: url(../img/hero-trust-ai.png);
}
.page-pride .x-mainimage::before {
  background: linear-gradient(180deg, rgba(244,238,223,.04), rgba(244,238,223,.24) 55%, rgba(244,238,223,.9));
}
.page-believe .x-mainimage::before {
  background: linear-gradient(180deg, rgba(247,246,235,.02), rgba(236,245,240,.18) 48%, rgba(232,241,235,.94));
}
.page-trust .x-mainimage::before {
  background:
    radial-gradient(circle at center 30%, transparent 0 22%, rgba(25,8,44,.16) 56%),
    linear-gradient(180deg, rgba(18,4,34,.08), rgba(18,4,34,.28) 52%, rgba(18,4,34,.88));
}
.page-pride .x-mainimage::after,
.page-believe .x-mainimage::after,
.page-trust .x-mainimage::after {
  top: 34px;
  right: 28px;
  color: currentColor;
  opacity: .54;
}
.page-trust .x-mainimage::after { color: #fff3d1; }

.page-pride .x-mainimage_inner,
.page-believe .x-mainimage_inner,
.page-trust .x-mainimage_inner {
  max-width: 1320px;
  padding-inline: clamp(18px, 4vw, 58px);
}
.page-pride .x-mainimage_text01,
.page-believe .x-mainimage_text01,
.page-trust .x-mainimage_text01 {
  width: min(1080px, 92vw);
  padding-top: clamp(26px, 5vw, 68px);
}
.page-pride .x-mainimage_text01 img,
.page-believe .x-mainimage_text01 img,
.page-trust .x-mainimage_text01 img {
  width: 100%;
  max-height: 440px;
}
.page-believe .x-mainimage_text01 img {
  filter:
    sepia(.35)
    saturate(1.5)
    hue-rotate(112deg)
    brightness(.58)
    contrast(1.28)
    drop-shadow(0 4px 0 rgba(255,255,255,.82))
    drop-shadow(0 14px 24px rgba(8,61,66,.18));
}
.page-trust .x-mainimage_text01 img {
  filter: drop-shadow(0 7px 0 rgba(41,12,54,.6)) drop-shadow(0 18px 34px rgba(0,0,0,.46));
}

.page-pride .x-mainimage_textbox01,
.page-believe .x-mainimage_textbox01,
.page-trust .x-mainimage_textbox01 {
  width: min(1040px, 90vw);
  margin-top: clamp(20px, 3vw, 42px);
}
.page-believe .x-mainimage_textbox01 {
  color: #102b2d;
  background: rgba(244,250,246,.94);
  box-shadow: 18px 18px 0 #167d78;
}
.page-believe .x-mainimage_textbox01 .inner {
  border-color: #143b3c;
  color: #102b2d;
  background: rgba(244,250,246,.94);
}
.page-believe .x-mainimage_textbox01 .text01,
.page-believe .x-mainimage_textbox01 .text11,
.page-believe .x-mainimage_textbox01 .text21 { color: #075f5c; }
.page-trust .x-mainimage_textbox01 {
  color: #fff7df;
  background: rgba(37,12,54,.9);
  box-shadow: 18px 18px 0 #ff772e;
}
.page-trust .x-mainimage_textbox01 .inner {
  border-color: #ffcc73;
  color: #fff7df;
  background: rgba(37,12,54,.92);
}
.page-trust .x-mainimage_textbox01 .text01,
.page-trust .x-mainimage_textbox01 .text11,
.page-trust .x-mainimage_textbox01 .text21 { color: #ffd68a; }

.x-mainimage_textbox01 .man {
  position: absolute;
  right: clamp(18px, 3vw, 42px);
  bottom: clamp(18px, 3vw, 38px);
  width: clamp(112px, 13vw, 172px);
  aspect-ratio: 1;
  overflow: hidden;
  border: 5px solid #fffdf7;
  border-radius: 50%;
  object-fit: cover;
  opacity: 1;
  filter: none;
  box-shadow: 8px 9px 0 rgba(23,27,31,.26);
}
.x-mainimage_textbox01 .text02 {
  padding-right: clamp(0px, 16vw, 190px);
}

.page-believe .x-opform {
  background: #075f5c;
  box-shadow: 18px 18px 0 #f17c63;
}
.page-trust .x-opform {
  background: #321247;
  box-shadow: 18px 18px 0 #ff772e;
}
.page-trust .x-opform::before { color: #ffd066; }

.page-believe .x-title01 { background: #167d78; }
.page-believe .x-title01::before { color: #d8ed3c; }
.page-trust .x-title01 { background: #52206e; }
.page-trust .x-title01::before { color: #ffb24d; }
.page-believe .x-title02 { color: #075f5c; }
.page-trust .x-title02 { color: #52206e; background-image: linear-gradient(#ff9b42,#ff9b42); }

.page-believe .x-bg01 {
  background: #075f5c;
}
.page-trust .x-bg01 {
  background: #321247;
}
.page-believe .x-bg01::after { background-image: radial-gradient(circle, #b9db3d 1px, transparent 1.5px); }
.page-trust .x-bg01::after { background-image: radial-gradient(circle, #ff9b42 1px, transparent 1.5px); }

.x-voice .voice01 {
  width: clamp(90px, 12vw, 126px);
  aspect-ratio: 1;
  flex: 0 0 auto;
  border: 3px solid var(--charcoal);
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 6px 7px 0 var(--acid);
}
.page-believe .x-voice { box-shadow: 12px 12px 0 #167d78; }
.page-believe .x-voice .voice01 { box-shadow: 6px 7px 0 #a8d9cf; }
.page-trust .x-voice { box-shadow: 12px 12px 0 #52206e; }
.page-trust .x-voice .voice01 { box-shadow: 6px 7px 0 #ff9b42; }

img[src*="baken_"] {
  border: 8px solid #fffdf7;
  outline: 2px solid var(--charcoal);
  box-shadow: 10px 12px 0 rgba(18,70,163,.18);
  transform: rotate(-.45deg);
  transition: transform .3s ease, box-shadow .3s ease;
}
img[src*="baken_"]:hover {
  transform: rotate(0) translateY(-5px);
  box-shadow: 14px 18px 0 rgba(239,62,36,.18);
}
.page-believe img[src*="baken_"] { box-shadow: 10px 12px 0 rgba(22,125,120,.2); }
.page-trust img[src*="baken_"] { box-shadow: 10px 12px 0 rgba(82,32,110,.24); }

.page-believe footer::before { color: #80d2c6; }
.page-trust footer::before { color: #ffae54; }

@media (max-width: 680px) {
  .page-pride .x-mainimage,
  .page-believe .x-mainimage,
  .page-trust .x-mainimage {
    min-height: 100svh;
    padding-bottom: 74px;
    background-size: auto 720px;
    background-position: center top;
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01 {
    width: calc(100% - 12px);
    padding-top: 22px;
  }
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: calc(100% - 20px);
    margin-top: 10px;
  }
  .x-mainimage_textbox01 .text02 { padding-right: 0; }
  .x-mainimage_textbox01 .man {
    position: relative;
    right: auto;
    bottom: auto;
    display: block;
    width: 112px;
    margin: 18px auto 0;
  }
  .x-voice .title_bg { gap: 18px; }
  img[src*="baken_"] { border-width: 5px; }
}

/* Final Trust campaign date artwork override: 9月26日 */
.page-trust .x-mainimage_text01 {
  aspect-ratio: 2.08 / 1;
  overflow: hidden;
  border: 3px solid rgba(255,214,138,.72);
  background: #fff;
  box-shadow: 14px 16px 0 rgba(255,119,46,.8);
}
.page-trust .x-mainimage_text01 img {
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  object-position: center;
  filter: none;
}
@media (max-width: 680px) {
  .page-trust .x-mainimage_text01 {
    aspect-ratio: 1.78 / 1;
    border-width: 2px;
    box-shadow: 7px 8px 0 rgba(255,119,46,.8);
  }
}

/* Absolute final cascade for v8 */
.page-pride .article__area .x-mainimage_textbox01,
.page-believe .article__area .x-mainimage_textbox01,
.page-trust .article__area .x-mainimage_textbox01 {
  width: 100% !important;
  max-width: 100% !important;
  margin-inline: 0 !important;
  transform: none !important;
}
.page-pride .x-mainimage_text01 img {
  filter: sepia(1) saturate(1.85) hue-rotate(356deg) brightness(.94) contrast(1.12)
    drop-shadow(2px 0 #171b1f) drop-shadow(-2px 0 #171b1f)
    drop-shadow(0 2px #171b1f) drop-shadow(0 -2px #171b1f)
    drop-shadow(0 12px 22px rgba(18,70,163,.28));
}
.page-believe .x-mainimage_text01 img {
  filter: drop-shadow(2px 0 #092f32) drop-shadow(-2px 0 #092f32)
    drop-shadow(0 2px #092f32) drop-shadow(0 -2px #092f32)
    drop-shadow(0 14px 24px rgba(8,61,66,.25));
}
.page-trust .x-mainimage_text01 img {
  filter: drop-shadow(2px 0 #24102f) drop-shadow(-2px 0 #24102f)
    drop-shadow(0 2px #24102f) drop-shadow(0 -2px #24102f)
    drop-shadow(0 14px 26px rgba(0,0,0,.3));
}
@media (max-width: 820px) {
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: calc(100% - 20px);
    max-width: calc(100% - 20px);
    margin-inline: auto;
  }
  .page-pride .article__area .x-mainimage_textbox01,
  .page-believe .article__area .x-mainimage_textbox01,
  .page-trust .article__area .x-mainimage_textbox01 {
    width: 100% !important;
    max-width: 100% !important;
  }
  .x-mainimage + .l-section00 {
    width: 100%;
    padding-inline: 16px;
  }
  .x-table_sc {
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media (max-width: 560px) {
  .l-section00,
  .l-section01 {
    width: calc(100% - 24px);
    padding-inline: 12px;
  }
  .page-pride .x-mainimage_text01,
  .page-believe .x-mainimage_text01,
  .page-trust .x-mainimage_text01,
  .page-pride .x-mainimage_textbox01,
  .page-believe .x-mainimage_textbox01,
  .page-trust .x-mainimage_textbox01 {
    width: 100%;
    max-width: 100%;
  }
  .x-mainimage_inner {
    padding-inline: 10px;
  }
  .x-mainimage_textbox01 .text02 li {
    overflow-wrap: anywhere;
  }
  input, select, textarea, button {
    max-width: 100%;
  }
}

/* v9 header motif: modern sweeping racetrack curves */
.page-pride .x-mainimage_text01,
.page-believe .x-mainimage_text01 {
  position: relative;
  isolation: isolate;
}
.page-pride .x-mainimage_text01 img,
.page-believe .x-mainimage_text01 img {
  position: relative;
  z-index: 2;
}
.page-pride .x-mainimage_text01::before,
.page-pride .x-mainimage_text01::after,
.page-believe .x-mainimage_text01::before,
.page-believe .x-mainimage_text01::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 14%;
  width: 72%;
  height: 18%;
  pointer-events: none;
  border-radius: 50%;
}
.page-pride .x-mainimage_text01::before,
.page-believe .x-mainimage_text01::before {
  top: 8%;
  border-top: clamp(3px, .52vw, 7px) solid currentColor;
  box-shadow: 0 clamp(-8px, -.75vw, -4px) 0 clamp(-5px, -.35vw, -2px) currentColor;
  transform: rotate(-2.5deg) skewX(-12deg);
}
.page-pride .x-mainimage_text01::after,
.page-believe .x-mainimage_text01::after {
  bottom: 6%;
  border-bottom: clamp(3px, .52vw, 7px) solid currentColor;
  box-shadow: 0 clamp(4px, .75vw, 8px) 0 clamp(-5px, -.35vw, -2px) currentColor;
  transform: rotate(-2.5deg) skewX(12deg);
}
.page-pride .x-mainimage_text01 { color: rgba(18,70,163,.72); }
.page-believe .x-mainimage_text01 { color: rgba(7,95,92,.7); }

@media (max-width: 680px) {
  .page-pride .x-mainimage_text01::before,
  .page-pride .x-mainimage_text01::after,
  .page-believe .x-mainimage_text01::before,
  .page-believe .x-mainimage_text01::after {
    left: 10%;
    width: 80%;
    height: 15%;
  }
}

/* Final transparency override for the code-native Trust title. */
.page-trust .x-mainimage_text01,
.page-trust .x-mainimage_text01.v2 {
  aspect-ratio: auto !important;
  overflow: visible !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* =====================================================================
   v11 — cross-page readability and responsive cleanup
   ===================================================================== */

/* Remove decorative English labels throughout the public pages. */
.x-mainimage::after,
.x-opform::before,
.x-title01::before {
  content: none !important;
  display: none !important;
}
footer::before {
  content: "" !important;
  letter-spacing: .18em !important;
}
.p-faq__q > p:first-child::before { content: "問"; }
.p-faq__a > p:first-child::before { content: "答"; }

/* Remove marker-like bands that can continue into empty line space. */
.u-deco01,
.u-deco02,
.hero-copy h1 em,
.page-pride .x-mainimage_textbox01 .text02 li:last-child {
  background: none !important;
}

/* Keep every regular paragraph on the same horizontal reading axis. */
.article__area p {
  width: 100%;
  max-width: 42em;
  margin-right: auto;
  margin-left: auto;
  text-indent: 0;
}
.u-center--pc {
  text-align: center !important;
}

/* Strong individual-character edging for pale header artwork. */
.page-pride .x-mainimage_text01 img {
  filter:
    drop-shadow(3px 0 0 #171b1f)
    drop-shadow(-3px 0 0 #171b1f)
    drop-shadow(0 3px 0 #171b1f)
    drop-shadow(0 -3px 0 #171b1f)
    drop-shadow(0 14px 24px rgba(18,70,163,.34)) !important;
}
.page-believe .x-mainimage_text01 img {
  filter:
    drop-shadow(3px 0 0 #06383b)
    drop-shadow(-3px 0 0 #06383b)
    drop-shadow(0 3px 0 #06383b)
    drop-shadow(0 -3px 0 #06383b)
    drop-shadow(0 14px 24px rgba(8,47,50,.36)) !important;
}

/* On desktop, place the Pride portrait beside the declaration heading. */
@media (min-width: 681px) {
  .page-pride .x-mainimage_textbox01 .text01 {
    max-width: calc(100% - 158px);
  }
  .page-pride .x-mainimage_textbox01 .man {
    top: clamp(28px, 3.2vw, 42px);
    right: clamp(22px, 3vw, 38px);
    bottom: auto;
    width: clamp(112px, 11vw, 142px);
    opacity: 1;
    filter: none;
  }
}

/* Make the two supporting Trust promises prominent against the hero art. */
.page-trust .x-mainimage_textbox01 .text11 {
  margin: 0;
  border: 2px solid rgba(255,214,138,.92);
  padding: clamp(20px, 3vw, 34px);
  color: #fff !important;
  background: linear-gradient(135deg, rgba(45,14,65,.98), rgba(75,24,92,.96));
  box-shadow: 0 16px 36px rgba(0,0,0,.34), inset 0 0 28px rgba(255,174,84,.1);
  font-size: clamp(30px, 4.1vw, 52px);
  line-height: 1.45;
  text-align: center;
  text-shadow:
    2px 0 #190722, -2px 0 #190722,
    0 2px #190722, 0 -2px #190722,
    0 6px 14px rgba(0,0,0,.46);
}
.page-trust .x-mainimage_textbox01 .text11 .u-fntcolor--yellow {
  color: #ffe16f !important;
}
.page-trust .x-mainimage_text20 {
  width: min(960px, 92%);
  margin: clamp(34px, 5vw, 62px) auto 0;
  border: 2px solid rgba(255,193,102,.9);
  border-radius: 18px;
  padding: clamp(24px, 4vw, 42px) !important;
  color: #fff;
  background: linear-gradient(135deg, rgba(37,12,54,.96), rgba(74,22,84,.94));
  box-shadow: 0 20px 44px rgba(0,0,0,.38), inset 0 0 30px rgba(255,174,84,.12);
  font-size: clamp(30px, 4.3vw, 54px) !important;
  line-height: 1.35;
  text-shadow:
    2px 0 #190722, -2px 0 #190722,
    0 2px #190722, 0 -2px #190722,
    0 7px 16px rgba(0,0,0,.5);
}
.page-trust .x-mainimage_text20 .u-fntcolor--orange {
  color: #ffcb69 !important;
}

/* Show results tables in one view on phones instead of horizontal scrolling. */
@media (max-width: 560px) {
  .x-table_sc {
    width: 100%;
    max-width: 100%;
    overflow: visible !important;
  }
  .x-table_sc::before {
    content: none !important;
    display: none !important;
  }
  .x-table_sc table,
  .x-table_sc table#jisseki {
    width: 100% !important;
    min-width: 0 !important;
    table-layout: fixed;
    font-size: clamp(8px, 2.45vw, 11px);
  }
  .x-table_sc th,
  .x-table_sc td {
    width: auto !important;
    min-width: 0 !important;
    padding: 5px 2px !important;
    overflow-wrap: anywhere;
    word-break: break-word;
    white-space: normal !important;
    line-height: 1.35;
  }
  .page-pride .x-mainimage_textbox01 .man {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    opacity: 1;
    filter: none;
  }
  .page-trust .x-mainimage_textbox01 .text11 {
    padding: 18px 12px;
    font-size: clamp(24px, 7.2vw, 34px);
  }
  .page-trust .x-mainimage_text20 {
    width: 100%;
    border-radius: 12px;
    padding: 20px 12px !important;
    font-size: clamp(24px, 7.4vw, 34px) !important;
  }
}

/* Absolute final v12 cascade: no curves, subtle edging, colored type. */
.page-pride .x-mainimage_text01::before,
.page-pride .x-mainimage_text01::after,
.page-believe .x-mainimage_text01::before,
.page-believe .x-mainimage_text01::after,
.hero-title-art::before,
.hero-title-art::after {
  content: none !important;
  display: none !important;
  border: 0 !important;
  box-shadow: none !important;
}
.page-pride .x-mainimage_text01 img {
  filter:
    drop-shadow(1px 0 0 rgba(255,253,247,.88))
    drop-shadow(-1px 0 0 rgba(255,253,247,.88))
    drop-shadow(0 1px 0 rgba(255,253,247,.88))
    drop-shadow(0 7px 14px rgba(18,70,163,.2)) !important;
}
.page-believe .x-mainimage_text01 img {
  filter:
    drop-shadow(1px 0 0 rgba(244,250,246,.9))
    drop-shadow(-1px 0 0 rgba(244,250,246,.9))
    drop-shadow(0 1px 0 rgba(244,250,246,.9))
    drop-shadow(0 7px 14px rgba(7,95,92,.2)) !important;
}
.hero-title-art {
  min-height: 0;
  padding: clamp(24px, 4vw, 48px) 12px;
  color: #f7e7bf;
  text-shadow:
    1px 0 rgba(36,16,47,.72),
    -1px 0 rgba(36,16,47,.72),
    0 1px rgba(36,16,47,.72),
    0 6px 12px rgba(0,0,0,.32);
}
.hero-title-art__date { color: #f7e7bf; }
.hero-title-art__date em { color: #ffb45c; }
.hero-title-art__amount { color: #ffe6bd; }
@media (max-width: 680px) {
  .hero-title-art {
    min-height: 0;
    padding: 20px 0 26px;
  }
}

/* Absolute final v14: preserve the soft headline shadow and center every primary title. */
.page-pride .x-mainimage_text01 img,
.page-believe .x-mainimage_text01 img {
  filter: drop-shadow(0 5px 8px rgba(35, 38, 50, .16)) !important;
}
.x-title01 {
  justify-content: center !important;
  text-align: center !important;
}
.x-title01 > span {
  display: block;
  width: 100%;
  text-align: center !important;
}

/* Absolute final v16: shared motion system for every public page. */
body.motion-ready .motion-reveal {
  --motion-delay: 0ms;
  opacity: 0;
  filter: blur(5px);
  transform: translate3d(0, 42px, 0) scale(.985);
  transition:
    opacity .72s cubic-bezier(.2,.75,.25,1) var(--motion-delay),
    transform .82s cubic-bezier(.16,1,.3,1) var(--motion-delay),
    filter .72s ease var(--motion-delay);
  will-change: opacity, transform, filter;
}
body.motion-ready .motion-reveal[data-motion-origin="left"] {
  transform: translate3d(-46px, 18px, 0) rotate(-.5deg);
}
body.motion-ready .motion-reveal[data-motion-origin="right"] {
  transform: translate3d(46px, 18px, 0) rotate(.5deg);
}
body.motion-ready .motion-reveal.is-motion-visible {
  opacity: 1 !important;
  filter: none !important;
  transform: translate3d(0, 0, 0) scale(1) !important;
}
body.motion-ready .motion-media {
  clip-path: inset(0 0 14% 0 round 10px);
  transition:
    opacity .72s ease var(--motion-delay),
    transform .9s cubic-bezier(.16,1,.3,1) var(--motion-delay),
    filter .72s ease var(--motion-delay),
    clip-path .95s cubic-bezier(.16,1,.3,1) var(--motion-delay);
}
body.motion-ready .motion-media.is-motion-visible {
  clip-path: inset(0 0 0 0 round 0);
}
.x-mainimage.motion-hero .x-mainimage_inner {
  transform: translate3d(0, var(--motion-hero-y, 0), 0);
  will-change: transform;
}
.x-mainimage.motion-hero .x-mainimage_text01 {
  animation: motionHeroTitle 1.05s cubic-bezier(.16,1,.3,1) both;
}
.x-mainimage.motion-hero .x-mainimage_textbox01,
.x-mainimage.motion-hero .x-mainimage_text20 {
  animation: motionHeroCopy .95s cubic-bezier(.16,1,.3,1) .18s both;
}
.floating-join.is-visible {
  animation: motionJoinGlow 2.8s ease-in-out infinite;
}
@keyframes motionHeroTitle {
  0% { opacity: 0; filter: blur(8px); transform: translate3d(0,-24px,0) scale(.97); }
  100% { opacity: 1; filter: none; transform: translate3d(0,0,0) scale(1); }
}
@keyframes motionHeroCopy {
  0% { opacity: 0; filter: blur(7px); transform: translate3d(0,30px,0); }
  100% { opacity: 1; filter: none; transform: translate3d(0,0,0); }
}
@keyframes motionJoinGlow {
  0%, 100% { box-shadow: 5px 6px 0 rgba(0,0,0,.26), 0 0 0 0 rgba(255,255,255,0); }
  50% { box-shadow: 5px 6px 0 rgba(0,0,0,.26), 0 0 0 8px rgba(255,255,255,.16); }
}
@media (hover: hover) and (pointer: fine) {
  body.motion-ready .motion-media.is-motion-visible:hover {
    transform: translate3d(0,-5px,0) scale(1.012) !important;
    filter: saturate(1.06) contrast(1.02) !important;
  }
}
@media (max-width: 680px) {
  body.motion-ready .motion-reveal,
  body.motion-ready .motion-reveal[data-motion-origin="left"],
  body.motion-ready .motion-reveal[data-motion-origin="right"] {
    transform: translate3d(0, 28px, 0) scale(.99);
  }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto !important; }
  body.motion-ready .motion-reveal,
  body.motion-ready .motion-media,
  .x-mainimage.motion-hero .x-mainimage_text01,
  .x-mainimage.motion-hero .x-mainimage_textbox01,
  .x-mainimage.motion-hero .x-mainimage_text20,
  .floating-join.is-visible {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    clip-path: none !important;
    animation: none !important;
    transition: none !important;
  }
}

/* Absolute final v22: larger, smooth yellow Trust header amount. */
.page-trust .hero-title-art__amount strong {
  color: #fff200 !important;
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: #fff200 !important;
  -webkit-text-stroke: 0 transparent !important;
  font-size: 1.42em !important;
  font-weight: 800;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-shadow:
    0 4px 9px rgba(24, 12, 0, .62),
    0 0 12px rgba(255, 242, 0, .3);
}
@media (max-width: 680px) {
  .page-trust .hero-title-art__amount strong {
    font-size: 1.38em !important;
  }
}

/* Absolute final v18: keep the Trust portrait above every headline layer. */
.page-trust .x-mainimage_textbox01 .man {
  position: relative;
  z-index: 30 !important;
  isolation: isolate;
}
@media (min-width: 681px) {
  .page-trust .x-mainimage_textbox01 .man {
    position: absolute;
  }
}

/* Absolute final v19: silhouette-free, warm Trust comment panel. */
.page-trust .comment {
  border: 1px solid rgba(255, 190, 104, .58);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 156, 69, .2), transparent 34%),
    linear-gradient(145deg, #55234f 0%, #331a3d 52%, #24142f 100%);
  box-shadow:
    12px 14px 0 rgba(82, 32, 110, .18),
    inset 0 1px rgba(255, 255, 255, .1);
  scrollbar-color: #e99a45 #2b1735;
}
.page-trust .box_comment::before {
  content: none !important;
  display: none !important;
  background: none !important;
}
.page-trust .box_comment > div {
  margin-left: 0;
  border: 1px solid rgba(105, 54, 87, .24);
  border-left: 5px solid #e99a45;
  border-radius: 10px 16px 16px 10px;
  background: #fffaf1;
  box-shadow: 0 9px 22px rgba(20, 8, 28, .2);
}

/* Absolute final v23: voice cards are now text-only. */
.x-voice .title_bg {
  display: block;
  width: 100%;
  gap: 0 !important;
}
.x-voice .title {
  width: 100%;
  margin-inline: 0;
}

/* Absolute final v26: one stable reading axis for desktop copy. */
@media (min-width: 821px) {
  .article__area p {
    width: min(100%, 44rem);
    max-width: 44rem;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0;
    padding-left: 0;
    text-indent: 0 !important;
  }

  .article__area p:not(.center):not(.u-center):not(.u-center--pc):not(.title),
  .article__area .box1:not(.center) p,
  .article__area .box2:not(.center) p {
    text-align: left !important;
  }

  .article__area .center p,
  .article__area p.center,
  .article__area p.u-center,
  .article__area p.u-center--pc {
    text-align: center !important;
  }

  .article__area ul:not([class]),
  .article__area ul.checklist,
  .article__area ol:not([class]) {
    width: min(100%, 44rem);
    max-width: 44rem;
    margin-right: auto;
    margin-left: auto;
  }

  .x-voice p,
  .p-faq p {
    width: 100%;
    max-width: none;
  }
}

/* Final static-mode override: consistent rendering on every device. */
html {
  scroll-behavior: auto !important;
}
*,
*::before,
*::after {
  animation: none !important;
  transition: none !important;
}
.animeTrigger,
.animeTrigger *,
.animetion,
.anime_up,
.anime_focus,
.motion-reveal,
.motion-media,
.is-motion-visible,
.x-mainimage.motion-hero .x-mainimage_inner,
.x-mainimage.motion-hero .x-mainimage_text01,
.x-mainimage.motion-hero .x-mainimage_textbox01,
.x-mainimage.motion-hero .x-mainimage_text20 {
  opacity: 1 !important;
  visibility: visible !important;
  filter: none !important;
  transform: none !important;
  clip-path: none !important;
  will-change: auto !important;
}
.reading-progress {
  display: none !important;
}
.floating-join,
.floating-join.is-visible {
  opacity: 1 !important;
  transform: none !important;
}
