@charset "UTF-8";
html {
  overflow-y: scroll;
}

html, body {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font-family: '游ゴシック体', 'Yu Gothic', 'YuGothic',sans-serif;
  vertical-align: baseline;
  background: transparent;
}

*, *:before, *:after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

body {
  line-height: 1;
}

em, strong {
  font-style: normal;
  font-weight: normal;
}

a {
  font-size: 100%;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
}

img {
  max-width: 100%;
  height: auto;
  width: auto;
  border: none;
}

ul, ol, dl, li, dt, dd {
  margin: 0;
  padding: 0;
}

ul {
  list-style-type: none;
}

header, footer, nav, section, article, aside, hgroup, figure, div, p {
  display: block;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

.clearfix::after {
  content: " ";
  display: block;
  clear: both;
}

header {
  width: 100%;
  -webkit-box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.3);
  background: #fff;
  z-index: 20;
}

header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 10px 0;
}

header .inner .logoBox {
  width: 230px;
}

header .inner button {
  border: none;
  padding: 15px 20px;
  background: #ccc;
}

header .inner button:hover {
  background: #ddd;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
}

.navOpener {
  display: none;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

nav ul li {
  margin: 0 20px;
}

nav ul li.nav_close {
  display: none;
}

nav ul li a {
  display: block;
  padding: 5px 10px;
  color: inherit;
}

nav ul li a::after {
  border-bottom: 2px solid #ccc;
  bottom: 10px;
  content: "";
  display: block;
  width: 0;
  padding-bottom: 5px;
}

nav ul li a:hover::after {
  width: 100%;
  -webkit-transition-duration: 500ms;
          transition-duration: 500ms;
}

footer {
  width: 100%;
  border-top: solid 1px #ccc;
  background: #fff;
}

footer .inner {
  max-width: 1200px;
  width: 100%;
  margin: auto;
  padding: 50px 0;
}

footer .copyright {
  text-align: center;
  font-size: 12px;
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 77%;
  z-index: 30;
}

#page-top a {
  background: #666;
  text-decoration: none;
  color: #fff;
  width: 80px;
  height: 80px;
  padding: 33px 0;
  text-align: center;
  display: block;
  border-radius: 50px;
}

#page-top a:hover {
  text-decoration: none;
  background: #999;
}

/*================================================== max-width:1024px */
@media screen and (max-width: 1024px) {
  /*========================= Header */
  header {
    height: initial;
  }
  header .inner {
    position: initial;
    display: block;
    max-width: 480px;
    width: 100%;
    margin: auto;
    margin: initial;
    padding: 10px;
  }
  header .inner .logoBox {
    position: initial;
    width: 230px;
    margin: 0 0 0 50px;
    padding: 10px 0;
  }
  header aside {
    display: none;
  }
  header aside button {
    position: initial;
  }
  /*========================= Nav */
  nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.8);
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    -webkit-transition: ease .5s;
    transition: ease .5s;
    z-index: 10;
  }
  nav ul {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    padding-top: 5%;
  }
  nav ul li {
    border-bottom: 1px dotted #ccc;
    margin-top: 10px;
  }
  nav ul li.nav_close {
    display: block;
    color: #fff;
    padding: 5px 10px 10px;
  }
  nav ul li:first-child > a {
    padding-top: 10px;
  }
  nav ul li a {
    display: block;
    color: #fff;
    padding-top: 10px;
  }
  nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    overflow-y: auto;
  }
  .navOpener {
    position: fixed;
    top: 15px;
    right: 20px;
    display: block;
    padding: 10px 5px;
    z-index: 9999;
    border: solid 1px #ccc;
    border-radius: 5px;
  }
  .navOpener span {
    position: relative;
    display: block;
    height: 2px;
    width: 30px;
    background: #333;
    -webkit-transition: ease .5s;
    transition: ease .5s;
  }
  .navOpener span:nth-child(1) {
    top: 0;
  }
  .navOpener span:nth-child(2) {
    margin: 8px 0;
  }
  .navOpener span:nth-child(3) {
    top: 0;
  }
  .navOpener.open span {
    background: #fff;
  }
  .navOpener.open span:nth-child(1) {
    top: 10px;
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
  .navOpener.open span:nth-child(2) {
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0;
  }
  .navOpener.open span:nth-child(3) {
    top: -10px;
    -webkit-transform: rotate(-225deg);
            transform: rotate(-225deg);
  }
}

@media screen and (max-width: 480px) {
  /*========================= Header */
  header .inner .logoBox {
    margin: 0 0 0 20px;
  }
}

main {
  margin-bottom: 120px;
}

@media screen and (max-width: 1024px) {
  #page-top a {
    width: 60px;
    height: 60px;
    padding: 18px 0;
  }
}

#infoList ul {
  width: 65%;
  margin: auto;
}

#infoList ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: dotted 1px #ccc;
  padding: 2% 0;
}

#infoList ul li figure {
  width: 120px;
  margin-right: 20px;
  line-height: 0;
}

#infoList ul li .textBox {
  width: 100%;
}

#infoList ul li .textBox .infoDays {
  padding: 5px 0 0;
}

#infoList ul li .textBox .infoTitle {
  padding: 10px 0;
  font-size: 1.2em;
  font-weight: 600;
}

#infoList ul li .textBox .toSingle {
  text-align: right;
}

#infoList ul li .textBox .toSingle a {
  display: inline-block;
  padding: 10px 25px;
  color: inherit;
  background: #ccc;
  border-radius: 25px;
}

@media screen and (max-width: 1024px) {
  #infoList ul {
    width: 96%;
  }
}

@media screen and (max-width: 480px) {
  #infoList ul li .textBox .infoTitle {
    line-height: 1.3em;
  }
}

#company section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 80%;
  margin: auto;
}

#company section.column01 {
  display: block;
}

#company section h2 {
  width: 100%;
}

#company #companyProf div {
  width: 49%;
}

#company #companyProf div table {
  width: 100%;
}

#company #companyProf div table th, #company #companyProf div table td {
  padding-left: 1.0em;
  line-height: 1.3em;
  text-align: left;
}

#company #companyProf div.map_canvas {
  position: relative;
  padding: 0;
  height: 320px;
  overflow: hidden;
}

#company #companyProf div.map_canvas iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  border: 0;
}

#company #comMembers {
	flex-wrap: wrap;
}

#company #comMembers div {
  width: 48%;
  margin-bottom: 50px;
}

#company #comMembers div.textBox p {
  margin-bottom: 1.0em;
  line-height: 1.3em;
}

#company #comMembers div.textBox p.menberName {
  font-size: 1.3em;
  font-weight: 700;
}

#company #comMembers div.textBox p.menberName span {
  display: block;
  margin-bottom: 5px;
  font-size: 0.6em;
  font-weight: normal;
}

@media screen and (max-width: 1024px) {
  #company section {
    width: 100%;
    margin: 20px 0;
    padding: 3%;
  }
}

@media screen and (max-width: 768px) {
  #company section {
    width: 100%;
    margin: 20px 0;
  }
  #company section div table th, #company section div table td {
    font-size: 0.9em;
  }
  #company section div.map_canvas {
    height: 0;
    padding: 0 0 41%;
  }
}

@media screen and (max-width: 480px) {
  #company section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  #company section#companyProf div, #company section#comMembers div {
    width: 100%;
  }
  #company #companyProf div table {
    width: 100%;
    padding: 0 1%;
  }
  #company #companyProf div.map_canvas {
    padding: 0 0 56%;
  }
  #company #comMembers .textBox {
    margin-bottom: 20px;
  }
}

table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

table tr:nth-child(odd) {
  background-color: #eee;
}

table th, table td {
  padding: 20px 0;
  text-align: center;
}

@media screen and (max-width: 1024px) {
  table {
    width: 96%;
    margin: auto;
    border-collapse: collapse;
    border-spacing: 0;
  }
  table tr:nth-child(odd) {
    background-color: #eee;
  }
  table th, table td {
    padding: 20px 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  table tr:nth-child(odd) {
    background-color: initial;
  }
  table th, table td {
    display: block;
    width: 100%;
    padding: 15px 0 15px 2.0em;
    text-align: left;
  }
  table th {
    background: #ccc;
  }
  table td {
    padding: 15px 0 15px 3.0em;
    border-bottom: dotted 1px #ccc;
  }
  table td:last-child {
    border-bottom: none;
  }
}

#contact table {
  width: 80%;
  margin: auto;
  border-collapse: collapse;
  border-spacing: 0;
}

#contact table th {
  width: 30%;
  padding: 0;
  background-color: #eee;
  border-bottom: solid 1px #fff;
}

#contact table td {
  width: 70%;
  padding: 10px 1.0em 10px 2.0em;
  background: #fff;
  text-align: left;
}

#contact table td input {
  width: 100%;
  height: 40px;
  padding: 0 0 0 0.5em;
  border: none;
  border-left: solid 1px #e0e0e0;
  border-bottom: dotted 1px #e0e0e0;
  outline: none;
  line-height: 1.5em;
}

#contact table td textarea {
  width: 100%;
  height: 150px;
  padding: 0 0 0 0.5em;
  border: solid 1px #e0e0e0;
  outline: none;
  line-height: 1.5em;
}

#contact .btnSend {
  margin: 30px 0;
  text-align: center;
}

#contact .btnSend input {
  width: 200px;
  padding: 10px 0;
  text-align: center;
  border: none;
  background: #666;
  color: #fff;
}

#contact .required {
	display: inline-block;
	margin: 0 1.0em;
	color: #ff0000;
	font-size: 0.7em;
}


@media screen and (max-width: 1024px) {
  #contact table {
    width: 96%;
  }
}

@media screen and (max-width: 480px) {
  #contact table tr:nth-child(odd) {
    background-color: initial;
  }
  #contact table th {
    display: block;
    width: 100%;
    padding: 15px 0 15px 1.0em;
    text-align: left;
  }
  #contact table td {
    display: block;
    width: 100%;
    padding: 15px 0;
    text-align: left;
  }
}

.menu-img-side ul {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-img-side ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 48%;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}

.menu-img-side ul li figure {
  width: 30%;
  margin-left: 1.0em;
}

.menu-img-side ul li div {
  width: 100%;
}

.menu-img-side ul li div em {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 10px;
  font-size: 1.3em;
  font-weight: 900;
  border-bottom: dotted 1px #ccc;
}

.menu-img-side ul li div em::before {
  content: "\02666";
}

.menu-img-side ul li div em span {
  float: right;
  font-size: 0.8em;
  font-weight: normal;
}

.menu-img-side ul li div em::after {
  display: block;
  clear: both;
}

.menu-img-side ul li div p {
  padding: 10px 0 10px 1.5em;
}

.menu-img-btm ul {
  width: 80%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.menu-img-btm ul li {
  width: 48%;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: solid 1px #ccc;
}

.menu-img-btm ul li div {
  width: 100%;
}

.menu-img-btm ul li div em {
  display: block;
  margin-bottom: 5px;
  padding-bottom: 10px;
  font-size: 1.3em;
  font-weight: 900;
  border-bottom: dotted 1px #ccc;
}

.menu-img-btm ul li div em::before {
  content: "\02666";
}

.menu-img-btm ul li div em span {
  float: right;
  font-size: 0.8em;
  font-weight: normal;
}

.menu-img-btm ul li div em::after {
  display: block;
  clear: both;
}

.menu-img-btm ul li div p {
  padding: 10px 0 10px 1.5em;
}

@media screen and (max-width: 1024px) {
  .menu-img-side ul {
    width: 96%;
  }
  .menu-img-btm ul {
    width: 96%;
  }
}

@media screen and (max-width: 480px) {
  .menu-img-side ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .menu-img-side ul li {
    width: 100%;
  }
  .menu-img-btm ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .menu-img-btm ul li {
    width: 100%;
  }
}

.single div {
  max-width: 800px;
  width: 100%;
  margin: auto;
}

.single div.postInfo {
  padding: 15px 0;
  text-align: right;
  font-size: 0.8em;
}

.single div.postBox {
  padding: 15px 0;
}

.single div.postBox p {
  padding-bottom: 1.5em;
  line-height: 1.5em;
}

.single div.postBox img {
  display: inline-block;
  max-width: 65%;
  padding: 20px 0 calc(20px + 1.0em);
}

@media screen and (max-width: 480px) {
  .single div {
    max-width: 480px;
    width: 96%;
  }
  .single div.postBox img {
    max-width: 100%;
    width: 100%;
  }
}

.column02List .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: auto;
}

.column02List .container .columnBox {
  width: 48%;
}

.column02List .container .columnBox h2 {
  width: 100%;
}

.column02List .container .columnBox em {
  display: block;
  font-size: 1.2em;
  font-weight: 900;
}

.column02List .container .columnBox .eventDay {
  font-size: 0.8em;
  font-weight: 700;
}

.column02List .container .columnBox .btnMmore {
  display: table;
  width: 100px;
  height: 100px;
  margin: 20px auto 0;
}

.column02List .container .columnBox .btnMmore a {
  display: table-cell;
  border: solid 1px #ccc;
  border-radius: 50%;
  text-align: center;
  vertical-align: middle;
}

.column02List .container .columnBox .detailLink {
  text-align: right;
}

.column02List .container .columnBox .detailLink a {
  display: inline-block;
  margin: 5px 0;
  padding: 0 10px;
  font-size: 0.8em;
  border-left: solid 5px #ccc;
  color: inherit;
}

.column02List .container #listLeft {
  padding-right: 2%;
}

.column02List .container #listLeft ul li {
  margin-bottom: 5px;
  padding: 5px 0;
  border-bottom: dotted 1px #ccc;
}

.column02List .container #listLeft ul li .textBox {
  line-height: 1.5em;
}

.column02List .container #listRight {
  padding-left: 2%;
}

.column02List .container #listRight article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding: 5px 0;
}

.column02List .container #listRight article figure {
  width: 40%;
}

.column02List .container #listRight article .textBox {
  padding-left: 15px;
  line-height: 1.5em;
}

.column02List .container #listRight article .textBox em {
  margin-bottom: 10px;
}

.column02List .container #listRight .linkBox {
  margin-top: 20px;
}

.column02List .container #listRight .linkBox a {
  display: inline-block;
  width: 48%;
  padding: 20px 0;
  text-align: center;
  border: solid 1px #ccc;
}

@media screen and (max-width: 1024px) {
  .column02List .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 96%;
  }
}

@media screen and (max-width: 768px) {
  .column02List .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02List .container .columnBox {
    width: 100%;
  }
  .column02List .container #listLeft {
    margin-bottom: 50px;
    padding-right: 0;
  }
  .column02List .container #listLeft ul li .textBox {
    line-height: 1.5em;
  }
  .column02List .container #listRight {
    padding-left: 0;
  }
  .column02List .container #listRight article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02List .container #listRight article figure {
    width: 80%;
    margin: 5px auto 15px;
  }
  .column02List .container #listRight article .textBox {
    width: 80%;
    margin: 0 auto 10px;
    padding-left: 0;
    line-height: 1.5em;
  }
  .column02List .container #listRight article .textBox em {
    margin-bottom: 10px;
    font-size: 1.6em;
  }
  .column02List .container #listRight article .textBox .eventDay {
    font-size: 1.0em;
  }
  .column02List .container #listRight .linkBox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: 20px;
  }
  .column02List .container #listRight .linkBox a {
    display: inline-block;
    width: 48%;
    padding: 20px 0;
    text-align: center;
    border: solid 1px #ccc;
  }
}

@media screen and (max-width: 480px) {
  .column02List article .inner .textBox {
    width: 100%;
  }
  .column02List article .inner figure {
    width: 100%;
  }
  .column02List article.img_right .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02List article.img_right .inner .textBox {
    padding-right: 0;
  }
  .column02List article.img_left .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02List article.img_left .inner .textBox {
    padding-left: 0;
  }
  .column02List article.img_top .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column02List article.img_top .inner figure {
    padding-bottom: 1.0em;
  }
  .column02List article.img_btm .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bnrArea .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 80%;
  margin: auto;
}

.bnrArea .inner .bnrBox {
  width: 24%;
  margin: 0 calc(4% / 3) 1em 0;
  padding: 0;
}

.bnrArea .inner .bnrBox:nth-child(4n) {
  margin-right: 0;
}

@media screen and (max-width: 1024px) {
  .bnrArea .inner {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .bnrArea .inner .bnrBox {
    width: 49%;
    margin: 0 2% 1.0em 0;
    padding: 0;
  }
  .bnrArea .inner .bnrBox:nth-child(2n) {
    margin-right: 0;
  }
  .bnrArea .inner .bnrBox:nth-child(4n) {
    margin-right: inherit;
  }
}

@media screen and (max-width: 480px) {
  .bnrArea .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .bnrArea .inner .bnrBox {
    width: 100%;
    margin: 0 0 10px;
    padding: 0;
  }
  .bnrArea .inner .bnrBox:nth-child(2n) {
    margin-right: 0;
  }
  .bnrArea .inner .bnrBox:nth-child(4n) {
    margin-right: 0;
  }
}

#mv {
  margin: 10px 0 0;
}

@media screen and (max-width: 1024px) {
  #mv {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  #mv {
    height: 50vh;
    overflow: hidden;
  }
  #mv img {
    width: 100%;
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#page-fv {
  margin: 10px 0 0;
}

@media screen and (max-width: 1024px) {
  #page-fv {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  #page-fv {
    height: 150px;
    overflow: hidden;
  }
  #page-fv img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

#single-fv {
  max-width: 1200px;
  margin: 10px auto 0;
}

@media screen and (max-width: 1024px) {
  #single-fv {
    margin: 0;
  }
}

@media screen and (max-width: 480px) {
  #single-fv {
    height: 150px;
    overflow: hidden;
  }
  #single-fv img {
    width: 100%;
    height: 150px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

section {
  padding: 5% 3%;
  border-bottom: 1px dashed #ccc;
}

section:last-child {
  border-bottom: none;
}

section h2 {
  width: 80%;
  margin: 0 auto 3%;
  padding: 0.5em 0;
  border-bottom: double #ccc;
  text-align: center;
  font-weight: 500;
}

section h3 {
  margin-bottom: 1.5em;
  padding: 0.5em 1.0em;
  color: #494949;
  background: transparent;
  border-left: solid 5px #ccc;
}

section article {
  width: 80%;
  margin: auto;
  padding-bottom: 1.0em;
}

section figure {
  line-height: 0;
}

@media screen and (max-width: 1024px) {
  section h2 {
    width: 96%;
  }
  section article {
    width: 96%;
  }
}

@media screen and (max-width: 480px) {
  section {
    font-size: 14px;
  }
}

.column01 {
  padding: 5% 3% 0;
  border-bottom: none;
}

.column01 .inner {
  margin: 0 3%;
}

.column01 p {
  width: 60%;
  margin: auto;
  padding-bottom: 1.0em;
  line-height: 1.5em;
}

.single-p .column01 .single-lead {
	text-align: right;
}

@media screen and (max-width: 1024px) {
  .column01 .inner {
    margin: 5% 3% 0;
  }
  .column01 .inner p {
    width: 90%;
    text-align: left;
  }

  .single-p .column01 .single-lead {
	width: 96%;
	margin: auto;
	text-align: right;
}
}

@media screen and (max-width: 480px) {
  .column01 .inner p {
    width: 96%;
  }
}

.column02 article {
  padding-bottom: 0;
}

.column02 article .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.column02 article .inner .textBox {
  width: 50%;
}

.column02 article .inner .textBox h3 {
  font-weight: 700;
}

.column02 article .inner .textBox h3 span {
  display: block;
  padding: 0 0 0.5em;
  font-size: 0.8em;
}

.column02 article .inner .textBox p {
  margin: auto;
  padding-bottom: 1.0em;
  line-height: 1.5em;
}

.column02 article .inner figure {
  width: 50%;
}

.column02 article.img_right .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.column02 article.img_right .inner .textBox {
  padding-right: 1.0em;
}

.column02 article.img_left .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.column02 article.img_left .inner .textBox {
  padding-left: 1.0em;
}

@media screen and (max-width: 480px) {
  .column02 article {
    margin-bottom: 50px;
  }
  .column02 article .inner .textBox {
    width: 100%;
  }
  .column02 article .inner figure {
    width: 100%;
  }
  .column02 article.img_right .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02 article.img_right .inner .textBox {
    padding-right: 0;
  }
  .column02 article.img_left .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .column02 article.img_left .inner .textBox {
    padding-left: 0;
  }
  .column02 article.img_top .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column02 article.img_top .inner figure {
    padding-bottom: 1.0em;
  }
  .column02 article.img_btm .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

#flow.column02 article {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: dotted 1px #aaa;
}

#flow.column02 article .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#flow.column02 article .inner .textBox {
  width: 70%;
}

#flow.column02 article .inner .textBox h3 {
  font-weight: 700;
}

#flow.column02 article .inner .textBox h3 span {
  display: block;
  padding: 0 0 0.5em;
  font-size: 0.8em;
}

#flow.column02 article .inner .textBox p {
  margin: auto;
  padding-bottom: 1.0em;
  line-height: 1.5em;
}

#flow.column02 article .inner figure {
  width: 30%;
  padding: 0 5%;
}

#flow.column02 article.img_right .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

#flow.column02 article.img_right .inner .textBox {
  padding-right: 1.0em;
}

#flow.column02 article.img_left .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

#flow.column02 article.img_left .inner .textBox {
  padding-left: 1.0em;
}

@media screen and (max-width: 480px) {
  #flow.column02 article {
    margin-bottom: 50px;
  }
  #flow.column02 article .inner .textBox {
    width: 100%;
  }
  #flow.column02 article .inner figure {
    width: 100%;
    padding: 0 20%;
  }
  #flow.column02 article.img_right .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #flow.column02 article.img_right .inner .textBox {
    padding-right: 0;
  }
  #flow.column02 article.img_left .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #flow.column02 article.img_left .inner .textBox {
    padding-left: 0;
  }
  #flow.column02 article.img_top .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  #flow.column02 article.img_top .inner figure {
    padding-bottom: 1.0em;
  }
  #flow.column02 article.img_btm .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.column03 .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  width: 80%;
  margin: auto;
}

.column03 .wrap article {
  width: calc((100% / 3) - 70px);
}

.column03 .wrap article h3 {
  border: none;
  text-align: center;
  font-weight: 700;
}

.column03 .wrap article .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.column03 .wrap article .inner .textBox p {
  margin: auto;
  padding-bottom: 1.0em;
  line-height: 1.5em;
}

.column03 .wrap article.img_top .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
}

.column03 .wrap article.img_top .inner figure {
  padding-bottom: 1.0em;
}

.column03 .wrap article.img_btm .inner {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media screen and (max-width: 1024px) {
  .column03 .wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 96%;
  }
  .column03 .wrap article {
    width: 90%;
    margin-bottom: 50px;
    padding: 0 5%;
  }
  .column03 .wrap article .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .column03 .wrap article .inner .textBox p {
    margin: auto;
    padding-bottom: 1.0em;
  }
  .column03 .wrap article.img_top .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .column03 .wrap article.img_top .inner figure {
    padding-bottom: 0;
  }
  .column03 .wrap article.img_btm .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .column03 .wrap article.img_left .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .column03 .wrap article.img_left .inner .textBox {
    padding-left: 1.0em;
  }
  .column03 .wrap article.img_right .inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .column03 .wrap article.img_right .inner .textBox {
    padding-right: 1.0em;
  }
}

@media screen and (max-width: 480px) {
  .column03 .wrap {
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 96%;
  }
  .column03 .wrap article {
    width: 100%;
  }
  .column03 .wrap article .inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .column03 .wrap article .inner .textBox p {
    margin: auto;
    padding-bottom: 1.0em;
  }
  .column03 .wrap article.img_top .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .column03 .wrap article.img_top .inner figure {
    padding-bottom: 1.0em;
  }
  .column03 .wrap article.img_btm .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.comment {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 800px;
  margin: 10px auto 0;
  padding: 35px 0 20px;
  border-top: dashed 1px #ccc;
}

.comment .commenInfo, .comment .commentBox {
  width: 49%;
}

.comment .itemBox {
  margin-bottom: 20px;
}

.comment .itemName {
  padding: 0 0 10px;
}

.comment input {
  width: 100%;
  height: 40px;
  padding: 5px;
  border-radius: 5px;
  border-style: solid;
  border-width: 1px;
  border-color: #ccc;
}

.comment textarea {
  width: 100%;
  height: 150px;
  padding: 5px;
  border-radius: 5px;
  border-color: #ccc;
}

@media screen and (max-width: 1024px) {
  .comment {
    padding: 4% 2%;
  }
}

@media screen and (max-width: 480px) {
  .comment {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
  }
  .comment .commenInfo, .comment .commentBox {
    width: 100%;
  }
}
/*# sourceMappingURL=style.css.map */