@charset "utf-8";
/* CSS Document */

@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Gothic&display=swap');


html {
    padding: 0;
    margin: 0;
	
}


body {
    font-family: 'Sawarabi Gothic', sans-serif;
	width: 100%;
    background-color: #eee;
    margin: 0;
    padding: 0;
    background-image: url("../img/back_g.svg");
    background-attachment: fixed;
	background-size:1920px;
	background-position:center;
	
}




html::-webkit-scrollbar {
    width: 16px; }

html::-webkit-scrollbar-thumb {
    background: #000;
    border: 1px solid ccc;
    border-right: none; }

html::-webkit-scrollbar-track {
    background: transparent; }

html {
    overflow: overlay; }

a {
     text-decoration: none;	
}

a:hover {
	 text-decoration: none;
}

.breadcrumb_area {
    width: 100%;
}


.breadcrumb {
    margin-top: 5px;
    margin-bottom: 5px;
    padding-top: 0.5em;
    padding-right: 1em;
    padding-left: 1em;
    padding-bottom: 0.5em;
    list-style: none;
    overflow: hidden;
    background-color: rgba(229,229,229,1.00);
}

.breadcrumb li {
  display: inline;/*横に並ぶように*/
  list-style: none;
}

.breadcrumb li:after {
    /* >を表示*/
    font-family: FontAwesome;
    content: '\f0da';
    padding: 0 0.2em;
    color: #808080;
}

.breadcrumb li:last-child:after {
  content: '';
}

.breadcrumb li a {
    text-decoration: none;
    color: #808080;
    font-size: 12px;
	
}

.breadcrumb li:first-child a:before {/*家アイコンに*/
    font-family: FontAwesome;
    content: '\f015';
    font-weight: normal;
    font-size: 1.1em;
    color: #808080;
}

.breadcrumb li a:hover {
  text-decoration: underline;
}


.slider{
  opacity: 0;
  transition: opacity .3s linear;
}
.slider.slick-initialized{
  opacity: 1;
}



.text_fr:first-letter {
    font-size: 3em;
    line-height: 1;
    float: left;
    margin: 0 .2em 0 0;
    padding: .1em 0;
    color: rgba(255,0,4,1.00);
}

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

/* contents */
.contents {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    width:100%;
    padding-top: 6em;
    padding-bottom: 3em;
    background-color: rgba(229,229,229,1.00);
    box-shadow: 0 0 50px 0 rgba(0,0,0,.8);
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    background-image: url(../img/back_top.jpg);
	
}

.contents_main {
	
	max-width: 768px;
	margin-left: auto;
	margin-right: auto;
	
}

.contents__inner {
    display: flex;
    flex-direction: column;
	justify-content: center;
	align-items: center;
}

.contents__inner h1 img {

  width: 700px;
    
	
}

.contents__inner h2 {
    color: rgba(255,255,255,1.00);
    font-size: 28px;
}

.slick_area {
    overflow-x: hidden;
    margin-left: auto;
    margin-right: auto;
    max-width: 768px;

}


.news .heading {
    overflow: hidden;
    align-items: center;
    background-color: #EC3C3C;
    color: #fff;
    height: 40px;
    line-height: 40px;
    display: flex;
    margin-top: 15px;
    font-size: 18px;
}
.news .heading:before,
.news .heading:after {
  content: "";
  flex: 1;
  background: #fff;
  padding: 3px 0;
  height: 0;
  transform: rotate(45deg);
  }

.news_text {
	width: 80%;
    padding: 0.5em;
    text-align: center;
	
}

.contents_news {
    display: flex;
    align-items: center;
    padding: 5px;
    flex-flow: row wrap;
}

.news_img {
	width: 20%;
}

 .news_h3{
	color: #ffffff;
	font-size: 16px;
	line-height: 20px;
	padding: 10px;
	background: repeating-linear-gradient(45deg, #4f4f4f, #4f4f4f 10px, #000000 10px, #000000 20px);
}



/* drawer menu */
.drawer-menu {
    box-sizing: border-box;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    padding: 120px 0;
    background: #222;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .5s;
    transition-duration: .5s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform-origin: right center;
    -ms-transform-origin: right center;
    transform-origin: right center;
    -webkit-transform: perspective(500px) rotateY(-90deg);
    transform: perspective(500px) rotateY(-90deg);
    opacity: 0;
}

.drawer-menu li {
    text-align: center;
}

.drawer-menu li a {
    display: block;
    height: 50px;
    line-height: 50px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all .8s;
    transition: all .8s;
}

.drawer-menu li a:hover {
    color: #1a1e24;
    background: #fff;
}

/* checkbox */
.check {
    display: none;
}

/* menu button - label tag */
.menu-btn {
    position: fixed;
    display: block;
    top: 5%;
    right: 5%;
    display: block;
    width: 60px;
    height: 55px;
    font-size: 10px;
    text-align: center;
    cursor: pointer;
    z-index: 2500;
    background-color: rgba(27,27,27,0.75);
}

.bar {
    position: absolute;
    top: 5;
    left: 5;
    display: block;
    width: 40px;
    height: 1px;
    background-color: #FFFFFF;
    -webkit-transition: all .5s;
    transition: all .5s;
    -webkit-transform-origin: left top;
    -ms-transform-origin: left top;
    transform-origin: left top;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 10px;
}

.bar.middle {
    top: 15px;
    opacity: 1;
}

.bar.bottom {
    top: 30px;
    -webkit-transform-origin: left bottom;
    -ms-transform-origin: left bottom;
    transform-origin: left bottom;
}

.menu-btn__text {
    position: absolute;
    bottom: -15px;
    left: 0;
    right: 0;
    margin: auto;
    color: #FFFFFF;
    -webkit-transition: all .5s;
    transition: all .5s;
    display: block;
    visibility: visible;
    opacity: 1;
    background-color: rgba(27,27,27,0.75);
}

.menu-btn:hover .bar {
    background: #999;
}

.menu-btn:hover .menu-btn__text {
    color: #999;
}

.close-menu {
    position: fixed;
    top: 0;
    right: 300px;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0);
    cursor: url("../img/cross.svg"),auto;
    -webkit-transition-property: all;
    transition-property: all;
    -webkit-transition-duration: .3s;
    transition-duration: .3s;
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    visibility: hidden;
    opacity: 0;
}

/* checked */
.check:checked ~ .drawer-menu {
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    opacity: 1;
    z-index: 2;
}

.check:checked ~ .contents {
    -webkit-transition-delay: 0s;
    transition-delay: 0s;
    -webkit-transform: translateX(-300px);
    -ms-transform: translateX(-300px);
    transform: translateX(-300px);
}

.check:checked ~ .menu-btn .menu-btn__text {
    visibility: hidden;
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.top {
    width: 56px;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.check:checked ~ .menu-btn .bar.middle {
    opacity: 0;
}

.check:checked ~ .menu-btn .bar.bottom {
    width: 56px;
    top: 40px;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.check:checked ~ .close-menu {
    -webkit-transition-duration: 1s;
    transition-duration: 1s;
    -webkit-transition-delay: .3s;
    transition-delay: .3s;
    background: rgba(0,0,0,.5);
    visibility: visible;
    opacity: 1;
    z-index: 3;
}


/*カード*/

.card_area {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
}

.card {
    display: flex;
    flex-direction: column;
    width: 380px;
    overflow: hidden;
    margin-top: 10px;
    margin-bottom: 10px;
    box-sizing: border-box;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 0px;
	box-shadow:2px 3px 3px -1px #848484;
}

.card:hover {
   box-shadow:2px 3px 3px -1px #0c0b08;
}

.card_img {
    box-sizing: border-box;
    overflow: hidden;
	flex-grow: 0;
}

.card_title {
    padding: 0.5em;
    box-sizing: border-box;
    border-bottom: thin solid rgba(208,208,208,1.00);
    border-top: thin solid rgba(209,209,209,1.00);
    flex-grow: 0;
    background-color: rgba(209,137,32,1.00);
}

.card_title h3 {
    padding: 0;
    margin: 0;
    font-size: 18px;
    text-align: center;
    font-style: italic;
    color: rgba(255,255,255,1.00);
	
}

.card_text {
    padding: 1em;
    border-bottom: thin solid rgba(217,217,217,1.00);
    box-sizing: border-box;
    line-height: 1.8em;
    flex-grow: 2;
    background-color: rgba(216,216,216,1.00);
    box-sizing: border-box;
}

.card_text p {
	
}

.btn_area {
	flex-grow: 0;
}

/*カードのボタン*/

.card_btn {
    display: inline-block;
    width: 100%;
    text-align: center;
    background-color: #F5F5F5;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 24px;
    position: relative;
    font-style: italic;
}

.card_btn span {
  position: relative;
  z-index: 1;
}

.card_btn::before,
.card_btn::after {
    content: "";
    display: block;
    background-color: #D50003;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: .2s;
}
.card_btn::before {
  left: 0;
}
.card_btn::after {
  right: 0;
}

.card_btn:hover:before,
.card_btn:hover:after {
  width: 0;
  background-color: #FFF;
}

.card_btn:hover {
    color: #474747;
    font-style: italic;
}

.icon_main {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(248,248,248,1.00);
    padding-left: 1em;
    padding-right: 1em;
}


.icon_area {
    padding-top: 2em;
    padding-bottom: 2em;
	background-color: rgba(248,248,248,1.00);
}
.icon_text {
	width: 200px;
	text-align: center;
}

.icon_text h3 {
    font-size: 14px;
    font-weight: bolder;

}

.bana_area {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(248,248,248,1.00);
    margin-bottom: 2em;
}




/*フッターバナー*/

#bottom_bnr {
  z-index: 10;
  position: fixed;
  bottom: 0;
  width: 100%
}

#bottom_bnr label {
  display: block;
  z-index: 9002;
  position: fixed;
  bottom: 24px;
  left: 1%;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(0, 0, 0, .3);
  box-shadow: 1px 1px 3px 0 rgba(0, 0, 0, .3);
  text-align: center;
  cursor: pointer;
  transition: .3s
}

#bottom_bnr label:hover {
  background: rgba(0, 0, 0, .8);
  transition: 0s
}

#bottom_bnr input:checked+label::before {
  -webkit-transform: rotate(0);
  transform: rotate(0);
  transition: .5s
}

#bottom_bnr input:checked+label::after {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: .5s
}

#bottom_bnr label::after,
#bottom_bnr label::before {
  -webkit-transform: rotate(-45deg);
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 24px;
  margin-top: -12px;
  margin-left: -1px;
  transform: rotate(-45deg);
  border-radius: 10px;
  background-color: #fff;
  content: '';
  transition: .5s
}

#bottom_bnr label::after {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg)
}

#bottom_bnr div {
  background: rgba(0, 0, 0, .1);
}



#bottom_bnr div  {
 display: flex;
 flex-flow: row wrap;
 justify-content: center;
}

#toggle {
  display: none
}

#toggle:not(:checked)~div {
  transition: .5s
}

#toggle:checked~div {
  -webkit-transform: translateY(80px);
  transform: translateY(100px);
  transition: .5s
}


.btn-animation-02 {
    display: inline-block;
    width: 280px;
    text-align: center;
    background-color: rgba(255,255,255,1.00);
    border: 2px solid #FFFFFF;
    font-size: 12px;
    color: rgba(255,255,255,1.00);
    text-decoration: none;
    font-weight: bold;
    padding: 10px 24px;
    border-radius: 1px;
    position: relative;
    margin-top: 0.5em;
    margin-bottom: 0.5em;
    margin-left: 0.5em;
    margin-right: 0.5em;
}

.btn-animation-02 span {
  position: relative;
  z-index: 1;
}

.btn-animation-02::before,
.btn-animation-02::after {
    content: "";
    display: block;
    background-color: rgba(223,26,26,1.00);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: .2s;
}
.btn-animation-02::before {
  left: 0;
}
.btn-animation-02::after {
  right: 0;
}

.btn-animation-02:hover:before,
.btn-animation-02:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-animation-02:hover {
    color: rgba(241,19,23,1.00);
}


.btn-animation-03 {
    display: inline-block;
    width: 380px;
    text-align: center;
    background-color: rgba(255,255,255,1.00);
    border: 2px solid #FFFFFF;
    font-size: 14px;
    color: rgba(255,255,255,1.00);
    text-decoration: none;
    font-weight: bold;
    padding: 20px 24px;
    border-radius: 1px;
    position: relative;
    margin-top: 0.3em;
    margin-bottom: 1em;
    text-align: center;
}

.btn-animation-03 span {
  position: relative;
  z-index: 1;
}

.btn-animation-03::before,
.btn-animation-03::after {
    content: "";
    display: block;
    background-color: rgba(26,97,223,1.00);
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    transition: .2s;
}
.btn-animation-03::before {
  left: 0;
}
.btn-animation-03::after {
  right: 0;
}

.btn-animation-03:hover:before,
.btn-animation-03:hover:after {
  width: 0;
  background-color: #FFF;
}

.btn-animation-03:hover {
    color: rgba(52,107,235,1.00);
}

.twitter_line {
    padding: 3em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    background-color: rgba(58,58,58,1.00);
}

.twitter_title {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 10px;
}

.twitter_line h2 {
    color: rgba(255,255,255,1.00);
    margin: 0;
    font-size: 26px;
    padding-bottom: 0.3em;
}
.twitter_btn {
    margin-left: 1em;
    
}

.footer_2 {
    background-color: rgba(135,135,135,0.83);
    margin-top: 1em;
   width: 100%;
   
    margin-left: auto;
    margin-right: auto;
}

footer {
    background-color: rgba(23,23,23,0.52);
    margin-top: 1em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    height: 300px;
	
}

footer h3 {
    color: rgba(255,255,255,1.00);
    text-align: center;
    padding-top: 100px;
	
}

.contents_area {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    max-width: 768px;
    margin-top: 10px;
    padding-bottom: 10px;
}

.contents_area_slick {
    margin-left: auto;
    margin-right: auto;
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: -20px;
    max-width: 100%;
    
}



.contents_text {
    padding: 1em;
    line-height: 2em;


   
}

.contents_text h2 {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-style: italic;
    font-weight: normal;
    font-size: 22px;
    color: rgba(235,108,22,1.00);
}

.contents_text h3 {
    padding: .5em .75em;
    background-color: #F7773D;
    border: 1px solid #eee;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, .5) inset;
    font-style: italic;
    font-weight: normal;
    font-size: 16px;
    color: rgba(255,255,255,1.00);
}

.contents_text h4 {
    padding: .5em .75em;
    background-color: #F52A50;
    font-style: italic;
    color: rgba(255,255,255,1.00);
}

.contents_area_img {
	display: flex;
	flex-flow: row wrap;
	justify-content: space-around;
}

.contents_area_oneimg img {
	height: auto;
}

.contents_area_s_img {
	padding: 0.3em;
}

.area_img_inner {
    padding: 0.3em;
    width: 360px;
	margin-left: auto;
	margin-right: auto;
}

    figure {
	position: relative;
	display: inline-block;
}
	

    figure img {
		max-width: 100%;
		vertical-align: top;
    }

	figure figcaption {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 5px 5px;
    font-size: 86%;
    color: #fff;
    background-color: rgba(51,51,51,0.64);
    width: 100%;
	}

figure figcaption h2 {
    padding: 0;
    margin: 0;
    font-style: italic;
    text-align: center;
	
}

.area_img_asutomo {
    padding: 1px;
    width: 185px;
}

.contents_text table {
    border: thin solid rgba(189,189,189,1.00);
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.contents_text table th ,td {
    padding-right: 1em;
    padding-left: 1em;
    border: thin solid rgba(120,120,120,1.00);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.contents_text table th {
    background-color: rgba(204,204,204,1.00);
    color: rgba(50,50,50,1.00);
}

.google_sv {
height: 0;
overflow: hidden;
padding-bottom: 56.25%;
position: relative;
}
.google_sv iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

input[type="button"] {
    display: block;
    position: relative;
    width: 160px;
    padding: 0.8em;
    text-align: center;
    text-decoration: none;
    color: #1B1B1B;
    background: #fff;
    margin: 3px;
    border: 1px solid #1B1B1B;
	transition: 0.4s ease-in-out;
}

input[type="button"]:hover {
	background: #1B1B1B;
         color: #fff;
	 cursor: pointer;
	 text-decoration: none;
}

input[type="submit"] {
	display: block;
	position: relative;
	width: 160px;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #1B1B1B;
	background: #fff;
	border:1px solid #1B1B1B;
	margin: 10px;
	transition: 0.4s ease-in-out;
}

input[type="submit"]:hover {
	background: #1B1B1B;
         color: #fff;
	 cursor: pointer;
	 text-decoration: none;
}

.submit_btn {
	display: block;
	position: relative;
	width: 100%;
	padding: 0.8em;
	text-align: center;
	text-decoration: none;
	color: #1B1B1B;
	background: #fff;
	border:1px solid #1B1B1B;
	transition: 0.4s ease-in-out;
}

.submit_btn:hover {
		background: #1B1B1B;
         color: #fff;
	 cursor: pointer;
	 text-decoration: none;
}



.formTable {
	width: 98%;
	margin-left: auto;
	margin-right: auto;
	border-collapse: collapse;
}

.formTable th {
	width: 30%;
	background-color: rgba(204,204,204,1.00);
}



.formTable th ,td{
    padding-right: 1em;
    padding-left: 1em;
    border: thin solid rgba(187,187,187,1.00);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.kakunin {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    border-top: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    font-style: italic;
    font-weight: normal;
    font-size: 22px;
    color: rgba(235,108,22,1.00);
    margin-left: 1%;
}

.training_4 {
    background: -webkit-linear-gradient(90deg, rgb(191, 172, 11), rgb(255, 253, 112));
    background: linear-gradient(90deg, rgb(191, 172, 11), rgb(255, 253, 112));
    font-size: 24px;
    font-style: normal;
}

#page_top {
    width: 100%;
    background-color: rgba(59,59,59,0.68);
    color: rgba(255,255,255,1.00);
    font-size: 36px;
    text-align: center;
    margin-top: 10px;
    margin-bottom: 10px;
}
#page_top a {
    
    color: #fff;
    text-align: center;
    text-decoration: none;
    
}
#page_top a:hover {
    text-decoration: none;
    color: rgba(255,134,0,1.00);
}



/* ローディングの背景部分のCSS */
.loader{
    background-color: rgba(123,190,253,1.00);
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50000;
}
 
/* ローディングのアニメーション部分のCSS (https://projects.lukehaas.me/css-loaders/) */
.loader-animation,
.loader-animation:before,
.loader-animation:after {
  background:#ffffff;
  -webkit-animation:load1 1s infinite ease-in-out;
  animation:load1 1s infinite ease-in-out;
  width:1em;
  height:4em;
}
.loader-animation {
  height:10px;
  left:50%;
  margin:-5px 0 0 -5px;
  position:absolute;
  top:50%;
  width:10px;
  color:#ffffff;
  text-indent:-9999em;
  font-size:10px;
  -webkit-transform:translateZ(0);
  -ms-transform:translateZ(0);
  transform:translateZ(0);
  -webkit-animation-delay:-0.16s;
  animation-delay:-0.16s;
}
.loader-animation:before,
.loader-animation:after {
  position:absolute;
  top:0;
  content:'';
}
.loader-animation:before {
  left:-1.5em;
  -webkit-animation-delay:-0.32s;
  animation-delay:-0.32s;
}
.loader-animation:after {
  left:1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow:0 0;
    height:4em;
  }
  40% {
    box-shadow:0 -2em;
    height:5em;
  }
}


@keyframes ticker {/*アニメーション設定。右から左に流す、を繰り返す*/
  0% {
    transform: translate(0, 0);
    visibility: visible;
  }
  100% {
    transform: translate(-100%, 0);
  }
}
.ticker-wrap {/*ティッカーを包括している親要素*/
    bottom: 0;
    width: 0px;
    overflow: hidden;
    height: auto;
    background-color: rgba(0, 0, 0, 0.9);
    padding-left: 100%;
    box-sizing: content-box;
    padding-bottom: 20px;
}
.ticker-wrap .ticker {/*ティッカー本体*/
    display: inline-block;
    height: 2rem;
    line-height: 2rem;
    white-space: nowrap;
    padding-right: 100%;
    box-sizing: content-box;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 30s;
}
.ticker-wrap .ticker__item {/*個別設定*/
    display: inline-block;
    padding-right: 2rem;
    padding-left: 2rem;
    font-size: 2rem;
    color: white;
    padding-top: 20px;
    padding-bottom: 20px;
}
 
.ticker-wrap:hover .ticker{/*本体にマウスホバーしたらアニメーションを一時停止*/
  animation-play-state: paused;
}

.b_menu {
    display: flex;
    flex-flow: row wrap;
	justify-content: space-between;
	width: 100%;
    
}

.b_menu_inner {
    display: flex;
    flex-flow: column wrap;
    width: 380px;
    border-top: thin solid rgba(123,123,123,1.00);
    padding-top: 5px;
    padding-right: 5px;
    padding-left: 5px;
    border-bottom: thin solid rgba(110,110,110,1.00);
    justify-content: space-around;
    padding-bottom: 25px;
}

.b_menu_inner h3 {
    padding: .5em .75em;
    background-color: #ED7F34;
    border: 1px solid #eee;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, .5) inset;
    color: rgba(255,255,255,1.00);
    font-style: italic;
    font-size: 18px;
    text-align: center;
}

.b_menu_inner_text {
    padding-left: 10px;
    padding-right: 10px;
}

.b_menu_inner_h h3 {
	 padding: .5em .75em;
    
    border: 1px solid #eee;
    box-shadow: 1px 1px 0 rgba(255, 255, 255, .5) inset;
    color: rgba(255,255,255,1.00);
    font-style: italic;
    font-size: 18px;
    text-align: center;

background: rgb(37,141,200); /* Old browsers */
background: -moz-linear-gradient(top,  rgba(37,141,200,1) 0%, rgba(37,141,200,1) 100%); /* FF3.6-15 */
background: -webkit-linear-gradient(top,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* Chrome10-25,Safari5.1-6 */
background: linear-gradient(to bottom,  rgba(37,141,200,1) 0%,rgba(37,141,200,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#258dc8', endColorstr='#258dc8',GradientType=0 ); /* IE6-9 */

}
figcaption p {
    text-align: center;
    color: rgba(255,255,255,1.00);
    margin: 0;
    font-size: 12pt;
    padding-top: 0.5em;
    padding-bottom: 0.5em;
}

.b_menu_inner_h {
    display: flex;
    flex-flow: column wrap;
    width: 50%;
    border-top: thin solid rgba(123,123,123,1.00);
    padding-top: 25px;
    padding-right: 5px;
    padding-left: 5px;
    border-bottom: thin solid rgba(110,110,110,1.00);
    justify-content: space-around;
    padding-bottom: 25px;
}
	 
.pro {
    padding: 10px;
}

.pro h3 {
	padding-bottom: .5em;
  border-bottom: 1px solid #ccc;
}