@charset "UTF-8";


/* 各プランの入り口 */

.plan_menu{
  width: 100%;
}
.plan_menu li{
  max-width: 400px;
  margin: 0 auto 20px;
}
.plan_menu li a{
  font-size: 1.7rem;
  text-align: center;
  background-color: #e6e6e6;
  padding: 20px 8px;
  box-sizing: border-box;
  border-radius: 8px;
  font-weight: bold;
}

@media (max-width: 768px) {
.plan_menu li a {
    font-size: 1.4rem;
}
}


/* メインコンテンツ */

.main{
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  font-size: 1em;
  line-height: 1.6;
}
.main img {
  width: auto;
  max-width: 100%;
  /*
  zoom: 0.5;
-ms-zoom: 0.5;
-webkit-zoom: 0.5;
-moz-transform:  scale(0.5,0.5);
-moz-transform-Origin: 0 0;*/
}
.main #side {
  width: 27%;
}
.main #main_content {
    width: 70%;
}
.sect + .sect {
    margin-top: 30px;
}
/*
.main #main_content span[id]:not([href]) {
  margin-top: -91px;
  padding-top: 91px;
  display: inline-block;
  vertical-align: top;
  width: 0;
  height: 0;
}*/

@media (max-width: 1280px) {
  .main {
  max-width: 98%;
  margin: 0 auto;
  }
}
@media (max-width: 768px) {
  .main {
    max-width: 100%;
    display: block;
    font-size: 1em;
}
  .main #main_content {
    width: 100%;
    margin: 0 auto;
  }
  .main #side {
    width: 96%;
    margin: 0 auto;
    box-sizing: border-box;
}
.sect .c-container {
  margin: 0;
}
}

/* 897px以下のヘッダー表示ズレ防ぐ用 */
@media (max-width: 768px) {
  .only--pc {
  display: none;
  }
  }
  
  @media (min-width: 768px) {
  .only--sp {
  display: none;
  }
  }


/* サイド */

.sidemenu li a, .sidemenu li span {
  background: #dce2eb;
  width: 100%;
  padding: 8px 28px 8px 8px;
  box-sizing: border-box;
  border-radius: 5px;
  display: block;
  font-size: 1.5rem;
  font-weight: bold;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
}
.sidemenu li.current > a,.sidemenu li.current > span{
	background: #61636b;
	color: #fff;
}
.sidemenu li span:before{
  content: "";
  position: absolute;
  right: 15px;
  top: 38%;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #000000;
  border-right: solid 2px #000000;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
.sidemenu li span.open:before{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 45%;
}
.sidemenu li.current span:before{
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}
.sidemenu li ul.menu_dropdown{
	display: none;
	margin-bottom: 20px;
}
.sidemenu li span.open + ul.menu_dropdown{
  display: block;
}


.sidemenu li ul.menu_dropdown li{
	overflow: hidden;
}
.sidemenu li ul.menu_dropdown a {
  background: #dce2eb;
  border-radius: 0;
  width: 95%;
  margin-bottom: 2px;
  font-size: 1.4rem;
  float: right;
  letter-spacing: 0;
}
.sidemenu li ul.menu_dropdown .current a {
  background: #0064a0;
  color: #fff;
}
.sidemenu_sp{
  display: none;
}

@media (max-width: 768px) {

  .menubtn_sp {
    text-align: left;
    font-size: 1.6rem;
    font-weight: bold;
    color: #fff;
    padding: 8px;
    box-sizing: border-box;
    cursor: pointer;
    background: #61636b;
    margin-bottom:0;
    position: relative;
}

.menubtn_sp .cross {
  width: 5vw;
  height: 3.8vw;
  position: relative;
  display: inline-block;
  margin: 0;
  position: absolute;
  right: 10px;
  top: 13px;
}
.menubtn_sp .cross span {
	width: 100%;
	height: 2px;
	background: #fff;
	display: block;
	position: absolute;
	transition: all .3s ease;
}
.menubtn_sp p {
	color: #fff;
	font-size: 2.4vw;
	text-align: center;
	white-space: nowrap;
}
/* 通常 */
.menubtn_sp .cross span:nth-of-type(1) {
	top: 0;
	transform: translateY(0);
}
.menubtn_sp .cross span:nth-of-type(2) {
	top: 50%;
	transform: translateY(-50%);
}
.menubtn_sp .cross span:nth-of-type(3) {
	bottom: 0;
	transform: translateY(0);
}
/* クローズ */
.menubtn_sp.open .cross span:nth-of-type(1) {
	animation: closeBtnIn .5s ease;
	top: 50%;
	transform: translateY(-50%) rotate(45deg);
}
.menubtn_sp.open .cross span:nth-of-type(2) {
	display: none;
}
.menubtn_sp.open .cross span:nth-of-type(3) {
	animation: closeBtnIn .5s ease;
	top: 50%;
	transform: translateY(-50%) rotate(-45deg);
}





ul.sidemenu_sp{
  display: none;
}
ul.sidemenu_sp.open{
  display: block;
}

ul.sidemenu > li:not(.current) {
  display: none;
}
.sidemenu_sp li a, .sidemenu_sp li span {
  letter-spacing: 0;
  font-size: 1.4rem;
  margin-bottom: 0;
  border-radius: 0;
  background: #fff;
  color: #000;
  border: 1px solid #000;
  border-top: none;
  padding: 8px 6px;
  box-sizing: border-box;
}

.sidemenu li.current > a, .sidemenu li.current > span {
  background: #fff;
  color: #000;
  font-size: 2rem;
  display: block!important;
  pointer-events: none;
  margin-bottom: 0;
}

.menu_parents.current{
  padding-top: 20px;
}
.sidemenu li span.open + ul.menu_dropdown {
  border: 1px solid #000;
  box-sizing: border-box;
  padding: 10px 0;
}
.sidemenu li ul.menu_dropdown a {
  font-size: 1.3rem;
  background: none;
  color: #000;
  margin: 0;
  border: none;
  width: 100%;
  float: none;
  position: relative;
  padding: 8px 8px 8px 30px;
}
.sidemenu li ul.menu_dropdown a:before {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #333;
  position: absolute;
  top: 12px;
  left: 15px;
  margin-top: 0;
}
.sidemenu li ul.menu_dropdown .current a{
  color: #004a90;
  background:none;
}
.sidemenu li ul.menu_dropdown .current a:before{
  border-color: transparent transparent transparent #004a90;
}



}
/*見出し*/

h1.guide_h1{
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 0;
  font-size: 2.4rem;
  font-weight: bold;
}
h1.guide_h1 a{
  display: inline;
}
h1.guide_h1 a:hover{
color:#457ad2;
}
h3{
  background: #3e3e3e;
  color: #fff;
  font-size: 1.8rem;
  margin-bottom: 20px;
  padding: 10px 15px 10px 15px;
  font-weight: bold;
}
h2 {
  font-size: 2.2rem;
  font-weight: bold;
  margin-top: 0px;
  margin-bottom: 5px;
}

h4.dd_h4 {
  display: block;
  background: #e8eff7;
  color: #004a90;
  font-size: 1rem;
  margin-bottom: 20px;
  padding: 10px 30px 10px 15px;
  box-sizing: border-box;
  font-weight: bold;
  position: relative;
  cursor: pointer;
}
h4.dd_h4:after{
  content: "";
  position: absolute;
  right: 15px;
  top: 15px;
  transition: all 0.2s ease-in-out;
  display: block;
  width: 8px;
  height: 8px;
  border-top: solid 2px #004a90;
  border-right: solid 2px #004a90;
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
}
h4.dd_h4.open:after{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 20px;
}
h4.dd_h4:before {
    content: "";
    position: absolute;
    right: 8px;
    top: 11px;
    width: 25px;
    height: 25px;
    background: #fff;
}

h4.num_ttl{
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
  padding: 5px 0 0 40px;
  box-sizing: border-box;
}
h4.num_ttl span{
  text-align: center;
  color: #fff;
 position: absolute;
 width: 30px;
 height: 30px;
 left: 0;
 top: 0;
 background: #0064a0;
 border-radius: 5px;
 padding-top: 5px;
 box-sizing: border-box;
}
.dd_box{
	display: none;
}
h5{
  position: relative;
  margin-bottom: 15px;
  padding: 0 0 0 20px;
  font-weight: bold;
}
h5:before {
  content: "";
  position: absolute;
  background: #000;
  width: 13px;
  height: 13px;
  left: 0;
  top: 4px;
}


@media (max-width: 1280px) {
  h1.guide_h1{
    max-width: 98%;
  }
}
@media (max-width: 768px) {
  h1.guide_h1{
    max-width: 96%;
    padding: 30px 0;
    font-size: 2.2rem;
  }
  h1.guide_h1 span{
    display: none;
  }
#main_content h2 {
    font-size: 1.35em;
    margin: 0 0 5px 0;
}
h3 {
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}
}

/* パーツ*/



.mb0{
	margin-bottom: 0!important;
}
.mb5{
	margin-bottom: 5px!important;
}
.mb10{
	margin-bottom: 10px!important;
}
.mb15{
	margin-bottom: 15px!important;
}
.mb20{
	margin-bottom: 20px!important;
}
.mb30{
	margin-bottom: 30px!important;
}
.mb40{
	margin-bottom: 40px!important;
}
.mb40{
	margin-bottom: 40px!important;
}

.pr20{
	padding-right: 20px!important;
}

.center{
  text-align: center;
}
.right{
  text-align: right;
}
.left{
  text-align: left!important;
}
.bold{
  font-weight: bold;
}
.normal{
  font-weight: normal!important;
}
p.small{
  font-size: 90%;
}

.flex {
  justify-content: space-between;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  display: flex;
  margin-bottom: 15px;
}

.flex.column2{
  flex-direction: row;
  align-items: flex-end;
  text-align: center;
  justify-content: center;
}
.flex.column2.center{
  align-items: center;
}
.flex.column2 > p,.flex.column2 > div{
  padding: 0 1%;
    width: 48%;
}
@media (max-width: 768px) {
.flex.column2 > p,.flex.column2 > div{
    width: 100%;
}
}

.flex.img_l{
  flex-direction: row;
}
.flex .img{
  text-align: center;
  flex-basis: 30%;
}
.flex .txt{
  flex-basis: 68%;
}

.flex.flex_w2 .img{
  flex-basis: 40%;
}
.flex.flex_w2 .txt{
  flex-basis: 58%;
}

@media (max-width: 768px) {
.main p{
    line-height: 1.8;
}
}

.main p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.main .num_box p {
  margin-bottom: 30px;
	line-height: 2;
}
.link a {
  color: #2280c1;
  text-decoration: underline;
  display: inline;
  word-break: break-all;
}
.link a:hover{
  text-decoration: none;
}
p.allow {
  padding: 5px 0 0 22px;
  box-sizing: border-box;
  position: relative;
}
p.allow:before {
  content: "";
  width: 10px;
  height: 15px;
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  box-sizing: border-box;
  border: 15px solid transparent;
  border-left: 15px solid #bcc7d3;
}

table.table1 {
    margin: 0 0 20px;
    width: 100% !important;
    font-size: 1.4rem;
}
table.table1 td, table.table1 th {
	border:1px solid #000;
	padding:8px 5px;
	line-height:2.2;
	background:#fff;
	box-sizing: border-box;
}
table.table1 thead th{
	background: #61636b;
	color: #fff;
	text-align: left;
	padding:3px 5px;
}
table.table1 tbody th {
  font-weight: normal;
	text-align: left;
  width: 20%;
}
table.table1 tbody th img{
  vertical-align: middle;
}

table.table2 {
  margin: 0 0 20px;
  width: 100% !important;
  font-size: 1.4rem;
}
table.table2 td, table.table2 th {
border:1px solid #000;
padding:8px 5px;
line-height:2.2;
background:#fff;
box-sizing: border-box;
text-align: center;
}
table.table2 tbody th{
background: #61636b;
color: #fff;
padding:3px 5px;
width: 50%;
}
table.table2 tbody th img{
vertical-align: middle;
}
table.table2.table2_w2 tbody th{
  width: 30%;
  }


.ind{
  text-indent: -1em;
  padding-left: 1em;
}
p.icon {
  text-indent: -38px;
  padding-left: 38px;
}
p.icon img{
    margin-right: 5px;
    vertical-align: middle;
  }
.border_box_r{
	box-sizing: border-box;
	padding: 8px;
	border: 1px solid #ee848b;
  margin-bottom: 20px;
  padding: 20px 20px 20px 50px;
  background: url(../images/icon1.png) no-repeat 6px 6px #fdf3f4;
  background-size: 33px 32px;
}
.border_box_b{
	box-sizing: border-box;
	padding: 8px;
	border: 1px solid #63a3c2;
  margin-bottom: 20px;
  padding: 20px 20px 20px 50px;
  background: url(../images/icon2.png) no-repeat 6px 6px #f1f7fd;
  background-size: 26px 35px;
}
.border_box_b.icon2 {
  background: url(../images/icon3.png) no-repeat 6px 6px #f1f7fd;
  background-size: 34px 39px;
  padding: 13px 8px 13px 50px;
}
.border_box_y {
  box-sizing: border-box;
  border: 1px solid #f8b62d;
  margin-bottom: 20px;
  padding: 20px 20px 20px 50px;
  background: url(../images/icon1.png) no-repeat 6px 6px #fdf3e9;
  background-size: 33px 32px;
}
.border_box_r p,.border_box_b p,.border_box_y p{
    margin-bottom: 0;
    font-weight: bold;
    font-size: 0.87em;
    line-height: 1.8;
}
@media (max-width: 768px) {
.border_box_r p,.border_box_b p,.border_box_y p{
    font-size: 1em;
}
}
.border_box_r.mb_in p, .border_box_b.mb_in p, .border_box_y.mb_in p {
  margin-bottom: inherit;
}

.border_box_before{
  border: 1px solid #61636b;
  padding: 15px;
  box-sizing: border-box;
  margin-bottom: 30px;
}
.border_box_before h4{
  font-weight: bold;
  padding: 5px 20px;
  display: inline-block;
  background-color: #3383b3;
  color: #fff;
  margin-bottom: 10px;
}


.num_block{
  margin-bottom: 30px;
}

ul.ul_dot1,ul.ul_dot2{
    margin: 0 0 20px 20px;
    padding: 0;
    font-size: 0.87em;
}
ul.ul_dot1 li {
  position: relative;
  padding-left: 15px;
  font-weight: bold;
}
ul.ul_dot1 li:before {
    content: "";
    position: absolute;
    top: .5em;
    left: 4px;
    width: 5px;
    height: 5px;
    background-color: #000;
    border-radius: 50%;
}
ul.ul_dot2 li{
  position: relative;
    margin-bottom: 5px;
}

.border_box_r ul.ul_dot1,.border_box_b ul.ul_dot1,.border_box_y ul.ul_dot1,
.border_box_r ul.ul_dot2,.border_box_b ul.ul_dot2,.border_box_y ul.ul_dot2{
	margin-bottom: 0;
}

@media (max-width: 1200px) {
  .border_box_r .flex,.border_box_b .flex,.border_box_y .flex{
    display: block;
    margin: 0 auto 20px;
  }
  .border_box_r .flex .img,.border_box_b .flex .img,.border_box_y .flex .img{
    margin: 0 auto 15px;
  }
  }


@media (max-width: 768px) {
.flex {
  display: block;
  margin: 0 auto 20px;
}
.flex .img {
  margin: 0 auto 15px;
}
}

@media (max-width: 600px) {
table.table1 {
  font-size: 1.2rem;
}
table.table1.table_icon tbody th {
  width: 35%;
}
img.h_auto{
  height: auto!important;
}

}

/* お問い合わせ先ページ */

.contact h3{
  background:#00a0e9;
}

.contact .border_box {
  border: 2px solid #00a0e9;
  box-sizing: border-box;
  padding: 10px;
  max-width: 400px;
  margin: 0 auto;
}
.contact .bg_box{
  background:#e4f4fd;
  padding: 20px;
  box-sizing: border-box;
  margin: 0 auto 20px;
}
.contact_h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: url(../images/contact/mail_icon.png) no-repeat 0px 9px;
  background-size: 40px auto;
  padding: 8px 0 5px 50px;
}
.tel_h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: url(../images/contact/tel_icon.png) no-repeat 0px 9px;
  background-size: 40px auto;
  padding: 8px 0 5px 50px;
}
.txt_h4 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: url(../images/contact/txt_icon.png) no-repeat 0px 8px;
  background-size: 40px auto;
  padding: 8px 0 5px 50px;
}
.fd {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
  background: url(../images/contact/fd.png) no-repeat 0px 9px;
  background-size: 45px auto;
  padding: 5px 0 5px 52px;
}

.qr{
  background: #fff;
  display: inline-block;
  padding: 10px;
  box-sizing: border-box;
  margin: 0 auto;
  text-align: center;
}
.flex.column3.column3_txt{
  flex-direction: inherit;
  max-width: 550px;
  margin: 0 auto 15px;
  align-items: center;
  /* font-size: 1.8rem; */
  font-weight: bold;
  text-align: center;
}

@media (max-width: 768px) {
.only--sp.pagination{
  overflow: hidden;
}
.only--sp .prev {
  float: left;
}
.only--sp .prev a{
  position: relative;
  padding: 0px 0 0 20px;
  box-sizing: border-box;
}
.only--sp .prev a:before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 12px solid #004a90;
  border-bottom: 10px solid transparent;
  left: 0;
  top: 0;
}
.only--sp .next{
  float: right;
  position: relative;
}
.only--sp .next a{
  position: relative;
  padding: 0px 20px 0 0;
  box-sizing: border-box;
}
.only--sp .next a:before{
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-left: 12px solid #004a90;
  border-bottom: 10px solid transparent;
  right: 0;
  top: 0;
}
}

/* 20220607追加 */

.btn-back {
  text-align: right;
  margin-top: 40px;
}
.btn-back a{
  display: inline-block;
  background: #5d5d5d;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 10px 40px;
  position: relative;
  top: 0;
  left: 0;
  border: solid 1px transparent;
  transition: all .3s ease;
}
.main .mobai-img{
  height: auto;
  width: 260px;
}

@media (max-width: 768px) {
  .main .mobai-img{
    margin: auto;
  }
  .btn-back {
    margin-bottom: 60px;
  }
  .sp-mt {
    margin-top: 20px;
  }	
}

.border_flex_box .flex.column3 {
 justify-content: center;
 flex-direction: inherit;
}
.border_flex_box .flex.column3 > div{
 flex-basis: 30%;
 margin-right: 3.333%;
}

.border_flex_box .flex.column3 > div .img {
 text-align: left;
 flex-basis: 40%;
}
.border_flex_box .flex.column3 > div .txt {
    flex-basis: 58%;
    font-size: 1.3rem;
    margin-bottom: 15px;
}



main a {
    text-decoration: none!important;
}

ul.menu {
    margin: 0;
    padding: 0;
    list-style: none;
}

ul.menu a {
    font-size: 0.87em;
    font-weight: 600;
    width: 100%;
    margin-bottom: 7px;
    letter-spacing: 0;
    padding: 10px;
    box-sizing: border-box;
    display: block;
    position: relative;
    text-decoration: none;
    color: #000;
    cursor: pointer;
    border: solid 1px #000;
    border-radius: 3px;
}

ul.menu li.current a {
    background: #000;
    color: #fff;
}

@media (max-width: 768px) {
.product__title {
    font-size: 1.31em;
}
}



@media (min-width: 768px) {
    .page2 .sect .c-container .flex,
    .page3 .sect .c-container .flex {
        flex-flow: row nowrap;
        justify-content: space-between;
    }
}

.contents ul, .contents ol {
    line-height: 1.53!important;
}


.main p.bg_g {
    margin-bottom: 0;
    padding: 1rem;
    background: #efefef;
}

img.border {
	border: solid 1px #DDD;
}
