/*-------------------------------------------------------
	default css
-------------------------------------------------------*/
html {
  font-size: 62.5%;
}

body {
  line-height: 2.3em;
  font-size: 16px;
  font-size: 1.6rem;
  -webkit-text-size-adjust: none;
  font-family: "Noto Sans Japanese";
  color: #333;
  border-top: 7px solid #f00;
  overflow-x: hidden;
}
body img {
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  body img {
    max-width: 100%;
  }
}

/*-------------------------------------------------------
pc.sp
-------------------------------------------------------*/
.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

/*-------------------------------------------------------
inner
-------------------------------------------------------*/
.inner {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner {
    padding: 0 10px;
  }
}

/*-------------------------------------------------------
clearfix
-------------------------------------------------------*/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/*-------------------------------------------------------
link
-------------------------------------------------------*/
a {
  color: #333;
  text-decoration: none;
  word-wrap: break-word;
}
a:visited {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #333;
  text-decoration: underline;
  opacity: .8;
}
a:active {
  color: #333;
  text-decoration: underline;
  opacity: .8;
}

/*-------------------------------------------------------
title
-------------------------------------------------------*/
.ttlH2 {
  margin-bottom: 60px;
  font-size: 30px;
  font-size: 3.0rem;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .ttlH2 {
    font-size: 23px;
    font-size: 2.3rem;
  }
}
.ttlH2.red {
  display: inline-block;
  padding-bottom: 10px;
  color: #f00;
  border-bottom: 1px solid #f00;
}
.ttlH3 {
  font-size: 18px;
  font-size: 1.8rem;
  font-weight: bold;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f00;
  text-align: left;
}
.ttlH3.black {
  border: none;
  text-align: center;
  padding: 0;
  margin-bottom: 40px;
}
.ttlH3pri {
  text-align: left;
}

/*-------------------------------------------------------
list
-------------------------------------------------------*/
.listDisc {
  list-style: disc;
  margin-left: 20px;
}
.listNum {
  margin-left: 25px;
  list-style: decimal;
}
.listCaution {
  list-style: none;
  margin-left: 20px;
}
.listCaution span {
  margin: 0 5px 0 -20px;
}
.listCaution span.note {
  margin: 0 5px 0 0;
}

/*-------------------------------------------------------
mokuhyo add2022.04.26
-------------------------------------------------------*/
.t_indent{
 margin-left: 1rem;
 text-indent: -1rem;
}

/*-------------------------------------------------------
link
-------------------------------------------------------*/
.btnBox {
  margin-top: 40px;
}
.btnBox a,
.btnBox span {
  display: inline-block;
  border: 1px solid #f00;
  padding: 5px 30px;
  color: #f00;
  font-size: 12px;
  font-size: 1.2rem;
  text-decoration: none;
  cursor: pointer;
}
.btnBox a:visited,
.btnBox span:visited {
  text-decoration: none;
}
.btnBox a::after,
.btnBox span::after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent #f00;
  vertical-align: middle;
}
.btnBoxUnder a::after,
.btnBoxUnder span::after {
  content: "";
  display: inline-block;
  margin-left: 15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 5px 0 5px;
  border-color: #f00 transparent transparent transparent;
  vertical-align: middle;
}

/*-------------------------------------------------------
header
-------------------------------------------------------*/
.header {
  text-align: center;
  border-top: 7px solid #e60000;
  border-bottom: 1px solid #e60000;
}
.headerLogo {
  padding: 20px 0 0;
}
@media screen and (max-width: 768px) {
  .headerLogo {
    padding: 20px 0 0;
  }
}
@media screen and (max-width: 768px) {
  .headerLogo h1 {
    padding: 0 10px 0 20px;
  }
}
.headerLogoLink {
  border-top: 1px solid #e60000;
  margin-top: 20px;
  padding: 6px 0;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .headerLogoLink {
    padding: 6px 10px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
.headerNav {
  border-top: 1px solid #e60000;
}
.headerNav ul {
  max-width: 960px;
  margin: 0 auto;
}
.headerNav li {
  float: left;
  width: 240px;
  font-size: 18px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .headerNav li {
    font-size: 14px;
    font-size: 1.4rem;
    width: 25%;
    box-sizing: border-box;
  }
  .headerNav li:nth-child(2n) {
    border-right: 0;
  }
}
.headerNav li a {
  display: block;
  padding: 20px 0;
}
@media screen and (max-width: 768px) {
  .headerNav li a {
    padding: 6px 0;
  }
}
.headerNav li a.active {
  border-top: 5px solid #e60000;
  padding: 15px 0 20px;
}
@media screen and (max-width: 768px) {
  .headerNav li a.active {
    padding: 1px 0 6px;
  }
}
.headerNav li a.blank::after {
  content: "";
  display: inline-block;
  padding: 9px;
  margin-left: 5px;
  background: url(../images/img_02.png) no-repeat 0 center;
  vertical-align: baseline;
}

/*-------------------------------------------------------
mainvisual
-------------------------------------------------------*/
.mainVisual1 {
  background: #f00;
  text-align: center;
}
@media screen and (max-width: 1240px) {
  .mainVisual1 img {
    width: 100%;
  }
}
.mainVisual2 {
  background: #000;
  text-align: center;
}
@media screen and (max-width: 1240px) {
  .mainVisual2 img {
    width: 100%;
  }
}

/*-------------------------------------------------------
section
-------------------------------------------------------*/
section {
  padding: 60px 0;
  text-align: center;
}
section.gray {
  background: #e8e8e8;
}
section.gray .read {
  margin-bottom: 80px;
}
section.gray .contentsView {
  margin-bottom: 60px;
}
section a {
  text-decoration: underline;
}
section a:visited {
  text-decoration: underline;
}
section .goodImg {
  border-top: 1px solid #f00;
  border-bottom: 1px solid #f00;
  position: relative;
  height: 400px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  section .goodImg {
    position: static;
    height: auto;
    padding: 10px 0;
  }
}
section .goodImg img {
  position: absolute;
  left: 50%;
  top: 50%;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  max-width: 960px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  section .goodImg img {
    position: static;
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
  }
}
section dl {
  text-align: left;
}
section dl dt {
  float: left;
  width: 140px;
}
@media screen and (max-width: 768px) {
  section dl dt {
    float: none;
    width: auto;
    font-weight: bold;
  }
}
section dl dd {
  margin-left: 160px;
}
@media screen and (max-width: 768px) {
  section dl dd {
    margin: 0 0 20px;
  }
}
section dl.coron dt::before {
  content: ":";
  float: right;
}
@media screen and (max-width: 768px) {
  section dl.coron dt::before {
    content: none;
  }
}
section .serviceMap {
  position: relative;
}
section .serviceMap a {
  text-decoration: none;
  position: absolute;
  display: block;
  text-align: left;
  font-weight: bold;
  line-height: 1.4;
  font-size: 18px;
  font-size: 1.8rem;
}
section .serviceMap a:hover {
  color: #f00;
}
section .serviceMap a.serviceMap1 {
  top: 0;
  left: 115px;
}
section .serviceMap a.serviceMap2 {
  top: 0;
  right: 80px;
}
section .serviceMap a.serviceMap3 {
  top: 143px;
  right: 19px;
}
section .serviceMap a.serviceMap4-1 {
  bottom: 120px;
  right: 72px;
}
section .serviceMap a.serviceMap4-2 {
  bottom: 0;
  right: 100px;
}
section .serviceMap a.serviceMap5 {
  bottom: 0;
  left: 145px;
}
section .serviceMap a.serviceMap6-1 {
  bottom: 120px;
  left: 30px;
}
section .serviceMap a.serviceMap6-2 {
  top: 143px;
  left: 66px;
}
section .contentsView {
  position: relative;
  margin-bottom: 80px;
  text-align: left;
}
section .contentsViewImg {
  float: left;
  max-width: 440px;
  margin: 0 30px 20px 0;
}
@media screen and (max-width: 768px) {
  section .contentsViewImg {
    float: none;
    margin: 0 0 20px;
    max-width: 100%;
  }
}
section .contentsViewImg p {
  margin-top: 30px;
}
section .contentsViewTxt {
  float: left;
  max-width: 490px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  section .contentsViewTxt {
    float: none;
    max-width: 100%;
  }
}
section .contentsViewPhoto {
  max-width: 600px;
}
@media screen and (max-width: 768px) {
  section .contentsViewPhoto {
    max-width: 100%;
    text-align: left;
  }
}
section .contentsViewPhoto p {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  section .contentsViewPhoto {
    text-align: left;
  }
  section .contentsViewPhoto.spLeft {
    text-align: left;
  }
}
section .contentsViewPhoto li {
  display: inline-block;
  list-style: none;
  margin: 7px 5px 0 0;
}
@media screen and (max-width: 768px) {
  section .contentsViewPhoto li img.mh103 {
    max-height: 100px;
    width: auto;
  }
  section .contentsViewPhoto li img.mh195 {
    max-height: 195px;
    width: auto;
  }
}
section .contentsView .btnBox {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media screen and (max-width: 768px) {
  section .contentsView .btnBox {
    position: static;
    text-align: right;
    margin-top: 10px;
  }
}
section .contentsView .btnBox a {
  display: block;
  margin-top: 10px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  section .contentsView .btnBox a {
    display: inline-block;
    margin: 10px 0 0 10px;
    min-width: 170px;
  }
}
section .copyQuestionTtl {
  border: 2px solid #f00;
  padding: 25px;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
  -moz-border-radius: 10px 10px 0 0;
  -webkit-border-radius: 10px;
  border-radius: 10px 10px 0 0;
}
section .copyQuestionBox {
  border: 2px solid #f00;
  border-top: 0;
  -moz-border-radius: 0 0 10px 10px;
  -webkit-border-radius: 0;
  border-radius: 0 0 10px 10px;
  padding: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  section .copyQuestionBox {
    padding: 20px;
  }
}
section .copyQuestionBoxTxt {
  float: left;
  margin-right: 50px;
  max-width: 715px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section .copyQuestionBoxTxt {
    margin: 0 0 20px;
    float: none;
  }
}
section .copyQuestionBoxImg {
  float: left;
  width: 130px;
}
@media screen and (max-width: 768px) {
  section .copyQuestionBoxImg {
    float: none;
    width: auto;
    text-align: center;
  }
}
section .copyQuestionBox .tabBox {
  margin: 40px 0 0;
}
@media screen and (max-width: 768px) {
	section .copyQuestionBox .tabBox {
		display:flex;
	}
}
section .copyQuestionBox .tabBox + .read {
  border-top: 1px solid #f00;
  position: relative;
  z-index: 1;
}
section .copyQuestionBox .tabBox::after {
  clear: both;
  content: "";
  display: table;
}
section .copyQuestionBoxTab {
  position: relative;
  top: 1px;
  z-index: 0;
  font-size: 12px;
  font-size: 1.2rem;
  color: #f00;
  background: #fff;
  border: 1px solid #f00;
  border-bottom: 1px solid #fff;
  padding: 2px 30px;
  float: left;
  display: block;
  margin-right: 5px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
	section .copyQuestionBoxTab {
		padding: 2px 8px;
	}
}
section .copyQuestionBoxTab::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #f00 transparent transparent transparent;
}
section .copyQuestionBoxTab:hover {
  background: #f00;
  color: #fff;
}
section .copyQuestionBoxTab:hover::after {
  border-width: 8px 5px 0 5px;
  border-color: #fff transparent transparent transparent;
}
section .copyQuestionBoxTab.active {
  background: #f00;
  color: #fff;
}
section .copyQuestionBoxTab.active::after {
  border-width: 0 5px 8px 5px;
  border-color: transparent transparent #fff transparent;
}
section .copyQuestionBox01, section .copyQuestionBox02, section .copyQuestionBox03, section .copyQuestionBox04 {
  display: none;
  padding-top: 20px;
}
section .copySampleTtl {
  position: relative;
  border: 2px solid #f8b551;
  padding: 20px;
  margin-top: 40px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  section .copySampleTtl {
    padding: 20px 20px 40px;
  }
}
section .copySampleTtl::before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  background: url(../images/copyright/img_04.png) no-repeat 0 0;
  width: 134px;
  height: 134px;
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 0;
}
section .copySampleTtl::after {
  content: "";
  display: block;
  margin-left: 15px;
  position: absolute;
  top: 50%;
  right: 30px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 7px 0 7px;
  border-color: #f8b551 transparent transparent transparent;
  vertical-align: middle;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  section .copySampleTtl::after {
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -webkit-transform: translateY(0);
    transform: translateY(0);
    top: auto;
    bottom: 10px;
    right: auto;
    left: 50%;
    margin-left: -6px;
  }
}
section .copySampleTtl.first {
  margin: 0;
}
section .copySampleTtlArea {
  position: relative;
  z-index: 1;
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: bold;
}
section .copySampleTtl.active::after {
  border-width: 0 7px 10px 7px;
  border-color: transparent transparent #f8b551 transparent;
}
section .copySampleTxt {
  padding: 30px 40px 0;
  text-align: left;
  display: none;
}
@media screen and (max-width: 768px) {
  section .copySampleTxt {
    padding: 20px 20px 0;
  }
}
section .copyCaution {
  border: 1px solid #00a0e9;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  border-radius: 10px;
  padding: 40px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  section .copyCaution {
    padding: 20px;
  }
}
section .copyCaution p {
  margin-bottom: 40px;
}
section .read {
  margin-bottom: 40px;
  text-align: left;
}
section.privacy p {
  text-align: left;
}
section.privacy .ttlH3pri + p {
  text-indent: 1em;
}
section.privacy .mt100 {
  margin-top: 60px;
}
section table {
  border: 1px solid #333;
}
section table th {
  background: #ececec;
  padding: 5px;
  border: 1px solid #333;
}
section table td {
  padding: 5px;
  border: 1px solid #333;
}
section .note {
  font-size: 11px;
  line-height: 2.2em;
}

/*-------------------------------------------------------
footer
-------------------------------------------------------*/
.footer {
  background: #ddddde;
}
.footerNav {
  padding: 20px;
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .footerNav {
    padding: 0;
  }
}
.footerNav li {
  display: inline-block;
  border-right: 1px solid #333;
  padding: 0 10px 0 5px;
}
@media screen and (max-width: 768px) {
  .footerNav li {
    display: block;
    border: 0;
    border-bottom: 1px solid #333;
    padding: 0;
  }
}
.footerNav li:last-child {
  border: 0;
}
.footerNav li.copy {
  border: 0;
  margin-left: 15px;
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footerNav li.copy {
    margin: 0;
    padding: 5px;
  }
}
.footerNav li a {
  font-size: 12px;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .footerNav li a {
    padding: 5px;
  }
  .footerNav li a::before {
    content: "";
    display: inline-block;
    margin-right: 10px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 4px 0 4px 7px;
    border-color: transparent transparent transparent #333;
  }
}

.footLink {
  background: #efefef;
  margin-top: 90px;
  padding: 10px 0;
}
.footLink a {
  font-size: 12px;
  font-size: 1.2rem;
  padding: 0 5px;
}

.banner {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .banner img {
    width: 46%;
  }
}

#pTop {
  position: fixed;
  right: 10px;
  bottom: 20px;
  opacity: 0.5;
}


section p.rinen {
	font-size: 30px;
	font-size: 3.0rem;
}

ol.kodo {
	text-align:left;
	padding-left:150px;
	margin-bottom:50px;
	font-size: 20px;
	font-size: 2.0rem;
}
p.shishin {
	text-align:left;
	padding-left:120px;
	font-size: 20px;
	font-size: 2.0rem;
}
@media screen and (max-width: 768px) {
	ol.kodo {
		padding-left:30px;
		font-size: 16px;
		font-size: 1.6rem;
	}
	p.shishin {
		padding-left:10px;
		font-size: 16px;
		font-size: 1.6rem;
  	}
}





/*# sourceMappingURL=style.css.map */
