@charset "UTF-8";
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    プロパティ                                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    レスポンシブ 用の処理                         */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    サイト共通部                                  */
/*    ・ヘッダ・フッタの装飾                        */
/*    ・全体大枠のレイアウト定義                    */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
body {
  text-align: center;
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin: 0 auto;
  min-width: 350px;
  position: relative;
  color: #222;
}

#World {
  text-align: left;
}

/* rem の基準フォントサイズ */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.6em;
}

/*ローディング表示*/
body.NoDisplays:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5500;
  background: white;
  background: white url(../img/common/logo.png) no-repeat 50% 50%;
  background-size: 300px auto;
}

body.TopPage.NoDisplays:before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 5500;
  background: white;
  background: white url(../img/common/logo.png) no-repeat 50% 50%;
  background-size: 400px auto;
}

@media only screen and (max-width: 600px) {
  body.NoDisplays:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5500;
    background: white;
    background: white url(../img/common/logo.png) no-repeat 50% 40%;
    background-size: 250px auto;
  }
  body.TopPage.NoDisplays:before {
    content: "";
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 5500;
    background: white;
    background: white url(../img/common/logo.png) no-repeat 50% 40%;
    background-size: 250px auto;
  }
}

body:before {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  height: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

body:before {
  background: rgba(255, 255, 255, 0);
  width: 100%;
  height: 0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    基本レイアウト                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.World {
  min-height: 100vh;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  /*padding-top:200px;*/
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .World {
    padding-top: 0 !important;
  }
}

/* サイトのページ幅 */
.PageWidthSetter {
  margin: 0 auto;
  padding: 0 10px;
  word-break: break-all;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .PageWidthSetter {
    max-width: 1400px;
    min-width: 1000px;
  }
  .FooterDivision .PageWidthSetter {
    max-width: 1300px;
    min-width: 1000px;
  }
  .SingleContents .PageWidthSetter {
    max-width: 1200px;
  }
  .PageContents {
    margin-top: 15px;
  }
  .PageContents .PageWidthSetter {
    /*max-width: 1168px;
                  min-width: 900px;
                  background: #fff;
                  padding: 30px;
                  box-shadow: 0 0.04em 0.18em rgba(0, 0, 0, 0.2);*/
  }
}

@media screen and (max-width: 767px) {
  .PageContents {
    font-size: 95%;
  }
  .PageWidthSetter {
    max-width: initial;
    width: auto;
    width: 92.5%;
    width: calc(100% - 30px);
    min-width: 0px;
    padding: 0;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Header                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
header {
  max-width: initial;
  position: relative;
  z-index: 100;
  background: none;
  background: white;
  -webkit-transition: background .2s;
  transition: background .2s;
  padding: 0px 0 0;
  height: 200px;
  /*  border-bottom: 1px solid #c0d4f9;
  box-shadow: 0 0.04em 0.18em rgba(0, 0, 0, 0.2);*/
}

header.HeaderDivision {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/*Group*/
.HeaderGroup {
  position: relative;
}

.HeaderGroup > .inner {
  position: relative;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  header.HeaderDivision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 37px;
    background: #8cb808;
  }
  header.HeaderDivision.FixMenu {
    top: 0;
    padding-top: 200px;
    opacity: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu .HeaderGroup {
    position: fixed;
    width: 100%;
    bottom: auto;
    top: 0;
    top: -200px;
    z-index: 100;
    -webkit-transition: all .5s;
    transition: all .5s;
    z-index: 5000;
    -webkit-box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.25);
            box-shadow: 0 0.25em 1em rgba(0, 0, 0, 0.25);
    background: #fff;
    height: 200px;
  }
  header.HeaderDivision.FixMenu.FixMenu2 {
    /*top:  -113px;*/
    opacity: 1;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu.FixMenu2:hover {
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 1;
  }
  header.HeaderDivision.FixMenu.FixMenu2 .HeaderGroup {
    position: fixed;
    top: -135px;
    padding-top: 19px;
  }
  header.HeaderDivision.FixMenu .TopBottom {
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu.FixMenu2 .TopBottom {
    margin-top: 20px;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu .SiteLogo span.LogoImage {
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu.FixMenu2 .SiteLogo span.LogoImage {
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: left;
  }
  header.HeaderDivision.FixMenu.FixMenu2 .SiteLogo span.LogoImage img {
    max-width: 100%;
  }
  header.HeaderDivision.FixMenu.FixMenu2 .SiteLogo .ComName {
    margin-left: 40px;
    -webkit-transition: all .4s;
    transition: all .4s;
    text-align: left;
    font-size: 65%;
  }
}

@media screen and (max-width: 767px) {
  header {
    background: white;
    padding: 0;
    height: 64px;
  }
  header.HeaderDivision {
    z-index: 200;
    position: fixed;
  }
  header .PageWidthSetter {
    width: auto;
  }
  header.HeaderDivision.FixMenu {
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu2 {
    top: 0;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
}

/* HeaderMenuArea
--------------------------------------------------- */
/* - - MainMenuBlock - - */
.MainMenuBlock {
  z-index: 10;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  display: block;
}

.MainMenuBlock > * {
  /*flex-grow: 1;*/
}

.MainMenuBlock .BlockHeaderXX {
  padding: 0;
  text-align: left;
  display: block;
  width: 327px;
  float: left;
}

.MainMenuBlock .BlockHeader .SiteLogo {
  margin: 0;
  padding: 0;
  text-align: left;
}

.MainMenuBlock .BlockHeader .SiteLogo span {
  display: inline-block;
  vertical-align: middle;
}

.MainMenuBlock .BlockHeader .SiteLogo span.ComName {
  white-space: normal;
  font-size: 0.70em;
  letter-spacing: 0.1em;
  margin-left: 10px;
  color: #555;
  font-weight: 400;
  display: inline-block;
  position: relative;
  vertical-align: middle;
}

.MainMenuBlock .BlockHeader .SiteLogo span.ComName strong {
  font-size: 120%;
  display: block;
}

.MainMenuBlock .BlockHeader .CatchCopy {
  display: none;
}

.MainMenuBlock .BlockContents {
  display: block;
  /*width: -webkit-calc(100% - 340px);
  width:         calc(100% - 350px);
  float:right;
  text-align:right;
  */
  position: relative;
  width: 100%;
}

.MainMenuBlock .BlockContents:before {
  /*position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background:none;
  z-index: -1;*/
}

.MainMenuBlock .BlockContents {
  height: 54px;
}

.MainMenuBlock .BlockContents .MenuGroup {
  margin: 0;
  margin-top: 0px;
  margin-right: 0;
  border-radius: 0px;
  padding: 0;
}

.MainMenuBlock .HeadItem {
  display: inline-block;
  vertical-align: top;
  text-align: center;
  margin-top: 30px;
  width: calc(100% - 610px);
}

.MainMenuBlock .HeadItem .MailMenuBox {
  position: relative;
  font-size: 3.5rem;
}

.MainMenuBlock .HeadItem .MailMenuBox:before {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  top: 0;
  left: 0;
  background: #222;
}

.MainMenuBlock .HeadItem .MailMenuBox:after {
  position: absolute;
  content: "";
  height: 40px;
  width: 1px;
  top: 0;
  right: 0;
  background: #222;
}

.MainMenuBlock .HeadItem .Main {
  display: inline-block;
  vertical-align: middle;
}

.MainMenuBlock .HeadItem .Sub {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.MainMenuBlock .HeadItem .Main img {
  max-width: 200px;
}

.MainMenuBlock .HeadItem .SNSItem {
  color: #9b9b9b;
  font-size: 2.2em;
  margin-bottom: 0.2em;
}

.MainMenuBlock .HeadItem .SNSItem:hover {
  color: #009245;
  font-size: 2.2em;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock {
    position: relative;
  }
  .MainMenuBlock .BlockHeader {
    height: 123px;
  }
  .MainMenuBlock .BlockContents {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    text-align: center;
  }
  .MainMenuBlock .BlockContents .inner {
    padding: 0;
  }
  .MainMenuBlock .HeadItem .Main img {
    margin-right: 10px;
  }
  .MainMenuBlock .BlockHeader .SiteLogo {
    padding-top: 0;
    width: 355px;
    display: inline-block;
    border: 3px solid #8cb808;
    border-top: 0;
    border-radius: 0 0 20px 20px;
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
            box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
    background: #fff;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.LogoImage {
    width: 328px;
    display: block;
    margin: 15px auto 0 auto;
  }
  .MainMenuBlock .BlockHeader .SiteLogo .ComName {
    font-size: 1rem;
    width: 200px;
    display: inline-block;
  }
}

@media screen and (max-width: 767px) {
  .MainMenuBlock .BlockHeader {
    max-width: 330px;
    padding: 0;
  }
  header .MainMenuBlock .MenuTrigger {
    position: Fixed;
    top: 10px;
    right: 12px;
    margin: 0 0 0 0;
    z-index: 10000;
  }
  #GlobalMenuGroupF,
  #GlobalMenuGroup {
    position: fixed;
    top: 64px !important;
    left: 0px;
    width: 100%;
    background: #f5f5f5;
    padding: 20px 20px 20px 20px;
    border-radius: 0;
    overflow: auto;
    height: calc(100% - 71px) !important;
    margin-top: 0;
    border-top: 0px solid #036978;
  }
  .MainMenuBlock .BlockHeader .SiteLogo {
    margin: 0;
    margin-left: 5px;
    background: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span {
    display: inline-block;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.LogoImage {
    width: 200px;
    margin-top: 0;
    padding-top: 5px;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.ComName {
    white-space: normal;
    font-size: 0.5em;
    letter-spacing: 0.02em;
    margin-left: 3px;
    color: #555;
    font-weight: 400;
    margin-top: 5px;
    width: 130px;
    line-height: 1.3;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.ComName br {
    display: none;
  }
  .MainMenuBlock .HeadItem.TopBottom {
    position: absolute;
    top: -50px;
    right: 65px;
    display: inline-block;
    height: 45px;
    width: 50px;
    text-align: center;
  }
  .MainMenuBlock .HeadItem .MailMenuBox {
    display: inline-block;
  }
  .MainMenuBlock .HeadItem.TopBottom:before {
    height: 45px;
  }
  .MainMenuBlock .HeadItem.TopBottom:after {
    height: 45px;
  }
  .MainMenuBlock .HeadItem.TopBottom .Icon {
    height: 45px;
    display: inline-block;
    line-height: 1;
    vertical-align: top;
    position: relative;
    margin: 0 10px;
    color: #7f8eb6;
  }
  .MainMenuBlock .HeadItem.TopBottom .Icon::after {
    position: absolute;
    content: "TEL";
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 14px;
    font-size: 0.3em;
    color: #222;
  }
  .InnerSNSLink {
    font-size: 2.0em;
    color: #555;
    text-align: center;
  }
  .MainMenuBlock .BlockContents {
    border-top: 0px solid #e0efff;
    /*height:64px;*/
    height: 0;
  }
}

/* + + + + + スマホで上余白が出ないための仮処置 + + + + +  */
#GlobalMenuGroupF,
#GlobalMenuGroup {
  display: none;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  #GlobalMenuGroupF,
  #GlobalMenuGroup {
    display: inline-block !important;
    height: auto !important;
  }
}

/* メインメニュー */
.MainMenuBlock .MainMenuList {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0.1em auto;
  padding: 0;
  font-size: 100%;
  font-weight: 500;
  margin-left: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
}

.MainMenuBlock .MainMenuList li .IllustIcon {
  height: 50px;
}

.MainMenuBlock .MainMenuList li .IllustIcon img {
  height: 100%;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .MainMenuBlock .MainMenuList {
    margin: 0 auto;
  }
}

/* 1階層目 */
.MainMenuBlock .MainMenuList > li {
  position: static;
}

.MainMenuBlock .MainMenuList > li > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  position: relative;
  padding: 0.1em 0.95em;
  margin: -0.1em 0.0em;
  height: 100%;
  color: #222;
}

.MainMenuBlock .MainMenuList > li > a:hover {
  color: #222;
}

.MainMenuBlock .MainMenuList > li.current > a {
  color: #8cb808;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock .MainMenuList > li > a {
    font-size: 1.35em;
    line-height: 50px;
  }
}

@media screen and (max-width: 767px) {
  .MainMenuBlock .MainMenuList > li {
    /*box-shadow:2px 2px 5px rgba(0,0,0,0.25);*/
    margin-top: 10px;
    margin-bottom: 10px;
  }
  .MainMenuBlock .MainMenuList > li > a {
    margin: 0;
  }
  .MainMenuBlock .MainMenuList > li.current > a {
    color: #8cb808;
    background: #dffffd;
  }
}

.MainMenuBlock .MainMenuList > li > a::after {
  -webkit-transition: all .2s;
  transition: all .2s;
  content: "";
  display: block;
  position: absolute;
  top: 65px;
  width: 100%;
  left: 0%;
  background: #8cb808;
  height: 2px;
  margin-top: -3px;
  opacity: 0;
  width: 0;
}

header.HeaderDivision.FixMenu.FixMenu2 .MainMenuBlock .MainMenuList > li > a::after {
  top: 60px;
}

.MainMenuBlock .MainMenuList > li > a:hover::after,
.MainMenuBlock .MainMenuList > li.DropDownParent:hover > a::after {
  opacity: 1;
  width: 100%;
  left: 0%;
}

.MainMenuBlock .MainMenuList > li.DropDownParent:hover > a::after {
  background: #8cb808;
  height: 2px;
  margin-top: -3px;
}

.MainMenuBlock .MainMenuList > li .Label,
.MainMenuBlock .MainMenuList > li .Icon {
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
}

.MainMenuBlock .MainMenuList > li .Label {
  font-size: 0.85em;
  margin-left: 2px;
}

.MainMenuBlock .MainMenuList > li .Icon {
  color: inherit;
  padding: 0;
}

.MainMenuBlock .MainMenuList > li .Icon::before {
  font-size: 300%;
  margin-bottom: 0;
}

.FootMenuItem .MainMenuList > li.messaga .Icon,
.FootMenuItem .MainMenuList > li.book .Icon,
.FootMenuItem .MainMenuList > li.news .Icon,
.FootMenuItem .MainMenuList > li.about .Icon {
  display: none !important;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock .MainMenuList > li {
    width: auto;
    display: inline-block;
    border-left: 0px solid rgba(0, 0, 0, 0.25);
    position: relative;
  }
  .MainMenuBlock .MainMenuList > li.messaga,
  .MainMenuBlock .MainMenuList > li.book,
  .MainMenuBlock .MainMenuList > li.news,
  .MainMenuBlock .MainMenuList > li.about {
    display: none !important;
  }
  .FooterMenuBlock .BlockContents .MenuList > li {
    border-left: 1px solid #ccc;
    padding: 2px 6px;
    line-height: 1;
  }
  .FootMenuItem {
    padding: 0 10px;
  }
  .FootMenuItem .MainMenuList > li.about {
    display: none !important;
  }
  .FooterMenuBlock .BlockContents .MenuList {
    display: inline-block;
  }
  .FooterMenuBlock .BlockContents .MenuList > li a {
    line-height: 1.1;
    font-size: 1.2rem;
  }
  .FooterMenuBlock .BlockContents .MenuList > li a .Label::before {
    display: none !important;
  }
  .FootMenuItem .ContentsMenuList li:last-child {
    border-right: 1px solid #ccc;
  }
  .MainMenuBlock .MainMenuList > li:last-child {
    border-right: 0px solid rgba(0, 0, 0, 0.25);
  }
  .MainMenuBlock .MainMenuList > li:last-child:before {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .MainMenuBlock {
    height: 64px;
  }
  .MainMenuBlock .MainMenuList {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .MainMenuBlock .MainMenuList > li {
    width: 100%;
    position: relative;
  }
  .MainMenuBlock .MainMenuList > li > a,
  .MainMenuBlock .ContentsMenuList > li > a {
    padding: 0;
    margin: 2.5px;
    border-radius: 0;
    background: #fff;
    border: 0px solid;
    color: #555;
    text-align: left;
    /*background: #e9faff;*/
    border: 1px solid #aaa;
    border-radius: 10px;
    -webkit-box-shadow: 0 0.04em 0.18em rgba(0, 0, 0, 0.5);
            box-shadow: 0 0.04em 0.18em rgba(0, 0, 0, 0.5);
  }
  .MainMenuBlock .MainMenuList > li.messaga .Icon,
  .MainMenuBlock .MainMenuList > li.book .Icon,
  .MainMenuBlock .MainMenuList > li.news .Icon,
  .MainMenuBlock .MainMenuList > li.about .Icon {
    display: none !important;
  }
  .MainMenuBlock .MainMenuList > li.current > a {
    color: #8cb808;
    background: #dffffd;
  }
  .MainMenuBlock .MainMenuList > li.DropDownParent > a {
    border-radius: 10px 10px 0 0;
  }
  .MainMenuBlock .MainMenuList > li.DropDownParent.current > a {
    background: none;
    color: #222;
  }
  .MainMenuBlock .MainMenuList > li > a::after {
    display: none;
  }
  .MainMenuBlock .MainMenuList > li .Label,
  .MainMenuBlock .MainMenuList > li .Icon {
    display: inline-block;
    /*font-size 2rem;*/
    /*text-align: left;*/
  }
}

/* 2階層目 */
.MainMenuBlock .DropDownChild {
  padding: 35px 50px;
  padding: 25px 0;
  color: #555;
  background: rgba(255, 255, 255, 0.95);
  margin-top: calc(1em - 10px);
}

.MainMenuBlock .DropDownChild > .inner {
  list-style: none;
  max-width: 1000px;
  margin: 0 auto;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.MainMenuBlock .DropDownChild > .inner .Heading,
.MainMenuBlock .DropDownChild > .inner .ContentsMenu {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.MainMenuBlock .DropDownChild > .inner .Heading {
  font-weight: 400;
  vertical-align: top;
  width: 35%;
  margin: 0;
  line-height: 1;
  font-size: 2rem;
  padding: 0 15px;
}

.MainMenuBlock .DropDownChild > .inner .ContentsMenuList {
  width: 65%;
  list-style: none;
  margin: 0;
  padding: 0 15px;
}

.MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
  margin: 0 0 1em;
}

.MainMenuBlock .DropDownChild > .inner .ContentsMenuList li a:hover {
  color: #8cb808;
  text-decoration: none;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock .DropDownChild {
    margin-top: calc(1em - 10px);
    background: none;
    padding: 6px 0 10px 0;
  }
  .FixMenu2 .MainMenuBlock .DropDownChild {
    margin-top: calc(1em - 15px);
  }
  .MainMenuBlock .DropDownChild {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border: none;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading {
    color: #8cb808;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading {
    font-weight: 400;
    vertical-align: top;
    width: 35%;
    margin: 0;
    line-height: 1;
    font-size: 2rem;
    padding: 0 15px;
    text-align: left;
    display: none;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList {
    width: 65%;
    list-style: none;
    margin: 0;
    padding: 0 0px;
    text-align: left;
    width: auto;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
    margin-bottom: 0px;
    border-bottom: 1px solid #ccc;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li a {
    min-width: 150px;
    background: #fff;
    border-radius: 0px;
    -webkit-box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.25);
            box-shadow: 0.1em 0.1em 0.2em rgba(0, 0, 0, 0.25);
    padding: 10px 15px;
    width: auto;
    width: 100%;
    line-height: 1.2;
    text-align: left;
    white-space: nowrap;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li a:hover {
    background: #f5f5f5;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li a::before {
    content: '\e807';
    font-family: "preset-icon";
    margin-right: 6px;
  }
}

@media screen and (max-width: 767px) {
  /* 2階層目 */
  .MainMenuBlock .DropDownChild {
    padding: 75px 100px;
    margin-left: -100px;
    margin-right: -100px;
    /*width: calc(100% + 200px);*/
    color: #fff;
    background: #f3f0ec;
    margin-top: calc(2em - 0px);
  }
  .MainMenuBlock .DropDownChild > .inner {
    list-style: none;
    max-width: 1000px;
    margin: 0 auto;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading,
  .MainMenuBlock .DropDownChild > .inner .ContentsMenu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading {
    font-size: 200%;
    font-weight: 400;
    vertical-align: top;
    width: 35%;
    margin: 0;
    line-height: 1;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList {
    width: 65%;
    list-style: none;
    margin: 0;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
    margin: 0 0 1em;
  }
  .MainMenuBlock .DropDownChild {
    display: block;
    position: static;
    visibility: visible;
    opacity: 1;
    padding: 0 0;
    margin: 0;
    width: 100%;
    background: none;
  }
  .MainMenuBlock .MainMenuList > li > a {
    opacity: 1;
    width: 100%;
    left: 0%;
    padding: 0.5em 0;
    background: #fff;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading {
    display: none;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList {
    width: 100%;
    margin-bottom: 0px;
    padding: 0;
  }
  .MainMenuBlock .MainMenuList > li > a {
    display: block;
    padding: 0.5em 0;
    text-align: center;
    /*text-align: left;*/
    /*margin:10px 0 0 0;*/
    margin: 0;
  }
  .MainMenuBlock .ContentsMenuList > li > a {
    display: block;
    padding: 0.4em 0;
    text-align: center;
    /*text-align: left;*/
    margin: 0;
    border-radius: 0;
    border-top: 1px solid #ccc;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
    margin: 0;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li.current a {
    background: #4169e1;
    color: #fff;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li:last-child a {
    border-radius: 0 0 10px 10px;
  }
}

/*アイコンメニュー*/
.IconMenu {
  line-height: 32px;
  margin: 10px auto 0;
  text-align: right;
}

.IconMenu p {
  margin: 0 10px;
  line-height: 32px;
  text-align: right;
  display: inline-block;
  color: #4169e2;
}

.IconMenu a {
  margin: 0 10px;
  display: inline-block;
  color: #4169e2;
}

.IconMenu a:hover {
  text-decoration: none;
  color: #fff;
}

.IconMenu span {
  font-size: 1.0em;
  line-height: 1.1;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
}

.IconMenu a:hover span {
  color: #4169e2;
}

.IconMenu .Icon {
  display: inline-block;
  text-align: center;
  font-size: 1.3em;
  margin-right: 0px;
  border: 1px solid  #4169e2;
  width: 42px;
  height: 42px;
  line-height: 38px;
  border-radius: 37px;
  background: #e9faff;
  margin-right: 7px;
}

.IconMenu a:hover .Icon {
  background: #4169e2;
  color: #fff;
}

.FootIconMenu .IconMenu {
  text-align: center;
}

.IconMenu .InfoItem {
  font-size: 130%;
}

.IconMenu .TelePhoneItem {
  font-size: 130%;
}

.IconMenu .TelePhoneItem .Sub {
  font-size: 70%;
  line-height: 1.1;
  margin-top: 0.3rem;
}

.IconMenu .MailItem {
  font-size: 130%;
}

.IconMenu .MailItem span:not(.Icon) {
  font-size: 100%;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  /*アイコンメニュー*/
  .IconMenu {
    line-height: 32px;
    margin: 10px auto;
    text-align: left;
    width: 100%;
    min-width: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .IconMenu a {
    margin: 0 10px;
    display: block;
  }
}

/*言語選択*/
/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .SubHeaderMenuArea {
    position: absolute;
    top: 37px;
    right: 10px;
    color: #8cb808;
    z-index: 15;
    cursor: pointer;
    width: 140px;
    min-height: 40px;
    background: #fff;
    border-left: 1px solid #036978;
    border-right: 1px solid #036978;
    border-bottom: 1px solid #036978;
    border-radius: 0 0 10px 10px;
  }
  .SubHeaderMenuArea .headerLang {
    text-align: center;
  }
  .SubHeaderMenuArea .headerLang .Nav01 {
    padding: 5px;
    padding-bottom: 10px;
  }
  .SubHeaderMenuArea .headerLang .Icon::before {
    content: '\f107';
    font-family: "preset-icon";
  }
  .SubHeaderMenuArea .headerLang .Nav01.open .Icon::before {
    content: '\f106';
    font-family: "preset-icon";
  }
  .SubHeaderMenuArea .headerLang .Nav01 .LangButton {
    margin-right: 10px;
  }
  /*言語プルダウン*/
  #LangSelectButton ul {
    float: none;
    list-style: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 5px;
  }
  #LangSelectButton ul li {
    background: #fff;
    border-top: 1px solid #ccc;
    margin: 0;
  }
  #LangSelectButton ul li span {
    cursor: pointer;
    line-height: 30px;
    font-size: 12px;
    margin: 0;
    padding: 0;
    height: 30px;
    text-align: center;
    width: 100%;
    border-radius: 0px;
    color: #555;
    display: block;
  }
  #LangSelectButton ul li span.Active {
    background: #555;
    color: #fff;
    width: auto;
  }
  #LangSelectButton ul li a span {
    display: block;
  }
  #LangSelectButton ul li a:hover span {
    background: #555;
    color: #fff;
  }
}

@media screen and (max-width: 767px) {
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox {
    position: fixed;
    z-index: 10000;
    width: 46px;
    height: 35px;
    top: 12px;
    right: 55px;
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    background: none;
    margin: 0;
    z-index: 21000;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .Icon {
    font-size: 22px;
    position: relative;
    padding: 0 8px;
    height: 42px;
    display: block;
    margin-top: 0px;
    cursor: pointer;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .Icon::before {
    content: '';
    font-family: "picticon";
    font-style: normal;
    font-weight: normal;
    margin-right: 0.0em;
    padding-right: 0.3em;
    color: #001c57;
    position: static;
    width: 22.2px;
    height: 35px;
    background: url(../img/common/icon/icon_lang.png) no-repeat 50% 5%;
    background-size: 25px auto;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .Icon::after {
    position: absolute;
    content: "LANG";
    display: inline-block;
    bottom: 0;
    left: 0;
    font-size: 10px;
    width: 44.8px;
    text-align: center;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .Main,
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .Sub {
    display: none;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .headerLang .Nav01 {
    height: 45px;
  }
  .MainMenuBlock .MainMenu li.LastList {
    margin-bottom: 85px;
  }
  .SubHeaderMenuArea .SubTextMenuItem .LanglBox .PcNav01 {
    display: none;
  }
  .LangButton {
    display: none;
  }
  /*言語プルダウン*/
  #LangSelectButton ul {
    float: none;
    list-style: none;
    margin-top: 0;
    width: 90px;
    margin-left: -20px;
  }
  #LangSelectButton ul li {
    background: #fff;
    border: 1px solid #ccc;
    margin: 0;
  }
  #LangSelectButton ul li span {
    cursor: pointer;
    line-height: 30px;
    font-size: 12px;
    margin: 0;
    padding: 0;
    height: 30px;
    text-align: center;
    width: 90px;
    border-radius: 0px;
    color: #555;
    display: block;
  }
  #LangSelectButton ul li span.Active {
    background: #555;
    color: #fff;
    width: auto;
  }
  #LangSelectButton ul li a span {
    display: block;
  }
  #LangSelectButton ul li a:hover span {
    background: #555;
    color: #fff;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Contents                                      */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.ContentsDivision {
  position: relative;
  /*overflow: hidden;*/
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .ContentsDivision {
    margin-top: 0;
    background: #fff;
  }
}

@media screen and (max-width: 767px) {
  .ContentsDivision {
    margin-top: 64px;
  }
}

/* ContentsArea
--------------------------------------------------- */
.ContentsArea {
  position: relative;
  z-index: 5;
  padding: 0 0 3em;
}

/* - - ページ（下層ページ汎用） - - */
/* ページタイトル背景 */
.Page .PageHeader {
  /*background: #e0efff;*/
  position: relative;
  text-align: center;
  margin-bottom: 10px;
  background: url(../img/common/decoration/bg_day_fukui_station.jpg) no-repeat 50% 50%;
  background-size: auto;
}

@media only screen and (min-width: 1920px) {
  .Page .PageHeader {
    background-size: 100%;
  }
}

.Page.IndustrialPage .PageHeader {
  background-image: url(../img/common/decoration/bg_techno_port.jpg);
}

.Page.OfficePage .PageHeader {
  background-image: url(../img/common/decoration/bg_nighe_fukui_station.jpg);
}

.Page.CompanyPage .PageHeader {
  background-image: url(../img/common/decoration/bg_tojimbou.jpg);
}

.Page.PreferentialPage .PageHeader {
  background-image: url(../img/common/decoration/bg_tsuruga_wan.jpg);
}

.Page.ContactPage .PageHeader {
  background-image: url(../img/common/decoration/bg_office_room.jpg);
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .Page .PageHeader {
    padding: 4em 0;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    position: relative;
    margin: 20px auto;
  }
  .Page .PageHeader::before {
    position: absolute;
    content: "";
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 1px;
  }
}

@media screen and (max-width: 767px) {
  .Page .PageHeader {
    padding: 4em 0;
    min-width: 0;
  }
  .Page .PageHeader {
    /*background: #e0efff;*/
    position: relative;
    text-align: center;
    margin-bottom: 10px;
    /*background: url(../img/common/decoration/bg_page_title.jpg) no-repeat 50% 50%;
                background-size: 100%;*/
  }
}

/* ページタイトル */
.Page .PageHeader .Heading {
  color: #8cb808;
  margin: 0 auto;
  position: relative;
  max-width: 600px;
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.9);
  /*border-top:1px solid #4169e1;
          border-bottom:1px solid #4169e1;*/
}

.Page .PageHeader .Heading .Sub {
  font-size: 180%;
  letter-spacing: 0.2em;
  font-weight: 500;
  display: block;
  text-align: center;
}

.Page .PageHeader .Heading .Main {
  /*display:none;*/
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .Page .PageHeader .Heading .Sub {
    font-size: 130%;
  }
}

/*下層メニュー*/
.ContentsArea .SubCateMenuArea {
  max-width: 1380px;
  display: block;
  margin: 10px auto;
}

.ContentsArea .SubCateMenuArea ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin: 0 auto;
}

.ContentsArea .SubCateMenuArea ul li {
  width: calc(100% / 4);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  text-align: center;
}

.ContentsArea .SubCateMenuArea ul li a {
  background: #8cb808;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
  width: calc(100% - 5px);
  padding: 0.5em 10px;
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.ContentsArea .SubCateMenuArea ul li.current a {
  background: #222;
}

.ContentsArea .SubCateMenuArea ul li a:hover {
  color: #fff;
  background: #70d4ce;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*ラウンドメニューー*/
.RoundButtonLink {
  position: relative;
}

.RoundButtonLink ul li a::before {
  content: '';
  position: absolute !important;
  right: 5%;
  bottom: 40%;
  width: 7%;
  height: 1px;
  background: #fff;
  margin: 0;
  margin-right: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RoundButtonLink ul li a::after {
  content: '';
  position: absolute !important;
  right: 5.5%;
  bottom: 40%;
  width: 1px;
  height: 8px;
  background: #fff;
  margin: 0;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RoundButtonLink ul li a:hover::before {
  right: 3%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RoundButtonLink ul li a:hover::after {
  right: 3.5%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/*下層メニュー用*/
.RoundButtonLink .widget ul li a {
  padding: 15px 13% !important;
}

@media screen and (max-width: 767px) {
  .ContentsArea .SubCateMenuArea {
    display: none;
  }
}

.BannerArea .BannerBlock {
  width: 100%;
}

.BannerArea .BannerBlock ul {
  list-style: none;
  text-align: center;
}

.BannerArea .BannerBlock ul li {
  margin: 10px 5px;
  display: inline-block;
  vertical-align: middle;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .BannerArea .BannerBlock ul {
    margin: 20px auto;
  }
}

@media screen and (max-width: 767px) {
  .BannerArea .BannerBlock ul li {
    margin: 10px;
    display: block;
  }
  .BannerArea .BannerBlock ul li img {
    width: 80%;
    max-width: 300px;
    margin: 0 auto;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Footer                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
footer {
  position: relative;
  padding: 35px 0 0 0;
  background: none;
  border-top: 0 solid #f2f2f2;
  background: #e4faef;
}

.SiteFooterGroup > * {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  position: relative;
}

.SiteFooterArea .BannerList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
}

.SiteFooterArea .BannerList li {
  width: 25%;
  padding: 10px;
}

/* - - AuthorBlock - - */
.AuthorBlock {
  margin: 0 auto;
  text-align: center;
}

.AuthorBlock .BlockHeader {
  margin-bottom: 1em;
}

.AuthorBlock .BlockContents {
  margin-bottom: 2.5em;
}

.FooterMenuBlock {
  padding: 15px 0;
  width: 100%;
}

.FooterMenuBlock .BlockHeader {
  width: 300px;
  text-align: left;
  float: left;
}

.FooterMenuBlock .BlockHeader .FootLogo {
  display: block;
  margin-bottom: 10px;
}

.FooterMenuBlock .BlockHeader .FootLogo img {
  width: 100%;
  margin: 0 auto 0 0;
  display: block;
  max-width: 255px;
}

.FooterMenuBlock .BlockContents {
  text-align: left;
  position: relative;
  float: right;
  width: calc(100% - 500px);
  min-width: 600px;
}

.FooterMenuBlock .MainMenuList {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  list-style-type: disc;
}

.FooterMenuBlock .MainMenuList > li {
  padding-left: 0px;
  padding-right: 20px;
  margin-left: 10px;
}

.FooterMenuBlock .MainMenuList > li a {
  padding: 0;
  text-shadow: none;
}

.AuthorContents {
  margin-top: 0em;
  text-align: left;
  margin-bottom: 2em;
  line-height: 1.8;
}

.AuthorContents .Headding .Main {
  font-size: 105%;
  font-weight: normal;
  line-height: 1.3;
  color: #8cb808;
  font-weight: bold;
}

.AuthorContents .Headding .Sub {
  font-size: 100%;
  font-weight: normal;
  display: block;
  line-height: 1.3;
}

.AuthorContents p {
  font-size: 88%;
  font-weight: normal;
}

.AuthorContents p span {
  display: inline-block;
  white-space: nowrap;
}

.AuthorContents p.BannerLinkItem {
  display: block;
  margin: 10px 0;
}

.SNSBlock {
  margin-bottom: 20px;
  max-width: 128px;
}

/*blog*/
.ExiteLinkBlock {
  font-size: 3rem;
  color: #fff;
  margin-bottom: 20px;
}

.ExiteLinkBlock a {
  margin: 0 15px;
  height: 42px;
  border-radius: 21px;
  display: inline-block;
  vertical-align: bottom;
}

.ExiteLinkBlock a .Icon {
  color: #4169e1;
  font-size: 1.6rem;
  margin: 0 18px;
  line-height: 42px;
  display: block;
  text-align: center;
}

.ExiteLinkBlock a:hover {
  background: #4169e1;
  -webkit-box-shadow: 0 0 10px #fff ,0 0 10px #fff;
          box-shadow: 0 0 10px #fff ,0 0 10px #fff;
  text-decoration: none;
}

/*バナー*/
.FootBannerItem {
  text-align: left;
}

.FootBannerItem a {
  display: inline-block;
  width: 200px;
}

.SiteCopyrightArea {
  border-top: 0px solid #fff;
  text-align: left;
  padding: 15px 0 50px 0;
  position: relative;
  font-size: 0.8em;
}

.SiteCopyrightArea .SiteCopyrightBlock {
  position: relative;
}

.SiteCopyrightArea .SiteCopyrightBlock .FootTree {
  position: absolute;
  right: 0;
  bottom: calc(100% - 10px);
}

.FooterMenuBlock .BlockContents .MenuList > li a .Label {
  position: relative;
}

.FooterMenuBlock .BlockContents .MenuList > li a .Label::before {
  position: static;
  content: "\f105";
  font-family: 'preset-icon';
  margin-right: 2px;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .FooterMenuBlock {
    margin-left: 0;
    margin-right: 0px;
  }
  .FooterMenuBlock .BlockHeader .FootLogo {
    text-align: left;
  }
  .FooterMenuBlock .BlockHeader .FootLogo img {
    display: inline-block;
  }
  .FooterMenuBlock .BlockContents {
    padding-top: 20px;
  }
  .SNSBlock {
    text-align: left;
    width: 200px;
  }
  .ExiteLinkBlock {
    text-align: right;
    min-width: 100px;
    float: right;
  }
  .FooterMenuBlock .BlockContents .MenuList.FlexParent {
    display: inline;
    -webkit-box-align: left;
    -ms-flex-align: left;
    list-style: none;
    margin-left: 0;
  }
  .FooterMenuBlock .BlockContents .MenuList > li {
    vertical-align: top;
    margin: 0;
    display: inline-block;
  }
  .FooterMenuBlock .BlockContents .MenuList > li.DropDownParent {
    margin-bottom: 15px;
  }
  .FooterMenuBlock .BlockContents .MenuList > li a {
    background: none !important;
    padding: 2px 1px !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
    color: #222 !important;
    text-align: left !important;
    text-shadow: none !important;
    line-height: 1;
    text-indent: 0;
  }
  .FooterMenuBlock .BlockContents .MenuList > li a .IllustIcon {
    display: none;
  }
  .FooterMenuBlock .BlockContents .MenuList > li a .Label {
    font-size: 110%;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild {
    opacity: 1;
    visibility: visible;
    position: static;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild .inner.FlexParent {
    display: block;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild .inner.FlexParent .Heading {
    display: none;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild .ContentsMenuList {
    margin-left: 0;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild li {
    width: 100%;
  }
  .FooterMenuBlock .BlockContents .MainMenuList .DropDownChild li a:before {
    content: '\e807';
    font-family: "preset-icon";
    margin-right: 6px;
  }
  /*お知らせ、アクセスマップ*/
  .FooterMenuBlock .BlockContents.OtherLink {
    padding-top: 0;
  }
  .SiteCopyrightArea .Copyright {
    margin-left: 5px;
  }
  /*バナー*/
  .FootBannerItem {
    margin-top: 5px;
  }
}

@media screen and (max-width: 767px) {
  footer {
    padding-top: 10px;
  }
  .FooterMenuBlock {
    padding: 15px 0;
    max-width: 650px;
    width: 100%;
  }
  .FooterMenuBlock .BlockHeader {
    float: none;
    width: 100%;
    text-align: left;
  }
  .FooterMenuBlock .BlockHeader .FootLogo {
    width: 100%;
    display: block;
    margin-bottom: 0;
  }
  .FooterMenuBlock .BlockHeader .FootLogo img {
    margin: 0 auto;
    max-width: 260px;
  }
  .FooterMenuBlock .BlockContents {
    float: none;
    width: 100%;
    text-align: left;
    position: relative;
    min-width: 0;
  }
  .FooterMenuBlock .BlockContents .FootMenuItem {
    display: none;
  }
  .AuthorContents {
    margin-top: 0em;
    text-align: left;
    margin-bottom: 1.5em;
    width: 260px;
    margin: 0 auto;
  }
  .AuthorContents h3 .Main {
    font-size: 100%;
    font-weight: normal;
  }
  .AuthorContents h3 .Sub {
    font-size: 90%;
    display: block;
  }
  .AuthorContents p {
    font-size: 100%;
    font-weight: normal;
  }
  .AuthorContents p span.InlineB {
    display: inline-block;
  }
  .SNSBlock {
    text-align: center;
    width: 100%;
    margin: 10px auto;
    width: 200px;
  }
  .ExiteLinkBlock {
    text-align: center;
    width: 100%;
    margin-bottom: 30px;
  }
  /*バナー*/
  .FootBannerItem {
    text-align: center;
    width: 100%;
  }
  .FootBannerItem a {
    display: inline-block;
    width: 200px;
  }
  .SiteCopyrightArea {
    text-align: left;
    padding: 15px 95px 15px 15px;
  }
  .SiteFooterArea .BannerList {
    margin-top: 30px;
  }
  .SiteFooterArea .BannerList li {
    width: 48%;
    padding: 5px;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ● 申込フォーム 専用CSS                                 */
/*    ・ページ固有の処理を記述                             */
/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ContentsDivision
--------------------------------------------------- */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    override baser                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* フォーム全体のエラー表記 */
#MessageBox {
  padding: 75px 5% 25px;
  margin: 1em auto;
  width: 75%;
  border-radius: 10px;
  text-align: center;
  color: #c00;
  background: #fde0e0;
  border: 1px solid #c00;
  position: relative;
}

#MessageBox .alert-message {
  line-height: 1.5 !important;
  border: none;
  padding: 0;
  color: inherit;
  margin: 0 !important;
}

#MessageBox .alert-message:before {
  font-family: "preset-icon";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  font-size: 50px;
  position: absolute;
  top: 0px;
  left: 50%;
  margin-left: -.5em;
  content: '\e837';
}

/* 送信完了画面にMessageBoxを応用 */
#MessageBox.Complete {
  padding: 75px 5%;
  margin: 4em auto 1em;
  text-align: center;
  color: inherit;
  background: #fff;
  border: 1px solid #ccc;
  position: relative;
}

.mail-description {
  line-height: 1.5;
}

.label-danger {
  background: #C30;
  color: #fff;
  padding: 1px 3px;
  margin: 2px;
  line-height: 1.1;
}

/* 項目ごとのエラー表記 */
.FormTable .error-message,
.AuthCaptchaTable .error-message {
  margin: 1em 0 1em;
  border-radius: 2px;
  font-size: 1.2rem;
  line-height: 1;
  color: #f00;
  background: none;
  padding-left: 0;
  text-align: left;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Form Setting [Common]                          */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* FormItem （入力枠 1つ分）
--------------------------------------------------- */
.FormItem {
  margin: 0.25em 0;
  /* 入力枠の共通スタイル */
  /* + + + + + レスポンシブ + + + + +  */
  /* + + + + + レスポンシブ + + + + +  */
  /* placeholder  */
  /* focus時 */
  /* エラー時 */
  /* readonly */
  /* invalid */
  /* 汎用 input部品のスタイル */
  /* + + + + + レスポンシブ + + + + +  */
  /* 補足テキスト等 */
}

.FormItem input[type='text'],
.FormItem input[type='password'],
.FormItem input[type='date'],
.FormItem input[type='number'],
.FormItem input[type='tel'],
.FormItem input[type='mail'],
.FormItem select {
  line-height: 1.25;
}

.FormItem input[type='text'],
.FormItem input[type='password'],
.FormItem input[type='date'],
.FormItem input[type='number'],
.FormItem input[type='tel'],
.FormItem input[type='mail'],
.FormItem select,
.FormItem textarea,
.FormItem .AuthCaptchaTable input,
.FormItem .AuthCaptchaTable select,
.FormItem .AuthCaptchaTable textarea {
  max-width: 100%;
  border: 1px solid #ccc;
  border-radius: 0.25em;
  font-size: 100%;
  padding: 0.75em 0.75em;
  margin-top: 2.5px;
  margin-bottom: 2.5px;
  background: #fff;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: inherit;
}

@media screen and (max-width: 767px) {
  .FormItem .FormItem {
    font-size: 1.6rem;
  }
  .FormItem input[type='text'],
  .FormItem input[type='password'],
  .FormItem input[type='date'],
  .FormItem input[type='number'],
  .FormItem input[type='tel'],
  .FormItem input[type='mail'],
  .FormItem select,
  .FormItem textarea {
    width: 100%;
  }
}

.FormItem input[type='text'],
.FormItem input[type='password'],
.FormItem input[type='date'],
.FormItem input[type='number'],
.FormItem input[type='tel'],
.FormItem input[type='mail'],
.FormItem textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.FormItem input[type='mail'] {
  width: 100%;
}

.FormItem input[type='number'] {
  width: 5em;
  text-align: right;
  -webkit-appearance: none;
  -moz-appearance: textfield;
}

.FormItem input[type='password'] {
  width: 10em;
}

.FormItem select {
  position: relative;
}

.FormItem .wrap_select {
  position: relative;
  display: inline-block;
}

.FormItem .wrap_select::before {
  content: "";
  position: absolute;
  right: 0.5em;
  top: 50%;
  z-index: 1;
  margin-top: -4px;
  width: 5px;
  height: 5px;
  border-top: 2px solid #c00;
  border-right: 2px solid #c00;
  -webkit-transform: rotate(135deg) translate3d(0, 0, 0);
          transform: rotate(135deg) translate3d(0, 0, 0);
  pointer-events: none;
  line-height: 1.1;
  vertical-align: bottom;
}

.FormItem .wrap_select select {
  position: static;
  margin: 0;
  padding-right: 1.5em;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.FormItem .wrap_select select::-ms-expand {
  display: none;
}

.FormItem .wrap_select select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

@media screen and (max-width: 767px) {
  .FormItem .wrap_select {
    display: block;
  }
}

.FormItem textarea {
  width: 100%;
  height: 6em;
}

.FormItem input[type='checkbox'],
.FormItem input[type='radio'] {
  margin-right: 4px;
}

.FormItem label {
  display: inline;
  margin-right: 1.5em;
}

.FormItem ::-webkit-input-placeholder {
  color: #616161;
  /*color: rgba(0,0,0,0.25);*/
  font-weight: normal !important;
}

.FormItem ::-moz-placeholder {
  color: #616161;
  opacity: 1;
  /*color: rgba(0,0,0,0.25);*/
  font-weight: normal !important;
}

.FormItem :-ms-input-placeholder {
  color: #616161;
  /*color: rgba(0,0,0,0.25);*/
  font-weight: normal !important;
}

.FormItem input:placeholder-shown,
.FormItem textarea:placeholder-shown {
  background: #fdf5f5;
}

.FormItem select.test:focus {
  border: 1px solid #aaf;
  -webkit-box-shadow: 0 0 1em #aaf;
          box-shadow: 0 0 1em #aaf;
}

.FormItem .form-error:not([type='radio']),
.FormItem .form-error:not([type='checkbox']) {
  border: 2px solid #f00 !important;
}

.FormItem div.checkbox.form-error {
  padding: 0.5em;
}

.FormItem html.safari .form-error[type='radio'],
.FormItem html.safari .form-error[type='checkbox'] {
  background: #333;
}

.FormItem input[readonly],
.FormItem select[readonly],
.FormItem textarea[readonly] {
  border: none !important;
  background: none !important;
}

.FormItem input[invalid],
.FormItem select[invalid],
.FormItem textarea[invalid] {
  color: #777 !important;
  background: #ccc !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border-color: #aaa;
}

.FormItem .InputText {
  width: 100%;
}

.FormItem .InputName,
.FormItem .InputNameKana {
  width: 20em;
  margin-right: 0;
}

.FormItem .mail-before-attachment + .InputName,
.FormItem .mail-before-attachment + .InputNameKana {
  margin-left: 0.5em;
}

.FormItem .InputCode {
  width: 20em;
}

.FormItem .InputZip {
  width: 8em;
  margin: 0 3px;
}

.FormItem .InputPhone {
  width: 7.5em;
  margin: 0 3px;
}

.FormItem .InputAddress {
  width: 100%;
}

.FormItem .InputMail {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .FormItem .mail-before-attachment + .InputName,
  .FormItem .mail-before-attachment + .InputNameKana,
  .FormItem .InputZip {
    width: calc(100% - 2.5em) !important;
  }
  .FormItem .InputPhone {
    width: 5em !important;
  }
}

.FormItem .MailDescription > p {
  margin-bottom: 0.5em;
  line-height: 1.5;
}

.FormItem .mail-description a,
.FormItem .mail-attention a {
  color: #335cad;
  text-decoration: underline;
}

.FormItem .mail-description,
.FormItem .mail-attention {
  margin: 0.5em 0;
  display: block;
}

.mail-before-attachment {
  display: inline-block;
  min-width: 2em;
  text-align: center;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .mail-description,
  .mail-before-attachment,
  .mail-after-attachment,
  .mail-attention {
    font-size: 1.4rem;
    display: inline-block;
    margin-bottom: 1em;
  }
}

/* 確認画面の設定 */
.FormBlock.Confirm .FormItem .mail-before-attachment {
  display: inline;
  min-width: 0;
  text-align: left;
  margin-right: 1em;
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*   Form系のTable                                  */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/* AuthCaptchaTable イメージ認証
--------------------------------------------------- */
.AuthCaptchaTable {
  margin: 30px auto 15px;
  border-collapse: collapse;
  border-spacing: 0px;
  border: 4px solid #ebf5da;
}

.AuthCaptchaTable th {
  text-align: center;
  width: 200px;
}

.AuthCaptchaTable td {
  width: 50%;
  padding: 10px;
  text-align: center;
  width: 250px;
  font-size: 87.5%;
}

/* FormTable 
--------------------------------------------------- */
.FormTable {
  margin: 25px auto !important;
  width: 100%;
  border-collapse: collapse;
  /* 入力部品 の親 */
  /* 独自処理：横並びにしない項目は block にする */
  /* 必須・任意の表示 */
  /* + + + + + レスポンシブ + + + + +  */
}

.FormTable th,
.FormTable td {
  padding: 10px 10px;
  line-height: 1.5;
  vertical-align: middle;
  border: 1px solid rgba(120, 100, 90, 0.25);
}

.FormTable th {
  background: #f5f5f5 !important;
  font-weight: normal;
  width: 30%;
  text-align: left;
}

.FormTable td {
  background: #fff !important;
  background: none;
}

.FormTable .FormItem {
  position: relative;
}

.FormTable .FormItem > [id*='Tel'] {
  /*display: inline-block;*/
}

.FormTable .FormItem > [id^='FieldMessageTel'],
.FormTable .FormItem > [id^='FieldMessageMail'],
.FormTable .FormItem > [id^='FieldMessageAddress'],
.FormTable .FormItem > [id^='FieldMessageNote'],
.FormTable .FormItem > [id^='FieldMessageEnquete'] {
  display: block;
}

.FormTable .FormItem > [id^='FieldMessageEnquete']:not(:first-child) {
  margin-top: 0.5em;
  border-top: 1px dotted #ccc;
  padding-top: 0.5em;
}

.FormTable th .normal,
.FormTable th .required {
  float: right;
}

.FormTable th .normal {
  display: none;
}

.FormTable th .required {
  color: #fff !important;
  background-color: #b22430;
  display: inline-block;
  font-size: 75%;
  line-height: 1.125;
  padding: 0.25em 0.5em;
  float: right;
  border-radius: 0.25em;
}

@media screen and (max-width: 767px) {
  .FormTable {
    border-bottom: 1px solid rgba(120, 100, 90, 0.25);
  }
  .FormTable tr {
    border: none;
    margin: 0;
  }
  .FormTable th {
    font-weight: bold;
    font-size: 1.6rem;
    padding: 1em 0 0 !important;
    background: none !important;
    border-left: none;
    border-bottom: none;
    border-right: none;
  }
  .FormTable td {
    border: none;
  }
  .FormTable th .required {
    float: left;
    margin-right: 0.5em;
    margin-left: 0 !important;
    font-size: 75% !important;
  }
}

/* --------------------------------------------------- */
/* MainContentsArea, DefaultBlock                      */
/* コンテンツエリア内 共通スタイル                     */
/* --------------------------------------------------- */
/* DefaultBlock (ページ・フォーム・ブログ全般の基本スタイル)
--------------------------------------------------- */
.DefaultBlock {
  /* タイトル部分 */
  /* コンテンツ部分 */
  /* + + + + + レスポンシブ + + + + +  */
  /* フッタ部分 */
  /* + + + + + レスポンシブ + + + + +  */
}

/*news*/
.NewsList li > .inner .TextItem {
  position: relative;
}

.NewsList li > .inner .TextItem::before {
  content: '';
  position: absolute !important;
  right: 10px;
  bottom: 20px;
  width: 40px;
  height: 1px;
  background: #555;
  margin: 0;
  margin-right: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.NewsList li > .inner .TextItem::after {
  content: '';
  position: absolute !important;
  right: 12px;
  bottom: 20px;
  width: 1px;
  height: 8px;
  background: #555;
  margin: 0;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
  visibility: visible;
}

.NewsList li > .inner a:hover .TextItem::before {
  right: 3px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.NewsList li > .inner a:hover .TextItem::after {
  right: 5px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* ブログプラグイン(お知らせ)用
--------------------------------------------------- */
/* - - 共通 - - */
.DefaultButton {
  font-size: 1.2em;
  color: #fff;
  background: #8cb808;
  border-radius: 2em;
  padding: 8px 1.0em;
  line-height: 1.25;
  min-width: 7em;
  border: 1px solid #8cb808;
  margin: 10px 10px;
}

.DefaultButton:hover {
  color: #fff;
  background: #222;
  border: 1px solid #222;
  background: #70d4ce;
  border: 1px solid #70d4ce;
}

.SknTplTextButton .Button .Icon {
  display: inline-block;
  border-right: 0px dotted;
  padding: 0 0 0 0.1em;
  color: #fff;
  font-size: 1.2em;
  width: 48px;
  vertical-align: middle;
}

.DefaultButton .Label {
  min-width: 180px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.5;
  margin-top: -2px;
  padding: 0;
}

.DefaultButton .Label .Icon {
  display: inline-block;
  vertical-align: middle;
}

/*矢印*/
.RightArrowButton {
  position: relative;
}

.RightArrowButton::before {
  content: '';
  position: absolute !important;
  right: 5%;
  bottom: 20px;
  width: 7%;
  height: 1px;
  background: #fff;
  margin: 0;
  margin-right: 0px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RightArrowButton::after {
  content: '';
  position: absolute !important;
  right: 5.5%;
  bottom: 20px;
  width: 1px;
  height: 8px;
  background: #fff;
  margin: 0;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RoundButtonLink a:hover .ImageItem::before {
  right: 3%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.RoundButtonLink a:hover .ImageItem::after {
  right: 3.5%;
  -webkit-transition: all .3s;
  transition: all .3s;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .Button.DefaultButton {
    /*margin-top:2em;*/
    min-width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .Button.DefaultButton {
    margin: 5px 5px;
    min-width: 200px;
  }
  .DefaultButton {
    font-size: 1.2em;
    /*color: #222;
                background: #fff;
                border-radius: 2em;
                padding: 0.35em .8em;
                line-height: 1.25;
                min-width: 7em;
                border:1px solid #222;*/
  }
}

/* - - 一覧表示用 - - */
/* - - 詳細表示用 - - */
/*お知らせ共通*/
.BlogBlock .NewsList {
  margin: 0 auto;
}

.BlogBlock .NewsList li {
  border-bottom: 1px solid #a7a7a7;
  padding: 0;
}

.BlogBlock .NewsList li:first-child {
  border-top: 1px solid #a7a7a7;
}

.BlogBlock .NewsList li:last-child {
  border-bottom: 1px solid #a7a7a7;
}

.BlogBlock .NewsList li .TextItem {
  padding: 5px 0;
}

/*マップ共通*/
.MapArea {
  margin: 10px auto 40px auto;
}

.MapArea iframe {
  width: 100% !important;
  height: 500px !important;
}

/*アクセス*/
.AddressText span {
  width: 46%;
  display: inline-block;
  vertical-align: top;
}

.AddressText span.Postal {
  display: inline-block;
  width: auto;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MapArea iframe {
    margin-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .MapArea iframe {
    width: 100% !important;
    height: 400px !important;
  }
  .AddressText span {
    display: block;
    width: auto;
  }
}

/*装飾鍵1*/
.LayoutKa {
  display: block;
}

.LayoutKa .LeftTopKa {
  float: left;
  margin: -20px 0 0 -20px;
}

.LayoutKa .RightTopKa {
  float: right;
  margin: -20px -20px 0 0;
}

.LayoutKa .LeftBottomKa {
  float: left;
  margin: 0 0 -20px -20px;
}

.LayoutKa .RightBottomKa {
  float: right;
  margin: 0 -20px -20px 0;
}

/*ページタイトル*/
.Page .LayoutKa {
  display: block;
}

@media screen and (max-width: 767px) {
  .Page .LayoutKa {
    display: block;
    width: 100%;
    max-width: 600px;
  }
}

.Page .LayoutKa > img {
  margin: 0;
}

.Page .LayoutKa .inner {
  margin: 0 auto;
  min-width: 250px;
}

.SknTplDecoratedBox .DecoratedBox .inner {
  background: none;
  padding: 30px;
  margin: 10px auto;
}

.SknTplDecoratedBox .DecoratedBox .inner a {
  color: #8cb808;
  font-weight: bold;
}

.c-heading {
  font-size: 160%;
  font-family: serif;
  text-align: center;
}

.SknTplDecoratedBox .DecoratedBox .inner .c-heading {
  color: #222;
}

.SknTplDecoratedBox .DecoratedBox .inner .c-heading span {
  display: block;
}

.SknTplDecoratedBox .DecoratedBox .inner .c-heading small {
  display: inline-block;
  color: #0293a3;
  position: relative;
}

.SknTplDecoratedBox .DecoratedBox .inner .c-heading small::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: #0293a3;
  left: -70px;
  top: 50%;
}

.SknTplDecoratedBox .DecoratedBox .inner .c-heading small::after {
  position: absolute;
  content: "";
  width: 50px;
  height: 1px;
  background: #0293a3;
  right: -70px;
  top: 50%;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .Page .LayoutKa .inner {
    margin: 0 auto;
    min-width: 580px;
  }
}

.MaxWidth700 {
  max-width: 700px;
  margin: 10px auto;
  display: block;
}

.ImageOff {
  display: none;
}

/*Q&A基本*/
.QuestionList {
  border-bottom: 1px solid #ccc;
  margin: 0 0 0 0;
  padding: 15px 0;
}

.QuestionList .TitleHeading {
  position: relative;
}

.QuestionList .TitleHeading span.QuestionIcon {
  font-family: 'Pathway Gothic One', sans-serif;
  font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , sans-serif;
  font-size: 24px;
  width: 40px;
  text-align: center;
  background: #90b723;
  border: 1px solid #90b723;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 100%;
  color: #fff;
  -webkit-box-shadow: 0px 0px 5px #fff;
          box-shadow: 0px 0px 5px #fff;
  line-height: 1.6;
}

.QuestionList .TitleHeading span.DefaultMainTitle {
  margin-left: 60px;
  padding-top: 15px;
  padding-bottom: 15px;
  display: block;
  cursor: pointer;
  margin-right: 70px;
  font-size: 1.2em;
  color: #222;
}

.QuestionList .InfoSide {
  display: none;
}

.QuestionList.Display .InfoSide {
  display: block;
}

.QuestionList .InfoSide .Inner {
  position: relative;
}

.QuestionList .InfoSide .Inner .AnswerIconBlock {
  font-family: 'Pathway Gothic One', sans-serif;
  font-family: "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto , sans-serif;
  font-size: 24px;
  width: 40px;
  text-align: center;
  background: #2ea7d9;
  border: 1px solid #2ea7d9;
  display: block;
  position: absolute;
  left: 0;
  top: 5px;
  border-radius: 100%;
  color: #fff;
  -webkit-box-shadow: 0px 0px 5px #fff;
          box-shadow: 0px 0px 5px #fff;
  line-height: 1.6;
}

.QuestionList .InfoSide .Inner .ContentsText {
  margin-left: 60px;
  padding-top: 15px;
  display: block;
  border-top: 2px dotted #aaa;
  min-height: 80px;
  padding-bottom: 20px;
}

.QuestionList .TitleHeading::before {
  content: '\f107';
  font-family: "preset-icon";
  position: absolute;
  right: 10px;
  font-weight: normal;
  font-size: 80%;
  bottom: 10px;
  cursor: pointer;
  display: block;
}

.QuestionList .open::before {
  content: '\f106';
  font-family: "preset-icon";
  position: absolute;
  right: 10px;
  font-weight: normal;
  bottom: 10px;
  cursor: pointer;
  display: block;
}

.QuestionList .TitleHeading:after {
  content: "開く";
  position: absolute;
  right: 10px;
  font-weight: normal;
  font-size: 80%;
  bottom: 10px;
  margin-right: 1em;
  cursor: pointer;
  display: block;
}

.QuestionList .open:after {
  content: "閉じる";
  position: absolute;
  right: 10px;
  margin-right: 1em;
  font-weight: normal;
  bottom: 10px;
  cursor: pointer;
  display: block;
}

@media screen and (max-width: 767px) {
  .QuestionList .TitleHeading span.DefaultMainTitle {
    margin-left: 60px;
    font-size: 1.1em;
    margin-right: 50px;
  }
  .QuestionList .TitleHeading::before {
    content: '\f107';
    font-family: "preset-icon";
    right: 20px;
  }
  .QuestionList .open::before {
    content: '\f106';
    font-family: "preset-icon";
    right: 20px;
  }
  .QuestionList .TitleHeading:after {
    content: "開く";
    position: absolute;
    right: 10px;
    margin-right: 0;
    bottom: 30px;
  }
  .QuestionList .open:after {
    content: "閉じる";
    position: absolute;
    right: 10px;
    margin-right: 0;
    bottom: 30px;
  }
}

.FaqContentsBlock .UnitQA {
  border-bottom: 1px solid #555;
  margin: 0 0 0 0;
  padding: 0;
  /*    background: #f3f3f3;
    background: -moz-linear-gradient(top, #f3f3f3 0%, #ffffff 2%, #f3f3f3 84%, #ffffff 100%);
    background: -webkit-linear-gradient(top, #f3f3f3 0%,#ffffff 2%,#f3f3f3 84%,#ffffff 100%);
    background: linear-gradient(to bottom, #f3f3f3 0%,#ffffff 2%,#f3f3f3 84%,#ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f3f3f3', endColorstr='#ffffff',GradientType=0 );
    */
}

/* TextButton Template ：テキストボタン
--------------------------------------------------- */
.SknTplTextButton {
  position: relative;
  margin: 10px auto 20px auto;
}

/* - - ul - - */
.SknTplTextButton ul {
  font-size: 100%;
  list-style: none;
  text-align: center;
  margin: 0;
}

.SknTplTextButton li {
  margin: 0 2.5px;
  display: inline-block;
}

/* - - p - - */
.SknTplTextButton p {
  font-size: 100%;
  text-align: center;
  margin: 0;
}

/* Button style */
.SknTplTextButton .Button {
  font-size: 1.2em;
  color: #222;
  background: #fff;
  border-radius: 2em;
  padding: 0.65em 1.0em;
  line-height: 1.25;
  min-width: 7em;
  border: 1px solid #222;
  margin: 20px 10px;
}

/* 緑 */
.SknTplTextButton .Button.Green {
  color: #fff !important;
  background: #8cb808 !important;
  border: 1px solid #8cb808 !important;
  margin: 0 auto !important;
}

/* 黄緑 */
.SknTplTextButton .Button.YGreen {
  color: #fff !important;
  background: #b5e61d;
  background: rgba(181, 220, 29, 0.75);
}

/* 青系 */
.SknTplTextButton .Button.RBlue {
  color: #fff;
  background: #4169e1;
  background: rgba(65, 105, 225, 0.75);
}

.SknTplTextButton .Button.RBlue .Icon {
  color: #fff;
}

.SknTplTextButton .Button:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.9) !important;
  opacity: 1;
}

table .SknTplTextButton .Button:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.9) !important;
  border-color: rgba(0, 0, 0, 0.9) !important;
  opacity: 1;
}

table .SknTplTextButton .Button:hover .icon-file-pdf::before {
  color: #fff !important;
}

.SknTplTextButton .Button,
.SknTplTextButton .Button > * {
  line-height: 1.5;
  vertical-align: middle;
}

.SknTplTextButton .Button .Icon {
  display: inline-block;
  border-right: 1px dotted;
  padding: 0;
  line-height: 1;
}

.SknTplTextButton .Button .Label {
  display: inline-block;
  padding: 0 1.5em 0 1em;
  font-weight: 500;
}

.SknTplTextButton .Button .Label:before {
  font-size: 1.25em;
  position: static;
}

.SknTplTextButton .Button .Label em {
  font-weight: bold;
  margin: 0 0.2em;
}

.SknTplTextButton .Button:hover .Icon {
  color: #fff;
  background: none;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .SknTplTextButton {
    position: relative;
    margin: 5px auto 5px auto;
  }
  .SknTplTextButton ul {
    margin: 0.5em 0 !important;
  }
  .SknTplTextButton .Button {
    font-size: 87.5%;
    font-size: 90%;
    width: 100%;
    min-width: 280px;
  }
  .SknTplTextButton .Button {
    padding: 0.9em 0em;
  }
  .SknTplTextButton .Button:hover {
    padding: 0.9em 0em;
  }
  .SknTplTextButton .Button .Label {
    display: inline-block;
    padding: 0 1em 0 0.5em;
  }
}

/* - - ul - - */
.ContentsArea ul,
.ContentsArea ol {
  margin: 5px 5px 5px 2em;
}

.ContentsArea ul li,
.ContentsArea ol li {
  padding: 5px 0;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .ContentsArea ul,
  .ContentsArea ol {
    margin: 5px 5px 5px 2em;
  }
  .ContentsArea ul li,
  .ContentsArea ol li {
    padding: 5px 0;
  }
}

/*矢印*/
.ArrowItem {
  position: relative;
}

.ArrowItem::before {
  position: absolute;
  content: "";
  display: inline-block;
  width: 110px;
  height: 2.5px;
  right: 11px;
  bottom: 10px;
  background: #009245;
}

.ArrowItem::after {
  position: absolute;
  content: "";
  display: inline-block;
  width: 3.0px;
  height: 35px;
  right: 30px;
  bottom: 10px;
  background: #009245;
  -webkit-transform: skewX(50deg);
  transform: skewX(50deg);
}

.TopCommonBlock .ArrowItem:hover::before,
.TopCommonBlock .ArrowItem:hover::after {
  background: #fff;
}

.ConsultLinkBlock .ArrowItem:hover::before,
.ConsultLinkBlock .ArrowItem:hover::after {
  background: #90b723;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  /*矢印*/
  .ArrowItem {
    position: relative;
  }
  .ArrowItem::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 80px;
    height: 2.5px;
    right: 11px;
    bottom: 10px;
    background: #009245;
  }
  .ArrowItem::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 3.0px;
    height: 25px;
    right: 22px;
    bottom: 10px;
    background: #009245;
    -webkit-transform: skewX(50deg);
    transform: skewX(50deg);
  }
}

/* --------------------------------------------------- */
/* MovieArea                                           */
/* --------------------------------------------------- */
.MovieArea .MovieBlock {
  text-align: center;
  margin: 30px auto;
  padding: 0 10px;
  max-width: 960px;
}

.MovieArea .MovieBlock .ImageItem {
  width: 100%;
  padding-bottom: 54.20%;
  height: 0px;
  position: relative;
}

.MovieArea .MovieBlock .ImageItem iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .MovieArea .MovieBlock {
    display: block;
  }
}

/*ブログ詳細*/
.BlogSingleTopItem .Button.DefaultButton {
  margin-bottom: 0;
  padding: 0.2em 1.0em;
}

.BlogBlock.Detail .BlockHeader .Heading {
  margin-top: 2px;
}

.BlogBlock.Detail .BlockHeader .Meta {
  padding-left: 20px;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .TestimonialsArea .NewsList li .TextItem .Meta {
    padding: 0.3em 0;
  }
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .BlogSingleTopItem .Button.DefaultButton {
    margin-bottom: 0;
    padding: 0.2em;
    border-radius: 2em 0 0 2em;
    margin-right: -15px;
  }
  .TestimonialsArea .BlockContents > ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    /*左寄せ*/
  }
  .TestimonialsArea .BlockContents > ul > li {
    width: 50%;
    width: calc(50% - 11px);
    margin: 0 20px 20px 0;
  }
  .TestimonialsArea .BlockContents > ul > li:nth-child(2n) {
    margin-right: 0;
  }
  .TestimonialsArea .SknTplImageParagraph.LeftImage .ImageItem {
    float: none;
    margin-right: 0;
    margin-bottom: 0;
    width: 100%;
  }
  .TestimonialsArea .SknTplImageParagraph.LeftImage .TextItem {
    float: none;
    width: 100%;
  }
}

/*ブログ詳細*/
.BlogSingleTopItem .Button.DefaultButton {
  margin-bottom: 0;
}

/*プロフィール*/
.hide-wide.ProfileName {
  margin: 20px 0 30px 0;
}

.ProfileName span {
  display: inline-block;
  vertical-align: middle;
}

.ProfileName span.Main {
  font-size: 130%;
  margin-right: 1em;
}

.ProfileName span.Sub {
  font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 200%;
}

.hide-wide.ProfileName span {
  display: block;
  margin: 0;
}

/*アクセス*/
.BoxAccess a {
  border: 1px solid #fff;
  padding: 2px 5px;
  line-height: 1.1;
  margin-top: 15px;
}

.BoxAccess a:hover {
  border: 1px solid #fff;
  background: #222;
  color: #fff;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .BoxAccess {
    margin-top: 10px;
    margin-bottom: 5px;
  }
  .BoxAccess a {
    display: block;
    text-align: center;
  }
}

.ContentsArea ul.Star {
  margin-bottom: 1.2em;
  margin-left: 2em;
}

/*動画*/
.SknTplMovieBox .MovieBox .inner {
  display: block;
  text-align: center;
}

.SknTplMovieBox .MovieBox .inner > iframe {
  display: inline-block;
}

.SknTplMovieBox .MovieBox .inner .ImageItem {
  max-width: 700px;
  margin: 0 auto;
}

.SknTplMovieBox .MovieBox .ImageItem .Caption {
  font-size: 87.5%;
  line-height: 1.5;
  margin-top: 0.5em;
}

/*画像と幅を合わせる為*/
.SknTplMovieBox {
  width: 100%;
  max-width: 1000px;
}

.SknTplMovieBox .MovieBox .inner {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.SknTplMovieBox .MovieBox .inner > video,
.SknTplMovieBox .MovieBox .inner > iframe,
.SknTplMovieBox .MovieBox .inner > .DammyImage {
  position: absolute;
  top: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
  max-width: 1000px !important;
  border: 1px solid #ddd;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .SknTplMovieBox {
    padding: 0px;
    width: 100%;
  }
  .ImageItem .SknTplMovieBox {
    padding: 0px;
    width: 100%;
  }
  .SknTplMovieBox .MovieBox .inner {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
  }
  .SknTplMovieBox .MovieBox .inner > video,
  .SknTplMovieBox .MovieBox .inner > iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 1000px !important;
  }
  .SknTplMovieBox .MovieBox .ImageItem .Caption {
    text-align: left;
  }
}

/*背景色*/
.GreenBgArea {
  position: relative;
  padding: 20px 0;
}

.GreenBgArea::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: calc(((100vw - 100%) / 2) * -1);
  left: calc(((100vw - 100%) / 2) * -1);
  background: #e4faef;
  z-index: -1;
}

/*カラー*/
.ColorWhite {
  color: #fff;
}

.Color1 {
  color: #8cb808;
}

.Color2 {
  color: #e5be54;
}

.Color3 {
  color: #5481e2;
}

.Bcolor1 {
  background: #8cb808;
  color: #fff;
}

.Bcolor2 {
  background: #e5be54;
  color: #fff;
}

.Bcolor3 {
  background: #5481e2;
  color: #fff;
}

/*強調*/
.TypeStrong {
  font-weight: 600;
  line-height: 1.5;
}

.TypeStrong .Color1 {
  color: #8cb808;
}

.TypeStrong .Color2 {
  color: #e5be54;
}

.TypeStrong > span {
  display: inline-block;
}

.TypeStrong .Strong {
  font-size: 150%;
}

.TypeStrong.MainText {
  margin-bottom: 20px;
}

/*タイムスケジュール*/
.TimeScedule {
  display: block;
  text-align: left;
  border-bottom: 1px dotted #0293a3;
  width: 100%;
  padding: 0 0 10px 0;
  margin: 5px 0;
}

.TimeScedule:last-child {
  border: none;
}

.TimeScedule > .Main {
  display: inline-block;
  vertical-align: middle;
  width: 260px;
  white-space: nowrap;
}

.TimeScedule > .Sub {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 270px);
  white-space: nowrap;
  font-size: 140%;
  line-height: 1.2;
}

/* + + + + + レスポンシブ + + + + +  */
.AboutPrivacyBlock {
  max-width: 1000px;
  margin: 0 auto;
}

.AboutPrivacyBlock ol,
.AboutPrivacyBlock ul {
  list-style: none;
}

/*固定ページ強調*/
.StrongComent {
  display: block;
  text-align: left;
  border-top: 1px dotted #0293a3;
  border-bottom: 1px dotted #0293a3;
  width: 100%;
  padding: 10px 0 10px 0;
  margin: 5px 0;
}

.StrongComent:last-child {
  border: none;
}

.StrongComent > .Main {
  display: inline-block;
  vertical-align: middle;
  width: 280px;
  white-space: normal;
}

.StrongComent > .Sub {
  display: inline-block;
  vertical-align: middle;
  width: calc(100% - 290px);
  /*white-space:nowrap;*/
  white-space: normal;
  font-size: 140%;
  line-height: 1.2;
}

.StrongComent > .Sub .small {
  font-size: 80%;
  white-space: normal;
}

.StrongComent.EndComent {
  border-top: none;
}

/*見出しType300*/
.StrongComent.Type300 > .Main {
  width: 320px;
}

.StrongComent.Type300 > .Sub {
  width: calc(100% - 330px);
}

/*見出しTypeFlat*/
.StrongComent.TypeFlat {
  text-align: center;
}

.StrongComent.TypeFlat > .Main {
  width: auto;
}

.StrongComent.TypeFlat > .Sub {
  width: auto;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  /*見出しType300*/
  .StrongComent.Type300 > .Main {
    width: 100%;
    display: block;
  }
  .StrongComent.Type300 > .Sub {
    width: 100%;
    display: block;
  }
}

/*
// <uniquifier>: Use a uniquifier for the class name
// <weight>: Use a value from 200 to 700
*/
/*
.FontOswald,
.oswald-<uniquifier> {
  font-family: "Oswald", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}*/
.FontOswald {
  font-family: "Oswald", sans-serif;
  /*font-optical-sizing: auto;*/
  font-weight: 400;
  font-style: normal;
}

.FontOswald-500 {
  font-family: "Oswald", sans-serif;
  /*font-optical-sizing: auto;*/
  font-weight: 500;
  font-style: normal;
}

.FontPathway,
.pathway-gothic one-regular {
  font-family: "Pathway Gothic One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.Font120 {
  font-size: 120%;
}

/*棒グラフ*/
.DigitalBarGraphItem {
  margin: 20px 0;
  max-width: 600px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.DigitalBarGraphItem .Title {
  width: 49%;
  text-align: right;
  padding-right: 10px;
}

.DigitalBarGraphItem .BarGraphItem {
  width: 49%;
}

.BarGraphItem .BarList {
  background: #eeeeee;
  padding: 0;
  width: 100%;
  height: auto;
}

.BarGraphItem .BlueNum {
  margin: 0;
  background: #8cb808;
  color: #fff;
  text-align: center;
  display: block;
}

/*フォーム電話アイコン*/
.TelNumItem {
  margin: 30px auto 5px;
  padding-top: 20px;
  border-top: 1px dotted #333;
  max-width: 600px;
  display: block;
}

.TelNumItem .InlineBlock {
  padding: 5px 0;
  display: inline-block;
  vertical-align: top;
  line-height: 1;
}

.TelNumItem .TelNumIcon .icon-pos-top {
  padding: 5px;
  font-size: 300%;
  color: #8cb808;
}

.TelNumItem .TelNumIcon .icon-pos-top::before {
  margin: 0;
}

.TelNumItem .TelNumBlock .Main {
  font-size: 200%;
  display: block;
  text-align: left;
}

.TelNumItem .TelNumBlock .Main .small {
  font-size: 70%;
  display: inline-block;
}

.TelNumItem .TelNumBlock .Sub {
  font-size: 100%;
  text-align: left;
  line-height: 1.5;
  margin-top: 5px;
  display: block;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .TelNumItem .TelNumBlock .Main .small {
    font-size: 60%;
    display: block;
    margin: 10px 0;
  }
  /*グラフ*/
  .DigitalBarGraphItem .Title {
    width: 49%;
    text-align: left;
  }
  .BlockHeader .Meta {
    display: none;
  }
}

#colorbox #cboxContent #cboxPrevious {
  display: none !important;
  left: -35px;
}

#colorbox #cboxContent #cboxNext {
  right: -35px;
  display: none !important;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  #colorbox #cboxContent #cboxPrevious {
    display: none !important;
    left: -35px;
  }
  #colorbox #cboxContent #cboxNext {
    right: -35px;
    display: none !important;
  }
}

/*プリント時*/
@media print {
  #World {
    padding: 0 !important;
  }
  header.PositionFixed {
    position: static !important;
  }
  header.PositionFixed.FixMenu2
header.PositionFixed.FixMenu2 {
    top: -112px;
    position: static !important;
  }
}
