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

body {
  line-height: 1.4;
  -webkit-text-size-adjust: 100%;
  font-family: sans-serif;
  font-size: 1.4em;
  letter-spacing: 1px;
}

img {
  max-width: 100%;
}

.mbNone {
  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 {
  top: -20px;
}
div#header h1#headerLogo,
div#header p#headerLogo {
  display: table;
  box-sizing: border-box;
  min-height: 64px;
  margin: 0 64px;
  text-align: center;
}
div#header h1#headerLogo > a,
div#header p#headerLogo > a {
  display: table-cell;
  vertical-align: middle;
  padding: 10px 0;
}
div#header.fixed {
  padding-top: 64px;
}
div#header.fixed div#headerBasis {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  border-bottom: 1px solid #c0d2dd;
  background: #e7eef4;
  transition: top 0.5s ease 0s;
}
div#header div#headerMenu::before {
  content: url(../image/icon_menu_open.svg);
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
}
div#header div#headerMenu ul.menu {
  display: none;
  position: absolute;
  z-index: 100;
  width: calc(100% - 20px);
  margin: 0 10px;
  border: 1px solid #c0d2dd;
  border-radius: 5px;
  background: #eef6f9;
}
div#header div#headerMenu ul.menu > li {
  border-top: 1px solid #c0d2dd;
}
div#header div#headerMenu ul.menu > li:first-child {
  border-top: none;
}
div#header div#headerMenu ul.menu a.border {
  display: block;
  opacity: 1;
  padding: 10px 0;
}
div#header div#headerMenu ul.menu a.border::before, div#header div#headerMenu ul.menu a.border::after,
div#header div#headerMenu ul.menu a.border > span::before,
div#header div#headerMenu ul.menu a.border > span::after {
  content: none;
}
div#header div#headerMenu ul.menu a.border > span, div#header div#headerMenu ul.menu a.border:hover > span {
  border: none;
}

/* Footer
===================================== */
div#footer {
  position: relative;
  margin: 0 10px;
  padding: 1em 0 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 {
  margin: 1em 0 0;
}
div#footer ul.link a {
  display: block;
  padding: 0.5em 0;
  border: 1px solid #3c5d7e;
  border-radius: 1.2em;
  color: #3c5d7e;
  text-align: center;
  text-decoration: none;
}
div#footer address > dl {
  margin: 1em 0 0;
}
div#footer address > dl > dt {
  width: 100%;
  margin: 0 0 0.5em;
}
div#footer address > dl > dd.contact > a.border {
  display: table;
  margin: 1em auto 0;
}

p#copyright {
  padding: 1em 0 0.5em;
  color: #646464;
  font-size: 1.3rem;
  text-align: center;
}

/* Common
===================================== */
/* ====== backToTop ====== */
p#backToTop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 10;
  line-height: 1;
  opacity: 0.7;
}
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;
}

/* ====== 四角(◇)と上下ボーダー(タイトル) ====== */
a.border,
button.border,
h3.border {
  display: inline-block;
  position: relative;
  line-height: 1;
  color: #3c5d7e;
}
a.border > span,
button.border > span,
h3.border > span {
  display: inline-block;
  position: relative;
  padding: 0.2em 1em;
  border-top: 1px solid #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
}
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,
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;
}
a.border::before,
a.border > span::before,
button.border::before,
button.border > span::before,
h3.border::before,
h3.border > span::before {
  left: -3px;
}
a.border::after,
a.border > span::after,
button.border::after,
button.border > span::after,
h3.border::after,
h3.border > span::after {
  right: -3px;
}
a.border::before, a.border::after,
button.border::before,
button.border::after,
h3.border::before,
h3.border::after {
  top: -3px;
}
a.border > span::before,
a.border > span::after,
button.border > span::before,
button.border > span::after,
h3.border > span::before,
h3.border > 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,
h3.border.largeMark::before,
h3.border.largeMark::after,
h3.border.largeMark > span::before,
h3.border.largeMark > span::after {
  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,
h3.border.largeMark::before,
h3.border.largeMark > span::before {
  left: -6px;
}
a.border.largeMark::after, a.border.largeMark > span::after,
button.border.largeMark::after,
button.border.largeMark > span::after,
h3.border.largeMark::after,
h3.border.largeMark > span::after {
  right: -6px;
}
a.border.largeMark::before, a.border.largeMark::after,
button.border.largeMark::before,
button.border.largeMark::after,
h3.border.largeMark::before,
h3.border.largeMark::after {
  top: -6px;
}
a.border.largeMark > span::before, a.border.largeMark > span::after,
button.border.largeMark > span::before,
button.border.largeMark > span::after,
h3.border.largeMark > span::before,
h3.border.largeMark > span::after {
  top: calc(100% - 6px);
}

/* MainContents
------------------------------------- */
div.contents {
  margin: 0 0 120px;
}
div.contents:first-child {
  margin-bottom: 40px;
}
div.contents.blueBlock {
  position: relative;
  overflow: hidden;
  margin-top: -65px;
  padding: 65px 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;
}
div.contents > div.inner h2.indexTitle {
  margin: 0 0 35px;
  padding: 45px 0;
  text-align: center;
  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 10px 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.4rem;
  font-weight: bold;
}
div.contents > ul.innerNav > li > a.border {
  display: block;
  text-align: center;
  text-decoration: none;
}
div.contents > ul.innerNav > li > a.border > span {
  display: block;
  padding: 0.5em 0;
}
div.contents > ul.innerNav > li + li a.border::before {
  content: none;
}
div.contents > ul.innerNav > li + li a.border span {
  border-top: none;
}
div.contents#link div.inner {
  margin: 0 10px;
}
div.contents#link div.inner p.link {
  text-align: center;
}
div.contents#link div.inner p.link span {
  padding: 0.5em 0;
}

/* ====== トップイメージ ====== */
div#topImage {
  position: relative;
  padding: 40% 0 0;
  background: no-repeat center top;
  background-size: cover;
}
div#topImage > div.phrase,
div#topImage > h1.phrase {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  margin: -0.7em 0 0;
  color: #fff;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 3rem;
  text-align: center;
}
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 {
  background: #eef6f9;
}
body#indexPage.opening div.contents:first-child div#topImage {
  height: 100%;
  padding: 0;
  background-image: url(../image/index_top_mb.jpg);
  background-position: center center;
  background-size: cover;
}
body#indexPage.opening div.contents:first-child div#topImage > div.phrase {
  margin-top: -2.1em;
}
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 {
  padding-top: 64.8%;
  background-image: url(../image/index_top.jpg);
}
body#indexPage div#topImage > div.phrase {
  margin-top: -2.1em;
  font-size: 4rem;
}
body#indexPage div.contents.blueBlock {
  position: relative;
}
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;
  padding: 0 10px;
  text-align: center;
}
body#indexPage div.contents.blueBlock h2.indexTitle::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  z-index: -1;
}
body#indexPage div.contents.blueBlock h2.indexTitle::after {
  content: "";
  display: block;
  position: absolute;
  top: -40px;
  left: 0;
  z-index: -2;
  width: 100%;
  height: calc(100% + 80px);
  background: #e7eef4;
}
body#indexPage div.contents.blueBlock div.details {
  padding: 25px 10px 0;
}
body#indexPage div.contents.blueBlock p.more {
  padding: 25px 0 0;
  text-align: center;
}
body#indexPage div.contents#link::before {
  top: 0;
  margin-top: 50px;
}
body#indexPage div.contents#link ul.effectLink {
  padding: 0 10px;
}
body#indexPage div.contents#link ul.effectLink > li {
  margin: 30px 0 0;
  text-align: center;
}
body#indexPage div.contents#link ul.effectLink > li:first-child {
  margin-top: 0;
}
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: 50%;
  z-index: 1;
  width: 210px;
  height: 210px;
  opacity: 0;
  margin: 0 0 0 -105px;
  background: no-repeat;
  transition: opacity 2s 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: 10px 0 0;
}
body#indexPage div#newsBlock div.inner {
  position: relative;
}
body#indexPage div#newsBlock h2.newsTitle {
  margin: 0 0 20px;
  text-align: center;
}
body#indexPage div#newsBlock dl.news {
  position: relative;
  margin: 0 10px 20px;
  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.4em 5px;
  padding: 0.5em 0 0;
}
body#indexPage div#newsBlock dl.news > dd {
  padding: 0 0 0.5em 8em;
  border-bottom: 1px dotted #000;
}
body#indexPage div#newsBlock dl.news > dd:last-child {
  border-bottom: none;
}
body#indexPage div#newsBlock p.more {
  text-align: center;
}

/* Notice
------------------------------------- */
body#noticePage div#topImage {
  background-image: url(../image/notice_top.jpg);
}
body#noticePage div.contents#notice div.inner {
  margin: 0 10px;
}
body#noticePage div.contents#notice h2.indexTitle {
  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 {
  background-image: url(../image/association_top.jpg);
}
body#associationPage div.contents h3.detailsTitle {
  display: block;
  text-align: center;
}
body#associationPage div.contents h3.border {
  display: block;
  text-align: center;
}
body#associationPage div.contents h3.border > span {
  display: block;
}
body#associationPage div.contents#introduction div.inner {
  margin: 0 10px;
}
body#associationPage div.contents#introduction h2.title {
  position: relative;
  padding: 0 0 15px;
  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 > span {
  display: block;
  max-height: 74px;
  overflow: hidden;
  background: url(../image/association_introduction_mb_title.svg) no-repeat center center;
  background-size: contain;
}
body#associationPage div.contents#introduction h2.title > span::before {
  content: "";
  display: block;
  padding: 12.7% 0 0;
}
body#associationPage div.contents#introduction h2.title > span > img {
  position: absolute;
  top: -1px;
  left: -1px;
  width: 0;
  height: 0;
}
body#associationPage div.contents#introduction div.details p.text {
  padding: 16px 10px 0;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 1.6rem;
  font-weight: bold;
}
body#associationPage div.contents#greeting div.inner {
  margin: 0 10px;
}
body#associationPage div.contents#greeting h2.indexTitle {
  background-image: url(../image/association_greeting_bg.svg);
}
body#associationPage div.contents#greeting div.details {
  margin: 40px 0 0;
}
body#associationPage div.contents#greeting dl.profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  float: right;
  width: 240px;
  margin: 40px 0 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 {
  margin: 0 10px;
}
body#associationPage div.contents#activity h2.indexTitle {
  background-image: url(../image/association_activity_bg.svg);
}
body#associationPage div.contents#activity div.details {
  margin: 40px 0 0;
}
body#associationPage div.contents#activity div.details h3.border {
  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;
  padding: 1em 1em 0;
}
body#associationPage div.contents#overview div.inner {
  margin: 0 10px;
}
body#associationPage div.contents#overview h2.indexTitle {
  background-image: url(../image/association_overview_bg.svg);
}
body#associationPage div.contents#overview div.details table.data {
  margin: 0 1em;
  border-top: 1px solid #3c5d7e;
}
body#associationPage div.contents#overview div.details table.data, body#associationPage div.contents#overview div.details table.data tbody, body#associationPage div.contents#overview div.details table.data tr, body#associationPage div.contents#overview div.details table.data th, body#associationPage div.contents#overview div.details table.data td {
  display: block;
}
body#associationPage div.contents#overview div.details table.data th,
body#associationPage div.contents#overview div.details table.data td {
  padding: 0.5em 0;
  text-align: center;
}
body#associationPage div.contents#overview div.details table.data th {
  border-bottom: 1px dashed #3c5d7e;
}
body#associationPage div.contents#overview div.details table.data td {
  border-bottom: 1px solid #3c5d7e;
}
body#associationPage div.contents#member div.inner {
  margin: 0 10px;
}
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.6rem;
  font-weight: bold;
}
body#associationPage div.contents#member div.details p.admissionFee {
  padding: 38px 0 0;
  text-align: center;
}
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 10px;
  text-align: center;
}
body#associationPage div.contents#member div.details dl.membershipFee > dt {
  padding: 0 0 0.2em;
  border-bottom: 1px solid #3c5d7e;
}
body#associationPage div.contents#member div.details dl.membershipFee > dd {
  margin: 0.2em 0 1.4em;
}

/* Practitioner
------------------------------------- */
body#practitionerPage div#topImage {
  background-image: url(../image/practitioner_top.jpg);
}
body#practitionerPage div#topImage > h1.phrase {
  font-size: 6vw;
}
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 div.detailsBlock div.details {
  margin-top: 40px;
}
body#practitionerPage div.contents div.detailsBlock div.details:first-child {
  margin-top: 0;
}
body#practitionerPage div.contents p.image {
  margin: 0 0 40px;
}
body#practitionerPage div.contents#practitioner div.inner {
  margin: 0 10px;
}
body#practitionerPage div.contents#practitioner h2.indexTitle {
  background-image: url(../image/practitioner_practitioner_bg.svg);
}
body#practitionerPage div.contents#grade div.inner {
  margin: 0 10px;
}
body#practitionerPage div.contents#grade div.inner:nth-child(n+2) h2 {
  padding-top: 3em;
}
body#practitionerPage div.contents#grade h2.indexTitle {
  background-image: url(../image/practitioner_grade_bg.svg);
}
body#practitionerPage div.contents#grade div.detailsBlock dl.details {
  margin: 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 {
  margin: 0 10px;
}
body#practitionerPage div.contents#curriculum h2.indexTitle {
  padding: 25px 0;
  background-image: url(../image/practitioner_curriculum_bg.svg);
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents {
  margin: 0 1em 0.5em;
}
body#practitionerPage div.contents#curriculum div.detailsBlock ul.contents > li::before {
  content: "・";
}
body#practitionerPage div.contents#curriculum div.detailsBlock p.notes {
  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 {
  margin: 0 10px;
}
body#practitionerPage div.contents#details h2.indexTitle {
  background-image: url(../image/practitioner_details_bg.svg);
}
body#practitionerPage div.contents#details div.detailsBlock dl.details {
  margin: 0 1em 0.5em;
}
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 {
  background-image: url(../image/seminar_top.jpg);
}
body#seminarPage div#topImage > h1.phrase {
  font-size: 6vw;
}
body#seminarPage div.contents p.image {
  margin: 0 0 40px;
}
body#seminarPage div.contents#memberSeminar div.inner {
  margin: 0 10px;
}
body#seminarPage div.contents#memberSeminar h2.indexTitle {
  background-image: url(../image/seminar_memberSeminar_bg.svg);
}
body#seminarPage div.contents#memberSeminar div.details ul.list {
  margin: 0 1em;
}
body#seminarPage div.contents#memberSeminar div.details ul.list > li::before {
  content: "・";
}
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;
}
body#seminarPage div.contents#memberSeminar div.details dl.details {
  margin-top: 2em;
  padding: 0.5em 0;
  border-top: 1px dashed #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
  text-align: center;
}
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,
body#seminarPage div.contents#memberSeminar div.details dl.details > dd {
  display: inline;
}
body#seminarPage div.contents#memberSeminar div.details dl.details > dd::after {
  content: "\a";
  white-space: pre;
}
body#seminarPage div.contents#class div.inner {
  margin: 0 10px;
}
body#seminarPage div.contents#class h2.indexTitle {
  padding: 25px 0;
  background-image: url(../image/seminar_class_bg.svg);
}
body#seminarPage div.contents#class div.details p.text {
  margin: 0 0 2em;
}
body#seminarPage div.contents#class div.details h3.title {
  padding: 0.5em 0;
  border-top: 1px solid #3c5d7e;
  text-align: center;
}
body#seminarPage div.contents#class div.details ul.details {
  padding: 0.5em 0;
  border-top: 1px dashed #3c5d7e;
  text-align: center;
}
body#seminarPage div.contents#class div.details dl.details {
  margin-bottom: 2em;
  padding: 0.5em 0;
  border-top: 1px dashed #3c5d7e;
  border-bottom: 1px solid #3c5d7e;
  text-align: center;
}
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,
body#seminarPage div.contents#class div.details dl.details > dd {
  display: inline;
}
body#seminarPage div.contents#class div.details dl.details > dd::after {
  content: "\a";
  white-space: pre;
}

/* Teacher
------------------------------------- */
body#teacherPage div#topImage {
  background-image: url(../image/teacher_top.jpg);
}
body#teacherPage div.contents#director div.inner {
  margin: 0 10px;
}
body#teacherPage div.contents#director h2.indexTitle {
  padding: 25px 0;
  background-image: url(../image/teacher_director_bg.svg);
}
body#teacherPage div.contents#director p.image {
  margin: 0 0 40px;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career h3.title {
  display: block;
  margin: 1.6em 0 1em;
  text-align: center;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career h3.title > span {
  display: block;
  padding: 0.5em 0;
}
body#teacherPage div.contents#director div.details div.careerBlock div.career ul.details {
  margin: 0 10px;
}
body#teacherPage div.contents#activity div.inner {
  margin: 0 10px;
}
body#teacherPage div.contents#activity h2.indexTitle {
  background-image: url(../image/teacher_activity_bg.svg);
}
body#teacherPage div.contents#activity div.details h3.border {
  display: block;
  margin: 50px 0 2em;
  text-align: center;
}
body#teacherPage div.contents#activity div.details h3.border > span {
  display: block;
  padding: 0.5em 0;
}
body#teacherPage div.contents#activity div.details div.dottedBox {
  position: relative;
  margin: 0 10px;
  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: -5px;
  left: -4px;
}
body#teacherPage div.contents#activity div.details div.dottedBox::after {
  top: -7px;
  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: -7px;
  left: -2px;
  transform: rotateZ(270deg);
}
body#teacherPage div.contents#activity div.details div.dottedBox > div.content::after {
  bottom: -5px;
  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 > li {
  margin: 0 0 0 1em;
  text-indent: -1em;
}

/* Chuigaku
------------------------------------- */
body#chuigakuPage div#topImage {
  background-image: url(../image/chuigaku_top.jpg);
}
body#chuigakuPage div.contents p.image {
  margin: 0 0 40px;
}
body#chuigakuPage div.contents#yakuzen div.inner {
  margin: 0 10px;
}
body#chuigakuPage div.contents#yakuzen h2.indexTitle {
  background-image: url(../image/chuigaku_yakuzen_bg.svg);
}
body#chuigakuPage div.contents#chineseMedicine div.inner {
  margin: 0 10px;
}
body#chuigakuPage div.contents#chineseMedicine h2.indexTitle {
  background-image: url(../image/chuigaku_chineseMedicine_bg.svg);
}

/* Contact
------------------------------------- */
body#contactPage div#topImage {
  background-image: url(../image/contact_top.jpg);
}
body#contactPage div#topImage > h1.phrase {
  font-size: 6vw;
}
body#contactPage div.contents#attention {
  margin-bottom: 40px;
}
body#contactPage div.contents#attention div.inner {
  margin: 0 10px;
  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 {
  margin: 0 10px;
}
body#contactPage div.contents#contact h2.indexTitle {
  background-image: url(../image/contact_contact_bg.svg);
}
body#contactPage div.contents#contact table.contact {
  border-top: 1px solid #3c5d7e;
}
body#contactPage div.contents#contact table.contact, body#contactPage div.contents#contact table.contact tbody, body#contactPage div.contents#contact table.contact tr, body#contactPage div.contents#contact table.contact th, body#contactPage div.contents#contact table.contact td {
  display: block;
}
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 {
  padding: 0.5em 0;
  border-bottom: 1px dashed #3c5d7e;
  font-family: "Yu Mincho", YuMincho, serif;
  font-size: 2rem;
  text-align: center;
}
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 {
  padding: 1em 0;
  border-bottom: 1px solid #3c5d7e;
}
body#contactPage div.contents#contact table.contact td p.error {
  color: #f00;
}
body#contactPage div.contents#contact table.contact td label {
  display: block;
}
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 {
  box-sizing: border-box;
  border: 1px solid #3c5d7e;
  width: 100%;
}
body#contactPage div.contents#contact table.contact input[type=text],
body#contactPage div.contents#contact table.contact textarea {
  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: block;
}
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: 2em;
}
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 10px 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 {
  padding: 0;
}
body#privacyPage div#topImage > h1.phrase {
  display: none;
}
body#privacyPage div.contents:first-child {
  margin-bottom: 0;
  border-bottom: 1px solid #c0d2dd;
}
body#privacyPage div.contents#privacy {
  margin-top: 0;
  padding-top: 0;
}
body#privacyPage div.contents#privacy div.inner {
  padding: 0 10px;
}
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.5em 0 0 1.5em;
  text-indent: -1.5em;
}
body#privacyPage div.contents#privacy ul.list {
  margin: 0 0 0.5em 1em;
}
body#privacyPage div.contents#privacy ul.list > li {
  margin: 0.5em 0 0 1em;
  text-indent: -1em;
}
body#privacyPage div.contents#privacy dl.list > dt {
  margin: 0.5em 0 0;
}
body#privacyPage div.contents#privacy dl.list > dd {
  margin: 0 0 0 2em;
}
body#privacyPage div.contents#privacy dl.list ul.inner {
  margin: 0 0 0 1em;
}
body#privacyPage div.contents#privacy p.address {
  margin: 1.4em 0 0;
}