@charset "UTF-8";
/* --

 style.css

 ------------------------------------

 アイコンはアイコンフォント「Font Awesome」を使用。
 https://fontawesome.com/v4.7.0/

 ブレイクポイントは以下の通り。
 ・タブレット：1023px（1024px未満をタブレットと設定）
 ・スマホ：639px（640px未満をタブレットと設定）

-- */
@import url(https://fonts.googleapis.com/css?family=Titillium+Web:700i);
/* --

 * clearfix..............float解除
 * font-size.............フォントサイズ指定（px指定はIE8対策）
 * layout-baseSize.......基本のコンテンツサイズ
 * layout-posMiddle......天地中央配置
 * moving-base...........基本のアニメーション
 * FontAwesome...........アイコンフォント使用（FontAwesome）
 * opacity...............透明度設定（IE対応含む）
 * tablet................ブレイクポイント設定（タブレット）
 * mobile................ブレイクポイント設定（スマホ）
 * contact-btn__woman....追加対応
 * contact-btn__oboegaki.追加対応

 ------------------------------------

 * scroll..............スクロールアイコンのスタイル
 * module-title........タイトル共通のスタイル


-- */
/* --

 keyframes - アニメーションキーフレーム集

 ------------------------------------

 * loading.............ローディングアイコンのアニメーション
 * toggle-.............ハンバーガーアイコンに関するアニメーション

-- */
@-webkit-keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
  }
}
@keyframes loading {
  0%, 80%, 100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@-webkit-keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@keyframes toggle-top {
  0% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-8px) rotate(0deg);
    transform: translateY(-8px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
  }
}
@keyframes toggle-bottom {
  0% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(6px) rotate(0deg);
    transform: translateY(6px) rotate(0deg);
  }
}
@-webkit-keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@keyframes toggle-top-close {
  0% {
    -webkit-transform: translateY(-17px) rotate(0deg);
    transform: translateY(-17px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(0px) rotate(-45deg);
    transform: translateY(0px) rotate(-45deg);
  }
}
@-webkit-keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}
@keyframes toggle-bottom-close {
  0% {
    -webkit-transform: translateY(15px) rotate(0deg);
    transform: translateY(15px) rotate(0deg);
  }
  50% {
    -webkit-transform: translateY(0px) rotate(0deg);
    transform: translateY(0px) rotate(0deg);
  }
  100% {
    -webkit-transform: translateY(-4px) rotate(45deg);
    transform: translateY(-4px) rotate(45deg);
  }
}
/*-----------------------------------

	$normalize

	http://necolas.github.io/normalize.css/
	normalize ver 4.1.1 を元に改変

-----------------------------------*/
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

progress {
  vertical-align: baseline;
}

template,
[hidden] {
  display: none;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  outline: none;
}

a:active,
a:hover {
  outline-width: 0;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: inherit;
  font-weight: bolder;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background-color: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  height: auto;
  border: 0;
  vertical-align: middle;
}

svg:not(:root) {
  overflow: hidden;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

ul, ol, dl, dt, dd, figure {
  padding: 0;
  margin: 0;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

button,
input,
select,
textarea {
  font: inherit;
  margin: 0;
}

optgroup {
  font-weight: bold;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-cancel-button,
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

/*-----------------------------------

	$base

-----------------------------------*/
html {
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  font-size: 62.5%;
  min-width: 100%;
  min-height: 100%;
}

[id=wrapper] {
  overflow: hidden;
}

body {
  color: #000;
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, sans-serif;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: 0.1em;
}

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

li {
  list-style: none;
  line-height: 1.4;
}

p {
  margin: 0;
}

table th,
table td {
  text-align: left;
}

address {
  font-style: inherit;
}

.center {
  text-align: center;
}

/*
    clearfix
--------------------------*/
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

/*-----------------------------------

	$loader

-----------------------------------*/
.loader {
  display: none;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  background: #fff;
  z-index: 9999;
}
.loader__inner {
  display: table;
  width: 100%;
  height: 100%;
  text-align: center;
}
.loader__item {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.loader__animation {
  display: inline-block;
  text-align: center;
  margin: 0 0 0 0.4em;
}
.loader__animation > span {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  background: #da96a2;
  border-radius: 100%;
  margin: 0 0.2em;
  display: inline-block;
  -webkit-animation: loading 1.4s infinite ease-in-out both;
  animation: loading 1.4s infinite ease-in-out both;
}
.loader__animation > span:first-child {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
  background: #6cadea;
}
.loader__animation > span:nth-child(2) {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
  background: #988fb7;
}

/*-----------------------------------

	$header

-----------------------------------*/
.header__description {
  background: #012d6d;
  text-align: right;
}
.header__description p {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 0 0.2em;
}
.header__description a {
  color: #fff;
  font-size: 1.3rem;
}
.header__description a:hover i {
  margin: 0 0 0 0.8em;
}
.header__description i {
  margin: 0 0.2em 0 0.6em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.header__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.5em 0;
  position: relative;
}
.header__logo {
  font-size: 3rem;
  line-height: 0.9;
  font-weight: bold;
  margin: 0;
  padding-left: 2.5em;
  position: relative;
}
.header__logo a {
  vertical-align: middle;
}
.header__logo .branch {
  display: inline-block;
  margin: 0 0 0 0.1em;
}
.header__logo span:not(.branch) {
  color: #aaa;
  font-size: 1.5rem;
}
.header__logo img {
  width: 1.8em;
  position: absolute;
  left: 0;
}
.header__btn a {
  border-radius: 4px;
  display: inline-block;
  padding: 0.4em 1em;
  background: #012d6d;
  color: #fff;
  font-size: 0.9em;
  position: absolute;
  top: 32%;
  right: 0;
}
.header__btn a::after {
  padding: 0 0 0 1em;
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  content: "\f0d7";
}

.about .header__btn,
.councilor .header__btn,
.facility .header__btn,
.meeting .header__btn,
.seminar .header__btn,
.coi .header__btn,
.requirements .header__btn {
  display: none;
}

/*-----------------------------------

	$header - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .header__description p {
    padding-right: 4%;
  }
  .header__inner {
    padding: 1.6em 4%;
  }
  .header__btn a {
    font-size: 0.85em;
    right: 2%;
  }
}
/*-----------------------------------

	$header - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .header {
    width: 100%;
    background: #fff;
    position: fixed;
    z-index: 9998;
  }
  .header__description p {
    line-height: 1.4;
    padding-right: 2%;
  }
  .header__description a {
    font-size: 1rem;
  }
  .header__description i {
    margin: 0 0 0 0.6em;
  }
  .header__inner {
    padding: 1em 2%;
  }
  .header__logo {
    font-size: 1.5rem;
  }
  .header__logo span:not(.branch) {
    font-size: 1rem;
  }
  .header__btn a {
    display: none;
  }
}
/*-----------------------------------

	$nav

-----------------------------------*/
.nav {
  border-top: 1px solid #012d6d;
  border-bottom: 1px solid #012d6d;
}
.nav__inner {
  max-width: 1180px;
  margin: 0 auto;
  font-size: 1.2rem;
  text-align: center;
}
.nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.nav__list > li {
  width: 11.1111111111%;
  font-size: 1.2em;
  position: relative;
}
.nav__list > li:not(:first-child)::before {
  content: "";
  position: absolute;
  display: block;
  width: 1px;
  height: 80%;
  background: #012d6d;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.nav__list > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 0.25em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.nav__list > li a:hover {
  background: #012d6d;
  color: #fff !important;
  font-weight: bold;
}
.nav__list > li .point {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em 0.25em;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.nav__list > li .point:hover {
  background: #012d6d;
  color: #fff !important;
  font-weight: bold;
}
.nav__toggle {
  display: none;
  position: absolute;
  top: 2.4em;
  right: 4%;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 9998;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px 0 0;
}
.nav__toggle div {
  position: relative;
}
.nav__toggle span {
  display: block;
  position: relative;
  height: 2px;
  width: 100%;
  background: #999;
  left: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.nav__toggle .top {
  -webkit-animation: toggle-top 0.5s;
  animation: toggle-top 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.nav__toggle .middle {
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
  -webkit-transform: translateY(-1px);
  -ms-transform: translateY(-1px);
  transform: translateY(-1px);
  opacity: 1;
}
.nav__toggle .bottom {
  -webkit-animation: toggle-bottom 0.5s;
  animation: toggle-bottom 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*
   .open
--------------------------*/
.open .nav__toggle {
  position: fixed;
}
.open .nav__toggle span {
  background: #999;
}
.open .nav__toggle .middle {
  opacity: 0;
  -webkit-transition: 0.5s opacity;
  transition: 0.5s opacity;
}
.open .nav__toggle .top {
  -webkit-animation: toggle-top-close 0.5s;
  animation: toggle-top-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}
.open .nav__toggle .bottom {
  -webkit-animation: toggle-bottom-close 0.5s;
  animation: toggle-bottom-close 0.5s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

/*-----------------------------------

	$nav - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .nav__inner {
    font-size: 1.1rem;
  }
  .nav__list > li {
    font-size: 1em;
  }
  .nav__list > li br {
    display: none;
  }
}
/*-----------------------------------

	$nav - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .nav__inner {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9997;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 5em 5% 0;
    margin: 0;
    font-size: inherit;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all 0.6s ease;
    -webkit-transition: all 0.6s ease;
    -moz-transition: all 0.6s ease;
  }
  .open .nav__inner {
    visibility: visible;
    opacity: 1;
    filter: alpha(opacity=100);
  }
  .nav__list {
    display: block;
    width: 100%;
    border-top: 1px dotted #999;
  }
  .nav__list > li {
    width: 100%;
    text-align: left;
    border-bottom: 1px dotted #999;
  }
  .nav__list > li:not(:first-child)::before {
    display: none;
  }
  .nav__list > li > a {
    display: block;
    padding: 0.8em 1em;
    position: relative;
  }
  .nav__list > li > a:after {
    display: inline-block;
    content: "\f105";
    font-family: Fontawesome;
    position: absolute;
    right: 1em;
  }
  .nav__list > li .point {
    display: block;
    padding: 0.8em 1em;
  }
  .nav__toggle {
    display: block;
  }
}
/*-----------------------------------

	$dropdown

-----------------------------------*/
.dropdown {
  position: relative;
}
.dropdown > span {
  cursor: pointer;
}
.dropdown > span:hover {
  font-weight: bold;
}
.dropdown__menu {
  display: none;
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9998;
  border: 1px solid #012d6d;
}
.dropdown__menu:before {
  display: block;
  content: "";
  border: 4px solid transparent;
  position: absolute;
  top: -10px;
  left: 50%;
  margin: 0 0 0 -6px;
}
.dropdown__menu li:last-child span {
  border-bottom: none;
}
.dropdown__menu a {
  color: #012d6d !important;
  background: #fff;
  display: block !important;
  padding: 0 0.8em !important;
  font-size: 0.9em !important;
  text-align: left !important;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.dropdown__menu a::before {
  display: none !important;
}
.dropdown__menu span {
  display: block;
  padding: 1em 0 1em 0.6em;
  border-bottom: 1px dotted rgba(1, 45, 109, 0.6);
}
.dropdown__menu span:after {
  opacity: 0;
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  position: absolute;
  right: 1.2em;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.dropdown__menu span:hover:after {
  opacity: 1;
  right: 0.8em;
}
.dropdown__menu-about:before {
  border-bottom: 6px solid #012d6d;
}
.dropdown__menu-about a {
  background: #fff;
}
.dropdown__menu-about a:hover {
  background: #bfbfbf;
}
.dropdown__menu-councilor:before {
  border-bottom: 6px solid #012d6d;
}
.dropdown__menu-councilor a {
  background: #fff;
}
.dropdown__menu-councilor a:hover {
  background: #bfbfbf;
}

/*-----------------------------------

	$dropdown - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .dropdown__menu a {
    padding: 0 0.6em;
    font-size: 1.2rem;
  }
  .dropdown__menu span {
    padding: 0.8em 0 0.8em 0.4em;
  }
  .dropdown__menu span:after {
    right: 1.2em;
  }
  .dropdown__menu span:hover:after {
    right: 0.8em;
  }
}
/*-----------------------------------

	$dropdown - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .dropdown {
    position: relative;
  }
  .dropdown > span {
    display: block;
    padding: 0 1em;
    position: relative;
  }
  .dropdown > span:after {
    display: inline-block;
    content: "\f107";
    font-family: Fontawesome;
    position: absolute;
    right: 1em;
  }
  .dropdown__menu {
    position: static;
    margin: 0.8em 0 0;
  }
  .dropdown__menu:before {
    display: none;
  }
  .dropdown__menu span {
    display: block;
    padding: 1em 0 1em 0.6em;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.6);
  }
  .dropdown__menu span:after {
    opacity: 1;
    display: inline-block;
    content: "\f105";
    font-family: Fontawesome;
    position: absolute;
    right: 1.6em;
    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
  }
  .dropdown__menu span:hover:after {
    opacity: 1;
    right: 1.2em;
  }
}

/*-----------------------------------

	$contact-btn__woman

-----------------------------------*/
.contact-btn__woman a {
  width: 17.6em;
  display: block;
  background: #012d6d;
  color: #fff;
  text-align: center;
  margin: 1em 0 0;
  padding: 1em 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
}
.contact-btn__woman a:after {
  display: inline-block;
  content: "";
  width: 60%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 20%;
  z-index: -1;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.contact-btn__woman a:hover {
  background: #0142a0;
}
.contact-btn__woman a:hover:after {
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3);
}
.contact-btn__woman i {
  margin: 0 0 0 1em;
}

/*-----------------------------------

	$contact-btn__oboegaki

-----------------------------------*/
.contact-btn__oboegaki a {
  width: 17.6em;
  display: block;
  background: #465DAA;
  color: #fff;
  text-align: center;
  margin: 1em 0 0;
  padding: 1em 0;
  border-radius: 4px;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  position: relative;
}
.contact-btn__oboegaki a:after {
  display: inline-block;
  content: "";
  width: 60%;
  height: 100%;
  border-radius: 50%;
  background: transparent;
  position: absolute;
  top: 0;
  left: 20%;
  z-index: -1;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1);
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
}
.contact-btn__oboegaki a:hover {
  background: #659AD2;
}
.contact-btn__oboegaki a:hover:after {
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.3);
}
.contact-btn__oboegaki i {
  margin: 0 0 0 1em;
}


/*-----------------------------------

	$footer

-----------------------------------*/
.footer__pagetop a {
  display: block;
  height: 100%;
  padding: 0 0 0.2em;
  background: #012d6d;
  color: #fff;
  text-align: center;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.footer__pagetop a:hover {
  background: #0142a0;
}
.footer__inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 4em 0;
}
.footer__inner:after {
  content: "";
  display: table;
  clear: both;
}
.footer__info {
  width: 34%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-right: 1px dotted #999;
  font-size: 1.3rem;
  line-height: 1.4;
}
.footer__info p {
  margin: 0 0 1em;
}
.footer__info p span {
  display: inline-block;
  background: #012d6d;
  color: #fff;
  padding: 0.2em 0.6em;
  margin: 0 0 0.4em;
  border-radius: 2px;
}
.footer__info a {
  text-decoration: underline;
}
.footer__info a:hover {
  text-decoration: none;
}
.footer__logo {
  font-size: 2rem;
  line-height: 1;
  margin: 0 0 1em;
  font-weight: bold;
}
.footer__logo span {
  font-size: 1.2rem;
}
.footer__menu {
  width: 60%;
  float: right;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.footer__item {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  font-size: 1.4rem;
}
.footer__item p {
  line-height: 1;
  margin: 0 0 1em;
}
.footer__item ul {
  margin-left: 1.6em;
}
.footer__item ul:not(:last-child) {
  margin-bottom: 1.4em;
}
.footer__item li {
  margin: 0.4em 0;
}
.footer__item a {
  text-decoration: underline;
}
.footer__item a:hover {
  text-decoration: none;
}
.footer__item a:hover i {
  margin: 0 0.6em 0 0.2em;
}
.footer__item i {
  margin: 0 0.8em 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.footer__line {
  width: 100%;
  margin-top: 1em;
}
.footer__line .line-banner {
  max-width: 140px;
}
.footer__line .line-banner img {
  width: 100%;
  height: auto;
}
.footer__line .line-text {
  font-size: 12px;
  margin-top: 5px;
}
.footer__arrow01 {
  color: #6cadea;
}
.footer__arrow02 {
  color: #988fb7;
}
.footer__arrow03 {
  color: #da96a2;
}
.footer__arrow04 {
  color: #ff9b7b;
}
.footer__arrow05 {
  color: #ff8fa5;
}
.footer__arrow06 {
  color: #46c1bb;
}
.footer__copyright {
  font-size: 1.2rem;
  text-align: center;
  background: #eee;
  padding: 0.6em 0;
}

/*-----------------------------------

	$footer - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .footer__inner {
    padding: 2em 4%;
  }
  .footer__info {
    width: 100%;
    float: none;
    border-right: none;
    padding: 3em 0 0;
  }
  .footer__menu {
    width: 100%;
    float: none;
    padding-bottom: 2em;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    border-bottom: 1px dotted #999;
  }
  .footer__item {
    font-size: 0.9em;
  }
  .footer__responsive {
    display: none;
  }
}
/*-----------------------------------

	$footer - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .footer__inner {
    padding: 2em 2% 3em;
  }
  .footer__menu {
    border-bottom: none;
  }
  .footer__item {
    display: none;
  }
  .footer__line {
    width: 80%;
    margin: auto;
  }
  .footer__info {
    padding: 0;
    width: 80%;
    margin: 0 auto;
  }
  .footer__info p:not(:first-child) {
    margin: 0;
    font-size: 1.1rem;
  }
  .footer__info p:last-child br {
    display: block;
  }
  .footer__logo {
    font-size: 1.6rem;
  }
  .footer__copyright {
    font-size: 1rem;
    padding: 0.6em 0;
  }
}
/*-----------------------------------

	$contents

-----------------------------------*/
.contents {
  background: url(../images/common_bg.png) repeat;
}
.contents__breadcrumbs {
  border-bottom: 1px solid #eee;
  background: #eee;
}
.contents__breadcrumbs ul {
  width: 80%;
  max-width: 1180px;
  margin: 0 auto;
}
.contents__breadcrumbs ul:after {
  content: "";
  display: table;
  clear: both;
}
.contents__breadcrumbs li {
  font-size: 1.1rem;
  display: inline-block;
}
.contents__breadcrumbs li:not(:first-child):before {
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  margin: 0 0 0 0.6em;
  padding: 0 0.6em 0 0;
}

/*-----------------------------------

	$contents - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .contents__breadcrumbs ul {
    width: 100%;
    max-width: 100%;
    padding: 0 4%;
  }
}
/*-----------------------------------

	$contents - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .contents {
    padding-top: 82px;
    font-size: 1.3rem;
  }
  .contents__breadcrumbs ul {
    padding: 0 2%;
  }
}
/*-----------------------------------

	$article

-----------------------------------*/
.article {
  border-right: 1px solid #eee;
  border-left: 1px solid #eee;
  width: 80%;
  max-width: 1180px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0 auto;
  padding: 0 2% 10em;
  background: #fff;
  position: relative;
}
.article:after {
  content: "";
  display: table;
  clear: both;
}
.article__pagetitle {
  text-align: center;
  padding: 4em 0;
}
.article__pagetitle h2 {
  display: table;
  margin: 0 auto;
  font-weight: normal;
  font-size: 3rem;
  line-height: 1.4;
}
.article__pagetitle h2 > * {
  display: table-cell;
  vertical-align: middle;
}
.article__pagetitle img {
  width: 0.7em;
  margin: 0 0.8em;
}
.article__title, .article__title02 {
  font-size: 2.2rem;
  line-height: 1;
  margin: 0 0 1.2em;
  color: #012d6d;
}
.article__title:before, .article__title02:before {
  display: inline-block;
  content: "";
  width: 6px;
  height: 1em;
  background: #012d6d;
  position: absolute;
  left: 0;
}
.article__title02:before {
  content: none;
}
.article__subTitle {
  font-size: 2rem;
  text-align: center;
  color: #666;
}

/*-----------------------------------

	$article - tablet

-----------------------------------*/
@media screen and (max-width: 1023px) {
  .article {
    border: none;
    width: 100%;
    max-width: 100%;
    padding: 0 4% 4em;
  }
  .article__pagetitle {
    padding: 3em 0;
  }
  .article__pagetitle h2 {
    font-size: 2.6rem;
  }
}
/*-----------------------------------

	$article - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .article__pagetitle h2 {
    font-size: 2rem;
  }
  .article__title, .article__title02 {
    font-size: 1.8rem;
  }
  .article__subTitle {
    font-size: 1.6rem;
  }
}
/*-----------------------------------

	$module

-----------------------------------*/
/*
    module-section
--------------------------*/
.module-section, .module-section02 {
  border-top: 1px solid #ccc;
  margin-top: 4em;
  padding-top: 2em;
}
@media screen and (max-width: 639px) {
  .module-section, .module-section02 {
    margin-top: 2.5em;
    padding-top: 1em;
  }
}
.module-section02 {
  padding-top: 3.5em;
}
@media screen and (max-width: 639px) {
  .module-section02 {
    padding-top: 2em;
  }
}

/*
    module-subTitle
--------------------------*/
.module-subTitle {
  font-size: 2rem;
  margin: 0 0 0.6em;
}
.module-subTitle span {
  color: #666;
  font-size: 1.4rem;
}
@media screen and (max-width: 639px) {
  .module-subTitle {
    font-size: 1.6rem;
  }
  .module-subTitle span {
    color: #aaa;
    font-size: 1.1rem;
  }
}

/*
    module-table
--------------------------*/
.module-table:not(:last-child), .module-table02:not(:last-child) {
  margin-bottom: 2em;
}
.module-table table, .module-table02 table {
  width: 100%;
  border-collapse: collapse;
}
.module-table th, .module-table02 th,
.module-table td,
.module-table02 td {
  border: 1px solid #ccc;
}
.module-table th, .module-table02 th {
  background: #012d6d;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  padding: 0.4em 1em;
}
.module-table td, .module-table02 td {
  padding: 0.8em 1em;
}
.module-table td a, .module-table02 td a {
  text-decoration: underline;
}
.module-table td a:hover, .module-table02 td a:hover {
  text-decoration: none;
}
.module-table td p, .module-table02 td p {
  line-height: 1.4;
}
.module-table td p:not(:last-child), .module-table02 td p:not(:last-child) {
  margin-bottom: 0.4em;
}
.module-table td span, .module-table02 td span {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
}
.module-table .links, .module-table02 .links {
  padding: 0;
}
.module-table .links a, .module-table02 .links a {
  display: block;
  padding: 0.8em 1em;
  text-decoration: none;
  position: relative;
}
.module-table .links a:hover, .module-table02 .links a:hover {
  background: #eaeaea;
}
.module-table .links a::after, .module-table02 .links a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  right: 2px;
  line-height: 0;
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-right: 5px solid #ccc;
  border-bottom: 5px solid #ccc;
  border-left: 5px solid transparent;
}
.module-table strong, .module-table02 strong {
  font-size: 1.8rem;
  font-weight: normal;
}
@media screen and (max-width: 1023px) {
  .module-table, .module-table02 {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 639px) {
  .module-table, .module-table02 {
    font-size: 0.9em;
    overflow: auto;
    white-space: nowrap;
  }
  .module-table::-webkit-scrollbar, .module-table02::-webkit-scrollbar {
    height: 5px;
  }
  .module-table::-webkit-scrollbar-track, .module-table02::-webkit-scrollbar-track {
    background: #eee;
  }
  .module-table::-webkit-scrollbar-thumb, .module-table02::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}
.module-table02 {
  white-space: inherit !important;
}
.module-table02 th {
  font-size: 1.2em;
  white-space: nowrap;
  width: 1px;
}

/*
    module-tabMenu
--------------------------*/
.module-tabMenu {
  margin: 1em 0 0;
}
.module-tabMenu:after {
  content: "";
  display: table;
  clear: both;
}
.module-tabMenu li {
  width: 49%;
  float: left;
  color: #012d6d;
}
.module-tabMenu li:not(:first-child) {
  margin: 0 0 0 2%;
}
.module-tabMenu a {
  display: block;
  background: #eaeaea;
  text-align: center;
  padding: 1em 0;
  border-top: 1px solid #eaeaea;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.module-tabMenu .active {
  background: #fff;
  border: 1px solid #012d6d;
  border-bottom: 1px solid #fff !important;
}
@media screen and (max-width: 1023px) {
  .module-tabMenu a {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 639px) {
  .module-tabMenu a {
    font-size: 1.1rem;
  }
}

/*
    module-tabMenu-tohoku
--------------------------*/
.module-tabMenu-tohoku li {
  width: 15%;
}

/*
    module-tabBox
--------------------------*/
.module-tabBox {
  border-top: 1px solid #012d6d;
  margin-top: -1px;
  padding: 2em 0;
}
.module-tabBox:not(:first-of-type) {
  display: none;
}
.module-tabBox .module-subTitle {
  color: #012d6d;
}

/*
    module-tabBox-tohoku
--------------------------*/
/*
    module-btn
--------------------------*/
.module-btn a {
  display: block;
  background: #012d6d;
  color: #fff;
  border-radius: 4px;
  padding: 0.8em 1.4em;
  position: relative;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.module-btn a:after {
  display: inline-block;
  content: "\f1c1";
  font-family: Fontawesome;
  position: absolute;
  right: 1.2em;
}
.module-btn a:hover {
  background: #0142a0;
}
.module-btn-pdf a {
  background: #FF7B7C;
}
.module-btn-pdf a:hover {
  background: #ff4849;
}
.module-btn-word a {
  background: #3079D1;
}
.module-btn-word a:after {
  display: inline-block;
  content: "\f1c2";
  font-family: Fontawesome;
}
.module-btn-word a:hover {
  background: #2561a9;
}

/*
    module-decimal
--------------------------*/
.module-decimal > li {
  list-style: decimal;
  margin: 0 0 0 1.8em;
}

/*
    module-upper_latin
--------------------------*/
.module-upper_latin > li {
  list-style: upper-latin;
  margin: 0 0 0 1.8em;
}

/*
    module-brackets
--------------------------*/
.module-brackets > li {
  counter-increment: cnt;
  list-style: none;
  text-indent: -2.95em;
  padding-left: 2.95em;
}
.module-brackets > li:before {
  content: "（" counter(cnt) "）";
}
.module-brackets > li li {
  text-indent: 0;
}

/*-----------------------------------

	$about

-----------------------------------*/
.about__text figure {
  float: right;
  width: 18%;
  margin: 0 0 1% 4%;
}
.about__text p {
  margin: 0 0 1em;
  text-align: justify;
}
.about__text p.right {
  text-align: right;
}
.about .maibo-table td {
  font-size: 1.8rem;
}
.about__note {
  text-align: right;
}
.about__rule dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 0.2em;
}
.about__rule dd {
  margin: 0 0 2em;
  position: relative;
}
.about__fusoku h5 {
  font-size: 1.8rem;
  margin: 0 0 0.2em;
}
.about__constitution dt br {
  display: none;
}
.about__constitution dd {
  padding: 0 0 0 5em;
}
.about__constitution p:first-child {
  position: absolute;
  left: 0;
}
.about__constitution blockquote {
  margin: 0 0 0 3.3em;
}

/*-----------------------------------

	$about - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .about__text figure {
    width: 38%;
    margin: 0 0 0 4%;
  }
  .about .maibo-table td {
    font-size: 1.4rem;
  }
  .about__rule dt {
    font-size: 1.4rem;
    line-height: 1.2;
    background: #eee;
    padding: 0.6em;
    text-align: center;
  }
  .about__fusoku h5 {
    font-size: 1.4rem;
  }
  .about__constitution dt br {
    display: block;
  }
  .about__constitution dd {
    padding: 0;
  }
  .about__constitution p:first-child {
    position: static;
  }
  .about__by-law dt {
    margin: 0 0 0.6em;
  }
}
/*-----------------------------------

	$councilor

-----------------------------------*/
.councilor__wrap {
  text-align: right;
  margin: 1em 0;
}
.councilor__wrap ul {
  display: inline-block;
}
.councilor__wrap ul:after {
  content: "";
  display: table;
  clear: both;
}
.councilor__wrap li {
  float: left;
  width: 16em;
  text-align: left;
}
.councilor__wrap li:first-child {
  margin: 0 1em 0 0;
}
.councilor-subTitle {
  font-size: 1.5rem;
  margin: 0 0 0.2em;
  font-weight: normal;
}
.councilor-text {
  margin-bottom: 1.5em;
  padding-left: 1em;
}
.councilor-commitTitle {
  margin-top: 4em;
}
.councilor__box {
  padding: 0 0 2em 2em;
}
.councilor .name_sp {
  display: none;
}
.councilor .list6-table td {
  width: 16.6%;
}

/*-----------------------------------

	$councilor - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .councilor__wrap ul {
    display: block;
  }
  .councilor__wrap li {
    width: 49%;
  }
  .councilor__wrap li:first-child {
    margin: 0 2% 0 0;
  }
  .councilor__box {
    padding: 0 0 2em 1em;
  }
  .councilor-subTitle {
    font-size: 1.5rem;
  }
  .councilor p {
    font-size: 1.5rem;
  }
  .councilor .name_sp {
    display: block;
  }
  .councilor__name {
    font-size: 1.5rem;
    white-space: nowrap;
  }
  .councilor__name td {
    float: left;
    width: 100%;
  }
}
/*-----------------------------------

	$facility

-----------------------------------*/
.facility .article__title, .facility .article__title02 {
  float: left;
  width: 50%;
}
.facility__btn {
  float: right;
  width: 50%;
  text-align: right;
}
.facility__btn a {
  border-radius: 4px;
  display: inline-block;
  padding: 0.4em 1em;
  background: #012d6d;
  color: #fff;
  font-size: 0.9em;
}
.facility__btn a::after {
  padding: 0 0 0 1em;
  display: inline-block;
  content: "\f105";
  font-family: Fontawesome;
  content: "\f0d7";
}
.facility .module-tabMenu {
  clear: both;
  margin: 5em 0 0;
}
.facility__person {
  margin: 0 0 2em;
}
.facility__person:after {
  content: "";
  display: table;
  clear: both;
}
.facility__person dt {
  width: 6em;
  float: left;
  font-weight: bold;
}
.facility em {
  color: red;
}
.facility__note {
  text-align: right;
  margin: 0.5em 0 0;
}
.facility__tab {
  border-bottom: 1px solid #ccc;
  margin-bottom: 4em;
  padding-bottom: 2em;
}

/*-----------------------------------

	$facility - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .facility .article__title, .facility .article__title02 {
    width: 30%;
  }
  .facility__btn {
    width: 70%;
  }
  .facility__person dt {
    width: 100%;
    float: none;
    font-size: 1.4rem;
    line-height: 1.2;
    background: #eee;
    padding: 0.6em;
    text-align: center;
  }
  .facility__person dd {
    margin: 0.6em 0;
    line-height: 1.4;
  }
}
/*-----------------------------------

	$meeting

-----------------------------------*/
.meeting td {
  word-break: break-all;
}
.meeting__name {
  text-align: right;
  margin: 1em 0;
}
.meeting__table {
  font-size: 1.3rem;
}
.meeting__table th {
  white-space: nowrap;
}
.meeting__table td:first-child, .meeting__table td:last-child {
  white-space: nowrap;
}
.meeting__table .links a {
  line-height: 4.1em;
}
.meeting__small {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  color: #666;
}
.meeting__program li {
  text-indent: -0.65em;
  padding-left: 1.2em;
  line-height: 1.8;
  text-align: justify;
}
.meeting__program li:not(:last-child) {
  margin: 0 0 0.2em;
}
.meeting__program li:before {
  display: inline-block;
  content: "\f00c";
  font-family: Fontawesome;
  margin: 0 0.2em 0 0;
  color: #6cadea;
}
.meeting__program li span {
  text-indent: 0;
}

/*-----------------------------------

	$meeting - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .meeting__table th {
    border: none;
    text-align: center;
  }
}
/*-----------------------------------

	$seminar

-----------------------------------*/
.seminar__end {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1em;
  margin: 0 0 1em;
  border: 1px solid red;
  text-align: center;
  color: red;
}
.seminar__table {
  font-size: 1.3rem;
}
.seminar__table th {
  white-space: nowrap;
}
.seminar__table td:first-child, .seminar__table td:last-child {
  white-space: nowrap;
}
.seminar__table .links a {
  line-height: 4em;
}
.seminar__small {
  display: inline-block;
  font-size: 0.9em;
  line-height: 1.4;
  color: #666;
}
.seminar__attention {
  color: red;
}
.seminar__entry:before {
  display: inline-block;
  content: "\f061";
  font-family: Fontawesome;
  margin: 0 0.4em 0 0;
  color: #ff8fa5;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.seminar__entry:hover:before {
  margin: 0 0.2em;
}
.seminar__contact dt {
  font-weight: bold;
  color: #6cadea;
  margin: 0;
}
.seminar__contact dt:before {
  display: inline-block;
  content: "\f0d7";
  font-family: Fontawesome;
  margin: 0 0.4em 0 0;
}
.seminar__contact dd:not(:last-child) {
  margin: 0 0 0.4em;
}
.seminar__title {
  font-size: 1.6rem;
  line-height: 1;
  margin: 4em 0 1em;
  padding: 0 0 0 0.4em;
  border-left: 4px solid #012d6d;
}
.seminar__title span {
  font-size: 0.8em;
  color: #666;
}
.seminar__program table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.3rem;
}
.seminar__program th,
.seminar__program td {
  border: 1px solid #ccc;
  padding: 0.8em 1em;
  line-height: 1.4;
}
.seminar__program th {
  background: #eee;
  white-space: nowrap;
}
.seminar__program [colspan="3"] {
  text-align: center;
}

/*-----------------------------------

	$seminar - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .seminar__table th,
  .seminar__table td {
    padding: 0.5em;
  }
  .seminar__table th {
    border: none;
    text-align: center;
  }
  .seminar__program {
    font-size: 0.9em;
    overflow: auto;
    white-space: nowrap;
  }
  .seminar__program::-webkit-scrollbar {
    height: 5px;
  }
  .seminar__program::-webkit-scrollbar-track {
    background: #eee;
  }
  .seminar__program::-webkit-scrollbar-thumb {
    background: #ccc;
  }
}
/*-----------------------------------

	$coi

-----------------------------------*/
.coi__section a {
  text-decoration: underline;
}
.coi__section a:hover {
  text-decoration: none;
}
.coi__section p + p {
  margin: 0.5em 0 0 0;
}
.coi__download {
  margin: 2em 0;
  border: 1px solid #ccc;
}
.coi__download ul {
  margin: 1.6em 2em;
}
.coi__download li:before {
  display: inline-block;
  content: "\f0da";
  font-family: Fontawesome;
  color: #012d6d;
  margin: 0 0.6em 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.coi__download li:hover:before {
  margin: 0 0.4em 0 0.2em;
}
.coi__subTitle {
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: #666;
  margin: -0.5em 0 0;
}
.coi__subTitle span {
  display: inline-block;
  background: #fff;
  padding: 0 0.6em;
}
.coi__subTitle br {
  display: none;
}
.coi__hosoku {
  margin: 1.6em 0;
  padding: 1.6em 2em;
  border: 1px solid #ccc;
}
.coi__hosoku-underline {
  text-decoration: underline;
}
.coi__hosoku ol {
  margin-top: 1.6em;
}
.coi__hosoku ol > li {
  position: relative;
  padding-left: 2rem;
  counter-increment: num;
}
.coi__hosoku ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  content: counter(num) ") ";
}
.coi__hosoku ol > li ul {
  margin-top: 0.5em;
}
.coi__hosoku ol > li ul li {
  position: relative;
  padding-left: 2rem;
}
.coi__hosoku ol > li ul li::before {
  position: absolute;
  display: block;
  top: 0.6em;
  left: 0.2em;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #012d6d;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.coi__hosoku ol li + li {
  margin-top: 0.5em;
}
.coi__signature {
  margin: 1.6em 0 0;
  text-align: right;
}
.coi__supple {
  margin: 1.6em 0 0;
}
.coi__supple li {
  position: relative;
  padding-left: 2rem;
}
.coi__supple li::before {
  position: absolute;
  display: block;
  top: 0.6em;
  left: 0.2em;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #012d6d;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.coi__supple li + li {
  margin-top: 0.5em;
}

/*-----------------------------------

	$coi - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .coi__subTitle br {
    display: block;
  }
}
/*-----------------------------------

	$aword

-----------------------------------*/
.aword__section a {
  text-decoration: underline;
}
.aword__section a:hover {
  text-decoration: none;
}
.aword__section p + p {
  margin: 0.5em 0 0 0;
}
.aword__download {
  margin: 2em 0;
  border: 1px solid #ccc;
}
.aword__download ul {
  margin: 1.6em 2em;
}
.aword__download li:before {
  display: inline-block;
  content: "\f0da";
  font-family: Fontawesome;
  color: #012d6d;
  margin: 0 0.6em 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.aword__download li:hover:before {
  margin: 0 0.4em 0 0.2em;
}
.aword__subTitle {
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: #666;
  margin: -0.5em 0 0;
}
.aword__subTitle span {
  display: inline-block;
  background: #fff;
  padding: 0 0.6em;
}
.aword__subTitle br {
  display: none;
}
.aword__hosoku {
  margin: 1.6em 0;
  padding: 1.6em 2em;
  border: 1px solid #ccc;
}
.aword__hosoku-underline {
  text-decoration: underline;
}
.aword__hosoku ol {
  margin-top: 1.6em;
}
.aword__hosoku ol > li {
  position: relative;
  padding-left: 2rem;
  counter-increment: num;
}
.aword__hosoku ol > li::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  content: counter(num) ") ";
}
.aword__hosoku ol > li ul {
  margin-top: 0.5em;
}
.aword__hosoku ol > li ul li {
  position: relative;
  padding-left: 2rem;
}
.aword__hosoku ol > li ul li::before {
  position: absolute;
  display: block;
  top: 0.6em;
  left: 0.2em;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #012d6d;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aword__hosoku ol li + li {
  margin-top: 0.5em;
}
.aword__signature {
  margin: 1.6em 0 0;
  text-align: right;
}
.aword__supple {
  margin: 1.6em 0 0;
}
.aword__supple li {
  position: relative;
  padding-left: 2rem;
}
.aword__supple li::before {
  position: absolute;
  display: block;
  top: 0.6em;
  left: 0.2em;
  width: 5px;
  height: 5px;
  content: "";
  background-color: #012d6d;
  border-radius: 100%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}
.aword__supple li + li {
  margin-top: 0.5em;
}
.aword__info-attention {
  font-weight: bold;
  font-style: inherit;
}

/*-----------------------------------

	$aword - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .aword__subTitle br {
    display: block;
  }
}
/*-----------------------------------

	$subsidy

-----------------------------------*/
.subsidy__section a {
  text-decoration: underline;
}
.subsidy__section a:hover {
  text-decoration: none;
}
.subsidy__section p + p {
  margin: 0.5em 0 0 0;
}
.subsidy__download {
  margin: 2em 0;
  border: 1px solid #ccc;
}
.subsidy__download ul {
  margin: 1.6em 2em;
}
.subsidy__download li:before {
  display: inline-block;
  content: "\f0da";
  font-family: Fontawesome;
  color: #012d6d;
  margin: 0 0.6em 0 0;
  transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
}
.subsidy__download li:hover:before {
  margin: 0 0.4em 0 0.2em;
}
.subsidy__subTitle {
  font-size: 1.6rem;
  line-height: 1;
  text-align: center;
  color: #666;
  margin: -0.5em 0 0;
}
.subsidy__subTitle span {
  display: inline-block;
  background: #fff;
  padding: 0 0.6em;
}
.subsidy__subTitle br {
  display: none;
}
.subsidy__info-attention {
  font-weight: bold;
  font-style: inherit;
}

/*-----------------------------------

	$subsidy - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .subsidy__subTitle br {
    display: block;
  }
}
/*-----------------------------------

	$policy

-----------------------------------*/
.policy__rule dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 0.2em;
}
.policy__rule dt span {
  width: 2em;
  display: inline-block;
}
.policy__rule dd {
  margin: 0 0 2em;
  position: relative;
}
.policy__rule p {
  margin: 0 0 1em;
  text-align: justify;
}

/*-----------------------------------

	$policy - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .policy__rule dt {
    font-size: 1.4rem;
    line-height: 1.2;
    background: #eee;
    padding: 0.6em;
    text-align: center;
    margin-bottom: 0.5em;
  }
  .policy__rule dt span {
    display: inline;
  }
}
/*-----------------------------------

	$requirements

-----------------------------------*/
.requirements__arrat {
  border: 3px solid #012d6d;
  padding: 1.6em 2em;
  border-radius: 10px;
  text-align: center;
}
.requirements__arrat h3 {
  margin: 0 0 1em;
  font-size: 2rem;
}
.requirements__arrat h3 span {
  color: #dd0000;
}
.requirements__arrat p {
  font-weight: bold;
}
.requirements__arrat p span {
  text-decoration: underline;
}
.requirements__arrat p strong {
  color: #012d6d;
}
.requirements__arrat .mail {
  color: #012d6d;
  display: inline-block;
  margin: 0 0 0 1em;
  font-size: 1.8rem;
}
.requirements__arrat .mail .fa {
  padding: 0 0.2em 0 0;
}
.requirements__arrat .mail a {
  color: #012d6d;
}
.requirements__arrat .mail a:hover {
  text-decoration: none;
}
.requirements__rule dt {
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 0 0.2em;
}
.requirements__rule dd {
  margin: 0 0 2em;
  position: relative;
}
.requirements__constitution dt {
  font-weight: normal;
  float: left;
  padding: 0 0 0 2em;
}
.requirements__constitution dd {
  padding: 0 0 0 4em;
}

/*-----------------------------------

	$requirements - tablet

-----------------------------------*/
/*-----------------------------------

	$requirements - mobile

-----------------------------------*/
@media screen and (max-width: 639px) {
  .requirements__arrat {
    padding: 1.6em 1em;
  }
  .requirements__arrat .mail {
    font-size: 1.6rem;
  }
  .requirements__rule dt {
    font-size: 1.4rem;
    line-height: 1.2;
    background: #eee;
    padding: 0.6em;
    text-align: center;
  }
  .requirements__constitution dt {
    background: none !important;
  }
}
/*# sourceMappingURL=style.css.map */