@charset "utf-8";
/*---------------------------------------------
Reset
---------------------------------------------*/

html {
	color: #5c5664;
	overflow-y: scroll;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 62.5%;
	line-height:1.5;
}

h1, h2, h3, h4, h5, h6 { font-weight: normal; margin: 0; padding: 0; }
img { border: none; vertical-align: bottom; max-width: 100%; height: auto; margin: 0; padding: 0; }
div, dl, dt, dd, form, input, ul, ol, li, p, select, textarea, span, th, td { margin: 0; padding: 0;}
*, *:before, *:after { box-sizing: border-box;}

/*---------------------------------------------
Style
---------------------------------------------*/
body {
	text-align: center;
	margin: 0 auto;
	padding: 0;
	font-size:1.8rem;
}


.for_pc{
	display:block;
	margin:0 auto;
}

.for_sp{
	display:none;
	margin:0 auto;
}

.note{
	font-size: 1.4rem;
}

/* sp */
@media screen and (max-width: 750px){

	body {
		font-size:1.5rem;
	}
	.for_pc{
		display:none;
		margin:0 auto;
	}
	.for_sp{
		display:block;
		margin:0 auto;
	}
.note{
	font-size: 1.2rem;
}
}

/* =========================================================
共通
========================================================= */
.inner{
	max-width: 1200px;
	margin: 0 auto;
}

.contents_box{
	background-color: #fff;
	border-radius: 30px;
	padding: 2rem 3rem;
	margin: 2rem 0;
}

@media screen and (max-width: 750px){
	.inner{
	max-width: 100%;
	margin: 0 auto;
}
	.contents_box{
		max-width: 90%;
		padding: 1rem 2rem;
		margin: 2rem auto;
	}
}

/* =========================================================
メインビジュアル
========================================================= */
main{
	background-image: linear-gradient(to bottom, #dbf6f1 0%, #e0f1ff 30%, #feeef5 50%, #fef1f7 70%, #fff 100%);
}

.mv_bg{
	background-image: url("../img/mv_left_pc.webp"), url("../img/mv_right_pc.webp");
	background-position: top left, top right;
	background-repeat: no-repeat, no-repeat;
	padding-top: 100px;
	height: 700px;
}

h1{
	max-width: 700px;
	margin: 0 auto;
}

.triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 40px solid #E95387;
  border-bottom: 0;
    text-align: center;
    margin: 0 auto;
}

@media screen and (max-width: 750px){
	.mv_bg{
		background-image: url("../img/mv_bg_sp.webp");
	background-position: top center;
	background-repeat: no-repeat;
	background-size: contain;
	padding-top: 120px;
    height: 500px;
	}
    
    .triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 15px solid transparent;
  border-left: 15px solid transparent;
  border-top: 20px solid #E95387;
  border-bottom: 0;
    text-align: center;
    margin: 1rem auto 0;
}
}

/* =========================================================
店舗リスト
========================================================= */
#list{
	background-color: #FFF;
    color :#5c5664;
	padding: 0 0 8rem;
}

#list inner {
	max-width: 1300px;
	width: 80.06%;
	margin: 0 auto;
}

#list h3{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-size: 5rem;
    color: #E95387;
}

.list_subttl{
	font-weight: 600;
	font-size: 1.8rem;
	color: #E95387;
	margin: -1.6rem 0 1rem;
}

#list h4{
    color: #E95387;
    margin-bottom: 2rem;
}

#list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 6rem;
}
#list ul::after {
  display: block;
  content: "";
  width: calc(100% / 4 - 12px);
}
#list ul::before {
  display: block;
  content: "";
  width: calc(100% / 4 - 12px);
  order: 1;
}
#list ul li {
  width: calc(100% / 4 - 12px);
  background-color: #fff;
  margin-bottom: 30px;
  border-radius: 30px;
  box-shadow: 0 3px 0px #333;
  border: 2px solid #333;
  position: relative;
  min-width: 175px;
  height: 50px;
　 line-height: 1.4;
}
#list ul li:hover {
  box-shadow: none;
  transform: scale(0.99, 0.99) translateY(2px);
}
#list ul li a {
  font-size: 1.8rem;
  color: #313642;
  font-weight: 700;
  padding: 11px 0 13px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  left: 50%;
  width: 100%;
  border-radius: 30px;
  text-decoration: none;
}
#list ul li:after {
  content: "";
  border-top: solid 2px #313642;
  border-right: solid 2px #313642;
  display: inline-block;
  width: 8px;
  height: 8px;
  transform: translateY(-50%) rotate(45deg);
  position: absolute;
  right: 7%;
  top: 50%;
}
#list ul li a:hover {
  text-decoration: none;
}

@media screen and (max-width: 750px) {
#list h3{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-size: 3rem;
    color: #E95387;
}

.list_subttl{
	font-weight: 600;
	font-size: 1.4rem;
	color: #E95387;
	margin: -1rem 0 1rem;
}
        #list  ul{
        width: 90%;
        margin: 0 auto;
    }

    #list  ul li {
        min-width: calc(100% / 2 - 4px);
        margin-bottom: 20px;
        padding: 22px 0 26px;
        line-height: 1.2;
    }
	
	#list  ul li a{
		font-size: 1.4rem;
	}
	
	#list  ul li:after{
		width: 7px;
    	height: 7px;
	}
    
    #list h4{
        max-width: 90%;
        margin: 1rem auto 2rem;
    }
}


/* =========================================================
注意事項
========================================================= */
#attention{
	background-image: linear-gradient(to bottom, #fff 0%, #dbf6f1 20%, #e0f1ff 50%, #feeef5 70%, #fef1f7 90%);
	padding-bottom: 10rem;
}

#attention .contents_box{
	position: relative;
	font-size: 1.6rem;
	font-weight: 500;
}

.attention_ttl{
	position: absolute;
	right: 0;
	left:0;
	top: -3rem;
}

.attention_subttl_box{
	background-image: linear-gradient(to right, #dbf6f1 0%, #e0f1ff 50%, #feeef5 70%, #fef1f7 100%);
	padding: 2.5rem 2rem;
	margin: 2rem 0 4rem;
}

.attention_subttl{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 800;
	font-size: 3.2rem;
	line-height: 1;
}

.attention_subttl span{
	font-weight: 600;
	font-size: 2.2rem;
}

#attention h3{
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-size: 2.2rem;
	text-align: left;
	padding: 2rem;
}

.at_first{
	background-color: #fef1f7;
}
.at_second{
	background-color: #eeedff;
}
.at_third{
	background-color: #ddf4ff;
}
.at_fourteen{
	background-color: #ddffee;
}

.at_inner{
	padding: 4rem 2rem 6rem;
	text-align: left;
}

.at_txt_main{
	font-size: 2rem;
	padding-bottom: 0.5rem;
}

/* --- チェックボックス --- */
.check{
	position: absolute;
	left: 1rem;
	top: -2.5rem;
}
.check_container{
	position: relative;
	border: solid 1px #ff9262;
	color: #ff9262;
	font-family: "M PLUS Rounded 1c", sans-serif;
	font-weight: 700;
	font-size: 1.8rem;
	padding: 3rem 2rem 2rem;
	margin: 4rem 0 0;
}

/* --- 受診 --- */
.jushin_container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3rem;
	text-align: center;
	margin-top: 2rem;
}

.jushin_ttl{
	background-color: #5c5664;
	color: #fef1f7;
	padding: 1rem 1.5rem;
	font-weight: 500;
	font-size: 2rem;
	text-align: left;
}

.jushin_txtbox{
	padding: 2rem;
	text-align: left;
	font-size: 1.8rem;
}

/* --- NG --- */
.ng_ttl{
	position: relative;
	background-color: #5c5664;
	color: #fef1f7;
	padding: 1rem 1.5rem 1rem 5rem;
	margin-left: 2rem;
	font-size: 2rem;
	font-weight: 500;
}

.ng{
	position: absolute;
	left: -4rem;
	top: -3.2rem;
}

.ng_txtbox{
	padding: 2rem 2rem 3rem;
	margin-bottom: 2rem;
}

/* --- カラーボックス --- */
.color_container{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	grid-gap: 4rem 2rem;
	text-align: center;
	margin: 4rem 0 0;
}

h5{
	font-size: 1.8rem;
	font-weight: 600;
	padding-bottom: 0.5rem;
}

.color_ttl{
	position: relative;
	padding: 2rem 1rem 1rem;
}

.brown .color_ttl{
	background-color: #b28146;
}
.brown .txt_box{
	color: #b28146;
	border: solid 1px #b28146;
}

.black .color_ttl{
	background-color: #3e3a39;
}
.black .txt_box{
	color: #3e3a39;
	border: solid 1px #3e3a39;
}

.gray .color_ttl{
	background-color: #717071;
}
.gray .txt_box{
	color: #717071;
	border: solid 1px #717071;
}

.green .color_ttl{
	background-color: #60b864;
}
.green .txt_box{
	color: #60b864;
	border: solid 1px #60b864;
}

.violet .color_ttl{
	background-color: #8f73b1;
}
.violet .txt_box{
	color: #8f73b1;
	border: solid 1px #8f73b1;
}

.pink .color_ttl{
	background-color: #ed77a1;
}
.pink .txt_box{
	color: #ed77a1;
	border: solid 1px #ed77a1;
}

.color_ttl_img{
	position: absolute;
	left: 0;
	right: 0;
	top: -2rem;
}
.color_ttl p{
	color: #fff;
	font-size: 1.8rem;
	font-weight: 500;
}

.color_container .txt_box{
	padding: 1rem;
}

/* --- フチ・直径 --- */
.fuchi_container{
	display: grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 3rem;
	text-align: center;
}

.fuchi_ttl{
	background-color: #5c5664;
	color: #ddffee;
	padding: 1.5rem;
	font-weight: 500;
}
.fuchi_ttl p{
	font-size: 2rem;
	font-weight: 600;
	line-height: 1.2;
}
.fuchi_ttl p span{
	font-size: 1.6rem;
}

.fuchi_txtbox{
	padding: 2rem;
	text-align: left;
	font-weight: 600;
}

.chokkei{
	display:inline-block;
	padding: 0.5rem 1rem;
	background-color: #ddffee;
}

.chokkei_txt{
	font-size: 2.2rem;
	line-height: 1.2;
	padding-top: 0.5rem;
}
.chokkei_txt span{
	font-size: 1.8rem;
	font-weight: 500;
}

.fuchi_container .note{
	color: #ff9262;
	padding-top: 1rem;
	font-size: 1.6rem;
}

@media screen and (max-width: 750px){

	.attention_subttl_box{
		padding: 1.5rem 1rem;
	}
	.attention_subttl{
	font-size: 2rem;
	line-height: 1.1;
}
.attention_subttl span{
	font-size: 1.6rem;
}
    
    #attention h3{
        font-size: 1.8rem;
        padding: 1rem;
    }
    
    .at_inner{
	padding: 2rem 1rem 3rem;
    font-size: 1.4rem;
}
    
.at_txt_main{
	font-size: 1.8rem;
	padding-bottom: 0.5rem;
}

/* --- チェックボックス --- */
.check_container{
	font-size: 1.4rem;
	}
/* --- NG --- */
.ng_ttl{
    font-size: 1.6rem;
    margin-left: 1rem;
    }
.ng{
	position: absolute;
	left: -2rem;
	top: -1rem;
}
	/* --- 受診 --- */
	.jushin_container{
		display: block;
	}
    .jushin_ttl{
        font-size: 1.6rem;
    }
    .jushin_txtbox{
        font-size: 1.4rem;
    }
	/* --- カラーボックス --- */
.color_container{
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 4rem 0;
	font-size: 1.4rem;
	}
	.color_ttl p{
		font-size: 1.4rem;
	}
h5{
	font-size: 1.6rem;
    }
.color_container .txt_box{
	text-align: left;
}
	/* --- フチ・直径 --- */
.fuchi_container{
	display: block;
	}
.fuchi_ttl{
    padding: 1rem;
    }
.fuchi_ttl p{
    font-size: 1.8rem;
    line-height: 1.2;
    }
.fuchi_ttl p span{
    font-size: 1.4rem;
    }
.chokkei_txt{
	font-size: 1.8rem;
	line-height: 1.2;
	padding-top: 0.5rem;
}
.chokkei_txt span{
	font-size: 1.6rem;
	font-weight: 500;
}

.fuchi_container .note{
	color: #ff9262;
	padding-top: 1rem;
	font-size: 1.4rem;
}
}

/* =========================================================
majicaアプリ
========================================================= */
#majica_service .contents_box{
	padding-top: 8rem;
}
.majica_bg{
	/*background-color: #fef1f7;*/
    background-image: linear-gradient(to bottom, #FFF 0%, #fef1f7 10%, #fef1f7 90%, #FFF 100%);
	padding: 0 0 14rem;
}

.majica_ttl{
	margin-bottom: 2rem;
}

h2{
	font-weight: 800;
	font-size: 2.6rem;
	line-height: 1.4;
	font-family: "M PLUS Rounded 1c", sans-serif;
	padding: 4rem 0 0;
}

.majica_inner{
	max-width: 1000px;
	margin: 2rem auto;
}

h4{
	color: #d61518;
	font-weight: 700;
	font-size: 2.6rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	text-align: left;
	padding-bottom: 0.5rem;
	border-bottom: solid 1px #d61518;
}

.majica_about_inner{
	padding:3rem 2rem 4rem;
	text-align: left;
}

.douisho_container{
	display:grid;
	grid-template-columns: 1fr 1fr;
}

.shokai{
	display:inline-block;
	background-color: #d61518;
	padding: 0.5rem 2rem;
	font-weight: 700;
	font-size: 2rem;
	color: #FFF;
	margin-bottom: 1rem;
}

.douisho_txtbox{
	font-weight: 600;
	line-height: 1.6;
}

.majica_about_btn a{
	display: block;
	max-width: 500px;
	padding: 2rem 1rem;
	background-color: #d61518;
	margin: 2rem auto;
	text-decoration: none;
	font-weight: 500;
	font-size: 1.8rem;
	color: #fff;
	border-radius: 100px;
}

.majica_about_btn a:hover{
	opacity: 0.8;
}

.majica_howto_ttl{
	background-color: #fef1f7;
	padding: 0.5rem 1rem;
	font-weight: 700;
	font-size: 2.4rem;
	font-family: "M PLUS Rounded 1c", sans-serif;
	text-align: left;
}

.majica_howto_txt{
	padding-bottom: 2rem;
	font-weight: 600;
}

.majica_howto_txt span{
	color: #d61518;
}

.majica_about_img{
	text-align: center;
}

.majica_dl_ttl{
	max-width: 400px;
	margin: 0 auto;
}

.majica_dl ul{
	display: flex;
	flex-wrap: nowrap;
	column-gap: 1.5rem;
	list-style-type: none;
	max-width: 400px;
	margin: 1rem auto;
}

@media screen and (max-width: 750px){
    .majica_ttl{
        margin: 2rem;
    }
h2{
	font-size: 2rem;
    line-height: 1.2;
    }
	h4{
		font-size: 2rem;
	}
	.shokai{
	display:block;
	text-align: center;
	font-size: 1.6rem;
	margin-top: 1rem;
	}
	.majica_about_btn a{
		max-width: 100%;
		margin: 0 auto 2rem;
        font-size: 1.6rem;
	}
	.douisho_container{
	display:block;
	}
	.majica_howto_ttl{
		font-size: 1.8rem;
	}
}

/* =========================================================
majica_ucs
========================================================= */
.majica_ucs_bg{
	padding: 4rem 2rem;
	background-color: #FFF;
}
#majica_ucs ul {
  list-style: none!important;
}
#majica_ucs a{
	text-decoration: none;
  color: #fff;
}
body #majica_ucs{
	text-align: center;
	margin: 0 auto;
	padding: 0;
	font-size:1.8em;
	color: #333;
}
/* sp */
@media screen and (max-width: 750px){
body #majica_ucs{
		font-size:1.6em;
		overflow: hidden;
	}

.majica_ucs_bg{
	padding: 4rem 0;
}
}

#majica_ucs{
	color: #333;
	font-family: "Noto Sans JP", "ヒラギノ角ゴ ProN W3", Meiryo, sans-serif;
	font-size: 62.5%!important;
	line-height:1.5!important;
  /*padding: 50px 0!important;
  background: #ddd;*/
}

/* hover */
#box_m a:hover,
#box_u a:hover{
  opacity: 0.5;
  transition: 0.3s;
}

/* majica */
#box_m{
  display: grid; 
  grid-template-columns: 1fr 1.1fr; 
  width: 100%;
  max-width: 1020px;
  margin: 0 auto;
  background: #fff;
  border: 7px solid #E60011;
  border-radius: 15px;
}
.title_m{
  display: flex;
  padding-top: 3.4em;
  width: calc(100% - 4em);
  margin: 0 auto;
}
.h2logo_m{
  width: calc(20% - 1em);
  margin: 0 1em 0 0; 
}
.img_title_m{
  padding-top: 1em;
  width: 80%;
  height: 80%;
}
.h2logo_m img,
.img_title_m img{
  width: 100%;
  height: 100%;
}
.img_main_m img,
.img_main_m_smf img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.img_main_m_smf{
  display: none;
}
.a_boxm01{
  position: relative;
  display: block;
  width: 370px;
  margin: 1.7em auto 1em auto;
  padding: 15px 0;
  color: #fff;
  font-size: 1.8em;
  font-weight: 600;
  letter-spacing: 1px;
background: rgb(230,0,17);
background: linear-gradient(40deg, rgba(230,0,17,1) 0%, rgba(231,0,49,1) 71%, rgba(255,120,127,1) 100%);
  border-radius: 50px;
}
.a_boxm01:before{
  position: absolute;
  content: '';
  background-image: url("../img/next_boxm.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 20px;
  height: 20px;
  top: calc(50% - 10px);
  right: 20px;
}
.app_m{
  display: none;
}
.p_app_m{
  display: none;
  position: relative;
  background: #E60011;
  width: 33%;
  height: 190px;
  padding-top: 43em;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.p_app_m span{
  padding-top: 1em;
  font-size: 2.5em;
}
.p_app_m:before{
  position: absolute;
  content: '';
  top: 0;
  right: -40px;
  border-style:solid;
  border-width: 95px 0 95px 40px;
  border-color: transparent transparent transparent #E60011;
}
.app_inner_m{
  width: 67%;
  background: #f2f2f2;
  border-radius: 10px;
}
.app_inner_m ul{
  justify-content: center;
  align-items: center;
  padding: 3em 0 2em 0;
}
.app_inner_m ul li img{
  width: 100%;
  max-height: 70px;
}
.app_inner_m ul li:first-child{
  margin-right: 2em;
}
.p_note_m{
  justify-content: center;
  align-items: center;
  font-size: 1.4em;
  text-align: left;
}
.app_m02{
  display: flex;
  grid-column: 1 / 3;
}
.p_app_m02{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  background: #E60011;
  width: 25%;
  height: 100%;
  min-height: 160px;
  padding: 4em 0;
  font-weight: 700;
  color: #fff;
  text-align: center;
}
.p_app_m02 span{
  width: 300px;
  display: block;
  padding-top: 0.5em;
  letter-spacing: 1px;
  font-size:1.8em;
}
.p_app_m02:before{
  position: absolute;
  content: '';
  top: 0;
  right: -45px;
  border-style:solid;
  border-width: 80px 0 80px 45px;
  border-color: transparent transparent transparent #E60011;
}
.app_inner_m02{
  width: 75%;
  background: #f2f2f2;
  border-radius: 0 0 10px 0;
}
.app_inner_m02 ul{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2.7em 0 1.5em 3em;
}
.app_inner_m02 ul li img{
  width: 100%;
  max-height: 60px;
}
.app_inner_m02 ul li:first-child{
  margin-right: 2em;
}
.p_note_m02{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.3em;
  text-align: left;
}

/* majica tab */
@media screen and (max-width: 1040px){
.box_r_m{
  display: none;
}
#box_m{
  display: block; 
  grid-template-columns: 0; 
  width: calc(100% - 3em);
  max-width: 680px;
  margin: 0 auto 0.5em auto;
  border: 5px solid #E60011;
  border-radius: 15px;
}
.title_m{
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 0.3em;
  width: calc(100% - 4em);
  max-width: 650px;
  margin: 0 auto;
}
.h2logo_m{
  width: calc(20% - 1.1em);
  margin: 1.3em 1.1em 0.1em 0; 
}
.img_title_m{
  padding-top: 2.3em;
}
.img_main_m{
  display: none;   
}
.img_main_m_smf{
  display: block;
  width: 100%;
  height: 100%;
}
.a_boxm01{
  width: 100%;
  max-width: 320px;
  margin: 1.8em auto;
  padding: 15px 0;
  font-size: 1.6em;
}
.a_boxm01:before{
  width: 20px;
  height: 20px;
  top: 20px;
  right: 20px;
}
.p_app_m{
  height: 190px;
  padding-top: 5.5em;
}
.p_app_m span{
  display: block;
  padding-top: 1em;
  font-size: 1.6em;
}
.p_app_m:before{
  top: 0;
  right: -30px;
  border-width: 95px 0 95px 30px;
}
.app_inner_m{
  padding: 0 1.5em 0 4.5em;
  border-radius: 0 0 10px 0;
}
.app_inner_m ul{
  padding: 30px 0 20px 0px;
}
.app_inner_m ul li img{
  width: 100%;
  max-height: 70px;
}
.app_inner_m ul li:first-child{
  margin-right: 1em;
}
.p_note_m{
  font-size: 1.4em;
}
}

/* majica smf */
@media screen and (max-width: 750px){
.title_m{
  max-width: 520px;
  padding: 0.3em 0 0.3em 0;
  width: calc(100% - 3em);
}
.h2logo_m{
  width: calc(20% - 0.6em);
  margin: 0.7em 0.6em 0.1em 0; 
}
.img_title_m{
  padding-top: 1.2em;
}
.a_boxm01{
  width: calc(100% - 2em);
  max-width: 320px;
  margin: 1.5em auto;
  padding: 13px 0;
  font-size: 1.4em;
  font-weight: 600;
  letter-spacing: 1px;
}
.a_boxm01:before{
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  right: 10px;
}
.app_m02{
  display: none;
}
.app_m{
  display: block;
}
.p_app_m{
  display: block;
  width: 100%;
  height: 45px;
  padding-top: 1.3em;
  text-align: center;
}
.p_app_m span{
  display: inline;
  padding-top: 0;
  font-size: 1.4em;
}
.p_app_m:before{
  content: none;
}
.app_inner_m{
  width: 100%;
  padding: 0.5em 1.5em 1.1em 1.5em;
  border-radius: 0 0 10px 10px;
}
.app_inner_m ul{
  display: flex;
  padding: 1em 0 1.1em 0px;
}
.app_inner_m ul li img{
  width: 100%;
  max-height: 70px;
}
.p_note_m{
  display: flex;
}
.p_note_m{
  font-size: 1.3em;
}
}

/* ucs */
#box_u{
  display: grid; 
  grid-template-columns: 1.1fr 1fr; 
  width: 100%;
  max-width: 1020px;
  margin: 5em auto 0px auto;
  background: #fff;
  border: 7px solid #E85504;
  border-radius: 15px;
}
.box_r_u{
  background: #f2f2f2;
  border-radius: 0 11px 11px 0;
}
.title_u{
  display: flex;
  width: calc(100% - 5em);
  margin: 0 auto 1.5em auto;
}
.h2logo_u{
  width: calc(17% - 1.3em);
  margin: 2.2em 1.3em 0px 0; 
}
.img_title_u{
  padding-top: 4.5em;
  width: 82%;
  height: 82%;
}
.main_u{
  width: 100%;
}
.img_main_u{
  width: 100%;
  object-fit: contain;
}
.img_main_u_smf{
  display: none;
}
.a_boxu01,
.a_boxu02{
  position: relative;
  display: block;
  width: 100%;
  max-width: 320px;
  margin: 1.6em auto 0 auto;
  padding: 15px 0;
  font-size: 1.6em;
  color: #fff;
  font-weight: 600;
  letter-spacing: 1px;
background: rgb(233,85,4);
background: linear-gradient(40deg, rgba(233,85,4,1) 0%, rgba(233,85,4,1) 59%, rgba(239,151,0,1) 94%);
  border-radius: 50px;
}
.a_boxu01{
  max-width: 390px;
}
.a_boxu02{
  margin: 1.3em auto 2em auto;
}
.a_boxu01:before,
.a_boxu02:before{
  position: absolute;
  content: '';
  background-image: url("../img/next_boxm.png");
  background-size: contain;
  background-repeat: no-repeat;
  top: calc(50% - 9px);
  width: 20px;
  height: 20px;
  right:15px;
}
.h3_campaign_u{
  position: relative;
  padding: 0.5em 0 0 0;
  font-weight: 700;
  font-size: 2em;
  color: #E85504;
}
.span01_h3u,
.span02_h3u{
  position: relative;
  display: inline-block;
  padding: 0.3em 0.2em 0.2em 1em;
  background: #f2f2f2;
  z-index: 999;
}
.span02_h3u{
  font-size: 0.7em;
  padding: 0.4em 1em 0.4em 0;
}
.h3_campaign_u:before{
  position: absolute;
  content: '';
  width: calc(100% + 2em);
  background: #E85504;
  height: 2px;
  top: 1.4em;
  left: -1em;
}
.campaign_u{
  width: 100%;
  padding: 1.5em 2em 0 2em;
}
.campaign_u ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
/*.campaign_u ul li:first-child{
  width: 100%;
}
.campaign_u ul li{
  width: calc(50% - 0.4em);
  margin-top: 0.8em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.8em;
}*/
.campaign_u ul li{
  width: calc(50% - 0.4em);
  margin-top: 1.5em;
  margin-right: 0.8em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0;
}

/* ucs tab */
@media screen and (max-width: 1040px){
#box_u{
  display: block; 
  grid-template-columns: 0; 
  width: calc(100% - 3em);
  max-width: 680px;
  margin: 3.5em auto 0 auto;
  border: 5px solid #E85504;
  border-radius: 15px;
}
.box_r_u{
  border-radius: 0 0 11px 11px;
}
.title_u{
  justify-content: center;
  align-items: center;
  width: calc(100% - 4em);
  max-width: 740px;
  margin: 0 auto;
  padding: 1.5em 0 1em 0;
}
.h2logo_u{
  width: calc(19% - 2em);
  margin: 0 1em 0 0; 
}
.h2logo_u img{
  max-height: 100px; 
}
.img_title_u{
  padding-top: 2em;
  width: calc(81% - 1em);
  margin: 0 1em 1em 0; 
}
.img_main_u{
  display: none;
}
.img_main_u_smf{
  display: block;
  width: 100%;
  height: 100%;
}
.a_boxu01,
.a_boxu02{
  width: calc(100% - 2em);
  max-width: 390px;
  margin: 1.8em auto;
  padding: 15px 0;
}
.a_boxu02{
  max-width: 320px;
}
.a_boxu01:before,
.a_boxu02:before{
  width: 18px;
  height: 18px;
  top: calc(50% - 9px);
  right: 13px;
}
.h3_campaign_u{
  padding: 0.7em 1em 0 1em;
}
.span01_h3u{
  padding:  0.1em 2em 0 2em;
}
.span02_h3u{
  display: block;
}
.h3_campaign_u:before{
  top: 1.5em;
  width: calc(100% + 2em);
  left: -1em;
}
.campaign_u{
  width: 100%;
  padding: 1em 1.5em 0.5em 1.5em;
}
.campaign_u ul{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  max-width: 820px;
  margin: 0 auto;
}
/*.campaign_u ul li:first-child{
  width: 100%;
}
.campaign_u ul li{
  width: calc(50% - 0.3em);
  margin-top: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.6em;
}*/
.campaign_u ul li{
  width: calc(50% - 0.3em);
  margin-top: 0.6em;
  margin-right: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0;
}
}

/* ucs smf */
@media screen and (max-width: 750px){
.title_u{
  justify-content: center;
  align-items: center;
  width: calc(100% - 3em);
  max-width: 540px;
  padding: 1em 0 0.7em 0;
}
.h2logo_u{
  width: calc(18% - 0.6em);
  margin: 0 0.6em 0 0; 
}
.h2logo_u img{
  max-height: 70px; 
}
.img_title_u{
  padding-top: 0.8em;
  width: 82%;
  margin: 0 0 0.3em 0; 
}
.a_boxu01,
.a_boxu02{
  margin: 1.5em auto;
  padding: 13px 0;
  font-size: 1.3em;
  letter-spacing: 0;
}
.a_boxu01{
  max-width: 320px;
  padding: 8px 0;
}
.a_boxu01 span{
  display: block;
}
.a_boxu01:before,
.a_boxu02:before{
  width: 14px;
  height: 14px;
  top: calc(50% - 7px);
  right: 10px;
}
.a_boxu02{
  margin: 1.1em auto 1.2em auto;
}
.h3_campaign_u{
  font-size: 1.6em;
  padding: 0.5em 0.5em 0 0.5em;
}
.span01_h3u{
  padding: 0 1em 0 1em;
}
.h3_campaign_u:before{
  top: 1.2em;
  width: calc(100% + 1.4em);
  left: -0.6em;
}
.campaign_u{
  padding: 0.6em 0.8em 0.1em 0.8em;
}
.campaign_u ul li{
  width: calc(50% - 0.4em);
  margin-top: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0;
}
/*.campaign_u ul li{
  width: calc(50% - 0.2em);
  margin-top: 0.6em;
}
.campaign_u ul li:nth-child(2n){
  margin-right: 0.4em;
}*/
}

/* =========================================================
ページトップ リンク
========================================================= */

/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background-image: linear-gradient(to right bottom, #dbf6f1 0%, #e0f1ff 50%, #feeef5 70%, #fef1f7 100%);
	border-radius: 5px;
	width: 60px;
	height: 60px;
	color: #5c5664;
	border: solid 1px #5c5664;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:1.6rem;
	transition:all 0.3s;
}

#page-top a:hover{
	background: #FFF;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}

@media screen and (max-width: 960px) {

#page-top.UpMove {
    animation: UpAnime 0.5s forwards;
    bottom: 10px;
}
}

@media screen and (max-width: 750px){
	#page-top {
	right: 20px;
}
}


/*---------------------------------------------
フッター
---------------------------------------------*/

footer{
	width: 100%;
	padding: 20px 0;
	font: Arial, Helvetica, sans-serif;
	background: #2b2b2b;
}

footer a{
	color: #fff;
	text-decoration: none;
}

footer address{
	color: #fff;
}

/* sp */
@media screen and (max-width: 520px){
	footer{
		padding:10px 0;
	}
	
	#page-top a{
	margin: 0 -10px 0 0;
	}
}



