@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500&family=Zen+Maru+Gothic:wght@500;700&display=swap');

/* *****************************************************************************
=01 reset style
=02 option style
=03 common style
=04 layout style
***************************************************************************** */
/*---------- =02 option style ----------*/
.tal{text-align:left!important;}
.tac{text-align:center!important;}
.tar{text-align:right!important;}
.mtNone{margin-top:0!important;}
.mbNone{margin-bottom:0!important;}
.mbShort{margin-bottom:1em!important;}
.mbMiddle{margin-bottom:2em!important;}
.mbLong{margin-bottom:3em!important;}
.bold{font-weight:bold;}
.red{color:#e60012;}
/*---------- //end option style ----------*/

/*---------- =03 common style ----------*/
*{
	-o-box-sizing: border-box;
	box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
html{
	font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  font-feature-settings: "palt";
}
body{
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #000000;
  background-color: #ffffff;
  font-size: 1.6rem;
  letter-spacing: 0;
}
a{
  color: #0076c4;
  text-decoration: underline;
  word-break: break-all;
}
a:hover,
a:active{
	text-decoration: none;
}
img{
  height: auto;
	display: block;
}
img,a img{
	vertical-align: bottom;
}
b,
strong,
.bold{
  font-weight: bold;
}
::selection{
	background-color: #0076c4;
	color: #ffffff;
}
::-moz-selection{
	background-color: #0076c4;
	color: #ffffff;
}

/*---------- //end common style ----------*/

/*---------- =04 layout style ----------*/
/*========================================
contents layout
========================================*/
/* contents */
.contents{
  font-size: 1.8rem;
  padding-left: 4rem;
  padding-right: 4rem;
  padding-bottom: 6rem;
}
.contents > .-inner{
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media print, screen and (max-width: 760px){
  /* contents */
  .contents{
    font-size: 1.6rem;
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* basic-box */
.basic-box{
  margin-top: 6rem;
}
.basic-box > .-box{
  margin-top: 4rem;
}

/* basic-heading */
.basic-heading{
  font-size: 2rem;
  color: #0076c4;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

@media print, screen and (max-width: 760px){
  /* basic-heading */
  .basic-heading{
    font-size: 1.8rem;
  }
}

/* basic-heading-middle */
.basic-heading-middle{
  font-weight: 700;
  margin-bottom: 0.5em;
  font-size: 2rem;
}

@media print, screen and (max-width: 760px){
  /* basic-heading-middle */
  .basic-heading-middle{
    font-size: 1.8rem;
  }
}
