@charset "UTF-8";
/* ==================================================
[Style]
	 1. Reset
	 2. Base
	 3. Layout
	 4. Module
	 5. Theme
	 6. Header
	 7. Footer
	 8. Index
	 9. News
	10. Contact
================================================== */
/* --------------------------------------------------
	 1. Reset
-------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* --------------------------------------------------
	 2. Base
-------------------------------------------------- */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #4d3f48;
  font-family: 'Noto Sans JP', sans-serif;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  background-color: transparent;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
}

a {
  outline: none;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a:link, a:visited {
  color: #4d3f48;
  text-decoration: none;
}

a:hover, a:active {
  color: #4d3f48;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

em, dl, i, address {
  font-style: normal;
}

sup, sub {
  font-size: 0.75rem;
  line-height: 1.35;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 1rem;
  font-family: inherit;
}

table th, table td {
  text-align: left;
  vertical-align: middle;
  padding: 0.9em 1.8em;
}

table th {
  font-weight: normal;
}

table td {
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

select,
textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
  margin: 5px;
  padding: 6px;
  font-size: 16px;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
}

textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input[type="text"].align_left {
  text-align: left;
}

input[type="text"].align_center {
  text-align: center;
}

input[type="text"].align_right {
  text-align: right;
}

input[type="radio"], input[type="checkbox"] {
  margin: 3px 0 5px 5px;
  outline: none;
  cursor: pointer;
}

input[type="radio"] + label,
input[type="checkbox"] + label {
  padding: 0 8px 0 2px;
  cursor: pointer;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #e2dce0;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #e2dce0;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #e2dce0;
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #e2dce0;
}

p {
  min-height: 1.8em;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

iframe {
  max-width: 100%;
}

@media all and (min-width: 940px), print {
  html {
    font-size: 16px;
  }
}

@media only screen and (max-width: 939px) {
  html {
    font-size: 14px;
  }
}

/* --------------------------------------------------
	 3. Layout
-------------------------------------------------- */
#header,
#content,
#footer {
  position: relative;
  clear: both;
}

#header .inner,
#content .inner,
#footer .inner {
  position: relative;
  margin: 0 auto;
}

#primary .page_title {
  overflow: hidden;
  position: relative;
  background: #4ec1f0;
  background-size: cover;
}

#primary .page_title h2 {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

#primary .page_title h2 span {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  background: transparent url(images/img_title.png) no-repeat center center;
  background-size: contain;
}

#breadline {
  padding: 8px 0;
  font-size: 1.125rem;
  background-color: #e6f8ff;
}

#breadline li {
  display: inline-block;
  vertical-align: middle;
}

#breadline li .divider {
  padding: 0 15px;
  display: inline-block;
  color: #444444;
  font-weight: bold;
}

#breadline li a {
  color: #4d3f48;
  text-decoration: none;
  font-weight: 500;
}

#breadline li.home a {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 36px;
  height: 26px;
  line-height: 1;
  margin-bottom: -3px;
  display: inline-block;
  text-decoration: none;
  background: transparent url(image/icon_home.png) no-repeat center center;
  background-size: contain;
}

#pagetop {
  position: fixed;
  right: 20px;
  bottom: 50px;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
  z-index: 5;
}

#pagetop.fixed {
  pointer-events: auto;
  opacity: 1;
}

#pagetop a {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 40px;
  height: 40px;
  background: #fff000 url(image/btn_pagetop.png) no-repeat center center;
  background-size: contain;
  border-radius: 50%;
}

@media all and (min-width: 940px), print {
  #header .inner,
  #content .inner,
  #footer .inner {
    padding-left: 20px;
    padding-right: 20px;
    max-width: 1140px;
  }
  #primary .page_title h2 {
    height: 350px;
  }
  #primary .page_title h2 span {
    width: 350px;
    height: 220px;
  }
  #pagetop {
    bottom: 140px;
  }
  #pagetop a {
    width: 80px;
    height: 80px;
  }
  #pagetop a::before, #pagetop a::after {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  #pagetop a:hover::before {
    opacity: 0;
  }
  #pagetop a:hover::after {
    opacity: 1;
  }
}

@media only screen and (max-width: 939px) {
  #header .inner,
  #content .inner,
  #footer .inner {
    padding-left: 10px;
    padding-right: 10px;
    min-width: 300px;
  }
  #primary .page_title h2 {
    height: 170px;
  }
  #primary .page_title h2 span {
    width: 240px;
    height: 80px;
  }
  #breadline {
    font-size: 0.875rem;
    padding: 1px 0;
  }
  #breadline li .divider {
    padding: 0 8px;
    width: 10px;
    height: 10px;
  }
  #breadline li.home a {
    width: 20px;
    height: 16px;
  }
}

/* --------------------------------------------------
	 4. Module
-------------------------------------------------- */
.gothic {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.mincho {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.font_big {
  font-size: 1.25rem !important;
}

.font_large {
  font-size: 1.125rem !important;
}

.font_normal {
  font-size: 1rem !important;
}

.font_small {
  font-size: 0.875rem !important;
}

.font_little {
  font-size: 0.75rem !important;
}

.font_weight_normal {
  font-weight: normal !important;
}

.font_weight_bold {
  font-weight: bold !important;
}

.mt_0 {
  margin-top: 0rem !important;
}

.mr_0 {
  margin-right: 0rem !important;
}

.mb_0 {
  margin-bottom: 0rem !important;
}

.ml_0 {
  margin-left: 0rem !important;
}

.m_0 {
  margin: 0rem !important;
}

.mx_0 {
  margin-left: 0rem !important;
  margin-right: 0rem !important;
}

.my_0 {
  margin-top: 0rem !important;
  margin-bottom: 0rem !important;
}

.pt_0 {
  padding-top: 0rem !important;
}

.pr_0 {
  padding-right: 0rem !important;
}

.pb_0 {
  padding-bottom: 0rem !important;
}

.pl_0 {
  padding-left: 0rem !important;
}

.p_0 {
  padding: 0rem !important;
}

.px_0 {
  padding-left: 0rem !important;
  padding-right: 0rem !important;
}

.py_0 {
  padding-top: 0rem !important;
  padding-bottom: 0rem !important;
}

.mt_1 {
  margin-top: 1rem !important;
}

.mr_1 {
  margin-right: 1rem !important;
}

.mb_1 {
  margin-bottom: 1rem !important;
}

.ml_1 {
  margin-left: 1rem !important;
}

.m_1 {
  margin: 1rem !important;
}

.mx_1 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my_1 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.pt_1 {
  padding-top: 1rem !important;
}

.pr_1 {
  padding-right: 1rem !important;
}

.pb_1 {
  padding-bottom: 1rem !important;
}

.pl_1 {
  padding-left: 1rem !important;
}

.p_1 {
  padding: 1rem !important;
}

.px_1 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py_1 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.mt_2 {
  margin-top: 2rem !important;
}

.mr_2 {
  margin-right: 2rem !important;
}

.mb_2 {
  margin-bottom: 2rem !important;
}

.ml_2 {
  margin-left: 2rem !important;
}

.m_2 {
  margin: 2rem !important;
}

.mx_2 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my_2 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.pt_2 {
  padding-top: 2rem !important;
}

.pr_2 {
  padding-right: 2rem !important;
}

.pb_2 {
  padding-bottom: 2rem !important;
}

.pl_2 {
  padding-left: 2rem !important;
}

.p_2 {
  padding: 2rem !important;
}

.px_2 {
  padding-left: 2rem !important;
  padding-right: 2rem !important;
}

.py_2 {
  padding-top: 2rem !important;
  padding-bottom: 2rem !important;
}

.mt_3 {
  margin-top: 3rem !important;
}

.mr_3 {
  margin-right: 3rem !important;
}

.mb_3 {
  margin-bottom: 3rem !important;
}

.ml_3 {
  margin-left: 3rem !important;
}

.m_3 {
  margin: 3rem !important;
}

.mx_3 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my_3 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.pt_3 {
  padding-top: 3rem !important;
}

.pr_3 {
  padding-right: 3rem !important;
}

.pb_3 {
  padding-bottom: 3rem !important;
}

.pl_3 {
  padding-left: 3rem !important;
}

.p_3 {
  padding: 3rem !important;
}

.px_3 {
  padding-left: 3rem !important;
  padding-right: 3rem !important;
}

.py_3 {
  padding-top: 3rem !important;
  padding-bottom: 3rem !important;
}

.mt_4 {
  margin-top: 4rem !important;
}

.mr_4 {
  margin-right: 4rem !important;
}

.mb_4 {
  margin-bottom: 4rem !important;
}

.ml_4 {
  margin-left: 4rem !important;
}

.m_4 {
  margin: 4rem !important;
}

.mx_4 {
  margin-left: 4rem !important;
  margin-right: 4rem !important;
}

.my_4 {
  margin-top: 4rem !important;
  margin-bottom: 4rem !important;
}

.pt_4 {
  padding-top: 4rem !important;
}

.pr_4 {
  padding-right: 4rem !important;
}

.pb_4 {
  padding-bottom: 4rem !important;
}

.pl_4 {
  padding-left: 4rem !important;
}

.p_4 {
  padding: 4rem !important;
}

.px_4 {
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.py_4 {
  padding-top: 4rem !important;
  padding-bottom: 4rem !important;
}

.mt_5 {
  margin-top: 5rem !important;
}

.mr_5 {
  margin-right: 5rem !important;
}

.mb_5 {
  margin-bottom: 5rem !important;
}

.ml_5 {
  margin-left: 5rem !important;
}

.m_5 {
  margin: 5rem !important;
}

.mx_5 {
  margin-left: 5rem !important;
  margin-right: 5rem !important;
}

.my_5 {
  margin-top: 5rem !important;
  margin-bottom: 5rem !important;
}

.pt_5 {
  padding-top: 5rem !important;
}

.pr_5 {
  padding-right: 5rem !important;
}

.pb_5 {
  padding-bottom: 5rem !important;
}

.pl_5 {
  padding-left: 5rem !important;
}

.p_5 {
  padding: 5rem !important;
}

.px_5 {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}

.py_5 {
  padding-top: 5rem !important;
  padding-bottom: 5rem !important;
}

.mt_6 {
  margin-top: 6rem !important;
}

.mr_6 {
  margin-right: 6rem !important;
}

.mb_6 {
  margin-bottom: 6rem !important;
}

.ml_6 {
  margin-left: 6rem !important;
}

.m_6 {
  margin: 6rem !important;
}

.mx_6 {
  margin-left: 6rem !important;
  margin-right: 6rem !important;
}

.my_6 {
  margin-top: 6rem !important;
  margin-bottom: 6rem !important;
}

.pt_6 {
  padding-top: 6rem !important;
}

.pr_6 {
  padding-right: 6rem !important;
}

.pb_6 {
  padding-bottom: 6rem !important;
}

.pl_6 {
  padding-left: 6rem !important;
}

.p_6 {
  padding: 6rem !important;
}

.px_6 {
  padding-left: 6rem !important;
  padding-right: 6rem !important;
}

.py_6 {
  padding-top: 6rem !important;
  padding-bottom: 6rem !important;
}

.mt_7 {
  margin-top: 7rem !important;
}

.mr_7 {
  margin-right: 7rem !important;
}

.mb_7 {
  margin-bottom: 7rem !important;
}

.ml_7 {
  margin-left: 7rem !important;
}

.m_7 {
  margin: 7rem !important;
}

.mx_7 {
  margin-left: 7rem !important;
  margin-right: 7rem !important;
}

.my_7 {
  margin-top: 7rem !important;
  margin-bottom: 7rem !important;
}

.pt_7 {
  padding-top: 7rem !important;
}

.pr_7 {
  padding-right: 7rem !important;
}

.pb_7 {
  padding-bottom: 7rem !important;
}

.pl_7 {
  padding-left: 7rem !important;
}

.p_7 {
  padding: 7rem !important;
}

.px_7 {
  padding-left: 7rem !important;
  padding-right: 7rem !important;
}

.py_7 {
  padding-top: 7rem !important;
  padding-bottom: 7rem !important;
}

.mt_8 {
  margin-top: 8rem !important;
}

.mr_8 {
  margin-right: 8rem !important;
}

.mb_8 {
  margin-bottom: 8rem !important;
}

.ml_8 {
  margin-left: 8rem !important;
}

.m_8 {
  margin: 8rem !important;
}

.mx_8 {
  margin-left: 8rem !important;
  margin-right: 8rem !important;
}

.my_8 {
  margin-top: 8rem !important;
  margin-bottom: 8rem !important;
}

.pt_8 {
  padding-top: 8rem !important;
}

.pr_8 {
  padding-right: 8rem !important;
}

.pb_8 {
  padding-bottom: 8rem !important;
}

.pl_8 {
  padding-left: 8rem !important;
}

.p_8 {
  padding: 8rem !important;
}

.px_8 {
  padding-left: 8rem !important;
  padding-right: 8rem !important;
}

.py_8 {
  padding-top: 8rem !important;
  padding-bottom: 8rem !important;
}

.mt_9 {
  margin-top: 9rem !important;
}

.mr_9 {
  margin-right: 9rem !important;
}

.mb_9 {
  margin-bottom: 9rem !important;
}

.ml_9 {
  margin-left: 9rem !important;
}

.m_9 {
  margin: 9rem !important;
}

.mx_9 {
  margin-left: 9rem !important;
  margin-right: 9rem !important;
}

.my_9 {
  margin-top: 9rem !important;
  margin-bottom: 9rem !important;
}

.pt_9 {
  padding-top: 9rem !important;
}

.pr_9 {
  padding-right: 9rem !important;
}

.pb_9 {
  padding-bottom: 9rem !important;
}

.pl_9 {
  padding-left: 9rem !important;
}

.p_9 {
  padding: 9rem !important;
}

.px_9 {
  padding-left: 9rem !important;
  padding-right: 9rem !important;
}

.py_9 {
  padding-top: 9rem !important;
  padding-bottom: 9rem !important;
}

.mt_10 {
  margin-top: 10rem !important;
}

.mr_10 {
  margin-right: 10rem !important;
}

.mb_10 {
  margin-bottom: 10rem !important;
}

.ml_10 {
  margin-left: 10rem !important;
}

.m_10 {
  margin: 10rem !important;
}

.mx_10 {
  margin-left: 10rem !important;
  margin-right: 10rem !important;
}

.my_10 {
  margin-top: 10rem !important;
  margin-bottom: 10rem !important;
}

.pt_10 {
  padding-top: 10rem !important;
}

.pr_10 {
  padding-right: 10rem !important;
}

.pb_10 {
  padding-bottom: 10rem !important;
}

.pl_10 {
  padding-left: 10rem !important;
}

.p_10 {
  padding: 10rem !important;
}

.px_10 {
  padding-left: 10rem !important;
  padding-right: 10rem !important;
}

.py_10 {
  padding-top: 10rem !important;
  padding-bottom: 10rem !important;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.float_left {
  float: left;
}

.float_right {
  float: right;
}

.clear_both {
  clear: both;
}

.text_center {
  text-align: center;
}

.text_left {
  text-align: left;
}

.text_right {
  text-align: right;
}

table {
  width: 100%;
}

table.basic_table {
  margin: 2em auto;
  font-size: 0.9375rem;
  background-color: #fff;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

table.basic_table tr:first-child th {
  border-top: 1px solid #333333;
}

table.basic_table.text_center th,
table.basic_table.text_center td {
  text-align: center;
}

table.basic_table.fixed {
  table-layout: fixed;
}

table.basic_table th,
table.basic_table td {
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
}

table.basic_table th:empty,
table.basic_table td:empty {
  height: 2.79em;
}

table.basic_table th {
  color: #4d3f48;
  white-space: nowrap;
  border-top: 1px solid #fff;
  background-color: #333333;
}

table.basic_table thead {
  line-height: 1.4;
}

div.focus_text, div.attention_text {
  margin: 1em auto;
  padding: 2em 2.5em;
}

div.focus_text .title, div.attention_text .title {
  font-size: 1.125rem;
}

div.focus_text .title_sub, div.attention_text .title_sub {
  font-size: 1rem;
  color: #000;
}

div.focus_text {
  background-color: #eeeeee;
}

div.focus_text .title {
  color: #000;
}

div.attention_text {
  color: #fff;
  background-color: #eb6d73;
}

div.attention_text .title {
  color: #fff;
}

ul.basic_ul {
  margin-left: 1.5em;
  padding: .5em 0;
}

ul.basic_ul > li {
  position: relative;
  padding: .2em 0;
}

ul.basic_ul > li::before {
  position: absolute;
  left: -1em;
  top: .85em;
  display: block;
  content: "";
  width: .25em;
  height: .25em;
  background-color: #eb6d73;
  border: 2px solid #eb6d73;
  border-radius: 50%;
}

ul.basic_ul > li > ul,
ul.basic_ul > li > ol {
  margin-left: 1.25em;
}

ul.basic_ul > li > ul > li::before {
  background-color: transparent;
}

ol.basic_ol {
  margin-left: 1.5em;
  padding: 1em 0;
  list-style: decimal;
}

ol.basic_ol > li {
  padding: .5em 0 .5em .25em;
}

ol.basic_ol > li > ul,
ol.basic_ol > li > ol {
  margin-left: 1.25em;
}

dl.basic_dl > dt {
  font-weight: bold;
}

dl.basic_dl > dd {
  margin-left: 1em;
}

dl.basic_dl > dd + dt {
  padding-top: 1em;
}

pre {
  white-space: normal;
}

.text_indent {
  margin-left: 1em;
  text-indent: -1em;
}

.pagination {
  padding-top: 3em;
}

.pagination ul {
  text-align: center;
  font-size: 0;
}

.pagination li {
  display: inline-block;
  vertical-align: middle;
  font-size: 1.5625rem;
}

.pagination li > a,
.pagination li > span {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 60px;
  height: 60px;
  margin: 13px;
  padding: .4em .5em;
  text-align: center;
  line-height: 1.4;
  border-radius: 50%;
  border: 1px solid #444444;
}

.pagination li > a {
  color: #444444;
  text-decoration: none;
  background-color: #fff;
}

.pagination li > span {
  color: #fff;
  font-weight: bold;
  background-color: #0064b0;
}

.pagination li.next a, .pagination li.prev a {
  width: auto;
  padding: .4em 1em;
  border-radius: 60px;
}

.pagination li.next a {
  padding-right: 2em;
}

.pagination li.next a::after {
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  content: "";
  width: .5em;
  height: .5em;
  margin-top: -.25em;
  border-top: 1px solid #444444;
  border-right: 1px solid #444444;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.pagination li.prev a {
  padding-left: 2em;
}

.pagination li.prev a::before {
  position: absolute;
  top: 50%;
  left: 1em;
  display: block;
  content: "";
  width: .5em;
  height: .5em;
  margin-top: -.25em;
  border-top: 1px solid #444444;
  border-left: 1px solid #444444;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.more {
  display: block;
  margin: 3em auto;
  text-align: center;
}

.movie {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.movie iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.basic_btn {
  display: inline-block;
  padding: 15px 40px;
  border-radius: 10px;
  color: #fff !important;
  background-color: #eb6d73;
  -webkit-box-shadow: 5px 8px 0px 0px rgba(71, 71, 71, 0.2);
  box-shadow: 5px 8px 0px 0px rgba(71, 71, 71, 0.2);
  text-decoration: none;
}

.basic_btn.--blue {
  background-color: #0064b0;
}

.btn01 {
  text-align: center;
}

.btn01 a,
.btn01 input[type="submit"] {
  color: #444444 !important;
  font-size: 1.5625rem;
  padding: .22em 1em;
  line-height: 1.5;
  min-width: 175px;
  text-align: center;
  border-radius: 2em;
  text-decoration: none !important;
  display: inline-block;
  border: 1px solid #444444;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  cursor: pointer;
}

.btn01 a:hover,
.btn01 input[type="submit"]:hover {
  color: #fff !important;
  text-decoration: none;
  opacity: 0.7;
  background-color: #444444;
}

@media all and (min-width: 940px), print {
  .only_sp {
    display: none;
  }
  table.basic_table th:empty,
  table.basic_table td:empty {
    height: 3.744em;
  }
  div.focus_text, div.attention_text {
    padding: 1.5em 4em;
  }
  .pagination a {
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  .pagination a:hover {
    color: #fff;
    background-color: #0064b0;
  }
  .pagination li.next a:hover::before, .pagination li.next a:hover::after, .pagination li.prev a:hover::before, .pagination li.prev a:hover::after {
    border-color: #fff;
  }
  .basic_btn {
    font-size: 2.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .basic_btn:hover {
    opacity: 0.7;
    text-decoration: none;
  }
  .basic_btn.--blue {
    font-size: 1.75rem;
  }
}

@media only screen and (max-width: 939px) {
  .only_pc {
    display: none;
  }
  table.vertical > thead > tr > th,
  table.vertical > thead > tr > td,
  table.vertical > tbody > tr > th,
  table.vertical > tbody > tr > td {
    display: block;
    white-space: normal !important;
    width: 100%;
  }
  .pagination {
    margin-left: 0px;
    margin-right: 0px;
  }
  .pagination ul {
    text-align: center;
    font-size: 0;
  }
  .pagination li {
    font-size: 0.9375rem;
  }
  .pagination li > a,
  .pagination li > span {
    width: 30px;
    height: 30px;
    margin: 7px;
    padding: .4em .5em;
  }
  .more {
    margin: 2em auto;
  }
  .basic_btn {
    font-size: 1.5rem;
  }
  .basic_btn.--blue {
    font-size: 1.25rem;
  }
  .btn01 a,
  .btn01 input[type="submit"] {
    font-size: 1.125rem;
    min-width: 80px;
  }
}

@media screen and (min-width: 740px) {
  .visible_sp {
    display: none !important;
  }
}

@media screen and (max-width: 739px) {
  .visible_pc {
    display: none !important;
  }
}

/* --------------------------------------------------
	 5. Theme
-------------------------------------------------- */
a[href^="tel:"] {
  color: #4d3f48;
}

a.no_link {
  pointer-events: none;
}

section {
  padding: 2em 0;
}

section h2,
section h3,
section h4,
section h5,
section h6 {
  margin-bottom: .5em;
  padding-top: 2em;
  color: #0064b0;
  text-align: center;
}

section h2:first-child,
section h3:first-child,
section h4:first-child,
section h5:first-child,
section h6:first-child {
  padding-top: 0;
}

section h2 + h3,
section h3 + h4,
section h4 + h5,
section h5 + h6 {
  padding-top: 0;
}

section h2 {
  font-size: 2.625rem;
  line-height: 1.5;
  position: relative;
  margin-bottom: .6em;
  padding-bottom: 10px;
  font-weight: bold;
}

section h2::after {
  left: 50%;
  bottom: 0;
  content: "";
  width: 100%;
  height: 1px;
  max-width: 150px;
  position: absolute;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background: #0064b0;
}

section h3 {
  font-size: 1.375rem;
  text-align: left;
  margin-bottom: 1em;
  border-bottom: 1px solid #0064b0;
}

section h4 {
  font-size: 1.125rem;
}

section h5 {
  font-size: 1.0625rem;
}

section h6 {
  font-size: 1rem;
}

select,
textarea,
input[type="text"],
input[type="date"],
input[type="email"],
input[type="password"] {
  padding: 10px 20px;
  width: 100%;
  border: 1px solid #333333;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

select::-ms-expand {
  display: none;
}

div.focus_text, div.attention_text {
  font-weight: bold;
}

div.focus_text {
  padding: 1.5em 2em;
}

div.attention_text {
  padding: 1em;
}

article .app_focus {
  font-size: 0.875rem;
}

article .app_focus p {
  margin-top: 0.5em;
}

article .app_focus span {
  display: inline-block;
  background: #231815;
  color: #fff;
  padding: 0 1em;
}

article .app_flow {
  margin-bottom: 80px;
}

article .app_flow li:not(:last-child)::after {
  position: relative;
  content: "";
  width: 0;
  height: 0;
  display: block;
  margin: 15px auto;
  border-style: solid;
  border-width: 25px 15px 0 15px;
  border-color: #e6f8ff transparent transparent transparent;
}

article .app_flow dl {
  width: 100%;
  padding: 12px 30px;
  display: table;
  background-color: #e6f8ff;
}

article .app_flow dl dt,
article .app_flow dl dd {
  display: table-cell;
  vertical-align: middle;
}

article .app_flow dl dt {
  color: #fff;
  font-size: 3.75rem;
  line-height: 1;
  font-weight: bold;
  min-width: 70px;
}

article .app_flow dl dd {
  color: #444444;
  font-size: 1.25rem;
}

.contact_box {
  text-align: center;
  margin: 3em auto;
}

.contact_box .title {
  max-width: 400px;
  font-size: 1.75rem;
  font-weight: bold;
  margin: 0 auto .5em;
  position: relative;
  display: block;
  padding: 0 45px;
}

.contact_box .title::before, .contact_box .title::after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 44px;
  height: 2px;
  background-color: black;
}

.contact_box .title::before {
  left: 0;
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg);
}

.contact_box .title::after {
  right: 0;
  -webkit-transform: rotate(-60deg);
  transform: rotate(-60deg);
}

.contact_box .title.long {
  max-width: 520px;
}

.contact_box p {
  font-size: 1.5rem;
  margin-top: 2em;
}

.contact_box .no_link {
  pointer-events: none;
  background-color: #aaa;
}

.list_about02 li {
  margin-bottom: 2.5%;
}

.list_about02 li:not(:last-child) {
  margin-right: 2%;
}

.list_about02 li a {
  text-decoration: none;
  display: block;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.list_about02 li a:hover {
  opacity: 0.7;
}

.list_about02 li a .image {
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  max-width: 100%;
}

.list_about02 li a .image::before {
  content: "";
  display: block;
  padding-top: 100%;
}

.list_about02 li a .txt {
  margin-top: 0.25em;
  line-height: 1.5;
  font-size: 1.125rem;
  color: #000;
  text-align: center;
  font-weight: bold;
}

.list_about02 li a .txt em {
  font-size: 0.9375rem;
  font-weight: normal;
}

.p-accordion__button {
  position: relative;
  display: block;
  width: 100%;
  padding: 12px 20px 12px 60px;
  border: none;
  color: #4d3f48;
  font-size: 1.3125rem;
  font-weight: bold;
  line-height: 1.6;
  -webkit-align-content: center;
  -ms-flex-line-pack: center;
  align-content: center;
  text-align: left;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: #e6f8ff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-accordion__button.is-open .p-accordion__button-icon::after {
  -webkit-transform: translateY(-50%) rotate(0deg);
  transform: translateY(-50%) rotate(0deg);
}

.p-accordion__button::before {
  content: "Q.";
  position: absolute;
  left: 30px;
  top: 12px;
  font-weight: bold;
  font-size: 1.3125rem;
}

.p-accordion__button-icon {
  position: absolute;
  top: 0;
  right: 30px;
  bottom: 0;
  width: 20px;
  height: 20px;
  margin: auto;
}

.p-accordion__button-icon::before, .p-accordion__button-icon::after {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  width: 20px;
  height: 2px;
  margin: auto;
  content: '';
  background-color: #4d3f48;
}

.p-accordion__button-icon::before {
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.p-accordion__button-icon::after {
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-transform: translateY(-50%) rotate(-90deg);
  transform: translateY(-50%) rotate(-90deg);
}

.p-accordion__body {
  position: relative;
  padding: 20px 60px 20px 60px;
  font-size: 1.3125rem;
}

.p-accordion__body::before {
  content: "A.";
  position: absolute;
  left: 30px;
  top: 20px;
  font-weight: bold;
  font-size: 1.3125rem;
}

.p-accordion + .p-accordion {
  margin-top: 16px;
}

@media all and (min-width: 940px), print {
  section {
    padding: 4em 0;
  }
  section h2 {
    font-size: 3.125rem;
  }
  section h3 {
    font-size: 1.875rem;
  }
  section h4 {
    font-size: 1.5rem;
  }
  section h5 {
    font-size: 1.25rem;
  }
  section h6 {
    font-size: 1.125rem;
  }
  a[href^="tel:"] {
    display: inline-block;
    text-decoration: none;
    pointer-events: none;
  }
  .list_about02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0 auto;
    max-width: 1010px;
  }
  .list_about02 li {
    width: calc(94% / 4);
  }
  .list_about02 li:not(:last-child) {
    margin-right: 2%;
  }
}

@media only screen and (min-width: 940px) and (max-width: 1159px) {
  .list_about02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list_about02 li {
    width: 48%;
    margin-bottom: 2em;
  }
  .list_about02 li:not(:last-child) {
    margin-right: 0;
  }
  .list_about02 li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}

@media only screen and (max-width: 939px) {
  article .app_focus span {
    text-align: center;
    display: block;
    margin: 2em auto 0.5em;
    max-width: 150px;
  }
  article .app_flow {
    margin-bottom: 40px;
  }
  article .app_flow li:not(:last-child)::after {
    margin: 10px auto;
    border-width: 15px 10px 0 10px;
  }
  article .app_flow dl {
    padding: 12px 20px;
  }
  article .app_flow dl dt {
    font-size: 3.25rem;
    min-width: 60px;
  }
  article .app_flow dl dd {
    font-size: 0.875rem;
  }
  article .contact_box .title {
    display: block;
    max-width: 240px;
    font-size: 1.125rem;
    padding: 0 25px;
    margin-bottom: 1em;
  }
  article .contact_box .title::before, article .contact_box .title::after {
    content: '';
    position: absolute;
    top: 50%;
    display: inline-block;
    width: 20px;
    height: 2px;
    background-color: black;
  }
  article .contact_box .title.long {
    max-width: 290px;
  }
  article .list_about02 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  article .list_about02 li {
    width: 48%;
    margin-bottom: 1.5em;
  }
  article .list_about02 li:not(:last-child) {
    margin-right: 0;
  }
  article .list_about02 li:not(:nth-child(2n)) {
    margin-right: 4%;
  }
  article .list_about02 li .txt {
    font-size: 1rem;
  }
  article .list_about02 li .txt em {
    font-size: 0.8125rem;
  }
  .p-accordion__button {
    padding: 10px 20px 10px 40px;
    font-size: 1.125rem;
  }
  .p-accordion__button::before {
    top: 10px;
    left: 20px;
    font-size: 1.125rem;
  }
  .p-accordion__button-icon {
    right: 20px;
    width: 16px;
  }
  .p-accordion__button-icon::before, .p-accordion__button-icon::after {
    max-width: 100%;
  }
  .p-accordion__body {
    padding: 16px 20px 16px 40px;
    font-size: 1.125rem;
  }
  .p-accordion__body::before {
    left: 20px;
    top: 16px;
    font-size: 1.125rem;
  }
  .p-accordion + .p-accordion {
    margin-top: 12px;
  }
}

/* --------------------------------------------------
	 6. Header
-------------------------------------------------- */
#header {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index: 10;
  padding: 0;
}

#header .inner {
  max-width: 100% !important;
}

#header .logo {
  position: absolute;
}

#header .logo a {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  width: 100%;
  height: 0;
  padding-top: 34.8%;
  background: transparent url(image/h1_logo.png) no-repeat center center;
  background-size: contain;
}

@media all and (min-width: 940px), print {
  #header {
    height: 80px;
  }
  #header .logo {
    top: 1.04167vw;
    right: 1.45833%;
    width: 11.97917%;
  }
  #header .logo a {
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  #header .logo a:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 939px) {
  #header {
    height: 60px;
  }
  #header .logo {
    top: 1.06667vw;
    right: 2.66667%;
    width: 17.6%;
  }
  #header .logo a {
    padding-top: 30.30303%;
  }
}

/* --------------------------------------------------
	 7. Footer
-------------------------------------------------- */
#footer {
  color: #fff;
  padding: 30px 0;
  background-color: #0064b0;
}

#footer .contact {
  text-align: center;
  font-size: 1.25rem;
}

#footer .contact .title {
  display: inline-block;
  padding: 0 25px;
  color: #0064b0;
  background-color: #fff;
  font-weight: bold;
  margin-bottom: .5em;
}

#footer .contact p {
  min-height: none;
  line-height: 1.5;
}

#footer .contact p span {
  font-size: 1rem;
}

#footer .content {
  margin-top: 2em;
  text-align: center;
}

#footer .content .organizer {
  font-weight: bold;
  font-size: 1.625rem;
}

#footer .content .inquiry {
  font-size: 1.375rem;
}

#footer .content .inquiry dt, #footer .content .inquiry dd {
  font-weight: bold;
  display: inline-block;
  vertical-align: top;
}

#footer .content .inquiry dd span {
  font-size: 1.125rem;
  font-weight: normal;
  display: inline-block;
}

#footer .copy {
  margin-top: 2em;
  text-align: center;
}

@media all and (min-width: 940px), print {
  #footer {
    margin-top: 100px;
    padding: 50px 0 27px;
  }
  #footer .inner {
    max-width: 1200px !important;
  }
  #footer .content {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  #footer .content .organizer {
    font-size: 1.125rem;
    margin-right: 30px;
  }
  #footer .content .organizer::before {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 3px 3px 0;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
  }
  #footer .content .inquiry {
    font-size: 1.125rem;
    margin-right: 20px;
  }
  #footer .content .inquiry::before {
    content: "";
    width: 10px;
    height: 10px;
    margin: 0 3px 3px 0;
    display: inline-block;
    vertical-align: middle;
    background-color: #fff;
  }
  #footer .content .inquiry dd span {
    font-size: 1rem;
  }
}

@media only screen and (max-width: 939px) {
  #footer {
    margin-top: 70px;
  }
  #footer .content {
    line-height: 1.5;
  }
  #footer .content .inquiry {
    margin: 0 auto;
  }
  #footer .content .inquiry dt {
    min-width: 126px;
  }
  #footer .content .inquiry dd span {
    display: block;
    text-align: left;
  }
}

/* --------------------------------------------------
	 8. Index
-------------------------------------------------- */
body.index {
  position: relative;
}

body.index .main_img {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  padding-top: 69.33333%;
  background: transparent url(image/img_main_sp.jpg) no-repeat center center;
  background-size: cover;
}

article.index {
  position: relative;
}

article.index .main_more {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 999;
}

article.index .main_more .basic_btn {
  padding: 8px 25px;
  border-radius: 5px;
  color: #fff;
  background-color: #eb6d73;
  text-decoration: none;
}

article.index .bnr_box {
  margin: 7em auto 3em;
  text-align: center;
}

article.index .bnr_box a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

article.index .bnr_box a:hover {
  opacity: 0.7;
}

article.index .bnr_box .bnr_imagesong {
  width: 649px;
  margin: 0 0 1em 0;
}

article.index section.about {
  position: relative;
  padding-top: 10em;
}

article.index section.about::before {
  content: "";
  width: 100%;
  height: 15.6vw;
  background-image: url(./image/bg_about.png);
  background-size: cover;
  background-position: center top;
  position: absolute;
  top: 0;
  left: 0;
}

article.index section.about .about_img {
  text-align: center;
}

article.index section.about .about_img img {
  margin: 0 auto;
}

article.index section.about .about_message {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  top: 4.66667%;
  left: 0;
  width: 100%;
  z-index: 1;
  position: absolute;
  padding-top: 48%;
  background: transparent url(image/img_about05_sp.png) no-repeat center center;
  background-size: contain;
}

article.index section.news {
  margin: 0 auto;
  padding: 4em 0 1.5em;
}

article.index section.news .content {
  margin: 0 auto;
}

article.index section.news h2 {
  margin-bottom: 0;
  padding-bottom: 0;
}

article.index section.news h2::after {
  display: none;
}

article.index section.news .list_news {
  margin-bottom: 1em;
}

article.index section.news .list_news li {
  position: relative;
  border-bottom: 1px dashed #444444;
}

article.index section.news .list_news a {
  color: #444444;
  font-size: 1.125rem;
  line-height: 1.5;
  position: relative;
  padding: 1em .2em;
  display: block;
  text-decoration: none;
}

article.index section.news .list_news a span {
  display: block;
  font-weight: bold;
}

article.index section.news .list_news a.new .title {
  padding-right: 20px;
}

article.index section.news .list_news a.new .title::after {
  right: 0;
  content: "NEW";
  color: #fff;
  width: 30px;
  height: 30px;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 30px;
  border-radius: 50%;
  font-size: 0.625rem;
  background-color: #0064b0;
}

article.index section.news .list_news a .date {
  margin-right: 30px;
  min-width: 160px;
}

article.index section.news .more {
  text-align: right;
}

article.index section.news .more a {
  color: #444444;
  font-size: 1rem;
  padding: .5em 1em;
  line-height: 1.5;
  min-width: 80px;
  text-align: center;
  border-radius: 2em;
  text-decoration: none;
  display: inline-block;
  border: 1px solid #444444;
}

article.index section.flyer {
  background-color: #e6f8ff;
}

article.index section.flyer .flyer_img {
  display: block;
  text-align: center;
  margin: 0 auto;
}

article.index section.flyer .flyer_img li {
  width: 100%;
  font-size: 1.125rem;
  text-align: center;
}

article.index section.flyer .flyer_img .image {
  width: 100%;
  max-width: 450px;
  margin-top: 10px;
  display: inline-block;
  border: 1px solid #3e3a39;
}

article.index section.flyer .flyer_img .image a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

article.index section.flyer .flyer_img .image a:hover {
  opacity: 0.7;
}

article.index section.dates .list_dates {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2%;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

article.index section.dates .list_dates li {
  padding: 10px;
}

article.index section.dates .list_dates img {
  width: 100%;
}

article.index section.dates .image {
  width: 100%;
  margin: 3em 0 3em;
  text-align: center;
}

article.index section.dates .image img {
  max-width: 100%;
}

article.index section.dates .about_txt {
  margin-top: 5em;
  background-color: #e6f8ff;
  border-radius: 10px;
  position: relative;
}

article.index section.dates .about_txt .title {
  background-color: #0064b0;
  color: #fff;
  text-align: center;
  font-size: 1.375rem;
  font-weight: bold;
  padding: 0 1em;
  margin-bottom: 0.5em;
}

article.index section.dates .about_txt p {
  line-height: 1.5;
  font-size: 1rem;
  font-weight: bold;
}

article.index section.app .text {
  font-size: 1.3125rem;
}

article.index section.app .scheduled {
  text-align: center;
  padding: 3em 0;
}

article.index section.app .scheduled p {
  width: 800px;
  max-width: 100%;
  color: #eb6d73;
  font-size: 1.625rem;
  padding: .45em 2em;
  font-weight: bold;
  text-align: center;
  display: inline-block;
  background-color: #fff697;
}

article.index section.app .contact_date {
  margin: 3em auto;
  text-align: center;
}

article.index section.app .contact_date img {
  max-width: 100%;
}

article.index section.app .more {
  margin: 3em auto;
  text-align: center;
}

article.index section.work {
  background-color: #e6f8ff;
}

@media all and (min-width: 940px), print {
  body.index .main_img {
    padding-top: 49.47917%;
    background-image: url(image/img_main.jpg);
  }
  body.index .main_more {
    top: -1.2%;
  }
  body.index .main_more .basic_btn {
    font-size: 1.5rem;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  body.index .main_more .basic_btn:hover {
    opacity: 0.7;
  }
  article.index section.about .about_message {
    top: -12.5%;
    padding-top: 47.36842%;
    background-image: url(image/img_about05.png);
  }
  article.index section.news .inner::after {
    display: block;
    content: "";
    clear: both;
  }
  article.index section.news h2 {
    float: left;
  }
  article.index section.news .content {
    float: right;
    width: calc(100% - 250px);
  }
  article.index section.news .list_news {
    margin-bottom: 2em;
  }
  article.index section.news .list_news a {
    font-size: 1.3125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: .5em .2em;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transition: background-color 0.2s;
    transition: background-color 0.2s;
  }
  article.index section.news .list_news a:hover {
    background-color: #fff000;
  }
  article.index section.news .list_news a.new .title {
    padding-right: 60px;
    position: relative;
  }
  article.index section.news .list_news a.new .title::after {
    top: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 0.625rem;
    position: absolute;
  }
  article.index section.news .list_news a .title {
    padding: .15em 0;
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
  }
  article.index section.news .more a {
    font-size: 1.125rem;
    padding: 1.5px .5em;
    min-width: 175px;
    line-height: 2;
    -webkit-transition: opacity 0.2s;
    transition: opacity 0.2s;
  }
  article.index section.news .more a:hover {
    opacity: .7;
  }
  article.index section.flyer .flyer_img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  article.index section.flyer .flyer_img li {
    width: 50%;
    font-size: 1.5625rem;
    padding: 0 1em;
  }
  article.index section.dates .list_dates {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  article.index section.dates .list_dates li {
    width: 49%;
  }
  article.index section.dates .image {
    margin: 3.6em 0 0;
  }
  article.index section.dates .about_txt {
    padding: 2em;
  }
  article.index section.dates .about_txt .title {
    font-size: 2rem;
  }
  article.index section.dates .about_txt p {
    font-size: 1.3125rem;
  }
  article.index section.app .scheduled p {
    font-size: 3.125rem;
    padding: .6em 2em;
  }
}

@media all and (min-width: 740px) and (max-width: 959px) {
  article.index section.about .about_message {
    top: 0;
  }
  article.index section.about .list_about {
    margin-left: -10px;
    margin-right: -10px;
  }
  article.index section.about .list_about li {
    max-width: 50%;
    padding: 0 10px;
    margin-bottom: 1em;
  }
  article.index section.about .ttl_about {
    max-width: calc(100% - 70px);
    margin: 4.5em 0 0.75em auto;
    font-size: 1.875rem;
    padding: 0.5em 0;
  }
  article.index section.about .ttl_about:before {
    content: "";
    width: 220px;
    height: 200px;
    left: -2.75em;
  }
  article.index section.about .ttl_about em {
    margin-left: 4em;
  }
  article.index section.dates .list_dates li {
    max-width: 50%;
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 939px) {
  body.index .main_more {
    top: -1.5%;
  }
  body.index .main_more .basic_btn {
    font-size: 1.5rem;
  }
  article.index section.about {
    padding-top: 5em;
  }
  article.index section.flyer .flyer_img li + li {
    margin-top: 10px;
  }
  article.index section.dates .list_dates li {
    margin-bottom: 10px;
  }
  article.index section.dates .about_txt {
    padding: 2em 1.5em;
    margin: 0 auto 3em;
  }
  article.index section.app .text {
    font-size: 1.125rem;
  }
  article.index section.app .scheduled {
    padding: 2em 0;
  }
  article.index section.app .more {
    margin: 3em auto;
    text-align: center;
  }
  article.index section.app .contact_date img {
    width: 80%;
  }
}

@media only screen and (max-width: 739px) {
  body.index .main_more {
    top: -0.8%;
  }
  body.index .main_more .basic_btn {
    padding: 5px 15px;
    font-size: 1.125rem;
  }
}

/* --------------------------------------------------
	 9. News
-------------------------------------------------- */
article .news .content {
  margin: 3em auto 0;
  overflow: hidden;
}

article .news .date {
  display: inline-block;
}

article .news .more {
  text-align: center;
}

article .news .btn01 {
  margin: 3em auto;
}

article .news_index section.news {
  padding-top: 3em;
}

article .news_index .list_news li {
  border-bottom: 1px dashed #444444;
}

article .news_index .list_news a {
  display: block;
  color: #444444;
  font-size: 1.125rem;
  padding: .5em .5em;
  position: relative;
  text-decoration: none;
}

article .news_index .list_news .new .title {
  padding-right: 20px;
}

article .news_index .list_news .new .title::after {
  right: 0;
  content: "NEW";
  color: #fff;
  width: 40px;
  height: 40px;
  margin: 0 5px;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  line-height: 20px;
  border-radius: 50%;
  font-size: 0.75rem;
  background-color: #0064b0;
}

article .news_index .list_news .date {
  display: block;
}

article .news_index .list_news .title {
  display: inline-block;
}

article.news_detail section.detail {
  padding-top: 3em;
}

article.news_detail .detail .inner {
  max-width: 940px !important;
}

@media all and (min-width: 940px), print {
  body.news #header .nav .news a {
    color: #fff;
    background-color: #4d3f48;
  }
  body.news #footer .nav .news a {
    color: #000;
    background-color: #fff;
  }
  article .news_index .list_news a {
    font-size: 1.3125rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  article .news_index .list_news a:hover {
    opacity: 0.7;
  }
  article .news_index .list_news .new .title {
    padding-right: 50px;
    position: relative;
  }
  article .news_index .list_news .new .title::after {
    top: 0;
    width: 36px;
    height: 36px;
    line-height: 36px;
    font-size: 0.625rem;
    position: absolute;
  }
  article .news_index .list_news .date {
    min-width: 180px;
    padding-right: 20px;
  }
  article .news_index .list_news .title {
    overflow: hidden;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    word-break: normal;
    overflow-wrap: normal;
    word-wrap: normal;
  }
}

@media only screen and (max-width: 939px) {
  body.news #header .nav .news a {
    background-color: #4d3f48;
  }
  article.news .btn01 {
    margin: 2em auto;
  }
  article .news_index .news .list_news {
    display: block;
  }
  article .news_index .news .list_news li {
    width: 100%;
  }
  article .news_index .news .list_news .title {
    line-height: 1.5;
  }
}

/* --------------------------------------------------
	10. Contact
-------------------------------------------------- */
body.contact #primary .page_title .image {
  background-image: url(images/contact/bg_title.jpg);
}

article.contact .contact_flow {
  margin-bottom: 5em;
  padding: 30px 45px;
  background-color: #e6f8ff;
}

article.contact .contact_flow .flow_nav {
  margin-bottom: 40px;
}

article.contact .contact_flow .flow_nav .step_ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

article.contact .contact_flow .flow_nav .step_ul li {
  color: #808080;
  line-height: 1.5;
  font-weight: bold;
  text-align: center;
}

article.contact .contact_flow .flow_nav .step_ul li:not(:last-child) {
  position: relative;
  padding-right: 76px;
  margin-right: 50px;
}

article.contact .contact_flow .flow_nav .step_ul li:not(:last-child)::after {
  top: 50%;
  right: 0;
  content: "";
  width: 0;
  height: 0;
  margin-top: -15px;
  position: absolute;
  border-style: solid;
  border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent #fff;
}

article.contact .contact_flow .flow_nav .step_ul span,
article.contact .contact_flow .flow_nav .step_ul strong {
  display: block;
}

article.contact .contact_flow .flow_nav .step_ul strong {
  font-size: 1.3125rem;
}

article.contact .contact_flow .flow_nav .step_ul span {
  font-size: 1.5rem;
}

article.contact .contact_flow .form {
  margin: 0;
}

article.contact .contact_flow .form table {
  margin: 0;
}

article.contact .form {
  margin-bottom: 6em;
}

article.contact .form form table tr th,
article.contact .form form table tr td {
  padding: .6em 1.5em;
}

article.contact .form table {
  font-size: 1.125rem;
  margin: 0 auto;
}

article.contact .form table tr.error td {
  background-color: #f9dcdf;
}

article.contact .form table tr th {
  color: #fff;
  text-align: center;
  background-color: #333333;
  width: 390px;
}

article.contact .form table tr th div {
  position: relative;
}

article.contact .form table tr th .essential {
  background-color: #b20000;
  padding: 0 .8em;
  line-height: 1.5;
  color: #fff;
  font-size: 0.875rem;
  margin-left: 1em;
}

article.contact .form table tr th p {
  font-size: 0.8125rem;
  line-height: 1.5;
  padding-left: 1em;
  text-indent: -1em;
}

article.contact .form table tr td a[target="_blank"]::after {
  width: 20px;
  height: 20px;
}

article.contact .form table tr td a[href*=".pdf"]::after {
  width: 30px;
  height: 20px;
}

article.contact .form table tr td.mail_guardian input {
  color: #959595;
  margin: 5px 0;
  background-color: #fffbe1;
}

article.contact .form table tr td.check_address {
  text-align: center;
  padding: 1.32em 1.5em;
}

article.contact .form table tr td.addres input {
  width: 200px;
}

article.contact .form table tr td.addres.td_col2 input {
  width: 90px;
}

article.contact .form table tr td.addres.td_col2 input:nth-child(2) {
  width: 120px;
}

article.contact .form table tr td.select select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent url(images/contact/icon_chevron_down.png) no-repeat center right 12px;
  background-size: 20px;
}

article.contact .form table tr td.select .select_item {
  width: 330px;
}

article.contact .form table tr td.radio input[type="radio"] {
  margin: 0 5px 0 0;
}

article.contact .form table tr td.radio label {
  margin-right: 1.5em;
}

article.contact .form table tr td.radio label:hover {
  cursor: pointer;
}

article.contact .form table tr.w100 th, article.contact .form table tr.w100 td {
  display: block;
  width: 100%;
}

article.contact .form table.border {
  border-top: none;
  border-bottom: none;
}

article.contact .form table.border th {
  border-bottom: 1px solid #fff;
}

article.contact .form .agree_box {
  background-color: #f7f7f7;
  padding: 2em;
  text-align: center;
  margin-bottom: 1em;
}

article.contact .form .agree_box a {
  text-decoration: underline;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

article.contact .form .agree_box a:hover {
  text-decoration: none;
}

article.contact .form .agree_box a[target="_blank"]::after {
  width: 20px;
  height: 20px;
}

article.contact .form .agree_box a[href*=".pdf"]::after {
  width: 30px;
  height: 20px;
}

article.contact .form .more {
  text-align: center;
}

article.contact .form .btn01 {
  margin: 5em 2em;
}

article.contact .form .btn_box {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

article.contact_index .contact .app_focus {
  margin-bottom: 7em;
}

article.contact_form .contact_flow .flow_nav .step_ul li:nth-child(1) {
  color: #0064b0;
}

article.contact_form .contact_flow p {
  margin-top: 2em;
  color: #b20000;
  font-weight: bold;
}

article.contact_confirm .contact_flow .flow_nav .step_ul li:nth-child(2) {
  color: #0064b0;
}

article.contact_complete .contact_flow .flow_nav {
  margin-bottom: 0px;
}

article.contact_complete .contact_flow .flow_nav .step_ul li:nth-child(3) {
  color: #0064b0;
}

article.contact_complete .btn01 {
  margin: 6em auto;
}

article.contact_complete .btn01 a {
  padding: .22em 2.45em;
}

@media only screen and (max-width: 939px) {
  article.contact .contact_flow {
    margin-bottom: 3em;
    padding: 20px 10px;
  }
  article.contact .contact_flow .flow_nav {
    margin-bottom: 20px;
  }
  article.contact .contact_flow .flow_nav .step_ul li:not(:last-child) {
    padding-right: 20px;
    margin-right: 10px;
  }
  article.contact .contact_flow .flow_nav .step_ul li:not(:last-child)::after {
    margin-top: -5px;
    border-width: 5px 0 5px 10px;
  }
  article.contact .contact_flow .flow_nav .step_ul strong {
    font-size: 0.75rem;
  }
  article.contact .contact_flow .flow_nav .step_ul span {
    font-size: 0.875rem;
  }
  article.contact .contact_flow .form {
    margin: 0;
  }
  article.contact .form {
    margin-bottom: 3em;
  }
  article.contact .form table {
    font-size: 1rem;
  }
  article.contact .form table tr th {
    width: 100%;
  }
  article.contact .form table tr th .essential {
    margin-left: 1em;
  }
  article.contact .form table tr td.addres input {
    width: 100%;
  }
  article.contact .form table tr td.addres.td_col2 input {
    width: 80px;
  }
  article.contact .form table tr td.addres.td_col2 input:nth-child(2) {
    width: 120px;
  }
  article.contact .form table tr td.addres .auto_addres {
    border: 1px solid #999;
    display: inline-block;
    padding: 0.5em 1em;
    border-radius: 4px;
    cursor: pointer;
    margin: 0.5em 0;
  }
  article.contact .form table tr td.select select {
    background-position: center right 10px;
    background-size: 12px;
  }
  article.contact .form table tr td.select .select_item {
    width: 100%;
  }
  article.contact .form table tr.w100 th, article.contact .form table tr.w100 td {
    display: block;
    width: 100%;
  }
  article.contact .form .btn01 {
    margin-top: 2em;
  }
  article.contact .form .btn_box {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

/* --------------------------------------------------
	11. Detail
-------------------------------------------------- */
section.detail .content {
  margin: 3em auto 0;
  overflow: hidden;
}

section.detail .content::after {
  display: block;
  content: "";
  clear: both;
}

section.detail .content h1 {
  font-size: 1.75rem;
  text-align: center;
  margin-bottom: 1em;
  color: #0064b0;
}

section.detail .content h2 {
  font-size: 1.75rem;
}

section.detail .content h3 {
  font-size: 1.5rem;
}

section.detail .content h4 {
  text-align: left;
}

section.detail .content h5 {
  text-align: left;
}

section.detail .content h6 {
  text-align: left;
}

section.detail .content p {
  min-height: 1.8em;
}

section.detail .content a {
  text-decoration: underline;
}

section.detail .content a:hover {
  text-decoration: none;
}

section.detail .content img {
  height: auto !important;
}

section.detail .content img.aligncenter {
  display: block;
  margin: 0 auto;
}

section.detail .content img.alignright {
  float: right;
}

section.detail .content img.alignleft {
  float: left;
}

section.detail .content em {
  font-style: italic;
}

section.detail .content blockquote {
  position: relative;
  background-color: #eeeeee;
  padding: 1.5em 1.5em 1em;
  margin: 1em auto;
}

section.detail .content blockquote::before {
  display: inline-block;
  position: absolute;
  top: 5px;
  left: 10px;
  content: "“";
  font-size: 2rem;
  color: #cfcfcf;
  line-height: 1;
}

section.detail .content table {
  margin: 2em auto;
  background-color: #fff;
  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

section.detail .content table th,
section.detail .content table td {
  border-left: 1px solid #333333;
  border-top: 1px solid #333333;
}

section.detail .content table th {
  color: #4d3f48;
  text-align: center;
  font-weight: bold;
  background-color: #333333;
}

section.detail .content table.aligncenter {
  margin: 0 auto;
}

section.detail .content table.alignright {
  float: right;
}

section.detail .content table.alignleft {
  float: left;
}

section.detail .content ul,
section.detail .content ol {
  margin-left: 1em;
}

section.detail .content ul > li,
section.detail .content ol > li {
  padding-left: .25em;
}

section.detail .content ul > li > ul,
section.detail .content ul > li > ol,
section.detail .content ol > li > ul,
section.detail .content ol > li > ol {
  margin-left: 1.25em;
}

section.detail .content ul, section.detail .content ol {
  margin-left: 1em;
}

section.detail .content ul {
  list-style: circle;
}

section.detail .content ul.basic_ul {
  list-style: none;
}

section.detail .content ol {
  list-style: decimal;
}

section.detail .content ol.basic_ol {
  list-style: none;
}

section.detail .content dl > dt {
  font-weight: bold;
}

section.detail .content dl > dd {
  margin-left: 1em;
}

section.detail .return {
  margin-top: 5em;
  text-align: center;
}

@media all and (min-width: 940px), print {
  section.detail .date {
    font-size: 1rem;
  }
  section.detail .content table {
    max-width: calc(1200px - 2.5em * 2) !important;
  }
  section.detail .return {
    text-align: center;
  }
}

/* --------------------------------------------------
	12. Report
-------------------------------------------------- */
article.report .content {
  margin: 4em auto;
}

article.report .interview .inner {
  border-radius: 50px;
  background-color: #e6f8ff;
  padding: 2em 1em 3em !important;
}

article.report .interview .inner .title {
  font-size: 1.75rem;
  font-weight: bold;
  color: #0064b0;
  text-align: center;
  margin: 0 auto 1em;
}

article.report .interview .inner .movie_box {
  max-width: 800px;
  margin: 0 auto;
}

article.report .report01 .ttl_report {
  max-width: 460px;
  font-size: 3.125rem;
  color: #000;
  font-weight: bold;
  line-height: 1;
  padding: 5px 5px 10px;
  border: 3px dashed #eb6d73;
  border-width: 3px 0;
  -webkit-transform: rotateZ(-6deg);
  transform: rotateZ(-6deg);
  position: absolute;
  top: 0;
  left: 40px;
  background-color: rgba(225, 225, 225, 0.5);
}

article.report .report01 .ttl_report span {
  display: block;
  font-size: 1.125rem;
  color: #000;
  font-weight: bold;
  line-height: 1.4;
}

article.report .report01 .ttl_report em {
  display: block;
  font-size: 0.9375rem;
  color: #000;
  line-height: 1.6;
}

article.report .report01 .ttl_report02 {
  position: relative;
}

article.report .report01 .image_report {
  padding: 3em 0 2em;
}

article.report .report01 .content_report01 {
  clear: both;
  overflow: hidden;
}

article.report .report01 .content_report01:not(:last-of-type) {
  margin-bottom: 4em;
}

article.report .report01 .content_report01 h3 {
  border-bottom: none;
  margin-bottom: 1em;
}

article.report .report01 .content_report01 p {
  font-size: 1.3125rem;
  color: #000;
  line-height: 1.6;
}

article.report .report01 .content_report01 p img {
  padding: 0.5em 0.75em 0.25em 0;
  display: block;
  float: left;
}

article.report .report01 .content_report01 p img.float_right {
  float: right;
  padding: 0.5em 0 0.25em 0.75em;
}

@media all and (min-width: 940px), print {
  body.report #header .nav .report a {
    color: #fff;
    background-color: #4d3f48;
  }
  body.report #footer .nav .report a {
    color: #000;
    background-color: #fff;
  }
}

@media all and (min-width: 740px) and (max-width: 959px) {
  article.report .report01 .content_report01 p {
    font-size: 1.25rem;
  }
  article.report .report01 .content_report01 p img {
    max-width: 400px;
  }
}

@media only screen and (max-width: 939px) {
  body.report #header .nav .report a {
    background-color: #4d3f48;
  }
  article.report .interview .inner {
    border-radius: 0;
  }
  article.report .interview .inner .title {
    font-size: 1.375rem;
  }
  article.report .report01 .ttl_report {
    max-width: 310px;
    font-size: 2.1875rem;
    padding: 10px;
    border-width: 2px 0;
    -webkit-transform: rotateZ(0);
    transform: rotateZ(0);
    position: inherit;
    top: 0;
    left: 0;
    text-align: center;
    margin: 0 auto;
  }
  article.report .report01 .ttl_report span {
    font-size: 0.75rem;
  }
  article.report .report01 .ttl_report em {
    font-size: 0.75rem;
  }
  article.report .report01 .image_report {
    padding: 2em 0 1.5em;
  }
  article.report .report01 .content_report01:not(:last-of-type) {
    margin-bottom: 2em;
  }
  article.report .report01 .content_report01 h3 {
    font-size: 1.125rem;
  }
  article.report .report01 .content_report01 p {
    font-size: 1rem;
  }
  article.report .report01 .content_report01 p img {
    padding: 0 0 2em 0;
    display: block;
    float: none;
    margin: 0 auto;
  }
  article.report .report01 .content_report01 p img.float_right {
    float: none;
    padding: 0 0 2em 0;
  }
}

/* --------------------------------------------------
	13. State
-------------------------------------------------- */
article .state p {
  text-align: center;
}

article .state .photo {
  margin-top: 2em;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: start;
  -ms-flex-pack: start;
  justify-content: start;
}

article .state .photo li.text strong {
  display: block;
}

article .state_index section.state {
  padding-top: 3em;
}

@media all and (min-width: 1160px), print {
  body.state .photo li {
    padding: 10px;
    width: 25%;
  }
  body.state .photo li.text {
    width: 100%;
  }
}

@media all and (min-width: 940px), print {
  body.state #header .nav .state a {
    color: #fff;
    background-color: #4d3f48;
  }
  body.state #footer .nav .state a {
    color: #000;
    background-color: #fff;
  }
}

@media only screen and (max-width: 1159px) {
  body.state .photo li {
    padding: 5px;
    width: 50%;
  }
  body.state .photo li.text {
    width: 100%;
  }
}

@media only screen and (max-width: 939px) {
  body.state #header .nav .state a {
    background-color: #4d3f48;
  }
}
