@charset "utf-8";

/*
  File Name   : body.css
  Description : Write content styles
*/

/* default
============================================================ */
/*** structure ***/
html {
  overflow-y: scroll;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: #000;
  font-family: "Century Gothic", Verdana, 'Hiragino Kaku Gothic ProN', Meiryo, 'MS PGothic', sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

body>div:first-child,
body>footer,
body>header {
  width: 100%;
  min-width: 320px;
  box-sizing: border-box;
}

/*** text ***/
p {
  margin: 0;
  padding: 0;
  font-style: normal;
  font-weight: normal;
}

h1,
h2,
h3,
h4 {
  line-height: 1;
  margin: 0;
}

h1 {
  margin: 0;
  /*font-size: 2.369em;*/
}

h2 {
  /*font-size: 1.777em;*/
}

h3 {
  /*font-size: 1.333em;*/
}

h4,
h5,
h6 {
  font-size: 1em;
  margin: 0;
}

small,
.font-small {
  font-size: .875em;
}

sub {
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.3em;
}

iframe {
  border: none;
}

/*** hypertext ***/
a:link {
  color: #000;
  text-decoration: underline;
  outline: none;
}

a:hover,
a:active {
  text-decoration: none;
}

a:visited {
  color: #000;
}

a img {
  border: none;
}

.contentBody a[target="_blank"]{
    background-image: url(../images/common/new_tab.png);
    background-repeat: no-repeat;
    background-position: 2px 2px;
    background-size: 15px;
    padding: 0px 10px 8px 23px;
}


.contentBody a.line[target="_blank"] {
    background-image: none;
    padding: 0px;
}

.contentBody a.line img {
    border-radius: 0;
}


/*** list ***/
dl,
dt,
dd {
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

li,
ol,
ul {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: inherit;
  font-style: normal;
  font-weight: normal;
}

/*** object ***/
embed,
object {
  vertical-align: bottom;
}

/*** presentation ***/
u {
  font-size: inherit;
  text-decoration: underline;
}

/*** edit ***/
del {
  color: #666;
  font-size: inherit;
  text-decoration: line-through;
}

ins {
  border-bottom: 1px dotted #ccc;
  font-size: inherit;
  text-decoration: none;
}

/*** forms ***/
legend {
  white-space: normal;
}

button,
input,
label,
select,
textarea,
form img {
  vertical-align: middle;
}

button,
input,
select,
textarea {
  max-width: 100%;
  box-sizing: border-box;
}

input,
select,
textarea {
  color: #000;
  border: 1px solid #999;
}

select,
textarea,
input[type="text"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="email"],
input[type="tel"],
input[type="telephone"],
input[type="url"],
input[type="password"] {
  max-width: 100%;
  border-radius: 0;
}

button,
input[type="color"],
input[type="file"],
input[type="image"],
input[type="range"] {
  border: none;
  padding: 0;
  background: none;
}

input[type="checkbox"],
input[type="color"],
input[type="radio"],
input[type="range"],
select {
  cursor: pointer;
}

input[type="checkbox"],
input[type="color"],
input[type="file"],
input[type="image"],
input[type="radio"],
input[type="range"] {
  border: none;
}

input[type="password"] {
  ime-mode: disabled;
}

input[disabled],
input[readonly],
select[disabled],
select[readonly] {
  cursor: default;
}

textarea {
  resize: vertical;
}

label+label,
label+input[type="checkbox"],
label+input[type="radio"] {
  margin-left: 10px;
}

label>input[type="checkbox"],
label>input[type="radio"] {
  margin-right: 5px;
}

input[type="checkbox"]+label,
input[type="radio"]+label {
  margin-left: 5px;
}

input[type="button"],
input[type="image"],
input[type="reset"],
input[type="submit"],
button {
  border-radius: 0;
}

.over,
.over::before,
.over::after,
form a img,
input[type="button"],
input[type="image"],
input[type="reset"],
input[type="submit"],
button {
  transition: opacity .2s ease-in-out;
}

.over:hover,
.over:hover::before,
.over:hover::after,
form a:hover img,
form a:active img,
input[type="button"]:hover,
input[type="button"]:active,
input[type="image"]:hover,
input[type="image"]:active,
input[type="reset"]:hover,
input[type="reset"]:active,
input[type="submit"]:hover,
input[type="submit"]:active,
button:hover,
button:active {
  opacity: .8;
}

label.error,
input.error {
  background: #ffeeee;
}

/*** tables ***/
table {
  max-width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
  box-sizing: border-box;
}

table th,
table td {
  font-size: inherit;
  word-break: break-all;
  box-sizing: border-box;
}

/*** image ***/
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

.contentBody img {
  max-width: 100%;
  border-radius: 0 40px;
  transition: 0.3s;
}


.contentBody img a[target="_blank"] {
    background-image: url(../images/common/new_tab.png);
    background-repeat: no-repeat;
    background-position: 2px 2px;
    background-size: 15px;
    padding: 0px 10px 8px 23px;
}


/*** waku ***/
.waku {
    display: block;
    padding: 40px;
    border-radius: 0 50px;
    background-color: #f4ffdb;
    margin: 40px 0;
}

.waku p {
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 400;
	font-size: 120%;
    font-style: normal;
	margin-bottom: 0!important;
}


.waku2 {
    display: block;
    padding: 40px;
    border-radius: 0 50px;
    background-color: #f2f2f2;
    margin: 40px 0;
}


@media screen and (max-width: 767px) {
  .contentBody img {
    border-radius: 0 20px;
  }
}

/*** selection ***/
::-moz-selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

::selection {
  color: #fff;
  background: #999;
  text-shadow: none;
}

input::selection,
textarea::selection {
  color: #000;
}

/*** placeholder ***/
::placeholder {
  color: #666;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

::-ms-input-placeholder {
  color: #666;
  opacity: 1;
}

:focus::placeholder {
  color: transparent;
}

:focus:-ms-input-placeholder {
  color: transparent;
}

:focus::-ms-input-placeholder {
  color: transparent;
}

/* utiiities
============================================================ */
/*** float ***/
.com-clear {
  clear: both;
}

/*** hide ***/
.com-hide {
  position: absolute;
  z-index: -1;
  overflow: hidden;
  text-align: left;
  text-indent: -9999px;
}

/*** clearfix ***/
.com-clearfix::before,
.com-clearfix::after {
  content: "";
  display: table;
}

.com-clearfix::after {
  clear: both;
}

/*** align ***/
.com-align_r {
  text-align: right !important;
}

.com-align_c {
  text-align: center !important;
}

.com-align_l {
  text-align: left !important;
}

.com-justify {
  text-align: justify;
}

/*** panel layout ***/
.com-panel-layout {
  display: table;
  width: auto;
  /* overflow: hidden; */
  table-layout: fixed;
  word-spacing: -.4em;
  box-sizing: border-box;
}

.com-panel-layout .panel-layout-child,
.com-panel-layout>article,
.com-panel-layout>figure,
.com-panel-layout>li,
.com-panel-layout>div,
.com-panel-layout>p,
.com-panel-layout>section {
  display: inline-block;
  margin: 0;
  padding: 0;
  vertical-align: top;
  word-spacing: normal;
  box-sizing: border-box;
}

/*** color ***/
.red {
  color: red;
}

.red2 {
  color: #cc0000;
}

.orange {
  color: orange;
}

.blue {
  color: blue;
}

.navy {
  color: navy;
}

.green {
  color: green;
}

.yellow {
  color: yellow;
}

.yellow2 {
  color: #ffcc00;
}

/*style*/
.style1 {
  font-size: 155%;
  color: #6dbf01;
  line-height: 150%;
}

.style2 {
    background-color: #666;
    color: #fff;
    padding: 15px;
    font-size: 130%;
    display: block;
	text-align: center;
}

.style2 a {
  color: #fff;
}

.style3 {
  font-size: 80%;
}

.style4 {
  margin: 1px 0;
  padding: 0 4px;
  border-left: none;
  font-size: 130%;
  background: -webkit-linear-gradient(transparent 70%, #e3ffa0 43%);
  background: -o-linear-gradient(transparent 70%, #e3ffa0 43%);
  background: linear-gradient(transparent 70%, #e3ffa0 43%);
  font-weight: bold;
}

.style5 {
  text-align: center;
  display: block;
  border-radius: 50px;
  background-color: #6dbf01;
  color: #FFF;
  width: auto;
  font-size: 150%;
  padding: 0.8em;
  text-decoration: none;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
  -webkit-tap-highlight-color: transparent;
  transition: .3s ease-out;
}

.style5 a {
  color: #fff !important;
  display: block;
  text-decoration: none;
  padding: 0!important;
  background-image: none!important;
}

.style5:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 5px 6px -2px rgba(0, 0, 0, 0.2);
}

.style6 {}

.style7 {}

.style8 {}

.style10 {
    width: 100%;
    margin: 0 auto;
    max-width: 210px;
    text-align: center;
    display: block;
    border-radius: 50px;
    background-color: #6dbf01;
    color: #FFF;
    /* width: auto; */
    font-size: 100%;
    padding: 10px;
    text-decoration: none;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -2px rgba(0, 0, 0, 0.2);
    -webkit-tap-highlight-color: transparent;
    transition: .3s ease-out;
	font-weight: bold;
}

.style10 a {
  color: #fff !important;
  display: block;
  text-decoration: none;
  padding: 0!important;
  background-image: none!important;
}

.style10:hover {
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 5px 10px 0 rgba(0, 0, 0, 0.12), 0 3px 20px 0 rgba(0, 0, 0, 0.12), 0 5px 6px -2px rgba(0, 0, 0, 0.2);
}

/* editor style
============================================================ */
/* body */
body.contentBody {
  padding: 15px;
}

.contentBody a {
  color: #6dbf01;
}

/* p */
.contentBody p {
  margin-bottom: 1em;
  letter-spacing: 1px;
}

/* u */
.contentBody u {
  background: linear-gradient(transparent 70%, rgba(227, 255, 160, .5) 70%);
  text-decoration: none;
}

/* ul */
.contentBody ul {
  margin-bottom: 1em;
  text-indent: 0;
}

.contentBody ul>li {
  padding-left: .925em;
  line-height: 1.8;
  letter-spacing: 1px;
  text-indent: -.925em;
  margin: 20px;
}

.contentBody ul>li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 4px;
  margin-bottom: 2px;
  margin-right: 10px;
  background: rgb(169, 229, 48);
  border-radius: 2px;
  vertical-align: middle;
}

/* ol */

.contentBody ol {
  counter-reset: number;
  list-style-type: none !important;
  padding: 20px 5px;
}

.contentBody ol li {
  position: relative;
  padding: 0.5em 0.5em 0.5em 33px;
  margin-bottom: 10px;
}

.contentBody ol li:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  background: #6dbf01;
  color: white;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  top: 22px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}


/* table */
.contentBody table {
  margin-bottom: 1em;
}

.contentBody table[border] {
  border-style: solid;
  border-color: #999;
}

.contentBody table[border=""],
.contentBody table[border="0"] {
  border: none;
}

.contentBody table th,
.contentBody table td {
  padding: 10px;
  letter-spacing: 1px;
}

.contentBody table[border] th,
.contentBody table[border] td {
  border-style: solid;
  border-color: #999;
}

.contentBody table[border=""] th,
.contentBody table[border="0"] th,
.contentBody table[border=""] td,
.contentBody table[border="0"] td {
  border: none;
}

.contentBody table th {
  background: #e3ffa0;
  vertical-align: top;
  width: 20%;
}

.contentBody table td {
  background: #fff;
}

.contentBody table td> :last-child {
  margin-bottom: 0 !important;
}

@media screen and (max-width: 811px) {
  .contentBody table {
    max-width: inherit;
  }

  .contentBody table th,
  .contentBody table td {
    padding: 10px 15px;
  }
}

/* title */
.contentBody h1,
.contentBody h2 {
  clear: both;
  margin-top: 3em;
  margin-bottom: 2em;
}

.contentBody h3,
.contentBody h4,
.contentBody h5,
.contentBody h6 {
  clear: both;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.5;
}

.contentBody h1:first-child,
.contentBody h2:first-child,
.contentBody h3:first-child,
.contentBody h4:first-child,
.contentBody h5:first-child,
.contentBody h6:first-child {
  margin-top: 0;
}

.contentBody h1 {
  margin-bottom: 60px;
  padding: 52px 10px 20px;
  border-bottom: 1px solid #999;
  font-size: 2.333333333em;
  letter-spacing: 5px;
  line-height: 1.15;
  text-align: center;
}

.contentBody h2 {
  margin: 70px 4px 30px 4px;
  padding: 0px 12px;
  border-left: 12px solid #a9e530;
  font-size: 230%;
  font-weight: bold;
  line-height: 160%;
}

.contentBody h3 {
  padding: 0 5px 5px;
  border-bottom: 1px #b3b3b3 solid;
  letter-spacing: 1px;
  font-size: 185%;
  color: #6dbf01;

}

.contentBody h4 {
  padding-left: 1em;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-indent: -1em;
}

.contentBody h4::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: 3px;
  margin-right: 10px;
  background: #a9e530;
  vertical-align: middle;
}

@media screen and (max-width: 811px) {
  .contentBody h1 {
    margin-bottom: 30px;
    padding: 33px 5px 10px;
    font-size: 2em!important;
    letter-spacing: 2px;
  }

  .contentBody h2 {
    margin-bottom: 1em!important;
    font-size: 150%!important;
    padding: 0px 0px 0px 10px!important;
  }

  .contentBody h3 {
    font-size: 135%!important;
  }

  .contentBody h4 {
    font-size: 1em!important;
  }
}

.contentBody .alignRight {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}

.contentBody .alignLeft {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}

.contentBody .alignCenter {
  display: block;
  margin: 0 auto;
}

@media screen and (max-width: 811px) {

  .contentBody .alignRight,
  .contentBody .alignLeft {
    max-width: 38.2%;
  }

  .style5 {
    line-height: 140%;
    font-size: 120%;
  }

}

@media screen and (max-width: 481px) {

  .contentBody h1 {
    font-size: 1.333333333em;
  }

  .contentBody .alignRight,
  .contentBody .alignLeft {
    display: block;
    float: none;
    max-width: 100%;
    margin: 0 auto 2.666em;
  }
}

.contentBody .col-2,
.contentBody .col-3 {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
}

.contentBody .col-2>*,
.contentBody .col-3>* {
  table-layout: fixed;
  padding-right: 20px;
  padding-left: 20px;
  box-sizing: border-box;
}

.contentBody .col-2>* {
  width: 50%;
}

.contentBody .col-3>* {
  width: calc(100% / 3 - .1px);
}

.contentBody .col-2> :first-child,
.contentBody .col-3> :first-child {
  padding-left: 0;
}

.contentBody .col-2> :last-child,
.contentBody .col-3> :last-child {
  padding-right: 0;
}

@media screen and (max-width: 811px) {

  .contentBody .col-2,
  .contentBody .col-3 {
    display: block;
  }

  .contentBody .col-2>*,
  .contentBody .col-3>* {
    width: auto;
    padding-right: 0;
    padding-left: 0;
  }
}

.contentBody> :last-child {
  margin-bottom: 0;
}

/* attached_icon
============================================================ */
.attached_icon {
  width: auto;
  height: 28px;
  margin: 5px 5px 5px 0;
  vertical-align: middle;
  border-radius: 0!important;
}

/* com-alpha-font
============================================================ */
.com-alpha-font {
  font-family: fot-tsukubrdgothic-std, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* com-section
============================================================ */

.top-category_recruit .com-section {
    margin-bottom: 0px!important; 
}

.com-section, .com-section>section {
	margin-bottom: 0;
}

.com-section, .com-section.list>section {
    margin-bottom: 90px; 
}

.com-section:first-child, .com-section.list>section:first-child {
    margin-bottom: 0; 
}

.com-section:last-child,
.com-section>section:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 811px) {

  .com-section,
  .com-section>section {
  }
}

/* com-sect-desc
============================================================ */
.com-sect-desc {
  margin-bottom: 50px;
}

.com-sect-desc:last-child {
  margin-bottom: 0;
}

@media screen and (max-width: 811px) {
  .com-sect-desc {
    margin-bottom: 25px;
  }
}

/* com-date-txt
============================================================ */
.com-date-txt {
  margin-bottom: 1em;
  text-align: right;
}

/* com-link-icon
============================================================ */
.com-link-icon::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-top: 1px solid #999;
  border-right: 1px solid #999;
  vertical-align: middle;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* com-btn-list
============================================================ */
.com-btn-list {
  margin: 4em 0 -20px;
  text-align: center;
}

.com-btn-list a,
.com-btn-list button[type="button"],
.com-btn-list button[type="submit"] {
  position: relative;
  display: inline-block;
  min-width: 215px;
  margin: 0 7px 20px;
  padding: 13px 40px 13px 22px;
  background: #000;
  border-radius: 30px;
  color: #fff;
  font-size: 1.2em;
  font-weight: bold;
  letter-spacing: 1px;
  line-height: 1.6;
  text-decoration: none;
  box-sizing: border-box;
  cursor: pointer;
}

.com-btn-list a.left-arrow,
.com-btn-list button[type="button"].left-arrow,
.com-btn-list button[type="submit"].left-arrow {
  padding-right: 22px;
  padding-left: 40px;
}

.com-btn-list a::after,
.com-btn-list button[type="button"]::after,
.com-btn-list button[type="submit"]::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  display: inline-block;
  width: 9px;
  height: 9px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.com-btn-list a.left-arrow::after,
.com-btn-list button[type="button"].left-arrow::after,
.com-btn-list button[type="submit"].left-arrow::after {
  right: inherit;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}

.com-btn-list a:hover,
.com-btn-list button[type="button"]:hover,
.com-btn-list button[type="submit"]:hover {
  opacity: .8;
}

@media screen and (max-width: 811px) {
  .com-btn-list {
    margin: 3em 0 -15px;
  }

  .com-btn-list a,
  .com-btn-list button[type="button"],
  .com-btn-list button[type="submit"] {
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 1em;
  }

  .com-btn-list a::after,
  .com-btn-list button[type="button"]::after,
  .com-btn-list button[type="submit"]::after {
    width: 7px;
    height: 7px;
  }
}

@media screen and (max-width: 481px) {
  .com-btn-list {
    margin: 2em 0 -10px;
  }

  .com-btn-list a,
  .com-btn-list button[type="button"],
  .com-btn-list button[type="submit"] {
    min-width: inherit;
    margin: 0 0 10px;
  }
}

/* com-category-list
============================================================ */
.com-category-list {
  display: table;
  table-layout: fixed;
  width: 100%;
  margin: 0 0 -30px;
  word-spacing: -.4em;
  box-sizing: border-box;
}

.com-category-list li {
    position: relative;
    display: inline-block;
    overflow: hidden;
    width: calc((100% - 20px) / 2 - .1px);
    margin: 0 20px 30px 0;
    padding: 22px 20px 20px;
    color: #000;
    background: #e3ffa0;
    text-indent: 0;
    vertical-align: top;
    word-spacing: normal;
    box-sizing: border-box;
    border-radius: 0 20px;
}

.com-category-list li:nth-child(2n+2) {
  margin-right: 0;
}

.com-category-list li::before {
  content: none;
}

.com-category-list li .title {
  display: block;
  padding-left: 40px;
  font-size: 1.466666666666em;
  font-weight: bold;
}

.com-category-list li .title::before {
  content: "";
  position: absolute;
  top: 33px;
  left: 25px;
  display: block;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 10px;
}

.com-category-list li .title::after {
  content: "";
  position: absolute;
  top: 39px;
  left: 30px;
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #999;
  border-right: 2px solid #999;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.com-category-list li .title a {
  color: #000;
}

.com-category-list li .description {
  display: block;
  min-height: 40px;
  margin-top: 10px;
  padding: 10px 10px 0;
  border-top: 1px solid #fff;
  font-size: .933333333333em;
  box-sizing: border-box;
}
.com-category-list li .thumb {
    display: block;
    float: left;
    width: 30%;
    margin-right: 20px;}
.com-category-list li .date {
  display: block;
  padding-left: 40px;
}


@media screen and (max-width: 811px) {
  .com-category-list {
    margin: 0 0 -20px;
  }

  .com-category-list li {
    width: calc((100% - 10px) / 2 - .1px);
    margin: 0 10px 20px 0;
    padding: 17px 15px 15px;
    line-height: 1.6;
	border: 1px solid #ccc;
  }


  .com-category-list li .title {
    padding-left: 30px;
    font-size: 1.2em;
  }

  .com-category-list li .title::before {
    top: 23px;
    left: 20px;
    width: 18px;
    height: 18px;
    border-radius: 9px;
  }

  .com-category-list li .title::after {
    top: 29px;
    left: 25px;
    width: 4px;
    height: 4px;
  }

  .com-category-list li .date {
    padding-left: 30px;
    font-size: .933333333333em;
  }
}

@media screen and (max-width: 481px) {
  .com-category-list li {
    width: 100%;
    min-height: inherit;
    margin-right: 0;
  }
}

/* com-news-list
============================================================ */
.com-news-list ul li {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 15px;
  padding: 0 15px 10px;
  border-bottom: 1px dotted #999;
  box-sizing: border-box;
}

.com-news-list ul li:first-child {
  padding-top: 15px;
  border-top: 1px dotted #999;
}

.com-news-list ul li:last-child {
  margin-bottom: 0;
}

.com-news-list ul li .date {
  padding-right: 20px;
  color: #999;
  font-size: 1.1em;
  line-height: 1.8;
}

.com-news-list ul li .list-category-mark {
  min-width: 85px;
  padding: 3px 5px;
  background: #999;
  color: #fff;
  font-size: .8em;
  line-height: 1.8;
  text-align: center;
  box-sizing: border-box;
}

.com-news-list ul li .title {
  width: 100%;
  margin-top: 8px;
}

.com-news-list ul li .title .new {
  background: #ff0000;
  color: #fff;
  margin-right: 6px;
  padding: 1px 5px;
}

.com-news-list ul li .title a {
  color: #000;
  font-size: 1.2em;
  line-height: 1.6;
}

@media screen and (max-width: 811px) {
  .com-news-list ul li {
    margin-bottom: 10px;
    padding: 0 10px 5px;
  }

  .com-news-list ul li:first-child {
    padding-top: 10px;
  }

  .com-news-list ul li .date {
    padding-right: 15px;
    font-size: .933333333333em;
    line-height: 1.6;
  }

  .com-news-list ul li .list-category-mark {
    min-width: 70px;
    line-height: 1.6;
  }

  .com-news-list ul li .title {
    width: 100%;
    margin-top: 4px;
  }

  .com-news-list ul li .title a {
    font-size: 1em;
  }
}

/* com-table
============================================================ */
@media screen and (max-width: 811px) {
  .com-table1 {
    width: 100%;
    border-right: none !important;
    border-left: none !important;
  }

  .com-table1 th,
  .com-table1 td {
    display: block;
    width: 100% !important;
    height: auto !important;
    border-right: none !important;
    border-left: none !important;
  }

  .com-table1 td {
    min-height: 45px;
  }

  .com-table3 {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }

  .com-table3 table th,
  .com-table3 table td {
    display: table-cell;
    width: auto !important;
  }
}

@media screen and (max-width: 481px) {

.contentBody table th, .contentBody table td {
    padding: 5px 5px;
	font-size: 70%;
}
	
  .com-table2 {
    border-right: none !important;
    border-left: none !important;
  }

  .com-table2 th,
  .com-table2 td {
    display: block;
    width: 100% !important;
    height: auto !important;
    border-right: none !important;
    border-left: none !important;
  }
}

/* com-signature
============================================================ */
.com-signature address {
  margin-bottom: 50px;
  padding: 20px;
  border: 1px solid #999;
}

.com-signature address span {
  display: block;
  font-style: normal;
}

.com-signature address .department {
  margin-bottom: .5em;
  border-bottom: 1px solid #999;
  font-size: 1.333333333333em;
  font-weight: bold;
}

@media screen and (max-width: 811px) {
  .com-signature address {
    margin-bottom: 25px;
    padding: 20px;
  }

  .com-signature address .department {
    font-size: 1.2em;
  }
}

/* greater/less
============================================================ */
@media screen and (min-width: 812px) {
  .greater-w812 {
    display: inherit !important;
  }

  .less-w811,
  .less-w481 {
    display: none !important;
  }
}

@media screen and (max-width: 811px) {

  .greater-w812,
  .less-w481 {
    display: none !important;
  }

  .less-w811 {
    display: inherit !important;
  }

  .is-tablet :hover {
    opacity: 1 !important;
    color: inherit !important;
  }
}

@media screen and (min-width: 482px) {
  .greater-w482 {
    display: inherit !important;
  }
}

@media screen and (max-width: 481px) {
  .greater-w482 {
    display: none !important;
  }

  .less-w481 {
    display: inherit !important;
  }
}

/* riji-list1
============================================================ */
.contentBody ul.riji-list1 {
  margin-bottom: -40px;
}

.contentBody ul.riji-list1>li {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: 100%;
  margin-bottom: 40px;
  padding: 40px 20px 40px 40px;
  border: 1px solid #ccc;
  text-indent: 0;
  box-sizing: border-box;
}

.contentBody ul.riji-list1>li::before {
  content: none;
}

.contentBody ul.riji-list1>li .thumb {
  position: relative;
    width: 100%;
    max-width: 260px;
    height: auto;
}

/*
.contentBody ul.riji-list1>li .thumb::before {
  content: "";
  display: block;
  padding-top: 100%;
}
*/

.contentBody ul.riji-list1>li .thumb img {
  position: unset;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  /* border: 1px solid #b3b3b3; */
  object-fit: cover;
  font-family: "object-fit: cover;";
  box-sizing: border-box;
}

.contentBody ul.riji-list1>li .text {
  padding-left: 40px;
  box-sizing: border-box;
	    width: 100%;
}

.contentBody ul.riji-list1>li .text p {
  margin-bottom: 0;
}

.contentBody ul.riji-list1>li .text p.name {
  font-size: 120%;
  font-weight: bold;
}

.contentBody ul.riji-list1>li .text .job {
  padding: 0 15px 3px 15px;
  display: inline-block;
  background: #e3ffa0;
  font-size: 130%;
  line-height: 160%;
  margin-bottom: 10px;
  border-radius: 50px;
}


p.belongs {
    display: block;
    color: #80b01e;
    margin-bottom: 20px!important;
}

p.comment {
    display: block;
}

@media screen and (max-width: 730px) {
.contentBody ul.riji-list1>li .thumb {
    max-width: 200px;
}
}

@media screen and (max-width: 620px) {
  .contentBody ul.riji-list1 {
    margin-bottom: -20px;
  }

  .contentBody ul.riji-list1>li {
    display: block;
    margin-bottom: 20px;
	padding: 40px;
  }

  .contentBody ul.riji-list1>li .thumb {
    width: 100%;
    height: 100%;
	margin-bottom: 10px;
        max-width: unset;
	  text-align: center;
  }
	
	
.contentBody ul.riji-list1>li .thumb img {
    max-width: 200px;
}

  .contentBody ul.riji-list1>li .text {
    padding: 20px 0 0;
  }

  .contentBody ul.riji-list1>li .text p {}

  .contentBody ul.riji-list1>li .text p.name {
    font-size: 120%;
    font-weight: bold;
  }

}

@media screen and (max-width: 481px) {

  .contentBody ul.riji-list1>li .text .job {
    margin-bottom: 10px;
  }

  .contentBody ul.riji-list1>li {
    padding: 20px;
  }

  .contentBody ul.riji-list1>li .text {}
}

/* riji-list2
============================================================ */
.contentBody ul.riji-list1+ul.riji-list2 {
  padding-top: 40px;
}

.contentBody ul.riji-list2 {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: -20px;
}

.contentBody ul.riji-list2>li {
  width: calc((100% - 40px) / 3 - .1px);
  margin: 0 20px 20px 0;
  padding: 20px;
  border: 1px solid #ccc;
  text-indent: 0;
  box-sizing: border-box;
}

.contentBody ul.riji-list2>li:nth-child(3n+3) {
  margin-right: 0;
}

.contentBody ul.riji-list2>li::before {
  content: none;
}

.contentBody ul.riji-list2>li .thumb {
  position: relative;
  width: 100%;
}

.contentBody ul.riji-list2>li .thumb::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.contentBody ul.riji-list2>li .thumb img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  /* border: 1px solid #b3b3b3; */
  object-fit: cover;
  font-family: "object-fit: cover;";
  box-sizing: border-box;
}

.contentBody ul.riji-list2>li .text {
  padding: 20px 0 0;
  box-sizing: border-box;
}

.contentBody ul.riji-list2>li .text p {
  margin-bottom: 0;
}

.contentBody ul.riji-list2>li .text .job {
  padding: 0 15px 3px 15px;
  display: inline-block;
  background: #e3ffa0;
  font-size: 110%;
  line-height: 160%;
  margin-bottom: 10px;
  border-radius: 50px;
}

.contentBody ul.riji-list2>li .text p.name {
  font-size: 120%;
  font-weight: bold;
}

.contentBody ul.riji-list2>li .text p.belongs {
  font-size: 85%;
}

@media screen and (max-width: 480px) {

  .contentBody ul.riji-list2>li .text .job {
    padding: 3px 15px 3px 15px;
    display: inline-block;
    background: #e3ffa0;
    font-size: 80%;
    letter-spacing: 0px;
    line-height: 140%;
    margin-bottom: 10px;
    border-radius: 50px;
  }

  .contentBody ul.riji-list2>li {
    padding: 10px;
  }

  .style1 {
    font-size: 125%;
  }
	
  .style4 {
    font-size: 115%;
	}

}


@media screen and (max-width: 690px) {
  .contentBody ul.riji-list1+ul.riji-list2 {
    padding-top: 20px;
  }

  .contentBody ul.riji-list2>li {
    width: calc((100% - 20px) / 2 - .1px);
  }

  .contentBody ul.riji-list2>li:nth-child(3n+3) {
    margin-right: 20px;
  }

  .contentBody ul.riji-list2>li:nth-child(2n+2) {
    margin-right: 0;
  }
}

@media screen and (max-width: 481px) {
	
	.waku,.waku2 {
    padding: 20px;
    border-radius: 0 30px;
    margin: 40px 0;
	line-height: 180%;
}
	
	
}

/*
============================================================ */


table.fukidashi{}

table.fukidashi img{
	    width: 60px;
    border-radius: 0;
}

.balloon2-right {
  position: relative;
  display: inline-block;
  margin: 1.5em 15px 1.5em 0;
  padding: 17px 20px;
  min-width: 95%;
  max-width: 100%;
    background: #e3ffa0;
    border: solid 3px #e3ffa0;
  border-radius: 10px;
}

.balloon2-right:before {
  content: "";
  position: absolute;
  top: 50%;
  right: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-left: 12px solid #e3ffa0;
  z-index: 2;
}

.balloon2-right:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-left: 14px solid #e3ffa0;
  z-index: 1;
}

.balloon2-right p {
  margin: 0;
  padding: 0;
}



.balloon2-left {
  position: relative;
  display: inline-block;
  margin: 1.5em 0 1.5em 15px;
  padding: 17px 20px;
  min-width: 100%;
  max-width: 100%;
  background: #FFF;
  border: solid 3px #555;
  box-sizing: border-box;
  border-radius: 10px;
}

.balloon2-left:before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  margin-top: -12px;
  border: 12px solid transparent;
  border-right: 12px solid #FFF;
  z-index: 2;
}

.balloon2-left:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  margin-top: -14px;
  border: 14px solid transparent;
  border-right: 14px solid #555;
  z-index: 1;
}

.balloon2-left p {
  margin: 0;
  padding: 0;
}


@media screen and (max-width: 830px) {
	
.balloon2-right {
    min-width: 93%;
	}
	
}


@media screen and (max-width: 750px) {
	
.balloon2-right {
    min-width: 90%;
	}
	
}

@media screen and (max-width: 640px) {
	
.balloon2-right {
    min-width: 87%;
	}
	
}

@media screen and (max-width: 530px) {
	
.balloon2-right {
    min-width: 83%;
	}
	
}

@media screen and (max-width: 481px) {
table.fukidashi {
    font-size: 130%;
}
	
table.fukidashi img {
    width: 40px;
}
	
.balloon2-left {
    min-width: 97%;
	}
	
}

iframe.gakkai_news{
	width: 100%;
	height: 500px;
}

#doc-title .name {
	display: none!important;
}



/*about-mission*/
.about-mission{
	font-family: fot-tsukubrdgothic-std, sans-serif;
    margin: 40px 0;
    display: block;
    font-size: 110%;
	line-height: 200%;
}

@media screen and (max-width: 700px) {
	
	
.about-mission{
    font-size: 90%;
}
}
	
	
	
	


