@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: 400;
  --fw-bold: 700;
  --lh-normal: 1.7;
  --lh-tight: 1.4;
  /* SP時横スクロールヒント */
  --scroll-hint-opacity: 1;
  /* その他 */
  --pc-inner-padding: 80px;
}


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;
}
*,::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;
  }
}

/* スマホ時「スクロールできます」画像が正しく表示されるようにするため */
@media screen and (max-width: 769px) {
  .table-wrap::before {
    background-repeat: no-repeat;
    background-size: contain;
  }
}



/* SPPC表示 */

@media screen and (min-width: 769px) {
	.sp-only {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}
}



/*アンカーリンク */
.btn-anchor {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 100%;

  padding: 16px 40px 16px 16px;
  font-weight: var(--fw-bold);
  background-color: var(--Semantic-Background-Background-White, #ffffff);
  border-radius: 16px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .btn-anchor {
    font-size: var(--fs-s);
    /* align-items: flex-start;
    text-align: left; */
  }
  .btn-anchor:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  .btn-anchor {
    
    /* width: 49%; */
  }
}
.btn-anchor::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(90deg);
  width: 22px;
  height: 22px;
  background-image: url("../imgs/common/icon_arrow_rd.svg");
}


/* inner */
 .inner {
	max-width: 1000px;

  padding: 0 20px;
}
@media screen and (min-width: 769px) {
   .inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
  }
}
@media screen and (min-width: 1040px) {
   .inner {
    width: 1000px;
  }
}


/* ヘッダーボタン*/
.header-btn {
  background-color: var( --Semantic-Main-Main-Red,#E60000 );
  color: white;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  padding: 8px 16px;
  display: inline-block;
  border-radius: 8px;
  border: 2px solid var( --Semantic-Main-Main-Red,#E60000 );
}
.header-btn:hover {
  background-color: #fff;
  color: var( --Semantic-Main-Main-Red,#E60000 );
}

/* ボタン*/
.btn_wrap{
	text-align: center;
}
.btn {
	background-color: var( --Semantic-Main-Main-Red,#E60000 );
	color: white;
	text-decoration: none;
	font-weight: bold;
	padding: 19px;
	display: inline-block;
	border-radius: 12px;
	min-width: 270px;
  position: relative;
}
.btn::after {
	content: '';
	position: absolute;
  display: inline-block;
  background-image: url("../imgs/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top:50%;
  transform: translateY(-50%);
  right: 12px;
	width: 23px;
	height: 23px;
}
@media screen and (min-width: 769px) {
  .btn {
    width: 392px;
  }
  .btn::after {
    width: 30px;
    height: 30px;
    right: 24px;
  }
}


/* セクション */
.section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 769px) {
  .section {

     /* padding: 60px 0px; */
  }
}




/* 見出し */
.deco-heading {
  display: flex;
  justify-content: center;
  align-items: center;
}
.deco-heading .heading {
  display: inline-block;
  text-align: center;
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
}
.deco-heading .decoration {
  margin-top: 8px;
  width: calc(100% + 10px);
  margin-left: -5px;
  height: 13px;
  position: relative;
  background-image: url("../imgs/common/icon_header_arrow_gr.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.deco-heading .decoration::before {
  content: "";
  position: absolute;
  width: calc(50% - 10px);
  top: 0;
  left: 0;
  height: 2px;
  border-radius: 1px;
  background-color: var(--Semantic-Arrow-Gray, #838383);

}
.deco-heading .decoration::after {
  content: "";
  position: absolute;
  width: calc(50% - 10px);
  top: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background-color: var(--Semantic-Arrow-Gray, #838383);
}
.deco-heading--02 .heading {
  font-size: 28px;
}
@media screen and (max-width: 768px) {
  .deco-heading--02 .heading {
    font-size: 22px;
  }
}

/*----------------------------------------
slick,カルーセル
----------------------------------------*/
/* .slick-slider.slick-dotted {
  margin-bottom: 40px;
} */
.slick-slider .slick-list {
  padding-bottom: 8px !important;
  display: grid;
  place-items: center;
  align-items: stretch;
}
@media screen and (min-width: 769px) {
  .slick-slider .slick-list {
    padding-top: 4px;
  }
}
.slick-slider .slick-prev,
.slick-slider .slick-next {
  width: 55px;
  height: 55px;
  z-index: 100;
  border-radius: 50%;
  background-color: rgba(131, 131, 131, 0.2);
  background-image: url("../imgs/common/icon_arrow_wh_02.svg");
  background-repeat: no-repeat;
  background-size: 12px 20px;
  background-position: 50% 50%;
}
.slick-slider .slick-prev::before,
.slick-slider .slick-next::before {
  display: none;
}
.slick-slider .slick-prev {
  left: 18px;
  transform: scaleX(-1) translate(-50px, -50%);
}
.slick-slider .slick-next {
  right: 18px;
  transform: translate(0, -50%);
}
.slick-slider .slick-dots {
  display: flex;
  justify-content: center;
  width: auto;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.slick-slider .slick-dots li {
  margin: 0;
}
.slick-slider .slick-dots li button::before {
  font-size: 8px;
  opacity: 1;
  color: #dddddd;
}
.slick-slider .slick-dots li.slick-active button::before {
  opacity: 1;
  color: var(--Semantic-Main-Main-Red, #e60000);
}
@media screen and (max-width: 768px) {
  /* .slick-slider .slick-prev,
  .slick-slider .slick-next {
    display: block;
    width: 32px;
    height: 32px;
    background-image: url("../imgs/common/icon_arrow_rd.svg");
    background-color: transparent;
    background-size: cover;
    border: none;
    top: calc(100% + 29px);
  } */
  .carousel-2slides.slick-slider .slick-prev {
    left: 18px;
    transform: scaleX(-1) translate(-50px -50%);
  }
  .carousel-2slides.slick-slider .slick-next {
    right: 18px;
    transform:  translate(-50px, -50%);
  }

  .carousel-4slides.slick-slider .slick-prev {
    left: 18px;
    transform: scaleX(-1) translate(100px, -50%);
  }
  .carousel-4slides.slick-slider .slick-next {
    right: 18px;
    transform: translate(100px, -50%);
  }
}


/* カルーセル */
.carousel-wrap {
  padding: 0 44px;
  width: calc(100% + 8px);
  margin-left: -4px;
}
@media screen and (max-width: 768px) {
  .carousel-wrap {
    padding: 0;
    width: 100%;
    margin-left: 0;
  }
}
@media screen and (min-width: 769px) {
  .carousel-wrap {
     padding: 0 0px;
  }
}
.carousel-wrap .carousel-item {
  margin: 0 4px;
}
.carousel-wrap .carousel-item > a {
  display: flex;
  justify-content: center;
  height: 100%;
}
.carousel-wrap .carousel-item > a:hover {
  text-decoration: none;
}



/*----------------------------------------
KV
----------------------------------------*/
.kv {
  padding-top: 50px;
  margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
  .kv {
    padding-top: 103px;
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 1050px) {
  .kv {
    height: 600px;
    text-align: center;
  }
  .kv img {
    height: 100%;
  }
}

.kv-wrap {
  background: linear-gradient(180deg, #E72740 525px, #333333 75px);
}



/*----------------------------------------
導入部分
----------------------------------------*/
.section-intro .marked-list--ordered-kome {
  font-size: 12px;
}

.intro-box2 {
  background-image: url("../imgs/intro/bg-town.svg");
  background-position: bottom center;
  background-size: auto 100px;
  background-repeat: repeat-x;
  background-color: #FDF6F7;
  padding: 40px 0px 132px;
}
@media screen and (min-width: 769px) {
  .intro-box2 {
    background-size: contain;
    background-repeat: repeat-x;
  }
}

.intro-point-area {
  padding: 20px;
  border-radius: 20px;
  background-color: white;
}
@media screen and (min-width: 769px) {
  .intro-point-area {
    width: 49%;
  }
}
.intro-text {
  font-weight: 500;
}

/*----------------------------------------
アンカーエリア
----------------------------------------*/
.section-anchor {
  padding: 0px 0px 60px;
}

.section-anchor-cta {
  box-shadow: 0 4px 20px rgba(230, 0, 0, 0.1);
  margin: -80px auto 40px;
  padding: 32px 25px;
  position: relative;
  z-index: 1;
  background: white;
  border-radius: 16px;
}
@media screen and (min-width: 769px) {
  .section-anchor-cta {
    margin: -190px auto 60px;
    max-width: 870px;
  }
  .section-anchor {
    padding: 120px 0px 60px;
  }
}

/*----------------------------------------
キャンペーンの詳細
----------------------------------------*/
.section-detail {
  
  padding: 60px 0px;
}
@media screen and (min-width: 769px) {
  .section-detail {
    background-color: #F8F8F8;
  }
}
@media screen and (max-width: 768px) {
  .detail-tokuten1-img1{
    width: 500px;
  }
  .detail-tokuten2-img1 {
    width: 500px;
  }
  .detail-tokuten2-img2 {
    width: 500px;
  }
}


/*----------------------------------------
キャンペーン特典獲得のステップ
----------------------------------------*/

.section-step {
	background-color: #FDF6F7;
  padding: 60px 0px;
}
@media screen and (min-width: 769px) {
  .tab-wrap {
    max-width: 1000px;
    
    padding: 0 40px;
  }
}
@media screen and (min-width: 1080px) {
   .tab-wrap {
    width: 1000px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  .step-tokuten2-img {
    width: 500px;
  }
}
.tab-header {
  width: 100%;
  display: flex;
  gap: 8px;
}
.tab-header .tab {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s ease;
padding: 16px 8px;  
}
.tab-header .tab.active {
  color: var(--Semantic-Main-Main-Red, #e60000);
  background-color: var(--Semantic-Background-Background-White, #ffffff);
  border: 2px solid var(--Semantic-Main-Main-Red, #e60000);
  border-bottom: none;
}
@media screen and (max-width: 768px) {
  .tab-header .tab:hover {
    opacity:0.8;
  }
}
.tab-container {
  display: flex;
  flex-direction: column;
  border-bottom: 2px solid var(--Semantic-Main-Main-Red, #e60000);
}
.tab-container--without-bottom-line {
  border-bottom: none;
}
.tab-header-group {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.tab-header {
  width: 100%;
}
.tab-header .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s ease;
}
.tab-header .tab:hover {
  opacity: 1;
}
.tab-header--01 {
  display: flex;
  gap: 8px;
}
.tab-header--01 .tab {
  min-height: 80px;
  gap: 8px;
  padding: 24px 16px;
  border-radius: 24px 24px 0 0;
  color: var(--Semantic-Text-Text-Gray, #666666);
  background-color: var(--Semantic-Background-Background-Gray01, #f8f8f8);
  border: 2px solid var(--Semantic-Background-Background-Gray01, #f8f8f8);
  border-bottom: none;
  font-size: var(--fs-l);
  line-height: var(--lh-tight);
}
@media screen and (max-width: 768px) {
  .tab-header--01 .tab {
    min-height: auto;
    padding: 16px 8px;
    flex-direction: column;
    font-size: var(--fs-m);
  }
}
.tab-header--01 .tab.active {
  color: var(--Semantic-Main-Main-Red, #e60000);
  background-color: var(--Semantic-Background-Background-White, #ffffff);
  border: 2px solid var(--Semantic-Main-Main-Red, #e60000);
  border-bottom: none;
}

.tab-body {
  /* padding: 40px 0; */
  background-color: white;
}
.tab-content {
  display: flex;
  flex-direction: column;
}
.tab-content .tab-content-inner {
  display: flex;
  flex-direction: column;
  gap: 96px;
  padding: 64px 20px;
}
@media screen and (max-width: 768px) {
  .tab-content .tab-content-inner {
    gap: 72px;
  }
}
@media screen and (min-width: 769px) {
  .tab-content .tab-content-inner {
    padding: 80px 60px;
  }
  .inner-content-two {
    max-width: 720px;
    margin: 0 auto;
  }
}

/* 吹き出し見出し */
.heading--pop {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  font-size: 18px;
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .heading--pop {
    font-size: 16px;
    gap: 7px;
  }
}
.heading--pop::before {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url("../imgs/common/icon_heading_pop.svg");
}
.heading--pop::after {
  content: "";
  width: 16px;
  height: 14px;
  background-image: url("../imgs/common/icon_heading_pop.svg");
  transform: scaleX(-1);
}
.text-step {
  font-size: 18px;
}
.text-step span {
  font-size: 20px;
}

/* カルーセル調整 */
@media screen and (min-width: 769px) {
  .carousel-2slides {
    max-width: 564px;
    margin: 0 auto;
  }
}
.slick-slider.slick-dotted {
  /* margin-bottom: 0px; */
}

/*----------------------------------------
CTA
----------------------------------------*/
.section-cta {
  padding: 60px 0px;
}

/*----------------------------------------
アコーディオンエリア(注意事項)
----------------------------------------*/
.section-attention {
  padding: 40px 0;
}

.accordion-item {
  display: flex;
  flex-direction: column;
  background-color: var(--Semantic-Text-Text-White, #ffffff);
  border-radius: 12px;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
}
.accordion-item:last-child {
  margin-bottom: 0;
}
.accordion-item .accordion-heading {
  position: relative;
  font-weight: var(--fw-bold);
  cursor: pointer;
  transition: opacity 0.3s, background-color 0.3s ease;
  padding: 16px 64px 16px 24px;
}
@media screen and (min-width: 769px) {
  .accordion-item .accordion-heading:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 768px) {
  .accordion-item .accordion-heading {
    padding: 16px 46px 16px 16px;
  }
}
.accordion-item .accordion-heading::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  background-image: url("../imgs/common/icon_accordion_plus.svg");
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .accordion-item .accordion-heading::after {
    width: 21px;
    height: 21px;
    background-size: 21px;
    right: 16px;
  }
}
.accordion-item .accordion-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .accordion-item .accordion-content {
    padding: 24px 16px;
  }
}
.accordion-item .accordion-content > .inner-content {
  overflow: hidden;
}
.accordion-item.open .accordion-heading::after {
  background-image: url("../imgs/common/icon_accordion_minus.svg");
}
.accordion-item--faq {
  box-shadow: none;
}
.accordion-item--faq .accordion-heading {
  padding-left: 68px;
}
@media screen and (max-width: 768px) {
  .accordion-item--faq .accordion-heading {
    padding-left: 42px;
  }
}
.accordion-item--faq .accordion-heading::before,
.accordion-item--faq .accordion-content::before {
  font-family: var(--ff-latin);
  font-size: 28px;
  font-weight: var(--fw-bold);
  color: var(--Semantic-Main-Main-Red, #e60000);
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .accordion-item--faq .accordion-heading::before,
  .accordion-item--faq .accordion-content::before {
    font-size: 24px;
  }
}
.accordion-item--faq .accordion-heading a,
.accordion-item--faq .accordion-content a {
  color: var(--Semantic-Text-Text-Blue, #0066aa);
  text-decoration: underline;
}
.accordion-item--faq .accordion-heading::before {
  position: absolute;
  content: "Q";
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
@media screen and (max-width: 768px) {
  .accordion-item--faq .accordion-heading::before {
    left: 16px;
  }
}
.accordion-item--faq .accordion-content {
  flex-direction: row;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .accordion-item--faq .accordion-content {
    gap: 8px;
  }
}
.accordion-item--faq .accordion-content::before {
  content: "A";
  padding-top: 2px;
}
.accordion-item--faq.no-accordion .accordion-heading {
  font-weight: var(--fw-normal);
  padding-right: 16px;
  cursor: default;
  transition: none;
}
.accordion-item--faq.no-accordion .accordion-heading:hover {
  opacity: 1;
}
.accordion-item--faq.no-accordion .accordion-heading::after {
  display: none;
}
.accordion-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background-color: var(--Semantic-Background-Background-Gray01, #f8f8f8);
  border-radius: 24px;
  padding: 24px;
}
@media screen and (max-width: 768px) {
  .accordion-list {
    padding: 24px 20px;
  }
}

/*----------------------------------------
footer
----------------------------------------*/
footer {
	width: 100%;
	height: auto;
}

footer .footer_wrap {
	background-color: #f8f8f8;
	padding: 36px 20px 36px;
	color: #000;
  font-size: 14px;
}

footer .copy {
	background-color: #fff;
	padding: 10px 0;
	text-align: center;
	font-size: 12px;
}
footer a{
	color: #0066aa;
    text-decoration: underline;
}
@media screen and (min-width: 769px) {
  footer .footer_wrap {
		padding: 46px var(--pc-inner-padding) 46px;
    font-size: 16px;
	}
	footer .copy {
		padding: 12px 0px;
	}
}

/*----------------------------------------
ページ下部追従ボタン
----------------------------------------*/
/* .start #foot-btn{
  opacity: 1;
} */

#foot-btn {
  background-color: rgba(131, 131, 131, 0.5);
  padding: 20px;
  width: 100%;
  position: fixed;
  bottom: 0;
  display: none;
  /* opacity: 0; */
  transition: all 0.2s;
}

/*----------------------------------------
ページトップへ戻るボタン
----------------------------------------*/
.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;
  }

/*----------------------------------------------------
アニメーション用クラス(スクロールアニメーション)
※リニューアルのcommon.cssには無い記述です。
----------------------------------------------------*/

.fadeUpTrigger {
  opacity: 0;
  transition: all 0.3s;
}

/* 下からフワッと出てくる */
.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: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  /* スマホのファーストビュー部分だけアニメーションしないようにする */
  .fadeIn {
    animation-name: none;
    opacity: 1;
  }
  .section-intro.fadeUpTrigger,.section-intro.fadeUp {
    opacity: 1;
    animation-name: none;
  }
}
@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;/* 改行させない */
}




/* 左右中央寄せ */
.ta-center {
  text-align: center !important;
}
.ta-left {
  text-align: left !important;
}
.ta-right {
  text-align: right !important;
}
/* 垂直揃え */
.va-middle {
  vertical-align: middle !important;
}
.va-bottom {
  vertical-align: bottom !important;
}
.va-base {
  vertical-align: baseline !important;
}


/* リンク */
.underlined-link,
.pdf-link,
.external-link-sep,
.external-link,
.underlined-link-wrap a {
  color: var(--Semantic-Text-Text-Blue, #0066aa);
  text-decoration: underline;
}
.external-link {
  display: inline-block;
  position: relative;
  align-self: flex-start;
}
.external-link::after {
  content: "";
  display: inline-block;
  align-self: center;
  width: 1.375em;
  height: 1.375em;
  background-image: url("../imgs/common/icon_external_link.svg");
  margin-left: 4px;
  vertical-align: -0.3em;
}
.external-link-sep {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  gap: 4px;
}
.external-link-sep::after {
  content: "";
  width: 1.375em;
  height: 1.375em;
  min-width: 1.375em;
  min-height: 1.375em;
  background-image: url("../imgs/common/icon_external_link.svg");
}
.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;
}
.arrow-link-circ {
  color: inherit;
  display: flex;
  align-items: center;
  align-self: flex-start;
  width: auto;
  gap: 0.5em;
}
.arrow-link-circ::before {
  content: "";
  width: 1.4em;
  height: 1.4em;
  min-width: 1.4em;
  min-height: 1.4em;
  background-image: url("../imgs/common/icon_arrow_circle.svg");
}
.arrow-link-or,
.arrow-link-gr {
  color: inherit;
  align-self: flex-start;
  width: auto;
}
.arrow-link-or::after,
.arrow-link-gr::after {
  content: "";
  display: inline-block;
  align-self: center;
  width: 1.375em;
  height: 1.375em;
  min-width: 1.375em;
  min-height: 1.375em;
  background-image: url("../imgs/common/icon_arrow_rd.svg");
  margin-left: 4px;
  vertical-align: -0.3em;
}
.arrow-link-gr::after {
  background-image: url("../imgs/common/icon_arrow_gr.svg");
}
.arrow-link-or-sep,
.arrow-link-gr-sep {
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 4px;
}
.arrow-link-or-sep::after,
.arrow-link-gr-sep::after {
  content: "";
  width: 22px;
  height: 22px;
  min-width: 22px;
  min-height: 22px;
  background-image: url("../imgs/common/icon_arrow_rd.svg");
}
.arrow-link-gr-sep::after {
  background-image: url("../imgs/common/icon_arrow_gr.svg");
}
.contents-menu-list li {
  display: flex;
}


/* リスト */
.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--checked > li {
  padding-left: 2em;
  margin-bottom: 8px;
}
.marked-list--checked > li::before {
  content: "";
  width: 1.25em;
  height: 1em;
  top: 0.26em;
  background-image: url("../imgs/common/icon_checked_rd.svg");
}
.marked-list--ordered {
  counter-reset: list-counter;
}
.marked-list--ordered > li {
  padding-left: 1.5em;
}
.marked-list--ordered > li::before {
  counter-increment: list-counter;
  content: counter(list-counter) ". ";
}
.marked-list--ordered .one-digit {
  padding-left: 1.5em;
}
.marked-list--ordered .two-digits {
  padding-left: 2em;
}
.marked-list--ordered .three-digits {
  padding-left: 2.5em;
}
.marked-list--kome {
  font-size: var(--fs-s);
}
.marked-list--kome > li {
  padding-left: 1.5em;
}
.marked-list--kome > li::before {
  content: "※";
}
.marked-list--ordered-kome {
  counter-reset: list-counter;
  font-size: var(--fs-s);
}
.marked-list--ordered-kome > li {
  padding-left: 2.2em;
}
.marked-list--ordered-kome > li::before {
  counter-increment: list-counter;
  content: "※" counter(list-counter);
}
.marked-list--ordered-kome .one-digit {
  padding-left: 2.2em;
}
.marked-list--ordered-kome .two-digits {
  padding-left: 2.7em;
}
.marked-list--ordered-kome .three-digits {
  padding-left: 3.2em;
}
.marked-list--ordered-asterisk {
  counter-reset: list-counter;
}
.marked-list--ordered-asterisk > li {
  padding-left: 1.5em;
}
.marked-list--ordered-asterisk > li::before {
  counter-increment: list-counter;
  content: "*" counter(list-counter);
}
.marked-list--ordered-asterisk .one-digit {
  padding-left: 1.5em;
}
.marked-list--ordered-asterisk .two-digits {
  padding-left: 2em;
}
.marked-list--ordered-asterisk .three-digits {
  padding-left: 2.5em;
}
.marked-list--ordered-bracket {
  counter-reset: list-counter;
}
.marked-list--ordered-bracket > li {
  padding-left: 1.5em;
}
.marked-list--ordered-bracket > li::before {
  counter-increment: list-counter;
  content: "(" counter(list-counter) ")";
}
.marked-list--ordered-bracket .one-digit {
  padding-left: 1.5em;
}
.marked-list--ordered-bracket .two-digits {
  padding-left: 2em;
}
.marked-list--ordered-bracket .three-digits {
  padding-left: 2.5em;
}

/* カード */
.card {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
  min-height: 100%;
  border: 1px solid #f8f8f8;
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.1019607843);
  border-radius: 16px;
  background-color: var(--Semantic-Text-Text-White, #ffffff);
  padding: 16px;
  position: relative;
}
.card .card-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.card .card-img-wrap img,
.card .card-img-wrap iframe {
  width: 100%;
}
.card .card-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.card .card-body .card-category {
  font-size: var(--fs-s);
  color: var(--Semantic-Main-Main-Red, #e60000);
  font-weight: var(--fw-bold);
}
.card .card-body .card-date {
  font-size: var(--fs-s);
}
.card .card-body .card-title {
  font-weight: var(--fw-bold);
  line-height: 1.7;
}
.card .card-body .card-text {
  font-size: var(--fs-s);
}

/* テーブルレイアウト */
.table-wrap {
  position: relative;
}
@media screen and (max-width: 768px) {
  .table-wrap.sp-scroll > .table {
    width: 920px;
  }
}
.table {
  width: 100%;
  table-layout: fixed;
  position: relative;
}
.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: #EEEEEE;
}
@media screen and (min-width: 769px) {
  .table th {
    width: 260px;
  }
}
.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;
}
@media screen and (max-width: 768px) {
  .table--responsive {
    display: block;
  }
  .table--responsive thead,
  .table--responsive tbody,
  .table--responsive tr,
  .table--responsive th,
  .table--responsive td {
    display: block;
  }
  .table--responsive tr {
    border: 1px solid var(--Semantic-Border-Border-Gray02, #dddddd);
  }
  .table--responsive tr:not(:last-child) {
    border-bottom: none;
  }
  .table--responsive th,
  .table--responsive td {
    width: 100% !important;
    border: none;
  }
  .table--responsive th {
    border-bottom: 1px solid var(--Semantic-Border-Border-Gray02, #dddddd);
  }
}


/* SP-scroll */
@media screen and (max-width: 768px) {
  .sp-scroll {
    padding-bottom: 16px;
    overflow-x: auto;
    position: relative;
  }
  .sp-scroll::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    background-image: url("../imgs/common/icon_scroll_hint.png");
    background-size: contain;
    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;
  }
}






/* Gap(上下のコンテンツ幅の調整) */
.inner-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 24px;
}
.inner-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 16px;
}
/* gap【共通】 */
.gap-0 {
  gap: 0 !important;
}
.gap-5 {
  gap: 5px !important;
}
.gap-xxs {
  gap: 4px !important;
}
.gap-xs {
  gap: 8px !important;
}
.gap-s {
  gap: 16px !important;
}
.gap-sm {
  gap: 20px !important;
}
.gap-m {
  gap: 24px !important;
}
.gap-ml {
  gap: 32px !important;
}
.gap-l {
  gap: 40px !important;
}
.gap-lxl,
.gap-l-xl {
  gap: 64px !important;
}
@media screen and (max-width: 768px) {
  .gap-lxl,
  .gap-l-xl {
    gap: 52px !important;
  }
}
.gap-xl {
  gap: 80px !important;
}
@media screen and (max-width: 768px) {
  .gap-xl {
    gap: 60px !important;
  }
}
.gap-xxl {
  gap: 96px !important;
}
@media screen and (max-width: 768px) {
  .gap-xxl {
    gap: 68px !important;
  }
}
.gap-row-m {
  row-gap: 24px !important;
}
/* gap【SP用】 */
@media screen and (max-width: 768px) {
  .sp-gap-0 {
    gap: 0 !important;
  }
  .sp-gap-xxs {
    gap: 4px !important;
  }
  .sp-gap-xs {
    gap: 8px !important;
  }
  .sp-gap-s {
    gap: 16px !important;
  }
  .sp-gap-sm {
    gap: 20px !important;
  }
  .sp-gap-m {
    gap: 24px !important;
  }
  .sp-gap-ml {
    gap: 32px !important;
  }
  .sp-gap-l {
    gap: 40px !important;
  }
  .sp-gap-lxl,
  .sp-gap-l-xl {
    gap: 52px !important;
  }
  .sp-gap-xl {
    gap: 60px !important;
  }
  .sp-gap-xxl {
    gap: 68px !important;
  }
}
/* gap【PC用】 */
@media screen and (min-width: 769px) {
  .pc-gap-0 {
    gap: 0 !important;
  }
  .pc-gap-xs {
    gap: 8px !important;
  }
  .pc-gap-s {
    gap: 16px !important;
  }
  .pc-gap-sm {
    gap: 20px !important;
  }
  .pc-gap-m {
    gap: 24px !important;
  }
  .pc-gap-ml {
    gap: 32px !important;
  }
  .pc-gap-l {
    gap: 40px !important;
  }
  .pc-gap-xl {
    gap: 80px !important;
  }
  .pc-gap-xxl {
    gap: 96px !important;
  }
}

/* flex レイアウト関係*/
.flex {
  display: flex;
}
.flex-item {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.f-col {
  display: flex;
  flex-direction: column !important;
}
.f-row {
  display: flex;
  flex-direction: row !important;
}
.jc-center {
  justify-content: center !important;
}
.jc-f-end {
  justify-content: flex-end !important;
}
.jc-sp-between {
  justify-content: space-between !important;
}
.ai-f-start {
  align-items: flex-start !important;
}
.ai-f-end {
  align-items: flex-end !important;
}
.ai-center {
  align-items: center !important;
}
.jc-ai-center {
  align-items: center !important;
  justify-content: center !important;
}
.pi-center {
  place-items: center !important;
}
.as-f-start {
  align-self: flex-start !important;
}
.as-f-end {
  align-self: flex-end !important;
}
.as-center {
  align-self: center !important;
}
.as-auto {
  align-self: auto !important;
}
.flex-1 {
  flex: 1 !important;
}
.f-grow {
  flex-grow: 1 !important;
}
.f-wrap {
  flex-wrap: wrap !important;
}
@media screen and (max-width: 768px) {
  .sp-f-col {
    display: flex !important;
    flex-direction: column !important;
  }
  .sp-f-row {
    display: flex !important;
    flex-direction: row !important;
  }
  .sp-jc-center {
    justify-content: center !important;
  }
  .sp-jc-f-end {
    justify-content: flex-end !important;
  }
  .sp-ai-f-end {
    align-items: flex-end !important;
  }
  .sp-ai-center {
    align-items: center !important;
  }
  .sp-jc-ai-center {
    align-items: center !important;
    justify-content: center !important;
  }
  .sp-pi-center {
    place-items: center !important;
  }
  .sp-as-f-start {
    align-self: flex-start !important;
  }
  .sp-as-f-end {
    align-self: flex-end !important;
  }
  .sp-as-center {
    align-self: center !important;
  }
  .sp-as-auto {
    align-self: auto !important;
  }
  .sp-flex-1 {
    flex: 1 !important;
  }
  .sp-f-grow {
    flex-grow: 1 !important;
  }
  .sp-f-wrap {
    flex-wrap: wrap !important;
  }
}
@media screen and (min-width: 769px) {
  .pc-f-col {
    display: flex !important;
    flex-direction: column !important;
  }
  .pc-f-row {
    display: flex !important;
    flex-direction: row !important;
  }
  .pc-jc-center {
    justify-content: center !important;
  }
  .pc-ai-center {
    align-items: center !important;
  }
  .sp-ai-f-end {
    align-items: flex-end !important;
  }
  .pc-jc-ai-center {
    align-items: center !important;
    justify-content: center !important;
  }
  .pc-pi-center {
    place-items: center !important;
  }
  .pc-as-f-start {
    align-self: flex-start !important;
  }
  .pc-as-f-end {
    align-self: flex-end !important;
  }
  .pc-as-center {
    align-self: center !important;
  }
  .pc-as-auto {
    align-self: auto !important;
  }
  .pc-flex-1 {
    flex: 1 !important;
  }
  .pc-f-grow {
    flex-grow: 1 !important;
  }
  .pc-f-wrap {
    flex-wrap: wrap !important;
  }
}



/* Grid*/
.grid {
  display: grid;
  align-items: stretch;
  gap: 16px;
  max-width: 100%;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr;
  }
}
.grid--w100 {
  width: 100%;
}
.grid--6cols {
  grid-template-columns: repeat(6, 1fr);
}
.grid--5cols {
  grid-template-columns: repeat(5, 1fr);
}
.grid--4cols {
  grid-template-columns: repeat(4, 1fr);
}
.grid--3cols {
  grid-template-columns: repeat(3, 1fr);
}
.grid--2cols {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 768px) {
  .grid--6cols {
    grid-template-columns: 1fr;
  }
  .grid--5cols {
    grid-template-columns: 1fr;
  }
  .grid--4cols {
    grid-template-columns: 1fr;
  }
  .grid--3cols {
    grid-template-columns: 1fr;
  }
  .grid--2cols {
    grid-template-columns: 1fr;
  }
  .grid--sp-3cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--sp-2cols {
    grid-template-columns: repeat(2, 1fr);
  }
}
.grid > a:hover {
  text-decoration: none;
}
.grid .grid-item > a:first-child {
  display: flex;
  height: 100%;
}
.grid .grid-item > a:first-child:hover {
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .sp-grid {
    display: grid;
    align-items: stretch;
    gap: 16px;
    max-width: 100%;
    grid-template-columns: repeat(2, 1fr);
  }
  .sp-grid--2cols {
    grid-template-columns: repeat(2, 1fr);
  }
}






