@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap");


/*----------------------------------------
共通
----------------------------------------*/
:root {
  --color-MUFGred: #E60000;
  --pc-inner-padding: 80px;
}
html {
  scroll-behavior: smooth;
}

body {
	font-size: 16px; 
	font-family: "Noto Sans JP", sans-serif;
	font-weight: 500;
	line-height: 1.5;
	color: #333;
}
*,::before,::after {
  box-sizing: border-box;
}
img {
	max-width: 100%;
  height: auto;
	vertical-align: bottom;
}

@media screen and (min-width: 769px) {
 img {
  vertical-align: bottom;
 }
 a {
  transition:all 0.2s;
  transition-delay: 0;
 }

 a:hover {
  opacity: 0.7;
 }
}

.text-red {
  color: var( --color-MUFGred,#E60000 );
  /* color: #E60000; */
}
.fw-bold {
  font-weight: bold;
}
.strikethrough {
  text-decoration: line-through;
}

 .marked-list {
  list-style: none;
}
 .marked-list > li {
  position: relative;
}
 .marked-list > li::before {
  position: absolute;
  left: 0;
  font-weight: inherit;
}
.marked-list--kome {
  font-size: 0.75em;
}
.marked-list--kome > li {
  padding-left: 1.5em;
}
.marked-list--kome > li::before {
  content: "※";
}

.deco-heading {
	text-align: center;
	font-size: 16px;
	line-height: 1.4;
  margin-bottom: 12px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.deco-heading .minute{
  font-size: 1.5em;
}
.deco-heading::before,.deco-heading::after {
  content: "";
  width: 10px;
  height: 19px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url(../img/policy_title_pop.svg);
  position: relative;
  bottom: -2px;
}
.deco-heading::before{
  left: -5px;
  transform: scaleX(-1);
}
.deco-heading::after{
  right: -5px;
}
@media screen and (min-width: 769px) {
  .deco-heading {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .deco-heading .minute{
    font-size: 1.77em;
  }
  .deco-heading::before,.deco-heading::after {
    content: "";
    width: 13px;
    height: 25px;
    bottom: -6px;
  }
  .deco-heading::before{
    left: -8px;
    transform: scaleX(-1);
  }
  .deco-heading::after{
    right: -8px;
  }
}


.inner {
	max-width: 1000px;
	margin: 0 auto;
}

.inner_in {
	max-width: 860px;
	margin: 0 auto;
}


.btn {
	background-color: var( --color-MUFGred,#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("../img/arrow_white.svg");
  background-repeat: no-repeat;
  background-size: contain;
  top:50%;
  transform: translateY(-50%);
  right: 12px;
	width: 23px;
	height: 23px;
}
.btn_wrap{
	text-align: center;
}
@media screen and (min-width: 769px) {
  .btn {
    width: 392px;
  }
  .btn::after {
    width: 30px;
    height: 30px;
    right: 24px;
  }
}





@media screen and (min-width: 769px) {
	.sp-only {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc-only {
		display: none !important;
	}
}
.boxOpacity {
  opacity: 0;
}

/*----------------------------------------
header
----------------------------------------*/
.header {
  position: fixed;
  z-index: 10;
  width: 100%;
  background-color: #fff;
}
.header .header_inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
  height: 40px;
	padding: 12px 20px;
}
.header .logo_mufg img{
	width: 160px;
}
.header a {
	display: inline-block;
}
.header .logo_corporate img{
	width: 118px;
	height: 19px;
}
@media screen and (min-width: 769px) {
  .header {
    padding: 0 40px;
  }
  .header .header_inner {
    height: 73px;
    padding: 17px 0px;
    max-width: 1000px;
    margin: 0 auto;
  }
	.header .logo_mufg img{
		width: 280px;
	}
  .header .logo_corporate{
    display: flex;
    align-items: center;
    gap: 15px;
  }
	.header .logo_corporate img{
		width: 200px;
		height: 30px;
	}

  .header .header-btn {
    background-color: var( --color-MUFGred,#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( --color-MUFGred,#E60000 );
  }
  .header-btn:hover {
    background-color: #fff;
    color: var( --color-MUFGred,#E60000 );
  }
}


@media screen and (min-width: 850px) {
  .header .logo_corporate{
    gap: 30px;
  }
  .header .header-btn{
    font-size: 16px;
  }
  .header .logo_mufg img{
		width: 318px;
	}
  .header .logo_corporate img{
		width: 216px;
		height: 39px;
	}
}

/*----------------------------------------
kv
----------------------------------------*/
.kv {
  padding-top: 40px;
}
@media screen and (min-width: 769px) {
  .kv {
    padding-top: 73px;
  }
}


/*----------------------------------------
intro
----------------------------------------*/
.intro {

}

.intro h2 {
	text-align: center;
	color: var( --color-MUFGred,#E60000 );
	padding-bottom: 7px;
	border-bottom: solid 2px var( --color-MUFGred,#E60000 ) ;
	margin-bottom: 20px;
}
@media screen and (min-width: 769px) {
	.intro h2 {
		padding-bottom: 14px;
		margin-bottom: 36px;
    font-size: 1.75rem;
		border-bottom: solid 4px var( --color-MUFGred,#E60000 ) ;
	}
}



.intro .about_esmart {
	background-color: #F4F4F4;
	padding: 26px 0px 28px;
}
@media screen and (min-width: 769px) {
	.intro .about_esmart {
		padding: 47px var(--pc-inner-padding) 61px;
	}
}

.intro .about_esmart p {
	max-width: 640px;
	margin: 0 auto;
}


.about_esmart_inner {
	background-color: white;
	padding: 27px 20px;
	max-width: 860px;
	margin: 0 auto;
}
@media screen and (min-width: 769px) {
	.about_esmart_inner {
		padding: 34px 20px 47px;
		border-radius: 24px 0px 24px 0px;
	}
}

.anchor_area {
  padding: 30px 20px  113px;
  position: relative;
}
.anchor_area_inner {
  max-width: 234px;
  margin: 0 auto 30px;
}
.anchor_area_cta {
  padding: 16px;
  background-color: #fff;
  border: 1px solid #F8F8F8;
  box-shadow: 0px 4px 20px 0px rgba(230, 0, 0, 0.10);
  margin-bottom: calc( -113px - 70px);
  border-radius: 16px;
  /* position: absolute;
  left: 50%;
  transform: (translate(-50%,0)); */
  z-index: 1;
}
.anchor_list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}
.anchor_list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  border: 1px solid var(--MUFGred, #E60000);
  width: 233px;
  height: 59px;
  padding: 11px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0px 2px 10px 0px rgba(113, 113, 113, 0.25);
}
.anchor_list a .anc_icon {
  width: 52px;
}
.anchor_list a .anc_arrow {
  width: 14px;
}
.anchor_list a span {
  display: flex;
  align-items: center;
  gap: 9px;
}
@media screen and (min-width: 769px) {
  .anchor_area {
    padding: 50px 20px  165px;
  }
  .anchor_area_inner {
    margin: 0 auto 50px;
  }
  .anchor_area_cta {
    max-width: 670px;
    padding: 32px;
    margin: 0 auto calc( -165px - 80px);
  }
  .anchor_list {
    flex-direction: row;
    gap: 22px;
  }
  .anchor_list a{
    font-size: 16px;
  }
}
@media screen and (min-width: 1001px) {
  .anchor_list a{
    font-size: 20px;
    width: 319px;
    height: 80px;
  }
  .anchor_list a .anc_icon {
    width: 72px;
  }
  .anchor_list a .anc_arrow {
    width: 19px;
  }
}

/*----------------------------------------
merit
----------------------------------------*/
.merit {
  padding: 92px 20px 65px;
  background-color: #FFF7F5;
  /* background-color: #c58575; */
}
.merit .merit_box{
  background-color: #fff;
  border-radius: 24px;
  padding: 30px 19px 32px;
}
.merit .merit_box:not(:last-child){
  margin-bottom: 50px;
}
.merit .merit_box .policy_contents {
  padding-top: 19px;
  margin-top: 14px;
}
.merit .merit_box .policy_contents_text{
  position: relative;
}
.merit .merit_box .policy_contents_text::before {
  content: '';
  display: block;
  position: absolute;
  top: -14px;
  width: calc(100% + 20px);
  left: -20px;
  height: 2px;
  background-color: var(--color-MUFGred);
}
.merit .merit_box .policy_contents_text::after {
  content: '';
  display: block;
  position: absolute;
  top: -17px;
  right: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-MUFGred);
}
.merit .policy_contents_text{
  line-height: 1.5;
}
.merit .policy_contents_text span{
  font-weight: bold;
}
.policy_contents_text .marked-list{
  margin-top: 12px;
}

@media screen and (min-width: 769px) {
  .merit {
    padding: 173px var(--pc-inner-padding) 78px;
  }
  .merit .merit_box{
    padding: 56px 42px 65px 58px;
  }
  .merit .merit_box h2{
    font-size: 2rem;
  }
  .merit .merit_box .policy_contents {
    padding-top: 37px;
    margin-top: 28px;
  }
  .merit .merit_box .policy_contents_text::before {
    width: calc(100% + 58px);
    top: -37px;
    left: -58px;
    height: 4px;
  }
  .merit .merit_box .policy_contents_text::after {
    top: -43px;
    right: -2px;
    width: 16px;
    height: 16px;
  }
  .merit .policy_contents {
    display: flex;
    justify-content: space-between;
    column-gap: 49px;
  }
  .merit .policy_contents_text {
    width: 60.578%;
    max-width: 547px;
  }
  .merit .policy_contents_image {
    width: 33.210%;
    max-width: 306px;
  }
  .merit .policy_contents_text span{
    font-size: 1.25em;
  }
}

@media screen and (max-width: 769px) {
  .merit .merit_box .policy_contents_text{
    margin-bottom: 53px;
  }
  .merit .policy_contents_text span{
    font-size: 18px;
  }
  .merit .merit_box .policy_contents_image {
    width: 84.192%;
    margin: 0 auto;
  }
}

/*----------------------------------------
policy MUFGグループとしてー
----------------------------------------*/
.policy {
  padding-bottom: 30px;
}
.policy h2 {
	text-align: center;
	color: var( --color-MUFGred,#E60000 );
	padding-bottom: 7px;
	border-bottom: solid 2px var( --color-MUFGred,#E60000 ) ;
	margin-bottom: 20px;
}


.policy-area{
  background-image: url(../img/policy_bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  padding: 26px 0px;
  margin-bottom: 30px;
}

.policy-area-inner {
  padding: 27px 20px;
  background-color: white;
}
.policy-area-inner p{
  padding: 0px 5px;
}
@media screen and (min-width: 769px) {
  .policy-area {
    padding: 47px var(--pc-inner-padding) 55px;
    margin-bottom: 34px;
  }
  .policy-area-inner {
    max-width: 860px;
    margin: 0 auto;
    padding: 34px 20px 43px;
    border-radius: 24px 0px;
  }
	.policy h2 {
		padding-bottom: 14px;
		margin-bottom: 36px;
		border-bottom: solid 4px var( --color-MUFGred,#E60000 ) ;
    font-size: 1.75rem;
  }

  .policy-area-inner p{
    max-width: 640px;
    margin: 0 auto;
  }
}



/*----------------------------------------
キャンペーン
----------------------------------------*/

.campaign {
	background-color: #FCF1E0;
	padding: 40px 22px 63px;
}
@media screen and (min-width: 769px) {
	.campaign {
		background-color: #FCF1E0;
		padding: 66px var(--pc-inner-padding) 82px;
	}
}

.campaign h2 {
	text-align: center;
	font-size: 24px;
	line-height: 1.4;
  margin-bottom: 15px;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 8px;
}
.campaign h2::before,.campaign h2::after {
  content: "";
  width: 26px;
  height: 53px;
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: contain;
  background-image: url(../img/campaign_title_pop.svg);
}
.campaign h2::before{
  transform: scaleX(-1);
}

@media screen and (min-width: 769px) {
	.campaign h2 {
		font-size: 32px;
    margin-bottom: 21px;
    column-gap: 18px;
	}
  .campaign h2::before,.campaign h2::after {
    width: 34.066px;
    height: 72.387px;
  }
}

.campaign-banner{
  margin-bottom: 40px;
}
@media screen and (min-width: 768px) {
  .campaign-banner{
    max-width: 720px;
    margin: 0 auto 41px;
  }
}

.campaign-bar {
  background-color:  var( --color-MUFGred,#E60000 );
  border-radius: 8px;
  text-align: center;
  color: white;
  padding: 10px;
  margin-bottom: 25px;
  font-weight: bold;
  font-size: 18px;
}
@media screen and (min-width: 768px) {
  .campaign-bar {
    font-size: 20px;
    padding: 13px;
    margin-bottom: 40px;
  }
}



.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 {
	text-align: center;
}
.table th,
.table td {
 border: 1px solid var(--Semantic-Border-Border-Gray02, #dddddd);
 padding: 15px 22px;
 vertical-align: top;
}
.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--no-fixed {
 table-layout: auto;
}
.table-conditions-attention {
  margin-top: 1em;
}

@media screen and (max-width: 768px) {
  .table-period li:not(:last-child){
    margin-bottom: 1em;
  }
}
@media screen and (min-width: 768px) {
	.table td {
	 padding: 31px 34px;
	}
  .table th{
    width: 183px;
  }
  .table-period li {
    display: flex;
    column-gap: 10px;
  }
  .table-period li .table-period-title {
    width: 28%;
    position: relative;
  }
  .table-period .table-period-title::after {
    position: absolute;
    padding: 0;
    right: -4px;
    top: 0;
  }
  .table-period .table-period-contents {
    width: 71%;
  }
}





@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);
 }
}




/*----------------------------------------
footer【フッターレイアウト】
----------------------------------------*/
footer {
	width: 100%;
	height: auto;
}

footer {
	font-size: 14px;
}



footer .ftr01 {
	background-color: #f8f8f8;
	padding: 36px 20px 36px;
	color: #000;
}
.ftr_text {
	font-size: 14px;
}

footer .copy {
	background-color: #fff;
	padding: 10px 0;
	text-align: center;
	font-size: 12px;
}


@media screen and (min-width: 769px) {
	footer .ftr01 {
		padding: 46px var(--pc-inner-padding) 46px;
	}
	.ftr_text {
		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(../img/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;
  }


/*----------------------------------------------------
js スクロールアニメーション
----------------------------------------------------*/

.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: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@media screen and (max-width: 768px) {
  /* スマホのファーストビュー部分だけアニメーションしないようにする */
  .kv.fadeIn {
    animation-name: none;
    opacity: 1;
  }
  .intro.fadeUpTrigger,.intro.fadeUp {
    opacity: 1;
    animation-name: none;
  }
}


@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}