@charset "UTF-8";
/* Basis
===================================== */
html {
  overflow-y: scroll;
  font-size: 62.5%;
}

body {
  line-height: 1.6;
  overflow: hidden;
  color: #646464;
  font-family: "メイリオ", "Meiryo", sans-serif;
  font-size: 1.6em;
  letter-spacing: 1px;
}

.pcNone {
  display: none !important;
}

/* Effect
===================================== */
/* ====== 1文字ずつ表示 ====== */
.effect_delay_chara div.effect_delay_chara_init {
  opacity: 0;
  transform: scale(1.5);
  transition: opacity 0.2s ease 0s, transform 0.2s ease 0s;
}
.effect_delay_chara div.effect_delay_chara_done {
  opacity: 1;
  transform: scale(1);
}

/* ====== フェードイン ====== */
.effect_fadeIn {
  opacity: 0;
  transition: opacity 2s ease 0s;
}
.effect_fadeIn.effect_fadeIn_done {
  opacity: 1;
}

/* Header
===================================== */
div#header {
  background: #e7eef4;
}
div#header div#headerBasis {
  /* .fixed時の移動アニメーション用 */
  top: -20px;
}
div#header h1#headerLogo,
div#header p#headerLogo {
  padding: 15px 0 0;
  text-align: center;
}
div#header ul.menu {
  margin: 0 auto;
  padding: 15px 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-weight: bold;
}
div#header.fixed {
  height: 150px;
}
div#header.fixed div#headerBasis {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  border-bottom: 1px solid #c0d2dd;
  background: #e7eef4;
  transition: top 0.5s ease 0s;
}
div#header.fixed h1#headerLogo > a > img,
div#header.fixed p#headerLogo > a > img {
  height: 40px;
}
div#header.fixed ul.menu {
  padding: 8px 0;
  font-size: 1.2rem;
}

/* Footer
===================================== */
div#footer {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 1em 50px 0;
  border-top: 1px solid #3c5d7e;
  color: #646464;
  font-size: 1.3rem;
}
div#footer::before, div#footer::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background: #3c5d7e;
}
div#footer::before {
  left: 0;
}
div#footer::after {
  right: 0;
}
div#footer ul.link {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: absolute;
  right: 50px;
}
div#footer ul.link a {
  color: inherit;
}
div#footer ul.link a:hover {
  text-decoration: none;
}
div#footer address > dl {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
}
div#footer address > dl > dt {
  width: 100%;
  margin: 0 0 1em;
}
div#footer address > dl > dd {
  padding: 0 1em 0 0;
}

p#copyright {
  padding: 1em 0 0.5em;
  color: #646464;
  font-size: 1.3rem;
  text-align: center;
}
p#copyright > a {
  color: #3c5d7e;
  text-decoration: underline;
}
p#copyright > a:hover {
  opacity: 1;
  text-decoration: none;
}

/* Common
===================================== */
/* ====== hover時に動く、リンクの四角(◇)と上下ボーダー ====== */
a.border,
button.border {
  display: inline-block;
  position: relative;
  line-height: 1;
  opacity: 0.6;
  transition: opacity 0.5s ease 0;
  color: #3c5d7e;
}
a.border > span,
button.border > span {
  display: inline-block;
  position: relative;
  padding: 0.2em 1em;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent;
}
a.border::before, a.border::after,
a.border > span::before,
a.border > span::after,
button.border::before,
button.border::after,
button.border > span::before,
button.border > span::after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 3px);
  width: 7px;
  height: 7px;
  background: url(../image/mark_diamond.svg) no-repeat;
  transition: top 0.5s ease 0s;
}
a.border::before,
a.border > span::before,
button.border::before,
button.border > span::before {
  left: -3px;
}
a.border::after,
a.border > span::after,
button.border::after,
button.border > span::after {
  right: -3px;
}
a.border:hover,
button.border:hover {
  opacity: 1;
}
a.border:hover > span,
button.border:hover > span {
  border-top: 1px solid #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
  transition: border 0s ease 0.4s;
}
a.border:hover::before, a.border:hover::after,
button.border:hover::before,
button.border:hover::after {
  top: -3px;
}
a.border:hover > span::before,
a.border:hover > span::after,
button.border:hover > span::before,
button.border:hover > span::after {
  top: calc(100% - 3px);
}
a.border.largeMark::before, a.border.largeMark::after, a.border.largeMark > span::before, a.border.largeMark > span::after,
button.border.largeMark::before,
button.border.largeMark::after,
button.border.largeMark > span::before,
button.border.largeMark > span::after {
  top: calc(50% - 6px);
  width: 12px;
  height: 12px;
  background-image: url(../image/mark_diamond_large.svg);
}
a.border.largeMark::before, a.border.largeMark > span::before,
button.border.largeMark::before,
button.border.largeMark > span::before {
  left: -6px;
}
a.border.largeMark::after, a.border.largeMark > span::after,
button.border.largeMark::after,
button.border.largeMark > span::after {
  right: -6px;
}
a.border.largeMark:hover::before, a.border.largeMark:hover::after,
button.border.largeMark:hover::before,
button.border.largeMark:hover::after {
  top: -6px;
}
a.border.largeMark:hover > span::before,
a.border.largeMark:hover > span::after,
button.border.largeMark:hover > span::before,
button.border.largeMark:hover > span::after {
  top: calc(100% - 6px);
}

_:lang(x)::-ms-, a.border > span {
  padding-top: 0.3em;
}

/* ====== backToTop ====== */
p#backToTop {
  position: fixed;
  left: 50%;
  bottom: 10px;
  z-index: 10;
  line-height: 1;
  opacity: 0.7;
  margin: 0 0 0 40%;
}
p#backToTop > a {
  display: block;
  width: 56px;
  height: 56px;
  overflow: hidden;
}
p#backToTop > a::before {
  content: url(../image/icon_backToTop.svg);
  display: block;
}

/* ====== clearfix (float release) ====== */
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* ====== tel ====== */
a[href^="tel:"] {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

/* ====== hover時に動く、リンクの四角(◇)と上下ボーダー(横並びリスト) ====== */
ul.borderList {
  display: table;
}
ul.borderList > li {
  display: table-cell;
}
ul.borderList > li > a.border {
  opacity: 1;
}
ul.borderList > li:not(:last-child) > a.border::after,
ul.borderList > li:not(:last-child) > a.border > span::after {
  opacity: 0;
  transition: top 0.5s ease 0s, opacity 0.5s ease 0s;
}
ul.borderList > li:hover > a.border::after,
ul.borderList > li:hover > a.border > span::after {
  opacity: 1;
  transition: top 0.5s ease 0s;
}
ul.borderList > li + li > a.border::before,
ul.borderList > li + li > a.border > span::before {
  transition: top 0.5s ease 0s, opacity 0s ease 0.2s;
}
ul.borderList > li:hover + li > a.border::before,
ul.borderList > li:hover + li > a.border > span::before {
  opacity: 0;
  transition: top 0.5s ease 0s;
}

/* ====== 四角(◇)と上下ボーダー(タイトル) ====== */
h3.border {
  display: inline-block;
  position: relative;
  line-height: 1;
  color: #3c5d7e;
}
h3.border > span {
  display: inline-block;
  position: relative;
  padding: 0.2em 1em;
  border-top: 1px solid #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
}
h3.border::before, h3.border::after,
h3.border > span::before,
h3.border > span::after {
  content: "";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  background: url(../image/mark_diamond.svg) no-repeat;
}
h3.border::before,
h3.border > span::before {
  left: -3px;
}
h3.border::after,
h3.border > span::after {
  right: -3px;
}
h3.border::before, h3.border::after {
  top: -3px;
}
h3.border > span::before,
h3.border > span::after {
  top: calc(100% - 3px);
}

/* MainContents
------------------------------------- */
div.contents {
  margin: 0 0 120px;
}
div.contents.blueBlock {
  position: relative;
  overflow: hidden;
  margin-top: -92px;
  padding: 92px 0 40px;
}
div.contents.blueBlock::before {
  content: "";
  display: block;
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  margin: 92px 0 0;
  background: #eef6f9;
}
div.contents > div.inner {
  position: relative;
  box-sizing: border-box;
  max-width: 1500px;
  margin: 0 auto;
}
div.contents > div.inner h2.indexTitle {
  margin: 0 0 35px;
  padding: 45px 0;
  background: no-repeat right bottom;
}
div.contents > div.inner h2.indexTitle::after {
  content: "";
  display: block;
  position: absolute;
  left: -100%;
  top: 0;
  z-index: -1;
  width: 300%;
  height: 122px;
  background: #e7eef4;
}
div.contents > div.inner h2.indexTitle > img {
  position: relative;
  max-width: 100%;
}
div.contents > div.inner p.image > img {
  max-width: 100%;
}
div.contents > ul.innerNav {
  margin: 2em auto 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.4rem;
  font-weight: bold;
}
div.contents#link p.link {
  text-align: center;
}

/* ====== トップイメージ ====== */
div#topImage {
  position: relative;
  background: no-repeat center top;
}
div#topImage > div.phrase,
div#topImage > h1.phrase {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 8rem;
  text-align: center;
  transform: translate(0, -50%);
}
div#topImage > div.phrase > div,
div#topImage > h1.phrase > div {
  display: inline-block;
}

/* Page
===================================== */
/* Index
------------------------------------- */
/* ====== 初期表示(フェードイン) ====== */
/* ------ 基準用高さ ------ */
html,
body#indexPage.opening,
body#indexPage.opening div#root,
body#indexPage.opening div#main,
body#indexPage.opening div.contents:first-child,
body#indexPage.opening div.contents:first-child > div.inner {
  height: 100%;
}

/* ------ 表示アニメーション ------ */
body#indexPage.opening div#header,
body#indexPage.opening div.contents,
body#indexPage.opening p#backToTop,
body#indexPage.opening div#footer,
body#indexPage.opening p#copyright {
  display: none;
}
body#indexPage.opening div.contents:first-child {
  display: block;
  margin: 0;
}
body#indexPage.opening div.contents:first-child > div.inner {
  max-width: none;
  background: #eef6f9;
}
body#indexPage.opening div.contents:first-child div#topImage {
  height: 100%;
  background-position: center center;
  background-size: cover;
}
body#indexPage.opening div.contents:first-child .effect_delay_chara div.effect_delay_chara_init {
  transition: opacity 0.5s ease 2s, transform 0.5s ease 2s;
}
body#indexPage.opening div#loader {
  pointer-events: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100;
  opacity: 0;
  background: #eef6f9;
  transition: opacity 1s ease 0s;
}
body#indexPage.opening div#loader.start {
  opacity: 1;
}
body#indexPage.opening div#loader.end {
  opacity: 0;
}

/* ====== 通常表示 ====== */
body#indexPage div#topImage {
  height: 972px;
  background-image: url(../image/index_top.jpg);
}
body#indexPage div.contents.blueBlock > div.inner {
  position: relative;
  z-index: 1;
}
body#indexPage div.contents.blueBlock h2.indexTitle {
  position: relative;
  margin: 0 0 40px;
}
body#indexPage div.contents.blueBlock h2.indexTitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
  background: no-repeat left center;
  background-size: contain;
}
body#indexPage div.contents.blueBlock h2.indexTitle::after {
  top: -40px;
  z-index: -2;
  height: calc(100% + 80px);
}
body#indexPage div.contents.blueBlock#enjoy h2.indexTitle {
  padding: 0 12.3% 0 500px;
  text-align: right;
}
body#indexPage div.contents.blueBlock#enjoy h2.indexTitle::before {
  left: 7.3%;
  width: 48%;
  height: 490px;
  background-image: url(../image/index_enjoy_image.png);
}
body#indexPage div.contents.blueBlock#enjoy div.details {
  padding: 20px 12.3% 0 58.5%;
}
body#indexPage div.contents.blueBlock#enjoy p.more {
  padding: 25px 12.3% 0 0;
  text-align: right;
}
body#indexPage div.contents.blueBlock#practitioner h2.indexTitle {
  padding: 0 500px 0 12.3%;
}
body#indexPage div.contents.blueBlock#practitioner h2.indexTitle::before {
  right: 7.3%;
  width: 46.7%;
  height: 592px;
  background-image: url(../image/index_practitioner_image.png);
}
body#indexPage div.contents.blueBlock#practitioner div.details {
  padding: 20px 58.5% 0 12.3%;
}
body#indexPage div.contents.blueBlock#practitioner p.more {
  padding: 25px 0 0 12.3%;
}
body#indexPage div.contents.blueBlock#balance h2.indexTitle {
  padding: 0 12.3% 0 500px;
  text-align: right;
}
body#indexPage div.contents.blueBlock#balance h2.indexTitle::before {
  left: 7.3%;
  width: 48%;
  height: 490px;
  background-image: url(../image/index_balance_image.png);
}
body#indexPage div.contents.blueBlock#balance div.details {
  padding: 20px 12.3% 0 58.5%;
}
body#indexPage div.contents.blueBlock#balance p.more {
  padding: 25px 12.3% 0 0;
  text-align: right;
}
body#indexPage div.contents#link::before {
  top: 0;
  margin-top: 50px;
}
body#indexPage div.contents#link ul.effectLink {
  display: flex;
  justify-content: space-between;
  max-width: 940px;
  margin: 0 auto;
  padding: 0 10px;
}
body#indexPage div.contents#link ul.effectLink a {
  display: block;
  position: relative;
}
body#indexPage div.contents#link ul.effectLink a::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 210px;
  height: 210px;
  opacity: 0;
  background-repeat: no-repeat;
  transition: opacity 1s ease 0s;
}
body#indexPage div.contents#link ul.effectLink a[href="teacher.html"]::before {
  background-image: url(../image/index_link_teacher_on.svg);
}
body#indexPage div.contents#link ul.effectLink a[href="chuigaku.html"]::before {
  background-image: url(../image/index_link_yakuzen_on.svg);
}
body#indexPage div.contents#link ul.effectLink a[href="contact/"]::before {
  background-image: url(../image/index_link_contact_on.svg);
}
body#indexPage div.contents#link ul.effectLink a:hover::before {
  opacity: 1;
}
body#indexPage div.contents#link ul.effectLink img + br + img {
  margin: 30px 0 0;
}
body#indexPage div#newsBlock h2.newsTitle {
  position: absolute;
  top: 0;
  left: 40px;
}
body#indexPage div#newsBlock dl.news {
  position: relative;
  margin: 0 0 0 260px;
  padding: 0 10px;
  border-top: 1px solid #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
}
body#indexPage div#newsBlock dl.news::before, body#indexPage div#newsBlock dl.news::after,
body#indexPage div#newsBlock dl.news > dt:first-child::before,
body#indexPage div#newsBlock dl.news > dt:first-child::after {
  content: "";
  display: block;
  position: absolute;
  width: 9px;
  height: 9px;
  background: url(../image/index_news_diamond.svg) no-repeat;
}
body#indexPage div#newsBlock dl.news::before, body#indexPage div#newsBlock dl.news::after {
  bottom: -5px;
}
body#indexPage div#newsBlock dl.news > dt:first-child::before,
body#indexPage div#newsBlock dl.news > dt:first-child::after {
  top: -5px;
}
body#indexPage div#newsBlock dl.news::before,
body#indexPage div#newsBlock dl.news > dt:first-child::before {
  left: 0;
}
body#indexPage div#newsBlock dl.news::after,
body#indexPage div#newsBlock dl.news > dt:first-child::after {
  right: 0;
}
body#indexPage div#newsBlock dl.news > dt {
  margin: 0 0 -1.6em 5px;
  padding: 0.2em 0 0;
}
body#indexPage div#newsBlock dl.news > dd {
  padding: 0 0 0.2em 8em;
  border-bottom: 1px dotted #000;
}
body#indexPage div#newsBlock dl.news > dd:last-child {
  border-bottom: none;
}
body#indexPage div#newsBlock p.more {
  position: absolute;
  top: 45px;
  left: 50px;
}

/* Notice
------------------------------------- */
body#noticePage div#topImage {
  height: 360px;
  background-image: url(../image/notice_top.jpg);
}
body#noticePage div.contents#notice div.inner {
  padding: 0 12%;
}
body#noticePage div.contents#notice h2.indexTitle {
  margin-left: 43%;
  background-image: url(../image/notice_notice_bg.svg);
}
body#noticePage div.contents#notice dl.news {
  position: relative;
  border-bottom: 1px solid #3c5d7e;
}
body#noticePage div.contents#notice dl.news > dt {
  position: relative;
  margin: 0 0 -1.6em;
  padding: 1em 2em 0;
  border-top: 1px solid #3c5d7e;
}
body#noticePage div.contents#notice dl.news::before, body#noticePage div.contents#notice dl.news::after, body#noticePage div.contents#notice dl.news > dt::before, body#noticePage div.contents#notice dl.news > dt::after {
  content: "";
  display: block;
  position: absolute;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background: #3c5d7e;
}
body#noticePage div.contents#notice dl.news::before, body#noticePage div.contents#notice dl.news::after {
  bottom: -4px;
}
body#noticePage div.contents#notice dl.news > dt::before, body#noticePage div.contents#notice dl.news > dt::after {
  top: -4px;
}
body#noticePage div.contents#notice dl.news::before, body#noticePage div.contents#notice dl.news > dt::before {
  left: 0;
}
body#noticePage div.contents#notice dl.news::after, body#noticePage div.contents#notice dl.news > dt::after {
  right: 0;
}
body#noticePage div.contents#notice dl.news > dd {
  margin: 0 2em 0 10em;
  padding: 0 0 1em;
}

/* Association
------------------------------------- */
body#associationPage div#topImage {
  height: 360px;
  background-image: url(../image/association_top.jpg);
}
body#associationPage div.contents#introduction div.inner {
  max-width: 1120px;
}
body#associationPage div.contents#introduction h2.title {
  position: relative;
  padding: 0 48px 25px;
  border-bottom: 1px solid #3c5d7e;
  text-align: center;
}
body#associationPage div.contents#introduction h2.title::before, body#associationPage div.contents#introduction h2.title::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background: #3c5d7e;
}
body#associationPage div.contents#introduction h2.title::before {
  left: 0;
}
body#associationPage div.contents#introduction h2.title::after {
  right: 0;
}
body#associationPage div.contents#introduction h2.title > img {
  max-width: 100%;
}
body#associationPage div.contents#introduction div.details p.text {
  padding: 16px 48px 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.8rem;
  font-weight: bold;
}
body#associationPage div.contents#greeting div.inner {
  padding: 0 6.8%;
}
body#associationPage div.contents#greeting h2.indexTitle {
  margin-left: 478px;
  background-image: url(../image/association_greeting_bg.svg);
}
body#associationPage div.contents#greeting p.image {
  float: left;
  margin: -117px 0 0;
}
body#associationPage div.contents#greeting div.details {
  margin: 0 3.4% 0 478px;
}
body#associationPage div.contents#greeting dl.profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  float: right;
  width: 240px;
  margin: 40px 3.4% 0 0;
}
body#associationPage div.contents#greeting dl.profile > dt {
  order: 2;
}
body#associationPage div.contents#greeting dl.profile > dd {
  margin: 0 0 10px;
}
body#associationPage div.contents#activity div.inner {
  padding-right: 2.8%;
  padding-left: 10%;
}
body#associationPage div.contents#activity h2.indexTitle {
  background-image: url(../image/association_activity_bg.svg);
  background-position: 40% bottom;
}
body#associationPage div.contents#activity p.image {
  float: right;
  width: 42.4%;
  margin: -117px 0 0;
}
body#associationPage div.contents#activity p.image > img {
  max-width: 100%;
}
body#associationPage div.contents#activity div.details {
  padding: 0 0 0 5px;
}
body#associationPage div.contents#activity div.details h3.border {
  width: 54%;
  margin: 2em 0 0;
}
body#associationPage div.contents#activity div.details h3.border:first-child {
  margin-top: 0;
}
body#associationPage div.contents#activity div.details h3.border > span {
  box-sizing: border-box;
  width: 100%;
  padding: 10px 1em;
}
body#associationPage div.contents#activity div.details p.text {
  box-sizing: border-box;
  width: 54%;
  padding: 1em 1em 0;
}
body#associationPage div.contents#overview div.inner {
  padding-right: 8.3%;
  padding-left: 10%;
}
body#associationPage div.contents#overview h2.indexTitle {
  background-image: url(../image/association_overview_bg.svg);
}
body#associationPage div.contents#overview div.details {
  margin: 0 3.4% 0 0;
}
body#associationPage div.contents#overview div.details table.data {
  width: 100%;
  border-collapse: separate;
  border-spacing: 10px 0;
}
body#associationPage div.contents#overview div.details table.data th,
body#associationPage div.contents#overview div.details table.data td {
  padding: 32px 50px;
}
body#associationPage div.contents#overview div.details table.data th {
  border-bottom: 1px solid #3c5d7e;
  text-align: center;
}
body#associationPage div.contents#overview div.details table.data td {
  border-bottom: 1px dashed #3c5d7e;
  font-size: 1.8rem;
}
body#associationPage div.contents#overview div.details table.data td span.notes {
  font-size: 1.4rem;
}
body#associationPage div.contents#member div.inner {
  padding-right: 8.3%;
  padding-left: 10%;
}
body#associationPage div.contents#member h2.indexTitle {
  background-image: url(../image/association_member_bg.svg);
}
body#associationPage div.contents#member div.details {
  margin: 0 3.4% 0 0;
}
body#associationPage div.contents#member div.details p.text:first-child {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.8rem;
  font-weight: bold;
}
body#associationPage div.contents#member div.details p.admissionFee {
  padding: 38px 0 0;
}
body#associationPage div.contents#member div.details h3.border {
  margin: 38px 0 0;
}
body#associationPage div.contents#member div.details h3.border > span {
  padding: 12px 18px;
}
body#associationPage div.contents#member div.details dl.membershipFee {
  margin: 20px 18px;
}
body#associationPage div.contents#member div.details dl.membershipFee > dt {
  margin: 0 0 -1.6em;
}
body#associationPage div.contents#member div.details dl.membershipFee > dt.fee {
  letter-spacing: 0.58em;
}
body#associationPage div.contents#member div.details dl.membershipFee > dt.fee::after {
  margin-left: -0.58em;
}
body#associationPage div.contents#member div.details dl.membershipFee > dt::after {
  content: ":";
}
body#associationPage div.contents#member div.details dl.membershipFee > dd {
  margin: 0 0 0 5em;
}

/* Practitioner
------------------------------------- */
body#practitionerPage div#topImage {
  height: 360px;
  background-image: url(../image/practitioner_top.jpg);
}
body#practitionerPage div.contents h3.border {
  display: block;
  margin: 0 0 1em;
}
body#practitionerPage div.contents h3.border > span {
  display: block;
  padding: 10px 1em;
}
body#practitionerPage div.contents h3.detailsTitle img {
  max-width: 100%;
}
body#practitionerPage div.contents div.detailsBlock div.details {
  margin-top: 40px;
}
body#practitionerPage div.contents div.detailsBlock div.details:first-child {
  margin-top: 0;
}
body#practitionerPage div.contents#practitioner div.inner {
  padding-right: 5.4%;
  padding-left: 5.2%;
}
body#practitionerPage div.contents#practitioner h2.indexTitle {
  margin-left: 43.3%;
  background-image: url(../image/practitioner_practitioner_bg.svg);
}
body#practitionerPage div.contents#practitioner p.image {
  float: left;
  width: 42.1%;
  margin: -118px 0 0;
}
body#practitionerPage div.contents#practitioner div.details {
  margin-left: 43.3%;
}
body#practitionerPage div.contents#grade div.inner {
  padding-right: 7.3%;
  padding-left: 9.2%;
}
body#practitionerPage div.contents#grade div.inner:nth-child(n+2) {
  margin-top: 40px;
}
body#practitionerPage div.contents#grade div.inner:nth-child(n+2) h2 {
  padding-top: 3em;
}
body#practitionerPage div.contents#grade h2.indexTitle {
  width: 53%;
  background-image: url(../image/practitioner_grade_bg.svg);
}
body#practitionerPage div.contents#grade p.image {
  float: right;
  width: 44.1%;
  margin: -118px 0 0;
}
body#practitionerPage div.contents#grade div.detailsBlock {
  width: 53%;
}
body#practitionerPage div.contents#grade div.detailsBlock h3.border {
  max-width: 480px;
}
body#practitionerPage div.contents#grade div.detailsBlock h3.border img {
  max-width: 100%;
}
body#practitionerPage div.contents#grade div.detailsBlock dl.details {
  margin: 0 0 0 1em;
}
body#practitionerPage div.contents#grade div.detailsBlock dl.details::after {
  content: "";
  display: block;
  clear: left;
}
body#practitionerPage div.contents#grade div.detailsBlock dl.details > dt {
  float: left;
}
body#practitionerPage div.contents#grade p.notes {
  clear: left;
  margin: 40px 0 0 0;
}
body#practitionerPage div.contents#grade p.notes::before {
  content: "●";
}
body#practitionerPage div.contents#curriculum div.inner {
  padding-right: 9%;
  padding-left: 4.3%;
}
body#practitionerPage div.contents#curriculum h2.indexTitle {
  margin-left: 45%;
  padding: 25px 0;
  background-image: url(../image/practitioner_curriculum_bg.svg);
}
body#practitionerPage div.contents#curriculum p.image {
  position: absolute;
  width: 37.4%;
  margin: -118px 0 0;
}
body#practitionerPage div.contents#curriculum div.detailsBlock {
  margin-left: 45%;
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents {
  margin: 0 1em;
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents::after {
  clear: both;
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents > li {
  float: left;
  margin: 0 1em 0 0;
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents > li::before {
  content: "・";
}
body#practitionerPage div.contents#curriculum div.detailsBlock p.notes {
  clear: left;
  margin: 0 0 0 1em;
}
body#practitionerPage div.contents#curriculum div.detailsBlock p.notes::before {
  content: "●";
}
body#practitionerPage div.contents#curriculum div.detailsBlock p.notes + dl.date {
  margin-left: 2em;
}
body#practitionerPage div.contents#curriculum div.detailsBlock dl.date {
  margin: 0 0 0 1em;
}
body#practitionerPage div.contents#curriculum div.detailsBlock dl.date::after {
  content: "";
  display: block;
  clear: left;
}
body#practitionerPage div.contents#curriculum div.detailsBlock dl.date > dt {
  float: left;
}
body#practitionerPage div.contents#details div.inner {
  padding-right: 4%;
  padding-left: 10.8%;
}
body#practitionerPage div.contents#details h2.indexTitle {
  margin-right: 41%;
  background-image: url(../image/practitioner_details_bg.svg);
}
body#practitionerPage div.contents#details p.image {
  float: right;
  width: 40.6%;
}
body#practitionerPage div.contents#details div.detailsBlock {
  margin-right: 45%;
}
body#practitionerPage div.contents#details div.detailsBlock dl.details {
  margin: 0 1em;
}
body#practitionerPage div.contents#details div.detailsBlock dl.details > dt {
  float: left;
}
body#practitionerPage div.contents#details div.detailsBlock p.notes {
  clear: left;
  margin: 0 0 0 2em;
  text-indent: -1em;
}
body#practitionerPage div.contents#details div.detailsBlock p.notes::before {
  content: "●";
  float: left;
  margin: 0 1em 0 0;
}
body#practitionerPage div.contents#details div.detailsBlock p.notes::after {
  content: "";
  display: block;
  clear: left;
}

/* Seminar
------------------------------------- */
body#seminarPage div#topImage {
  height: 360px;
  background-image: url(../image/seminar_top.jpg);
}
body#seminarPage div.contents#memberSeminar div.inner {
  padding-right: 9.7%;
  padding-left: 6.6%;
}
body#seminarPage div.contents#memberSeminar h2.indexTitle {
  margin-left: 42%;
  background-image: url(../image/seminar_memberSeminar_bg.svg);
}
body#seminarPage div.contents#memberSeminar p.image {
  position: absolute;
  width: 32.2%;
  margin: -118px 0 0;
}
body#seminarPage div.contents#memberSeminar div.details {
  margin: 0 5.8% 0 42%;
}
body#seminarPage div.contents#memberSeminar div.details ul.list::after {
  content: "";
  display: block;
  clear: left;
}
body#seminarPage div.contents#memberSeminar div.details ul.list > li {
  float: left;
  margin: 0 1em 0 0;
}
body#seminarPage div.contents#memberSeminar div.details h3.title {
  margin: 2em 1em 0;
}
body#seminarPage div.contents#memberSeminar div.details ul.date {
  margin: 0 1em 0;
}
body#seminarPage div.contents#memberSeminar div.details dl.details {
  margin: 1em 1em 0;
}
body#seminarPage div.contents#memberSeminar div.details dl.details::after {
  content: "";
  display: block;
  clear: left;
}
body#seminarPage div.contents#memberSeminar div.details dl.details > dt {
  float: left;
}
body#seminarPage div.contents#class div.inner {
  padding: 0 7% 0 10%;
}
body#seminarPage div.contents#class h2.indexTitle {
  margin-right: 45%;
  padding: 25px 0;
  background-image: url(../image/seminar_class_bg.svg);
}
body#seminarPage div.contents#class p.image {
  position: absolute;
  left: auto;
  right: 0;
  width: 53.4%;
  margin: -118px 0 0;
}
body#seminarPage div.contents#class div.details {
  position: relative;
  margin-right: 45%;
}
body#seminarPage div.contents#class div.details h3.title {
  margin: 1.5em 0 0.5em;
}
body#seminarPage div.contents#class div.details ul.details {
  margin: 0 1em;
}
body#seminarPage div.contents#class div.details dl.details {
  margin: 0 1em 2em;
}
body#seminarPage div.contents#class div.details dl.details::after {
  content: "";
  display: block;
  clear: left;
}
body#seminarPage div.contents#class div.details dl.details > dt {
  float: left;
}

/* Teacher
------------------------------------- */
body#teacherPage div#topImage {
  height: 360px;
  background-image: url(../image/teacher_top.jpg);
}
body#teacherPage div.contents#director div.inner {
  padding-right: 9.4%;
  padding-left: 6.6%;
}
body#teacherPage div.contents#director h2.indexTitle {
  margin-left: 39%;
  padding: 25px 0;
  background-image: url(../image/teacher_director_bg.svg);
}
body#teacherPage div.contents#director p.image {
  position: absolute;
  top: 40px;
  width: 32%;
}
body#teacherPage div.contents#director div.details {
  margin: 0 0 0 39%;
}
body#teacherPage div.contents#director div.details div.careerBlock {
  display: flex;
  flex-wrap: wrap;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career {
  margin: 0 60px 0 0;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career h3.title {
  margin: 1.6em 0 1em;
  text-align: center;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career h3.title > span {
  box-sizing: border-box;
  width: 180px;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career ul.details {
  margin: 0 0 0 0.5em;
}
body#teacherPage div.contents#activity div.inner {
  padding-right: 10%;
  padding-left: 10%;
}
body#teacherPage div.contents#activity h2.indexTitle {
  margin: 0 0 0 22px;
  background-image: url(../image/teacher_activity_bg.svg);
}
body#teacherPage div.contents#activity div.details h3.border {
  display: table;
  margin: 50px auto 2em;
  text-align: center;
}
body#teacherPage div.contents#activity div.details h3.border > span {
  width: 280px;
  padding-top: 1em;
  padding-bottom: 1em;
}
body#teacherPage div.contents#activity div.details div.dottedBox {
  position: relative;
  width: 90%;
  margin: 0 auto;
  border: 1px dotted #3c5d7e;
}
body#teacherPage div.contents#activity div.details div.dottedBox::before, body#teacherPage div.contents#activity div.details div.dottedBox::after {
  content: url(../image/common_dottedBox_corner.svg);
  position: absolute;
}
body#teacherPage div.contents#activity div.details div.dottedBox::before {
  top: -8px;
  left: -4px;
}
body#teacherPage div.contents#activity div.details div.dottedBox::after {
  top: -10px;
  right: -2px;
  transform: rotateZ(90deg);
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content {
  padding: 1em;
  transition: background-color 1s ease 0s;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content::before, body#teacherPage div.contents#activity div.details div.dottedBox > div.content::after {
  content: url(../image/common_dottedBox_corner.svg);
  position: absolute;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content::before {
  bottom: -9px;
  left: -2px;
  transform: rotateZ(270deg);
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content::after {
  bottom: -7px;
  right: -4px;
  transform: rotateZ(180deg);
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content:hover {
  background-color: #c9dbe2;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content h4.innerTitle {
  font-weight: bold;
  margin: 2em 0 0;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content h4.innerTitle:first-child {
  margin-top: 0;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content ul.details {
  margin: 0 0 0 2em;
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content ul.details > li {
  margin: 0 0 0 1em;
  text-indent: -1em;
}

/* Chuigaku
------------------------------------- */
body#chuigakuPage div#topImage {
  height: 360px;
  background-image: url(../image/chuigaku_top.jpg);
}
body#chuigakuPage div.contents#yakuzen div.inner {
  padding-right: 8.4%;
  padding-left: 6%;
}
body#chuigakuPage div.contents#yakuzen div.inner::after {
  content: "";
  display: block;
  clear: left;
}
body#chuigakuPage div.contents#yakuzen h2.indexTitle {
  margin-left: 43%;
  background-image: url(../image/chuigaku_yakuzen_bg.svg);
}
body#chuigakuPage div.contents#yakuzen p.image {
  float: left;
  width: 40.5%;
  margin: -118px 0 0;
}
body#chuigakuPage div.contents#yakuzen div.details {
  margin-left: 43%;
}
body#chuigakuPage div.contents#chineseMedicine div.inner {
  padding-right: 6%;
  padding-left: 11%;
}
body#chuigakuPage div.contents#chineseMedicine h2.indexTitle {
  margin-right: 45.6%;
  background-image: url(../image/chuigaku_chineseMedicine_bg.svg);
}
body#chuigakuPage div.contents#chineseMedicine p.image {
  float: right;
  width: 42.2%;
  margin: -118px 0 0;
}
body#chuigakuPage div.contents#chineseMedicine div.details {
  margin-right: 45.6%;
}

/* Contact
------------------------------------- */
body#contactPage div#topImage {
  height: 360px;
  background-image: url(../image/contact_top.jpg);
}
body#contactPage div#topImage > h1.phrase {
  font-size: 6rem;
}
body#contactPage div.contents#attention {
  margin-bottom: 40px;
}
body#contactPage div.contents#attention div.inner {
  padding: 0 11.7%;
  font-family: "Yu Mincho", YuMincho, serif;
}
body#contactPage div.contents#attention div.inner h2.title {
  margin: 1em 0 0;
}
body#contactPage div.contents#contact div.inner {
  padding: 0 11.7%;
}
body#contactPage div.contents#contact h2.indexTitle {
  text-align: center;
  background-image: url(../image/contact_contact_bg.svg);
}
body#contactPage div.contents#contact table.contact {
  margin: 0 auto;
}
body#contactPage div.contents#contact table.contact tr#applicationType.default {
  display: none;
}
body#contactPage div.contents#contact table.contact tr#applicationType select > span {
  display: none;
}
body#contactPage div.contents#contact table.contact th {
  width: 16em;
  vertical-align: top;
  padding: 0.5em 1em;
  font-weight: bold;
}
body#contactPage div.contents#contact table.contact th > label {
  display: block;
}
body#contactPage div.contents#contact table.contact th span.required {
  color: #f00;
}
body#contactPage div.contents#contact table.contact td {
  vertical-align: top;
  padding: 0.5em 1em;
}
body#contactPage div.contents#contact table.contact td p.error {
  color: #f00;
}
body#contactPage div.contents#contact table.contact input[type=text],
body#contactPage div.contents#contact table.contact select,
body#contactPage div.contents#contact table.contact textarea {
  border: 1px solid #3c5d7e;
}
body#contactPage div.contents#contact table.contact input[type=text] {
  box-sizing: border-box;
  min-width: 350px;
  padding: 2px 5px;
}
body#contactPage div.contents#contact table.contact textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 2px 5px;
}
body#contactPage div.contents#contact table.contact input[type=radio] {
  margin: 0 0.5em 0 0;
}
body#contactPage div.contents#contact.contact table.contact {
  width: 100%;
}
body#contactPage div.contents#contact.confirm tr#applicationType {
  display: none;
}
body#contactPage div.contents#contact.confirm tr#applicationType.show {
  display: table-row;
}
body#contactPage div.contents#contact.confirm div.buttonBlock {
  margin: 2em 0 0;
  text-align: center;
}
body#contactPage div.contents#contact.confirm div.buttonBlock form + form {
  margin-top: 1em;
}
body#contactPage div.contents#contact.confirm div.buttonBlock button {
  cursor: pointer;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 2.4rem;
}
body#contactPage div.contents#contact.error ul.link {
  margin: 2em 0 0;
}
body#contactPage div.contents#contact.error ul.link > li {
  text-align: center;
}
body#contactPage div.contents#contact.error ul.link > li + li {
  margin-top: 1em;
}
body#contactPage div.contents#contact.error ul.link > li > a {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 2.4rem;
}
body#contactPage div.contents#contact div.privacy {
  position: relative;
  margin: 40px 0 0;
  padding: 2em 2em 0;
  border-top: 1px solid #3c5d7e;
  font-family: "Yu Mincho", YuMincho, serif;
}
body#contactPage div.contents#contact div.privacy::before, body#contactPage div.contents#contact div.privacy::after {
  content: "";
  display: block;
  position: absolute;
  top: -4px;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  width: 8px;
  height: 8px;
  background: #3c5d7e;
}
body#contactPage div.contents#contact div.privacy::before {
  left: 0;
}
body#contactPage div.contents#contact div.privacy::after {
  right: 0;
}
body#contactPage div.contents#contact div.privacy h2.title {
  margin: 0 0 2em;
}
body#contactPage div.contents#contact div.privacy ol.privacy > li {
  margin: 0 0 0 1.7em;
  text-indent: -1.7em;
}
body#contactPage div.contents#contact div.privacy ol.privacy > li + li {
  margin-top: 0.5em;
}
body#contactPage div.contents#contact div.privacy ol.privacy > li ul > li {
  margin: 0 0 0 1.7em;
  text-indent: -1.7em;
}
body#contactPage div.contents#contact div.privacy dl.responsibility {
  margin: 2em 0 0;
}
body#contactPage div.contents#contact div.privacy dl.responsibility::after {
  content: "";
  display: block;
  clear: left;
}
body#contactPage div.contents#contact div.privacy dl.responsibility > dd {
  margin: 0 0 0 1em;
}
body#contactPage div.contents#contact div.privacy dl.responsibility > dd.tel {
  float: left;
  margin-right: 1em;
}
body#contactPage div.contents#confirm div.confirm {
  text-align: center;
}
body#contactPage div.contents#confirm div.confirm p.text {
  margin: 0 0 1em;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.8rem;
  font-weight: bold;
}
body#contactPage div.contents button.border,
body#contactPage div.contents a.border {
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 2.4rem;
}
body#contactPage div.contents button.border:hover,
body#contactPage div.contents a.border:hover {
  cursor: pointer;
}

/* Privacy
------------------------------------- */
body#privacyPage div#topImage {
  height: 360px;
  background-image: url(../image/privacyPolicy_top.jpg);
}
body#privacyPage div.contents#notice {
  padding: 0 12%;
}
body#privacyPage div.contents#privacy {
  margin-top: 0;
  padding-top: 0;
}
body#privacyPage div.contents#privacy div.inner {
  padding: 0 12%;
}
body#privacyPage div.contents#privacy h2.indexTitle {
  text-align: center;
  background-image: url(../image/privacy_privacy_bg.svg);
}
body#privacyPage div.contents#privacy h3.title {
  margin: 2em 0 0;
  font-weight: bold;
}
body#privacyPage div.contents#privacy h4.innerTitle {
  margin: 2em 0 0;
  font-weight: bold;
}
body#privacyPage div.contents#privacy ol.list {
  margin: 1em 0 0;
}
body#privacyPage div.contents#privacy ol.list > li {
  margin: 0 0 0 1.5em;
  text-indent: -1.5em;
}
body#privacyPage div.contents#privacy ul.list {
  margin: 0 0 0 2em;
}
body#privacyPage div.contents#privacy ul.list > li {
  margin: 0 0 0 1em;
  text-indent: -1em;
}
body#privacyPage div.contents#privacy dl.list > dt.name,
body#privacyPage div.contents#privacy dl.list > dt.administrator {
  float: left;
  margin: 0 1em 0 0;
}
body#privacyPage div.contents#privacy dl.list > dt.name + dd::after,
body#privacyPage div.contents#privacy dl.list > dt.administrator + dd::after {
  content: "";
  display: block;
  clear: left;
}
body#privacyPage div.contents#privacy dl.list > dt.purpose + dd,
body#privacyPage div.contents#privacy dl.list > dt.request + dd {
  margin: 0 0 0 4em;
}
body#privacyPage div.contents#privacy dl.list ul.inner {
  margin: 0 0 0 1em;
}