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

		function.sass
		
		scssファイル内で使う関数を定義
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		reset.sass
		
		要素のデフォルトスタイル、フォントサイズのリセット
		
------------------------------------------------------------------------- */
/* -------------------------------------------------------------------------

		style 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, menu, nav, section, summary,
time, mark, audio, video, main {
  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, menu, nav, section, main {
  display: block;
}

ol, 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;
}

input, textarea {
  margin: 0;
  padding: 0;
}

small {
  font-size: smaller;
}

sup {
  font-size: 0.7em;
  vertical-align: top;
}

sub {
  font-size: 0.7em;
  vertical-align: baseline;
}

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

		font styles
		
------------------------------------------------------------------------- */
/* YUI 3.9.1 (build 5852) Copyright 2013 Yahoo! Inc. http://yuilibrary.com/license/ */
/**
 * Percents could work for IE, but for backCompat purposes, we are using keywords.
 * x-small is for IE6/7 quirks mode.
 */
body {
  font: 81.25%/1.231 arial,sans-serif;
  *font-size: small;
  /* for IE */
  *font: x-small;
  /* for IE in quirks mode */
}

/**
 * Nudge down to get to 13px equivalent for these form elements
 */
select,
input,
button,
textarea {
  font: 99% arial,sans-serif;
}

/**
 * To help tables remember to inherit
 */
table {
  font-size: inherit;
  font: 100%;
}

/**
 * Bump up IE to get to 13px equivalent for these fixed-width elements
 */
pre,
code,
kbd,
samp,
tt {
  font-family: monospace;
  *font-size: 108%;
  line-height: 100%;
}

/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssfonts {
  display: none;
}

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

		vars.sass
		
		scssファイル内で使う変数を定義
		
------------------------------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* $color_sub : ; */
/* text color
------------------------------------------------- */
/* fonts
------------------------------------------------- */
/* -------------------------------------------------------------------------

		util.sass
		
		案件に依存せず汎用的に使うClassを定義
		
------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.image_text_view_l,
.image_text_view_r {
  overflow: hidden;
}
@media only screen and (max-width: 736px) {
  .image_text_view_l,
  .image_text_view_r {
    overflow: visible;
  }
}

.image_text_view_l .img {
  float: left;
  margin-right: 50px;
}
@media only screen and (max-width: 736px) {
  .image_text_view_l .img {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
  }
}

.image_text_view_r .img {
  float: right;
  margin-left: 50px;
}
@media only screen and (max-width: 736px) {
  .image_text_view_r .img {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
  }
}

.image_text_view_l .img > div,
.image_text_view_r .img > div {
  margin-bottom: 15px;
}

.image_text_view_l .img img,
.image_text_view_r .img img {
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

.image_text_view_l .text,
.image_text_view_r .text {
  overflow: hidden;
  line-height: 1.8;
}
.image_text_view_l .text p,
.image_text_view_r .text p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.image_text_view_l .text p:last-child,
.image_text_view_r .text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 736px) {
  .image_text_view_l .text,
  .image_text_view_r .text {
    overflow: visible;
  }
}

@media only screen and (max-width: 736px) {
  .image_text_view_l .text {
    margin-left: 0 !important;
  }
}

@media only screen and (max-width: 736px) {
  .image_text_view_r .text {
    margin-right: 0 !important;
  }
}

/* br
------------------------------------------------- */
.sp_none {
  display: block;
}

.pc_none {
  display: none;
}

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

  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .sp_none {
    display: none!important;
  }

  .pc_none {
    display: block;
  }
}
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

/*for IE 5.5-7*/
.clear_fix　 {
  zoom: 　1;
}

.clear_both　 {
  clear: both;
  height: 1px;
  font-size: 1px;
  text-align: center;
  line-height: 0;
}

.clear　 {
  clear: both;
}

/* float
------------------------------------------------- */
.float_r {
  float: right;
  display: inline;
}

.float_l {
  float: left;
  display: inline;
}

/* margin + padding （0から5刻みでクラスを定義 ex: mb0, mb5, mb10...）
------------------------------------------------- */
.mb0 {
  margin-bottom: 0px !important;
}

.mt0 {
  margin-top: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.ml80 {
  margin-left: 80px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pl80 {
  padding-left: 80px !important;
}

/* align
------------------------------------------------- */
.align_l　 {
  text-align: left !important;
}

.align_r　 {
  text-align: right !important;
}

.align_c　 {
  text-align: center !important;
}

/* font
------------------------------------------------- */
.smaller {
  font-size: 85% !important;
}

.larger {
  font-size: larger !important;
}

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

/* display
------------------------------------------------- */
.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}
.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}
.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

* html .just_layout .just_item {
  display: 　inline;
  zoom: 　1;
}

*:first-child + html .just_layout .just_item {
  display: 　inline;
  zoom: 　1;
}

/* list
------------------------------------------------- */
.list_disc {
  margin-left: 　1 0.2em;
  list-style: 　disc;
}

.list_square {
  margin-left: 　1 0.2em;
  list-style: 　square;
}

.list_decimal {
  margin-left: 　1 0.7em;
  list-style: 　decimal;
}

.list_decimal_zero {
  margin-left: 　2 0.3em;
  list-style: 　decimal-leading-zero;
}

/* list style (IE8以上)
------------------------------------------------- */
/* ---- ※ ---- */
.list_asterisk > li {
  text-indent: -1.3em;
  margin-left: 1.3em;
}
.list_asterisk > li:before {
  content: "※ ";
}
.list_asterisk > li > * {
  text-indent: 0;
}

/* ---- ・ ---- */
.list_dot > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_dot > li:before {
  content: "・";
}
.list_dot > li > * {
  text-indent: 0;
}

/* ---- ● ---- */
.list_circle > li {
  text-indent: -1em;
  margin-left: 1em;
}
.list_circle > li:before {
  content: "● ";
}
.list_circle > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.list_decimal_01 > li:before {
  content: counter(decimal_01) ". ";
}
.list_decimal_01 > li > * {
  text-indent: 0;
}

/* ---- (1) ---- */
.list_decimal_02 > li {
  counter-increment: decimal_02;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_02 > li:before {
  content: "(" counter(decimal_02) ") ";
}
.list_decimal_02 > li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_03 > li:before {
  content: "[" counter(decimal_03) "] ";
}
.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_04 > li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.list_decimal_04 > li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 > li:before {
  content: counter(upper_alpha_01,upper-alpha) ") ";
}
.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

/* 注釈 (IE8以上)
------------------------------------------------- */
/* ---- ※（注釈） ---- */
.notes {
  margin-left: 1.3em;
  text-indent: -1.3em;
}
.notes:before {
  content: "※ ";
}
.notes > * {
  text-indent: 0;
}

/* ---- ※n （番号付き注釈）---- */
.notes_num {
  counter-increment: decimal_notes;
  margin-left: 1.9em;
  text-indent: -1.9em;
}
.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}
.notes_num > * {
  text-indent: 0;
}

/* 章番号用mixin (IE8以上)
usage:
■キャプションに章番号をつける場合
$counterName: oreoreCounter;
.parent-section {
	@include resetCounter($counterName);
	h2 {
		@include addCounter($counterName, '第', '章');
	}
}
■入れ子になってるリストに通し番号(1-1-1など）を付ける場合
$counterName: listCounter;
ol {
	@include resetCounter($counterName);
	li {
		@include addCounters($counterName, '-');
	}
}
------------------------------------------------- */
/* グリッドレイアウト用mixin (IE8以上)
usage:
■12分割で間隔が20pxのグリッドのクラスを作る場合
・SASS
@include grid_system(12, 20px);
・HTML
<div class="grid_system_12">  ← このdivへの幅指定はNG
	<div class="grid_6"></div> ┐
	<div class="grid_3"></div> ├ 子要素は合計が12になるようにクラス名を付ける
	<div class="grid_3"></div> ┘
</div>
------------------------------------------------- */
/* -------------------------------------------------------------------------

		module.sass
		
		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義
		
------------------------------------------------------------------------- */
/* text link
------------------------------------------------- */
a {
  color: #333333;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
a.img_hover:hover img {
  opacity: .7;
}

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  transition: all 0.3s ease-in-out 0s;
  -ms-transition: 　none;
}

/* form
------------------------------------------------- */
input[type="text"],
input[type="submit"],
textarea {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  margin: 0;
  background-color: #fff;
  font-size: 16px;
  box-sizing: border-box;
  padding: 1% 2%;
  border-radius: 0;
  outline: none;
  border: 1px solid #aaa;
  -webkit-transition: all .3s;
  transition: all .3s;
}
input[type="text"].narrow,
input[type="submit"].narrow,
textarea.narrow {
  width: 20%;
}

input[type="text"] {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  input[type="text"] {
    width: 100%;
  }
}

input[type="text"]:focus,
textarea:focus {
  box-shadow: 0 0 7px #52a8ec;
  border: 1px solid #52a8ec;
}

input[type="radio"],
input[type="checkbox"] {
  margin-right: 5px;
  vertical-align: baseline;
  border-style: none;
}

label {
  margin-right: 15px;
  cursor: pointer;
}

input[type="submit"],
input[type="button"] {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: block;
  width: 360px;
  border-radius: 0;
  -webkit-appearance: none;
}

select {
  font-size: 16px;
  padding: 1% 2%;
}

textarea {
  height: 200px;
}
@media only screen and (max-width: 736px) {
  textarea {
    height: 150px;
  }
}

.contact_tbl {
  margin-top: 20px;
}

.require {
  background-color: #333;
  color: #fff;
  font-style: normal;
  font-weight: normal;
  font-size: 1.2rem;
  margin-left: 10px;
  padding: 3px 5px;
}

.mw_wp_form .error {
  background-color: #FD0100;
  color: #fff;
  padding: 3px 5px;
}

.btnArea {
  text-align: center;
}
.btnArea > span {
  display: inline-block;
  margin-right: 20px;
}
.btnArea > span:last-child {
  margin-right: 0;
}
.btnArea > span input {
  background-color: #333;
  color: #fff;
  cursor: pointer;
  padding: 15px 0;
}
.mw_wp_form_confirm .btnArea > span.btn_confirm input {
  background-color: #FD0100;
}
.btnArea > span input:hover {
  opacity: 0.7;
}

.lesson_box {
  position: relative;
  z-index: 10;
}
.contactComplete .btn01 {
  margin-top: 35px;
  text-align: center;
}

/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all .3s ease-out;
  -moz-transition: all .3s ease-out;
  -ms-transition: all .3s ease-out;
  -o-transition: all .3s ease-out;
  transition: all .3s ease-out;
}
.animation.fast, .wp-pagenavi a,
.pagenavi a {
  -webkit-transition: all .15s ease-out;
  -moz-transition: all .15s ease-out;
  -ms-transition: all .15s ease-out;
  -o-transition: all .15s ease-out;
  transition: all .15s ease-out;
}
.animation.slow {
  -webkit-transition: all .5s ease-out;
  -moz-transition: all .5s ease-out;
  -ms-transition: all .5s ease-out;
  -o-transition: all .5s ease-out;
  transition: all .5s ease-out;
}
.animation.cubic {
  -webkit-transition: all 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

/* column
------------------------------------------------- */
.left_column {
  float: left;
}

.right_column {
  float: right;
}

/* pager - WPのページャー
------------------------------------------------- */
.wp-pagenavi,
.pagenavi {
  width: 100%;
  margin: 80px auto 30px;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi,
  .pagenavi {
    margin-top: 30px;
  }
}
.wp-pagenavi > div,
.pagenavi > div {
  display: inline-block;
}
.wp-pagenavi span, .wp-pagenavi a,
.pagenavi span,
.pagenavi a {
  height: 40px;
  line-height: 40px;
  display: inline-block !important;
  margin-right: 2px;
  vertical-align: top;
  padding: 0 12px;
  border: #ccc 1px solid;
  background-color: #fff;
}
.wp-pagenavi span,
.pagenavi span {
  background-color: #ccc;
}
.wp-pagenavi a:hover,
.pagenavi a:hover {
  background-color: #333333;
  border-color: #333333;
  text-decoration: none;
  color: #fff;
}
.wp-pagenavi .prevpostslink a,
.wp-pagenavi .nextpostslink a,
.pagenavi .prevpostslink a,
.pagenavi .nextpostslink a {
  width: auto;
  position: absolute;
  top: 0;
  background-color: inherit !important;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi .prevpostslink a,
  .wp-pagenavi .nextpostslink a,
  .pagenavi .prevpostslink a,
  .pagenavi .nextpostslink a {
    top: -50px;
  }
}
.wp-pagenavi .prevpostslink a:hover,
.wp-pagenavi .nextpostslink a:hover,
.pagenavi .prevpostslink a:hover,
.pagenavi .nextpostslink a:hover {
  background-color: inherit !important;
}
.wp-pagenavi .prevpostslink a,
.pagenavi .prevpostslink a {
  left: 0;
  background-position: 0 center;
  background-repeat: no-repeat;
  padding-left: 58px;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi .prevpostslink a,
  .pagenavi .prevpostslink a {
    background-size: auto 100%;
    padding-left: 43px;
  }
}
.wp-pagenavi .nextpostslink a,
.pagenavi .nextpostslink a {
  right: 0;
  background-position: right center;
  background-repeat: no-repeat;
  padding-right: 58px;
}
@media only screen and (max-width: 768px) {
  .wp-pagenavi .nextpostslink a,
  .pagenavi .nextpostslink a {
    background-size: auto 100%;
    padding-right: 43px;
  }
}

.pagenavi {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .pagenavi {
    width: 94%;
  }
}
.pagenavi li {
  width: 33%;
  float: left;
}
@media only screen and (max-width: 768px) {
  .pagenavi li {
    width: 25%;
  }
}
.pagenavi li a {
  display: block !important;
  margin-right: 0;
}
.pagenavi li.prevpostslink a, .pagenavi li.nextpostslink a {
  position: relative;
}
.pagenavi li.prevpostslink a::before, .pagenavi li.nextpostslink a::before {
  position: absolute;
  top: 50%;
  margin-top: -.5em;
  font-size: 1.8rem;
}
.pagenavi li.prevpostslink a:hover, .pagenavi li.nextpostslink a:hover {
  background-color: #000;
}
.pagenavi li.prevpostslink a:hover::before, .pagenavi li.nextpostslink a:hover::before {
  color: #fff;
}
.pagenavi li.prevpostslink.empty span, .pagenavi li.nextpostslink.empty span {
  background-color: transparent;
  display: block;
  border: none;
}
.pagenavi li.prevpostslink a::before {
  left: 7%;
}
@media only screen and (max-width: 768px) {
  .pagenavi li.prevpostslink a::before {
    display: none;
  }
}
.pagenavi li.nextpostslink a::before {
  right: 7%;
}
@media only screen and (max-width: 768px) {
  .pagenavi li.nextpostslink a::before {
    display: none;
  }
}
.pagenavi li.list {
  width: 34%;
}
@media only screen and (max-width: 768px) {
  .pagenavi li.list {
    width: 50%;
  }
}
.pagenavi li.list a {
  border-top-color: #333333;
  border-right: none;
  border-bottom-color: #333333;
  border-left: none;
  background-color: #333333;
  color: #fff;
}
.pagenavi li.list a::before {
  margin-right: 1em;
}
@media only screen and (max-width: 768px) {
  .pagenavi li.list a::before {
    display: none;
    margin-right: 0;
  }
}
.pagenavi li.list a:hover {
  background-color: #000;
}

/* pagenavi */
/* button
------------------------------------------------- */
.button a, .button input {
  display: block;
  text-align: center;
  color: #fff;
  background-color: #333;
  padding: 5px 15px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.button a::before, .button a::after, .button input::before, .button input::after {
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.button a:hover, .button input:hover {
  text-decoration: none;
  background-color: #666;
}

/* icon
------------------------------------------------- */
/* post_default
------------------------------------------------- */
.detail_box .entry-content {
  /* blockquote */
  /* ul */
  margin-top: 20px;
}
.detail_box .entry-content h1 {
  background-color: #ddd;
  font-size: 2rem;
  border-left: #333 5px solid;
  padding: 10px 18px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content h1 {
    font-size: 1.3rem;
    padding: 7px 10px;
  }
}
.detail_box .entry-content h2 {
  position: relative;
  font-size: 2.0rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content h2 {
    font-size: 1.3rem;
  }
}
.detail_box .entry-content h2::before {
  content: "";
  width: 13px;
  height: 13px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  border: #666 3px solid;
  box-sizing: border-box;
  margin-right: 10px;
}
.detail_box .entry-content h3 {
  color: #333333;
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content h3 {
    font-size: 1.2rem;
  }
}
.detail_box .entry-content > div {
  max-width: 100%;
}
.detail_box .entry-content p {
  line-height: 1.714285714;
  margin: 0 0 24px;
  margin: 0 0 1.714285714rem;
}
.detail_box .entry-content img,
.detail_box .entry-content .editor-attachment {
  border: 0;
  max-width: 100%;
}
.detail_box .entry-content img.size-full {
  width: auto/9;
  /* Prevent stretching of full-size images in IE8 */
}
.detail_box .entry-content img[class*="wp-image-"] {
  height: auto;
  max-width: 100%;
}
.detail_box .entry-content img[class*="align"],
.detail_box .entry-content img[class*="wp-image-"],
.detail_box .entry-content img[class*="attachment-"] {
  height: auto;
  /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
.detail_box .entry-content img.mce-wp-nextpage {
  border-radius: 0;
  box-shadow: none;
}
.detail_box .entry-content img.wp-smiley {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0;
}
.detail_box .entry-content .wp-caption {
  background: transparent;
  border: none;
  margin: 0;
  padding: 4px;
  text-align: left;
}
.detail_box .entry-content .wp-caption-dt {
  margin: 0;
}
.detail_box .entry-content .wp-caption .wp-caption-text,
.detail_box .entry-content .wp-caption-dd {
  color: #757575;
  font-style: italic;
  font-size: 12px;
  font-size: 0.857142857rem;
  line-height: 2;
  margin: 0 0 24px;
  margin: 0 0 1.71429rem;
}
.detail_box .entry-content .alignleft {
  display: inline;
  float: left;
  margin: 12px 24px 12px 0;
  margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content .alignleft {
    width: 50%;
  }
}
.detail_box .entry-content .alignright {
  display: inline;
  float: right;
  margin: 12px 0 12px 24px;
  margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content .alignright {
    width: 50%;
  }
}
.detail_box .entry-content .aligncenter {
  clear: both;
  display: block;
  margin-top: 12px;
  margin-top: 0.857142857rem;
  margin-bottom: 12px;
  margin-bottom: 0.857142857rem;
  margin-left: auto;
  margin-right: auto;
}
.detail_box .entry-content img[class*="wp-image-"],
.detail_box .entry-content img[class*="attachment-"] {
  height: auto;
  max-width: 100%;
}
.detail_box .entry-content blockquote {
  background-color: #F5F4F1;
  padding: 30px 35px;
  position: relative;
  margin: 15px 0;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content blockquote {
    padding: 20px 25px;
  }
}
.detail_box .entry-content blockquote::before {
  content: "“";
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 4rem;
  color: #333333;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content blockquote::before {
    top: 5px;
  }
}
.detail_box .entry-content blockquote::after {
  content: "”";
  position: absolute;
  right: 10px;
  bottom: -15px;
  font-size: 4rem;
  color: #333333;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content blockquote::after {
    bottom: -20px;
  }
}
.detail_box .entry-content blockquote p {
  margin-bottom: 0 !important;
}
.detail_box .entry-content ul li, .detail_box .entry-content ol li {
  list-style-position: inside;
  margin-bottom: 10px;
}
.detail_box .entry-content ul li li, .detail_box .entry-content ol li li {
  padding-left: 2em;
  margin-bottom: 5px;
}
.detail_box .entry-content ul li {
  list-style-type: disc;
}
.detail_box .entry-content ol li {
  list-style-type: decimal;
}
.detail_box .entry-content table {
  border: #ccc 1px solid;
  width: 100%;
}
.detail_box .entry-content table th, .detail_box .entry-content table td {
  border: #ccc 1px solid;
  padding: 10px 15px;
}
@media only screen and (max-width: 768px) {
  .detail_box .entry-content table th, .detail_box .entry-content table td {
    padding: 5px 3%;
    font-size: 1.0rem;
  }
}
.detail_box .entry-content table th {
  background-color: #E9EDF1;
  text-align: left;
  font-weight: 500;
}

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

		layout.sass
		
		ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義
		
------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  position: relative;
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}

/* body
------------------------------------------------- */
body {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  background-color: #fff;
  color: #333333;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.7;
  position: relative;
  overflow-x: hidden;
  right: 0;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

#page {
  position: relative;
}

/* noscript
------------------------------------------------- */
.noscript {
  background-color: #333333;
  padding: 　10px 0;
  text-align: 　center;
  font-weight: 　bold;
}

/* header
------------------------------------------------- */
.site_header .site_h1 {
  font-size: 1.4rem;
  line-height: 1;
  width: 960px;
  margin: 15px auto 0;
}
@media only screen and (max-width: 768px) {
  .site_header .site_h1 {
    margin-top: 10px;
    font-size: 1.1rem;
    width: 90%;
  }
}
.site_header > .inner {
  position: relative;
  width: 960px;
  min-height: 60px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner {
    width: 90%;
    margin-bottom: 10px;
  }
}
.site_header > .inner .logo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 70px;
  margin-top: 12px;
  margin-bottom: 15px;
  float: left;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .logo {
    width: 50%;
    height: auto;
    margin-bottom: 0;
  }
}
.site_header > .inner .logo_txt {
  display: inline-block;
  font-size: 3rem;
  line-height: 1.2;
}
.site_header > .inner .logo_txt a {
  color: #333333;
}
.site_header > .inner .logo_txt a:hover {
  text-decoration: none;
}
.site_header > .inner .hd_tel {
  position: absolute;
  right: 0;
  top: 0;
  line-height: 1;
  font-size: 2.6rem;
  font-weight: 600;
}
.site_header > .inner .hd_tel span {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .hd_tel {
    right: 35px;
    top: 15px;
    font-size: 3rem;
    line-height: 1;
  }
}
.site_header > .inner .hd_tel a {
  color: #333;
}
.site_header > .inner .hd_contact {
  position: absolute;
  right: 0;
  bottom: 23px;
}
.site_header > .inner .hd_contact span {
  display: inline-block;
}

@media only screen and (max-width: 768px) {
  .site_header > .inner .hd_contact {
    right: 75px;
    top: 15px;
  }
}
.site_header > .inner .hd_contact a {
  width: 202px;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .hd_contact a {
    width: auto;
    font-size: 3rem;
    color: #333;
    background: none;
    padding: 0;
    line-height: 1;
  }
}
.site_header > .inner .hd_free {
  float: right;
  width: 670px;
  height: 100%;
  padding: 15px 0;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .hd_free {
    width: 100%;
  }
}

/* drawer-nav
------------------------------------------------- */
.drawer-hamburger {
  width: 3rem;
  top: 20px;
}

.drawer-nav {
  padding: 20px;
}
.drawer-nav .drawer-menu {
  border-bottom: #333 1px dotted;
  margin-bottom: 20px;
}
.drawer-nav .drawer-menu a {
  display: block;
  padding: 4px 0;
}
.drawer-nav .sp_free {
  margin-bottom: 20px;
}
.drawer-nav .sns_links a {
  background-color: #333;
  color: #fff;
  padding: 2px 0;
  width: 25px;
  text-align: center;
  border-radius: 3px;
  display: inline-block;
}

/* gloal navi
------------------------------------------------- */
.main_visual {
  margin-bottom: 60px;
}
.mv_img {
  margin-top: 30px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .main_visual {
    margin-bottom: 30px;
  }
  .mv_img {
    margin-top: 0;
  }
}

.main_visual .mv_slide li {
  text-align: center;
}
.main_visual .mv_slide li img {
  width: 100%;
  height: auto;
  max-width: 960px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .main_visual .mv_slide {
    display: none;
  }
}
.main_visual .mv_slide_sp {
  display: none;
}
@media only screen and (max-width: 480px) {
  .main_visual .mv_slide_sp {
    display: block;
  }
}

/* gloal navi
------------------------------------------------- */
.global_nav {
  background-color: #333333;
}
.global_nav ul {
  display: flex;
  flex-wrap: wrap;
  width: 960px;
  margin: 0 auto;
  border-left: solid 1px #666;
}
.global_nav ul li {
  -moz-box-flex: 1;
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  box-sizing: border-box;
  border-right: solid 1px #666;
}
.global_nav ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding: 15px;
  height: 100%;
  box-sizing: border-box;
  word-break: break-all;
  line-height: 1.5;
  transition: all 0.2s ease-in-out 0s;
}
.global_nav ul li a:hover {
  background-color: #666;
  text-decoration: none;
}

/* lower_ttl
------------------------------------------------- */
.lower_ttl {
  position: relative;
  min-height: 150px;
  background-color: #999;
}
@media only screen and (max-width: 768px) {
  .lower_ttl {
    min-height: 100px;
  }
}
.lower_ttl h2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  line-height: 150px;
  text-align: center;
  color: #fff;
  text-shadow: 1px 1px 0px #000;
  font-weight: bold;
  font-size: 3.6rem;
}
.lower_ttl figure {
  text-align: center;
  overflow: hidden;
  height: 280px;
}
.lower_ttl figure img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 768px) {
  .lower_ttl h2 {
    top: 50%;
    line-height: 1.4;
    font-size: 2.8rem;
    margin-top: -1.5rem;
  }
  .lower_ttl figure {
    height: auto;
  }
}

/* topicpath
------------------------------------------------- */
#crumbs {
  padding: 5px 0;
  width: 960px;
  margin: 0 auto 30px;
}
@media only screen and (max-width: 768px) {
  #crumbs {
    width: 88%;
    margin-bottom: 15px;
  }
}
#crumbs li {
  line-height: 1;
  display: inline-block;
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  #crumbs li {
    font-size: 1.1rem;
  }
}
#crumbs li:after {
  padding-right: 5px;
}
#crumbs li:last-child:after {
  padding-right: 0;
}
#crumbs li a {
  text-decoration: underline;
}
#crumbs li a:hover {
  text-decoration: none;
}

/* home_content
------------------------------------------------- */
/* page_conetnt
------------------------------------------------- */
.page_content {
  width: 960px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  .page_content {
    width: 88%;
    margin-bottom: 30px;
  }
}
.page_content > .inner {
  width: 960px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .page_content > .inner {
    width: 100%;
  }
}

/* primary_area
------------------------------------------------- */
.primary_area {
  width: 710px;
  float: left;
}
@media only screen and (max-width: 768px) {
  .primary_area {
    width: 100%;
    float: none;
  }
}
.primary_area .writer_prof {
  border: #ddd 3px solid;
  padding: 20px;
  box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .primary_area .writer_prof {
    padding: 10px;
    border-width: 2px;
  }
}
.primary_area .writer_prof h3 {
  background-color: #ddd;
  padding: 3px 5px;
  margin-bottom: 20px;
}
.primary_area .writer_prof dt {
  width: 80px;
  float: left;
  vertical-align: middle;
  margin-right: 15px;
}
.primary_area .writer_prof dt img {
  vertical-align: middle;
}
.primary_area .writer_prof dd {
  overflow: hidden;
}

/* secondary_area
------------------------------------------------- */
.secondary_area {
  width: 220px;
  float: right;
}
@media only screen and (max-width: 768px) {
  .secondary_area {
    width: 100%;
    float: none;
  }
}
.secondary_area #side h3 {
  background: #666;
  padding: 5px 10px;
  color: #fff;
  margin-bottom: 20px;
}
.secondary_area #side .side_category h3,
.secondary_area #side .side_post h3,
.secondary_area #side .side_monthly h3 {
  margin-bottom: 0;
}
.secondary_area #side > nav {
  margin-bottom: 30px;
}
.secondary_area .side_search input {
  box-sizing: border-box;
  float: left;
  margin-bottom: 0;
  padding: 1% 2%;
  vertical-align: middle;
  border: 1px solid #666;
}
.secondary_area .side_search input[type="text"] {
  width: 70%;
}
.secondary_area .side_search input[type="submit"] {
  width: 30%;
  background-color: #666;
  color: #fff;
  cursor: pointer;
  border-left: none;
}
.secondary_area .side_search input[type="submit"]:hover {
  background-color: #999;
}
.secondary_area .side_category a {
  display: block;
  padding: 7px 0;
  position: relative;
}
.secondary_area .side_category a::before, .secondary_area .side_category a::after {
  content: "";
  width: 5px;
  height: 1px;
  position: absolute;
  right: 7px;
  top: 50%;
  background-color: #999;
}
.secondary_area .side_category a::before {
  margin-top: 1px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.secondary_area .side_category a::after {
  margin-top: -2px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.secondary_area .side_category li {
  border-bottom: #999 1px dotted;
}
.secondary_area .side_post a {
  display: block;
  border-bottom: #999 1px dotted;
  padding: 10px 0;
}
.secondary_area .side_post time {
  margin-right: 15px;
  font-size: 1.4rem;
}
.secondary_area .side_post dd {
  font-weight: bold;
}
.secondary_area .author-profile {
  margin-bottom: 15px;
  font-size: 1.4rem;
}
.secondary_area .author-profile figure {
  display: inline-block;
  vertical-align: middle;
  width: 80px;
  margin-right: 10px;
}
.secondary_area .side_monthly a {
  display: block;
  padding: 7px 0;
}
.secondary_area .side_monthly li {
  border-bottom: #999 1px dotted;
}
.secondary_area .side_nav li::before {
  content: "●";
  font-size: 1.0rem;
  margin-right: 5px;
  display: inline-block;
  vertical-align: middle;
}
.secondary_area .side_nav a {
  display: inline-block;
}
.secondary_area #wp-calendar {
  border-top: #ddd 1px solid;
  width: 100%;
}
.secondary_area #wp-calendar caption {
  font-weight: bold;
}
.secondary_area #wp-calendar thead th {
  border: #ddd 1px solid;
}
.secondary_area #wp-calendar thead th:nth-child(6) {
  background-color: #C0DDF9;
}
.secondary_area #wp-calendar thead th:nth-child(7) {
  background-color: #F5D0D3;
}
.secondary_area #wp-calendar td {
  text-align: center;
  border: #ddd 1px solid;
}
.side_calendar td a {
  text-decoration: underline;
  color: #FE0000;
}
.secondary_area #wp-calendar tfoot td {
  border: none;
}
.secondary_area #wp-calendar #today {
  background-color: #ddd;
}
.secondary_area #wp-calendar #prev {
  text-align: left;
}
.secondary_area #wp-calendar #next {
  text-align: right;
}
.secondary_area .side_info {
  font-size: 1.3rem;
  margin-bottom: 30px;
}
.secondary_area .side_info .side_logo {
  margin-bottom: 10px;
  display: block;
}
.secondary_area .side_info .side_info_img {
  margin-bottom: 10px;
}
.secondary_area .side_free {
  margin-bottom: 30px;
}
.secondary_area .side_bnr figure {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .secondary_area .side_bnr figure {
    text-align: center;
    margin-bottom: 20px;
  }
}

/* relation_posts
------------------------------------------------- */
.relation_posts h4 {
  background: #666;
  padding: 5px 10px;
  color: #fff;
  margin-bottom: 20px;
  position: relative;
}
.relation_posts h4 span {
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -.5em;
  line-height: 1;
}
.relation_posts h4 span a {
  display: block;
  background-color: #fff;
  color: #333;
  padding: 5px 5px;
  font-size: 1.2rem;
  border-radius: 3px;
}
.relation_posts .cp_list {
  padding-bottom: 0;
}

/* footer
------------------------------------------------- */
.ft_free {
  width: 960px;
  margin: 0 auto 60px;
}
@media only screen and (max-width: 768px) {
  .ft_free {
    width: 88%;
    margin-bottom: 30px;
  }
}

.ft_bnr {
  width: 960px;
  margin: 0 auto 60px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .ft_bnr {
    width: 88%;
    margin-bottom: 30px;
  }
}
.ft_bnr.gallery1 figure {
  width: 940px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery1 figure {
    width: 48%;
  }
}
.ft_bnr.gallery2 figure {
  width: 460px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery2 figure {
    width: 48%;
  }
}
.ft_bnr.gallery3 figure {
  width: 300px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery3 figure {
    width: 48%;
  }
}
.ft_bnr.gallery4 figure {
  width: 220px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery4 figure {
    width: 48%;
  }
}
.ft_bnr.gallery5 figure {
  width: 172px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery5 figure {
    width: 48%;
  }
}
.ft_bnr.gallery6 figure {
  width: 140px;
}
@media only screen and (max-width: 768px) {
  .ft_bnr.gallery6 figure {
    width: 48%;
  }
}
.ft_bnr.gallery3::after {
  content: "";
  display: block;
  width: 300px;
}
.ft_bnr.gallery4::before {
  content: "";
  display: block;
  order: 1;
  width: 220px;
}
.ft_bnr.gallery4::after {
  content: "";
  display: block;
  width: 220px;
}
.ft_bnr figure {
  margin-bottom: 20px;
}
.ft_bnr figure img {
  width: 100%;
  height: auto;
}
.ft_bnr::after {
  content: "";
  display: block;
  width: 300px;
}

.site_footer {
  background-color: #ddd;
}
.site_footer > .inner {
  width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner {
    width: 88%;
    padding: 15px 0;
  }
}
.site_footer .ft_info {
  float: left;
  margin-right: 30px;
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info {
    width: 100%;
    float: none;
    margin-right: 0;
    position: relative;
    margin-bottom: 20px;
  }
}
.site_footer .ft_info .ft_logo {
  margin-bottom: 15px;
  display: block;
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_logo {
    width: 40%;
  }
}
.site_footer .ft_info .ft_logo img {
  vertical-align: middle;
}
.site_footer .ft_info .ft_address {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_address {
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_tel {
    position: absolute;
    right: 0;
    top: 0;
  }
}
.site_footer .ft_info .ft_tel a {
  font-size: 3rem;
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_tel a {
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_contact {
    position: absolute;
    right: 0;
    top: 2em;
    font-size: 1.2rem;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_info .ft_contact a {
    padding: 2px 15px;
  }
}
.site_footer .ft_nav {
  overflow: hidden;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .site_footer .ft_nav {
    display: none;
  }
}
.site_footer .ft_nav li {
  display: inline-block;
}
.site_footer .ft_nav li::after {
  content: "／";
  margin: 0 15px;
}
.site_footer .ft_nav li ul {
  display: inline-block;
}
.site_footer .ft_nav li ul li::before {
  content: "／";
  margin: 0 15px;
}
.site_footer .ft_nav li ul li::after {
  content: "";
  margin: 0;
}
.site_footer .sns_links {
  overflow: hidden;
  margin-bottom: 30px;
}
.site_footer .sns_links > span {
  display: inline-block;
  margin-right: 5px;
}
.site_footer .sns_links a {
  background-color: #333;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 30px;
  display: block;
  text-align: center;
  border-radius: 3px;
}
.site_footer .sns_links a i {
  vertical-align: middle;
}
.site_footer .copyright {
  text-align: center;
  font-size: 1.2rem;
  background-color: #333;
  color: #fff;
  padding: 5px 0;
}

/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
}
.page_top a {
  display: block;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 60px;
  color: #fff;
  background-color: #333333;
}
@media only screen and (max-width: 768px) {
  .page_top a {
    width: 35px;
    height: 35px;
    line-height: 35px;
    padding: 0;
  }
}
.page_top a:hover {
  background-color: #999;
  text-decoration: none;
}

@media only screen and (max-width: 736px) {
  #wpadminbar {
    display: none;
  }
}
/* -------------------------------------------------------------------------

		contents.sass
		
		各ページ固有のスタイルを定義
		
------------------------------------------------------------------------- */
/* home - トップページ
------------------------------------------------- */
body.home {
  /* home_content */
}
body.home .home_content {
  margin-bottom: 40px;
  /* mainvisual */
  /* inner */
}
body.home .home_content .mainvisual {
  height: 330px;
  background-color: #555;
  margin-bottom: 30px;
}
body.home .home_content .inner {
  width: 960px;
  margin: 0 auto;
  /* banner */
}
body.home .home_content .inner .banner li {
  margin: 10px;
  height: 60px;
  background-color: #999;
}

/* home - トップページ
------------------------------------------------- */
/* sitemap
------------------------------------------------- */
#sitemap .inner > ul {
  position: relative;
  padding-left: 100px;
}
#sitemap .inner > ul > li:first-child {
  position: absolute;
  left: 0;
  top: 0;
}
#sitemap .inner > ul > li:first-child::before {
  content: "－";
  position: absolute;
  left: 65px;
  top: 0em;
}
#sitemap .inner > ul > li > ul {
  padding-left: 15px;
}
#sitemap .inner > ul > li > ul::before {
  content: "└";
  margin-right: 10px;
  float: left;
}

/* search
------------------------------------------------- */
@media only screen and (max-width: 768px) {
  #search {
    margin-bottom: 30px;
  }
}

/* 404
------------------------------------------------- */
#notfound {
  text-align: center;
}
#notfound h2 {
  font-size: 2rem;
  margin-bottom: 30px;
}
#notfound .message {
  margin-bottom: 60px;
}
#notfound .button {
  width: 300px;
  margin: 0 auto;
}
.contactForm table {
  width: 100%;
  margin-bottom: 30px;
}
.contactForm th {
	width:28%;
	padding:22px 28px;
	border-bottom: dotted 1px #ccc;
	text-align:left;
	background:#F0F0F0;
	font-weight:400;
	font-size:1.6rem;
	vertical-align:middle;
}
.contactForm th span {
	display:block;
	position:relative;
}
.contactForm th span em {
	position:absolute;
	right:0;
	top:3px;
}
.contactForm td {
	padding:22px 35px;
	border-bottom: dotted 1px #ccc;
}
.contactForm td input[type="text"],.contactForm td textarea {
	font-size:1.6rem;
}
.mw_wp_form_confirm .confirm_none , .contactConfirm .confirm_none {
	display:none;
}

/*inputサイズ*/
.inp_short {
  width:50%;
}
.inp_middle {
  width:78%;
}
.inp_long {
  width: 100%;
}
.area_long {
  width: 100%;
  height:220px;
}
.inp_zip {
  width:120px;
}
.radio_label {
  margin-right:40px;
}

/*プレースホルダー*/
input::-webkit-input-placeholder { color:#aaa; }
input:-moz-placeholder { color:#666; }
input::-moz-placeholder { color:#666; }

input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }

@media screen and (max-width: 767px) {
	.contact_bnr p {
		font-size:1.4rem;
	}
  .contactForm table {
    margin-bottom: 10px;
  }
	.contactForm th ,.contactForm td {
		display:block;
		width:100%;
		box-sizing:border-box;
		padding:12px;
		font-size:1.3rem;
	}
	.contactForm td {
		border:none;
		padding:25px 12px;
	}
	.contactForm td .require {
		margin-left:0;
		display:block;
	}
	.contactForm td .require {
		display:none;
	}
	.mwform-tel-field input {
		width:60px!important;
	}
	.inp_short {
		width:60%;
	}
	.inp_middle {
		width:94%;
	}
	.inp_long {
		width:94%;
	}
	.area_long {
		width:94%;
		height:200px;
	}
  .btnArea {
    padding-bottom: 20px;
  }
  .btnArea span {
    display: block;
    margin: 0;
  }
	.btnArea input {
    display: block;
		width:100%;
		margin:0 0 20px 0!important;
	}
}
@media screen and (max-width: 479px) {
	.btnArea input {
		margin-left:0!important;
		margin-right:0!important;
	}
}

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

		print.sass
		
		印刷用のスタイルを定義
		
------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }

  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}

/*# sourceMappingURL=style.css.map */

.flex {
  display: flex;
}
/* 横逆順 */
.fx_r_reverse {
  flex-direction: row-reverse;
}
/* 縦逆順 */
.fx_c_reverse {
  flex-direction: column-reverse;
}
/*アイテム折返し*/
.fx_wrap {
  flex-wrap: wrap;
}
/* 等間隔に配置 */
.fx_between {
  justify-content: space-between;
}
/* センターに配置 */
.fx_center {
  justify-content: center;
}
/* 右側に配置 */
.fx_end {
  justify-content: flex-end;
}
/*上下中央寄せ*/
.fx_all_center {
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pc_none {
  display:none;
}
@media screen and (max-width: 767px) {
  .pc_none {
    display:block;
  }
  .sp_none {
    display:none;
  }
  .sp_block {
    display: block;
  }
}

/*トップ 最新情報*/
#index_news {
  margin-bottom: 60px;
}
.news_list {
  padding-bottom: 30px;
}
.news_box {
  text-decoration: none!important;
  color: #333!important;
  line-height: 1.5;
  align-items: center;
  padding: 10px 0;
  border-bottom: dotted 1px #ccc;
}
.news_box time {
  display: inline-block;
  font-size: 1.5rem;
  width: 95px;
}
.news_box h4 {
  width: calc(100% - 210px);
  padding-left: 20px;
  font-weight: 400;
  text-decoration: underline;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
.news_box:hover h4 {
  text-decoration: none;
}
.cat_box {
  display: inline-block;
  text-align: center;
}
.cat_box span {
  display: inline-block;
  font-size: 1.4rem;
  min-width: 125px;
  background: #E70012;
  color: #fff;
  border-radius: 20px;
  padding: 4px;
  line-height: 1.3;
}
  @media screen and (max-width: 767px) {
    #index_news {
      margin-bottom: 10.66vw;
    }
    .news_list {
      max-width: 100%;
      padding-bottom: 3.33vw;
    }
    .news_box {
      margin-bottom: 5.33vw;
    }
    .news_box time {
      font-size: 3.46vw;
      width: auto;
      margin-right: 2.66vw;
    }
    .news_box h4 {
      width: 100%;
      padding-left: 0;
      margin-top: 2vw;
    }
    .cat_box span {
      font-size: 3.46vw;
      min-width: 25vw;
      border-radius: 5vw;
      padding: 0.8vw;
    }
  }

/*トップ カスタム投稿*/
#index_custom {
  margin-bottom: 60px;
}
.custom_box {
  display: block;
  width: calc(33.33% - 20px);
  margin: 0 30px 30px 0;
}
.custom_box:nth-child(3n) {
  margin-right: 0;
}
.custom_box figure {
  margin-bottom: 15px;
}
.custom_box figure img {
  width: 100%;
  height: auto;
}
.custom_box:hover img {
  opacity: 0.7
}
.custom_txt .cat_box {
  margin-bottom: 10px;
}
  @media screen and (max-width: 767px) {
    #index_custom {
      margin-bottom: 10.66vw;
    }
    .custom_box {
      width: 100%;
      margin: 0 0 5.33vw 0;
    }
  }

.btn01 {
  position: relative;
  z-index: 5;
  text-align: center;
}
.btn01 a {
  position: relative;
  vertical-align: bottom;
  display: inline-block;
  width: 260px;
  padding: 10px;
  margin: 0 auto;
  text-align: center;
  background: #333;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  border-radius: 5px;
  overflow: hidden;
  transition: all 0.2s ease-in-out 0s;
}
.btn01 a:hover {
  opacity: 0.7;
}
  @media screen and (max-width: 767px) {
    .btn01 {
      text-align: center;
    }
    .btn01 a {
      width: 68vw;
      font-size: 3.73vw;;
      padding: 3vw;
      border-radius: 5px;
    }
  }

.sub_ttl01 {
  text-align: center;
  font-size: 2.8rem;
  margin-bottom: 30px;
  line-height: 1.6;
}
.sub_ttl01 span {
  display: block;
  font-size: 1.6rem;
  color: #999;
}
.sub_ttl01 span {
  display: block;
}
  @media screen and (max-width: 767px) {
    .sub_ttl01 {
      font-size: 2.5rem;
      margin-bottom: 25px;
    }
  }

.category_list {
  padding-bottom: 30px;
}
.category_list li {
  width: calc(20% - 10px);
  margin: 0 12px 12px 0;
}
.category_list li:nth-child(5n) {
  margin-right: 0;
}
.category_list li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  line-height: 1.3;
  width: 100%;
  min-height: 42px;
  border: solid 1px #ddd;
  text-decoration: none;
  color: #333;
}
.category_list li.current-cat a,
.category_list li a:hover {
  color: #E70012;
  border: solid 1px #E70012;
}

/*ラジオボタン*/
.mwform-radio-field {
  display: inline-block;
}
.mwform-radio-field label {
  cursor: pointer;
  position: relative;
  margin-right: 20px;
  overflow: hidden;
  padding-left: 20px;
  display: inline-block;
  vertical-align: text-top;
}
.mwform-radio-field  label:before {
  position: absolute;
  width: 15px;
  height: 15px;
  border: 1px solid #666;
  border-radius: 50%;
  left: 0px;
  top: 50%;
  margin-top: -7px;
  content: '';
  z-index: 3;
}
.mwform-radio-field  label:after {
  content: '';
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 100%;
  left: 3px;
  top: 50%;
  margin-top: -4px;
  background-color: #FD0100;
  z-index: 1;
}
.mwform-radio-field  label input[type="radio"] {
  -moz-appearance: none;
  -webkit-appearance: none;
  position: absolute;
  z-index: 2;
  width: 20px;
  height: 20px;
  left: -23px;
  top: 1px;
  margin: 0px;
  box-shadow: 20px -1px #fff;
  border: none;
}
.mwform-radio-field  label input[type="radio"]:checked {
  box-shadow: none;
}
.mwform-radio-field  label input[type="radio"]:focus {
  opacity: 0.2;
  box-shadow: 20px -1px #FFF;
}
  @media screen and (max-width: 767px) {
    .mwform-radio-field {
      display: block;
      margin-left: 0!important;
    }
  }

/*チェックボックス*/
.contact_checkbox {
  padding: 5px 0 0 0!important;
}
.mwform-checkbox-field {
  position: relative;
  display: inline-block;
  padding-left: 35px;
  line-height: 1.5;
  margin: 0 18px 5px 0;
}
.mwform-checkbox-field:last-child {
  margin-right: 0;
}
.mwform-checkbox-field label {
  cursor: pointer;
  font-size: 1.8rem;
  vertical-align: top;
}
.mwform-checkbox-field input[type="checkbox"] {
  display: none;
}
.mwform-checkbox-field-text::before {
  content: '';
  width: 24px;
  height: 24px;
  line-height: 22px;
  display: inline-block;
  position: absolute;
  left: 0;
  top: 1px;
  background-color: #fff;
  border: solid 1px #aaa;
  border-radius: 2px;
}
.mwform-checkbox-field input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
  content: '\2713';
  font-size: 2rem;
  text-align: center;
  background-color: #FD0100;
  font-weight: 600;
  font-family: urw-din, sans-serif;
  color: #fff;
}
  @media screen and (max-width: 767px) {
    .contact_checkbox {
      padding: 0!important;
    }
    .contact_checkbox .mwform-checkbox-field {
      display: block;
      margin: 0 0 7px 0!important;
    }
    .contact_checkbox .mwform-checkbox-field:last-child {
      margin-bottom: 0!important;
    }
    .mwform-checkbox-field {
      padding-left: 28px;
      margin: 0 15px 10px 0;
    }
    td .mwform-checkbox-field {
      display: block;
      margin: 0 0 5px 0!important;
    }
    .mwform-checkbox-field label {
      cursor: pointer;
      font-size: 1.5rem;
    }
    .mwform-checkbox-field-text::before {
      width: 20px;
      height: 20px;
      line-height: 18px;
      top: 0;
    }
    input[type="checkbox"]:checked + .mwform-checkbox-field-text::before {
      font-size: 1.8rem;
    }
  }

.consent_box {
  text-align: center;
  padding: 38px 0 35px 0;
}
.consent_box .mwform-checkbox-field,
.consent_box .mwform-checkbox-field label {
  margin-right: 0;
}
  @media screen and (max-width: 767px) {
    .consent_box {
      text-align: center;
      padding: 28px 0 25px 0;
      font-size: 1.5rem;
    }
  }

/* プライバシーポリシー
------------------------------------------------------------ */
#privacy {
  width: 100%;
  height: 240px;
  padding: 20px;
  line-height: 1.5;
  border: solid 1px #aaa;
}
.privacy_wrap {
  height: 200px;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#privacy dl {
  padding-right: 10px;
}
#privacy dt {
  margin-bottom: 5px;
}
#privacy dt span {
  font-weight: 600;
}
#privacy dd {
  padding-bottom: 10px;
}
#privacy dd p {
  margin-bottom: 10px;
}
#privacy dd ul {
  padding-bottom: 10px;
}
  @media screen and (max-width: 767px) {
    #privacy {
      height: 160px;
      padding: 15px;
    }
    .privacy_wrap {
      height: 130px;
    }
    #privacy dl {
      padding-right: 10px;
      font-size: 1.5rem;
    }
  }

/*投稿*/
.cat_name {
  display: inline-block;
  padding: 3px 15px;
  background: #FE0000;
  border-radius: 2px;
  line-height: 1.2;
  font-size: 1.2rem;
  vertical-align: text-top;
  color: #fff;
}

.cp a {
  position: relative;
  display: block;
  text-decoration: none;
  color: #333;
}
.cp time {
  display: inline-block;
  margin-right: 10px;
}
.cp h4 {
  margin-top: 10px;
}

.cp_gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
  padding-bottom: 10px;
}
.cp_gallery a {
  border: solid 1px #ddd;
  width: 23.5%;
  margin-bottom: 30px;
}
.cp_gallery .cp_box {
  padding: 15px 10px;
}

.cp_list {
  padding-bottom: 25px;
}
.cp_list a {
  min-height: 115px;
  padding-left: 120px;
  margin-bottom: 15px;
  border-bottom: dotted 1px #ddd;
}
.cp_list figure {
  position: absolute;
  left: 0;
  top: 0;
  width: 100px;
}

.cp_list.c_thumb_none a {
  min-height: auto;
  padding: 0 0 15px 0;
}
