@charset "utf-8";
@charset "utf-8";

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

/* default
============================================================ */
/*** structure ***/
html {
  overflow-y: scroll;
  box-sizing: border-box;
  scroll-padding-top: 130px;
}

@media screen and (max-width: 860px) {
  html {
    scroll-padding-top: 70px;
  }
}

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

body {
  min-width: 320px;
  margin: 0;
  color: #603814;
  font-family: 'Zen Kaku Gothic New', sans-serif;
/*  font-feature-settings: "palt";*/
  font-size: 16px;
  font-weight: 500;
  letter-spacing: .04em;
  line-height: 1.8;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
}

@media print {
  body {
    -webkit-print-color-adjust: exact;
    color-adjust: exact;
  }
}

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

body>footer,
body>header {
  width: 100%;
  min-width: 320px;
}

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

h1,
h2,
h3,
h4 {
	 line-height: 1;
    font-weight: bold;
	margin: 0;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}

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

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

sub {
  vertical-align: baseline;
  position: relative;
  bottom: -0.2em;
  margin-left: 1px;
}

sup {
  vertical-align: baseline;
  position: relative;
  top: -0.4em;
  margin-left: 1px;
}

iframe {
  max-width: 100%;
  border: none;
}



.contentHeader {
  padding: 0;
  margin: 0 0 40px 0;
}

.contentTitle {}

.contentTitle h1 {
  width: 100%;
    font-size: 225%;
    line-height: 160%;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.contentTitle h1:after {
    content: "";
    display: block;
    height: 4px;
    top: 10px;
    position: relative;
    background: -webkit-linear-gradient(to right, rgb(255, 186, 115), #ffb2b2);
    background: linear-gradient(to right, rgb(255 227 116), #ea6000);
}

@media screen and (max-width: 811px) {
  .contentTitle h1 {
    font-size: 160%;
  }
}



.contentDescription {
  margin: 30px 0 50px 0;
    color: #53b015;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.contentDescription p {
  font-weight: bold;

}



.contentHeader .date {
  padding: 5px 5px 10px 0;
    color: #53b015;
    text-align: right;

}




/*** 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;
}

/*** hypertext ***/
a {
  font-size: inherit;
  transition: all 0.2s ease-in-out;
}

a:link {
  color: #603814;
  text-decoration: underline;
  outline: none;
}

a:visited {
  color: #603814;
}

a:hover,
a:active {
  color: #53b015;
  text-decoration: none;
}

a img {
  border: none;
  transition: all 0.2s ease-in-out;
}

/*** 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%;
}

input,
select,
textarea {
  outline: none;
  color: #603814;
  border: 1px solid #c7b299;
  padding: 4px 12px;
}

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"],
select,
textarea {
  max-width: 100%;
  border-radius: 4px;
}

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="color"],
input[type="file"],
input[type="image"],
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;
}

form a img {
  transition: opacity .2s ease-in-out;
}

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

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;
}

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

table th> :last-child,
table td> :last-child {
  margin-bottom: 0;
}

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

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

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

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

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

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

::-ms-input-placeholder {
  color: #603814;
  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;
  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: #f80000;
}

.orange {
  color: orange;
}

.blue {
  color: blue;
}

.navy {
  color: navy;
}

.green {
  color: green;
}

.yellow {
  color: yellow;
}

.yellow2 {
  color: #ffff00;
}

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

/* p */
.contentBody p {
  margin: 0.5em 0;
    font-weight: 500;
}

.cal-day-tbl p {
  margin: 0;
}

/* u */
.contentBody u {
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, .4) 60%);
  text-decoration: none;
}

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

.contentBody ul>li {
  padding-left: .925em;
  line-height: 1.8;
  text-indent: -.925em;
  margin: 15px 0;
}

.contentBody ul>li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 4px;
  margin-right: 10px;
  background: #fcd721;
  border-radius: 4px;
  vertical-align: middle;
}

/* ol */
.contentBody ol {
  counter-reset: number;
  list-style: decimal;
  margin: 1em;
}

.contentBody ol>li {
  position: relative;
  line-height: 1.5em;
  padding: 0.5em 0.5em 0.5em 40px;
  list-style-type: none;
  margin: 0.25em 0;
}

.contentBody ol>li::before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: inline-block;
      background: #53b015;
    color: #ffffff;
  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: #53b015;
	border: inherit;
}

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

.contentBody table th,
.contentBody table td {
  padding: 15px 20px;
  text-align: left;
  vertical-align: top;
}

.contentBody table[border] th {
  border: 1px solid #999;
  vertical-align: middle;
}

.contentBody table[border] td {
  border: 1px solid #999;
  vertical-align: middle;

}


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

.contentBody table th {
      background: #fcf5d0;
}

.contentBody table td {
	border: 1px;
}

.top-category_about .contentBody table td {
    background: transparent;
}

.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;
  }
}
/* エディタ内table 罫線継承 */
.contentBody table tbody,
.contentBody table thead,
.contentBody table tr,
.contentBody table th,
.contentBody table td {
  border: inherit;
}


/* title */
.contentBody h1,
.contentBody h2 {
  clear: both;
  margin-top: 3em;
  margin-bottom: 2em;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.contentBody h3,
.contentBody h4,
.contentBody h5,
.contentBody h6 {
  clear: both;
  margin-top: 2em;
  margin-bottom: 1em;
  line-height: 1.5;
    font-family: 'Zen Kaku Gothic New', sans-serif;
}

.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: 20px;
}

.contentBody h1 {
  margin-bottom: 2em;
  padding: 20px 10px;
  border-top: 1px solid #53b015;
  border-bottom: 1px solid #53b015;
  font-size: 2em;
  letter-spacing: 5px;
  line-height: 1.3;
}

.contentBody h2 {
    border-left: 12px solid #52b015;
    margin-bottom: 1.5em;
    padding: 8px 18px;
    font-size: 160%;
    line-height: 170%;
    /* color: #fff; */
    letter-spacing: 1px;
    background-color: #53b015;
    background: #fdf7c9;
    border-radius: 7px;
}



.contentBody h3 {
  color: #53b015;
    font-size: 160%;
/*    border-bottom: 1px #fcd721 solid;*/
    padding: 8px 5px;
    letter-spacing: 1px;
}

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

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

@media screen and (max-width: 767px) {
.contentBody h2 {
    margin-top: 2em;
	font-size: 160%;
    margin-bottom: 1em;
}
	
	
.contentBody h3 {
    margin-top: 1em;
    margin-bottom: 0.5em;
    font-size: 150%;
}
	
}

@media screen and (max-width: 481px) {
  .contentBody h1 {
    font-size: 1.333333333em;
  }
}

@media screen and (max-width: 481px) {
  .contentTitle h1 {
    font-size: 155%;
  }

  .contentBody h2 {
    font-size: 135%;
  }

  .contentBody h3 {
    font-size: 120%;
  }
	
  .contentBody h4 {
    font-size: 110%;
  }

  .contentBody ol {
    margin: 1em 0;
  }

  .contentBody ol>li {
    padding: 0.5em 0.5em 0.5em 30px;
  }

  .contentBody ol>li::before {
    font-size: 13px;
    width: 20px;
    height: 20px;
    line-height: 20px;
    top: 16px;
  }

}

.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 20px;
}

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

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

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

  .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%;
}

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

.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!important;
  height: 20px;
  margin: 5px 5px 5px 0;
  vertical-align: middle;
}

/* com-section
============================================================ */
.com-section,
.com-section>section {
  margin-bottom: 100px;
}

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

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

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

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

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

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

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

h1+.com-date-txt {
  margin-top: -3.5em !important;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  h1+.com-date-txt {
    margin-top: -1.25em !important;
  }
}

/* com-print-txt
============================================================ */
.com-print-txt {
  margin-bottom: 2.5em !important;
  text-align: right;
		display: none;
}

.com-print-txt a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.png) no-repeat left center;
  background-size: 20px auto;
}

h1+.com-print-txt {
  margin-top: -3.5em !important;
	
}

.com-date-txt+.com-print-txt {
  margin-top: -2.5em !important;

}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  h1+.com-print-txt {
    margin-top: -1.25em !important;
  }
}

/* com-print-link
============================================================ */
.com-print-link {
  margin-bottom: 2.5em !important;
  text-align: right;
}

.com-print-link a {
  display: inline-block;
  padding-left: 25px;
  background: url(../images/common/print-bg.png) no-repeat left center;
  background-size: 20px auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {}

/* print-btn-list
============================================================ */
.com-print-btn-list {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  padding: 20px;
  background: rgba(0, 0, 0, .8);
  text-align: center;
}

.com-print-btn-list a {
  position: relative;
  display: inline-block;
  margin: 0 10px;
  color: #fff;
  font-weight: bold;
  letter-spacing: .08em;
}

.com-print-btn-list a.close {
  padding-left: 23px;
}

.com-print-btn-list a.close::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.com-print-btn-list a.close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: inline-block;
  width: 19px;
  height: 2px;
  background: #fff;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.com-print-btn-list a.print {
  padding-left: 25px;
  background: url(../images/common/print-bg-wht.png) no-repeat left center;
  background-size: 20px auto;
}

@media print {
  .com-print-btn-list {
    display: none;
  }
}

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

.com-btn {
  position: relative;
    display: inline-block;
    min-width: 215px;
    margin: 0 7px 20px;
    padding: 13px 40px 13px 22px;
    /* border: 1px solid #603814; */
    /* background: #603814; */
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.6;
    text-decoration: none;
    cursor: pointer;
    border-radius: 50px;
    background-color: #53b016;
}

.com-btn.left-arrow {
  padding-right: 22px;
  padding-left: 40px;
}

.com-btn::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.left-arrow::after {
  right: inherit;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}

.com-btn:hover {
  opacity: 0.85;
  color: #fff;
}

.com-btn:hover::after {
  border-top-color: #fff;
  border-right-color: #fff;
}

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

  .com-btn {
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: .933333333333em;
  }

  .com-btn::after {
    width: 7px;
    height: 7px;
  }
}

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

  .com-btn {
    min-width: inherit;
    margin: 0 0 10px;
  }
}

.com-btn.disable {
  background: #888;
  color: #999;
}

/* com-category-list
============================================================ */
/*
.com-category-list {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -20px;
}

.com-category-list li {
  position: relative;
  display: inline-block;
  overflow: hidden;
  width: calc((100% - 20px) / 2 - .1px);
  margin: 0 20px 20px 0;
  padding-bottom: 20px;

 border: 2px solid #53b015;


  text-indent: 0;
  vertical-align: top;
  word-spacing: normal;
}

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

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

.com-category-list li .thumb {
  display: block;
}

.com-category-list li .thumb a {
  overflow: hidden;
  display: block;
  width: 100%;
  height: 248px;
}

.com-category-list li .thumb a img {
  display: block;
  width: 100%;
  height: 248px;
  object-fit: cover;
  font-family: "object-fit: cover;";
}

.com-category-list li .title {
  position: relative;
  display: block;
  margin: 20px 20px 0;
  padding-left: 35px;
  font-size: 1.25em;
  font-weight: bold;
}

.com-category-list li .title::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #53b015;
}

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

.com-category-list li .description {
  display: block;
  min-height: 70px;
  margin: 10px 20px 0;
  padding: 10px 0 0;
  border-top: 1px solid #53b015;
}

.com-category-list li .date {
  display: block;
  padding-left: 57px;
  font-size: .875em;
}

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

  .com-category-list li .thumb a,
  .com-category-list li .thumb a img {
    height: 23.397vw;
  }
}

*/
/* sp
------------------------------------------------------------ */

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

  .com-category-list li {
    width: 100%;
    margin: 0 0 15px 0;
    line-height: 1.6;
  }

  .com-category-list li .thumb a,
  .com-category-list li .thumb a img {
    height: 47.349vw;
  }

  .com-category-list li .title {
    padding-left: 28px;
  }

  .com-category-list li .title::before {
    top: 6px;
    width: 18px;
    height: 18px;
  }

  .com-category-list li .title::after {
    top: 12px;
    width: 6px;
    height: 6px;
  }

  .com-category-list li .date {
    padding-left: 48px;
  }
}


@media screen and (max-width: 700px) {
	
    .com-category-list li .title::before {
        top: 10px;
    }
	
.com-category-list li .title::after {
        top: 16px;
    }
	
}


@media screen and (max-width: 480px) {
	
    .com-category-list li .title::before {
        top: 8px;
    }
	
.com-category-list li .title::after {
        top: 14px;
    }
	
}

*/

/* com-news-list
============================================================ */
.com-news-list ul {
  margin: 0;
}

.com-news-list ul li {
  width: 100%;
  margin: 0;
  padding: 20px 25px;
  line-height: 1.6;
  text-indent: 0;
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: baseline;
}

.com-news-list ul li:nth-child(odd) {
  background-color: #ebf6ed;
}

.com-news-list ul li:nth-child(even) {
  background-color: #fafafa;
}

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

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

.com-news-list ul li .list-category-mark {
  width: 100px;
  /* padding: 3px 5px; */
  background: #fff;
  color: #53b015;
  border: 1px solid #53b015;
  font-size: 80%;
  line-height: 2.1;
  text-align: center;
}

.com-news-list ul li .thumb {
  display: inline-block;
  width: 100px;
  padding-left: 20px;
}

.com-news-list ul li .thumb img {
  width: 100%;
  height: auto;
}

.com-news-list ul li .date {
  padding-left: 20px;
  color: #53b015;
  font-size: 90%;
}

.com-news-list ul li .title {
  padding-left: 10px;
  font-weight: bold;
}

.com-news-list ul li .title .new {
  background: #f80000;
  color: #fff;
  margin-left: 6px;
  padding: 2px 5px;
  font-size: .8em;
}

.com-news-list ul li .title a {
  line-height: 1.7;
}

.com-news-list ul li>*:first-child {
  padding-left: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 767px) {
  .com-news-list ul li {
    flex-wrap: wrap;
    padding: 15px;
    grid-template-rows: auto auto;
  }

  .com-news-list ul li .thumb {
    width: 70px;
  }

  .com-news-list ul li .date {
    width: auto;
  }

  .com-news-list ul li .title {
    width: 100%;
    margin-top: 12px;
    padding-left: 0;
    grid-column: 1/4;
  }
}

/* com-mini-schedule
============================================================ */

.com-mini-schedule .calendar-nav {
  text-align: center;
  margin-bottom: 5px;
}

.com-mini-schedule .calendar-nav span {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}

.com-mini-schedule .calendar-nav span:last-child {
  margin-right: 0;
}

.com-mini-schedule .calendar-nav .now-month {
  font-weight: bold;
  vertical-align: middle;
}

.com-mini-schedule .calendar-nav .prev-month a,
.com-mini-schedule .calendar-nav .next-month a {
  display: inline-block;
  font-weight: bold;
  text-decoration: underline;
  vertical-align: middle;
  cursor: pointer;
}

.com-mini-schedule .calendar-nav .prev-month a:hover,
.com-mini-schedule .calendar-nav .next-month a:hover {
  text-decoration: none;
  opacity: .8;
}

.com-mini-schedule .calendar-nav .prev-month a::before,
.com-mini-schedule .calendar-nav .next-month a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
}

.com-mini-schedule .calendar-nav .prev-month a::before {
  border-width: 6px 8px 6px 0;
  border-color: transparent #333 transparent transparent;
}

.com-mini-schedule .calendar-nav .next-month a::after {
  border-width: 6px 0 6px 8px;
  border-color: transparent transparent transparent #603814;
}

.com-mini-schedule .mini-calendar {
  table-layout: fixed;
  border-collapse: collapse;
  width: auto;
  margin: 0 auto;
}

.com-mini-schedule .mini-calendar .cal-head {
  width: auto;
  height: auto;
  padding: 2px 5px;
  color: #603814;
  background: #f8f7f7;
  border: 1px solid #53b015;
  font-weight: bold;
  text-align: center;
  vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day {
  width: auto;
  height: auto;
  padding: 2px 5px;
  border: 1px solid #53b015;
  text-align: center;
  vertical-align: middle;
}

.com-mini-schedule .mini-calendar .cal-day.gogoshinryoubi {
  background: #c4d9ea;
}

.com-mini-schedule .mini-calendar .cal-day.kyuushinbi {
  background: #ffd3d3;
}

.com-mini-schedule .mini-calendar .cal-day.pre_month,
.com-mini-schedule .mini-calendar .cal-day.next_month {
  background: #f8f7f7;
}

.com-mini-schedule .mini-calendar .cal-head.saturday,
.com-mini-schedule .mini-calendar .cal-day.saturday {
  color: #0a5fa0;
}

.com-mini-schedule .mini-calendar .cal-head.sunday,
.com-mini-schedule .mini-calendar .cal-day.sunday {
  color: #f80000;
}

/* com-calendar-legends
============================================================ */
.com-calendar-legends ul {
  margin: 5px 0 0;
  text-align: center;
}

.com-calendar-legends ul>li {
  display: inline-block;
  margin-right: 5px;
  padding-left: 0;
  font-size: .933333333333em;
  text-indent: 0;
}

.com-calendar-legends ul>li:last-child {
  margin-right: 0;
}

.com-calendar-legends ul>li::before {
  content: "";
  display: inline-block;
  width: 13px;
  height: 13px;
  margin-bottom: 4px;
  margin-right: 5px;
  border-radius: 0;
  background: #603814;
  vertical-align: middle;
}

.com-calendar-legends ul>li.all-day::before {
  background: #ffd3d3;
}

.com-calendar-legends ul>li.afternoon::before {
  background: #c4d9ea;
}

/* page-inner
============================================================ */
.page-inner {
  display: grid;
  grid-template-columns: 75% 20%;
  justify-content: space-between;
}

@media screen and (max-width: 1000px) {
  .page-inner {
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
  }
}

/* com-side-menu-list
============================================================ */
.com-side-menu-list {
  margin-bottom: 40px;
  position: sticky;
  top: 130px;
}

.com-side-menu-list:last-child {
  margin-bottom: 0;
}

.com-side-menu-list h3 {
 padding: 15px 15px;
    background: #53b015;
    color: #fff;
    border-radius: 10px 10px 0 0;
    text-align: center;
    font-size: 130%;
    letter-spacing: 0;
}

.com-side-menu-list ul {
}

.com-side-menu-list ul li {
  border-bottom: 1px dotted #53b015;
    background-color: #fff6f0;
  font-size: 80%;
}

.com-side-menu-list ul li:last-child {
  border-bottom: none;
    border-radius: 0 0 10px 10px;
}

.com-side-menu-list ul li ul li,
.com-side-menu-list ul li ul li:first-child,
.com-side-menu-list ul li ul li:last-child {
  margin: 0;
  padding: 0 0 0 10px;
  border: none;
  text-indent: 0;
}

.com-side-menu-list ul li a,
.com-side-menu-list ul li span.active {
  padding: 10px;
  display: block;
}

.com-side-menu-list ul li span.active {
  background-color: #ffebdd;
  color: #53b015;
}


.com-side-menu-list ul li:last-child span.active{
    border-radius: 0 0 10px 10px;
}

.com-side-menu-list ul li a {
  text-decoration: none;
  cursor: pointer;
}

.com-side-menu-list ul li a:hover {
  background-color: #fff6f0;
  color: #53b015;
}


.com-side-menu-list ul li ul li a,
.com-side-menu-list ul li ul li span {
  position: relative;
  padding-left: 15px;
  font-weight: lighter;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-side-menu-list {
    margin-bottom: 40px;
    position: sticky;
    top: 100px;
    margin-top: 40px;
  }

  .com-side-menu-list {
    margin-bottom: 20px;
  }
}

/* com-side-bnr-list
============================================================ */
.com-side-bnr-list {
  margin-bottom: 40px;
}

.com-side-bnr-list:last-child {
  margin-bottom: 0;
}

.com-side-bnr-list li {
  margin-bottom: 20px;
}

.com-side-bnr-list li:last-child {
  margin-bottom: 0;
}

.com-side-bnr-list li img {
  width: 100%;
  height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-side-bnr-list {
    margin-bottom: 20px;
  }

  .com-side-bnr-list li {
    margin-bottom: 10px;
  }
}

/* com-faq
============================================================ */
.com-faq-wrap {
  width: 100%;
  margin: 0 auto;
}

.com-faq {
  position: relative;
  margin-bottom: 40px;
}

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

.com-faq .title {
  position: relative;
  border: 1px solid #53b015;
  margin: 0;
  padding: 13px 55px 13px calc(1.2em + 15px + 20px);
  font-size: 1.333333333333em;
  font-weight: bold;
  color: #603814;
  background: #fff;
  line-height: 1.4;
  text-indent: calc(-1.2em - 15px);
  cursor: pointer;
}

.com-faq .title::after {
  content: "";
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 25px;
  top: calc(50% - 4px);
  width: 15px;
  height: 15px;
  border-top: 1px solid #53b015;
  border-right: 1px solid #53b015;
  transition: all .2s ease-in-out;
  -webkit-transform: translateY(-50%) rotate(135deg);
  transform: translateY(-50%) rotate(135deg);
}

.com-faq .title.active::after {
  top: calc(50% + 4px);
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.com-faq .title .title-q {
  display: inline-block;
  margin-right: 15px;
  font-weight: bold;
  text-indent: 0;
}

.com-faq .body {
  display: none;
  background: #f8f8f8;
}

.com-faq .body .body-inner {
  padding: 25px 30px;
  text-align: justify;
}

.com-faq .body .body-inner> :last-child {
  margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-faq {
    margin-bottom: 30px;
  }

  .com-faq .title {
    padding: 13px 45px 13px calc(1.2em + 10px + 20px);
    text-indent: calc(-1.2em - 10px);
  }

  .com-faq .title::after {
    right: 20px;
    width: 13px;
    height: 13px;
  }

  .com-faq .title .title-q {
    margin-right: 10px;
  }

  .com-faq .body .body-inner {
    padding: 20px 25px;
  }
}

@media screen and (max-width: 481px) {
  .com-faq {
    margin-bottom: 25px;
  }

  .com-faq .title {
    padding: 8px 40px 8px calc(1.2em + 5px + 15px);
    text-indent: calc(-1.2em - 5px);
    font-size: 1.2em;
    line-height: 1.35;
  }

  .com-faq .title::after {
    right: 15px;
    width: 12px;
    height: 12px;
  }

  .com-faq .title .title-q {
    margin-right: 5px;
  }

  .com-faq .body .body-inner {
    padding: 15px 20px;
  }
}

/* com-table
============================================================ */

/* sp
------------------------------------------------------------ */
@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) {
  .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-top: 100px;
  padding: 20px;
  border: 1px solid #53b015;
}

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

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

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-signature address {
    margin-top: 50px;
    padding: 20px;
  }

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

/* pc-only/sp-only
============================================================ */
@media screen and (min-width: 812px) {
  .sp-only {
    display: none !important;
  }
}

@media print {
  .sp-only {
    display: none !important;
  }
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .pc-only {
    display: none !important;
  }
}

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

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

/* sp
------------------------------------------------------------ */
@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;
  }
}

@media print {

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

/* Styles
================================================== */

/* 管理画面エディタ上のスタイルXX のテキスト変更したい場合は以下を参考にコメント追加ください。(spanタグ) */
/* selector:style class:style1 title:スタイル1 */



/* selector:style class:style1 title:ボタンリンク */
.style1 {
  font-size: 125%;
    margin: 20px 0;
    font-weight: bold;
    display: block;
    padding: 20px 65px 20px 28px;
    text-decoration: none;
    border: 3px solid #53b015;
    background-color: #ffffff;
    color: #603814;
    border-radius: 15px;
    /* box-shadow: 0px 0px 0px 5px #fae8a7; */
    /* border: dashed 2px #FFF; */
    transition: all 0.2s ease-in-out;
	background-image: url(../images/arrow.png);
    background-repeat: no-repeat;
    background-position: right 25px center;
    background-size: 25px;
	
}

.style1 a {
  text-decoration: none;
  display: block;
}


.style1:hover {
  background-color: #fdf7c9;
}


/* selector:style class:style1 title:大きめ太文字 */
.style2 {
    vertical-align: middle;
    font-weight: bold;
    /* text-align: center; */
    font-size: 120%;
}

/* selector:style class:style1 title:数字用 */
.style3 {
  display: inline-block;
    vertical-align: middle;
    font-weight: bold;
    text-align: center;
    font-size: 110%;
    /* background: linear-gradient(transparent 70%, #f4ff9c 70%); */
    border-radius: 50px;
    width: 30px;
    height: 30px;
    background-color: #fcd721;
    margin-right: 7px;
}

/* selector:style class:style1 title:小文字 */
.style4 {
  font-size: 80%;
    line-height: 150%;
}

/* selector:style class:style1 title:中文字 */
.style5 {
  font-size: 160%;
    color: #53b015;
    font-weight: bold;
    line-height: 160%;
}

@media screen and (max-width: 550px) {
.style5 {
    font-size: 140%;
}
}

/* selector:style class:style1 title:中文字 */
.style6 {
  font-size: 150%;
  color: #fcd721;
  font-weight: bold;
}

.style7 {}
/*

.style8 {
	width: 100%;
    margin-bottom: 25px;
    font-size: 150%;
    font-weight: bold;
    display: block;
    background-color: #53b015;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 0 4px gray;
	background-image: url(../images/arrow_w.png);
	background-repeat: no-repeat;
	background-position: right 30px center;
	background-size: 15px;
}

.style8 a,.style8 a:visited{
	color: #fff!important;
	text-decoration: none;
	display: block;
	padding: 8%;
}

.style8:hover{
    background-color: #fcd721!important;
}

.style8:hover a{
	color: #53b015!important;
}


.style9 {
  color: #53b015;
  font-size: 220%;
  line-height: 140%;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.style10 {
    color: #fcd721;
    font-size: 220%;
    line-height: 140%;
    font-weight: 700;
}
*/

/*

@media screen and (max-width: 500px) {
.style10 {
    font-size: 190%;
}
}

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

  .style6 {
    font-size: 120%;
    line-height: 170%;
  }
}
*/

/* 管理画面エディタ上で独自クラスでスタイル追加したい場合、以下のように追記ください。(pタグ) */
/* selector:style class:p-sankoubunken title:参考文献 tag:p
  （有効にしたい場合、1行で閉じること）
.p-sankoubunken,
.contentBody p.p-sankoubunken
{
}
*/

.scroll-table {
  overflow-x: scroll;
}

.scroll-table table {
  -webkit-overflow-scrolling: touch;
}



/* sect-form
============================================================ */

.sect-form {
	max-width: 1100px;
	 margin: 30px auto;
	padding: 0 30px
}


.sect-form .required {
  color: #f80000;
}
.sect-form .sect-form-body {
  width: 100%;
  margin-bottom: 50px;
  border: 1px solid #6c6c6c !important;
}
.sect-form .sect-form-body th {
  border: 1px solid #6c6c6c;
  text-align: left;
  vertical-align: top;
  width: 250px !important;
}

@media only screen and (max-width: 1024px) {
.sect-form .sect-form-body th {
  width: 100% !important;
}
}

.sect-form .sect-form-body th .label-list-wrap {
  position: relative;
  padding-right: 37px;
}
.sect-form .sect-form-body th .label-list-wrap .required {
  position: absolute;
  top: 6px;
  right: 0;
  padding: 4px 5px 5px;
  background-color: #f15a24;
  color: #fff;
  font-size: 12px;
  text-indent: 0;
  line-height: 1;
  vertical-align: top;
	border-radius: 5px;
}
.sect-form .sect-form-body td {
  border: 1px solid #6c6c6c;
  text-align: left;
  vertical-align: top;
}
.sect-form .sect-form-body td p {
  margin: 0.5em 0 0;
  font-size: 0.9333333333em;
}
.sect-form .sect-form-body label {
  cursor: pointer;
}
.sect-form .sect-form-body input[type=text] {
  padding: 10px 15px;
  width: 400px;
  font-size: 16px;
}
.sect-form .sect-form-body input[type=tel] {
  padding: 10px 15px;
  width: 160px;
  font-size: 16px;
}
.sect-form .sect-form-body input[type=date] {
  padding: 10px 15px;
  width: 160px;
  font-size: 16px;
}
.sect-form .sect-form-body input[type=email] {
  padding: 10px 15px;
  width: 400px;
  font-size: 16px;
}
.sect-form .sect-form-body input[type=password] {
  padding: 10px 15px;
  width: 400px;
  font-size: 16px;
}
.sect-form .sect-form-body textarea {
  padding: 10px 15px;
  min-height: 30vh;
  width: 100%;
  font-size: 16px;
}


.enquete-item-width-20-per {
  width: 20% !important;
}
.enquete-item-width-25-per {
  width: 25% !important;
}
.enquete-item-width-30-per {
  width: 30% !important;
}
.enquete-item-width-35-per {
  width: 35% !important;
}
.enquete-item-width-40-per {
  width: 40% !important;
}
.enquete-item-width-45-per {
  width: 45% !important;
}
.enquete-item-width-50-per {
  width: 50% !important;
}
.enquete-item-width-55-per {
  width: 55% !important;
}
.enquete-item-width-60-per {
  width: 60% !important;
}
.enquete-item-width-65-per {
  width: 65% !important;
}
.enquete-item-width-70-per {
  width: 70% !important;
}
.enquete-item-width-75-per {
  width: 75% !important;
}
.enquete-item-width-80-per {
  width: 80% !important;
}
.enquete-item-width-85-per {
  width: 85% !important;
}
.enquete-item-width-90-per {
  width: 90% !important;
}
.enquete-item-width-95-per {
  width: 95% !important;
}
.enquete-item-width-100-per {
  width: 100% !important;
}

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

.enquete-item-width-20-per {
  width: 160px !important;
}
.enquete-item-width-25-per {
  width: 160px !important;
}
.enquete-item-width-30-per {
  width: 160px !important;
}
.enquete-item-width-35-per {
  width: 160px !important;
}
.enquete-item-width-40-per {
  width: 100% !important;
}
.enquete-item-width-45-per {
  width: 100% !important;
}
.enquete-item-width-50-per {
  width: 100% !important;
}
.enquete-item-width-55-per {
  width: 100% !important;
}
.enquete-item-width-60-per {
  width: 100% !important;
}
.enquete-item-width-65-per {
  width: 100% !important;
}
.enquete-item-width-70-per {
  width: 100% !important;
}
.enquete-item-width-75-per {
  width: 100% !important;
}
.enquete-item-width-80-per {
  width: 100% !important;
}
.enquete-item-width-85-per {
  width: 100% !important;
}
.enquete-item-width-90-per {
  width: 100% !important;
}
.enquete-item-width-95-per {
  width: 100% !important;
}
.enquete-item-width-100-per {
  width: 100% !important;
}


}

.sect-form .sect-form-body select {
  padding: 10px 15px;
  max-width: 100%;
  margin: 0 2px 0 10px;
}
.sect-form .sect-form-body select:first-child {
  margin-left: 0;
}
.sect-form .sect-form-body input[type=text].p-postal-code {
  width: 120px;
}
.sect-form .sect-form-body input[type=checkbox] + label {
  margin-right: 20px;
}
.sect-form .sect-form-body input[type=radio] + label {
  margin-right: 20px;
}
.sect-form .sect-form-body .input_error {
  background-color: #ffd3d3;
  border-color: #ff5757;
}
.sect-form .sect-form-body .enquete-form-errors-list {
  color: #f80000;
  font-weight: bold;
}
.sect-form .sect-form-body .enquete-form-errors-list span {
  display: block;
}
.sect-form .tbl-login th {
  width: 180px;
}
.sect-form .sect-form-error {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #f80000;
  background: #ffd3d3;
  border: 2px solid #ff5757;
}
.sect-form .sect-form-error:last-child {
  margin-bottom: 0;
}
.sect-form .sect-form-error li::before {
  background: #f80000;
}
.sect-form .sect-form-limit {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #f89b00;
  background: #ffeed3;
  border: 2px solid #ffc057;
}
.sect-form .sect-form-limit:last-child {
  margin-bottom: 0;
}
.sect-form .sect-form-count {
  margin-bottom: 2em;
  padding: 15px 20px;
  color: #0a5fa0;
  background: #c4d9ea;
  border: 2px solid #4584b5;
}
.sect-form .sect-form-count:last-child {
  margin-bottom: 0;
}
.sect-form .sect-form-msg {
  margin-bottom: 2em;
}
.sect-form .sect-form-msg:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  .sect-form .sect-form-body {
    width: 100%;
    margin-bottom: 25px;
    border-right: none;
    border-left: none;
  }
  .sect-form .sect-form-body th {
    width: 100%;
    display: block;
    border: none;
    padding-top: 5px;
    padding-bottom: 5px;
  }
  .sect-form .sect-form-body th .label-list-wrap .required {
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }
  .sect-form .sect-form-body td {
    width: 100%;
    display: block;
    border: none;
    border-top: none;
    padding-top: 15px;
    padding-bottom: 30px;
  }
  .sect-form .sect-form-body input[type=text] {
    width: 100%;
  }
  .sect-form .sect-form-body input[type=email] {
    width: 100%;
  }
  .sect-form .sect-form-body input[type=password] {
    width: 100%;
  }
  .sect-form .sect-form-body textarea {
    min-height: 30vh;
    max-height: 50vh;
  }
  .sect-form .sect-form-error {
    margin-bottom: 1.5em;
  }
  .sect-form .sect-form-limit {
    margin-bottom: 1.5em;
  }
  .sect-form .sect-form-count {
    margin-bottom: 1.5em;
  }
  .sect-form .sect-form-msg {
    margin-bottom: 1.5em;
  }
}
@media only screen and (max-width: 599px) {
  .sect-form .com-btn.back-btn {
    padding-right: 17px;
    padding-left: 35px;
  }
}
/* sect-form-complete
============================================================ */
.sect-form-complete p {
  text-align: center;
}
.sect-form-complete p.double-mb {
  margin-bottom: 2em;
}

@media only screen and (max-width: 1024px) {
  .sect-form-complete p {
    text-align: left;
  }
}



/* template
============================================================ */

.waku{
	width: 100%;
    background-color: #fff;
    border: 2px #fcd721 dotted;
    border-radius: 30px;
    padding: 30px;
    margin: 40px 0;
}

.waku2{
	width: 100%;
    background-color: #fff8d0;
    border-radius: 30px;
    padding: 30px;
    margin: 40px 0;
}

.waku2 table {
    margin-bottom: 0;
	background-color: transparent;
}

.waku2 table img{
	border-radius: 10px;
}

.waku2 table td{
	background-color: transparent;
}

.waku p {
    margin: 0 0 1.5em 0;
}


@media only screen and (max-width: 767px) {
	
	
.waku2 table colgroup,.waku2 table tbody,.waku2 table tr{
	width: 100%;
	display: block;
	}
	
	.waku2 table td{
		width: 100%;
		display: block;
        text-align: center;
	}
}

.waku.nagare01,
.waku.nagare02,
.waku.nagare03,
.waku.nagare04,
.waku.nagare05,
.waku.nagare06,
.waku.nagare07
{
	background-repeat: no-repeat;
    background-position: top 20px right 20px;
    background-size: 100px;
    padding: 30px 150px 30px 30px;
}


@media only screen and (max-width: 580px) {
	
	
.waku.nagare01, .waku.nagare02, .waku.nagare03, .waku.nagare04, .waku.nagare05, .waku.nagare06, .waku.nagare07 {
    background-repeat: no-repeat;
    background-position: top 20px right 20px;
    background-size: 60px;
    padding: 30px 30px 30px 30px;
    margin: 20px 0;
    line-height: 200%;
}
	
}

@media only screen and (max-width: 480px) {
	
    .waku.nagare01, .waku.nagare02, .waku.nagare03, .waku.nagare04, .waku.nagare05, .waku.nagare06, .waku.nagare07 {
        padding: 40px;
	}
}


@media only screen and (max-width: 400px) {
.waku.nagare01, .waku.nagare02, .waku.nagare03, .waku.nagare04, .waku.nagare05, .waku.nagare06, .waku.nagare07 {
        padding: 30px;
        font-size: 80%;
	    background-size: 48px;
    }
}


.waku.nagare01{
	background-image: url(../images/nagare01.jpg);
}

.waku.nagare02{
	background-image: url(../images/nagare02.jpg);
}

.waku.nagare03{
	background-image: url(../images/nagare03.jpg);
}

.waku.nagare04{
	background-image: url(../images/nagare04.jpg);
}

.waku.nagare05{
	background-image: url(../images/nagare05.jpg);
}

.waku.nagare06{
	background-image: url(../images/nagare06.jpg);
}

.waku.nagare07{
	background-image: url(../images/nagare07.jpg);
}


/*gyoujiyotei*/

.gyoji-list-div{
	display: flex;
    justify-content: flex-start;
    padding-bottom: 40px;
	padding-top: 40px;
    margin-bottom: 0;
    border-bottom: 2px #fcd721 dotted;
}

.gyoji-list-div:last-child{
	padding-bottom: 40px;
    margin-bottom: 0;
    border-bottom: none;
}




.gyoji-list-div-image{
    margin-right: 40px;
}

.gyoji-list-div-image img{
	width: auto;
	max-width: 290px;
}

@media screen and (max-width: 870px) {
.gyoji-list-div-image img {
    max-width: 250px;
}
	
.gyoji-list-div {
    padding-bottom: 40px;
    padding-top: 20px;
    margin-bottom: 20px;
}
	
.gyoji-list-div:last-child {
    padding-bottom: 10px;
}
	
}

@media screen and (max-width: 770px) {
.gyoji-list-div-image img {
    max-width: 220px;
}
}

@media screen and (max-width: 600px) {
.gyoji-list-div-image img {
    max-width: 190px;
}
}

.gyoji-list-div-image-text{
	    font-size: 90%;
	    line-height: 170%;
}

.gyoji-list-div-image-text h3 {
    color: #53b015;
    font-size: 140%;
    /* border-bottom: 1px #fcd721 solid; */
    padding: 0;
	margin-top: 0!important;
	margin-bottom: 20px;
}



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

.gyoji-list-div {
    display: block;
        text-align: center;
}
	
.gyoji-list-div-image {
    margin-right: 0;
    margin-bottom: 30px;
}
	
}


.cell2{
	margin: 0px auto;
	
}
.cell2 td{
	padding:0px 10px;
	
	
}
.cell3{
	
	
}
.cell4{
	
	
}
@media screen and (max-width: 560px) {
	.cell2 td{
	display: block;
		width: 100%;
	
}
	.cell3 td{
	display: block;
		width: 100%;
	
}
		.cell3 col{
	display: block;
		width: 100%;
	
}
		.cell3 td img{
		width: 100%;
	
}
		.cell4 td{
	display: block;
		width: 100%;
	
}
			.cell4 col{
	display: block;
		width: 100%;
	
}
			.cell4 td img{
		width: 100%;
	
}
	
}



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

table.bosyuu{
	font-size: 90%;
	}
	
table.bosyuu th,table.bosyuu td,table.bosyuu tr{
	width: 100%;
	display: block;
	}
	
	
table.bosyuu td{
	background-color: #fff;
	padding: 15px;
	}
	
table.bosyuu th{
	padding: 15px;
	}
	
	
table.bosyuu tr{
	border: none;
	}
	
	
	
	
table.mbl-tbl{}
	
	
table.mbl-tbl col {
	width: 100%!important;
}
	
table.mbl-tbl th,table.mbl-tbl td,table.mbl-tbl tr{
	width: 100%;
	display: block;
    text-align: center;
    margin: 0 auto;
	}
	
	
table.mbl-tbl td img{
	width: 100%;
	}
	


}









