/* @import url('https://fonts.googleapis.com/css?family=Encode+Sans+Condensed:400,600'); */

/*
薄い水色：00ccff
濃い水色：ffffff
*/

* {
  outline: none;
}

body {
  background-color: #fff;
  
  background-repeat: repeat;
}

.page {
  /* font-family: 'Encode Sans Condensed', sans-serif; */
  font-weight: 600;
  letter-spacing: .03em;
  color: #060606;
  margin: 0 0 100px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 15px;
  background-color: #fff;
}

header {
  width: 100%;
  /* height: 70px; */
}
header .header_box {
  /* height: 300px; */
  margin: 0px auto 1px;
  
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  /* background-color: #fff; */
  padding: 10px 0;
}
header .header_box_flex {
  display: flex;
  justify-content: ;
}

header .header_box_flex .logo01 {
  width: 200px;
  margin: 5px 10px 0px;
}
header .header_box_flex .logo01 img {
  width: 100%;
}
header .header_box_flex .header_h1box {
  margin: 20px;
}
/*header .header_box_flex .header_h1box .title {
  font-size: 28px;
}*/
header .header_box_flex .header_h1box h1 {
  font-size: 20px;
}
header .header_box_flex .header_h1box p {
  font-size: 13px;
}

header .header_box .header_right {
  margin: 10px 20px 20px;
  text-align: right;
  font-size: 16px;
  text-shadow: 0 0 5px #fff;
  width: 61%;
}
header .header_box .header_right p.openlast span {
  font-size: 80%;
}
header .header_box .header_right p.tel {
  font-size: 20px;
  font-weight: bold;
  color: #bbad92;
}
header .header_box .header_right p.tel_text {
  font-size: 70%;
}


#header_menu {
  background: linear-gradient(#fcfbfa, #f3ede4);
  margin: 15px 0;
}
#header_menu ul {
  display: flex;
  border: 1px solid #bbad92;
  padding: 5px 0;
  box-shadow: 0 0 0px 1px #fff inset;
  color: ##765c47;
}
#header_menu ul li {
  width: 20%;
  border-right: 1px solid #bbad92;
  border-left: 1px solid #fff;
}
#header_menu ul li a {
  display: block;
  padding: 2px 2px;
  text-align: center;
  font-size: 15px;
}
#header_menu ul li a span {
  display: block;
  font-size: 80%;
}
#header_menu ul li:last-child {
  border-right: none;
}


.topimg {
}
.topimg img {
  display: block;
  width: 100%;
}

/*
.campaign {
  position: relative;
  max-width: 900px;
  height: 300px;
  padding: 50px 0 0 60px;
  margin: 40px auto;
  background-image: url(../../common/img/campaign_bg.jpg);
  border: 5px double #bbad92;
  overflow: hidden;
}
.campaign_inner {
}
.campaign_title {
  font-size: 56px;
  text-shadow: 1px 1px 2px #fff;
  margin: 0 0 20px;
}
.campaign_last {
  font-size: 36px;
  position: absolute;
  right: 10px;
  top: 0;
  color: #fff;
  text-shadow: 1px 1px 2px #333;
}
.campaign_last_bg {
  width: 540px;
  height: 300px;
  transform: rotate( 25deg );
  position: absolute;
  right: -263px;
  top: -180px;
  background: linear-gradient(#fecaf3, #bbad92);
}
.campaign_min {
  font-size: 50px;
}
.campaign span.icon_sankaku {
  transform: rotate( 30deg );
  display: inline-block;
  position: absolute;
  bottom: 56px;
}
.campaign span.campaign_price {
  animation: flash 1s linear infinite;
  font-size: 90px;
  font-weight: bold;
  color: #bbad92;
  position: absolute;
  bottom: 30px;
  left: 260px;
  text-shadow: 1px 1px 1px #fff;
}

@keyframes flash {
  0%,100% { opacity: 1; }
  50% { opacity: 0; }
}
*/

main {
  display: flex;
  /*color: #fff;*/
  justify-content: center;
  max-width: 900px;
  height: 350px;
  /*background-image: url(/common/img/menu_box01.png);*/
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.8)),url(/common/img/menu_box01.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  text-align: left;
  font-family: serif;
  margin: 0 auto 0;
}

main > div {
  margin: auto;
  /*max-width: 600px;*/
  width: 100%;
  /*text-shadow: 1px 1px 2px #555;*/
}

main h1 {
  font-size: 26px;
}

main h2 span {
  color: #BF7497;
}

main p {
  line-height: 1.5;
  font-weight: 200;
  margin: 20px 0;
}

main small {
  font-weight: 300;
  color: #888;
}

main .center {
  /*background-color: rgba(255,255,255,0.8);*/
  padding: 30px;
}
.center_1 {
  font-size: 30px;
  border-bottom: solid 1px;
  margin: 10px 0;
  display: inline-block;
}
.center_2{}

.center_3 {
  /* text-align: left; */
  margin-top: 40px;
  font-size: 28px;
}


#nav-container {
  position: fixed;
  height: 100vh;
  width: 100%;
  pointer-events: none;
  z-index: 999;
}
#nav-container {
  display: none;
}
#nav-container .bg {
  position: absolute;
  top: 70px;
  left: 0;
  width: 100%;
  height: calc(100% - 70px);
  visibility: hidden;
  opacity: 0;
  transition: .3s;
  background: #000;
}
#nav-container:focus-within .bg {
  visibility: visible;
  opacity: .6;
}
#nav-container * {
  visibility: visible;
}

.button {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
  -webkit-appearance: none;
  border: 0;
  background: transparent;
  border-radius: 0;
  height: 70px;
  width: 30px;
  cursor: pointer;
  pointer-events: auto;
  /* margin-left: 25px; */
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  right: 20px;
}
.icon-bar {
  display: block;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: .3s;
}
.icon-bar + .icon-bar {
  margin-top: 5px;
}

#nav-container:focus-within .button {
  pointer-events: none;
}
#nav-container:focus-within .icon-bar:nth-of-type(1) {
  transform: translate3d(0,8px,0) rotate(45deg);
}
#nav-container:focus-within .icon-bar:nth-of-type(2) {
  opacity: 0;
}
#nav-container:focus-within .icon-bar:nth-of-type(3) {
  transform: translate3d(0,-8px,0) rotate(-45deg);
}

#nav-content {
  margin-top: 70px;
  width: 90%;
  max-width: 400px;
  position: absolute;
  top: 0;
  left: 0;
  height: calc(100% - 70px);
  /*background: #f5ce91d9;*/
  background: #fff;
  pointer-events: auto;
  -webkit-tap-highlight-color: rgba(0,0,0,0);
  transform: translateX(-100%);
  transition: transform .3s;
  will-change: transform;
  contain: paint;
}

#nav-content ul {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 25px;
  padding-top: 40px;
  text-align: center;
}

#nav-content li a {
  padding: 15px 0 5px;
  margin: 15px 0 15px;
  display: block;
  text-transform: uppercase;
  transition: color .1s;
  width: 86%;
  color: #ffffff;
}
#nav-content li a span {
  display: block;
  font-size: 80%;
  font-weight: normal;
}

#nav-content li a:hover {
  color: #BF7497;
}

#nav-content li:not(.small) + .small {
  margin-top: auto;
}

.small {
  display: flex;
  align-self: center;
}

.small a {
  font-size: 12px;
  font-weight: 400;
  color: #888;
}
.small a + a {
  margin-left: 15px;
}

#nav-container:focus-within #nav-content {
  transform: none;
}






* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  font-family: serif;
}

a,
a:visited,
a:focus,
a:active,
a:link {
  text-decoration: none;
  outline: 0;
}

a {
  color: currentColor;
  transition: .2s ease-in-out;
}

h1, h2, h3, h4 {
  margin: 0;
}

ul {
  padding: 0;
  list-style: none;
}

img {
  vertical-align: middle;
  height: auto;
  width: 100%;
}

h1{

}


.menu_out {
  color: #555;
  background-color: #fff;
  max-width: 1100px;
  margin: auto;
  padding: 15px;
}

.menu_in{
  max-width: 1200px;
  margin: auto;
}

h3 {
  font-size: 28px;
  color: #581201;
}
h3:first-letter{
  color: #bbad92;
}
h3 .title-right {
  margin: 0 0 0 15px;
  font-size: 60%;
}
/*h3:before, h3:after {
	content: "";
	flex-grow: 1;
	height: 1px;
	display: block;
}
h3:before {
  background: linear-gradient(-90deg, #221100, #fff);
}
h3:after {
  background: linear-gradient(-90deg, #fff, #221100);
}
h3:before {
	margin-right: .4em;
}
h3:after {
	margin-left: .4em;
}*/
.sub_title {
  text-align: center;
  color: #333;
  font-size: 17px;
}

#nav-content .left{
  text-align: center;
  padding: 25px;
  text-align: center;
  padding: 25px;
  color: #ffffff;
  font-weight: 600;
}

#nav-content .left .left_in1{
  font-size: 20px;
}

#nav-content .left .left2_in1{
  position: absolute;
bottom: 60px;
left: 0;
right: 0;
text-align: center;
padding: 20px;
border: solid 1px #000;
margin: auto;
width: 94%;
background: #92bb6d80;
}

.small{
  position: absolute;
  bottom: 0;
  width: 100%;
text-align: center;
}

.menu_box1{
  display: flex;
  font-size: 20px;
  margin: 60px 0 120px;
}

.menu_box2{
  display: flex;
  font-size: 20px;
margin-top: 100px;
padding-bottom: 90px;
}

.menu_box1_left{
  width: 50%;
}

.menu_box1_left1{
  width: 100%;
  text-align: center;
  background: #ffffff;
  font-size: 23px;
  font-weight: 600;
  padding: 10px;
  color: #fff;
}

.menu_box1_left2{
  display:  flex;
}

.menu_box1_left2_left{
  width: 33%;
  display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    text-align: center;
}

.menu_box1_left2_left1{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_left2{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_left3{
  width: 100%;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_center{
  width: 33%;
  display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    text-align: center;
}

.menu_box1_left2_center1{
  width: 100%;
  padding-top: 25px;
}

.menu_box1_left2_center2{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_center3{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_center4{
  width: 100%;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_right{
  width: 33%;
  display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    text-align: center;
}

.menu_box1_left2_right1{
  width: 100%;
  padding-top: 25px;
}

.menu_box1_left2_right2{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_right3{
  width: 100%;
  border-top: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_left2_right4{
  width: 100%;
  border-top: solid 1px;
  border-bottom: solid 1px;
  padding: 15px 0px 10px;
}

.menu_box1_right{
  display: flex;
align-items: center;
  width: 50%;
  margin-left: 50px;
}

.menu_box1_right img{
  width: 100%;
}

.opt{
      border: solid 1px #ffffff;
width: 20%;
margin: auto;
text-align: center;
padding: 7px;
font-size: 30px;
}

.optn{
  text-align: center;
  margin-top: 40px;
  font-size: 25px;
      color: #bda67f;
          background-color: rgba(255,255,255,0.1);
          padding: 13px;
}

.opt1{
  display: flex;
  flex-wrap: wrap;
  text-align: center;
  padding-bottom: 100px;
}

.opt1_1{
  width: 50%;
    padding-bottom: 14px;
    padding-top: 20px;
}
.opt1_2{
  width: 50%;
    padding-bottom: 14px;
    padding-top: 20px;
}
.opt1_3{
  width: 50%;
      background-color: rgba(255,255,255,0.1);
      padding-top: 21px;
    padding-bottom: 14px;
}
.opt1_4{
  width: 50%;
      background-color: rgba(255,255,255,0.1);
      padding-top: 21px;
    padding-bottom: 14px;
}
.opt1_5{
  width: 50%;
  padding-top: 21px;
    padding-bottom: 14px;
}

.opt1_6{
  width: 50%;
  padding-top: 21px;
    padding-bottom: 14px;
}


.system_area {
  margin: 0 0 80px;
}
.system_box {
  padding: 30px;
  background: repeating-linear-gradient(0deg,#f9f6f2 0,#f9f6f2 5px,#bbad92 20px,#bbad92 20px);
  margin: 10px;
}
.system_box .system_box_inner {
  margin: auto;
  padding: 30px;
  background-color: rgba(255,255,255,0.9);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.system_box .system_box_inner .system_box_left {
  width: 40%;
}
.system_box .system_box_inner .system_box_right {
  width: 60%;
}
.system_box .system_box_inner .system_box_left p {
  text-align: center;
  margin: 30px 0;
}
.system_box .system_box_inner .system_box_right p {
  text-align: center;
  margin: 17px 0;
}
.system_box .system_box_inner .system_box_left p span {
  display: inline-block;
  padding: 2px 0;
  font-size: 20px;
  background-color: #bbad92;
  border: 1px solid #bbad92;
  box-shadow: 0 0 0px 1px #fff inset;
  width: 130px;
  color: #fff;
  border-radius: 40px;
}
.system_box .system_box_inner .system_box_right p span {
  display: inline-block;
  font-size: 34px;
  /*color: #bbad92;*/
}






.course {
  max-width: 1000px;
  margin: 0 auto;
}
.course ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 40px 0 100px;
}
.course ul li {
  width: 30%;
  background-color: #333;
  padding: 10px;
  color: #fff;
  text-align: center;
}
.course ul li .course_title {
  /*display: inline-block;*/
  /*border-bottom: 1px solid #dabe3b;*/
  font-weight: bold;
  font-size: 28px;
  color: #dabe3b;
  background: -webkit-linear-gradient(top, #dabe3b 0%, #fff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.course ul li .title_bottom_line{
  height: 2px;
  background: linear-gradient(-90deg, #333, #fff, #c2a44a, #fff, #333);
  margin: 5px 10px 5px;
}
.course ul li .course_subtitle {
  font-size: 80%;
  margin: 0 0 15px;
}
.course ul li .course_min {
  /*font-size: 80%;*/
  margin: 0 0 15px;
  color: #dabe3b;
}
.course ul li .course_text {
  margin: 15px 0;
}



.corona{
  /*background: linear-gradient(#907e3e, #786427);*/
  background-color: #fdf8e6;
  padding: 70px;
  margin: 0 0 100px;
}
.corona .corona_box {
  background-color: #fff;
  padding: 20px;
  /*box-shadow: 0px 1px 5px #333;*/
  max-width: 800px;
  margin: 0 auto;
}
.corona .corona_box .corona_box_inner {
  padding: 30px;
  border: 3px double #bbad92;
  /* background: url(../../common/img/bg.png); */
}
.corona .corona_box .corona_box_inner .corona_title {
  color: #bbad92;
  font-weight: bold;
  font-size: 30px;
  margin: 0 0 10px;
}
.corona .corona_box .corona_box_inner p {
  color: #555;
}


.ac_out{
  margin-top: 60px;
  padding: 100px 0;/*
  background: linear-gradient(rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.6)),url(/common/img/bg_02.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;*/
  /*background-color: #bbad92;*/
}

.ac {
  width: 80%;
  margin: auto;
  font-size: 25px;
  /* display: flex; */
  /* flex-wrap: wrap; */
  
  
}


.card_box {
  /*background: #fff;*/
  text-align: center;
  padding: 20px;
  /* border: 10px solid #bbb; */
  /*box-shadow: 0 0 1px 0px #999;*/
  margin: auto;
}
.card_box .card_title {
  display: inline-block;
  border-bottom: 1px solid #bbad92;
  font-size: 30px;
  margin: 0 0 10px;
}
.card_box .card_title:first-letter{
  color: #bbad92;
}
.card_box p {
  margin: 0 0 50px;
}
.card_box img {
  width: 40%;
  border: 1px solid;
}



.ac_2{
  width: 30%;
  display: flex;
    align-items: center;
    justify-content: center;
        background: #54545459;
            border: solid 1px #777;
                margin-left: 20px;
   border-radius: 15px;
}

.ac_2 a {
  background: #ffffff80;
  padding: 30px 70px;
  color: #fff;
  border: 1px solid #fff;
}

.ac_2_1{
  width: 100%;
  text-align: center;
  /*color: #ffffff;*/
  margin: 30px 0 0;
}

.ac_2_1 strong {
  font-size: 50px;
  color:#967342;
  text-align: center;;
  margin: 0px 0 0;
  display: block;
  /* text-shadow: 2px 2px 0px #fff; */
  background-color: #fff;
}

.ac2_2{
  width: 80%;
  margin: auto;
}

.ac2_2 .shop_title {
  background-color: #fff;
  padding: 10px;
  text-align: center;
  margin: 30px 0 0;
  color: #555;
}
.ac2_2 .shop_title span {
  display: block;
  font-size: 14px;
}


footer {
  background-color: #e0cfb1;
  padding: 30px;
}


.footer_access_box {
  max-width: 900px;
  margin: 3px auto 50px;
  color: #fff;
}
.footer_access_box #access {
  /* background-color: #555; */
  padding: 0px 10px;
  font-size: 24px;
  font-weight: bold;
  border-left: 10px solid #fff;
  margin: 0 0 3px;
}
.footer_access_box iframe {
  display: block;
}
.footer_access_box p {
  background-color: #f9f9f9;
  padding: 5px 10px;
  font-size: 14px;
  color: #333;
  margin: 1px 0 0;
}

.footer_logo_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 800px;
  margin: 50px auto 50px;
  color: #000;
}

.footer_logo_box .footer_logo {
  width: 40%;
  margin: 10px 0;
  box-sizing: border-box;
}
.footer_logo_box .footer_logo img {
  width: 100%;
  display: block;
}
.footer_logo_box .footer_right {
  width: 48%;
  font-size: 23px;
  margin: 10px 20px 20px;
}
.footer_logo_box .footer_right p.openlast span {
  font-size: 80%;
}
.footer_logo_box .footer_right p.tel {
  font-weight: bold;
  color: #967342;
  text-align: center;;
  font-size: 38px;
}
.footer_logo_box .footer_right p.tel_text {
  font-size: 80%;
}



.footer{
  max-width: 1200px;
  margin: auto;
  color: #555;
}

ul.footer_1{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

ul.footer_1 li{
  width: 15%;
  text-align: center;
}

ul.footer_1 li a {
  display: block;
  padding: 10px 0 10px;
  margin: 0 1px 20px;
  color: #000;
  /* border-bottom: 1px solid #ffffff; */
  font-weight: bold;
  /* box-shadow: 0 0 5px 1px #666 inset; */
  /* border-radius: 5px; */
}
ul.footer_1 li a::before {
  content: '≫';
  background-color: #bbad92;
  color: #fff;
  padding: 1px 2px 2px 3px;
  margin: 0 5px 0 0px;
}
ul.footer_1 li a span{
  display: none;
}

.footer_2{
  padding: 15px;
  text-align: center;
  color: #fff;
}

iframe{
  width: 100%;
}


.footer_bottombox {
  background-color: #c2ad96;
  margin: 40px 0 0px;
  padding: 20px;
  color: #fff;
}


#spContactBtnArea {
  display: none;
}


.content_box01 {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  margin: 20px 0 100px;
  /* border: 4px double; */
  border: 15px solid #f9f9f9;
  box-shadow: 0 0 0px 5px #eee inset;
}
.content_box01 h4 {
  font-size: 24px;
}
.content_box01 p {
  font-size: 20px;
  color: #999;
}


/*注意事項/禁止事項*/
.bottom_box {
  max-width: 900px;
  margin: 100px auto;
}
.bottom_box p.sub_title {
  margin: 10px;
  text-align: left;
}


.box_0001 {
  background: repeating-linear-gradient(0deg,#ffffff 0,#ffffff 5px,#ffffff 20px,#ffffff 20px);
  padding: 20px;
  /* text-align: center; */
  margin: 30px 0 50px;
  border: 2px solid #bbad92;
  /* border: 6px solid #555; */
  /* box-shadow: 0 0 5px 2px #bbad92 inset; */
}
.box_0001 .box_0001_inner {
  box-sizing: border-box;
  padding: 1px 20px 20px;
  background-color: rgba(255,255,255,0.95);
}
.box_0001_subtitle {
  font-weight: bold;
  margin: 20px 0 7px;
}
.box_0001 ul {
  padding: 0 0 0 20px;
}
.box_0001 ul li {
  box-sizing: border-box;
  padding: 0.5em;
  font-size: 12px;
  color: #333;
  list-style: disc;
}
.box_0001_bottomtext {
  margin: 15px 0 0;
  font-size: 14px;
}


/*LINE*/
.simple_box {
}
.simple_box_inner {
  max-width: 1200px;
  margin: 100px auto;
}
.simple_box p.sub_title {
  margin: 10px;
  text-align: center;
}

.lineAreaWrap {
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}
.lineAreaWrap figure {
  width: 30%;
}
.lineAreaWrap figure img {
  display: block;
  width: 100%;
}
.lineAreaWrap .textArea {
  width: 65%;
}
.lineAreaWrap p {
  color: #fff;
  font-size: 20px;
}


/*ワクチンアイコン_説明*/
.icon_wakuchin_setsumei {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: center;
  justify-content: center;
  background-color: #fff;
  padding: 20px;
  border: 15px solid #f9f9f9;
  box-shadow: 0 0 0px 5px #eee inset;
  margin: 20px auto 100px;
  max-width: 900px;
}
.icon_wakuchin_setsumei img.icon_wakuchin {
  display: block;
  width: 80px;
  height: 80px;
}
.icon_wakuchin_setsumei p {
  color: #555;
  margin: 25px 0 0 10px;
  font-weight: bold;
}


/* システム価格表画像 */
img.system_img {
  display: block;
  width: 80%;
  margin: 20px auto;
}

/* システム価格表部分 */
.system_area_inner {
  padding: 30px;
  background: repeating-linear-gradient(0deg,#f9f6f2 0,#f9f6f2 5px,#bbad92 20px,#bbad92 20px);
  margin: 10px;
}
.system_box_area {
  /*border-bottom: 1px solid #ddd;*/
  box-shadow: 0px 0px 2px 0px #ddd;
  background-color: rgba(255,255,255,0.9);
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  font-weight: bold;
  /*text-align: center;*/
  padding: 10px 20px;
  margin: 10px 0;
}
.system_box_area h3.page_title {
  font-size: 24px;
  font-weight: bold;
}
.system_box_01 .system_box_01_inner span {
  display: inline-block;
  margin-left: 20px; 
}
span.s80-text {
  font-size: 60%;
} 

.system_box_02 ul.systemList {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 20px;
}
.system_box_02 ul.systemList li {
  width: 33.3%;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-end;
}
.system_box_02 ul.systemList li div {
  width: 100%;
  text-align: center;
  padding: 10px 2px;
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 28px;
  font-weight: bold;
}

.system_box_03 .systemList_03 {
  box-sizing: border-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 20px;
  padding: 0;
}
.system_box_03 .systemList_03 li {
  box-sizing: border-box;
  width: 24%;
  background: linear-gradient(#feb228, #ff8400);
  color: #fff;
  font-size: 120%;
  font-weight: bold;
  padding: 10px;
  text-align: center;
  box-shadow: 0 0 2px 1px #fff inset;
  border: 1px solid #ff8400;
}
.system_box_03 ul.systemList_04 {
  margin: 10px 0 20px;
  border-left: 10px solid;
  padding: 0;
}
.system_box_03 ul.systemList_04 li {
  padding: 5px 10px;
}
.system_box_03 ul.systemList_04 li span {
  display: inline-block;
  width: 110px;
}

