@charset "UTF-8";
/* ====================================================================================================
   import
==================================================================================================== */
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
/* ====================================================================================================
   foundation
==================================================================================================== */
/* --------------------------------------------------
variables
*/
/* maxWidth */
/* mediaScreen */
/* font */
/* color */
/* colorBg */
/* colorBorder */
/* colorFont */
/* other */
/* --------------------------------------------------
reset
*/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

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

/* --------------------------------------------------
basic
*/
html {
  position: relative;
  overflow-y: scroll;
  font-size: 2.380952381vw;
}
@media (min-width: 720px) {
  html {
    font-size: 1.2195121951vw;
  }
}
@media (min-width: 1080px) {
  html {
    font-size: 0.8333333333vw;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #666666;
}

hr {
  border: none;
}

a {
  color: #666666;
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

/* scrollbar */
::-webkit-scrollbar {
  display: none;
}

/* ====================================================================================================
   layout
==================================================================================================== */
/* --------------------------------------------------
l-header
*/
.l-header {
  border-top: solid 1rem #DE5820;
}
.l-header.l-header--home {
  border-right: solid 1rem #DE5820;
  border-left: solid 1rem #DE5820;
}
.l-header.l-header--home > .l-header__top {
  padding: 4rem 3rem;
}
.l-header .l-header__top {
  padding: 4rem;
}
.l-header .l-header__top .l-header__top__in {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
}
.l-header .l-header__top .l-header__top__in .l-header__logo {
  width: auto;
}
.l-header .l-header__top .l-header__top__in .l-header__nav {
  display: none;
  margin-left: auto;
}
@media (min-width: 720px) {
  .l-header .l-header__top .l-header__top__in .l-header__nav {
    display: block;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__btn {
  position: relative;
  z-index: 1001;
  width: 7rem;
  height: 7rem;
  margin-left: auto;
  background-color: #E68D3F;
  border-radius: 100%;
}
@media (min-width: 720px) {
  .l-header .l-header__top .l-header__top__in .l-header__btn {
    margin-left: 2rem;
  }
}
.l-header .l-header__top .l-header__top__in .l-header__btn > * {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.l-header .l-header__side {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 100;
  transform: translateY(-50%);
}
.l-header .l-header__spNav {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  background-color: #DE5820;
}
.l-header .l-header__spNav > ul {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  padding: 0 4rem;
}
.l-header .l-header__spNav > ul > li + li {
  border-top: solid 1px white;
}
.l-header .l-header__spNav > ul > li > a {
  display: block;
  padding: 2rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
}

/* --------------------------------------------------
l-contents
*/
.l-contents {
  overflow: hidden;
}

/* --------------------------------------------------
l-footer
*/
.l-footer {
  width: auto;
  padding: 2rem 0;
  border-top: solid 1px #DE5820;
}
.l-footer > small {
  display: block;
  font-size: 1rem;
  text-align: center;
  line-height: 2rem;
  color: #DE5820;
}

/* --------------------------------------------------
l-section
*/
.l-section {
  padding: 10rem 0;
}
.l-section + .l-section {
  border-top: solid 1px #DE5820;
}

@media (min-width: 720px) {
  .l-section__in {
    display: flex;
    justify-content: space-between;
    align-items: top;
  }
}
@media (min-width: 720px) {
  .l-section__in > main {
    flex: 2;
  }
}
.l-section__in > aside {
  margin-top: 4rem;
}
@media (min-width: 720px) {
  .l-section__in > aside {
    flex: 1;
    margin-top: 0;
    margin-left: 6rem;
  }
}

.l-section--accent {
  background-color: #E68D3F;
}

.l-section--mainimg {
  position: relative;
  height: calc(100vh - 18rem);
  border: solid 1rem #DE5820;
  border-top: none;
  padding: 0 2rem;
}
@media (min-width: 720px) {
  .l-section--mainimg {
    padding: 0 10rem;
  }
}
@media (min-width: 1080px) {
  .l-section--mainimg {
    padding: 0 10rem;
  }
}
.l-section--mainimg .l-section--mainimg__in {
  width: 100%;
  padding-top: 10%;
}
@media (min-width: 720px) {
  .l-section--mainimg .l-section--mainimg__in {
    padding-top: 15%;
  }
}
@media (min-width: 1080px) {
  .l-section--mainimg .l-section--mainimg__in {
    width: 50%;
    padding-top: 5%;
  }
}
.l-section--mainimg:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../images/img_logo02.svg) no-repeat;
  background-position: bottom center;
  background-size: contain;
}
@media (min-width: 1080px) {
  .l-section--mainimg:after {
    left: 50%;
  }
}

/* --------------------------------------------------
l-grid
*/
.l-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  box-sizing: border-box;
  margin: -0.5rem;
}
.l-grid > * {
  display: block;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 0.5rem;
  transition: all 0.4s ease-out;
}
@media (min-width: 720px) {
  .l-grid > * {
    width: 100%;
  }
}
@media (min-width: 1080px) {
  .l-grid > * {
    width: 100%;
  }
}
.l-grid .l-grid--rev {
  flex-direction: row-reverse;
}

@media (min-width: 720px) {
  .l-grid--M {
    margin: -1rem;
  }
}
@media (min-width: 720px) {
  .l-grid--M > * {
    padding: 1rem;
  }
}

@media (min-width: 720px) {
  .l-grid--L {
    margin: -2rem;
  }
}
@media (min-width: 720px) {
  .l-grid--L > * {
    padding: 2rem;
  }
}

@media (min-width: 720px) {
  .l-grid--two > * {
    width: 50%;
  }
}
@media (min-width: 1080px) {
  .l-grid--two > * {
    width: 50%;
  }
}

@media (min-width: 720px) {
  .l-grid--three > * {
    width: 33.333%;
  }
}
@media (min-width: 1080px) {
  .l-grid--three > * {
    width: 33.333%;
  }
}

.l-grid--four > * {
  width: 50%;
}
@media (min-width: 720px) {
  .l-grid--four > * {
    width: 25%;
  }
}
@media (min-width: 1080px) {
  .l-grid--four > * {
    width: 25%;
  }
}

@media (min-width: 720px) {
  .l-grid--five > * {
    width: 33.333%;
  }
}
@media (min-width: 1080px) {
  .l-grid--five > * {
    width: 20%;
  }
}

.l-grid--spaceM {
  margin: -1rem;
}
.l-grid--spaceM > * {
  padding: 1rem;
}

.l-grid--spaceL {
  margin: -1rem;
}
@media (min-width: 1080px) {
  .l-grid--spaceL {
    margin: -2rem;
  }
}
.l-grid--spaceL > * {
  padding: 1rem;
}
@media (min-width: 1080px) {
  .l-grid--spaceL > * {
    padding: 2rem;
  }
}

/* ====================================================================================================
   object
==================================================================================================== */
/* --------------------------------------------------
c-breadCrumb
*/
.c-breadCrumb > * {
  display: inline-block;
}
.c-breadCrumb > * + *:before {
  content: "｜";
  margin: 0 0.5em;
}

/* --------------------------------------------------
c-badge
*/
.c-badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: white;
  border: solid 1px #D9D9D9;
  border-radius: 1rem;
  box-shadow: none;
}

a.c-badge {
  transition: all 0.4s ease-out;
}
a.c-badge:hover {
  color: white;
  background-color: #DE5820;
  cursor: pointer;
}

.c-badgeNum {
  position: relative;
}
.c-badgeNum .c-badgeNum__obj {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  font-size: 6rem;
  font-weight: bold;
  white-space: nowrap;
  color: #03A9F4;
}

.c-badgeFlow {
  position: relative;
  width: 100%;
  padding-top: 100%;
  background-color: rgba(230, 141, 63, 0.1);
  border: solid 5px #E68D3F;
  border-radius: 100%;
}
.c-badgeFlow > span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  white-space: nowrap;
  color: #E68D3F;
}

/* --------------------------------------------------
c-button
*/
.c-button {
  display: inline-block;
  min-width: 20rem;
  padding: 1.5rem 2rem;
  font-size: 1.6rem;
  font-weight: bold;
  text-align: center;
  list-style: 2rem;
  color: #03A9F4;
  background-color: transparent;
  border: solid 2px #03A9F4;
  border-radius: 100rem;
  overflow: hidden;
}

.c-button--maxW {
  width: 100%;
}

.c-button--next {
  position: relative;
}
.c-button--next:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_next01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}

.c-buttonSide {
  width: 3.4rem;
  padding: 2rem 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  writing-mode: vertical-rl;
  color: white;
  background-color: #DE5820;
  border: solid 1px white;
  border-right: none;
  border-radius: 1rem 0 0 1rem;
}
.c-buttonSide.c-buttonSide--facility, .c-buttonSide.c-buttonSide--contact {
  position: relative;
  padding-top: 4rem;
}
.c-buttonSide.c-buttonSide--facility:before, .c-buttonSide.c-buttonSide--contact:before {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 1.4rem;
  height: 1.4rem;
  background: url(../images/icon_facility01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-buttonSide.c-buttonSide--contact {
  background-color: #E68D3F;
}
.c-buttonSide.c-buttonSide--contact:before {
  background: url(../images/icon_tel01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}

.c-buttonContactTel {
  position: relative;
  display: block;
  height: 16rem;
  background-color: #DE5820;
  border: solid 2px white;
  border-radius: 1rem;
}
.c-buttonContactTel .c-buttonContactTel__in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
}
.c-buttonContactTel .c-buttonContactTel__in span {
  position: relative;
  display: inline-block;
  margin-top: 1rem;
  padding-left: 3rem;
  font-size: 3rem;
  list-style: 3rem;
}
.c-buttonContactTel .c-buttonContactTel__in span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_tel01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}
.c-buttonContactTel .c-buttonContactTel__in small {
  display: block;
  margin-top: 1rem;
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 2rem;
}

.c-buttonContactMail {
  position: relative;
  display: block;
  height: 9rem;
  background-color: #03A9F4;
  border: solid 2px white;
  border-radius: 1rem;
}
.c-buttonContactMail .c-buttonContactMail__in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
}
.c-buttonContactMail .c-buttonContactMail__in span {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
}
.c-buttonContactMail .c-buttonContactMail__in span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_mail01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}

.c-buttonContactLine {
  position: relative;
  display: block;
  height: 6rem;
  background-color: #06C755;
  border: solid 2px white;
  border-radius: 1rem;
}
.c-buttonContactLine .c-buttonContactLine__in {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
}
.c-buttonContactLine .c-buttonContactLine__in span {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
}
.c-buttonContactLine .c-buttonContactLine__in span:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: url(../images/icon_line01.svg) no-repeat;
  background-position: center center;
  background-size: contain;
}

/* --------------------------------------------------
c-navBar
*/
.c-navBar {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
}
.c-navBar > * {
  display: block;
  width: 100%;
}
.c-navBar > * > a {
  display: block;
  height: auto;
  padding: 3rem 1rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
  white-space: nowrap;
  color: #DE5820;
  transition: all 0.4s ease-out;
  border-bottom: solid 1px transparent;
}
.c-navBar > * > a:hover, .c-navBar > * > a.active {
  border-color: #DE5820;
}

/* --------------------------------------------------
c-panel
*/
.c-panel {
  display: block;
  width: 100%;
  height: 100%;
  padding: 2rem;
  background-color: white;
  border: solid 1px #D9D9D9;
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}

/* --------------------------------------------------
c-media
*/
.c-media {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.c-media > .c-media__img > img {
  display: block;
}
.c-media > .c-media__body {
  width: auto;
}

/* rev */
.c-media--rev {
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* --------------------------------------------------
c-tableView
*/
.c-tableView {
  display: block;
  overflow: hidden;
  background-color: white;
  border: solid 1px #666666;
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}
.c-tableView > * {
  padding: 2rem;
}
.c-tableView > * + * {
  border-top: solid 1px #666666;
}
.c-tableView > *.c-tableView__title {
  padding: 1rem 2rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
  background-color: #666666;
}

/* --------------------------------------------------
c-card
*/
.c-card {
  display: block;
  width: 100%;
  height: 100%;
  background-color: white;
  border: solid 1px #D9D9D9;
  border-radius: 1rem;
  box-shadow: none;
  overflow: hidden;
}
.c-card > .c-card__img {
  width: auto;
}
.c-card > .c-card__body {
  padding: 1rem 2rem 3rem;
}

/* --------------------------------------------------
c-hamburger
*/
.c-hamburgerBtn {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 1rem;
  transition: all 0.4s ease-out;
}
.c-hamburgerBtn > * {
  position: absolute;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: white;
  border-radius: 100rem;
  transition: all 0.4s ease-out;
}
.c-hamburgerBtn > *:nth-of-type(1) {
  top: 0;
}
.c-hamburgerBtn > *:nth-of-type(2) {
  bottom: 0;
}
.c-hamburgerBtn:hover {
  cursor: pointer;
}

/* animation */
.c-hamburgerBtn.active *:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

.c-hamburgerBtn.active *:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}

/* --------------------------------------------------
c-form
*/
.c-form {
  /* placeholder */
}
.c-form * {
  /* reset */
  margin: 0;
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.c-form *:-ms-clear {
  visibility: hidden;
}
.c-form *:-ms-reveal {
  visibility: hidden;
}
.c-form *::-moz-placeholder {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #999;
}
.c-form *::placeholder {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #999;
}
.c-form input[type=text],
.c-form input[type=password],
.c-form input[type=email],
.c-form textarea {
  width: 100%;
  padding: 1.5rem;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-size: 1.6rem;
  line-height: 2rem;
  background-color: white;
  border: solid 1px #D9D9D9;
  border-radius: 1rem;
}
.c-form select {
  width: 100%;
  padding: 1.5rem;
  background-color: white;
  border: solid 1px #D9D9D9;
  border-radius: 1rem;
}
.c-form select:hover {
  cursor: pointer;
}
.c-form input[type=checkbox],
.c-form input[type=radio] {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background-color: white;
  border: solid 1px #D9D9D9;
  transition: all 0.4s ease-out;
}
.c-form input[type=checkbox]:before,
.c-form input[type=radio]:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50%;
  height: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  transition: all 0.4s ease-out;
}
.c-form input[type=checkbox]:hover,
.c-form input[type=radio]:hover {
  cursor: pointer;
}
.c-form input[type=checkbox]:checked:before,
.c-form input[type=radio]:checked:before {
  background-color: #666666;
}
.c-form input[type=radio] {
  border-radius: 100%;
}
.c-form input[type=radio]:before {
  border-radius: 100%;
}
.c-form p {
  font-size: 1.6rem;
  line-height: 2rem;
}
.c-form em {
  color: #DE5820;
}

/* --------------------------------------------------
c-title
*/
.c-title {
  display: block;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  line-height: 5rem;
  white-space: nowrap;
  color: #DE5820;
}
.c-title > img {
  width: 100%;
  height: auto;
}
.c-title > small {
  display: inline-block;
  padding: 1rem 3rem;
  font-size: 2rem;
  font-weight: bold;
  line-height: 2rem;
  border: solid 2px #DE5820;
  border-radius: 100rem;
}
.c-title > span {
  display: block;
  margin-top: 2rem;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 3rem;
}

.c-titleSec {
  display: block;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  color: #03A9F4;
}
.c-titleSec > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
  line-height: 4rem;
  color: #DE5820;
}
.c-titleSec > span:before, .c-titleSec > span:after {
  content: "";
  display: block;
  flex: 1;
  height: 2rem;
  margin-right: 4rem;
  background: url(../images/line_left01.svg) no-repeat;
  background-position: center left;
  background-size: contain;
}
.c-titleSec > span:after {
  margin-right: 0;
  margin-left: 4rem;
  background: url(../images/line_right01.svg) no-repeat;
  background-position: center right;
  background-size: contain;
}
.c-titleSec > span > br {
  display: none;
}
@media (min-width: 720px) {
  .c-titleSec > span > br {
    display: block;
  }
}
.c-titleSec > small {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  line-height: 2rem;
  color: white;
  background-color: #E68D3F;
  border-radius: 100rem;
}
.c-titleSec.c-titleSec--white {
  color: white;
}
.c-titleSec.c-titleSec--white > span {
  color: white;
}
.c-titleSec.c-titleSec--white > span:before, .c-titleSec.c-titleSec--white > span:after {
  background: url(../images/line_left02.svg) no-repeat;
  background-position: center left;
  background-size: contain;
}
.c-titleSec.c-titleSec--white > span:after {
  background: url(../images/line_right02.svg) no-repeat;
  background-position: center right;
  background-size: contain;
}
.c-titleSec.c-titleSec--white > small {
  color: white;
  background-color: #DE5820;
}

/* --------------------------------------------------
c-fontSet
*/
.c-fontSet p, #tinymce p {
  font-size: 1.6rem;
  line-height: 3rem;
}
.c-fontSet strong, #tinymce strong {
  font-weight: bold;
  color: #DE5820;
}
.c-fontSet em, #tinymce em {
  color: #DE5820;
}
.c-fontSet small, #tinymce small {
  font-size: 1.2rem;
  list-style: 2rem;
}
.c-fontSet a, #tinymce a {
  color: #03A9F4;
  text-decoration: underline;
}
.c-fontSet a:hover, #tinymce a:hover {
  text-decoration: none;
}
.c-fontSet h3, #tinymce h3 {
  display: block;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: #E68D3F;
}
.c-fontSet h4, #tinymce h4 {
  display: block;
  padding: 1rem;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  line-height: 3rem;
  color: white;
  background-color: #E68D3F;
  border-radius: 100rem;
}
.c-fontSet ul li, #tinymce ul li,
.c-fontSet ol li,
#tinymce ol li {
  position: relative;
  padding-left: 1.5em;
  font-size: 1.6rem;
  text-align: justify;
  line-height: 2rem;
}
.c-fontSet ul li + li, #tinymce ul li + li,
.c-fontSet ol li + li,
#tinymce ol li + li {
  margin-top: 1rem;
}
.c-fontSet ul li:before, #tinymce ul li:before,
.c-fontSet ol li:before,
#tinymce ol li:before {
  content: "●";
  position: absolute;
  top: 0;
  left: 0;
  color: #03A9F4;
}
.c-fontSet table, #tinymce table {
  width: 100%;
}
.c-fontSet table tr th, #tinymce table tr th,
.c-fontSet table tr td,
#tinymce table tr td {
  padding: 2rem;
  font-size: 1.4rem;
  line-height: 2rem;
  border-bottom: solid 1px #D9D9D9;
}
.c-fontSet table tr th, #tinymce table tr th {
  font-weight: bold;
  white-space: nowrap;
  vertical-align: middle;
  color: #DE5820;
  border-color: #DE5820;
}
.c-fontSet img, #tinymce img {
  max-width: 100%;
  height: auto;
}
.c-fontSet iframe, #tinymce iframe {
  width: 100%;
  height: 50vh;
  border-radius: 1rem;
}
.c-fontSet .gallery, #tinymce .gallery {
  margin-top: 2rem !important;
}
.c-fontSet .gallery img, #tinymce .gallery img {
  border: none !important;
}

.c-fontSetSub p {
  font-size: 1.4rem;
  line-height: 2rem;
}
.c-fontSetSub img {
  max-width: 100%;
  height: auto;
}

#tinymce {
  padding: 2rem !important;
}

/* ====================================================================================================
   utility
==================================================================================================== */
/* --------------------------------------------------
u-taX
*/
.u-taR {
  text-align: right;
}

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

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

/* --------------------------------------------------
u-clearfix
*/
.u-clearfix, .u-innerL, .u-innerM, .u-innerS {
  display: block;
  min-height: 1%;
}
.u-clearfix:after, .u-innerL:after, .u-innerM:after, .u-innerS:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: ".";
}

* html .u-clearfix, * html .u-innerL, * html .u-innerM, * html .u-innerS {
  height: 1%;
}

/* --------------------------------------------------
u-flX
*/
.u-flL {
  float: left;
}

.u-flR {
  float: right;
}

/* --------------------------------------------------
u-hover
*/
.u-hover, .c-button, .c-buttonSide, .c-buttonContactTel, .c-buttonContactMail, .c-buttonContactLine {
  transition: all 0.4s ease-out;
}
.u-hover:hover, .c-button:hover, .c-buttonSide:hover, .c-buttonContactTel:hover, .c-buttonContactMail:hover, .c-buttonContactLine:hover {
  cursor: pointer;
}
@media (min-width: 1080px) {
  .u-hover:hover, .c-button:hover, .c-buttonSide:hover, .c-buttonContactTel:hover, .c-buttonContactMail:hover, .c-buttonContactLine:hover {
    opacity: 0.5;
  }
}

/* --------------------------------------------------
u-img
*/
.u-imgMaxW {
  max-width: 100%;
  height: auto;
}

.u-imgThumb {
  display: block;
  width: 100%;
  height: auto;
  border: solid 5px #E68D3F;
  border-radius: 100%;
}

.u-imgCrop {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.u-imgHeaderLogo {
  width: auto;
  height: 9rem;
}

.u-imgMainLocal {
  width: 35rem;
  height: auto;
}

/* --------------------------------------------------
u-inner
*/
.u-innerS {
  box-sizing: content-box;
  max-width: 60rem;
  margin: 0 auto;
}

.u-innerM {
  box-sizing: content-box;
  max-width: 96rem;
  margin: 0 auto;
}

.u-innerL {
  box-sizing: content-box;
  max-width: 110rem;
  margin: 0 auto;
}

.u-innerGarterS {
  padding: 0 1rem;
}

.u-innerGarterM {
  padding: 0 2rem;
}

.u-innerGarterL {
  padding: 0 6rem;
}

/* --------------------------------------------------
u-vr
*/
.u-vrSS > * + * {
  margin-top: 1rem;
}

.u-vrS > * + * {
  margin-top: 2rem;
}

.u-vrM > * + *, #tinymce > * + * {
  margin-top: 4rem;
}

.u-vrL > * + * {
  margin-top: 6rem;
}

/* --------------------------------------------------
u-color
*/
/* ====================================================================================================
   vender
==================================================================================================== *//*# sourceMappingURL=common.css.map */