@charset "utf-8";
:root {
  --color-main1: #22A32A;
  --color-main2: #306C2B;
  --color-main3: #133807;
  --color-sub1: #69240F;
  --color-sub2: #DCB883;
  --color-sub3: #FFF7EA;
  --color-sub4: #EBE3DA;
  --color-blk1: #363636;
  --color-blk2: #737373;
	--color-blk3: #cccccc;
  --color-blk4: #E9E9E9;
  --color-yellow: #FFEB05;
  --color-wht: #FFFFFF;
  --margin-big: 100px;
  --margin-middle: 60px;
  --margin-small: 40px;
  --margin-col: 40px;
  --container-w1: 60px;
  --container-w2: 30px;
  --header-hight: 80px;
  --font02: "Noto Serif JP", serif;
  --font03: "Yuji Syuku", serif;
  --rp120:120px;
  --rp100:100px;
  --rp80:80px;
  --rp60:60px;
  --rp40:40px;
  --rp20:20px;
}
@media screen and (max-width: 1080px) {
  :root {
    --margin-big: 80px;
    --margin-middle: 40px;
    --margin-small: 20px;
    --margin-col: 20px;
    --container-w1: 30px;
    --header-hight: 60px;
    --rp120:100px;
    --rp100:80px;
    --rp80:60px;
    --rp60:40px;
    --rp40:20px;
  }
}
@media screen and (max-width: 560px) {
  :root {
    --margin-big: 60px;
    --margin-middle: 40px;
    --container-w1: 20px;
    --container-w2: 20px;
    --rp120:80px;
    --rp100:60px;
    --rp80:40px;
    --rp60:20px;
  }
}
/*==================================================================*/
html, body {
  width: 100%;
  word-wrap: break-word;
  word-break: break-all;
}
@media screen and (max-width: 1080px) {
  html, body {
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  html, body {
    font-size: 16px;
  }
}
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: #FFF;
  font-weight: 400;
}
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: 20px 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;
}
a {
	transition: color,opacity .3s ease;
}
a:link {
	color: inherit;
	text-decoration: none;
}
a:visited {
	color: var(--color-blk1);
	text-decoration: none;
}
a:hover {
  opacity: .6;
	text-decoration: none;
}
@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
button{
	transition: opacity .3s ease;
}
button:hover{
  opacity: .6;
}
.navskip { display: none; }

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


/*---------------*/
header{
	display: flex;
	justify-content: space-between;
	width: 100%;
  padding: 0 0;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  transition: .5s;
  background: var(--color-main1);
}
  #header_gnav.main_area header{
    background: rgba(0, 0, 0, 0.8);
  }
@media screen and (max-width: 1080px) {
header{
  height: 60px;
}
  #header_gnav.main_area header{
    background: rgba(0, 0, 0, 0.8);
  }
}
/*---------------*/
.l-logo{
  display: flex;
  align-items: center;
  margin-left: 40px;
}
.l-logo__img{
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 1080px) {
  .l-logo{
    padding-right: 60px;
      margin-left: 20px;
  }
}
@media screen and (max-width: 560px) {
  .l-logo__img img{
    width: 120px;
  }
    .l-logo__img span{
    font-size: 12px;
  }
}
/*---------------*/
.l-gnav__bg{
  display: flex;
  align-items: center;
  padding-right: 40px;
}
.l-gnav{
	display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    max-width: 560px;
    height: calc(100vh - var(--header-hight));
    max-height: 100vh;
    background-color: var(--color-sub2);
    top: 60px;
    right: 0;
    padding: 20px;
    overflow-y: auto;
    background: var(--color-main2);
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .l-gnav {
    display: none;
    position: fixed;
    width: 100vw;
    height: auto;
    max-height: 80vh;
    right: initial;
    left: 0;
    padding: 0 20px 20px;
    overflow-y: auto;

    font-size: 16px;
  }
}
/*---------------*/
.l-gnav__main{
	display: flex;
}
.l-gnav__item{
  font-weight: 600;
  border-right: 1px solid var(--color-wht);
  display: flex;
  justify-content: center;
}
.l-gnav__item:last-child{
  border-right: none;
}
.l-gnav__item a:hover{
  text-decoration: none;
}
.l-gnav__main .l-gnav__item > a{
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #FFF;
  height: 100%;
  text-align: center;
  padding: 0 20px;
  line-height: calc(1em + 4px);
  font-weight: 700;
}
.c-gnav__btn01{
  background: var(--color-wht);
  border: 1px solid var(--color-main2);
  padding: 4px 16px;
  border-radius: 60px;
  box-shadow: 0 0 8px rgba(208, 221, 209, 0.5) inset ;
  font-weight: 700;
}
.l-gnav__item_sub{
  text-align: center;
}
@media screen and (max-width: 1080px) {
  .l-gnav__main{
    display: block;
    border-radius: 0;
  }
  .l-gnav__item {
    display: block;

    border-bottom: 1px solid var(--color-wht);
    border-right: none !important;

  }
  .l-gnav__main .l-gnav__item > a{
    height: auto;
      padding: 20px 20px;
  }
  .l-gnav__main .l-gnav__item > a:hover::after{
    display: none;
  }
  .l-gnav__item_sub{
    margin-top: 20px;
  }
}
/*---------------*/
.l-gnav__current.current{
  font-weight: 700;
  color: var(--color-main1) !important;
}
.l-gnav__main .l-gnav__item > a.l-gnav__current.current::after{
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .l-gnav__main .l-gnav__item > a.l-gnav__current.current::after{
    width: 0;
  }
}
/*---------------*/
.l-gnav__sub{
	display: flex;
  justify-content: flex-end;
  margin-bottom: 8px;
}
.l-gnav__sub > li{
	font-size: 0.8em;
}
.l-gnav__sub > .l-gnav__item{
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1080px) {
  .l-gnav__sub{
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 20px 0 0 0;
  }
  .l-gnav__sub > li{
    font-size: 0.9em;
  }
  .l-gnav__sub > .l-gnav__item{
    width: calc(50% - 10px);
    border-right: 1px solid var(--color-sub1);
    padding-right: 1em;
    margin-right: 20px;
  }
  .l-gnav__sub > .l-gnav__item:nth-child(2n){
    margin-right: 0;
  }
  .l-gnav__sub > .l-gnav__item a{
    display: block;
    width: 100%;
  }
  .l-gnav__sub > .l-gnav__item:has( > .p-sns__link){
    border: none;
    margin-right: 0;
    width: 100%;
  }
  .l-gnav__sub > .l-gnav__item:has( > .p-search__area){
    border: none;
    margin-right: 0;
    width: 100%;
  }
}
/*---------------*/
#navbtn {
  display: none;
}
@media screen and (max-width: 1080px) {
  #navbtn {
    position: absolute;
    right: 0;
    top: 0;
    padding: 0;
    outline: none;
    border: none;
    background: var(--color-main2);
    width: 60px;
    height: 60px;
    cursor: pointer;
    display: inline-block;
    z-index: 999;
    transition: .3s;
    padding: 0 16px;
    border: 1px solid var(--color-wht);
    border-radius: 4px;
    transform: scale(0.8);
  }
  #navbtn:before, #navbtn:after {
    content: "";
    display: block;
    height: 2px;
    background-color: var(--color-wht);
    transform: translateY(0);
    transition: 0.3s ease-in-out;
  }
  #navbtn:before {
    transform: translateY(-14px);
    box-shadow: 0 8px var(--color-wht);
  }
  #navbtn > span {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 8px;
    margin: auto;
    font-size: 12px;
    letter-spacing: -0.1em;
    font-weight: 700;
    color: var(--color-wht);
    line-height: 1;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .menuopen {
    overflow: hidden;
  }
  .menuopen body {
    overflow: hidden;
  }
  .menuopen #navbtn:before {
    transform: translateY(-6px) rotate(-45deg);
    box-shadow: none;
  }
  .menuopen #navbtn:after {
    transform: translateY(-8px) rotate(45deg);
    box-shadow: none;
  }
}
#menu__overlay {
  display: none;
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 50;
}
/*---------------*/
.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);
	border-radius: 4px 0 0 4px;
  color: var(--color-blk1);
}
.l-pagetop a:hover {
  text-decoration: none !important;
}
/*---------------*/
.l-container01 {
  margin: 0 auto;
}
.l-container01.bg__contact {
  background: var(--color-sub2);
  margin: 0;
  padding: var(--margin-middle) 0;
}
/*---------------*/
.l-section01 {
  max-width: calc(1000px + (var(--container-w1) * 2));
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--container-w1);
}
@media screen and (max-width: 1080px) {
  .l-section01 {
    max-width: calc(1120px + (var(--container-w1) * 2));
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--container-w1);
  }
}
/*---------------*/
.l-footer{
  border-top: 1px solid var(--color-sub1);
  padding: var(--container-w1);
}
.l-footer__inner{
  display: flex;
  justify-content: space-between;
}
.l-footer__logo{
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.l-footer__nav{
  display: flex;
  justify-content: flex-end;
}
.l-footer__nav__mainmenu{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
}
.l-footer__nav__mainmenu > li{
  margin: 0 40px 40px 0;
}
.l-footer__nav__mainmenu > li > a{
  font-weight: 700;
}
/* .l-footer__nav__childmenu > li{
  margin-left: 1em;
} */
.l-footer__nav__childmenu > li > a{
  font-size: .9em;
}
.l-footer__nav__submenu{
  border-left: 1px solid var(--color-sub1);
  padding-left: 40px;
}
.l-footer__nav__submenu > li{
  margin-bottom: 10px;
}
.l-footer__nav__submenu > li > a{
  font-size: .9em;
}
.l-footer__bottom{
  margin-top: 40px;
}
.l-footer__bottom > p{
  margin: 0;
}
@media screen and (max-width: 1080px) {
  .l-footer__inner{
    flex-direction: column-reverse;
  }
  .l-footer__logo{
    margin: 0;
    width: 100%;
    text-align: center;
  }
  .l-footer__logo img{
    margin: auto;
  }
  .l-footer__nav{
    margin: 0;
    width: 100%;
    flex-wrap: wrap;
  }
  .l-footer__nav__mainmenu{
    margin: 0;
    width: 100%;
    flex: auto;
    justify-content: center;
  }
  .l-footer__nav__mainmenu > li{
    margin: 0 20px 40px;
  }
  .l-footer__nav__submenu {
    border-left: none;
    padding-left: 0;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 0 40px;
  }
  .l-footer__nav__submenu > li {
    margin: 10px;
  }
}
@media screen and (max-width: 560px) {
  .l-footer__nav__mainmenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
  .l-footer__nav__submenu > li{
    margin: 0 0 20px;
    width: 100%;
  }
}
/*---------------*/
.l-sub__nav__title{
  margin-left: 20px;
  margin-bottom: 20px;
  font-size: 1.2em;
  font-weight: 700;
}
.l-sub__nav__menu{
  margin-left: 20px;
}
.l-sub__nav__menu > li{
  margin-bottom: 10px;
}
.l-sub__nav__menu > li a{
  color: var(--color-main1);
}
@media screen and (max-width: 1080px) {
  .l-sub__nav__menu{
    margin-left: 0;
    padding: 20px;
    border-top: 1px solid var(--color-sub1);
    border-bottom: 1px solid var(--color-sub1);
  }
}
/*---------------*/
.l-2column{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1240px;
  width: 100%;
  margin: var(--margin-middle) auto var(--margin-big);
  padding: 0 var(--container-w1);
}
.l-2column__main{
  width: 75%;
}
.l-2column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-2column__sub{
  width: calc(25% - 40px);
  border-left: 1px solid var(--color-sub1);
}
@media screen and (max-width: 1080px) {
  .l-2column__main{
    width: 100%;
  }
  .l-2column__sub{
    width: 100%;
    border: none;
    margin-top: var(--margin-big);
  }
}
/*---------------*/
#contents{
  padding-top: var(--rp40);
}
.l-3column{
  display: flex;
  gap: 40px;
  max-width: 1280px;
  width: 100%;
  margin: auto;
}
.l-3column__main{
  flex: 1;
  order: 2;
}
.l-3column__main .l-container01:first-child{
  margin-top: 0;
  margin-bottom: 0;
}
.l-3column__sub1{
  width: 240px;
  order: 1;
}
.l-3column__sub2{
  width: 240px;
  order: 3;
}
@media screen and (max-width: 1080px) {
  .l-3column{
    flex-direction: column;
    padding: 0 40px;
    gap: 80px;
  }
  .l-3column__main{
    width: 100%;
    order: 1;
  }
  .l-3column__sub1{
    width: 100%;
    order: 2;
  }
  .l-3column__sub2{
    width: 100%;
    order: 3;
  }
}
@media screen and (max-width: 560px) {
  .l-3column{
    flex-direction: column;
    padding: 0 20px;
  }
}

/*---------------*/
.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%;
  gap: var(--rp40);
}
.l-row .col2__2 > li.text > p {
  margin: initial;
}
.l-row .col2__2 > li.text {
  flex: 1;
}
.l-row .col2__2 > li.img {
  max-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%;
    max-width: initial;
  }
    .l-row .col2__2 > li.img img {
    margin: auto
  }
}
.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;
  }
}
#layer_contents{
  background: #FFF;
  color: var(--color-blk1);
  padding: 0.01em 0;
}
#layer_contents02{
  background: #000;
  color: var(--color-wht);
  padding: 0.01em 0;
}
/*==================================================================*/
/*-------------------------------------------*/
.p-topics > li {
  border-bottom: 1px solid var(--color-sub1);
}
.p-topics > li:last-child {
  border-bottom: none;
}
.p-topics > li > a {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  text-decoration: none;
  padding: 10px 0 20px;
  color: var(--color-blk1) !important;
}
.p-topics > li > a:first-child {
  padding: 0 0 20px;
}
.p-topics > li > a > .day {
  margin: 10px 20px 0 0;
}
.p-topics > li > a > .category {
  margin: 10px 20px 0 0;
  padding: 0 5px;
  background: var(--color-sub2);
  width: 10em;
  text-align: center;
  font-size: 0.8em;
}
.p-topics > li > a > .title {
  width: 100%;
  margin: 10px 0 0 0;
  color: var(--color-main1) !important;
  font-weight: 500;
}
.p-topics > li > a:hover > .title {
  text-decoration: underline;
}
@media screen and (max-width: 1080px) {
  .p-topics > li > a > .title {
    flex: auto;
    width: 100%;
  }
}
/*---------------*/
.p-pager ul {
  display: flex;
  justify-content: center;
  margin: var(--margin-big) 0 0;
  flex-wrap: wrap;
}
.p-pager li {
  margin: 0 5px 10px;
}
.p-pager li a {
  text-decoration: none;
  color: var(--color-main1);
  background: var(--color-sub2);
  padding: 0.5em 1em;
  display: inline-block;
}
.p-pager li a:hover {
  opacity: 0.6;
}
.p-pager li.active a {
  font-weight: bold;
  background: var(--color-main1);
  color: #FFF;
}
/*---------------*/
.p-map iframe{
  width: 100%;
  height: 50vh;
  border: none;
}
/*---------------*/
.p-pageimage{
	background: url(../img/sv01_bg02.png) left center / auto no-repeat #000;
	width: 100%;
	height: 352px;
  margin-top: var(--header-hight);
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
}
.p-pageimage__bg{
  padding: 20px;
}
.p-pageimage__bg > h2{
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  text-shadow: 0 0 8px #000;
  position: relative;
  line-height: 64px;
}
.p-pageimage__bg > h2::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  transform: translateY(calc(-100% - 20px));
  width: 60px;
  height: 60px;
  background: url(../img/logo10.svg) center center / auto 100% no-repeat;
}
.p-pageimage__bg > p{
  margin: 20px 0 0;
  text-align: center;
  font-size: 1.2em;
}
@media screen and (max-width: 940px) {
.p-pageimage{
	background: url(../img/sv01_bg02.png) center center / auto no-repeat #000;
}
}
/*---------------*/
.p-breadcrumb {
  width: 100%;
  max-width: calc(1280px + (40px * 2));
  padding: 20px 40px 0;
  margin: auto;
  position: relative;
  z-index: 2;
}
.p-breadcrumb__item {
  display: inline;
  font-size: 0.9rem;
  text-decoration: none;
}
.p-breadcrumb__item:not(:last-child):after {
  content: "＞";
  font-weight: 700;
  margin: 0 .5em;
  color: var(--color-main1);
}
.p-breadcrumb__item a {
  margin-right: 5px;
  font-weight: 400;
  color: var(--color-blk1) !important;
}
.p-breadcrumb__item:last-child a {
  pointer-events: none;
  color: var(--color-main2) !important;
  font-weight: 700;
}
@media screen and (max-width: 560px) {
  .p-breadcrumb {
    max-width: calc(1280px + (20px * 2));
    padding: 20px 20px 20px;
  }
}
/*---------------*/
.p-sns__link{
  display: flex;
  align-items: center;
  vertical-align: middle;
}
.p-sns__link > a{
  display: block;
  width: calc(1rem);
  height: calc(1rem);
  margin-right: 1rem;
}
.p-sns__link > a:last-child{
  margin-right: 0;
}
.p-sns__link > a > img{
  width: calc(1rem);
}
@media screen and (max-width: 1080px) {
  .p-sns__link > a{
    width: 40px;
    height: 40px;
  }
  .p-sns__link > a > img{
    width: 40px;
  }
}
/*---------------*/
.p-search__area{
  display: inline-block;
}
.p-search__area form{
  display: flex;
  align-items: center;
  position: relative;
}
.p-search__area input.input__text{
  -webkit-appearance:none;
  width: 130px;
  height: calc(1em * 1.8);
  padding: 0 20px 0 1em;
  border: none;
  border-radius: 50px;
  background:var(--color-sub2) !important;
  background-size: 25px 25px;
  transition: all 0.5s;
  outline: none;
}
.p-search__area input.input__text::placeholder{
  color: var(--color-blk2);
  font-weight: 700;
  line-height: 1;
  font-size: 0.9em;
  letter-spacing: 0.1em;
}
.p-search__area input.input__text:focus{
  width: 200px;
}
.p-search__area input.icon__search{
  width: calc(1em * 1.8 - 6px);
  position: absolute;
  top: 0;
  right: 6px;
  bottom: 0;
  margin: auto;
  background: none;
}
.p-search__area input.icon__search:hover{
  opacity: .5;
}
@media screen and (max-width: 1080px) {
  .p-search__area{
    display: block;
    width: 100%;
  }
  .p-search__area input.input__text{
    width: 100%;
    height: calc(1.6em* 1.8);
  }
  .p-search__area input.input__text:focus{
    width: 100%;
  }
  .p-search__area input.icon__search{
    right: 20px;
  }
}
/*---------------*/
/* form-nav */
.p-formstep {
  display: flex;
  flex-wrap: wrap;
}
.p-formstep > li {
    flex: 1;
    text-align: center;
    position: relative;
    padding: 13px 0;
    line-height: 1.5;
    background: var(--color-sub1);
    color: #999999;
    height: 74px;
    display: flex;
    justify-content: center;
    align-items: center;
    align-content: center;
    flex-wrap: wrap;
}
.p-formstep > li > .nm {
  width: 100%;
  display: block;
  font-weight: 700;
}
.p-formstep > li > .tx {
  width: 100%;
  display: block;
}
.p-formstep > li:not(:last-child)::before,
.p-formstep > li:not(:last-child)::after {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 100%;
    content: '';
    border: 37px solid transparent;
    border-left: 20px solid var(--color-sub1);
    margin: auto;
}
.p-formstep > li:not(:last-child)::before {
    margin-left: 1px;
    border-left-color: #FFF;
}
@media screen and (max-width: 560px) {
  .p-formstep {
    display: block;
  }
  .p-formstep > li:not(:last-child)::before,
  .p-formstep > li:not(:last-child)::after {
    display: none;
  }
  .p-formstep > li {
    border-bottom: 1px solid #FFFFFF;
}
}
/* active */
.p-formstep > li.fs__active {
    z-index: 1;
    background: var(--color-main1);
    color: #FFF;
}
.p-formstep > li.fs__active:not(:last-child)::after {
    border-left-color: var(--color-main1);
}
.p-formstep > li.fs__active:not(:last-child)::before {
    border-left: none;
}
/*----------------------------------------*/
.p-form__bg{
  border: 1px solid var(--color-secondary);
  border-radius: 20px;
  padding: var(--container-w1) 150px;
}
.p-form{
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.p-input{
  width: 100%;
  display: flex;
  gap: 20px;
  margin-bottom: 0;
}
.p-input > .title__area{
  display: flex;
  align-items: flex-start;
  width: initial;
  font-weight: 700;
  position: relative;
  margin-bottom: 0;
  width: 200px;
}
.p-input > .input__area{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
  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: 480px) {
  .input__width01{
    width: 100%;
  }
  .input__width02{
    width: 200%;
  }
  .input__width03{
    width: 100%;
  }
}
/*必須・任意*/
.p-required{
  background: var(--color-primary);
  color: var(--color-white);
  border-radius: 3px;
  font-size: 0.8em;
  padding: .2em .5em;
  display: flex;
  align-items: center;
  margin-right: .5em;
}
.p-required.any{
  background: var(--color-gray02);
  color: var(--color-black);
}
/*ツールチップ　ヒント*/
.p-tooltip .tip__ico{
  position: absolute;
  top: 0;
  right: 0;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  display: block;
  cursor: pointer;
  border: none;
  background: transparent;
  padding: 0;
}
.p-tooltip .tip__ico:hover,
.p-tooltip .tip__ico:focus{
  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-primary);
  border-radius: calc(1em * 1.8);
  color: var(--color-white);
  font-weight: 700;
  position: absolute;
  top: 0;
  right: 0;
}
.p-tooltip .tip__text{
  width: max-content;
  max-width: 100%;
  background: var(--color-gray03);
  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-gray03);
  border-bottom: 0;
}
.p-tooltip .tip__text > p{
  margin: .5em 0;
}
.p-tooltip .tip__ico:hover + .tip__text,
.p-tooltip .tip__ico:focus + .tip__text,
.p-tooltip .tip__text.is-active{
  display: block;
  transform: scale(1 , 1);
  opacity: 1;
}
/*セレクトボックス*/
.p-input select{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  display: inline-block;
  padding: .3em .5em;
  line-height: 1.8;
  width: 100%;
}
.p-input select:focus{
  border: 1px solid var(--color-primary);
}
/*テキストエリア*/
.p-input textarea{
  border-radius: 3px;
  border: 1px solid var(--color-gray01);
  padding: .3em .5em;
  line-height: 1.8;
  height: 8em;
}
.p-input textarea:focus{
  border: 1px solid var(--color-primary);
}
/*その他*/
.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: 3px;
  border: 2px solid var(--color-sub1);
  padding: .3em .5em;
  line-height: 1.8;
}
.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 var(--color-main1);
}
/*ラジオボタン・チェックボックス*/
.p-checklist{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.p-checklist > li{
  margin: 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"]{
  appearance: none;
  background: url(/user/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="radio"]:checked{
  background: url(/user/img/common/ico_radio01_2.svg) center center / 100% auto no-repeat;
}
.p-checklist input[type="checkbox"]{
  appearance: none;
  background: url(/user/img/common/ico_checkbox01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  cursor: pointer;
  outline: none;
}
.p-checklist input[type="checkbox"]:checked{
  background: url(/user/img/common/ico_checkbox01_2.svg) center center / 100% auto no-repeat;
}
/*ラジオボタン・チェックボックス*/
.p-checklist02{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 0;
}
.p-checklist02 > li{
  margin: 0;
  position: relative;
  display: flex;
}
.p-checklist02 label{
  cursor: pointer;
}
.p-checklist02 input[type="radio"]{
  appearance: none;
}
.p-checklist02 input[type="radio"] + label{
  border: 1px solid;
  border-radius: 4px;
  padding: 8px 16px;
  line-height: calc(1em + 8px);
  display: flex;
  align-items: center;
  gap: 8px;
}
.p-checklist02 input[type="radio"] + label::before{
  content: "";
  background: url(/user/img/common/ico_radio01_1.svg) center center / 100% auto no-repeat;
  width: 1rem;
  height: 1rem;
  display: inline-block;
  cursor: pointer;
  outline: none;
}
.p-checklist02 input[type="radio"]:checked + label{
  background: var(--color-main1);
  color: var(--color-white);
  font-weight: 700;
  border: 1px solid var(--color-main1);
}
.p-checklist02 input[type="radio"]:checked + label::before{
  background: url(/user/img/common/ico_radio01_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: 480px) {
  .p-form__bg{
    padding: var(--container-w1) 20px;
  }
}

.c-lp_formbtn01{
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 100%;
  max-width: 680px;
  border-radius: 8px;
  font-size: clamp(1.25rem, 0.795rem + 2.27vw, 2.5rem);
  font-weight: 900;
  line-height: calc(1em + 12px);
  padding: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
  background:var(--color-main1);
  background:
  linear-gradient(0deg,rgba(255, 255, 255, 0) 50%, rgba(255, 255, 255, 0.5) 100%),
  var(--color-main1);
  color: var(--color-yellow) !important;
  border: 4px solid var(--color-main2);
  box-shadow:
   0 0 10px rgba(255, 255, 255, 0.5) inset,
   0 8px 0 var(--color-main2);
  text-shadow: 0 0 4px rgba(0, 0, 0, 0.5);
  transition: box-shadow 0.3s , transform .3s, background-color .3s;
}
@media (hover: hover) {
  .c-lp_formbtn01:hover{
    box-shadow:
    0 0 10px rgba(255, 255, 255, 0.5) inset,
    0 0 0 var(--color-main2);
    transform: translateY(8px);
    background: #66d300;
    opacity: 1;
  }
}


/*-------------------------------------------*/
.p-faq{
  background: var(--color-sub1);
  padding: var(--margin-small);
  margin-bottom: var(--margin-small);
}
.p-faq:last-child{
  margin-bottom: 0;
}
.p-faq__q{
  cursor: pointer;
  position: relative;
}
.p-faq__q:hover{
  opacity: .6;
}
.p-faq__q::before{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: all .3s;
}
.p-faq__q::after{
  content: "";
  display: inline-block;
  width: 2px;
  height: 12px;
  background: var(--color-blk1);
  position: absolute;
  right: 6px;
  top: 0;
  bottom: 0;
  margin: auto;
  transform: rotate(90deg);
  transition: all .3s;
}
.p-faq__q.faq__close::before{
  opacity: 0;
}
.p-faq__q.faq__close::after{
  transform: rotate(450deg);
}
.p-faq__q > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__q > p:first-child{
  margin: 0;
}
.p-faq__q > p:last-child{
  margin-bottom: 0;
}
.p-faq__q > p:first-child::before{
  content: "Q";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-main1);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-blk1);
  font-weight: 700;
}
.p-faq__a {
  margin-top: calc(var(--margin-small) + 10px);
}
.p-faq__a > p{
  position: relative;
  display: block;
  padding-left: calc(1.2em * 1.8);
  padding-right: calc(12px + .5em);
}
.p-faq__a > p:first-child{
  margin: 0;
}
.p-faq__a > p:last-child{
  margin-bottom: 0;
}
.p-faq__a > p:first-child::before{
  content: "A";
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: calc(1em * 1.8);
  height: calc(1em * 1.8);
  background: var(--color-blk1);
  border-radius: calc(1em * 1.8);
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-wht);
  font-weight: 700;
}


.p-login__title img{
  margin: auto;
}
.p-login{
  background: var(--color-sub4);
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-login_inner{
  width: 100%;
  max-width: 760px;
  min-height: 600px;
  background: var(--color-wht);
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin: var(--rp40);
  display: flex;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
.p-login_title{
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(/user/img/p-login_img01.jpg) top center / cover no-repeat;
}
.p-login_title img{
  object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-login_text{
  flex: 1;
  padding: 40px;
}
@media screen and (max-width: 560px) {
  .p-login_inner{
    display: flex;
    flex-direction: column;
    min-height:initial;
  }
  .p-login_title{
    height: 50vw;
    flex: initial;
    overflow: hidden;
    background: url(/user/img/p-login_img01.jpg) top -20px center / cover no-repeat;
  }
  .p-login_text{
    padding: 16px;
  }
}


/*-------------------------------------------*/
.p-categorylist{
  border: 1px solid var(--color-sub1);
  border-radius: 10px;
  padding: var(--margin-col);
}
.p-categorylist__inner{
  display: flex;
  align-items: center;
}
.p-categorylist__title{
  font-size: 1.8em;
  font-weight: 700;
  margin-right: var(--margin-col);
}
.p-categorylist__list{
  flex: 1;
}
.p-categorylist__list > ul{
  display: flex;
  flex-wrap: wrap;
}
.p-categorylist__list > ul > li{
  margin: 10px 10px 10px 0;
}
.p-categorylist__list > ul > li > a{
  display: inline-block;
  padding: 8px 10px 7px;
  line-height: 1.2;
  background: var(--color-sub2);
  text-align: center;
  font-size: 1.2rem;
}
.p-categorylist__list > ul > li > a:hover{
  text-decoration: none;
  background: var(--color-sub2);
}
.p-categorylist__list > ul > li > a.active{
  background: var(--color-sub1);
}
@media screen and (max-width: 560px) {
  .p-categorylist__title{
    font-size: 1.2em;
    margin-right: 0;
  }
  .p-categorylist__inner{
    display: block;
  }
  .p-categorylist__list > ul > li{
    margin: 10px 10px 0 0;
  }
  .p-categorylist__list > ul > li > a{
    font-size: 1rem;
  }
}
/*-------------------------------------------*/
.p-content01{
  position: relative;
  display: flex;
}
.p-content01::before{
  content: "";
  display: block;
  background: url(../img/common/pic_image01.png) center center / cover no-repeat;
  width: calc(100% * .8);
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(10%);
}
.p-content01__inner{
  padding: 40px 60px;
  background: var(--color-blk2);
  width: min(90vw, 900px);
  z-index: 1;
  margin-bottom: 80px;
  color: #FFF;
}
.p-content01__inner > h2{
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 900;
}
.p-content01__inner > p{
  margin-bottom: 0;
}
/*-------------------------------------------*/
.p-content02{
  position: relative;
}
.p-content02__inner{
  flex: 1;
  padding: 40px 60px;
  background: var(--color-blk2);
  width: 100%;
  max-width: 600px;
  z-index: 1;
  color: #FFF;
}
.p-content02__inner > h2{
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 900;
}
.p-content02__inner > p{
  margin-bottom: 0;
}
.p-content02__slider{
  position: relative;
  height: 100%;
  margin: max(-50vw , -300px) 0 0 0;
}
.p-content02__slider__inner{
  overflow: hidden;
  margin: 0 0 0 auto;
  width: calc(100% - 630px);
}
@media screen and (max-width: 1080px) {
  .p-content02__slider{
    margin: 0 0 0 0;
  }
  .p-content02__slider__inner{
    width: 100%;
  }
}
/*-------------------------------------------*/
.p-topslider__area{
  padding: calc(var(--header-hight) + 40px) 0 0;
  max-width: 1280px;
  margin: auto;
}
.p-topslider{
  width: 100%;
  margin: auto;
}
.p-topslider .slick-prev{
  left: 24.6%;
}
.p-topslider .slick-next{
  right: 24.6%;
}
.p-topslider .slick-track {
  display: flex;
}
.p-topslider .slick-slide {
  height: auto !important;
  opacity: .4;
  margin: 0 6px;
}
.p-topslider .slick-active {
  opacity: 1;
}
.p-topslider.slick-initialized .slick-slide {
  display: flex ;
}
.p-topslider .slick-slide > a{
  display: flex;
  text-decoration: none;
  width: 100%;
  border-radius: 4px;
  background: var(--color-sub4);
}
@media screen and (max-width: 1080px) {
  .p-topslider{
    padding-left: 25px;
    padding-right: 25px;
  }
  .p-topslider .slick-prev{
    left: 20px;
  }
  .p-topslider .slick-next{
    right: 20px;
  }
}
.p-topsliderlist{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 12px;
  gap: 8px;
}
a:has( > .p-topsliderlist ){
  text-decoration: none;
}
.p-topsliderlist__img{
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.p-topsliderlist__img > img{
  width: 100%;
  object-fit: cover;
}
.p-topsliderlist__text{
  background: var(--color-wht);
  text-align: center;
  font-weight: 700;
  border-radius: 4px;
  padding: 4px 24px;
  position: relative;
  font-size: 20px;
  line-height: calc(1em + 12px);
}
.p-topsliderlist__text::before{
  content: "";
  width: 16px;
  height: 16px;
  background: url(/user/img/common/ico_arrow01.svg) center center / 100% auto no-repeat;
  display: block;
  position: absolute;
  top: 0;
  right: 8px;
  bottom: 0;
  margin: auto;
}
.p-topsliderlist__text > h3{
  font-weight: 500;
  color: var(--color-main1);
}
.p-topsliderlist__text__category{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-topsliderlist__text__category > span{
  margin: 0 5px 5px 0;
  padding: 0 5px;
  background: var(--color-sub2);
  text-align: center;
  font-size: 0.8em;
}
.p-topsliderlist__text__category > span.day{
  background: none;
  padding: 0;
  margin-right: 10px;
  font-size: 1em;
}
/*-------------------------------------------*/

.p-topcontent01_area{
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.p-topcontent01{
  display: flex;
  flex-direction: column;
}
.p-topcontent01__title{
  border: 1px solid var(--color-main2);
  background: var(--color-main2);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  gap: 4px;
  position: relative;
  padding: 4px 16px 4px 108px;
}
.p-topcontent01__title .img{
  width: 100px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.p-topcontent01__title .text{
  flex: 1;
  display: flex;
  flex-direction: column;
  line-height: calc(1em + 8px);
}
.p-topcontent01__title .text .title{
  color: var(--color-yellow);
  font-weight: 700;
}
.p-topcontent01__title .text .sup{
  color: var(--color-wht);
  font-weight: 700;
  font-size: 12px;
}
.p-topcontent01__text{
  border: 1px solid var(--color-main2);
  background: var(--color-sub3);
  border-radius: 0 0 4px 4px;
  padding: 12px;
}

/*-------------------------------------------*/
.p-bg02{
  background: url(../img/uma01.png) left center / auto auto no-repeat #000;
}
@media screen and (max-width: 560px) {
.p-bg02{
  background: url(../img/uma01.png) left center / cover no-repeat #000;
}
}
.p-topcontent02{
  display: flex;
  margin: auto;
  padding: var(--margin-big) 0;
}
.p-topcontent02 .inner{
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: auto;
  padding: 32px;
  background: rgba(0,0,0,0.5);
}
.p-topcontent02 h2{
  font-size: 2rem;
  line-height: 1.6;
  font-weight: 700;
  text-align: center;
  text-shadow: 0 0 8px #000;
}
@media screen and (max-width: 560px) {
.p-topcontent02 h2{
  font-size: 24px;
  line-height: 1.6;
}
}
.p-topcontent02 .text01{
  text-align: center;
text-shadow: 0 0 8px #000;
}

/*==================================================================*/
.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-blk1);
  color: var(--color-wht) !important;
  text-decoration: none !important;
  padding: 16px 62px 16px 32px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: 1.4;
  font-weight: 700;
  font-size: 20px;
  cursor: pointer;
}
.c-btn01::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  background: url(../img/common/ico_arrow01_w.svg) center center / 100% auto no-repeat;
  width: 16px;
  height: 16px;
}
.c-btn02{
  background: var(--color-main1);
  color: var(--color-wht) !important;
  text-decoration: none !important;
  padding: 16px 62px 16px 32px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  line-height: 1.4;
  font-weight: 700;
  font-size: 20px;
    cursor: pointer;
}
.c-btn02::before{
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  background: url(../img/common/ico_arrow01_w.svg) center center / 100% auto no-repeat;
  width: 16px;
  height: 16px;
}
.c-btn03 {
  background: #006f18;
  color: var(--color-wht) !important;
  border: 2px solid #2a9d62;
  box-shadow: inset 0 0 8px #4cffa4;
  text-decoration: none !important;
  padding: 32px 62px;
  display: flex;
  align-items: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  cursor: pointer;
}
.c-btn03::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 32px;
  margin: auto;
  background: url(../img/icon_arw01.svg) center center / 100% auto no-repeat;
  width: 16px;
  height: 16px;
}
@media screen and (max-width: 560px) {
  .c-btn03 {
    padding: 24px 62px 24px 32px;
    font-size: 20px;
    line-height: 28px;
  }
}
.c-btn_stop {
  background: #6f0000;
  color: var(--color-wht) !important;
  border: 2px solid #9d2a2a;
  box-shadow: inset 0 0 8px #ff4c4c;
  text-decoration: none !important;
  padding: 32px 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 60px;
  position: relative;
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  cursor: pointer;
  pointer-events: none;
}
@media screen and (max-width: 560px) {
  .c-btn_stop {
    padding: 24px 62px 24px 32px;
    font-size: 20px;
    line-height: 28px;
  }
}
.c-formbtn01{
  border-radius: 3px;
  background: var(--color-blk1);
  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{
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.c-link__list li {
  display: block;
  position: relative;
  padding-left: 1em;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.c-link__list li:before {
  position: absolute;
  left: 0;
  content: "";
  width: 1em;
  height: calc(1em + 8px);
  background: url(/user/img/common/ico_arrow01.svg) center center / 100% auto no-repeat;
  font-weight: 700;
  font-size: 1em;
}
.c-link__list li a{
  color: var(--color-main2);
}
.c-link__list li:after {
  display: none;
}
/*---------------*/
.c-box01{
  padding: var(--rp60);
  border: 8px solid var(--color-sub1);
  background: var(--color-wht);
  box-shadow: 0 0 16px #597ec2;
  border-radius: 8px;
}
.c-box02{
  padding: var(--rp60);
  border: 8px solid var(--color-main1);
  background: #191919;
  box-shadow: 0 0 16px #c2c059;
  border-radius: 8px;
}
/*---------------*/
.c-title01{
  font-size: 2.5em;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}
.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{
  margin-bottom: 40px;
}
.c-page__anchor > ul{
  display: flex;
  gap: 12px 20px;
  flex-wrap: wrap;
  background: var(--color-sub4);
  padding: 16px;
  border-radius: 4px;
}
.c-page__anchor > ul > li {
  position: relative;
  padding: 0 0 0 calc(1em + 8px);
  font-weight: 700;
}
.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);
}
/*-------------------------------------------*/
.slick-prev{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
  cursor: pointer;
}
.slick-prev::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
  border-left: 2px solid var(--color-blk1);
  border-top: 2px solid var(--color-blk1);
  transform: rotate(-45deg);
}
.slick-prev:hover{
  opacity: 0.6;
}
.slick-next{
  font-size: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 5px;
  margin: auto;
  z-index: 1;
  border: none;
  background: none;
  cursor: pointer;
}
.slick-next::before{
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  border-left: 2px solid var(--color-blk1);
  border-top: 2px solid var(--color-blk1);
  transform: rotate(135deg);
}
.slick-next:hover{
  opacity: 0.6;
}
.slick-dots{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
}
.slick-dots > li{
  border: none;
  border-radius: 50px;
  width: 10px;
  height: 10px;
  background: var(--color-sub1);
  font-size: 0;
  margin: 0 10px;
  cursor: pointer;
}
.slick-dots > li.slick-active{
  background: var(--color-main1);
}
.slick-dots > li:hover{
  opacity: .6;
}
.c-slider01 .slick-prev{
  left: -25px;
}
.c-slider01 .slick-next{
  right: -25px;
}
.c-slider01 .slick-track {
  display: flex;
}
.c-slider01 .slick-slide {
  height: auto !important;
}
.c-slider01.slick-initialized .slick-slide {
  display: flex ;
}
.c-slider01 .slick-slide > a{
  display: flex;
  text-decoration: none;
  margin: 0 10px;
  width: 100%;
}
@media screen and (max-width: 1080px) {
  .c-slider01{
    padding-left: 25px;
    padding-right: 25px;
  }
  .c-slider01 .slick-prev{
    left: 5px;
  }
  .c-slider01 .slick-next{
    right: 5px;
  }
}
.c-slider02{
  padding-left: 25px;
  padding-right: 25px;
}
.c-slider02 .slick-track {
  display: flex;
}
.c-slider02 .slick-slide {
  height: auto !important;
}
.c-slider02.slick-initialized .slick-slide {
  display: flex ;
}
.c-slider02 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
}
.c-slider03{
  padding-left: 25px;
  padding-right: 25px;
}
.c-slider03 .slick-track {
  display: flex;
}
.c-slider03 .slick-slide {
  height: auto !important;
}
.c-slider03.slick-initialized .slick-slide {
  display: flex ;
}
.c-slider03 .slick-slide > a{
  display: flex;
  flex-wrap: wrap;
  text-decoration: none;
  border: 1px solid var(--color-blk1);
  margin: 0 10px;
  padding: 20px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
}
.c-slider04{
  margin-right: -200px;
  padding-left: 100px;
}
.c-slider04 .slick-track {
  display: flex;
}
.c-slider04 .slick-slide {
  height: auto !important;
}
.c-slider04.slick-initialized .slick-slide {
  display: flex ;
}
.c-slider04 .slick-slide{
  background: center center / auto 100% no-repeat;
  margin-right: 20px;
}
.c-slider04 .slick-slide > a{
  display: block;
  width: 300px;
  height: 450px;
  text-decoration: none;
  margin: 0 10px;
  color: var(--color-blk1) !important;
  border-radius: 10px;
  overflow: hidden;
  background: center center / auto 100% no-repeat;
}
.c-slider04 .slick-slide > a img{
  height: 100%;
}
.c-slider04 .slick-prev{
  left: 10px;
  right: initial;
  top: initial;
  bottom: 20px;
}
.c-slider04 .slick-next{
  left: 50px;
  right: initial;
  top: initial;
  bottom: 20px;
}
/*-------------------------------------------*/
.c-pickup{
  display: flex;
  flex-direction: column;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--color-sub1);
}
a:has( > .c-pickup ){
  text-decoration: none;
}
.c-pickup__img{
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.c-pickup__img > img{
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  display: inline-block;
  width: 100%;
  object-fit: cover;
}
.c-pickup__text{
  padding: 15px;
}
.c-pickup__text > h3{
  font-weight: 500;
  color: var(--color-main1);
}
.c-pickup__text__category{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.c-pickup__text__category > span{
  margin: 0 5px 5px 0;
  padding: 0 5px;
  background: var(--color-sub2);
  text-align: center;
  font-size: 0.8em;
}
.c-pickup__text__category > span.day{
  background: none;
  padding: 0;
  margin-right: 10px;
  font-size: 1em;
}
/*-------------------------------------------*/
.c-tab01-list{
  display: flex;
  margin-bottom: -1px;
  gap: 16px;
}
.c-tab01-list-item{
  text-align: center;
  padding: 0.5em 1.5em 0.4em;
  cursor: pointer;
  border: 1px solid var(--color-sub1);
  border-radius: 4px 4px 0 0;
  transition: all .4s;
  flex: 1;
}
.c-tab01-list-item:hover{
  opacity: .6;
}
.c-tab01-contents{
  background: #FFF;
  border: 1px solid var(--color-sub1);
  display: none;
  padding: 20px;
}
.c-tab01-login .c-tab01-contents{
  border: none;
  border-top: 1px solid var(--color-sub1);
  padding: 20px 0 0 0;
}
.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;
  }
  .c-tab01-login .c-tab01-list{
    flex-wrap: nowrap;
    gap: 8px;
  }
  .c-tab01-login .c-tab01-list-item{
    border-radius: 10px;
    border-radius: 10px 10px 0 0;
    margin: 0;
    line-height: calc(1em + 8px);
    padding: 8px 12px;
  }
}
/*-------------------------------------------*/
.c-dbox01{
  display: flex;
  border: 1px solid var(--color-main1);
  border-radius: 20px;
  margin-top: 40px;
  padding: 10px;
}
.c-dbox01:first-of-type{
  margin-top: 40px;
}
.c-dbox01 > .text01{
  flex: 1;
  display: flex;
  align-items: center;
  padding: 10px;
}
.c-dbox01 > .text01 > span{
  display: inline-block;
  font-size: 40px;
  font-weight: 700;
  width: 1.5em;
  text-align: center;
  position: relative;
  line-height: 1;
  color: #FFF;
  z-index: 1;
  margin-right: -5px;
}
.c-dbox01 > .text01 > span::after{
  content: "";
  background: var(--color-main1);
  position: absolute;
  top: 12%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 1.5em;
  height: 1.5em;
  z-index: -1;
  border-radius: 100px;
}
.c-dbox01 > .text02{
  padding: 10px;
}
.c-dbox01 > .text02 .midashi{
  border-bottom: 1px solid var(--color-sub1);
  padding-bottom: 10px;
  font-size: 1.1em;
  font-weight: 700;
}
.c-dbox01 > .text02 p{
  margin: 5px auto 0;
}
@media screen and (max-width: 560px) {
  .c-dbox01{
    display: block;
    padding: 5px;
  }
  .c-dbox01 > .text01{
    justify-content: center;
    margin-top: -20px;
  }
  .c-dbox01 > .text01 > span{
    margin-right: 0;
  }
}
/*==================================================================*/
.article__area a:not([class]):link{
  color: var(--color-main2);
}
.article__area a:not([class]):visited{
  color: var(--color-main2);
}
.article__area img:not([class]){
  height: initial !important;
}
.article__area h1:not([class]){
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 900;
  position: relative;
  margin: initial;
  display: flex;
  align-items: center;
  gap: 12px;
}
.article__area h2:not([class]){
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  position: relative;
  background: var(--color-main1);
  color: #FFF;
  padding: 8px 12px;
  border-radius: 4px;
  margin: initial;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article__area h3:not([class]){
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  padding-left: .5em;
  position: relative;
  border-left: 6px solid var(--color-main1);
  margin: initial;
}
.article__area h4:not([class]){
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  padding-bottom: .5em;
  position: relative;
  margin: initial;
  display: flex;
  align-items: center;
  gap: 8px;
}
.article__area h4:not([class])::before{
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  width: 100%;
  background: var(--color-main1);
}
.article__area h4:not([class])::after{
  display: none;
}
.article__area h5:not([class]){
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  position: relative;
  margin: initial;
  background: var(--color-sub4);
  padding: 8px 12px;
  border-radius: 4px;
  margin: initial;
  display: flex;
  align-items: center;
  gap: 8px;
}

.article__area h6:not([class]){
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
  position: relative;
  padding: 0.5em 1em;
  background: var(--color-sub4);
  margin: initial;
}
.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: 768px) {
  .article__area h1:first-child,
  .article__area h2:first-child{
    margin-bottom: 0;
  }
}
@media screen and (max-width: 768px) {
  .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]){

  }
  .article__area h3:not([class]){

  }
  .article__area h4:not([class]){

  }
  .article__area h5:not([class]){

  }
  .article__area h6:not([class]){

  }
}
.article__area ul:not([class]){
  list-style-type: none;
  margin: initial;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__area ul:not([class]) > li {
  margin-bottom: 0;
  position: relative;
  padding-left: 1em;
  line-height: calc(1em + 8px);
}
.article__area ul:not([class]) > li:before {
  position: absolute;
  top: calc(0.45em + 4px);
  left: 0;
  content: "";
  background: var(--color-main1);
  width: 6px;
  height: 6px;
  border-radius: 3px;
}
.article__area ul.checklist{
  list-style-type: none;
  margin: initial;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__area ul.checklist > li {
  margin-bottom: 0;
  position: relative;
  padding-left: 1em;
  line-height: calc(1em + 8px);
}
.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;
  padding-left: 1em;
  margin: initial;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.article__area ol:not([class]) > li {
  margin-bottom: 0;
  line-height: calc(1em + 8px);
}
.article__area ol:not([class]) > li::marker {
  font-weight: 700;
  color: var(--color-main1);
}
.article__area ol:not([class]) > li::before {
  color: var(--color-black);
}
.article__area table:not([class]) {
  width: 100%;
}
.article__area table:not([class]) th,
.article__area table:not([class]) td {
  border: 1px solid var(--color-blk2);
	padding: 2px 8px;
	font-size: 14px;
  line-height: calc(1em + 8px);
}
.article__area table:not([class]) th{
  background: var(--color-sub4);
  width: 0;
  white-space: nowrap;
  font-weight: 700;
}
.article__area table:not([class]) th + th,
.article__area table:not([class]) th:has(+ th){
  background: var(--color-blk2);
  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-fnt--w01{font-weight: 100 !important;}
.u-fnt--w02{font-weight: 200 !important;}
.u-fnt--w03{font-weight: 300 !important;}
.u-fnt--w04{font-weight: 400 !important;}
.u-fnt--w05{font-weight: 500 !important;}
.u-fnt--w06{font-weight: 600 !important;}
.u-fnt--w07{font-weight: 700 !important;}
.u-fnt--w08{font-weight: 800 !important;}
.u-fnt--w09{font-weight: 900 !important;}
/*---------------*/
.u-fnt--f12{font-size: 12px;line-height: calc(1em + 8px);}
.u-fnt--f14{font-size: 14px;line-height: calc(1em + 8px);}
.u-fnt--f20{font-size: 20px;font-weight: 700;line-height: calc(1em + 12px);}
.u-fnt--f24{font-size: 24px;font-weight: 700;line-height: calc(1em + 12px);}
.u-fnt--f28{font-size: 28px;font-weight: 700;line-height: calc(1em + 12px);}
.u-fnt--f32{font-size: 32px;font-weight: 700;line-height: calc(1em + 16px);}
.u-fnt--f36{font-size: 36px;font-weight: 700;line-height: calc(1em + 16px);}
.u-fnt--f40{font-size: 40px;font-weight: 700;line-height: calc(1em + 20px);}
.u-fnt--f48{font-size: 48px;font-weight: 700;line-height: calc(1em + 20px);}
.u-fnt--f56{font-size: 56px;font-weight: 700;line-height: calc(1em + 24px);}
@media screen and (max-width: 560px) {
  .u-fnt--f20{font-size: 16px;font-weight: 700;line-height: calc(1em + 12px);}
  .u-fnt--f24{font-size: 20px;font-weight: 700;line-height: calc(1em + 12px);}
  .u-fnt--f28{font-size: 24px;font-weight: 700;line-height: calc(1em + 12px);}
  .u-fnt--f32{font-size: 28px;font-weight: 700;line-height: calc(1em + 12px);}
  .u-fnt--f36{font-size: 28px;font-weight: 700;line-height: calc(1em + 16px);}
  .u-fnt--f40{font-size: 28px;font-weight: 700;line-height: calc(1em + 16px);}
  .u-fnt--f48{font-size: 32px;font-weight: 700;line-height: calc(1em + 20px);}
  .u-fnt--f56{font-size: 40px;font-weight: 700;line-height: calc(1em + 20px);}
}
/*---------------*/
.u-fnt--ssss {font-size:0.6em;}
.u-fnt--sss {font-size:0.7em;}
.u-fnt--ss {font-size:0.8em;}
.u-fnt--s {font-size:0.9em;}
.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--main2 {color: var(--color-main2) !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-fntcolor--black {color: var(--color-blk1) !important;}
.u-fntcolor--white {color: var(--color-wht) !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-mtrp20 {margin-top: var(--rp20) !important;}
.u-mtrp40 {margin-top: var(--rp40) !important;}
.u-mtrp60 {margin-top: var(--rp60) !important;}
.u-mtrp80 {margin-top: var(--rp80) !important;}
.u-mtrp100 {margin-top: var(--rp100) !important;}
.u-mtrp120 {margin-top: var(--rp120) !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-mbrp20 {margin-bottom: var(--rp20) !important;}
.u-mbrp40 {margin-bottom: var(--rp40) !important;}
.u-mbrp60 {margin-bottom: var(--rp60) !important;}
.u-mbrp80 {margin-bottom: var(--rp80) !important;}
.u-mbrp100 {margin-bottom: var(--rp100) !important;}
.u-mbrp120 {margin-bottom: var(--rp120) !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-font02{font-family: var(--font02);}
.u-font03{font-family: var(--font03);}
.u-link:link{
  color:#1041e4;
  text-decoration: underline;
}
.u-link:visited{
  color:#1041e4;
  text-decoration: underline;
}
.u-fnt--size14{
  font-size: 14px;
  line-height: calc(1em + 8px);
}
.u-fnt--size14b{
  font-size: 14px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size16{
  font-size: 16px;
  line-height: calc(1em + 8px);
}
.u-fnt--size16b{
  font-size: 16px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size18{
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.u-fnt--size18b{
  font-size: 18px;
  line-height: calc(1em + 8px);
  font-weight: 700;
}
.u-fnt--size20{
  font-size: 20px;
  line-height: calc(1em + 12px);
}
.u-fnt--size20b{
  font-size: 20px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size24{
  font-size: 24px;
  line-height: calc(1em + 12px);
}
.u-fnt--size24b{
  font-size: 24px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size28{
  font-size: 28px;
  line-height: calc(1em + 12px);
}
.u-fnt--size28b{
  font-size: 28px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size32{
  font-size: 32px;
  line-height: calc(1em + 12px);
}
.u-fnt--size32b{
  font-size: 32px;
  line-height: calc(1em + 12px);
  font-weight: 700;
}
.u-fnt--size36b{
  font-size: 36px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
.u-fnt--size36{
  font-size: 36px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40{
  font-size: 40px;
  line-height: calc(1em + 16px);
}
.u-fnt--size40b{
  font-size: 40px;
  line-height: calc(1em + 16px);
  font-weight: 700;
}
@media screen and (max-width: 560px) {
  .u-fnt--size14{
    font-size: 14px;
    line-height: calc(1em + 8px);
  }
  .u-fnt--size14b{
    font-size: 14px;
    line-height: calc(1em + 8px);
    font-weight: 700;
  }
  .u-fnt--size16{
    font-size: 16px;
    line-height: calc(1em + 8px);
  }
  .u-fnt--size16b{
    font-size: 16px;
    line-height: calc(1em + 8px);
    font-weight: 700;
  }
  .u-fnt--size18{
    font-size: 18px;
    line-height: calc(1em + 8px);
  }
  .u-fnt--size18b{
    font-size: 18px;
    line-height: calc(1em + 8px);
    font-weight: 700;
  }
  .u-fnt--size20{
    font-size: 20px;
    line-height: calc(1em + 12px);
  }
  .u-fnt--size20b{
    font-size: 20px;
    line-height: calc(1em + 12px);
    font-weight: 700;
  }
  .u-fnt--size24{
    font-size: 20px;
    line-height: calc(1em + 12px);
  }
  .u-fnt--size24b{
    font-size: 20px;
    line-height: calc(1em + 12px);
    font-weight: 700;
  }
  .u-fnt--size28{
    font-size: 24px;
    line-height: calc(1em + 12px);
  }
  .u-fnt--size28b{
    font-size: 24px;
    line-height: calc(1em + 12px);
    font-weight: 700;
  }
  .u-fnt--size32{
    font-size: 28px;
    line-height: calc(1em + 12px);
  }
  .u-fnt--size32b{
    font-size: 28px;
    line-height: calc(1em + 12px);
    font-weight: 700;
  }
  .u-fnt--size36b{
    font-size: 32px;
    line-height: calc(1em + 12px);
    font-weight: 700;
  }
  .u-fnt--size36{
    font-size: 32px;
    line-height: calc(1em + 12px);
  }
  .u-fnt--size40{
    font-size: 36px;
    line-height: calc(1em + 16px);
  }
  .u-fnt--size40b{
    font-size: 36px;
    line-height: calc(1em + 16px);
    font-weight: 700;
  }
}
/*---------------*/

.u-fshadow01{text-shadow: 0 0 5px var(--color-blk1);}
.u-deco01{background:linear-gradient(transparent 60%, #f7d204 60%) bottom left / 100% auto no-repeat;}
.u-deco02{background:linear-gradient(transparent calc(100% - 2px), #dddddd 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: 4px;
  --textshadow02-blur: 4px;
  --textshadow02-color: #300505;
}
.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;}




/*==================================================================*/
/*modaal*/
.modaal-container{
  border-radius: 8px;
}
.modaal-content-container{
  padding: 0;
}
.modaal-container:has(.p-login_inner){
  max-width: 660px;
  box-sizing: border-box;
}
.modaal-container .p-login_inner{
  max-width: initial;
  margin: auto;
}
/*==================================================================*/
@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;
}
@keyframes fadeIn {
	0% { opacity: 0; }
	100% { opacity: 1; transform: translateY(0);}
}
.animeTrigger.fadeIn{
  opacity: 0;
  transform: translateY(100px);
}
.animeTrigger.fadeIn.animetion{
	animation: fadeIn 1.2s ease 0s 1 forwards;
}
/*==================================================================*/
.p-layer_content01{
  background: var(--color-sub1);
  padding-top: 0.01em;
  padding-bottom: var(--margin-big);
}
.p-layer_content02{
  padding-top: 0.01em;
  padding-bottom: var(--margin-big);
  margin-top: calc(var(--margin-big) / 2 * -1);
}
.p-layer_content03{
  background: #191919;
  padding-top: 0.01em;
  padding-bottom: var(--margin-big);
  color: var(--color-wht);
}
.p-ranking{
  overflow: hidden;
}
.p-ranking:not(:first-child){
  margin-top: var(--margin-big);
}
.p-ranking .text01{
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--color-sub1);
  position: relative;
  display: flex;
}
.p-ranking .text01 > span{
  width: calc(100% - 240px);
  position: relative;
  z-index: 1;
}
.p-ranking .text02{
  font-size: 40px;
  line-height: 52px;
  font-weight: 700;
  padding-bottom: 8px;
  border-bottom: 4px solid var(--color-sub2);
  position: relative;
  display: flex;
}
.p-ranking .text02 > span{
  width: 100%;
  position: relative;
  z-index: 1;
}
.p-ranking.no1{
  background-color: #f9f8e4;
}
.p-ranking.no1 .text01::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  transform:translateX(-60px) translateY(-50%);
  background: url(../img/icon01.svg) center center / 100% auto no-repeat;
  width: 150px;
  height: 150px;
  z-index: 0;
  opacity: 0.8;
}
.ranking_img01{
  border: 4px solid var(--color-sub1);
  width: 200px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
.p-ranking .text01{
  font-size: 28px;
  line-height: 36px;
  display: block;
  text-align: center;
}
.p-ranking .text01 > span{
  width: 100%;
  display: block;
  margin-bottom: 8px;
}
.ranking_img01{
  position: static;
  margin: auto;
}
}
.c-table10{
  width: 100%;
  max-width: calc(100% - 240px);
  border-collapse: separate;
  border-spacing: 8px 12px;
  margin-left: -8px;
}
.c-table10 td,
.c-table10 th{
  padding: 4px 16px;
  font-weight: 700;
}
.c-table10 th{
  background: var(--color-blk1);
  color: var(--color-wht);
  width: 0;
  white-space: nowrap;
  border-radius: 4px;
}
.c-table10 td{
  padding-left: 0;
}
@media screen and (max-width: 768px) {
.c-table10,
.c-table10 tbody,
.c-table10 tr,
.c-table10 td,
.c-table10 th{
  display: block;
  width: 100%;
  max-width: initial;
  white-space: initial;
  margin-left: 0;
}
}
.c-res_title{
background: var(--color-sub1);
font-weight: 700;
padding: 4px 16px;
font-size: 20px;
border-radius: 4px;
}
.c-res{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( 20px * -1);
}
.c-res > li {
  width: calc(100% / 2 - (20px / 2));
  margin-right: 20px;
  margin-bottom: 20px;
}
.c-res > li:nth-child(2n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .c-res > li {
    width: 100%;
    margin-right: 0 !important;
  }
}
.c-res_list{
  background: url(../img/res_bg01.png) right bottom / auto auto no-repeat var(--color-main1);
  padding: var(--rp20);
  border-radius: 8px;
  border: 4px solid var(--color-sub1);
  min-height: 180px;
  color: var(--color-blk1);
}
.c-res_text01{
  border-bottom: 1px solid var(--color-blk1);
  font-weight: 700;
}
.c-res_text02{
  margin-top: 8px;
}
.c-res_text03{
  display: flex;
  margin-top: 8px;
  gap: 8px;
  align-items: flex-start;
}
.c-res_text03 > .tx01{
  width: 5em;
  background: var(--color-blk1);
  color: var(--color-wht);
  padding: 0 4px;
  text-align: center;
  border-radius: 4px;
  margin-top: 4px;
}
.c-res_text03 > .tx02{
  font-weight: 700;
  font-size: 20px;
  flex: 1;
  text-shadow: 0 0 10px #ffde0e;
}
@media screen and (max-width: 560px) {
.c-res_text03{
  flex-direction: column;
  gap: 0;
}
}
.c-box20{
  background: var(--color-main1);
  border-radius: 8px;
  overflow: hidden;
}
.c-box20 > .title{
  text-align: center;
  font-size: 32px;
  line-height: 40px;
  font-weight: 700;
  border-bottom: 2px solid var(--color-blk1);
  padding: 16px 32px;
  background: var(--color-blk1);
  color: var(--color-main1);
}
.c-box20 > .text_area{
    padding: var(--rp40);
}
.u-bg100{
  background: var(--color-sub1);
  border-radius: 8px;
  padding: 8px;
}
.u-bg101{
  border: 4px solid var(--color-sub1);
  border-radius: 8px;
  padding: 20px;
}
.u-ptag10 p{
  margin: 10px 0;
}
.u-ptag20 p{
  margin: 20px 0;
}


.c-voice_area{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
    flex-wrap: wrap;
    gap: 32px 20px;
}
@media screen and (max-width: 1260px) {
    .c-voice_area{
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 920px) {
    .c-voice_area{
        grid-template-columns: 1fr 1fr 1fr;
    }
}
@media screen and (max-width: 660px) {
    .c-voice_area{
        grid-template-columns: 1fr 1fr;
    }
}
@media screen and (max-width: 460px) {
    .c-voice_area{
        grid-template-columns: 1fr;
    }
}

.c-voice{
  border: 2px solid var(--color-main1);
  border-radius: 8px;
  padding: var(--rp20);
  background:#fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 10px;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.5);
}
.c-voice .img img{
  width: 60px;
  margin: auto;
}
.c-voice .text01{
  text-align: left;
  font-weight: 700;
}
.c-voice .text02{
  font-family: var(--font02);
  font-weight: 700;
}

.p-youkou{
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 16px;
  font-size: 18px;
  line-height: calc(1em + 8px);
}
.p-youkou td,
.p-youkou th{
  padding: 4px 16px;
  font-weight: 700;
}
.p-youkou th{
  background: var(--color-blk1);
  color: var(--color-wht);
  width: 0;
  white-space: nowrap;
  border-bottom: 1px solid var(--color-blk1);
}
.p-youkou td{
  padding-left: 8px;
  border-bottom: 1px solid var(--color-blk1);
}
@media screen and (max-width: 768px) {
.p-youkou,
.p-youkou tbody,
.p-youkou tr,
.p-youkou td,
.p-youkou th{
  display: block;
  width: 100%;
  max-width: initial;
  white-space: initial;
}
.p-youkou td,
.p-youkou th{
  border: none;
}
.p-youkou td{
  margin-bottom: 16px;
}
}
.p-form-btn-list{
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 600px;
    margin: auto;
}
.p-provider-login ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}


/*--------------*/
.c-title10{
	background: var(--color-main2);
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 8px 16px;
	border-radius: 4px;
}
.c-title10 > .icon{
	width: 24px;
}
.c-title10 > .text{
	flex: 1;
	font-size: 18px;
	font-weight: 700;
	line-height: calc(1em + 6px);
	color: #FFF;
}
.c-title11{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 0 0 8px;
	border-bottom: 2px solid var(--color-main1);
}
.c-title11 > .icon{
	width: 24px;
}
.c-title11 > .text{
	flex: 1;
	font-size: 18px;
	font-weight: 700;
	line-height: calc(1em + 6px);
	color: var(--color-main3);
}
/*--------------*/
.p-topcontent10_area{
	display: flex;
	flex-direction: column;
	gap: 40px;
}
.p-topcontent10{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.p-pickuprace01{
	background: var(--color-sub2);
	padding: 12px;
	border-radius: 4px;
	display: flex;
	flex-direction: column;
	gap: 12px;
}
.p-pickuprace01 > ul{
	display: flex;
	gap: 12px;
}
.p-pickuprace01 > ul > li{
	flex: 1;
	background: #FFF;
	padding: 8px;
	border-radius: 4px;
	text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: calc(1em + 12px);
}
.p-pickuprace01 > ul > li a{
	display: block;
  position: relative;
}
.p-pickuprace01 > ul > li a::before{
	content: "";
  width: 24px;
  height: 24px;
  background: url(/user/img/common/ico_arrow01.svg) center center / 100% auto no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.p-pickuprace01 > ul > li .big{
  font-size: 24px;
  font-weight: 900;
}
@media screen and (max-width: 560px) {
	.p-pickuprace01 > ul{
		flex-direction: column;
	}
}
/*--------------*/
.p-pickuprace02{
	display: grid;
  grid-template-columns: 1fr 1fr;
	gap: 12px;
}
.p-pickuprace02 > li{
	flex: 1;
}
@media screen and (max-width: 560px) {
	.p-pickuprace02{
  grid-template-columns: 1fr;
	}
}
/*--------------*/
.p-bloglist{
	border: 1px solid var(--color-main1);
	border-radius: 4px;
	overflow: hidden;
}
.p-bloglist .c-title10{
		border-radius: 0 0 0 0;
}
.p-bloglist__links{
	display: flex;
	flex-direction: column;
	padding: 0 12px;
}
.p-bloglist__links > li{
	padding: 12px 0;
}
.p-bloglist__links > li:not(:first-child){
	border-top: 1px solid var(--color-main1);
}
.p-bloglist__links > li > a{
	display: flex;
	align-items: center;
	gap: 8px;
}
.p-bloglist__links > li > a > .img{
	width: 200px;
}
.p-bloglist__links > li > a > .text{
	flex: 1;
	font-weight: 700;
}
.p-bloglist__links > li > a > .text .day{
  color: var(--color-main2);
}
@media screen and (max-width: 560px) {
	.p-bloglist__links > li > a > .img{
		width: 50%;
		max-width: 200px;
	}
}
@media screen and (max-width: 440px) {
	.p-bloglist__links > li > a > .img{
		width: 100%;
		max-width: 100%;
	}
	.p-bloglist__links > li > a{
		flex-direction: column;
	}
	.p-bloglist__links > li > a > .text{
		width: 100%;
	}
}
/*--------------*/
.c-resulttable01{
	width: 100%;
  line-height: calc(1em + 4px);
}
.c-resulttable01 th{
	background: var(--color-sub4);
	border: 1px solid var(--color-blk2);
	font-size: 14px;
  line-height: calc(1em + 4px);
  text-align: center;
	padding: 2px 8px;
  font-weight: 700;
  vertical-align: middle;
}
.c-resulttable01 td{
	background: #FFF;
	border: 1px solid var(--color-blk2);
	font-size: 12px;
  line-height: calc(1em + 4px);
	padding: 4px 8px;
}
.c-resulttable01 .rth01,
.c-resulttable01 .rth02,
.c-resulttable01 .rth04,
.c-resulttable01 .rth05,
.c-resulttable01 .rth06,
.c-resulttable01 .rth07{
  width: 0;
  white-space: nowrap;
}

.c-resulttable01 .rtd01,
.c-resulttable01 .rtd02,
.c-resulttable01 .rtd04,
.c-resulttable01 .rtd05,
.c-resulttable01 .rtd06,
.c-resulttable01 .rtd07{
  width: 0;
  white-space: nowrap;
}

.c-resulttable01.size02 td{
  font-size: 14px;
}

@media screen and (max-width: 1080px) {
	.c-table__sp1080{
		overflow: auto;
	}
		.c-table__sp1080::before{
		content: "*横にスクロールしてご確認ください";
		display: block;
		font-size: 14px;
		font-weight: 700;
	}
	.c-table__sp1080 > table{
		width: 1080px;
	}
}
.c-btn10{
  background: var(--color-main2);
  color: var(--color-wht) !important;
  padding: 2px 8px;
  border-radius: 60px;
  box-shadow: 0 0 4px rgba(5, 77, 11, 0.5) inset;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
}
/*--------------*/
.p-sidebanner01{
	display: flex;
	flex-direction: column;
	gap: 20px;
}
.p-sidebanner01__list{
	display: flex;
	flex-direction: column;
	gap: 12px;
}
/*--------------*/

footer{
  background: var(--color-main3);
  color: #FFF;
  margin-top: 60px;
}
footer a{
  color: #FFF !important;
}
.p-footer{
  max-width: 1280px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 40px;
}
/*-----------*/
.p-footer__inner01{
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 40px;
  flex-wrap: wrap;
}
.p-footer__logo{
  width: 100%;
  flex: 1;
}
.p-footer__logo img{
  margin: auto;
}
.p-footer__menu{
  display: flex;
  gap: 40px;
}
.p-footer__menu ul{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-footer__menu .title_link{
  font-weight: 700;
  line-height: calc(1em + 8px);
  position: relative;
  padding-left: 28px;
}
.p-footer__menu .title_link::before{
  content: "";
  background: url(/user/img/common/ico_arrow01_y.svg) center center / 100% auto no-repeat;
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.p-footer__menu .page_link{
  font-size: 14px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  padding-left: 28px;
}
@media screen and (max-width: 768px) {
  .p-footer__inner01{
    flex-direction: column;
  }
  .p-footer__menu{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
@media screen and (max-width: 560px) {
  .p-footer__menu{
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
/*-----------*/
.p-footer__inner02{
  border-top: 1px solid #FFF;
  font-size: 14px;
}
.p-footer__inner02 > ul{
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .p-footer__inner02 > ul{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 12px;
  }
}
@media screen and (max-width: 560px) {
  .p-footer__inner02 > ul{
    grid-template-columns: 1fr;
    gap: 8px;
  }
}
/*-----------*/
.p-footer__inner03{
  border-top: 1px solid #FFF;
  padding: 20px 0 0;
  display: flex;
  align-items: flex-end;
  gap: 20px;
}
.p-footer__inner03 > p{
  margin: 0;
  font-size: 12px;
}
.p-footer__inner03 .chuui{
  flex: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__inner03{
    flex-direction: column;
  }
  .p-footer__inner03 .chuui{
    width: 100%;
  }
  .p-footer__inner03 .copy{
    text-align: center;
    width: 100%;
  }
}
.c-box10{
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--color-main1);
  border-radius: 4px;
}
.c-box10 > .title{
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 12px);
  border-bottom: 1px solid var(--color-main1);
  padding: 0 0 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-box10 > .text{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-box10 > .text > .inner{
  display: flex;
  gap: 12px;
}
.c-box10 > .text > .inner > .inner_img{
  width: 300px;
  overflow: hidden;
  text-align: center;
}
.c-box10 > .text > .inner > .inner_img img{
  object-fit: cover;
  height: 100% !important;
}
.c-box10 > .text > .inner > .inner_text{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-box10 > .text p{
  margin: 0;
}
@media screen and (max-width: 764px) {
.c-box10 > .text > .inner{
  flex-direction: column;
  align-items: center;
}
.c-box10 > .text > .inner > .inner_img{
  width: 100%;
  max-width: 300px;
}
.c-box10 > .text > .inner > .inner_img img{
  object-fit: initial;
  height: initial !important;
  margin: auto;
}
}
/*--------------*/
.c-box11{
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-main1);
  border-radius: 4px;
}
.c-box11 > .title{
  font-weight: 700;
  font-size: 20px;
  line-height: calc(1em + 12px);
  background: var(--color-main1);
  color: #FFF;
  padding: 4px 12px 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-box11 > .text{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px;
}
.c-box11 > .text p{
  margin: 0;
}
/*--------------*/
.c-link__list02{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-link__list02 li {
  display: block;
  position: relative;
  padding-left: 1em;
  line-height: calc(1em + 12px);
}
.c-link__list02 li:before {
  position: absolute;
  left: 0;
  content: ">";
  font-weight: 700;
  font-size: 1em;
}
.c-link__list02 li:after {
  display: none;
}
/*--------------*/
.p-pagetitle{
  margin: calc(var(--header-hight) + var(--rp40)) 0 0 0;
}
.p-pagetitle__inner{
  max-width: 1280px;
  padding: 0 0 8px;
  margin: auto;
  display: flex;
  gap: 8px;
  align-items: center;
  border-bottom: 4px solid var(--color-main1);
}
.p-pagetitle__inner > .img img{
  width: 180px;
}
.p-pagetitle__inner > h1{
  display: flex;
  flex-direction: column;
}
.p-pagetitle__inner > h1 .title{
  font-size: 48px;
  font-weight: 900;
  line-height: calc(1em + 12px);
}
.p-pagetitle__inner > h1 .sup{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 12px);
}
@media screen and (max-width: 1080px) {
  .p-pagetitle{
    margin: calc(var(--header-hight) ) 0 0 0;
  }
  .p-pagetitle__inner > h1 .title{
    font-size: 40px;
  }
  .p-pagetitle__inner > .img img{
    width: 140px;
  }
}
@media screen and (max-width: 560px) {
  .p-pagetitle__inner{
    max-width: calc(1280px + (20px * 2));
    padding: 10px 20px 10px;
    gap: 0;
  }
  .p-pagetitle__inner > h1 .title{
    font-size: 22px;
  }
  .p-pagetitle__inner > h1 .sup{
    font-size: 14px;
  }
  .p-pagetitle__inner > .img img{
    width: 100px;
  }
}

.c-bg01{
  border: 2px solid var(--color-main1);
  border-radius: 4px;
  padding: var(--rp40);
  background: var(--color-wht);
}

.p-mypage-body01{
    background: url(/user/img/mypage_bg01.jpg) top center / 100% auto no-repeat #FFF;
}
@media screen and (max-width: 1080px) {
    .p-mypage-body01{
        background: url(/user/img/mypage_bg01.jpg) top center / 1080px auto no-repeat #FFF;
    }
}





.c-racelist{
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
}
.c-racelist__kaisai{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px 0 0 10px;
  background: #e77103;
  background: linear-gradient(0deg, rgba(231,113,3,1) 0%, rgba(204,147,0,1) 100%);
  color: var(--color-wht) !important;
  font-size: 1.2em;
  font-weight: 700;
  text-shadow: 0 0 2px #be6600;
}
@media screen and (max-width: 820px) {
  .c-racelist{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}
@media screen and (max-width: 768px) {
  .c-racelist{
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
  .c-racelist__kaisai{
    grid-area: 1 / 1 / 2 / 7;
    border-radius: 5px 5px 0 0;
  }
}
.c-racelist__btn{
  background: #fff;
  border: 1px solid var(--color-main1);
  color: var(--color-main1_text) !important;
  text-decoration: none !important;
  padding: .6em 2px;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
  position: relative;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.2em;
}
.c-racelist__btn:hover{
  background: var(--color-main1);
  border: 1px solid var(--color-main1);
  color: var(--color-wht) !important;
}
.p-racingdetail__race{
  display: flex;
}
/*-----------*/
.p-racingdetail__race > .rnamber{
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--color-main1);
  color: var(--color-wht) !important;
  font-size: 24px;
  font-weight: 700;
  padding: 10px;
}
.p-racingdetail__race > .rname_area{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: max(.5em,10px);
  flex: 1;
}
.p-racingdetail__race > .rname_area > .rname{
  font-size: 2rem;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 560px) {
  .p-racingdetail__race{
    display: block;
  }
  .p-racingdetail__race > .rnamber{
    padding: 5px;
    font-size: 20px;
  }
  .p-racingdetail__race > .rname_area{
    margin-left: 0;
  }
}
/*-----------*/
.p-racingdetail__sort{
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 12px;
}
.p-racingdetail__sort a{
  border: 1px solid var(--color-main1);
  padding: 0 8px;
  border-radius: 4px;
}


.p-racingdetail__btn__down{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main1);
  color: rgba(255, 255, 255, 0) !important;
  font-size: 0;
  position: relative;
  height: 30px;
  width: 30px;
}
.p-racingdetail__btn__down::before{
  content: "";
  display: inline-block;
  margin: auto;
  width: 10px;
  height: 10px;
  border-left: 2px solid #FFF;
  border-top: 2px solid #FFF;
  z-index: 1;
  transform: translateY(-20%) rotate(225deg) ;
}
.p-racingdetail__btn__up{
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-main1);
  color: rgba(255, 255, 255, 0) !important;
  font-size: 0;
  position: relative;
  height: 30px;
  width: 30px;
  transform: rotate(180deg)
}
.p-racingdetail__btn__up::before{
  content: "";
  display: inline-block;
  margin: auto;
  width: 10px;
  height: 10px;
  border-left: 2px solid #FFF;
  border-top: 2px solid #FFF;
  z-index: 1;
  transform: translateY(-20%) rotate(225deg) ;
}
/*-----------*/
.p-racingdetail__bachu{
  position: relative;
}
.p-racingdetail__sales{
  position: absolute;
  top: 100px;
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
}
.p-racingdetail__sales .inner{
  padding: 12px;
  border-radius: 4px;
  border: 1px solid var(--color-main1);
  background: var(--color-sub3);
  z-index: 1;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2) ;
  pointer-events: initial;
}
.p-racingdetail .bachu{
  width: 100%;
}
.p-racingdetail .bachu thead{
  background: var(--color-sub2);
}
.p-racingdetail .bachu thead th{
  text-align: center;
  border: 1px solid var(--color-blk3);
  padding: 4px 8px;
  font-weight: 700;
  color: #555;
  background: var(--color-sub4);
  font-size: 14px;
  line-height: calc(1em + 4px);
  vertical-align: middle;
}
.th-yosouka{
  display: flex;
  border: 1px solid var(--color-main1);
  padding: 2px 4px;
  border-radius: 4px;
  background: var(--color-wht);
}
.th-w-s{
  width: 0;white-space: nowrap;
}
.p-racingdetail .bachu tbody td{
  border: 1px solid var(--color-blk3);
  vertical-align: middle;
  padding: 4px 8px;
  font-weight: 400;
  color: #555;
  font-size: 14px;
  line-height: calc(1em + 4px);
}
.p-racingdetail .bachu tbody .wakuban{
  text-align: center;
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .yosouka{
  text-align: center;
  width: 0;
  white-space: nowrap;
  font-weight: 900;
}
.p-racingdetail .bachu tbody .umaban{
  text-align: center;
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .shisu_rank{
  text-align: center;
  width: 0;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 900;
}
.p-racingdetail .bachu tbody .shisu{
  text-align: center;
  width: 0;
  white-space: nowrap;
  font-size: 1.1rem;
  font-weight: 900;
}
.p-racingdetail .bachu tbody .kisyu{
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .choukyou{
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .odds{
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .rank{
  text-align: center;
  width: 0;
  white-space: nowrap;
}
.p-racingdetail .bachu tbody .goal{
  text-align: center;
  width: 0;
  white-space: nowrap;
}
.bg-pink {
  background-color: #ff69b4;
  color: #FFF !important;
}
.bg-orange {
  background-color: #FF9933;
}
.bg-green {
  background-color: #669933;
}
@media screen and (max-width: 1080px) {
  .p-racingdetail__bachu{
    overflow: auto;
    width: 100%;
    position: relative;
  }
  .p-racingdetail__bachu::before{
    content: "こちらは左右にスクロールできます";
    display: inline-block;
    border: 1px solid #999;
    background: #eee;
    padding: 0 5px;
    border-radius: 3px;
    margin-bottom: 10px;
  }
  .p-racingdetail__bachu table{
    width: 1080px !important;
  }
  .p-racingdetail .bachu thead th{
    padding: 8px 10px;
  }
  .p-racingdetail .bachu tbody td{
    padding: 8px 10px;
  }
}
@media screen and (max-width: 560px) {
  .p-racingdetail__sort{
    flex-wrap: wrap;
    gap: 4px 8px;
  }
  .p-racingdetail__sort > div{
    width: 100%;
  }
}
/*-----------*/
.p-racingdetail__result{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: calc( var(--margin-col) * -1);
}
.p-racingdetail__col {
  width: calc(100% / 2 - (var(--margin-col) / 2));
  margin-right: var(--margin-col);
  margin-bottom: var(--margin-col);
}
.p-racingdetail__col:nth-child(2n) {
  margin-right: 0;
}
.p-racingdetail__result table{
  width: 100%;
}
.p-racingdetail__result table th{
  text-align: center;
  border: 1px solid var(--color-blk3);
  padding: 8px;
  font-weight: 700;
  color: #555;
  font-size: 14px;
  line-height: calc(1em + 4px);
}
.p-racingdetail__result table td{
  border: 1px solid var(--color-blk3);
  padding: 8px;
  font-weight: 400;
  color: #555;
  font-size: 14px;
  line-height: calc(1em + 4px);
  background: #FFF;
}
.p-racingdetail__result table tbody .kensyu{
  background: var(--color-sub4);
}
.p-racingdetail__result table tbody .umaban{
  width: 33%;
}
.p-racingdetail__result table tbody .result{
  text-align: right;
  width: 33%;
}
@media screen and (max-width: 768px) {
  .p-racingdetail__row{
    display: block;
    margin-bottom: 0;
  }
  .p-racingdetail__col {
    width: 100%;
    margin-right: 0;
    margin-bottom: 0;
    margin-top: -1px;
  }
  .p-racingdetail__result table{
    width: 500px;
  }
}
@media screen and (max-width: 500px) {
  .p-racingdetail__result table{
    width: 100%;
  }
  .p-racingdetail__result table tbody .kensyu{
    width: 60px;
  }
  .p-racingdetail__result table tbody .umaban{
    width: 100px;
  }
  .p-racingdetail__result table tbody .result{
    width: auto;
  }
}






.c-racelist02{
  display: flex;
  gap: 12px;
  background: var(--color-sub3);
  padding: 8px;
  border-radius: 4px;
}
.c-racelist02_day{
  font-weight: 700;
  font-size: 20px;
  min-width: 124px;
}
.c-racelist02_inner{
  display: flex;
  gap: 12px;
  flex: 1;
}
.c-racelist02_kaisai{
  flex: 1;
}
.c-racelist02_kaisai > a{
  display: flex;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  border: 1px solid var(--color-main1);
  border-radius: 4px;
  background: var(--color-wht);
}
.c-racelist02_kaisai > a.active{
  border: 1px solid var(--color-main1);
  background: var(--color-main1);
  color: var(--color-wht);
}
@media screen and (max-width: 660px) {
  .c-racelist02{
    flex-direction: column;
  gap: 8px;
  }
.c-racelist02_day{
  font-weight: 700;
  font-size: 16px;
  min-width: initial;
  text-align: center;
  }
}

.c-racelist03_area{
  display: flex;
  gap: 8px;
  margin-top: 8px;
}
.c-racelist03_area .kaisai{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 4px);
  width: 3em;
  display: flex;
  align-items: center;
}
.c-racelist03_area .c-racelist03{
  flex: 1;
}

.c-racelist03{
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
  gap: 10px;
  background: var(--color-sub3);
  padding: 8px;
  border-radius: 4px;
}
.c-racelist03__btn{
  display: flex;
  justify-content: center;
  border: 1px solid var(--color-main1);
  border-radius: 4px;
  background: var(--color-wht);
  line-height: calc(1em + 2px);
  padding: 8px 0;
}
.c-racelist03__btn.active{
  border: 1px solid var(--color-main1);
  background: var(--color-main1);
  color: var(--color-wht);
}
@media screen and (max-width: 660px) {
.c-racelist03_area{
  flex-direction: column;
  gap: 4px;
}
  .c-racelist03{
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr;
  }
}



.p-uranai_area{
  display: flex;
  flex-direction: column;
  gap: var(--rp20);
}

.p-uranai{
  display: flex;
  gap: 16px;
  border: 3px solid var(--color-main1);
  border-radius: 4px;
  padding: 12px;
}

.p-uranai .rank{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--color-blk4);
  padding: 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: calc(1em + 8px);
  width: 120px;
}

.p-uranai .rank.no1{
  background: #F4E6D1;
}
.p-uranai .rank.no1 .ster{
  color: #ff9b06;
}

.p-uranai .rank.no2{
  background: #F4E6D1;
}
.p-uranai .rank.no2 .ster{
  color: #8d8d8d;
}

.p-uranai .rank.no3{
  background: #F4E6D1;
}
.p-uranai .rank.no3 .ster{
  color: #af7d71;
}





.p-uranai .text_area{
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-uranai .text_area_content01{
  border-bottom: 1px solid var(--color-main1);
  padding-bottom: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
}
.p-uranai .text_area_content01 .text01{
  font-size: 32px;
  font-weight: 700;
  line-height: calc(1em + 8px);
}
.p-uranai .text_area_content01 .text02{
  font-size: 20px;
  font-weight: 700;
  line-height: calc(1em + 4px);
}
