@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");

:root {
  /*＝＝＝＝＝＝＝＝＝＝ 
          変数
  ＝＝＝＝＝＝＝＝＝＝*/
  /* 色 */  
  --Semantic-Main-Main-Red: #e60000;
  --Semantic-Text-Text-Black: #333333;
  --Semantic-Text-Text-Gray: #666666;
  --Semantic-Text-Text-Blue: #0066aa;
  --Semantic-Text-Text-White: #ffffff;
  --Semantic-Background-Background-Red01: #fdf6f7;
  --Semantic-Background-Background-Red02: #fcefef;
  --Semantic-Background-Background-Gray01: #f8f8f8;
  --Semantic-Background-Background-Gray02: #e9e9e9;
  --Semantic-Background-Background-White: #ffffff;
  --Semantic-Border-Border-Gray01: #9e9e9e;
  --Semantic-Border-Border-Gray02: #dddddd;
  --Semantic-Arrow-Gray: #838383;

  /* フォント */
  --fs-l: 18px;
  --fs-m: 16px;
  --fs-s: 14px;
  --fs-xs: 12px;
  --fw-normal: 500;
  --fw-bold: 700;
  --lh-normal: 1.6;
  --lh-tight: 1.4;
  /* SP時横スクロールヒント */
  --scroll-hint-opacity: 1;
}

/*----------------------------------------
ページ全体設定
----------------------------------------*/

html {
  /* scroll-behavior: smooth; */
}
body {
	font-size: var( --fs-m ); 
	font-family: "Noto Sans JP", sans-serif;
	font-weight: var( --fw-normal );
	line-height: var( --lh-normal );
	color: #333;
  background-color: #ff6365;
  background-image: url('../imgs/bg_sp.png');
  background-position: center; 
  background-size: cover; 
  background-repeat: no-repeat;
  background-attachment: fixed;
}
@media screen and (min-width: 769px) {
  body{
    background-image: url('../imgs/bg_pc.png');
  }
}
*,::before,::after {
  box-sizing: border-box;
}
img {
	max-width: 100%;
  height: auto;
	vertical-align: bottom;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 769px) {
 a {
  transition:all 0.2s;
  transition-delay: 0;
 }
 a:hover {
  opacity: 0.7;
 }
}

button {
  transition: opacity 0.3s;
  cursor: pointer;
}
button.unstyled {
  color: inherit;
  border: none;
  background-color: transparent;
  padding: 0;
}
@media screen and (min-width: 769px) {
  button:hover {
    opacity: 0.5;
  }
}

/*----------------------------------------------------
アニメーション用クラス(スクロールアニメーション)
----------------------------------------------------*/

.fadeUpTrigger {
  opacity: 0;
  transition: all 0.3s;
  transform: translateY(-40px);
}

/* 下からフワッと出てくる */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.fadeIn {
  animation-name: fadeIn;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.boxOpacity {
  opacity: 0;
}


/*----------------------------------------
汎用的に使えるパーツ
※リニューアルサイトのcommon.cssから流用
----------------------------------------*/

/* font関係 */
.fw-bold {
  font-weight: var(--fw-bold) !important;
}
strong {
  font-weight: var(--fw-bold) !important;
}
.text-black {
  color: var(--Semantic-Text-Text-Black, #333333) !important;
}
.text-gray {
  color: var(--Semantic-Text-Text-Gray, #666666) !important;
}
.text-red {
  color: var(--Semantic-Main-Main-Red, #e60000) !important;
}
.text-blue {
  color: var(--Semantic-Text-Text-Blue, #0066aa) !important;
}
.text-white {
  color: var(--Semantic-Text-Text-White, #ffffff) !important;
}
.ws-nowrap {
  white-space: nowrap !important;/* 改行させない */
}

/* リスト */
.marked-list {
  list-style: none;
}
.marked-list > li {
  position: relative;
}
.marked-list > li::before {
  position: absolute;
  left: 0;
  font-weight: inherit;
}
.marked-list > li a {
  color: var(--Semantic-Text-Text-Blue, #0066aa);
  text-decoration: underline;
}
.marked-list--dotted > li {
  padding-left: 1.5em;
}
.marked-list--dotted > li::before {
  content: "・";
  font-weight: var(--fw-bold) !important;
}
.marked-list--kome {
  font-size: var(--fs-s);
}
.marked-list--kome > li {
  padding-left: 1.5em;
}
.marked-list--kome > li::before {
  content: "※";
}


/* リンク */
.underlined-link,
.pdf-link {
  color: var(--Semantic-Text-Text-Blue, #0066aa);
  text-decoration: underline;
}
.pdf-link {
  position: relative;
  align-self: flex-start;
}
.pdf-link::after {
  content: "";
  display: inline-block;
  align-self: center;
  width: 1.375em;
  height: 1.375em;
  background-image: url("../imgs/common/icon_pdf.svg");
  margin-left: 4px;
  vertical-align: -0.3em;
}

/* 表示非表示 */
@media screen and (min-width: 769px) {
	.sp-only {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}
}




/*----------------------------------------
共通パーツ
----------------------------------------*/
/* セクション */
section {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border: 2px solid #333333;
  border-radius: 20px;
  padding: 50px 15px;
  position: relative;
}
section.no-pin {
  padding-bottom: 15px;
  padding-top: 15px;
}
@media screen and (min-width: 769px) {
  section {
    padding: 70px 75px;
    gap: 30px;
  }
  section.no-pin {
    padding-bottom: 30px;
    padding-top: 30px;
  }
}

section h2 {
  text-align: center;
}


/* ピン */
section .pin {
  border-radius: 50%;
  border: 2px solid #000000;
  width: 20px;
  height: 20px;
  display: inline-block;
  background-color: white;
  position: absolute;
}
section .pin.top-left,
section .pin.top-right {
  top: 15px;
}
section .pin.bottom-left,
section .pin.bottom-right {
  bottom: 15px;
}
section .pin.top-left ,section .pin.bottom-left{
  left: 15px;
}
section .pin.top-right ,section .pin.bottom-right {
  right: 15px;
}
@media screen and (min-width: 769px) {
  section .pin.top-left,
  section .pin.top-right {
    top: 20px;
  }
  section .pin.bottom-left,
  section .pin.bottom-right {
    bottom: 20px;
  }
  section .pin.top-left ,section .pin.bottom-left{
    left: 20px;
  }
  section .pin.top-right ,section .pin.bottom-right {
    right: 20px;
  }
}


/* ボタン */
.btn {
  background-color: #E60000;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  gap:10px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 40px;
  padding: 19px 10px;
  color: white;
  font-weight: bold;
  width: 100%;
  max-width: 305px;
  font-size: 18px;
}
.btn.btn-icon::before {
  content: "";
  background-image: url("../imgs/common/icon_diagnosis.svg");
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
}
.btn.btn-black {
  background-color: #333333;
}
.btn.btn-white {
  background-color: white;
  border: 2px solid #E60000;
  color: #E60000;
}
.btn.btn-reset {
  color: initial;
  border: 2px solid #333333;
  background-color: white; 
}
.btn.btn-reset::before {
  content: "";
  background-image: url("../imgs/common/icon_reset.svg");
  width: 20px;
  height: 24px;
  min-width: 20px;
  min-height: 24px;
}
.btn-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}
@media screen and (min-width: 769px) {
  .btn {
    max-width: 320px;
    font-size: 18px;
    padding: 18px 10px;
  }
  .btn-wrap {
    gap: 20px;
  }
}

/* グレーボックス */
.gray-box ul{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.gray-box-part {
  background-color: #eeeeee;
  border-radius: 10px;
  display: flex;
  align-items: center;
  padding: 16px 20px;
}
.gray-box-part.icon-worries {
  gap: 16px;
}
.gray-box-part.icon-worries p {
  font-weight: bold;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 769px) {
  .gray-box-part.icon-worries {
    gap: 16px;
  }
  .gray-box-part.icon-worries p {
    font-size: 20px;
  }
}

/* テーブルレイアウト */
.table-wrap {
  position: relative;
}
/* スマホ時「スクロールできます」画像が正しく表示されるようにするため */
@media screen and (max-width: 769px) {
  .table-wrap::before {
    background-repeat: no-repeat;
    background-size: contain;
  }
}
@media screen and (max-width: 768px) {
  .table-wrap.sp-scroll > .table {
    width: 920px;
  }
}
.table {
  width: 100%;
  table-layout: fixed;
  position: relative;
  font-size: 14px;
}
.table th,
.table td {
  border: 1px solid var(--Semantic-Border-Border-Gray02, #dddddd);
  padding: 8px;
  text-align: left;
  vertical-align: top;
  font-weight: var(--fw-normal);
}
.table th a:not(.arrow-link-gr),
.table td a:not(.arrow-link-gr) {
  color: var(--Semantic-Text-Text-Blue, #0066aa);
  text-decoration: underline;
}
.table td {
  background-color: var(--Semantic-Background-Background-White, #ffffff);
}
.table th {
  background-color: var(--Semantic-Background-Background-Gray01, #f8f8f8);
}
.table thead th {
  background-color: var(--Semantic-Background-Background-Gray02, #e9e9e9);
}
.table--va-middle th,
.table--va-middle td {
  vertical-align: middle;
}
.table--ta-center th,
.table--ta-center td {
  text-align: center;
}
.table .bg-th-dark-gray {
  background-color: #666666;
}
.table .bg-th-dark-pink {
  background-color: #fcefef;
}
.table .bg-th-dark-red {
  background-color: var( --Semantic-Main-Main-Red);
}
/* SP-scroll */
@media screen and (max-width: 768px) {
  .sp-scroll {
    padding-bottom: 16px;
    overflow-x: auto;
  }
  .sp-scroll::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url("../imgs/common/icon_scroll_hint.png");
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    opacity: var(--scroll-hint-opacity);
    transition: opacity 0.3s ease;
  }
  .sp-scroll img {
    max-width: none;
  }
}


/*----------------------------------------
mainvisual 
----------------------------------------*/
.mainvisual {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainvisual {
    padding-top: 60px;
  }
  .mainvisual .kv{
    
    display: flex;
    justify-content: center;
  }
  .mainvisual .kv img{
    width: calc(100% - 40px);
    max-width: 500px;
  }
}
@media screen and (min-width: 1200px) {
  .mainvisual .kv {
    position: fixed;
    top:50%;
    transform: translate(-50%,-50%);
    left: calc((100vw - 750px)/4);
    width: calc((100vw - 750px)/2.5);
    max-width: 400px;
  }
  .mainvisual .pc-sidemenu {
    position: fixed;
    top:50%;
    transform: translate(50%,-50%);
    right: calc((100vw - 750px)/4);
    width: calc((100vw - 750px)/2.5);
    max-width: 400px;
  }
  .mainvisual .pc-sidemenu ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  .mainvisual .pc-sidemenu .menu {
    margin-bottom: 60px; 
  }
  .mainvisual .pc-sidemenu .menu-title  {
    margin-bottom: 20px;
    text-align: center;
  }
  .mainvisual .pc-sidemenu .menu-title img{
    max-width: 85px;
  }
  .mainvisual .pc-sidemenu .kouzakaisetu-title {
    margin-bottom: 20px;
    text-align: center;
  }
}

@media screen and (min-width: 1800px) {
  .mainvisual .kv {
    width: calc((100vw - 750px)/2);
    max-width: 500px;
  }
  .mainvisual .pc-sidemenu {
    width: calc((100vw - 750px)/2);
    max-width: 400px;
  }
}

@media screen and (min-width: 769px) and (max-width: 1199px) {
  .mainvisual .kv {
    display: flex;
    justify-content: center;
    padding-top: 140px;
  }
  .mainvisual .kv img{
    width: 600px;
  }
  .mainvisual .pc-sidemenu {
    display: none;
  }
}



/*----------------------------------------
main
----------------------------------------*/
main {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media screen and (min-width: 769px) {
  main {
    padding: 143px 0px 40px;
    width: 750px;
    margin: 0 auto;
    gap: 40px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1199px) {
  main {
    padding-top: 40px;
  }
}

/*----------------------------------------
header
----------------------------------------*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: #fff;

}
.header img {

}
.header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 4px 16px;
  border-bottom: 3px solid var(--Semantic-Main-Main-Red);
}
.header .logo_mufg img{
	width: 68px;
}
.header a {
  line-height: 0;
}
.header .logo_corporate img{
	width: 118px;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 0 40px;
    border-bottom: 3px solid var(--Semantic-Main-Main-Red);
  }
  .header a {
    display: inline-block;
  }
  .header .header_inner {
    height: 103px;
    padding: 26px 0px;
    max-width: 1200px;
    margin: 0 auto;
    border-bottom: initial;
  }
	.header .logo_mufg img{
		width: 337px;
	}
  .header .logo_corporate{
    display: flex;
    align-items: center;
    gap: 15px;
  }
	.header .logo_corporate img{
		width: 262px;
	}
}


/* sp表示 */
.openbtn{
  position: relative;
  cursor: pointer;
  width: 34px;
  height: 34px;
  display: flex;
  justify-content: center;
}
.openbtn span{
  display: inline-block;
  transition: all .3s;
  position: absolute;
  top: 0;
  height: 2px;
  width: 25px;
  background-color: #E60000;
}
.openbtn span:nth-of-type(1) {
  top:6px; 
}
.openbtn span:nth-of-type(2) {
  top:14px;
}
.openbtn span:nth-of-type(3) {
  top:22px;
}
.openbtn.active span:nth-of-type(1) {
  top: 10px;
  left: 0px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3){
  top: 22px;
  left: 0px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}
header .header_bottom{
  display: none;
  position: relative;
  background-color: #fff;
  padding: 30px 20px 30px;
}


@media screen and (max-width: 768px){
  header .header_inner{
    height: 42px;
  }
  header .header_inner_right {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  header .header_bottom .menu{
    max-width: 335px;
    margin: 0 auto;
  }
  header .header_bottom .menu ul{
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

}


/*----------------------------------------
footer
----------------------------------------*/
footer {
  background-color: #333333;
  color: white;
  font-size: 14px;
  line-height: 1.6;
  padding: 20px;
  max-width: 750px;
  margin: 0 auto;
  position: relative;
}


@media screen and (min-width: 769px) {

}

/*----------------------------------------
intro ページ導入
----------------------------------------*/
.intro {
  background-color: white;
}


/*----------------------------------------
goodJob 
----------------------------------------*/
.goodJob {
  background-color: white;
}


/*----------------------------------------
what
----------------------------------------*/
.what {
  background-color: #338DD8;
}

/*----------------------------------------
argomaster
----------------------------------------*/
.argomaster {
  background-color: #338DD8;
}
/* タブ */
.tab-header {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 15px;
}
.tab-header .tab {
  min-height: auto;
  display: flex;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s ease;
  width: 20%;
}
.tab-header .tab.active img{
  outline: 4px solid #FFEA00;
  outline-offset: -2px; /* 内側にオフセットを調整 */
  border-radius: 50%;
  transition: none; /* アクティブ状態ではトランジションを無効にする */
}
.tab-container-explain {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  .tab-container-explain {
    font-size: 18px;
  }
  .tab-header{
    margin-bottom: 30px;
    gap: 6px;
  }
  .tab-header .tab {
    width: 80px;
  }
  .tab-header .tab img{
    /* transition: transform 0s; */
    transform: rotateY(0deg);
  }

  .tab-header .tab:hover img{
    /* opacity:0.8; */
    transition: transform 1s;
    transform: rotateY(360deg);
  }
  .tab-header .tab.active {
    cursor: initial;
  }
  .tab-header .tab.active:hover img{
    transition: transform 0s;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 768px) {

}

/* セクション「アルゴマスター診断」でも流用 */
.algomaster-box {
  background-color: #fff;
  padding: 15px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.diagnosis-box .algomaster-box {
  padding: 0;
}
.algomaster-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background-color: #FFDF5C;
  border: 2px solid #222222;
  color: #222222;
  border-radius: 10px;
  padding: 15px;
}
.algomaster-name h3 {
  font-size: 24px;
  font-weight: bold;
}
.algomaster-image {
 text-align: center; 
}
.algomaster-info ul li:first-child{
  border-top: 2px dotted #333333;
}
.algomaster-info ul li {
  display: flex;
  flex-direction: column;
  border-bottom: 2px dotted #333333;
  padding: 20px 0px;
  gap: 10px;
}
.algomaster-info ul li .algomaster-info-cat {
  background-color: #eeeeee;
  display: inline-block;
  width: fit-content;
  padding: 5px 20px;
  border-radius: 30px;
}
@media screen and (min-width: 769px) {
  .algomaster-box {
    padding: 30px;
    gap: 30px;
  }
  .algomaster-name {
    padding: 30px;
    gap: 15px;
  }
  .algomaster-name h3 {
    font-size: 30px;
  }
  .algomaster-info ul li {
    flex-direction: initial;
    align-items: center;
    gap: 20px;
  }
  .algomaster-info ul li .algomaster-info-cat {
    width: 72px;
  }
   .algomaster-info ul li .algomaster-info-cat-text {
    width: 82%;
   }

}

.argomaster-attention {
  text-align: center;
}

/*----------------------------------------
campaign
----------------------------------------*/
.campaign {
  background-color: #FFDF5C;
}


/*----------------------------------------
diagnosis
----------------------------------------*/
.diagnosis {
  background-color: #175380;
}
.diagnosis-box { 
  padding: 15px;
  background-color: white;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
ul.diagnosis-choice {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.diagnosis-choice li {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 11px;
  cursor: pointer;
}
.diagnosis-choice li.choice_active { 
  outline: 4px solid var(--Semantic-Main-Main-Red);
  outline-offset: -2px; /* 内側にオフセットを調整 */
}
.diagnosis-choice .choice { 
  font-weight: bold;
}
.diagnosis-choice .choice img{
  min-width: 30px;
  width: 30px;
} 
.diagnosis-choice p {
  width: 100%;
}
.diagnosis-next-btn { 
  cursor: none;
  pointer-events: none;
  opacity: 0.5;
  margin: 0 auto;
  border: none;
}
.diagnosis-next-btn.active { 
  cursor: pointer;
  pointer-events: initial;
  opacity: 1;
}
.hidden { 
  display: none;
}
#result {
  opacity: 0;
}
#result h2 {
  color: red;
}
@media screen and (min-width: 769px) {
  .diagnosis-choice .choice img{ 
    min-width: 50px;
    width: 50px;
  }
  .diagnosis-choice li {
    gap: 20px;
  }
  .diagnosis-box {
    padding: 30px;
    gap: 30px;
  }
}


/*----------------------------------------
ranking
----------------------------------------*/
.ranking {
  background-color: #2aaba0;
}
.ranking .ranking-top5 {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ranking .ranking-top5 h3{
  font-size: 20px;
  color: white;
}
.ranking .ranking-top5 ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.ranking .ranking-top5 li a {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 10px;
  background-color: white;
  border-radius: 10px;
  text-decoration: underline;
  color: var(--Semantic-Text-Text-Blue);
}
.ranking .ranking-top5 .ranking-top5-period {
  color: white;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .ranking .ranking-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (min-width: 769px) {
  .ranking .ranking-wrap {
    display: flex;
    gap: 30px;
  }
  .ranking .ranking-top5 ul {
    gap: 10px;
  }
  .ranking .ranking-wrap .ranking-top5 {
    width: 47.5%;
  }
}


/*----------------------------------------
features
----------------------------------------*/
.features {
  background-color: white;
}
.features .features-different {
  background-color: var(--Semantic-Background-Background-Gray01);
  padding: 15px;
  border-radius: 10px;
}
.features .features-different .features-different-title{
  font-size: 18px;
  margin-bottom: 10px;
  font-weight: bold;
}
.features .features-most {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.features .features-most h3 {
  font-weight: bold;
  font-size: 24px;
}
@media screen and (min-width: 769px) {
  .features .features-different {
    padding: 30px;
  }
  .features .features-most {
    gap: 20px;
  }
}

/*----------------------------------------
features
----------------------------------------*/
.lineup {
  background-color: #FFDF5C;
}
.lineup-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lineup-list li {

}
.lineup-list li a{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: white;
  border-radius: 10px;
  padding: 15px;
}
.lineup-list li a .lineup-list-textarea {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lineup-list li a .lineup-list-textarea .lineup-list-textarea-small {
  font-size: 15px;
  /* font-weight: 500; */
}
.lineup-list li a  .lineup-list-image {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.lineup-list li a  .lineup-list-image h3{
  font-weight: bold;
}
.lineup-list li a .lineup-list-arrow {
  text-align: right;
}
.lineup .tag-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.lineup .icon-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  min-height: 30px;
  font-size: var(--fs-s);
  line-height: var(--lh-tight);
  color: var(--Semantic-Main-Main-Red, #e60000);
  background-color: #FDF6F7;
  font-size: 12px;
  /* font-weight: 500; */
}
.lineup-attention-title {
  margin-bottom: 10px;
}

@media screen and (min-width: 769px) {
  .lineup-list li a{
    flex-direction: initial;
    gap: 30px;
  }
  .lineup-list li a .lineup-list-textarea {
    width: 58%;
  }
}




/*----------------------------------------
ページ下部追従ボタン
----------------------------------------*/
/* .start #foot-btn{
  opacity: 1;
} */

#foot-btn {
  background-color: white;
  /* background-color: rgba(131, 131, 131, 0.5); */
  padding: 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  /* display: none; */
  /* opacity: 0; */
  transition: all 0.2s;
}
#foot-btn .foot-btn-wrap {
  display: flex;
  justify-content: center;
  min-width: 242px;
  gap: 10px;
}
#foot-btn .btn{
  border-radius: 8px;
  font-size: 12px;
  padding: 11px 5px;
}
@media screen and (min-width: 769px) {
  #foot-btn .btn{
    font-size: 18px;
  }
}
@media screen and (max-width: 1199px) {
  #foot-btn {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  #foot-btn {
    display: none !important;
  }
}

/*----------------------------------------
ページトップへ戻るボタン
----------------------------------------*/


.page-top {
    position: fixed;
    bottom: 120px;
    right: 50px;
    width: 56px;
    height: 56px;
    background-color: var(--Semantic-Arrow-Gray, #838383);
    background-image: url(../imgs/arrow_pagetop.svg);
    background-repeat: no-repeat;
    background-size: 20px;
    background-position: 50% 50%;
    border-radius: 50%;
    border: none;
    display: none;
    z-index: 100;
    opacity: 0.6;
    transition: all 0.2s;
}

@media screen and (max-width: 768px) {
	.page-top {
	  width: 40px;
	  height: 40px;
	  bottom: 120px;
	  right: 20px;
	  background-size: 14px;
	}
  }
  .page-top:hover {
    opacity: 0.5;
    cursor: pointer;
  }


