@charset "utf-8";

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

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

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

body {
  min-width: 320px;
  margin: 0;
  color: #4a4a4a;


font-family: "M PLUS Rounded 1c", sans-serif;
font-weight: 400;
font-style: normal;


  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.6;
  -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 {
  margin: 0;
}

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

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

small,
.font-small {
  font-size: 0.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;
}

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

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

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

a:visited {
  color: #4a4a4a;
}

a img {
  border: none;
}

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

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

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

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

input[type="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 0.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 0.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: 0.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: #eb7c7f;
  text-shadow: none;
}
::selection {
  color: #fff;
  background: #eb7c7f;
  text-shadow: none;
}
input::selection,
textarea::selection {
  color: #333;
}

/*** placeholder ***/
::placeholder {
  color: #6c6c6c;
  opacity: 1;
}
::-ms-input-placeholder {
  color: #6c6c6c;
  opacity: 1;
}
:focus::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: -0.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;
}

/*** disable-tel ***/
.com-disable-tel {
  cursor: default !important;
  pointer-events: none !important;
  text-decoration: none !important;
}

/*** 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;
}
/* a */
.contentBody a[target="_blank"]::after,
.contentBody a.download::after,
.contentBody a[download]::after {
  font-family: "icomoon" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.contentBody a[target="_blank"]::after {
  content: "\ea7e";
}
.contentBody a.download::after,
.contentBody a[download]::after {
  content: "\e9c7";
}

/* p */
.contentBody p {
  margin-bottom: 1em;
}
/* u */
.contentBody u {
  background: linear-gradient(transparent 60%, rgba(255, 255, 0, 0.4) 60%);
  text-decoration: none;
}
/* blockquote */
.contentBody blockquote {
  position: relative;
  margin: 0 0 2em;
  padding: 10px 20px;
  border-left: 5px solid #999;
  border-radius: 2px;
  font-size: 0.875em;
}
.contentBody blockquote::after {
  content: "”";
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0.1;
  font-family: sans-serif;
  font-size: 6em;
  line-height: 0;
}
/* pre */
.contentBody pre {
  margin: 0 0 2em;
  padding: 11px 20px;
  border-radius: 2px;
  background: #eee;
  font-size: 0.875em;
}
/* pre, samp */
.contentBody pre,
.contentBody samp {
  font-family: sans-serif;
}
/* code */
.contentBody code {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
/* kbd */
.contentBody kbd {
  margin: 0 2px;
  padding: 0 3px;
  border: 1px solid #ddd;
  border-bottom: 3px solid #ddd;
  border-radius: 3px;
  background-color: #fafafa;
  font-family: sans-serif;
  font-size: 0.875em;
}
/* ul */
.contentBody ul {
  margin-bottom: 1em;
  text-indent: 0;
}
.contentBody ul > li {
  padding-left: 0.925em;
  font-weight: 500;
  line-height: 1.8;
  text-indent: -0.925em;
}
.contentBody ul > li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 4px;
  margin-right: 10px;
  background: #eb7c7f;
  border-radius: 4px;
  vertical-align: middle;
}
/* ol */
.contentBody ol {
  counter-reset: item;
  margin-bottom: 1em;
  padding-left: 0;
}
.contentBody ol > li {
  padding-left: 1.3em;
  line-height: 1.8;
  text-indent: -1.3em;
}
.contentBody ol > li::before {
  content: counter(item) ".";
  counter-increment: item;
  padding-right: 0.5em;
}
/* table */
.contentBody table {
  margin-bottom: 1em;
  border: none;
}
.contentBody table th,
.contentBody table td {
  padding: 15px 20px;
  border: none;
  text-align: left;
  vertical-align: top;
}
.contentBody table th {
  color: #fff;
  background: #999;
  width: 20%;
}
.contentBody table td {
  background: #fff;
}
.contentBody table td > :last-child {
  margin-bottom: 0 !important;
}

/* table border for TinyMCE 4 */
.contentBody table[border] {
  border: 1px solid #6c6c6c;
}
.contentBody table[border=""],
.contentBody table[border="0"] {
  border: none;
}
.contentBody table[border] th,
.contentBody table[border] td {
  border: 1px solid #6c6c6c;
}
.contentBody table[border=""] th,
.contentBody table[border="0"] th,
.contentBody table[border=""] td,
.contentBody table[border="0"] td {
  border: none;
}
.contentBody table[style*="border:"]:not([style*="border: 0px"]),
.contentBody table[style*="border:"]:not([style*="border: 0px"]) th,
.contentBody table[style*="border:"]:not([style*="border: 0px"]) td,
.contentBody table[style*="border-width:"]:not([style*="border-width: 0px"]),
.contentBody table[style*="border-width:"]:not([style*="border-width: 0px"]) th,
.contentBody
  table[style*="border-width:"]:not([style*="border-width: 0px"])
  td {
  border: 1px solid #6c6c6c;
}

/* table border for TinyMCE 6~ */
.contentBody table.table_borders,
.contentBody table.table_borders th,
.contentBody table.table_borders td {
  border: 1px solid #6c6c6c;
}
.contentBody table.table_no_borders,
.contentBody table.table_no_borders th,
.contentBody table.table_no_borders td {
  border: none;
}



.contentBody img{
	border-radius: 10px;
}

@media screen and (max-width: 811px) {
  .contentBody table {
    max-width: inherit;
  }
  .contentBody table th,
  .contentBody table td {
    padding: 10px 15px;
  }
}
/* title */
.contentBody h1,
.contentBody h2 {
  clear: both;
  margin-top: 0em;
  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 {
}
.lay-main-wrap h1 {
    width: 100%;
    max-width: 1100px;
    margin: 30px auto 10px auto;
    padding: 15px 30px;
    font-size: 2em;
    /* letter-spacing: 5px; */
    /* line-height: 1.3; */
    /* background-color: #000; */
    background-color: #fffad5;
    border-radius: 15px;
}



.contentBody h2 {
    margin-bottom: 1em;
    margin-top: 1em;
  padding: 7px 5px 7px 15px;
  font-size: 1.666666666666em;
  line-height: 1.3;
  letter-spacing: 1px;
  border-left: 10px solid #eb7c7f;
}

.contentBody h3 {
  padding: 0 5px 5px;
  border-bottom: 2px solid #eb7c7f;
  font-size: 1.333333333333em;
  letter-spacing: 1px;
}
.contentBody h4 {
  font-size: 1.2em;
  letter-spacing: 1px;
  color: #eb7c7f;
}

@media screen and (max-width: 811px) {
  .contentBody h1 {
    margin-bottom: 1.25em;
    padding: 10px 5px;
    font-size: 1.666666666666em;
    letter-spacing: 2px;
  }
  .contentBody h2 {
    margin-bottom: 1em;
    font-size: 1.2em;
	     margin-top: 3em;
  }
  .contentBody h3 {
    font-size: 1em;
  }
  .contentBody h4 {
    font-size: 1em;
  }
}
@media screen and (max-width: 481px) {
  .contentBody h1 {
    font-size: 1.333333333em;
  }
}

.contentBody .u-align-right {
  text-align: right;
}

.contentBody .u-align-left {
  text-align: left;
}

.contentBody .u-align-center {
  text-align: center;
}

.contentBody .alignRight,
.contentBody img.u-align-right,
.contentBody img[style*="float:right"],
.contentBody img[style*="float: right"] {
  float: right;
  margin-bottom: 20px;
  margin-left: 20px;
}
.contentBody .alignLeft,
.contentBody img.u-align-left,
.contentBody img[style*="float:left"],
.contentBody img[style*="float: left"] {
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}
.contentBody .alignCenter,
.contentBody .u-align-center {
  display: block;
  margin: 0 auto 20px;
}

@media screen and (max-width: 811px) {
  .contentBody .alignRight,
  .contentBody .alignLeft,
  .contentBody img.u-align-right,
  .contentBody img.u-align-left,
  .contentBody img[style*="float:right"],
  .contentBody img[style*="float: right"],
  .contentBody img[style*="float:left"],
  .contentBody img[style*="float: left"] {
    max-width: 38.2%;
  }
}
@media screen and (max-width: 481px) {
  .contentBody .alignRight,
  .contentBody .alignLeft,
  .contentBody img.u-align-right,
  .contentBody img.u-align-left,
  .contentBody img[style*="float:right"],
  .contentBody img[style*="float: right"],
  .contentBody img[style*="float:left"],
  .contentBody img[style*="float: left"] {
    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 - 0.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.svg) 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, 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: 0.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.svg) 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,
.com-btn:link,
.com-btn:visited,
.com-btn-list a,
.com-btn-list a:link,
.com-btn-list a:visited {
      position: relative;
    display: inline-block;
    min-width: 215px;
    margin: 0 7px 20px;
    padding: 13px 40px 13px 22px;
    border: 1px solid #ea7c7f;
    background: #ea7c7f;
    color: #fff;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.6;
    text-decoration: none;
    cursor: pointer;
    border-radius: 15px;
}
.com-btn.disable,
.com-btn-list a.disable {
  background: #5d5d5d;
  color: #fff;
  border-color: #5d5d5d;
  cursor: default;
}
.com-btn.left-arrow,
.com-btn-list a.left-arrow {
  padding-right: 22px;
  padding-left: 40px;
}
.com-btn::after,
.com-btn-list a::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,
.com-btn-list a.left-arrow::after {
  right: inherit;
  left: 16px;
  -webkit-transform: translateY(-50%) rotate(225deg);
  transform: translateY(-50%) rotate(225deg);
}
.com-btn:hover,
.com-btn-list a:hover {
  background: #6c6c6c;
  color: #fff;
}
.com-btn:hover::after,
.com-btn-list a: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,
  .com-btn:link,
  .com-btn:visited,
  .com-btn-list a,
  .com-btn-list a:link,
  .com-btn-list a:visited {
    margin-bottom: 15px;
    padding-top: 10px;
    padding-bottom: 10px;
    font-size: 0.933333333333em;
  }
  .com-btn::after,
  .com-btn-list a::after {
    width: 7px;
    height: 7px;
  }
}
@media screen and (max-width: 481px) {
  .com-btn-list {
    margin: 2em 0 -10px;
  }
  .com-btn,
  .com-btn:link,
  .com-btn:visited,
  .com-btn-list a,
  .com-btn-list a:link,
  .com-btn-list a:visited {
    min-width: inherit;
    margin: 0 0 10px;
  }
}

/* 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 - 0.1px);
    margin: 0 20px 20px 0;
    padding-bottom: 20px;
    border: 3px solid #f2989e;
    text-indent: 0;
    vertical-align: top;
    word-spacing: normal;
    border-radius: 15px;
}
.com-category-list.-wrap-link li {
  display: flex;
  align-items: stretch;
  padding-bottom: 0;
}
.com-category-list.-wrap-link li > a {
  display: block;
  width: 100%;
  padding: 30px 10px;
  text-decoration: none;
}
.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 img {
  display: block;
  width: 100%;
  height: 248px;
  object-fit: contain;
}
.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: 7px;
  left: 0;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background: #eb7c7f;
}
.com-category-list li .title::after {
  content: "";
  position: absolute;
  top: 13px;
  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 #6c6c6c;
}
.com-category-list li .date {
  display: block;
  padding-left: 57px;
  padding-bottom: 5px;
  font-size: 0.875em;
}
.com-category-list.-wrap-link li > a :first-child {
  margin-top: 0;
}
@media screen and (max-width: 1060px) {
  .com-category-list li .thumb a,
  .com-category-list li .thumb img {
    height: 23.397vw;
  }
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 480px) {
  .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 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
============================================================ */
.com-news-list ul {
  margin: 0;
}
.com-news-list ul li {
  display: flex;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  padding: 30px 0;
  border-bottom: 1px dotted #6c6c6c;
  line-height: 1.6;
  text-indent: 0;
}
.com-news-list.-wrap-link ul li {
  padding: 0;
}
.com-news-list ul li::before {
  content: none;
}
.com-news-list ul li:first-child {
  border-top: 1px dotted #6c6c6c;
}
.com-news-list ul li:last-child {
  margin-bottom: 0;
}
.com-news-list.-wrap-link ul li > a {
  display: block;
  width: 100%;
  padding: 30px 0;
  text-decoration: none;
}
.com-news-list ul li .list-category-mark {
  width: 95px;
  padding: 3px 5px;
  background: #6c6c6c;
  color: #fff;
  font-size: 0.75em;
  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;
  width: 145px;
  color: #6c6c6c;
  font-size: 0.75em;
  line-height: 2.4;
  letter-spacing: 2px;
}
.com-news-list ul li .title {
  width: calc(100% - 95px - 145px);
  padding-left: 10px;
}
.com-news-list.-wrap-link ul li > a .title {
  text-decoration: underline;
}
.com-news-list.-wrap-link ul li > a:hover .title {
  text-decoration: none;
}
.com-news-list ul li .title .new {
  background: #f80000;
  color: #fff;
  margin-left: 6px;
  padding: 2px 5px;
  font-size: 0.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: 811px) {
  .com-news-list ul li {
    flex-wrap: wrap;
    padding: 15px 0;
  }
  .com-news-list.-wrap-link ul li {
    padding: 0;
  }
  .com-news-list.-wrap-link ul li > a {
    padding: 15px 0;
  }
  .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;
  }
}

/* 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: 0.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 #6c6c6c;
  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 #6c6c6c;
  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: 0.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;
}

/* com-side-menu-list
============================================================ */
.com-side-menu-list {
  margin-bottom: 40px;
}
.com-side-menu-list:last-child {
  margin-bottom: 0;
}
.com-side-menu-list li {
  margin-bottom: 20px;
}
.com-side-menu-list h3 {
  padding: 15px 15px;
  background: #6c6c6c;
  color: #fff;
}
.com-side-menu-list ul li {
  margin-bottom: 15px;
  padding: 0 3px 15px;
  border-bottom: 1px dotted #6c6c6c;
}
.com-side-menu-list ul li:last-child {
  border-bottom-style: solid;
}
.com-side-menu-list ul li:first-child {
  padding-top: 15px;
}
.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 ul li a,
.com-side-menu-list ul li ul li span {
  position: relative;
  padding-left: 15px;
  font-weight: lighter;
}
.com-side-menu-list ul li ul li a::before,
.com-side-menu-list ul li ul li span::before {
  content: "";
  display: block;
  position: absolute;
  left: -3px;
  top: calc(50% - 2px);
  width: 8px;
  height: 8px;
  background: none;
  border-top: 1px solid #6c6c6c;
  border-right: 1px solid #6c6c6c;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
.com-side-menu-list ul li ul li ul li {
  padding-left: 20px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .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 #6c6c6c;
  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 #6c6c6c;
  border-right: 1px solid #6c6c6c;
  transition: all 0.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-wrap,
  .com-table4-wrap {
    position: relative;
    margin-bottom: 1em;
  }
  .com-table3-wrap::after,
  .com-table4-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(
      to left,
      rgba(0, 0, 0, 0.2) 0%,
      rgba(0, 0, 0, 0) 100%
    );
  }
  .com-table3-scroll,
  .com-table4-scroll {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
  .com-table3-wrap .com-table3,
  .com-table4-wrap .com-table4 {
    margin-bottom: 0 !important;
  }
  .com-table3-wrap .com-table3 th,
  .com-table3-wrap .com-table3 td,
  .com-table4-wrap .com-table4 th,
  .com-table4-wrap .com-table4 td {
    display: table-cell !important;
    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 #6c6c6c;
}
.com-signature address span {
  display: block;
  font-style: normal;
}
.com-signature address .department {
  margin-bottom: 0.5em;
  border-bottom: 1px solid #6c6c6c;
  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;
  }
}

/* com-asterisk-list
============================================================ */
.com-asterisk-list,
.contentBody .com-asterisk-list {
  list-style: none;
  text-indent: 0;
}
.com-asterisk-list > li,
.contentBody .com-asterisk-list > li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
  vertical-align: middle;
}
.com-asterisk-list > li::before,
.contentBody .com-asterisk-list > li::before {
  content: "※";
  display: inline;
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-right: 0;
  background: none;
  border-radius: 0;
  text-indent: 0;
  vertical-align: top;
}
.com-asterisk-list > li > *,
.contentBody .com-asterisk-list > li > * {
  text-indent: 0;
}
.com-asterisk-list > li :last-child,
.contentBody .com-asterisk-list > li :last-child {
  margin-bottom: 0;
}

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

/* com-asterisk-num-list
============================================================ */
.com-asterisk-num-list,
.contentBody .com-asterisk-num-list {
  counter-reset: anum;
  list-style: none;
  text-indent: 0;
}
.com-asterisk-num-list > li,
.contentBody .com-asterisk-num-list > li {
  counter-increment: anum;
  list-style: none;
  padding-left: 2em;
  text-indent: -2em;
  vertical-align: middle;
}
.com-asterisk-num-list > li::before,
.contentBody .com-asterisk-num-list > li::before {
  content: "※" counter(anum);
  display: inline;
  width: auto;
  height: auto;
  margin-bottom: 0;
  margin-right: 0;
  background: none;
  border-radius: 0;
  text-indent: 0;
  vertical-align: top;
}
.com-asterisk-num-list > li > *,
.contentBody .com-asterisk-num-list > li > * {
  text-indent: 0;
}
.com-asterisk-num-list > li :last-child,
.contentBody .com-asterisk-num-list > li :last-child {
  margin-bottom: 0;
}

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

/* com-cercle-list
============================================================ */
.com-cercle-list {
  list-style: none;
  text-indent: 0;
}
.com-cercle-list > li {
  list-style: none;
  padding-left: 0.925em;
  text-indent: -0.925em;
}
.com-cercle-list > li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-bottom: 4px;
  margin-right: 5px;
  background: #333;
  border-radius: 4px;
  vertical-align: middle;
}
.com-cercle-list > li > * {
  text-indent: 0;
}
.com-cercle-list > li :last-child {
  margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-cercle-list > li::before {
    width: 6px;
    height: 6px;
    margin-bottom: 2px;
  }
}

/* com-cercle-list2
============================================================ */
.com-cercle-list2 {
  list-style: none;
  text-indent: 0;
}
.com-cercle-list2 > li,
.contentBody .com-cercle-list2 > li {
  list-style: none;
  padding-left: 0.925em;
  text-indent: -0.925em;
}
.com-cercle-list2 > li::before,
.contentBody .com-cercle-list2 > li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-bottom: 4px;
  margin-right: 5px;
  background: none;
  border: 1px solid #333;
  border-radius: 100%;
  vertical-align: middle;
}
.com-cercle-list2 > li > * {
  text-indent: 0;
}
.com-cercle-list2 > li :last-child {
  margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-cercle-list2 > li::before {
    width: 8px;
    height: 8px;
    margin-bottom: 2px;
  }
}

/* com-paren-num-list
============================================================ */
.com-paren-num-list,
.contentBody .com-paren-num-list {
  counter-reset: pnum;
  list-style: none;
  text-indent: 0;
}
.com-paren-num-list > li,
.contentBody .com-paren-num-list > li {
  counter-increment: pnum;
  list-style: none;
  position: relative;
  padding-left: 30px;
  text-indent: 0;
}
.com-paren-num-list > li::before,
.contentBody .com-paren-num-list > li::before {
  content: "(" counter(pnum) ") ";
  position: absolute;
  left: 0;
  padding-right: 0;
}
.com-paren-num-list > li :last-child,
.contentBody .com-paren-num-list > li :last-child {
  margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-paren-num-list > li,
  .contentBody .com-paren-num-list > li {
    padding-left: 25px;
  }
}

/* com-circle-num-list
============================================================ */
.com-circle-num-list,
.contentBody .com-circle-num-list {
  counter-reset: cnum;
  list-style: none;
  text-indent: 0;
}
.com-circle-num-list > li,
.contentBody .com-circle-num-list > li {
  counter-increment: cnum;
  list-style: none;
  position: relative;
  padding-left: 25px;
  text-indent: 0;
}
.com-circle-num-list > li::before,
.contentBody .com-circle-num-list > li::before {
  content: counter(cnum);
  display: block;
  position: absolute;
  top: 7px;
  left: 0;
  height: 16px;
  width: 16px;
  margin: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #333;
  border-radius: 100%;
  font-size: 0.75em;
  font-weight: bold;
  letter-spacing: -0.8px;
  line-height: 13px;
  text-align: center;
}
.com-circle-num-list > li :last-child,
.contentBody .com-circle-num-list > li :last-child {
  margin-bottom: 0;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-circle-num-list > li,
  .contentBody .com-circle-num-list > li {
    padding-left: 20px;
  }
  .com-circle-num-list > li::before,
  .contentBody .com-circle-num-list > li::before {
    top: 6px;
    height: 14px;
    width: 14px;
    font-size: 0.7em;
    line-height: 12px;
  }
}

/* com-strike
============================================================ */
.com-strike {
  text-decoration: line-through;
  -webkit-text-decoration-line: line-through;
  text-decoration-line: line-through;
  -webkit-text-decoration-style: double;
  text-decoration-style: double;
  -webkit-text-decoration-color: #f80000;
  text-decoration-color: #f80000;
  -webkit-text-decoration-thickness: 2px;
  text-decoration-thickness: 2px;
}

/* com-col-left-img
============================================================ */
.com-col-left-img {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
}
.com-col-left-img > .text {
  order: 2;
  width: calc(60% - 20px);
  margin-left: 20px;
}
.com-col-left-img > .img {
  order: 1;
  width: calc(40% - 20px);
  margin-right: 20px;
}
.com-col-left-img > .img img {
  width: 100%;
  height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-col-left-img {
    display: block;
  }
  .com-col-left-img > .text,
  .com-col-left-img > .img {
    width: 100%;
    margin: 0;
  }
}

/* com-col-right-img
============================================================ */
.com-col-right-img {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
}
.com-col-right-img > .text {
  width: calc(60% - 20px);
  margin-right: 20px;
}
.com-col-right-img > .img {
  width: calc(40% - 20px);
  margin-left: 20px;
}
.com-col-right-img > .img img {
  width: 100%;
  height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-col-right-img {
    display: block;
  }
  .com-col-right-img > .text,
  .com-col-right-img > .img {
    width: 100%;
    margin: 0;
  }
}

/* com-col-text
============================================================ */
.com-col-text {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
}
.com-col-text > .text1 {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.com-col-text > .text2 {
  width: calc(50% - 20px);
  margin-left: 20px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-col-text {
    display: block;
  }
  .com-col-text > .text1,
  .com-col-text > .text2 {
    width: 100%;
    margin: 0;
  }
}

/* com-col-img
============================================================ */
.com-col-img {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  width: 100%;
  margin-bottom: 2em;
}
.com-col-img > .img1 {
  width: calc(50% - 20px);
  margin-right: 20px;
}
.com-col-img > .img2 {
  width: calc(50% - 20px);
  margin-left: 20px;
}
.com-col-img > .img1 img,
.com-col-img > .img2 img {
  width: 100%;
  height: auto;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-col-img {
    display: block;
  }
  .com-col-img > .img1,
  .com-col-img > .img2 {
    width: 100%;
    margin: 0;
  }
  .com-col-img > .img1 {
    margin-bottom: 20px;
  }
}

/* com-border-box
============================================================ */
.com-border-box {
  border: 1px solid #ccc;
  margin-bottom: 2em;
  padding: 25px 30px;
}

/* sp
------------------------------------------------------------ */
@media screen and (max-width: 811px) {
  .com-border-box {
    padding: 10px 15px;
  }
}

/* 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 {
  color: #f80000;
}
.style2 {
  color: blue;
}
.style3 {
  color: navy;
}
.style4 {
  color: green;
}
.style5 {
  color: yellow;
}
.style6 {
  color: #ffff00;
}
.style7 {
  background: linear-gradient(transparent 60%, #ffff00 0%);
}
.style8 {
  background: linear-gradient(transparent 60%, #ffeeb3 0%);
}
.style9 {
}
.style10 {
}

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


.smile-btn{}

.smile-btn a {
    display: block;
    background-color: #eb7c7f;
    color: #fff;
    font-weight: bold;
    font-size: 25px;
    text-decoration: none;
    padding: 20px 30px;
    background-image: url(../images/arrow_y.png);
    background-repeat: no-repeat;
    background-position: right 30px center;
    background-size: 18px;
    border-radius: 20px;
    line-height: 150%;
    margin-bottom: 40px;
    margin-top: 40px;
}
