@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: #000;
  font-family: 'Noto Sans JP', sans-serif;
/*  font-feature-settings: "palt";*/
  font-size: 16px;
  font-weight: 400;
  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;
  margin: 0;
}

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: #005b4c;
    font-weight: bold;
    width: 100%;
    text-align: center;
}

.contentDescription p {
  font-weight: bold;

}



.contentHeader .date {
  padding: 5px 5px 10px 0;
    color: #005b4c;
    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: #000;
  text-decoration: underline;
  outline: none;
}

a:visited {
  color: #000;
}

a:hover,
a:active {
  color: #005b4c;
  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: #333;
  border: 1px solid #005b4c;
  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: #005b4c;
  text-shadow: none;
}

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

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

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

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

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

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

/* ul */
.contentBody ul:not(.com-pageLinksList) {
  margin-bottom: 1em;
  text-indent: 0;
}

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

.contentBody ul:not(.com-pageLinksList)>li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 4px;
  margin-right: 10px;
  background: #005b4c;
  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: #f6d86d;
  color: #333;
  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: #005b4c;
	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: #f1f0e7;
}

.contentBody table td {
  background: #fff;
	border: 1px;
}

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

.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: 2em;
  padding: 20px 10px;
  border-top: 1px solid #005b4c;
  border-bottom: 1px solid #005b4c;
  font-size: 2em;
  letter-spacing: 5px;
  line-height: 1.3;
}

.contentBody h2 {
  border-left: 12px solid #b99814;
    margin-bottom: 1.5em;
    padding: 13px 15px;
    font-size: 180%;
    line-height: 1.3;
    color: #fff;
    letter-spacing: 1px;
    background-color: #005b4c;
}

.contentBody h3 {
  color: #005b4c;
    font-size: 160%;
    border-bottom: 1px #b99814 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: #005b4c;
  vertical-align: middle;
  border-radius: 1px;
}

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

  .contentBody h2 {}

  .contentBody h3 {}

  .contentBody h4 {}
}

@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: 145%;
  }

  .contentBody h3 {
    font-size: 130%;
  }

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

.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 #005b4c;
  background: #005b4c;
  color: #fff;
  font-size: 1em;
  font-weight: bold;
  line-height: 1.6;
  text-decoration: none;
  cursor: pointer;
}

.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 {
  background: #005b4c;
  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 #005b4c;
  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: 9px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #005b4c;
}

.com-category-list li .title::after {
  content: "";
  position: absolute;
  top: 15px;
  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 #005b4c;
}

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

/* com-news-list
============================================================ */
.list-category-mark {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  width: fit-content;
  min-width: 6em;
  font-size: 90%;
  font-weight: 500;
  line-height: 1.4em;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #b99814;
  padding: 0.2em 0.5em;
}

.com-news-list {
  margin: 3.0rem 0 6.0rem;
}

@media screen and (max-width: 860px) {
  .com-news-list {
    gap: 2.0rem 2.0rem;
    margin: 2.0rem 0 4.0rem;
  }
}

.com-news-list ul {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap: 3.0rem 3.0rem;
	width: 100%;
}

@media screen and (max-width: 860px) {
	.com-news-list ul {
		gap: 2.0rem 1.0rem;
	}
}

.com-news-list ul li {
	display: block;
	width: calc(100% / 3 - (3.0rem * 2 /3));
}
@media screen and (max-width: 860px) {
	.com-news-list ul li {
		width: calc(100% / 3 - (1.0rem * 2 /3));
	}
}
@media screen and (max-width: 600px) {
	.com-news-list ul li {
		width: calc(50% - 0.5rem);
	}
}


.com-news-list ul li:last-child {
	border-bottom: none;
}

.com-news-list ul li .thumb {
	width: 100%;
	display: block;
}

.com-news-list ul li .thumb > a {
	display: block;
	width: 100%;
	padding-bottom: 75%;
	position: relative;
}

.com-news-list ul li .thumb > a > img {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	top: 50%;
	right: 50%;
	transform: translate(50%, -50%);
}

.com-news-list ul li .textGroup {
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	gap:  0.5rem 1.0rem;
	width: 100%;
	flex-grow: 1;
	margin: 1.0rem 0 0;
}

.com-news-list ul li .date {
	order: 1;
	display: block;
	color: #005b4c;
}

.com-news-list ul li .list-category-mark {
	order: 2;
}

.com-news-list ul li .title {
	order: 3;
	display: block;
	width: 100%;
}

.com-news-catTabList {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	width: 100%;
	gap: 1.0rem 1.0rem;
}
@media screen and (max-width: 600px) {
	.com-news-catTabList {
		gap: 0.5rem 0.5rem;
	}
}

.com-news-catTabList > li {
	display: block;
	width: calc(100% / 6 - (1.0rem * 5 / 6));
	color: #005b4c;
	font-size: 100%;
	font-weight: 600;
	line-height: 1.5em;
	letter-spacing: 0.06em;
	background-color: #fff;
	border: 1px solid #005b4c;
	transition: background-color 0.2s ease-in;
}
@media screen and (max-width: 860px) {
	.com-news-catTabList > li {
		width: calc(100% / 3 - (1.0rem * 2 / 3));
	}
}

.com-news-catTabList > li .active,
.com-news-catTabList > li:hover {
	color: #fff;
	background-color: #005b4c;
}

.com-news-catTabList > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	align-content: center;
	flex-wrap: wrap;
	width: 100%;
	height: 100%;
	color: inherit;
	font-size: inherit;
	font-weight: inherit;
	line-height: inherit;
	letter-spacing: inherit;
	text-decoration: none;
	padding: 0.5em 0.5em;
}
.com-news-catTabList > li > a:hover {
	opacity: 1 !important;
}

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

.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: #333;
  background: #f8f7f7;
  border: 1px solid #005b4c;
  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 #005b4c;
  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: #333;
  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: #005b4c;
  color: #fff;
}

.com-side-menu-list ul {
}

.com-side-menu-list ul li {
  border-bottom: 1px dotted #005b4c;
  font-size: 80%;
}

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

.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: #f1f0e7;
  color: #005b4c;
}

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

.com-side-menu-list ul li a:hover {
  background-color: #f1f0e7;
  color: #005b4c;
}


.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 #005b4c;
  margin: 0;
  padding: 13px 55px 13px calc(1.2em + 15px + 20px);
  font-size: 1.333333333333em;
  font-weight: bold;
  color: #333;
  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 #005b4c;
  border-right: 1px solid #005b4c;
  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 #005b4c;
}

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

.com-signature address .department {
  margin-bottom: .5em;
  border-bottom: 1px solid #005b4c;
  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 */
.style1 {
  font-size: 115%;
    margin: 3% 0;
    font-weight: bold;
    display: block;
    padding: 12px;
    text-decoration: none;
    border: 2px solid #005b4c;
    /* background: #fae8a7; */
    color: #000;
    /* box-shadow: 0px 0px 0px 5px #fae8a7; */
    /* border: dashed 2px #FFF; */
    transition: all 0.2s ease-in-out;
}

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


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



.style2 {
  display: inline-block;
  vertical-align: middle;
  font-weight: bold;
  text-align: center;
  font-size: 110%;
  background: linear-gradient(transparent 70%, #e9e0ba 70%);
}

.style3 {
  font-size: 150%;
  color: #000;
}

.style4 {
  font-size: 80%;
    line-height: 150%;
}

.style5 {}

.style6 {
  font-size: 150%;
  color: #005b4c;
  font-weight: bold;
}

.style7 {}

.style8 {
	width: 100%;
    margin-bottom: 25px;
    font-size: 150%;
    font-weight: bold;
    display: block;
    background-color: #005b4c;
    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: #b99814!important;
}

.style8:hover a{
	color: #005b4c!important;
}


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

.style10 {
    color: #b99814;
    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;
}





/* waku
---------------------------------------------------------------*/

.waku {
  display: inline-block;
  width: 100%;
  margin: 0 0 2em 0;
  position: relative;
  padding: 3%;
  border: 1px solid #005b4c;
  background-color: #fffbeb;
}

table.p5 {
  margin-top: 25px;
  margin-bottom: 0;
}

.p5-5 {
  background-color: #ffd9d9;
}

.p5-1 {
  background-color: #f2e9fc;
}

.p5-2 {
  background-color: #ffeccd;
}

.p5-3 {
  background-color: #ffeafa;
}

.p5-4 {
  background-color: #e0f6fd;
}


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

  .waku {
    padding: 5%;
    font-size: 85%;
  }

}

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

  .waku {
    padding: 4%;
  }

  .waku .style6 {
    line-height: unset;
  }

}


.com-borderBlock {
  display: block;
  border: 1px solid #b99814;
  padding: 1.5em;
  width: 100%;
  margin: 1.0rem auto 1.0rem;
}

/* login
---------------------------------------------------------------*/
.login {
  max-width: 600px;
  margin: 60px auto;
}

.login .sect-form-body {
  width: 100%;
}

.login .sect-form-body input {
  width: 100%;
}

/* sipport
---------------------------------------------------------------*/
.support {
  max-width: 700px;
  margin: auto;
}

.support__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.support__tags-item {
  width: calc(25% - 7.5px);
}

.support__tags-item a,
.support__lists-category {
  position: relative;
  background-color: #005b4c;
  color: #fff;
  text-decoration: none;
  padding: 5px;
  display: block;
  font-size: 80%;
  border: 2px solid #005b4c;
}

.support__tags-item a::before,
.support__lists-category::before {
  content: '\f02b';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #fff;
  padding-right: 5px;
  transition: all 0.2s ease-in-out;
}

.support__tags-item a:hover {
  color: #005b4c;
  background: #fff;
}

.support__tags-item a:hover::before {
  color: #005b4c;
}

.support__search {
  margin: 15px 0 45px;
}

.support__search input[type="text"] {
  padding: 7px 10px;
  width: 250px;
}

.support__search input[type="image"] {
  height: 30px;
}

.support__search-clear {
  font-size: 80%;
  margin-left: 10px;
}

.support__lists {}

.support__lists-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 20px;
  padding: 20px;
  background: #fafafa;
}

.support__lists-item:nth-child(odd) {
  background: #ebf6ed;
}

.support__lists-thumb a {
  position: relative;
  display: block;
}

.support__lists-thumb a::before {
  content: "";
  padding-top: 100%;
  display: block;
}

.support__lists-thumb a img {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
}

.support__lists-title {
  display: block;
  font-weight: bold;
  font-size: 120%;
  margin-bottom: 10px;
}

.support__lists-title a {
  text-decoration: none;
}

.support__lists-category {
  display: inline-block;
  padding: 2px 10px;
}

@media screen and (max-width: 700px) {
  .support__tags-item {
    width: calc(50% - 5px);
  }

  .support__search input[type="text"] {
    padding: 5px 8px;
    width: calc(100% - 40px);
  }

  .support__search input[type="image"] {
    height: 25px;
  }

  .support__search-clear {
    display: block;
    font-size: 80%;
    margin-left: 0;
    margin-top: 10px;
  }

  .support__lists-item {
    padding: 20px;
    grid-template-columns: 100%;
  }

  .support__lists-thumb a {
    background: #fff;
    height: calc((100vw - 120px) / 3 * 2);
    margin: auto;
  }

  .support__lists-thumb a::before {
    padding-top: 66%;
  }

  .support__lists-title {
    font-size: 110%;
    margin-bottom: 5px;
  }

}

/*
     FILE ARCHIVED ON 18:36:02 Aug 23, 2022 AND RETRIEVED FROM THE
     INTERNET ARCHIVE ON 07:39:37 Sep 29, 2022.
     JAVASCRIPT APPENDED BY WAYBACK MACHINE, COPYRIGHT INTERNET ARCHIVE.

     ALL OTHER CONTENT MAY ALSO BE PROTECTED BY COPYRIGHT (17 U.S.C.
     SECTION 108(a)(3)).
*/
/*
playback timings (ms):
  captures_list: 60.868
  exclusion.robots: 0.077
  exclusion.robots.policy: 0.07
  RedisCDXSource: 12.084
  esindex: 0.009
  LoadShardBlock: 34.738 (3)
  PetaboxLoader3.datanode: 129.235 (4)
  CDXLines.iter: 12.176 (3)
  load_resource: 205.677
  PetaboxLoader3.resolve: 75.836
*/



/* competition
============================================================ */

.c_thumb{
	text-align: center;
}

.c_thumb img{
	width: 100%;
    max-width: 500px;
}

.c_photo{
	text-align: center;
	margin-bottom: 40px;
}

.c_photo img{
	width: 100%;
}

.c_explanation{
	font-size: 112%;
    line-height: 180%;
}


/*タイトル付き（ラベルボックス）*/
.c_box{
	display: none;
	margin: 5em auto 2em auto;
    background-color: #fff;
    padding: 2em;
    position: relative;
    border: 2px solid #c3a737;
    line-height: 200%;
    font-size: 110%;
}

.c_box h3.box-title {
	background-color: #fff;
    font-size: 160%;
    font-weight: 800;
    color: #266c53;
    padding: 0px 17px;
    line-height: 1;
    position: absolute;
    top: -15px;
    left: 20px;
	border-bottom: none;
}

.c_charm{}


.newspaper {
    background-color: #f1f0e7;
    padding: 5%;
    margin: 4% 0;
}

.newspaper h3{
	font-size: 300%;
    font-family: 'Anton', sans-serif;
    letter-spacing: 0.05em;
    text-align: center;
    font-weight: 400;
    padding-bottom: 5px;
	margin-bottom: 0;
    padding: 0 0 5px 0;
    border-bottom: none;
}

.newspaper h4{
	text-align: center;
    font-weight: bold;
    color: #b99814;
    margin-top: 0;
    margin-bottom: 5%;
    font-size: 97%;
    font-family: 'Noto Sans JP', sans-serif;
    padding-left: 0;
}

.newspaper h4::before{
	display: none;
}


@media screen and (max-width:570px) {
.newspaper h3 {
    font-size: 230%;
    letter-spacing: 0.03em;
    text-align: center;
	line-height: 1.2;
}
	
.newspaper h4 {
    margin-bottom: 10%;
}
	
}
	
	
@media screen and (max-width:520px) {
	
.newspaper {
    background-color: #f1f0e7;
    padding: 10%;
    margin: 4% 0;
}
	}


@media screen and (max-width:450px) {
	
.newspaper {
    padding: 7%;
}
}


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

table.competition_tbl{
	font-size: 90%;
    line-height: 155%;
	}
	
}


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

table.competition_tbl td{
	width: 100%;
	display: block;
	}
	
table.competition_tbl2 td {
	width: auto;
    display: table-cell;
	}
	
.style8 a, .style8 a:visited {
    color: #fff;
    text-decoration: none;
    display: block;
    padding: 25px;
    font-size: 120%;
}
	
}