@charset "UTF-8";
/* color
---------------------------------------------------------------------------- */
@import "//maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap");
/*===========================================================================*/
/*  common  */
/*===========================================================================*/
/* リセット
---------------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  word-wrap: break-word;
  word-break: break-all;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

table {
  margin: 0 auto 2.5em;
  border: 1px solid #fff;
  width: 100%;
  border-collapse: collapse;
}
table tr {
  border-top: 1px solid #e3e3e3;
  border-bottom: 1px solid #e3e3e3;
}
table th {
  width: 20%;
  padding: 20px 30px;
  background: #f6f6f6;
  font-weight: 500;
  vertical-align: top;
  text-align: left;
}
table td {
  padding: 20px 30px;
  background: #fff;
}

img {
  max-width: 100%;
  height: auto;
  line-height: 0;
}

/* ハック
---------------------------------------------------------------------------- */
/* letter-spacing hack */
@media screen {
  body {
    letter-spacing: 0.5px;
  }

  br {
    letter-spacing: 0;
  }
}
/* height100% hack */
body > #container {
  height: auto;
}

/* リンク
---------------------------------------------------------------------------- */
a {
  overflow: hidden;
  color: #000;
  outline: none;
  text-decoration: none;
}

a:hover {
  color: #333;
  text-decoration: underline;
}

a:hover img,
.btn a:hover {
  opacity: 0.7;
}

/* マウスドラッグ時のテキストカラー
---------------------------------------------- */
::selection {
  background: #333;
  color: #fff;
}

/* Firefox */
::-moz-selection {
  background: #333;
  color: #fff;
}

/* 基本スタイル
---------------------------------------------------------------------------- */
html {
  overflow: auto;
}

body {
  height: 100%;
  color: #000;
  font-family: 'Noto Sans JP',sans-serif;
  font-size: 0.9em;
  letter-spacing: 0.05em;
  font-weight: 400;
  line-height: 1.8;
}

.inblock {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.inblock-s {
  max-width: 1020px;
  width: 90%;
  margin: 0 auto;
}

section {
  margin-bottom: 6em;
}

#container {
  margin-bottom: 60px;
  padding-bottom:50px;
}

.sub-t {
  margin-bottom: 0.5em;
  padding: 0.5em;
  border-bottom: 1px solid #000;
  font-size: 1.2rem;
  font-weight: 500;
}
.sub-t span {
  padding: 0 0.8em;
  border-left: 5px solid #ff5f2f;
}

/* sp only
---------------------------------------------------------------------------- */
.sp {
  display: none;
}

/*アニメーション設定
---------------------------------------------------------------------------- */
.anim {
  visibility: hidden;
}

.anim-off {
  visibility: visible;
}

.animated {
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-duration: 0.8s;
  -ms-animation-duration: 0.8s;
  animation-duration: 0.8s;
  visibility: visible !important;
}

/* パンくず
---------------------------------------------------------------------------- */
.topicpath {
  width: 95%;
  max-width: 1200px;
  margin: 0 auto 2em;
  text-align: left;
  font-size: 0.8em;
  font-weight: 300;
}
.topicpath ul {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.topicpath ul li {
  position: relative;
}
.topicpath ul li:not(:last-child) {
  margin-right: 1.2em;
}
.topicpath ul li:not(:last-child):before {
  position: absolute;
  content: "＞";
  right: -1em;
  top: 0;
  font-family: FontAwesome;
}
.topicpath ul li a {
  text-decoration: underline;
  color: #0355b8;
}

/* 英語文字
---------------------------------------------------------------------------- */
.en {
  font-family: 'Lato', sans-serif;
  font-weight: bold;
}

/* リンクテキスト
---------------------------------------------------------------------------- */
.link-txt {
  text-decoration: underline;
  color: #0355b8;
}

/* ページタイトル　h1
---------------------------------------------------------------------------- */
.page-title {
  text-align: center;
  padding: 1em 0;
  font-size: 2rem;
}

/* input　ボタン
---------------------------------------------------------------------------- */
.btn-area {
  text-align: center;
}

.button {
  width: 95%;
  width: 230px;
  margin: 0 auto;
  display: inline-block;
  letter-spacing: 0.08em;
  font-weight: 500;
  text-align: center;
  /* 文字位置   */
  cursor: pointer;
  /* カーソル   */
  padding: 1em 1.5em;
  /* 余白       */
  background: #271d1a;
  /* 背景色     */
  color: #ffffff;
  /* 文字色     */
  line-height: 1em;
  /* 1行の高さ  */
  opacity: 1;
  /* 透明度     */
  transition: .3s;
  /* なめらか変化 */
  border: none;
  border-radius: 10px;
}

.button:hover {
  opacity: 0.8;
  /* カーソル時透明度 */
}

/*  inputデザイン  */
.inText {
  padding: 0.8em 1em;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  border-radius: 5px;
}

::placeholder {
  color: #888;
}

.inText:focus {
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  outline: 0;
}

/* form 基本スタイル
---------------------------------------- */
input.middle, input.long, input.short, select, textarea {
  padding: 0.5em 1em;
  box-sizing: border-box;
  margin: 0;
  vertical-align: top;
  width: 100%;
  border: 1px solid #d6d6d6;
  border-radius: 4px;
  border-radius: 5px;
}

button, input, select, textarea {
  font-size: 16px;
  vertical-align: baseline;
}

textarea {
  border: 1px solid #d5d5d5;
  width: 98%;
  font-family: sans-serif;
}

input.short {
  width: 98%;
  max-width: 120px;
}

input.middle {
  width: 98%;
  max-width: 300px;
}

input.long {
  width: 98%;
  max-width: 500px;
}

input[type="submit"], input[type="button"] {
  -webkit-appearance: none;
}

.b-btn {
  font-size: 1.2em;
  padding: 10px;
  background: #fe9320;
  color: #fff;
  font-weight: bold;
  border: 1px solid #fe9320;
  border-radius: 13px;
  transition: all 0.2s linear;
  font-size: 1.5em;
  line-height: 1.2;
  font-family: "游ゴシック", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ ゴシック", "sans-serif";
}
.b-btn:hover {
  background: #ffc17f;
  border: 1px solid #ffc17f;
  box-shadow: 0px 0px 10px 0px #d3d3d3;
  cursor: pointer;
}

.form {
  width: 100%;
  margin: 0 auto 5em;
}
.form .inner {
  width: 96%;
  margin: 0 auto 4em;
}
.form .inner dl {
  border-bottom: 1px solid #fff;
  background: #eee;
  display: flex;
  justify-content: flex-start;
}
.form .inner dl dt {
  width: 25%;
  padding: 20px;
  position: relative;
  background: #eee;
}
.form .inner dl dt span {
  padding: 0 5px;
  position: absolute;
  right: 10px;
  top: 25px;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  background: #ff5f2f;
  color: #fff;
  font-size: 0.8em;
}
.form .inner dl dd {
  width: 75%;
  min-height: 70px;
  padding: 20px;
  word-wrap: break-word;
  background: #fbfbfb;
}
.form .inner dl dd select {
  width: 50%;
  margin-bottom: 10px;
  font-size: 0.8rem;
}
.form .inner dl dd.address input {
  margin-bottom: 0.5em;
}
.form .inner dl dd ul li {
  margin: 0 10px 2px 0;
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
}
.form .inner dl dd .btn-style {
  display: -moz-inline-stack;
  display: inline-block;
  vertical-align: middle;
  *vertical-align: auto;
  zoom: 1;
  *display: inline;
}
.form .inner dl dd .btn-style a {
  padding: 2px 10px 0;
  cursor: pointer;
  font-size: 0.9em;
}

/* -------------------------------------------- */
/* error */
/* -------------------------------------------- */
#error {
  max-width: 900px;
  width: 90%;
  margin: 0px auto 2em;
  padding: 15px;
  border: 1px solid #ff5f2f;
  background-color: #fff6f7;
  font-size: 1em;
  color: #ff3c44;
  text-align: center;
}

p.error {
  color: #ff3c44;
}

.form input.error,
.form select.error,
.form textarea.error {
  background-color: #fff4f4;
}

/* select
---------------------------------------------------------------------------- */
.cp_ipselect {
  overflow: hidden;
  width: 95%;
  margin: 0 auto;
  text-align: center;
}

.cp_ipselect select {
  width: 100%;
  padding-right: 1em;
  cursor: pointer;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  border: none;
  outline: none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

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

.cp_ipselect.cp_sl01 {
  position: relative;
  border: 1px solid #bbbbbb;
  border-radius: 2px;
  background: #ffffff;
}

.cp_ipselect.cp_sl01::before {
  position: absolute;
  top: 0.8em;
  right: 0.9em;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #666666;
  pointer-events: none;
}

.cp_ipselect.cp_sl01 select {
  padding: 8px 38px 8px 8px;
  color: #666666;
}

/* freearea-common
---------------------------------------------------------------------------- */
.freearea-common {
  max-width: 1020px;
  width: 90%;
  margin: 4em auto 6em;
}

/* header
---------------------------------------------------------------------------- */
header {
  margin-bottom: 1em;
}
header .description {
  margin-bottom: 0.5em;
  background: #271d1a;
  color: #fff;
  padding: 0.25em;
  font-size: 0.8em;
}
header .inblock {
  display: flex;
  justify-content: space-between;
}
header .inblock .logo {
  width: 25%;
  margin-right: 1em;
  padding-top: 1em;
}
header .inblock .r-block {
  width: 70%;
  padding-top:62px;
}
header .inblock .r-block .top-area {
  margin-bottom: 1.25em;
  display: flex;
  justify-content: flex-end;
}
header .inblock .r-block .top-area .tel, header .inblock .r-block .top-area ul {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
header .inblock .r-block .top-area .tel {
  margin-right: 1.5em;
}
header .inblock .r-block .top-area .tel p {
  margin-right: 1em;
}
header .inblock .r-block .top-area .tel p img {
  vertical-align: bottom;
}
header .inblock .r-block .top-area .tel dl dt {
  font-size: 0.9em;
  font-weight: 500;
}
header .inblock .r-block .top-area .tel dl dd {
  font-size: 2em;
  letter-spacing: -0.1px;
  line-height: 1;
  color: #271d1a;
}
header .inblock .r-block .top-area ul.sns li {
  margin: 0 0.25em;
}
header .inblock .r-block .top-area ul.sns li img {
  vertical-align: bottom;
}
header .inblock .r-block .bottom-area {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .inblock .r-block .bottom-area nav {
  width: 80%;
}
header .inblock .r-block .bottom-area nav ul {
  display: flex;
  justify-content: flex-start;
}
header .inblock .r-block .bottom-area nav ul li {
  margin: 0 1.5em;
  letter-spacing: 0.1em;
  text-align:center;
}
header .inblock .r-block .bottom-area nav ul li:first-child {
  margin-left: 0;
}
header .inblock .r-block .bottom-area nav ul li a {
  font-size: 1em;
  font-weight: 500;
}
header .inblock .r-block .bottom-area nav ul li a:hover {
  text-decoration: none;
}
header .inblock .r-block .bottom-area nav ul li a:hover span {
  color: #ff5f2f;
}
header .inblock .r-block .bottom-area nav ul span {
  display: block;
  font-size: 0.8em;
  letter-spacing: 0em;
  color: #6f6d5f;
  font-weight: 700;
}
header .inblock .r-block .bottom-area .btn {
  display: flex;
  justify-content: flex-end;
  width: 24%;
}
header .inblock .r-block .bottom-area .btn li {
  width: 33.3%;
  text-align: center;
}
header .inblock .r-block .bottom-area .btn li a:hover {
  text-decoration: none;
}
header .inblock .r-block .bottom-area .btn li span {
  display: block;
  font-size: 0.75em;
  line-height: 0.8em;
  font-weight: 500;
}

.sp-header {
  display: none;
}

/* category-item
---------------------------------------------------------------------------- */
.category-item {
  padding: 6em 0;
  background: #f9f9f9;
  border-bottom: 1px solid #ddd;
}
.category-item .t-category h2 span {
  background: #f9f9f9;
}
.category-item ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.category-item ul li {
  margin: 0 2.5%;
}
.category-item ul li .image-round {
  display: inline-block;
  width: 146px;
  height: 146px;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: 1px solid #eeeeee;
}
.category-item ul li .image-round img {
  position: absolute;
  top: -100%;
  bottom: -100%;
  margin: auto;
}
.category-item ul li span {
  display: block;
  text-align: center;
}
.category-item ul li a:hover {
  text-decoration: none;
}

.t-category {
  margin: 0 auto 3em;
  text-align: center;
}
.t-category h2 {
  margin: 0 auto 0.5em;
  font-weight: 700;
  font-size: 1.5em;
  position: relative;
  padding: 0 15px;
  display: inline-block;
}
.t-category h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}
.t-category h2 span {
  position: relative;
  padding: 0 1em;
  background: #fff;
}

/* footer
---------------------------------------------------------------------------- */
footer{
	margin-top:40px;
	border-top:1px solid #ccc;
	background-color:#000;
	color:#fff;
}
footer a, footer a:hover, footer a:visited, footer a:link, footer a:active{
	color:#fff;
}
footer .info {
  padding: 4.5em 0;
  background: #f6f6f6;
}
footer .info .t-info {
  margin: 0 auto 3em;
  text-align: center;
}
footer .info .t-info h2 {
  margin: 0 auto 0.5em;
  font-weight: 700;
  font-size: 1.5em;
  position: relative;
  padding: 0 15px;
  display: inline-block;
}
footer .info .t-info h2:before {
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 1px;
  content: '';
  background: #000;
}
footer .info .t-info h2 span {
  position: relative;
  padding: 0 1em;
  background: #f6f6f6;
}
footer .info ul {
  display: flex;
  justify-content: space-between;
}
footer .info ul li {
  padding: 0 1.5em;
  border-right: 1px solid #cecece;
}
footer .info ul li:last-child {
  border: none;
}
footer .info ul li dl dt {
  margin-bottom: 1em;
  font-size: 1.1em;
}
footer .info ul li dl dd {
  font-size: 0.9em;
  font-weight: 300;
}
footer .info ul li dl dd a {
  margin: 1em 0;
  display: block;
  text-decoration: underline;
}
footer .contact {
  padding: 4em 0;
  background: #271d1a;
  color: #fff;
  text-align: center;
}
footer .contact p {
  font-weight: 700;
}
footer .contact .contact-title {
  font-size: 2em;
  letter-spacing: 0.02em;
}
footer .contact .contact-read {
  margin-bottom: 0.5em;
  font-size: 0.9em;
  font-weight: 500;
}
footer .contact .number {
  font-size: 3.8em;
  letter-spacing: 0.02em;
}
footer .contact .number img {
  margin-right: 0.5em;
  vertical-align: middle;
}
footer .contact .mail {
  font-size: 1.2em;
}
footer .contact a {
  text-decoration: underline;
  color: #fff;
}
footer .footer {
  padding: 2.5em 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-weight: 300;
}
footer .footer .l-area {
  width: 30%;
  font-size: 0.9em;
}
footer .footer .l-area .f-logo {
  margin-bottom: 1em;
}
footer .footer .r-area {
  width: 70%;
}
footer .footer .r-area .f-calendar {
  display: flex;
  justify-content: flex-end;
}
footer .footer .r-area .f-calendar > div:not(:last-of-type) {
  margin-right: 1.5em;
}
footer .footer .r-area .f-calendar h4 {
  font-weight: bold;
  font-size: 12.5px;
}
footer .footer .r-area .f-calendar h4 span {
  font-weight: normal;
}
footer .footer .r-area .f-calendar table {
  margin-bottom: 2em;
}
footer .footer .r-area .f-calendar table tr th, footer .footer .r-area .f-calendar table tr td {
  padding: .1em .5em;
  font-size: 11px;
}
footer .footer .r-area .f-calendar table tr th.off, footer .footer .r-area .f-calendar table tr td.off {
  background-color: #ddd;
  color: #ff0000;
}
footer .footer .r-area .f-calendar table tr.week td {
  background-color: #edf6ff;
}
footer .footer .r-area ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
footer .footer .r-area ul li {
  margin-bottom: 1em;
}
footer .footer .r-area ul li:after {
  content: "|";
  color: #949494;
  padding: 1em;
}
footer .footer .r-area ul li:first-child:before {
  content: "|";
  color: #949494;
  padding: 1em;
}
footer .footer .r-area .copyright {
  text-align: right;
  font-size: 0.9em;
}

/* notfound
---------------------------------------------------------------------------- */
#notfound {
  padding-top: 40px;
}
#notfound #content .inner {
  width: 95%;
  max-width: 750px;
  margin: 0 auto;
  padding: 8em 0;
  text-align: center;
}
#notfound #content .inner .logo {
  margin-bottom: 1.5em;
  font-weight: bold;
  font-size: 1.2em;
}
#notfound #content .inner .logo img {
  padding: 10px;
}
#notfound #content .inner .txt-404 {
  margin-bottom: 2.2em;
}
#notfound #content .inner .txt-404 dt {
  margin-bottom: 0;
  font-size: 4em;
  font-weight: bold;
  text-shadow: 0 0 5px #bdbdbd;
}
#notfound #content .inner .txt-404 dd {
  font-size: 1.4em;
  color: #a40000;
}
#notfound #content .inner .read {
  margin-bottom: 2.2em;
}
#notfound #content .inner .btn-home {
  text-align: center;
}
#notfound #content .inner .btn-home p {
  display: inline-block;
}
#notfound #content .inner .btn-home p a {
  display: block;
  padding: 5px 40px;
  color: #000;
  border: 1px solid #000;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  transition: all 0.15s linear;
  text-align: center;
  text-decoration: none;
}
#notfound #content .inner .btn-home p a:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

/* WP記事エリアの共通スタイル
---------------------------------------------------------------------------- */
.entry-format {
  zoom: 1;
  margin: 0 auto;
  word-wrap: break-word;
}
.entry-format:after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}
.entry-format p {
  margin: 0 auto 25px;
}
.entry-format em {
  font-style: italic;
  font-family: "MS P Gothic","ＭＳ Ｐゴシック";
}
.entry-format b {
  font-weight: bold;
}
.entry-format strong {
  font-weight: bold;
}
.entry-format a {
  text-decoration: underline;
}
.entry-format .alignleft {
  float: left;
  margin: 0 15px 10px 0;
}
.entry-format .alignright {
  float: right;
  margin: 0 0 10px 15px;
}
.entry-format .aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.entry-format ul {
  list-style-type: disc;
  margin: 0 0 15px 20px;
}
.entry-format ol {
  list-style-type: decimal;
  margin: 0 0 15px 20px;
}
.entry-format blockquote {
  font-family: Georgia, "Bitstream Charter", serif;
  font-style: italic;
  font-weight: normal;
  margin: 0 3em;
}
.entry-format h1, .entry-format h2, .entry-format h3, .entry-format h4, .entry-format h5, .entry-format h6 {
  margin: 0 0 0.5em 0;
  padding: 0;
  font-weight: bold;
}
.entry-format h1 {
  width: auto;
  font-size: 2em;
}
.entry-format h2 {
  margin-top: 3em;
  margin-bottom: 1em;
  border: none;
  font-size: 1.3em;
}
.entry-format h3 {
  margin-top: 1.5em;
  font-size: 1.2em;
}
.entry-format h4 {
  margin-top: 1em;
  font-size: 1.1em;
}
.entry-format h5 {
  font-size: 0.9em;
}
.entry-format h6 {
  font-size: 0.8em;
}
.entry-format address {
  font-style: italic;
}
.entry-format .gallery .gallery-item img {
  width: auto;
  max-width: 100% !important;
  height: auto;
}
.entry-format table, .entry-format th, .entry-format td {
  border-style: solid;
  border-color: #c2c2c2;
}
.entry-format iframe {
  width: 100%;
}
.entry-format table {
  width: 100%;
  margin: 0 0 1.5em;
  border-width: 1px 1px 0 0;
}
.entry-format th, .entry-format td {
  padding: 10px 15px;
  border-width: 0 0 1px 1px;
  text-align: left;
  vertical-align: top;
}
.entry-format th {
  background: #f3f3f3;
  font-size: 1em;
  font-weight: bold;
}
.entry-format td {
  font-size: 1em;
}
.entry-format hr {
  zoom: 1;
}
.entry-format hr:after {
  content: ".";
  clear: both;
  height: 0;
  display: block;
  visibility: hidden;
}

#topcontrol {
  z-index: 9999;
}

/*===========================================================================*/
/*  media quary:1000px  */
/*===========================================================================*/
@media screen and (max-width: 1000px) {
  body {
    font-size: 0.85em;
  }

  .btn-modal {
    overflow: hidden !important;
  }

  .entry-format table {
    width: 100% !important;
  }
  .entry-format th, .entry-format td {
    display: table-cell;
  }

  header {
    display: none;
  }

  .sp-header {
    display: block;
  }
  .sp-header .l-area {
    position: relative;
  }
  .sp-header .logo {
    margin: 0.5em 0;
    text-align: center;
  }
  .sp-header .logo img {
    max-width: 180px;
  }
  .sp-header ul.btn {
    position: absolute;
    right: 18px;
    top: 50%;
    display: flex;
    justify-content: flex-end;
    transform: translateY(-50%);
  }
  .sp-header ul.btn li {
    display: flex;
    align-items: center;
    margin: 0 0.25em;
  }
  .sp-header ul.btn li img {
    max-width: 45px;
    max-height: 44px;
    width: auto;
    height: auto;
    vertical-align: bottom;
  }

  /*　ハンバーガーボタン　*/
  .hamburger {
    display: block;
    position: fixed;
    z-index: 3;
    left: 13px;
    top: 14px;
    width: 42px;
    height: 42px;
    cursor: pointer;
    text-align: center;
  }

  .hamburger span {
    display: block;
    position: absolute;
    width: 30px;
    height: 2px;
    left: 6px;
    background: #555;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }

  .hamburger span:nth-child(1) {
    top: 10px;
  }

  .hamburger span:nth-child(2) {
    top: 20px;
  }

  .hamburger span:nth-child(3) {
    top: 30px;
  }

  /* ナビ開いてる時のボタン */
  .hamburger.active span:nth-child(1),
  .hamburger.active span:nth-child(3) {
    width: 14px;
  }

  .hamburger.active span:nth-child(1) {
    -webkit-transform: translate(17px, 5px) rotate(45deg);
    -moz-transform: translate(17px, 5px) rotate(45deg);
    transform: translate(17px, 5px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    -webkit-transform: translate(17px, -5px) rotate(-45deg);
    -moz-transform: translate(17px, -5px) rotate(-45deg);
    transform: translate(17px, -5px) rotate(-45deg);
  }

  .mypage {
    width: 90%;
    margin: 0.5em auto 1em;
  }
  .mypage a {
    border: 1px solid #000;
    padding: 1em 2em;
    background: #fff;
    font-size: 0.9em;
    display: block;
  }
  .mypage a:hover {
    text-decoration: none;
  }
  .mypage a img {
    margin-right: 0.5em;
    max-width: 15px;
    vertical-align: middle;
  }

  nav.globalMenuSp {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    color: #000;
    background: #fff;
    text-align: center;
    transform: translateX(-100%);
    transition: all 0.5s;
    width: 100%;
    height: 100vh;
  }

  nav.globalMenuSp ul {
    background: #eeeeee;
    margin: 0 auto;
    padding: 0;
    width: 100%;
  }

  nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    border-bottom: 1px solid #fff;
  }

  nav.globalMenuSp ul li:last-child {
    padding-bottom: 0;
    border-bottom: none;
  }

  nav.globalMenuSp ul li:hover {
    background: #ccc;
  }

  nav.globalMenuSp ul li a {
    display: block;
    color: #000;
    padding: 1em 0;
    font-size: 0.9em;
    text-decoration: none;
  }

  /* このクラスを、jQueryで付与・削除する */
  nav.globalMenuSp.active {
    transform: translateX(0%);
  }

  nav.globalMenuSp {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  nav.globalMenuSp .sub li.parent .child {
    background-color: #fff;
  }
  nav.globalMenuSp .sub li.parent .child li:not(:last-of-type) {
    border-bottom: 1px dotted rgba(0, 0, 0, 0.6);
  }
  nav.globalMenuSp .sub li.parent .child li a {
    position: relative;
    display: block;
    padding: 10px 10px 10px 38px;
    font-size: 14px;
    text-align: left;
  }
  nav.globalMenuSp .sub li.parent .child li a:before {
    position: absolute;
    content: "";
    top: 50%;
    left: 20px;
    width: 4px;
    height: 4px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: translateY(-50%) rotate(-45deg);
  }

  .sns {
    padding-top: 1em;
    padding-bottom: 5em;
  }
  .sns p {
    font-size: 0.8em;
  }
  .sns ul {
    background: #fff !important;
    display: flex;
    justify-content: center;
  }
  .sns ul li {
    width: 50px !important;
  }
  .sns ul li:hover {
    background: none !important;
  }

  /* footer
  ---------------------------------------------------------------------------- */
  footer .info {
    padding: 2em 0;
  }
  footer .info .t-info {
    margin: 0 auto 2em;
  }
  footer .info ul {
    flex-wrap: wrap;
  }
  footer .info ul li {
    width: 49%;
    margin-bottom: 1em;
    padding: 1em;
    border: none;
    background: #fff;
  }
  footer .info ul li dl dt {
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  footer .info ul li dl dd {
    font-size: 0.8em;
  }
  footer .info ul li dl dd a {
    margin: 1em 0 0 0;
  }
  footer .contact {
    padding: 2em 0;
  }
  footer .contact .contact-title {
    font-size: 1.5em;
  }
  footer .contact .number {
    font-size: 2.5em;
  }
  footer .contact .number img {
    max-width: 13px;
  }
  footer .contact .mail {
    font-size: 1em;
  }
  footer .footer {
    padding: 1em 0;
    display: block;
  }
  footer .footer .l-area {
    margin-bottom: 1em;
    width: 100%;
    text-align: left;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.7em;
  }
  footer .footer .l-area .f-logo {
    margin-bottom: 0;
  }
  footer .footer .l-area .f-logo img {
    margin-right: 1em;
    max-width: 150px;
  }
  footer .footer .r-area {
    width: 100%;
  }
  footer .footer .r-area .f-calendar {
    justify-content: center;
  }
  footer .footer .r-area ul {
    display: none;
  }
  footer .footer .r-area .copyright {
    text-align: center;
    font-size: 0.8em;
  }
}
/*===========================================================================*/
/*  media quary:767px  */
/*===========================================================================*/
@media screen and (max-width: 767px) {
  #container {
    margin-bottom: 40px;
  }

  /* ページタイトル　h1
  ---------------------------------------------------------------------------- */
  .page-title {
    padding: 0.5em;
    font-size: 1.4rem;
    font-weight: 700;
  }

  .sub-t {
    font-size: 1.1em;
  }

  table th {
    padding: 1em;
    display: block;
    width: 100%;
  }
  table td {
    padding: 1em;
    display: block;
    width: 100%;
  }

  /* notfound
  ---------------------------------------------------------------------------- */
  #notfound #content .inner {
    padding: 0;
  }
  #notfound #content .inner .logo {
    margin-bottom: 1.5em;
    font-weight: bold;
    font-size: 1.2em;
  }
  #notfound #content .inner .logo img {
    padding: 10px;
    max-width: 200px;
  }
  #notfound #content .inner .txt-404 {
    margin-bottom: 2em;
  }
  #notfound #content .inner .txt-404 dt {
    font-size: 2em;
  }
  #notfound #content .inner .txt-404 dd {
    font-size: 1em;
    color: #a40000;
  }
  #notfound #content .inner .read {
    margin-bottom: 2em;
  }

  .entry-format table th, .entry-format table td {
    display: block;
    width: 100%;
  }

  .form {
    margin: 0 auto 2em;
  }
  .form .inner {
    width: 98%;
  }
  .form .inner dl {
    display: block;
  }
  .form .inner dl dt {
    width: 100%;
    padding: 10px;
  }
  .form .inner dl dt span {
    top: 12px;
  }
  .form .inner dl dd {
    width: 100%;
    min-height: auto;
    padding: 10px 10px 15px 10px;
    /*  inputデザイン  */
  }
  .form .inner dl dd .inText {
    padding: 0.5em 1em;
    box-sizing: border-box;
    margin: 0;
    vertical-align: top;
    width: 100%;
    border: 1px solid #d6d6d6;
    border-radius: 4px;
    border-radius: 5px;
    font-size: 0.9rem;
  }

  .t-category {
    margin: 0 auto 2em;
    text-align: center;
  }
  .t-category h2 {
    font-size: 1.2em;
  }

  .inblock-s .read {
    margin-bottom: 4em;
  }

  .category-item {
    padding: 2em 0;
  }
  .category-item ul li {
    margin-bottom: 1.5em;
  }
  .category-item ul li .image-round {
    width: 110px;
    height: 110px;
  }
  .category-item ul li span {
    font-size: 0.9em;
  }

  footer .footer .r-area .f-calendar {
    flex-wrap: wrap;
  }
  footer .footer .r-area .f-calendar > div {
    width: 100%;
  }
  footer .footer .r-area .f-calendar > div:not(:last-of-type) {
    margin-right: 0;
  }
  footer .footer .r-area .f-calendar h4 {
    text-align: center;
  }
  footer .footer .r-area .f-calendar table {
    max-width: 180px;
  }
  footer .footer .r-area .f-calendar table tr th, footer .footer .r-area .f-calendar table tr td {
    display: table-cell;
    white-space: nowrap;
  }
}
/*===========================================================================*/
/*  media quary:479px  */
/*===========================================================================*/
@media screen and (max-width: 479px) {
  /* footer
  ---------------------------------------------------------------------------- */
  footer .info {
    padding: 2em 0 1em 0;
  }
  footer .info .t-info {
    margin: 0 auto 1em;
  }
  footer .info .t-info h2 {
    font-size: 1.2em;
    margin: 0;
  }
  footer .info .t-info p {
    font-size: 0.8em;
  }
  footer .info ul {
    flex-wrap: wrap;
  }
  footer .info ul li {
    width: 95%;
    margin: 0 auto 1em;
    padding: 1em;
    border: none;
    background: #fff;
  }
  footer .info ul li dl dt {
    margin-bottom: 0.5em;
    font-size: 1em;
  }
  footer .info ul li dl dd {
    font-size: 0.8em;
  }
  footer .info ul li dl dd a {
    margin: 1em 0 0 0;
  }
  footer .contact {
    padding: 1.5em 0;
  }
  footer .contact .contact-title {
    font-size: 1.2em;
  }
  footer .contact .contact-read {
    font-size: 0.8em;
  }
  footer .contact .number {
    font-size: 2em;
  }
  footer .contact .number img {
    max-width: 10px;
  }
  footer .footer {
    padding: 0.5em 0;
    display: block;
  }
  footer .footer .l-area {
    margin-bottom: 1em;
    width: 100%;
    text-align: center;
    display: block;
  }
  footer .footer .l-area .f-logo img {
    margin-right: 0;
  }
}
