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

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    基本レイアウト                                */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
.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: 88px;
}

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

/* サイトのページ幅 */
.PageWidthSetter {
  margin: 0 auto;
  padding: 0 1.25vw;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .PageWidthSetter {
    max-width: 1200px;
    min-width: 1100px;
  }
  .PageContents .PageWidthSetter {
    max-width: 1000px;
    min-width: 900px;
  }
}

@media screen and (max-width: 767px) {
  .PageWidthSetter {
    max-width: initial;
    width: auto;
    width: 92.5%;
    min-width: 0px;
    padding: 0;
  }
}

/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
/*    Header                                        */
/* ++++++++++++++++++++++++++++++++++++++++++++++++ */
header {
  max-width: initial;
  position: relative;
  z-index: 100;
  background: none;
  /*background: rgba(255,255,255,0.9);*/
  -webkit-transition: background .2s;
  transition: background .2s;
  /*border-bottom: 1px solid rgba(0,0,0,0.1);*/
  padding: 0px 0 0;
}

header.HeaderDivision {
  position: -webkit-sticky;
  /* Safari対応用 */
  position: sticky;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  header.HeaderDivision.FixMenu {
    top: 0;
    opacity: 1;
  }
  header.HeaderDivision.FixMenu.FixMenu2 {
    top: -15px;
    opacity: 0.5;
    -webkit-transition: all .4s;
    transition: all .4s;
  }
  header.HeaderDivision.FixMenu.FixMenu2:hover {
    -webkit-transition: all .4s;
    transition: all .4s;
    opacity: 1;
  }
}

@media screen and (max-width: 767px) {
  header {
    background: white;
    padding: 5px 0;
    height: 70px;
  }
  header.HeaderDivision {
    z-index: 200;
  }
  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 .BlockHeader {
  padding: 0;
  text-align: left;
  display: block;
  width: 520px;
  float: left;
}

.MainMenuBlock .BlockHeader .SiteLogo {
  margin: 0;
  margin-top: 20px;
  margin-right: 0;
  background: #fff;
  border-radius: 50px;
  padding: 5px 15px;
  text-align: center;
  -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);
}

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

.MainMenuBlock .BlockHeader .SiteLogo span.LogoImage {
  width: 191px;
}

.MainMenuBlock .BlockHeader .SiteLogo span.ComName {
  white-space: nowrap;
  font-size: 1.5em;
  letter-spacing: 0.1em;
  margin-left: 10px;
  color: #555;
  font-weight: 400;
}

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

.MainMenuBlock .BlockContents {
  display: block;
  width: calc(100% - 525px);
  float: right;
  position: relative;
  text-align: right;
}

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

.MainMenuBlock .BlockContents {
  position: relative;
}

.MainMenuBlock .BlockContents .MenuGroup {
  margin: 0;
  margin-top: 20px;
  margin-right: 0;
  background: #fff;
  border-radius: 50px;
  padding: 5px 15px;
  -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);
}

.MainMenuBlock .HeadItem {
  display: block;
  border-bottom: 1px solid #222;
  height: 40px;
}

.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: #0293a3;
  font-size: 2.2em;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock {
    position: relative;
  }
  .MainMenuBlock .BlockContents {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    float: right;
  }
  .MainMenuBlock .HeadItem .Main img {
    max-width: 200px;
    margin-right: 10px;
  }
}

@media screen and (max-width: 767px) {
  .MainMenuBlock .BlockHeader {
    max-width: 250px;
    padding: 0;
  }
  header .MainMenuBlock .MenuTrigger {
    position: Fixed;
    top: 10px;
    right: 12px;
    margin: 0 0 0 0;
    z-index: 10000;
  }
  #GlobalMenuGroupF,
  #GlobalMenuGroup {
    position: fixed;
    top: 70px !important;
    left: 0px;
    width: 100%;
    background: #fff;
    padding: 20px 20px 20px 20px;
    border-radius: 0;
    overflow: auto;
    height: calc(100% - 71px) !important;
    margin-top: 0;
    border-top: 1px solid #036978;
  }
  .MainMenuBlock .BlockHeader .SiteLogo {
    margin: 0;
    margin-left: 10px;
    background: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span {
    display: block;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.LogoImage {
    width: 150px;
  }
  .MainMenuBlock .BlockHeader .SiteLogo span.ComName {
    white-space: nowrap;
    font-size: 1.0em;
    letter-spacing: 0.1em;
    margin-left: 0;
    color: #555;
    font-weight: 400;
  }
  .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;
  }
}

/* + + + + + スマホで上余白が出ないための仮処置 + + + + +  */
#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%;
}

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

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

.MainMenuBlock .MainMenuList > li > a {
  display: block;
  text-decoration: none;
  position: relative;
  padding: 0.1em 0.25em;
  margin: -0.1em 0.5em;
  height: 100%;
}

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

.MainMenuBlock .MainMenuList > li.current > a {
  color: #0293a3;
}

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

@media screen and (max-width: 767px) {
  .MainMenuBlock .MainMenuList > li {
    -webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.25);
            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 > a::after {
  -webkit-transition: all .2s;
  transition: all .2s;
  content: "";
  display: block;
  position: absolute;
  top: 100%;
  width: 100%;
  left: 0%;
  background: #0293a3;
  height: 1px;
  margin-top: -1px;
  opacity: 0;
}

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

.MainMenuBlock .MainMenuList > li.DropDownParent:hover > a::after {
  background: #0293a3;
  height: 5px;
  margin-top: -5px;
}

.MainMenuBlock .MainMenuList > li .Label,
.MainMenuBlock .MainMenuList > li .Icon {
  display: block;
  text-align: center;
}

.MainMenuBlock .MainMenuList > li .Label {
  white-space: nowrap;
}

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

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

/* + + + + + レスポンシブ + + + + +  */
@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:last-child {
    border-right: 0px solid rgba(0, 0, 0, 0.25);
  }
}

@media screen and (max-width: 767px) {
  .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: #effaff;
    border: 1px solid #69d3fd;
  }
  .MainMenuBlock .MainMenuList > li > a::after {
    display: none;
  }
  .MainMenuBlock .MainMenuList > li .Label,
  .MainMenuBlock .MainMenuList > li .Icon {
    display: block;
    /*font-size 2rem;*/
  }
}

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

.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-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: #0293a3;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .MainMenuBlock .DropDownChild {
    margin-top: calc(1em - 12px);
    background: none;
    padding: 10px 0;
  }
  .MainMenuBlock .DropDownChild {
    border-left: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    border: none;
  }
  .MainMenuBlock .DropDownChild > .inner .Heading {
    color: #0293a3;
  }
  .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: 300px;
    width: auto;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
    margin-bottom: 8px;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li a {
    min-width: 150px;
    background: #fff;
    border-radius: 30px;
    -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;
    line-height: 1.2;
    text-align: center;
  }
}

@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;
    /*margin:10px 0 0 0;*/
    margin: 0;
  }
  .MainMenuBlock .ContentsMenuList > li > a {
    display: block;
    padding: 0.2em 0;
    text-align: center;
    margin: 0;
    border-radius: 0;
    border-top: 1px solid #ccc;
  }
  .MainMenuBlock .DropDownChild > .inner .ContentsMenuList li {
    margin: 0;
  }
}

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

.IconMenu a {
  margin: 0 10px;
}

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

.IconMenu span {
  font-size: 0.9em;
  line-height: 32px;
  display: inline-block;
  vertical-align: middle;
}

.IconMenu a:hover span {
  color: #0293a3;
}

.IconMenu .Icon {
  width: 30px;
  height: 30px;
  border-radius: 20px;
  background: #3fc1f5;
  color: #fff;
  display: inline-block;
  text-align: center;
  font-size: 1em;
  line-height: 28px;
  margin-right: 5px;
}

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

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

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

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

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

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

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

/* - - ページ（下層ページ汎用） - - */
/* ページタイトル背景 */
.Page .PageHeader {
  background: #f8f9fa;
  position: relative;
  text-align: center;
  margin-bottom: 20px;
}

/* + + + + + レスポンシブ + + + + +  */
@media screen and (min-width: 768px), print {
  .Page .PageHeader {
    padding: 1em 0;
  }
}

@media screen and (max-width: 767px) {
  .Page .PageHeader {
    padding: 1em 0;
  }
}

/* ページタイトル */
.Page .PageHeader .Heading {
  color: #0293a3;
  margin: 0 auto;
  position: relative;
  max-width: 600px;
  padding: 10px 0;
  border-top: 1px solid #0293a3;
  border-bottom: 1px solid #0293a3;
}

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

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

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

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

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

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

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

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

.FooterMenuBlock .BlockHeader .FootLogo {
  width: 192px;
  height: 192px;
  background: #fff;
  border-radius: 50%;
  overflow: hidden;
  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;
}

.FooterMenuBlock .BlockHeader .FootLogo img {
  width: 90%;
  margin: 0 auto;
  display: block;
}

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

.FooterMenuBlock .MainMenuList {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  list-style-type: disc;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
}

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

.FooterMenuBlock .MainMenuList li a {
  padding: 0;
  text-shadow: #fff 1px 1px 5px, #fff -1px 1px 5px, #fff 1px -1px 5px, #fff -1px -1px 5px;
}

.AuthorContents {
  margin-top: 0em;
  text-align: left;
  margin-bottom: 2em;
  color: #fff;
}

.AuthorContents h3 {
  font-size: 200%;
  font-weight: normal;
  border-bottom: 2px dotted #fff;
}

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

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

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

.SiteCopyrightArea .SiteCopyrightBlock {
  position: relative;
}

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

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .FooterMenuBlock {
    padding: 15px 0;
    max-width: 650px;
    width: 100%;
  }
  .FooterMenuBlock .BlockHeader {
    float: left;
    width: 60px;
    text-align: left;
  }
  .FooterMenuBlock .BlockHeader .FootLogo {
    width: 55px;
    height: 55px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    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;
  }
  .FooterMenuBlock .BlockHeader .FootLogo img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .FooterMenuBlock .BlockContents {
    float: right;
    width: calc(100% - 70px);
    text-align: left;
    position: relative;
  }
  .AuthorContents {
    margin-top: 0em;
    text-align: left;
    margin-bottom: 2em;
    color: #fff;
  }
  .AuthorContents h3 {
    font-size: 140%;
    font-weight: normal;
    border-bottom: 2px dotted #fff;
  }
  .AuthorContents p {
    font-size: 100%;
    font-weight: normal;
  }
  .SiteCopyrightArea {
    text-align: left;
    padding: 15px 95px 15px 15px;
  }
}

/* +++++++++++++++++++++++++++++++++++++++++++++++++++++++ */
/* ● 申込フォーム 専用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: 20em;
  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;
  }
}

/* 確認画面の設定 */
.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 {
  /* タイトル部分 */
  /* コンテンツ部分 */
  /* フッタ部分 */
  /* + + + + + レスポンシブ + + + + +  */
}

/* ブログプラグイン(お知らせ)用
--------------------------------------------------- */
/* - - 共通 - - */
.BlogBlock {
  /* + + + + + レスポンシブ + + + + +  */
}

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

.BlogBlock .NewsList li {
  border-bottom: 1px solid #0293a3;
}

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

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

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

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

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

/* + + + + + レスポンシブ + + + + +  */
@media screen and (max-width: 767px) {
  .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: #f2fdff;
  padding: 30px;
  margin: 10px auto;
}

.c-heading {
  font-size: 160%;
  font-family: serif;
  color: #0293a3;
  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;
}

.ImageOff {
  display: none;
}

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