@charset "utf-8";
/* reset */
abbr,address,article,aside,audio,b,blockquote,body,canvas,caption,cite,code,dd,del,details,dfn,div,dl,dt,em,fieldset,figcaption,figure,footer,form,h1,h2,h3,h4,h5,h6,header,hgroup,html,i,iframe,img,ins,kbd,label,legend,li,mark,menu,nav,object,ol,p,pre,q,samp,section,small,span,strong,sub,summary,sup,table,tbody,td,tfoot,th,thead,time,tr,ul,var,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;box-sizing:border-box;}body{line-height:1}article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block}nav ul{list-style:none}blockquote,q{quotes:none}blockquote:after,blockquote:before,q:after,q:before{content:'';content:none}a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent}ins{text-decoration:none}ins,mark{background-color:#ff9;color:#000}mark{font-style:italic;font-weight:700}del{text-decoration:line-through}abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help}table{border-collapse:collapse;border-spacing:0}hr{display:block;height:1px;border:0;border-top:1px solid #ccc;margin:1em 0;padding:0}input,select{vertical-align:middle}
/* default */
:root {
  --main-color: #0068B5;
  --main-light-color: #2B5077;
  --main-dark-color: #202F52;
  --accent-color: #f0922c;
  --accent-light-color: #ffb05a;
  --accent-dark-color: #c56700;
  --text-color: #333;
  --text-light-color: #757575;
  --background-color: #FFFFFF;
  --background-light-color: #f2fafb;
  --th-color: #E7E7E7;
}
*{
  box-sizing:border-box;
}
html{
  font-size:16px;
  scroll-behavior:smooth;
}
@media screen and (max-width: 1120px) {
  html{
    font-size:14px;
  }
}
body {
  font-family: "Zen Maru Gothic", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Verdana, Meiryo, "M+ 1p", sans-serif;
  color: var(--text-color);
  font-size: min(3.2vw, 24px);
  line-height: 1.5;
  position: relative;
  background-color:var(--background-light-color);
}
.wrapper{
  max-width:750px;
  margin:0 auto;
  background-color:#fff;
}
.mincho {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "-apple-system", "Helvetica Neue", Roboto, "Droid Sans", serif, Arial, "Yu Gothic", YuGothic, Meiryo, sans-serif;
  font-weight: bold;
}
strong{
  font-weight:700;
  color:inherit;
}
a {
  color: #0d7ccc;
}
a:hover {
  color: #259cf1;
  text-decoration: underline;
}
xmp{
  background-color:#eee;
  border:1px solid #ddd;
  max-width:100%;
  overflow-x:scroll;
  padding:1rem;
  font-size:.875rem;
}
.btn,
input[type="submit"].btn{
  font-size: min(3.2vw, 20px);
  color:#fff;
  background:url(../img/icon_arrow_w.svg) no-repeat right 1em center / 0.8em auto var(--main-color);
  text-decoration:none;
  display:inline-block;
  padding:.5em 2.5em .5em 1.5em;
  text-align:center;
  border-radius:2em;
  transition:.4s;
  cursor:pointer;
  box-shadow: 0 3px 4px -1px rgb(0 0 0 / 24%);
}
.btn.small{
  padding:.25rem 1.5rem;
  min-width:auto;
}
.btn.large{
  padding:1rem 3rem;
  min-width: 300px;
  font-size:1.25rem;
}
.btn:hover,
input[type="submit"].btn:hover{
  box-shadow: none;
  text-decoration:none;
  color:#fff;
  opacity:0.8;
  transform:translateY(2px);
}
.button{
  display: inline-block;
  position: relative;
  overflow:hidden;
  color: #fff;
  background-color: #3d70bb;
  border: solid 1px #3d70bb;
  box-shadow: 0 4px #174d8b;
  border-radius: 4px;
  padding: 0.8rem 1rem .6rem;
  line-height: 1;
  text-align: center;
  transition:.2s;
  text-decoration:none;
}
button.btn{
  padding: 0.8rem 1rem;
}
.button:hover{
  color:#fff;
  text-decoration:none;
  box-shadow: none!important;
  transform: translateY(4px);
}
.button::after,
.btn_flat::after,
a.arrow::after{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  transition: transform .7s;
  background-color: transparent;
  content: '';
}
.button:hover::after,
.btn_flat:hover::after,
a.arrow:hover::after{
  z-index: 0;
  background-color: rgba(255,255,255,0.2);
  -ms-transform: scale(100);
  transform: scale(100);
}
.button i{
  color:#fff;
  margin-right:.2em;
}
.button.pink{
  background-color: #fa3f5b;
  border: solid 1px #fa3f5b;
  box-shadow: 0 4px #cf364d;
}
.button.green{
  background-color: #419438;
  border: solid 1px #419438;
  box-shadow: 0 4px #327c39;
}
.button.orange{
  background-color: #fb9004;
  border: solid 1px #fb9004;
  box-shadow: 0 4px #b77d2d;
}
.button.disabled{
  background-color: #8b8b8b;
  border: solid 1px #8b8b8b;
  box-shadow: 0 4px #6b6b6b;
  pointer-events:none;
}
.btn_flat{
  padding: .7rem 1rem;
  font-size: .88rem;
  line-height: 1.33333;
  border-radius: 3px  min-width: none;
  display: inline-block;
  font-weight: bold;
  text-align: center;
  touch-action: manipulation;
  border: 1px solid transparent;
  -webkit-box-shadow: inset 0 0 2px #fff;
  box-shadow: inset 0 0 2px #fff;
  text-decoration: none;
  letter-spacing: .05em;
  color: #fff;
  background-color: #3d70bb;
  border: solid 1px #174d8b;
  position: relative;
  overflow:hidden;
}
.button.large_btn,
.btn_flat.large_btn{
  font-size:1.15rem;
  padding: .7rem 2rem;
}
@media screen and (max-width: 640px) {
  .btn_flat{
    min-width: none;
  }
}
.btn_flat.pink{
  background-color: #fa3f5b;
  border: solid 1px #cf364d;
}
.btn_flat.green{
  background-color: #419438;
  border-color: #327c39;
}
.btn_flat.orange{
  background-color: #fb9004;
  border: solid 1px #b77d2d;
}
.btn_flat.white{
  background-color: #ffffff;
  border: solid 1px #afafaf;
  color:inherit;
}
.btn_flat.white:hover{
  color:inherit;
}
.btn_flat.white i{
  color:#fa3f5b;
}
.btn_flat.disabled{
  background-color: #8b8b8b;
  border: solid 1px #8b8b8b;
  pointer-events:none;
}
.btn_flat:hover{
  color:#fff;
  text-decoration:none;
}
.btn_flat i{
  color:#fff;
}
::selection {
  color: #fff;
  background: var(--main-color);
}
.btn_cv{
  display: block;
  background-color: #c0392b;
  width: auto;
  padding: 2rem 7rem 2rem 2rem;
  margin: 2rem auto;
  color: #fff;
  cursor: pointer;
  border-radius: 5px;
  transition: .4s;
  font-size:1.2rem;
  font-weight:bold;
  box-shadow: 0 4px #922a1f;
  position:relative;
  overflow:hidden;
}
.btn_cv:hover{
  box-shadow: none!important;
  transform: translateY(4px);
}
.btn_cv::before{
  color: #ffffff;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f0a9";
  font-weight: 700;
  font-size:1.5rem;
  right: 0;
  top:10%;
  width:5rem;
  height:80%;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content:         center;
  border-left: 2px groove #f14533;
}
.btn_cv::after{
  z-index: -1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin-left: -10px;
  margin-top: -10px;
  border-radius: 50%;
  transition: transform .7s;
  background-color: transparent;
  content: '';
}
.btn_cv:hover::after{
  z-index: 0;
  background-color: rgba(255,255,255,0.2);
  -ms-transform: scale(100);
  transform: scale(100);
}
.btn_cv.pink{
  background-color: #fa3f5b;
  box-shadow: 0 4px  #cf364d;
}
.btn_cv.pink::before{
  border-color: #ff566f;
}
.btn_cv.blue{
  background-color: #3d70bb;
  box-shadow: 0 4px  #174d8b;
}
.btn_cv.blue::before{
  border-color: #4f8be4;
}
.btn_cv.orange{
  background-color: #fb9004;
  box-shadow: 0 4px  #b77d2d;
}
.btn_cv.orange::before{
  border-color: #f9b65a;
}
.btn_cv.green{
  background-color: #419438;
  box-shadow: 0 4px  #327c39;
}
.btn_cv.green::before{
  border-color: #50b346;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.require {
  color: red;
}
ul li {
  list-style-type: none;
  margin: 0 0 .5em;
}
ul li:focus {
  outline-color: transparent;
}
main ul{
  background: none;
  border-radius: 0;
  box-shadow: none;
  padding-left:.5rem;
}
main ul li {
    list-style-type: none; /*点を非表示*/
    position: relative; /*基準位置*/
    padding-left: 0.6em;
}
main ul li:before {
    border-radius: 50%; /*丸くする*/
    width: 5px; /*点の幅*/
    height: 5px; /*点の高さ*/
    display: block;
    position: absolute; /*絶対配置*/
    left: 0; /*点の位置*/
    top: 0.65rem; /*点の位置*/
    content: "";
    background: #d54664; /*点の色*/
}
.check_list li{
  padding-left:1.5rem;
  position:relative;
}

.check_list li::before{
  color: #d54664;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 700;
  left: 0;
  top:.05rem;
  background:none;
}
ol {
  padding: 1rem 0 1rem 1.5rem;
}
ol li {
  padding: 0 0 1em;
}
ul.inline li {
  display: inline-block;
  margin-right: 2.5em;
}
figcaption {
  margin-top: .5rem;
  font-size: .9rem;
  line-height: 1.5;
}
.lead {
  line-height: 1.5;
  font-size: min(4vw, 32px);
}
i {
  color: #d54664;
  padding-right:0.2rem;
}
i.white {
  color: #FFF;
}
.text_center{
  text-align:center;
}
.pc_text_center{
  text-align:center;
}
.text_right{
  text-align:right;
}
.pc_text_right{
  text-align:right;
}
@media screen and (max-width: 640px) {
  .pc_text_center{
    text-align:left;
  }
  .pc_text_right{
    text-align:left;
  }
}
.well{
  background-color:#f9f1f3;
  padding:1rem;
  margin:1rem 0;
}
.well.danger{
  background-color:#ffe6e6;
  color:#bf0000;
}
.well *:last-child{
  margin-bottom:0;
}
.well.border{
  background-color:transparent;
  border:1px solid #d54664;
}
.highlight {
  background-color: #F8E9ED;
}
section.highlight{
  padding:4rem 0;
}
.container {
  max-width: 1180px;
  width: 100%;
  padding: 0 1em;
  margin:0 auto;
}
main section{
  padding: 2em 0;
}
/* title */
main h2{
	background-color:var(--main-color);
	color:#fff;
	display:flex;
	align-items:center;
	justify-content:space-between;
	padding:0.5em 1em;
	margin:0 0 1em;
}
main h2 .large{
	  font-size: min(4.5vw, 36px);
}
main h2 small{
  display:block;
  font-size: min(3vw, 23px);
}
main h2 .xlarge{
  display:block;
  font-size: min(10vw, 72px);
}

/* end/title */
.main_contents p {
  line-height: 2;
  margin-bottom: 1rem;
}
.pc-text-center {
  text-align: center;
}
.box {
  padding:2rem 1.5rem;
  margin:2rem 0;
}
.box.gray{
  background-color:#f8f8f8;
  border:none;
  box-shadow:none;
}
.box.bule{
  background-color:#ddf5ff;
  border:none;
  box-shadow:none;
}
.box *:first-child,
.well *:first-child{
  margin-top:0;
}
.box *:last-child,
.well *:last-child{
  margin-bottom:0;
}
.box h3,
.well h3{
  background:none;
  padding:0;
  font-weight:700;
  color:#d54664;
}
@media screen and (max-width: 640px) {
  .box {
    padding:2rem 1rem;
  }
}
section{
  padding:4rem 0;
}
@media screen and (max-width: 1280px) {
  .container {
    max-width: 880px;
  }
}
@media screen and (max-width: 960px) {
  .container {
    max-width: 768px;
  }
}
@media screen and (max-width: 960px) {
  .pc_only {
    display: none;
  }
}
@media screen and (min-width: 961px) {
  .sp_only {
    display: none;
  }
}
.xs_only{
  display:none;
}

main table{
  margin-bottom:1rem;
  width:100%;
  table-layout: fixed;
}
main table th{
  width:25%;
  min-width:10em;
  font-weight:normal;
}
main table th,
main table td{
  border:1px solid #fff;
  padding:0.5em;
  vertical-align:top;
}

main table tr:nth-child(1) th {
	border-top: unset;
}

main table tr:last-child td {
	border-bottom: unset;
}

main table tr:nth-child(2n) th,
main table tr:nth-child(2n) td {
  background: #f8f8f8;
}

main table tr th:last-child,
main table tr td:last-child {
	border-right: unset;
}

main table th{
  background-color:var(--th-color);
  vertical-align: middle;
  text-align:center;
}

main table td:nth-child(2) {
	min-width: 80px;
	text-align: center;
	vertical-align: middle;
}

main table td:nth-child(3) {
	min-width: 72px;
	text-align: center;
	vertical-align: middle;
}

main table td:nth-child(4),
main table td:nth-child(5),
main table td:nth-child(6),
main table td:nth-child(7),
main table td:nth-child(8),
main table td:nth-child(9) {
	font-size: 32px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	color:#ff0000;
}

main table td:nth-child(10) {
	min-width: 84px;
		text-align: center;
	vertical-align: middle;
}

main table td:nth-child(10) a {
	display: inline-block;
	color: #fff;
	background: #F0922C;
	text-decoration: unset;
	box-shadow: 2px 2px 1px #C56700;
	padding: 1rem 0.25rem;
	border-radius: 0.25rem;
	transition: 0.1s;
}

main table td:nth-child(10) a:hover {

	opacity: 0.7;
	box-shadow: 0 0 0 #C56700;
	margin-top: 2px;
	margin-left: 2px;
}

main table tr:nth-child(2n) .sticky:before {
	background: #f8f8f8;
}

main table td .triangle {
	color: #F1762C;
}

.check {
  margin-top:3rem;
  position: relative;
}

.check p {
  display: inline-block;
  position: absolute;
  top: -1.3em;
  left: 1rem;
  z-index: 10;
  color: #fff;
  background-color: #3d70bb;
  border-radius: 20px;
  padding: .2em 1em .3em 2.5em;
  overflow: hidden;
  border-left: none;
  line-height: 2;
  margin: 0;
}
.check p:before{
  position: absolute;
  left: 0.8em;
  top:0;
  font-family: "Font Awesome 5 Free";
  content: "\f0eb";
  font-weight: 700;
  font-size: 1.1rem;
}
.check.matome p:before{
  content: "\f46d";
}
.check.pink p:before{
  content: "\f06b";
  left:.6em;
  top:-.1em;
}
.cp_point li:before{
  color: #3d70bb;
  position: absolute;
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  font-weight: 700;
  left: 0;
}
.matome .cp_point li:before{
  color:#da3c41;
}
.pink .cp_point li:before{
  color:#fa3f5b;
  content:"\f3a5";
}
.matome .cp_point {
  border: 3px double #da3c41;
    background-color: #fff8fb;
}

.check.matome  p {
  background-color: #da3c41;
}
.pink .cp_point {
  border: 3px double #fa3f5b;
    background-color: #fff8fb;
}
.pink .cp_point li i {
  color: #fa3f5b;
  position: absolute;
  top: .5em;
  left: 0;
}
.check.pink  p {
  background-color: #fa3f5b;
}
.check p span {
  position: absolute;
  top: 0em;
  left: 0.3em;
  width: 1.8em;
  text-align: center;
  color: #fff;
  font-size: 1.3rem;
}
.check p i {
  color:#fff;
}
.check li{
  margin-bottom:0.5rem;
}
@media (max-width: 640px) {
  table.responsive_stack, table.responsive_stack thead, table.responsive_stack tbody, table.responsive_stack tr, table.responsive_stack th, table.responsive_stack td {
    display: block;
    width: auto!important;
  }
  table.responsive_stack th {
    background-color: #F3F3F3;
    border-bottom: none!important;
    padding: .4rem;
    text-align: center;
    line-height: 1.5;
  }
  table.responsive_stack td {
    border-bottom: none!important;
  }
  table.responsive_stack {
    border-bottom: 1px solid #ddd;
  }
}
.orange_txt{
  color:#ff7f00;
}
.red_txt{
  color:red;
}
.blue_txt{
  color:blue;
}
.marker {
  position: relative;
  background: linear-gradient(transparent 20%, #fff379 80%);
  background-size: 100% 60%;
  background-position: left .5em;
  background-repeat: no-repeat;
}
.strong{
  color:#f00;
  font-weight:bold;
  font-size:1.3rem;
}
.wavy{
  text-decoration: underline wavy #fa3f5b;
  font-weight:bold;
  font-size:1rem;
}
/* for Microsoft Edge */
@supports (-ms-ime-align:auto) {
  .wavy {
    border-bottom: double 6px #fa3f5b;
  }
}
.dot {
  -webkit-text-emphasis: dot #fa3f5b;
  text-emphasis: dot #37ab9d;
  font-weight:bold;
  font-size:1rem;
}
.column_detail h2{
  margin:1.5rem 0 .5rem;
  clear:both;
}
.column_detail h3{
  clear:both;
}
.column_detail h2::after{
  background:url(../../img/icon_note.svg) no-repeat #327c39 center/50%;
}
.pull_left{
  float:left;
  padding: 0 .5rem .5rem 0;
  max-width:40%;
}
.pull_right{
  float:right;
  padding:0 0 .5rem .5rem ;
  max-width:40%;
}
.btn_area{
  clear:both;
}
/* animetion */
.img_slide_anim {
  position: relative;
  overflow: hidden;
  z-index: 0;
  transform: translateY(40px);
  opacity: 0;
  transition: 1s cubic-bezier(0.5, 0.1, 0.2, 1) 0.2s;
}
.img_slide_anim:nth-child(1) {transition-delay: 0.1s;}
.img_slide_anim:nth-child(2) {transition-delay: 0.3s;}
.img_slide_anim:nth-child(3) {transition-delay: 0.5s;}
.img_slide_anim:nth-child(4) {transition-delay: 0.7s;}
.img_slide_anim:nth-child(5) {transition-delay: 0.9s;}
.img_slide_anim:nth-child(6) {transition-delay: 1.1s;}
.img_slide_anim.imgStart {
  transform: translateY(0);
  opacity: 1;
}
@keyframes head_anim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-webkit-keyframes head_anim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@-moz-keyframes head_anim {
  0% {
    transform: translateY(-100%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@-moz-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes leftFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-webkit-keyframes leftFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@-moz-keyframes leftFade {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0px);
  }
}
@keyframes bottomFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-webkit-keyframes bottomFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
@-moz-keyframes bottomFade {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}

/* end/animetion */

/* breadcrumb */
.breadcrumb{
  margin-bottom:0!important;
  font-size:.88rem;
  background:none;
  margin-top: 72px;
}
.breadcrumb ul{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-left:.5rem;
}
.breadcrumb li{
  margin:0 .5rem;
  display: flex;
  align-items: center;
}
.breadcrumb li a{
  padding:.5rem 0;
  display:inline-block;
  color:inherit;
  text-decoration:none;
  margin-right:.75rem;
  max-width:9rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.breadcrumb li a:hover{
  text-decoration:underline;
}
.breadcrumb li.is-active a{
  pointer-events:none;
}
.breadcrumb li::after{
  content:"";
  display:inline-block;
  width:.36rem;
  height:.36rem;
  border-right:1px solid #9a9a9a;
  border-bottom:1px solid #9a9a9a;
  transform:rotate(-45deg);
}
.breadcrumb li:last-child::after{
  content:none;
}
@media screen and (max-width: 1120px) {
  .breadcrumb{
    margin-top:60px;
  }
}

/************************************
form
*************************************/

/* reset */

button,
option,
select,
textarea,
input[type="button"],
input[type="submit"],
input[type="number"],
input[type="email"],
input[type="tel"],
input[type="text"],
input[type="select"],
input[type="option"],
input[type="password"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    -ms-appearance: none;
    appearance: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0;
    border: none;
    outline: 0;
    margin: 0;
    background: #fff;
}
input:focus{
     box-shadow:none;
}

/* for firefox */
select {
    text-indent: 0.01px;
    text-overflow: '';
}
/* for ie10 ie11 ie系のプルダウンの矢印を消す ie9は非対応 */
select::-ms-expand {
    display: none;
}
textarea,
input[type="number"],
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"]{
    width: 100%;
    padding: 10px;
    font-size: 1rem;
    border: 1px solid #ccc;
    height: 2.5rem;
    box-shadow:none;
    margin:0;
}
textarea {
    height: 10em;
}

/* フォーカス時の色変更 */

textarea:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
input[type="text"]:focus,
textarea:hover,
input[type="tel"]:hover,
input[type="email"]:hover,
input[type="password"]:hover,
input[type="text"]:hover,
.select select:hover{
    border: 1px solid #d54664;
    box-shadow:none;
}
/* ラジオボタン */
.radio_area{
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  margin:-0.25rem 0;
}
.radio_area label{
  display: flex;
  align-items: center;
  margin:.25rem 1.5rem .25rem 0;
  border:none;
}
.radio_area label input[type="radio"]{
  transform:scale(1.25);
  margin-right:.5rem;
}


/* チェックボックス */
.checkbox_area{
  display: flex;
  align-items: center;
  flex-wrap:wrap;
  margin:-0.25rem 0;
}
.checkbox_area label{
  display: flex;
  align-items: center;
  margin:.25rem 1.5rem .25rem 0;
  border:none;
}
.checkbox_area label input[type="checkbox"]{
  transform:scale(1.25);
  margin-right:.5rem;
}


.select {
    display: inline-block;
    position: relative;
    width: auto;
    height: 2.5rem!important;
    margin: .5rem;
    border: none;
}
.select::before{
    position: absolute;
    top: 0;
    right: 1.8rem;
    height:100%;
    width: 10px;
    z-index:1;
    content:"";
    display:block;
    border-left: 1px solid #ddd;
}
.select::after {
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    border-top: 6px solid transparent!important;
    border-left: 6px solid transparent!important;
    border-bottom: 6px solid transparent!important;
    border-right: 6px solid transparent!important;
    border-top: 6px solid #333!important;
    top: 50%!important;
    right: 13.5px!important;
    -webkit-transform: rotate(0deg)!important;
    transform: rotate(0deg)!important;
    margin-top: -3px!important;
    pointer-events: none;
}
.select select {
    width: 100%;
    height: 2.5rem;
    font-size: .88rem;
    padding: 0 3rem 0 10px!important;
    border:1px solid #ddd;
    border-radius:0;
    position: relative;
    box-sizing:border-box;
}

/* ie9対策 */

/* Google Chrome, Safari, Opera 15+, Android, iOS */

::-webkit-input-placeholder {
    color: #ccc;
    font-size: 1rem;
}

/* Firefox 18- */

:-moz-placeholder {
    color: #ccc;
    opacity: 1;
    font-size: 1rem;
}

/* Firefox 19+ */

::-moz-placeholder {
    color: #ccc;
    opacity: 1;
    font-size: 1rem;
}

/* IE 10+ */

:-ms-input-placeholder {
    color: #ccc;
    font-size: 1rem;
}
label{
  display: flex;
  align-items: center;
  border:1px solid #ddd;
}
label + label,
.group + label{
  margin-top:1rem;
}
label input[type="number"],
label input[type="text"],
label input[type="email"],
label input[type="tel"],
label input[type="password"]{
  border:1px solid transparent;
  margin:0;
}
.group{
  position:relative;
  display: flex;
  flex-wrap:wrap;
  align-items: center;
  margin:-0.5rem;
}
.group label{
  margin:0.5rem;
}
.row{
  margin:0;
}
.row + .row{
  margin-top:.5rem;
}
.row label{
  border:none;
  margin:0;
}
.row .group{
  margin:0;
}
.row .group label{
  border:1px solid #ddd;
}
label span,
label b,
label button{
  background-color:#eee;
  height: 2.5rem;
  width: auto;
  padding: 0 0.8rem;
  line-height:2.5rem;
  font-weight: normal;
  display:inline-block;
  word-break:keep-all;
}
.group input{
    margin:0;
    width: auto;
}
@media screen and (max-width: 640px) {
  textarea, input[type="number"], input[type="text"], input[type="email"], input[type="tel"], input[type="password"]{
      max-width: 100%!important;
      width: 100%;
  }
  .group input{
      margin-right:0;
      max-width: 100%!important;
      width: 100%;
  }
}
.group_flex_nowrap{
  display:flex;
  align-items:center;
  margin:-.5rem;
}
.group_flex_nowrap input{
  width:auto;
  margin:.5rem;
}

/************************************
form_end
*************************************/
/* ScrollHint */
.table_scroll {
  clear: both;
}
.table_scroll {
  width:auto;
  max-width:100%;
  overflow-x: unset!important;
  overflow-y: hidden!important;
  padding: 1rem 0 0;
}
.table_scroll table{
  min-width: 702px;
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%, 100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, .15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}
.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 95px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, .7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}
.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 200;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
  display: block;
}
.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}
.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}
.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}
.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}
.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, .4);
}
.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}
.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}
.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}
/* ScrollHint */

/* modal */
.modal .modalOverlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal .modalContent {
  background-color: #fff;
  padding: 20px;
  border-radius: 5px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 90%;
  max-height: 90%;
  overflow: auto;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modal .fade-in .modalContent {
  opacity: 1;
}

.modal .closeModalBtn {
  margin-top: 10px;
}

.modal .fade-in {
  opacity: 1 !important;
  pointer-events: auto;
}

.modal .fade-out {
  opacity: 0 !important;
  pointer-events: none;
}
/* end/modal */

/* header */
header{
	display:flex;
	gap:1em;
	align-items:center;
	justify-content:space-between;
	padding:0.5em 1em;
}
header .logo h1{
	display:flex;
	line-height:1;
	gap:0.25em;
	font-size: min(2.4vw, 19px);
}
header .logo h1 .sitename small{
	display:block;
	font-weight:500;
}
header .logo h1 .sitename span{
	display:block;
	font-size: min(3.2vw, 28px);
	margin-top:0.25em;
	color:var(--main-color);
	font-weight:700;
	transform:translateX(-0.15em);
}
header .logo h1 .icon{
	width:3em;
	transform:rotate(9deg);
}
.hero p{
  text-align:right;
  font-size: clamp(10px, 1.8vw, 18px);
  color:var(--text-light-color);
}
/* end/header */
footer p{
	text-align:center;
	font-size: clamp(10px, 1.8vw, 18px);
	padding:2em 0;
}

.hikaku {
	font-size:12px;
	table-layout:auto;
}
@media screen and (max-width: 640px) {
	.hikaku {
		font-size:10px;
		table-layout:auto;
	}
}
.hikaku tr th{
	width:auto;
	min-width:auto;
	font-weight:700;
}
.hikaku tr td.tmb{
	text-align:center;
}
.hikaku tr td.tmb img{
	border:1px solid #ddd;
	margin-bottom:0.25em;
}
.hikaku tr td.tmb a:hover img{

}
.hikaku .rank{
	display:block;
}
.hikaku tr th:nth-child(1){width:28em;}
.hikaku tr th:nth-child(2){width: 12em;}
.hikaku tr th:nth-child(3){width: 8em;}
.hikaku tr th:nth-child(4){width:10em;}
.hikaku tr th:nth-child(5){width:10em;}
.hikaku tr th:nth-child(6){width:10em;}
.hikaku tr th:nth-child(7){width:10em;}
.hikaku tr th:nth-child(8){width:10em;}
.hikaku tr th:nth-child(9){width:10em;}
.sticky {
  position: sticky;
  top: 0;
  left: 0;
  background: none;
  border-left: none;
  border-right: none;
}
.sticky {
	text-align: center;
	vertical-align: middle;
}
.sticky::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /*border-left: 1px solid #aab9bb;
  border-right: 1px solid #aab9bb;*/
  background-color: var(--background-color);
  z-index: -1;
}
tr:first-child .sticky::before {
  background-color: var(--th-color);
}
.sticky .rank{
	font-weight:700;
	display:inline-block;
	background-color: #cdffd8;
	padding:0.1em 0.25em;
}
tr:nth-child(2) .sticky .rank{
	background-color:#cf6363;
	color:#fff;
}
tr:nth-child(3) .sticky .rank{
	background-color:#879196;
	color:#fff;
}
tr:nth-child(4) .sticky .rank{
	background-color:#EEA320;
	color:#fff;
}
.sec_hikaku p{
	text-align:right;
	font-size: clamp(10px, 1.8vw, 18px);
	color:var(--text-light-color);
}
.sec_hikaku .star{
	font-weight:700;
	color:#cf6363;
}
h2.megahon{
	background-color:var(--th-color);
	color:var(--main-dark-color);
	font-size: min(4.5vw, 36px);
	display:flex;
	align-items:center;
	justify-content:center;
	gap:0.5em 1em;
}
h2.megahon img{
	width:4em;
	margin:0;
}
.rank_detail .tit{
	position:sticky;
	top:0.75em;
	z-index:9999;
	display:flex;
	color:#fff;
	padding: 0.5em 1em 0.5em 5em;
	border: solid 1px #ffffff;
	background: var(--main-color);
	box-shadow: 0px 0px 0px 0.5em var(--main-color);
	color: #ffffff;
	margin-bottom:1.75em;
}
.rank_detail .tit::after {
	content: "";
	width: 1rem;
	height: 1rem;
	border: solid 1px #fff;
	position: absolute;
	bottom: -0.25em;
	right: -0.25em;
}
.rank_detail .rank_num {
	font-weight:700;
	position:absolute;
	left:0.25em;
	top:-0.75em;
	line-height:1;
	background:url(../img/rank_bg.svg) no-repeat top center / 100% auto;
	width:4em;
	height:5.8em;
	color:#474218;
	padding:0.75em 0;
	text-align:center;
}
@media screen and (min-width: 750px) {
	.rank_detail .rank_num {
		padding:0.5em 0;
	}
}
.rank_detail .rank_num .num{
	font-size: min(6vw, 60px);
	line-height:1;
}
#rank10.rank_detail .rank_num{
	padding:0.75em 0;
}
#rank10.rank_detail .rank_num .num{
	font-size: min(5.8vw, 44px);
	line-height:1;
}
.rank_detail .tit h3 {
	font-size: min(4.4vw, 33px);
}
.rank_detail .desc{
	font-size: clamp(10px, 3.4vw, 26px);
	margin:1em 0;
}
.rank_detail .inner{
	display:flex;
	flex-wrap:wrap;
	gap:1em 2%;
	margin:1em 0 0;
}
.rank_detail .inner .tmb{
	width:40%;
}
.rank_detail .inner .rank_info{
	width:58%;
}
.rank_detail .rank_row{
	display:flex;
	align-items:center;
	gap:0 6%;
	justify-content:space-between;
	border-bottom:1px solid #ddd;
	padding:0 0 0.5em;
	margin-bottom:0.5em;
}
.rank_detail .rank_row:last-child{
	border:none;
}
.rank_detail .rank_row h4{
	font-size: clamp(10px, 2.2vw, 18px);
	color:var(--main-dark-color);
}
.rank_detail .rank_row p{
	font-size: clamp(10px, 2.2vw, 17px);
	text-align:right;
}
.rank_detail .rank_row.osusume p{
	display:flex;
	align-items:flex-end;
	flex-direction:column;
	gap:0.25em;
	line-height:1;
}
.rank_detail .rank_row.osusume p .osusume_num{
	font-size: min(4.4vw, 33px);
	font-weight:700;
	color:#cf6363;
}
.rank_detail .rank_row.osusume .star {
	color:#eeda6c;
}
.rank_detail .rank_row.osusume .star .star04,
.rank_detail .rank_row.osusume .star .star06,
.rank_detail .rank_row.osusume .star .star08 {
	display: inline-block;
	position: relative;
	width: 1rem;
	height: 1rem;
}
.rank_detail .rank_row.osusume .star .star04::before,
.rank_detail .rank_row.osusume .star .star06::before,
.rank_detail .rank_row.osusume .star .star08::before {
	content: "☆";
	display: inline-block;
	color:#eeda6c;
	width: 1rem;
	position: absolute;
	top: 0;
	left: 0;
}
.rank_detail .rank_row.osusume .star .star04::after {
	content: "★";
	display: inline-block;
	color: #eeda6c;
	position: absolute;
	top: 0;
	left: 0;
	width: 0.4rem;
	overflow: hidden;
}
.rank_detail .rank_row.osusume .star .star06::after {
	content: "★";
	display: inline-block;
	color: #eeda6c;
	position: absolute;
	top: 0;
	left: 0;
	width: 0.6rem;
	overflow: hidden;
}
.rank_detail .rank_row.osusume .star .star08::after {
	content: "★";
	display: inline-block;
	color: #eeda6c;
	position: absolute;
	top: 0;
	left: 0;
	width: 0.8rem;
	overflow: hidden;
}
@media screen and (max-width: 640px) {
	.rank_detail .inner .tmb{
		width:100%;
	}
	.rank_detail .inner .rank_info{
		width:100%;
	}
	.rank_detail .rank_row h4{
		font-size: clamp(10px, 3.8vw, 30px);
	}
	.rank_detail .rank_row p{
		font-size: clamp(10px, 3.8vw, 30px);
	}
	.rank_detail .rank_row.osusume p .osusume_num{
		font-size: clamp(10px, 6.8vw, 40px);
		font-weight:700;
		color:#cf6363;
	}
}
.rank_detail .cta {
	text-align:center;
	margin:0.5em 0 3em;
}
.rank_detail .cta a {
	display: inline-block;
	position:relative;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: auto;
	margin: 0 auto;
	padding: 0.5em 2em;
	font-weight: 700;
	border-radius: 2em;
	background-color: var(--accent-color);
	box-shadow: 0 5px var(--accent-dark-color);
	color: #fff;
	transition:.2s ease;
	animation: move 2s infinite;
	font-size: min(3.6vw, 28px);
}
@keyframes move {
    0% {box-shadow: 0 5px 0 var(--accent-dark-color); top: 0px;}
    10% {box-shadow: 0 0 0 var(--accent-dark-color); top: 5px;}
    20% {box-shadow: 0 5px 0 var(--accent-dark-color); top: 0px;}
    30% {box-shadow: 0 0 0 var(--accent-dark-color); top: 5px;}
    40% {box-shadow: 0 5px 0 var(--accent-dark-color); top: 0px;}
}
.rank_detail .cta a:hover {
	opacity:0.8;
}
.rank_detail .note{
    /*background-image: linear-gradient(rgba(210, 210, 210, 0.4) 1px, transparent 1px), linear-gradient(to right, rgba(210, 210, 210, 0.4) 1px, transparent 1px);
    background-size: 20px 20px;
    background-color: #fff;
    background-position: -14px 14px;
    border:1px solid #ddd;
    padding:1em;
    margin-bottom:1em;*/
	background:
    radial-gradient(#ccc 3px, transparent 4px),
    radial-gradient(#ccc 3px, transparent 4px),
    linear-gradient(#fff 4px, transparent 0),
    linear-gradient(45deg, transparent 74px, transparent 75px, #ccc 75px, #ccc 76px, transparent 77px, transparent 109px),
    linear-gradient(-45deg, transparent 75px, transparent 76px, #ccc 76px, #ccc 77px, transparent 78px, transparent 109px),
  #fff;
  background-size: 109px 109px, 109px 109px,100% 6px, 109px 109px, 109px 109px;
  background-position: 54px 55px, 0px 0px, 0px 0px, 0px 0px, 0px 0px;
}
.rank_detail .note .lead{
	display:flex;
	align-items:center;
	justify-content:space-between;
}
.rank_detail .note .lead img{
	width:15%;
	margin:0;
}
.rank_detail .note .lead span{
	width:82%;
	font-weight:700;
}
.rank_detail .note .lead strong{
	color:#ff0000;
}
.rank_detail .note h3{
	margin:1em 0 0.5em;
	background-color:var(--main-color);
	color:#fff;
	padding:0.25em 0.5em;
	font-size: min(4vw, 32px);
}
.rank_detail .note ul li{
	padding:0 0 0 1.5em;
  font-size: min(4vw, 32px);
}
.rank_detail .note ul li strong{
	color:#f00;
	font-weight:700;
}
.rank_detail .note ul li:before{
	content:'';
	width:1em;
	height:1em;
	border-radius:0;
	background:url(../img/icon_check.svg) no-repeat top center / contain;
	position:absolute;
	top:0.3em;
	left:0;
}
.rank_detail {
	border-bottom:5px dotted #ccc;
	margin-bottom:3em;
}
.rank_detail:last-child{
	margin-bottom:0;
}
.unei{
	padding-top:0;
}
.unei th{
	width:9em;
}
.unei h2{
	position:relative;
	cursor:pointer;
}
.unei h2:hover{
	background-color:#1f79c3;
}
.unei h2:before,
.unei h2:after {
	position: absolute;
	background-color: #fff;
	content: '';
	transition: all .3s;
	width: 18px;
	height: 2px;
}

.unei h2:before {
    border-radius:0;
    left:auto;
	top: 50%;
	right: 22px;
}
.unei h2:after {
	top: 50%;
	right: 22px;
	transform: rotate(-90deg);
}
.unei .open h2::after {
	transform: rotate(-0deg);
}
