@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
------------------------------------------------- */
/* text color
------------------------------------------------- */
/* fonts
------------------------------------------------- */
/* -------------------------------------------------------------------------

    util.sass

    案件に依存せず汎用的に使うClassを定義

------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .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: 768px) {
  .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: 768px) {
  .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: 768px) {
  .image_text_view_l .text,
  .image_text_view_r .text {
    overflow: visible;
  }
}

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

@media only screen and (max-width: 768px) {
  .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;
  }
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  .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__center {
  text-align: center;
}
.just_layout__w830 {
  max-width: 830px;
  margin-inline: auto;
}
.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.2em;
  list-style: disc;
}

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

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

.list_decimal_zero {
  margin-left: 2.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;
  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: #223d89;
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
}
a:hover {
  text-decoration: underline;
}
a.img_hover:hover img {
  opacity: 0.7;
}
a.tel {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", "Yu Gothic", YuGothic, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  cursor: default;
  pointer-events: none;
}
@media only screen and (max-width: 768px) {
  a.tel {
    pointer-events: auto;
  }
}

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  height: auto;
  max-width: 100%;
  -webkit-transition: all 0.3s ease-in-out 0s;
  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;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 1% 2%;
  border-radius: 0;
  outline: none;
  border: 1px solid #ccc;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=text].narrow,
input[type=submit].narrow,
textarea.narrow {
  width: 20%;
}

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

input[type=text]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 7px #52a8ec;
          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;
}
@media only screen and (max-width: 768px) {
  input[type=submit],
  input[type=button] {
    width: 100%;
  }
}

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

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

em {
  background-color: #223d89;
  color: #fff;
  float: right;
  font-style: normal;
  font-size: 1.4rem;
  font-weight: 600;
  padding: 0px 7px;
  border-radius: 4px;
}

@media only screen and (max-width: 768px) {
  .notes {
    font-size: 1.2rem;
  }
}

/* table
------------------------------------------------- */
table {
  width: 100%;
  border-top: #ccc 1px solid;
  border-bottom: #ccc 1px solid;
  margin-bottom: 60px;
}
table:last-of-type {
  margin-bottom: 0;
}

th, td {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 15px 20px;
  border-bottom: #ccc 1px dashed;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  th, td {
    display: block;
    width: 100%;
    padding: 10px 15px;
  }
}

@media only screen and (max-width: 768px) {
  tr {
    display: block;
  }
}
tr:last-child th, tr:last-child td {
  border-bottom: none;
}

th {
  width: 310px;
  background-color: #f7f5f1;
  text-align: left;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  th {
    width: 100%;
  }
}

td {
  background-color: #fff;
}

/* animation
------------------------------------------------- */
/* 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 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,
.pagenavi a {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.wp-pagenavi a:hover,
.pagenavi a:hover {
  background-color: #223d89;
  border-color: #223d89;
  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: -0.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: #223d89;
  border-right: none;
  border-bottom-color: #223d89;
  border-left: none;
  background-color: #223d89;
  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 */
/* lauout
------------------------------------------------- */
.wrap {
  width: 1000px;
  margin: 0 auto;
  padding: 50px 0;
}
@media only screen and (max-width: 768px) {
  .wrap {
    width: 88%;
    padding: 20px 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
.wrap.wide {
  width: 100%;
}
.wrap .content {
  width: 1000px;
  margin-right: auto;
  margin-left: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .wrap .content {
    width: 88%;
  }
}

.banner_box {
  margin-bottom: 35px;
}
@media only screen and (max-width: 768px) {
  .banner_box {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 768px) {
  .banner_box li {
    margin-bottom: 10px;
  }
}

.contact_box {
  background-image: url(../img/common/bg_contact_01.png);
  background-repeat: no-repeat;
  background-position: center 1px;
  min-height: 223px;
  padding: 0 40px;
}
@media only screen and (max-width: 768px) {
  .contact_box {
    background-image: none;
    background-size: auto;
    min-height: auto;
    padding: 0 20px;
    position: relative;
    border: 2px #223d89 solid;
    background-color: #fff;
  }
}
.contact_box h4 {
  text-align: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .contact_box h4 {
    margin-bottom: 0;
    position: relative;
    top: -16px;
    margin-top: 0;
  }
}
.contact_box dl {
  display: table;
  margin-bottom: 20px;
  width: 726px;
}
@media only screen and (max-width: 768px) {
  .contact_box dl {
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box dl {
    margin-bottom: 5px;
  }
}
.contact_box dl:last-of-type {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .contact_box dl:last-of-type {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  .contact_box dl:last-of-type dt {
    margin-bottom: 15px;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box dl:last-of-type dt {
    margin-bottom: 7px;
  }
}
.contact_box dt, .contact_box dd {
  display: table-cell;
  vertical-align: top;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .contact_box dt, .contact_box dd {
    display: block;
    text-align: center;
  }
}
.contact_box dt {
  width: 254px;
}
@media only screen and (max-width: 768px) {
  .contact_box dt {
    width: 100%;
  }
}
.contact_box dt b {
  position: relative;
  height: 28px;
  line-height: 28px;
  color: #fff;
  text-align: center;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .contact_box dt b {
    width: 77%;
    margin: 0 auto;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box dt b {
    font-size: 1.2rem;
    height: 24px;
    line-height: 24px;
  }
}
.contact_box dt b::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 0 14px 12px;
  position: absolute;
  right: -12px;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .contact_box dt b::after {
    display: none;
  }
}
.contact_box dt span {
  display: block;
  color: #6bb72d;
  font-size: 1.4rem;
  font-weight: 600;
}
.contact_box dd {
  padding-left: 25px;
}
@media only screen and (max-width: 768px) {
  .contact_box dd {
    padding-left: 0;
  }
}
.contact_box dd .tel {
  color: #223d89;
  font-weight: bold;
  font-size: 2rem;
  line-height: 1;
  float: right;
}
@media only screen and (max-width: 768px) {
  .contact_box dd .tel {
    float: none;
    font-size: 1.6rem;
    display: block;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box dd .tel {
    font-size: 1.2rem;
  }
}
.contact_box dd .tel i {
  font-size: 1.6rem;
  margin-right: 4px;
}
@media only screen and (max-width: 768px) {
  .contact_box dd .tel i {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box dd .tel i {
    font-size: 1.1rem;
  }
}
.contact_box .mail dt b {
  background-color: #009e37;
}
.contact_box .mail dt b::after {
  border-color: transparent transparent transparent #009e37;
}
.contact_box .mail dd i {
  color: #009e37;
  margin-right: 3px;
}
.contact_box .mail dd a {
  text-decoration: underline;
}
@media only screen and (max-width: 320px) {
  .contact_box .mail dd a {
    font-size: 1rem;
  }
}
.contact_box .mail dd a:hover {
  text-decoration: none;
}
.contact_box .tel dt b {
  background-color: #6bb72d;
}
.contact_box .tel dt b::after {
  border-color: transparent transparent transparent #6bb72d;
}
@media only screen and (max-width: 320px) {
  .contact_box .tel dt span {
    font-size: 1.2rem;
  }
}
.contact_box .tel dd li {
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  .contact_box .tel dd li {
    text-align: left;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 320px) {
  .contact_box .tel dd li {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.contact_box .tel dd li:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .contact_box .tel dd li a {
    letter-spacing: 1px;
  }
}
.contact_box .image_p {
  display: none;
}
@media only screen and (max-width: 768px) {
  .contact_box .image_p {
    position: absolute;
    display: block;
    width: 28%;
    right: 4px;
    bottom: 0;
  }
}

.bg_color_01 {
  background-color: #f2eada;
}

.bg_color_gray {
  background-color: #F7F5F1;
}

/* btn
------------------------------------------------- */
.btn {
  width: 400px;
  text-align: center;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .btn {
    width: 100%;
  }
}
.btn.back, .btn.submit {
  display: inline-block;
  width: 40%;
}
@media only screen and (max-width: 768px) {
  .btn.back, .btn.submit {
    width: 90%;
    margin-bottom: 20px;
  }
}
.btn.rounded a, .btn.rounded input {
  background-color: #223d89;
  border-radius: 30px;
  color: #fff;
  font-weight: bold;
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
.btn.rounded a:hover, .btn.rounded input:hover {
  background-color: #6bb72d;
  color: #fff;
  text-decoration: none;
}
.btn.rounded a:hover i, .btn.rounded input:hover i {
  color: #fff;
}
.btn.rounded a i, .btn.rounded input i {
  margin-right: 7px;
}
.btn.rounded.back a, .btn.rounded.back input {
  border-color: #777;
  color: #777;
}
.btn.rounded.back a:hover, .btn.rounded.back input:hover {
  background-color: #777;
  color: #fff;
}
.btn.rounded.back .fa-caret-left {
  left: 30%;
  color: #777;
}
@media only screen and (max-width: 768px) {
  .btn.rounded.back .fa-caret-left {
    left: 24%;
  }
}
.btn.rounded.submit .fa-caret-right {
  left: 64%;
}
.btn .container {
  position: relative;
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .btn .container {
    width: 100%;
  }
}
.btn .container i {
  position: absolute;
  left: 32%;
  top: 50%;
  line-height: 1;
  margin-top: -0.5em;
}
@media only screen and (max-width: 320px) {
  .btn .container i {
    left: 28%;
  }
}
.btn .container:hover i {
  color: #fff !important;
}
.btn a, .btn input {
  display: block;
  padding: 15px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  .btn a, .btn input {
    padding: 10px 0;
    width: 100%;
  }
}

/* icon
------------------------------------------------- */
.fa-caret-left,
.fa-caret-right {
  color: #009e37;
  margin-right: 5px;
}

.icon_square_01::before {
  font-family: "fontAwesome";
  content: "\f0c8";
  color: #009e37;
  margin-right: 3px;
}

/* title
------------------------------------------------- */
.title_border {
  font-size: 4rem;
  letter-spacing: 1px;
  position: relative;
  text-align: center;
  padding-bottom: 20px;
  margin-bottom: 60px;
  z-index: 1;
}
@media only screen and (max-width: 768px) {
  .title_border {
    font-size: 2.2rem;
    letter-spacing: 0;
    padding-bottom: 10px;
    margin-bottom: 25px;
  }
}
.title_border::before {
  content: "";
  width: 70px;
  height: 4px;
  background-color: #6bb72d;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -35px;
}
@media only screen and (max-width: 768px) {
  .title_border::before {
    width: 46px;
    height: 3px;
    margin-left: -23px;
  }
}

.title_dotted {
  font-size: 3.2rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 1px;
  color: #009e37;
  border-bottom: #009e37 1px dashed;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .title_dotted {
    font-size: 2rem;
    letter-spacing: 0;
  }
}
.title_dotted span {
  border-left: #009e37 5px solid;
  padding-left: 13px;
}
.title_dotted + p {
  color: #009e37;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .title_dotted + p {
    margin-bottom: 20px;
    font-size: 1.2rem;
  }
}

.title_green {
  font-size: 2.2rem;
  color: #223d89;
  line-height: 1.6;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .title_green {
    font-size: 1.9rem;
    margin-bottom: 15px;
  }
}

.area_map li {
  margin-bottom: 25px;
}
.area_map dl {
  display: table;
  width: 100%;
}
.area_map dt, .area_map dd {
  display: table-cell;
  vertical-align: top;
}
.area_map dt {
  width: 85px;
}
.area_map dt span {
  color: #fff;
  background-color: #223d89;
  border-radius: 4px;
  padding: 1px 10px;
  font-size: 1.4rem;
}
.area_map dd {
  color: #223d89;
  font-weight: 600;
}

.check_list > li {
  padding-left: 1.5em;
  background: url(../img/common/icon_check.png) top 0.3em left no-repeat;
  background-size: 1.1em;
}

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

    layout.sass

    ヘッダー、フッター、サイドバー等のサイトの構造に関わるスタイルを定義

------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  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;
}
body.open {
  padding-top: 50px;
}

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

/* layer
------------------------------------------------- */
.layer {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media only screen and (max-width: 768px) {
  .layer {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: none;
    width: 100%;
    height: 100%;
    z-index: 5;
    background-color: rgba(255, 255, 255, 0);
  }
}
@media only screen and (max-width: 768px) {
  .layer.fog {
    background-color: rgb(247, 245, 241);
  }
}

/* header
------------------------------------------------- */
.site_header {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  position: static;
}
@media only screen and (max-width: 768px) {
  .site_header {
    background-color: #f7f5f1;
  }
}
@media only screen and (max-width: 768px) {
  .site_header.is-menu-show {
    position: fixed;
    top: 0;
    z-index: 20;
  }
}
@media only screen and (max-width: 768px) {
  .site_header.is-menu-show > .inner .global_nav {
    display: block;
    position: fixed;
    top: 50px;
    left: 0;
    width: 100%;
    z-index: 20;
  }
}
.site_header > .inner {
  position: relative;
  text-align: center;
  width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner {
    width: 100%;
    padding: 0;
    height: 50px;
    line-height: 50px;
  }
}
.site_header > .inner .site_id {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .site_id {
    max-width: 180px;
    margin-left: 20px;
    margin-bottom: 0;
    text-align: left;
  }
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .site_id img {
    vertical-align: middle;
  }
}
.site_header > .inner .global_nav {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav {
    display: none;
  }
}
.site_header > .inner .global_nav ul {
  text-align: center;
}
.site_header > .inner .global_nav li {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav li {
    display: block;
    border-bottom: #ccc 1px solid;
  }
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav li:first-child {
    border-top: #ccc 1px solid;
  }
}
.site_header > .inner .global_nav li.nav_home {
  display: none;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav li.nav_home {
    display: block;
  }
}
.site_header > .inner .global_nav li a {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
  font-size: 1.6rem;
  padding: 10px 12px;
  text-align: center;
  display: block;
  border-radius: 7px;
  color: #333333;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav li a {
    padding: 12px 0;
    line-height: 2;
    border-radius: 0;
  }
}
.site_header > .inner .global_nav li a:hover {
  background-color: #223d89;
  color: #fff;
  text-decoration: none;
}
.site_header > .inner .global_nav li .nav_instagram,
.site_header > .inner .global_nav li .nav_youtube {
  display: inline-block;
}
.site_header > .inner .global_nav li .nav_instagram img,
.site_header > .inner .global_nav li .nav_youtube img {
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav li .nav_instagram,
  .site_header > .inner .global_nav li .nav_youtube {
    position: static;
    margin: 0 0.5em;
  }
}
.site_header > .inner .global_nav li .nav_instagram:hover,
.site_header > .inner .global_nav li .nav_youtube:hover {
  background-color: #f1f1f1;
}
.site_header > .inner .global_nav .nav_online {
  display: none;
}
@media only screen and (max-width: 768px) {
  .site_header > .inner .global_nav .nav_online {
    display: block;
  }
}

/* menu
------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .menu {
    position: fixed;
    right: 0;
    top: 0;
    background-color: #223d89;
    width: 50px;
    height: 50px;
    z-index: 777;
  }
}
.menu .btn_menu {
  position: relative;
  width: 50px;
  height: 50px;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.menu .btn_menu span {
  position: absolute;
  left: 50%;
  width: 24px;
  height: 3px;
  margin-left: -12px;
  background-color: #fff;
  display: inline-block;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.menu .btn_menu span:nth-of-type(1) {
  top: 10px;
}
.menu .btn_menu span:nth-of-type(2) {
  top: 18px;
}
.menu .btn_menu span:nth-of-type(3) {
  bottom: 21px;
}
.menu .btn_menu div {
  position: absolute;
  bottom: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1;
  text-align: center;
  width: 100%;
}
.menu .btn_menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  -ms-transform: translateY(8px) rotate(-45deg);
      transform: translateY(8px) rotate(-45deg);
}
.menu .btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}
.menu .btn_menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  -ms-transform: translateY(-8px) rotate(45deg);
      transform: translateY(-8px) rotate(45deg);
}

/* menu */
/* topicpath
------------------------------------------------- */
.topicpath {
  width: 1000px;
  margin: 0 auto 60px;
  font-size: 0;
}
@media only screen and (max-width: 768px) {
  .topicpath {
    margin-bottom: 20px;
    width: 88%;
  }
}
.topicpath li {
  line-height: 1;
  font-size: 1.4rem;
  display: inline-block;
  letter-spacing: 1px;
}
@media only screen and (max-width: 768px) {
  .topicpath li {
    font-size: 1.1rem;
  }
}
.topicpath li:before {
  content: "＞";
  padding: 0 5px;
}
.topicpath li:first-child:before {
  content: "";
  padding: 0;
}
.topicpath li a {
  color: #ccc;
}

/* primary_area
------------------------------------------------- */
.primary_area {
  width: 730px;
  float: left;
}
@media only screen and (max-width: 768px) {
  .primary_area {
    width: 100%;
    float: none;
  }
}

/* secondary_area
------------------------------------------------- */
.secondary_area {
  width: 220px;
  float: right;
}
@media only screen and (max-width: 768px) {
  .secondary_area {
    width: 100%;
    float: none;
  }
}

/* page_content
------------------------------------------------- */
.page_content .mainvisual {
  margin-bottom: 10px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 150px;
  line-height: 150px;
  text-align: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  .page_content .mainvisual {
    height: 90px;
    line-height: 90px;
  }
}
.page_content .mainvisual h2 {
  font-size: 3.2rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.12em;
}
@media only screen and (max-width: 768px) {
  .page_content .mainvisual h2 {
    font-size: 2.2rem;
  }
}

/* footer
------------------------------------------------- */
.site_footer {
  background-color: #fff;
}
.site_footer .footer_nav {
  border-top: #e2e2e2 1px solid;
  border-bottom: #e2e2e2 1px solid;
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav {
    border-bottom: none;
  }
}
.site_footer .footer_nav ul {
  width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding-top: 14px;
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav ul {
    width: 100%;
    padding: 0;
  }
}
.site_footer .footer_nav li {
  border-right: #223d89 1px solid;
  display: inline-block;
  margin-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav li {
    display: block;
    width: 50%;
    float: left;
    margin-bottom: 0;
    text-align: center;
    border-right-color: #e2e2e2;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    border-bottom: #e2e2e2 1px solid;
  }
}
.site_footer .footer_nav li a {
  display: block;
  padding: 0 24px;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav li a {
    padding: 15px 0;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav li a:hover {
    text-decoration: none;
    background-color: #223d89;
    color: #fff;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav li:nth-child(odd) {
    border-right: none;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer .footer_nav li:first-child {
    width: 100%;
    border-right: none;
  }
}
.site_footer > .inner {
  position: relative;
  width: 1000px;
  margin: 0 auto 25px;
  padding: 25px 0;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner {
    width: 100%;
    padding: 20px 0;
    text-align: center;
  }
}
.site_footer > .inner .label {
  background-color: #fff;
  border: #223d89 1px solid;
  border-radius: 8px;
  text-align: center;
  padding: 5px 0;
  display: inline-block;
  width: 130px;
  vertical-align: top;
  margin-right: 20px;
  color: #223d89;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner .label {
    font-size: 1.2rem;
    border-radius: 4px;
    margin-right: 0;
    margin-bottom: 10px;
  }
}
.site_footer > .inner dl {
  display: inline-block;
  color: #223d89;
}
.site_footer > .inner dl dt {
  font-size: 1.4rem;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner dl dt {
    margin-bottom: 5px;
  }
}
.site_footer > .inner dl dt b {
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner dl dt b {
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner dl dt b:first-of-type {
    display: block;
  }
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner dl dd {
    font-size: 1.2rem;
  }
}
.site_footer > .inner .ban {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 16px;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner .ban {
    display: block;
  }
}
.site_footer > .inner .ban a {
  display: block;
  margin: 0 12px;
}
@media only screen and (max-width: 768px) {
  .site_footer > .inner .ban a {
    margin: 0 0 25px;
  }
}
.site_footer > .inner .ban a:hover {
  opacity: 0.8;
}
.site_footer .copyright {
  background-color: #6bb72d;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  padding: 5px 0;
  letter-spacing: 1px;
}

/* btn_fixed
------------------------------------------------- */
.btn_fixed_all {
  position: fixed;
  top: 168px;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_all {
    top: auto;
    bottom: 108px;
  }
}
.btn_fixed_all a {
  display: block;
  padding: 24px 20px 16px;
  border-radius: 8px 0 0 8px;
  background: rgba(155, 186, 5, 0.42);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_all a {
    padding: 8px 8px 48px;
  }
}
.btn_fixed_all a:hover {
  background: rgba(155, 186, 5, 0.8);
  text-decoration: none;
}
.btn_fixed_all figure {
  position: relative;
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  background: #e8e6eb;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_all figure {
    width: 52px;
    height: 52px;
  }
}
.btn_fixed_all figure img {
  position: absolute;
  bottom: 0;
}
.btn_fixed_all figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  bottom: -29px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #009e37;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 1.2;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_all figure figcaption {
    bottom: -40px;
    width: 52px;
    height: 52px;
  }
}
.btn_fixed_all p {
  margin-top: 36px;
  color: #009e37;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_all p {
    display: none;
  }
}
.btn_fixed_all p span {
  letter-spacing: -0.2em;
}

.btn_fixed_online {
  position: fixed;
  top: 168px;
  right: 0;
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_online {
    top: auto;
    bottom: 108px;
  }
}
.btn_fixed_online a {
  display: block;
  padding: 15px 3px 15px;
  border-radius: 8px 0 0 8px;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 138, 212, 0.69)), color-stop(24.14%, rgba(0, 115, 182, 0.69)), to(rgba(0, 88, 148, 0.69)));
  background: linear-gradient(rgba(0, 138, 212, 0.69) 0%, rgba(0, 115, 182, 0.69) 24.14%, rgba(0, 88, 148, 0.69) 100%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_online a {
    padding: 4px;
  }
}
.btn_fixed_online a:hover {
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 138, 212, 0.9)), color-stop(24.14%, rgba(0, 115, 182, 0.9)), to(rgba(0, 88, 148, 0.9)));
  background: linear-gradient(rgba(0, 138, 212, 0.9) 0%, rgba(0, 115, 182, 0.9) 24.14%, rgba(0, 88, 148, 0.9) 100%);
  text-decoration: none;
}
.btn_fixed_online figure {
  position: relative;
  width: 142px;
  height: 142px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_online figure {
    width: 56px;
    height: 56px;
  }
}
.btn_fixed_online figure img {
  position: absolute;
  bottom: 0;
}
.btn_fixed_online p {
  margin-top: 8px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  .btn_fixed_online p {
    margin-top: 0;
    font-size: 1rem;
  }
}

/* page_top
------------------------------------------------- */
.page_top {
  position: absolute;
  right: 15px;
  bottom: 340px;
}
.page_top a {
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  color: #fff;
  background-color: #6bb72d;
  font-size: 3rem;
}
.page_top a:hover {
  text-decoration: none;
}
.page_top.fixed {
  position: fixed;
  right: 15px;
  bottom: 15px;
}
@media only screen and (max-width: 768px) {
  .page_top.fixed {
    bottom: 45px;
  }
}

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

    contents.sass

    各ページ固有のスタイルを定義

------------------------------------------------------------------------- */
/* home - トップページ
------------------------------------------------- */
body.home {
  /* home_content */
  /* staff */
}
body.home .youtube {
  position: relative;
  height: 0;
  margin: 0 auto;
}
body.home .youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
body.home .home_content {
  /* mainvisual */
}
body.home .home_content .mainvisual {
  background-image: url(../img/index/mainvisual_01.jpg);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 600px;
  text-align: center;
  padding-top: 200px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 768px) {
  body.home .home_content .mainvisual {
    height: 25vh;
    padding-top: 3vh;
  }
}
body.home .home_content .mainvisual h2 {
  max-width: 1000px;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  body.home .home_content .mainvisual h2 {
    max-width: 70%;
  }
}
body.home #corona {
  padding: 70px 20px;
}
body.home #corona .corona_inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 40px 40px;
  border-radius: 7px;
  background: #ffffff;
  font-size: 1.8rem;
  text-align: center;
}
body.home #corona .corona_inner h2 {
  font-weight: 700;
  font-size: 2.2rem;
  padding: 20px 0;
  margin-bottom: 35px;
  border-bottom: 1px solid #223d89;
}
body.home #corona .corona_inner h2 + p {
  color: #223d89;
  font-weight: 700;
  font-size: 2rem;
}
body.home #corona .corona_inner .check_list {
  text-align: left;
  display: inline-block;
  margin: 45px auto;
}
@media only screen and (max-width: 768px) {
  body.home #corona {
    padding: 20px;
  }
  body.home #corona .corona_inner {
    padding: 0 20px 20px;
    font-size: 1.6rem;
  }
  body.home #corona .corona_inner h2 {
    font-size: 2rem;
  }
  body.home #corona .corona_inner h2 + p {
    font-size: 1.6rem;
  }
  body.home #corona .corona_inner .check_list {
    margin: 20px auto;
  }
}
body.home #service .just_layout:last-child .just_item {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  body.home #service .just_layout:last-child .just_item {
    margin-bottom: 40px;
  }
}
body.home #service .just_item {
  width: 484px;
  margin-bottom: 62px;
}
@media only screen and (max-width: 768px) {
  body.home #service .just_item {
    width: 100%;
    margin-bottom: 40px;
  }
}
body.home #service .just_item dt {
  color: #223d89;
  font-size: 2.4rem;
  border-bottom: #e2e2e2 1px solid;
  margin-bottom: 10px;
  padding: 13px 0;
  font-weight: bold;
  letter-spacing: 1px;
}
body.home #service .just_item dd.spot {
  text-align: right;
  margin-top: 10px;
}
body.home #service .just_item dd.spot b {
  background-color: #223d89;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  text-align: right;
  padding: 3px 10px;
  font-size: 1.4rem;
  line-height: 1.2;
}
body.home #service .youtube {
  max-width: 484px;
  padding-bottom: 56%;
}
@media only screen and (max-width: 768px) {
  body.home #service .youtube {
    max-width: none;
  }
}
body.home #staff {
  background-image: url(../img/index/bg_staff_01.png);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.home #staff {
    text-align: left;
  }
}
body.home #staff p {
  margin-bottom: 30px;
}
body.home #recruit .wrap {
  padding-bottom: 0;
}
body.home #recruit .content .image_text_view_r img {
  border-radius: 5px;
}
@media only screen and (max-width: 768px) {
  body.home #recruit .content {
    padding-bottom: 30px;
  }
}
body.home #recruit .image_text_view_r {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  body.home #recruit .image_text_view_r {
    margin-bottom: 30px;
  }
}

/* staff - トップページ
------------------------------------------------- */
body.staff {
  /* mainvisual */
}
body.staff .mainvisual {
  background-image: url(../img/staff/mainvisual_01.jpg);
}
body.staff .staff {
  width: 485px;
  float: left;
  margin-right: 30px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  body.staff .staff {
    width: 100%;
    float: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
}
body.staff .staff:nth-child(2n) {
  margin-right: 0;
}
body.staff .staff h3 {
  background-color: #f7f5f1;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  padding: 6px 20px 8px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  body.staff .staff h3 {
    font-size: 1.9rem;
  }
}
body.staff .staff h3 span {
  font-size: 1.4rem;
}
body.staff .staff > .inner {
  margin-bottom: 15px;
}
body.staff .staff .photo {
  float: left;
  width: 140px;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .photo {
    width: 42%;
  }
}
body.staff .staff .profile {
  float: right;
  width: 330px;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .profile {
    width: 52%;
  }
}
body.staff .staff .profile dl {
  display: table;
  width: 100%;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .profile dl {
    display: block;
  }
}
body.staff .staff .profile dl dt, body.staff .staff .profile dl dd {
  display: table-cell;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .profile dl dt, body.staff .staff .profile dl dd {
    display: block;
  }
}
body.staff .staff .profile dl dt {
  background-color: #6bb72d;
  color: #fff;
  text-align: center;
  width: 90px;
  font-size: 1.4rem;
  font-weight: bold;
  border-radius: 3px;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .profile dl dt {
    margin-bottom: 5px;
  }
}
body.staff .staff .profile dl:nth-of-type(1) dt {
  background-color: #6bb72d;
}
body.staff .staff .profile dl:nth-of-type(2) dt {
  background-color: #9bba05;
}
body.staff .staff .profile dl:nth-of-type(3) dt {
  background-color: #009e37;
}
body.staff .staff .profile dl dd {
  padding-left: 10px;
  vertical-align: top;
}
@media only screen and (max-width: 768px) {
  body.staff .staff .profile dl dd {
    padding-left: 0;
  }
}
body.staff .staff .motto dt {
  font-weight: bold;
}
body.staff .staff .motto dt::before {
  font-family: "fontAwesome";
  content: "\f0c8";
  color: #009e37;
  margin-right: 3px;
}
body.staff .staff .motto dd {
  margin-bottom: 10px;
}
body.staff .staff .motto dd:last-of-type {
  margin-bottom: 0;
}

/* company - トップページ
------------------------------------------------- */
body.company {
  /* mainvisual */
  /* philosophy */
  /* value */
  /* outline */
}
body.company .mainvisual {
  background-image: url(../img/company/mainvisual_01.jpg);
}
body.company #philosophy strong {
  font-size: 2.2rem;
  display: block;
  width: 720px;
  border-radius: 8px;
  background-color: #f7f5f1;
  position: relative;
  padding: 35px 0;
  text-align: center;
  font-weight: 500;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body.company #philosophy strong {
    font-size: 1.8rem;
    width: 100%;
    padding: 20px 0;
  }
}
body.company #philosophy strong::after {
  content: "";
  width: 720px;
  height: 174px;
  background-color: #6bb72d;
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-radius: 8px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  body.company #philosophy strong::after {
    width: 100%;
    height: 130px;
  }
}
body.company #value {
  margin-bottom: 70px;
}
@media only screen and (max-width: 768px) {
  body.company #value {
    margin-bottom: 40px;
  }
}
body.company #value ul {
  font-size: 2rem;
  border-radius: 8px;
  background-color: #f7f5f1;
  position: relative;
  padding: 35px;
  font-weight: 500;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body.company #value ul {
    font-size: 1.8rem;
    padding: 20px;
  }
}
body.company #value ul::after {
  content: "";
  width: 100%;
  height: 100%;
  background-color: #6bb72d;
  position: absolute;
  right: -10px;
  bottom: -10px;
  border-radius: 8px;
  z-index: -1;
}
body.company #value ul > li:nth-child(1)::before {
  color: #9bba05;
}
body.company #value ul > li:nth-child(2)::before {
  color: #6bb72d;
}
body.company #value ul > li:nth-child(3)::before {
  color: #009e37;
}
body.company #outline table a {
  text-decoration: underline;
}
body.company #outline table a:hover {
  text-decoration: none;
}
@media only screen and (max-width: 768px) {
  body.company #greeting .img img {
    width: 47%;
    margin: 0 auto 10px;
    display: block;
  }
}
body.company #greeting .signature {
  text-align: right;
  font-size: 1.4rem;
  margin-top: 15px;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  body.company #greeting .signature {
    text-align: center;
    line-height: 1.3;
  }
}
body.company #greeting .signature span {
  font-size: 2.2rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  padding-left: 10px;
}

/* nursing - トップページ
------------------------------------------------- */
body.nursing {
  /* mainvisual */
}
body.nursing .mainvisual {
  background-image: url(../img/nursing/mainvisual_01.jpg);
}
body.nursing .catch {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body.nursing .catch {
    width: 88%;
  }
}
body.nursing #points dt {
  font-size: 2.2rem;
  color: #223d89;
  font-weight: 600;
}
body.nursing #points dd {
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  body.nursing #points .img {
    width: 59%;
  }
}
body.nursing #flow ol {
  margin-bottom: 50px;
}
body.nursing #flow ol li {
  width: 315px;
}
@media only screen and (max-width: 768px) {
  body.nursing #flow ol li {
    width: 100%;
    margin-bottom: 25px;
  }
}
body.nursing #flow dt {
  color: #223d89;
  text-align: center;
  font-size: 2.2rem;
}
body.nursing #flow dt b {
  font-size: 3.2rem;
  font-weight: 500;
}
body.nursing #flow figure img {
  display: block;
  margin-bottom: 10px;
}
@media only screen and (max-width: 768px) {
  body.nursing #flow figure img {
    width: 100%;
    height: auto;
  }
}
body.nursing #price a {
  color: #223d89;
  text-decoration: underline;
}
body.nursing #price a:hover {
  text-decoration: none;
}
body.nursing .contact_box {
  margin-bottom: 30px;
}
body.nursing .banner_box {
  margin-bottom: 0;
}

/* family - トップページ
------------------------------------------------- */
body.family {
  /* mainvisual */
  /* flow */
}
body.family .mainvisual {
  background-image: url(../img/family/mainvisual_01.jpg);
}
body.family .catch {
  width: 1000px;
  margin: 0 auto;
}
@media only screen and (max-width: 768px) {
  body.family .catch {
    width: 88%;
  }
}
body.family .page_nav {
  margin-bottom: 0;
}
body.family .page_nav .just_layout {
  font-size: 0;
}
body.family .page_nav .just_layout:last-child li {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  body.family .page_nav .just_layout:last-child li {
    margin-bottom: 10px;
  }
}
body.family .page_nav li {
  margin-bottom: 10px;
}
body.family .box {
  margin-bottom: 50px;
}
body.family .box h4 {
  font-size: 2.2rem;
  font-weight: 600;
  background-color: #223d89;
  color: #fff;
  display: block;
  padding: 2px 0;
  letter-spacing: 1px;
  width: 260px;
  margin: 0 auto 20px;
  text-align: center;
}
body.family .flow {
  background-color: #f2ebda;
}
body.family .flow ul {
  text-align: center;
  padding: 40px 0;
}
@media only screen and (max-width: 768px) {
  body.family .flow ul {
    padding: 20px 15px 0 15px;
  }
}
body.family .flow li {
  display: inline-block;
  vertical-align: top;
  margin-right: 33px;
  position: relative;
  width: 140px;
}
@media only screen and (max-width: 768px) {
  body.family .flow li {
    width: 47%;
    margin-right: 5%;
    margin-bottom: 20px;
    float: left;
  }
}
body.family .flow li::after {
  font-family: fontAwesome;
  content: "\f0da";
  position: absolute;
  right: -0.6em;
  top: 30px;
  font-size: 2rem;
  color: #99ba31;
}
body.family .flow li:last-child {
  margin-right: 0;
}
body.family .flow li:last-child::after {
  display: none;
}
@media only screen and (max-width: 768px) {
  body.family .flow li:nth-child(2n) {
    margin-right: 0;
  }
}
body.family .flow li img {
  display: block;
  margin-bottom: 3px;
}
body.family .flow li figcaption {
  color: #223d89;
  font-weight: 600;
}
body.family .flow li figcaption dd {
  color: #42210b;
  font-weight: 500;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 li {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 li::after {
    content: "\f0d7";
    right: 50%;
    margin-left: -0.5em;
    top: auto;
    bottom: -1em;
    line-height: 1;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 figure {
    display: table;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 figure img, body.family .flow_02 figure figcaption {
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 60%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 figure img {
    padding-right: 20px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 figure figcaption dt {
    font-size: 1.5rem;
  }
}
@media only screen and (max-width: 768px) {
  body.family .flow_02 figure figcaption dd {
    font-size: 1.3rem;
  }
}
body.family .price_area .title_border {
  font-size: 3.2rem;
}
@media only screen and (max-width: 768px) {
  body.family .price_area .title_border {
    font-size: 2.2rem;
  }
}
body.family .price_area .just_item {
  width: 484px;
}
@media only screen and (max-width: 768px) {
  body.family .price_area .just_item {
    width: 100%;
  }
}
body.family .price_area .just_item p {
  margin-bottom: 15px;
}
body.family .banner_box {
  margin-top: 30px;
  margin-bottom: 0px;
}
body.family #visit_nursing table {
  margin-bottom: 20px;
}
body.family #visit_nursing table + div {
  margin-bottom: 44px;
  padding: 20px;
  background-color: #ededed;
}
@media only screen and (max-width: 768px) {
  body.family #visit_nursing table .head, body.family #visit_nursing table .nextnon ~ td {
    display: none;
  }
  body.family #visit_nursing table tr:last-child th, body.family #visit_nursing table tr:last-child td {
    border-bottom: #ccc 1px dashed;
  }
  body.family #visit_nursing table tr td:last-child, body.family #visit_nursing table .nextnon {
    border-bottom: none !important;
  }
  body.family #visit_nursing table tr th::before {
    content: "基本利用料金：";
    font-weight: 600;
  }
  body.family #visit_nursing table tr td:nth-of-type(1)::before {
    content: "単位：";
    font-weight: 600;
  }
  body.family #visit_nursing table tr td:nth-of-type(2)::before {
    content: "ご利用者様負担（1割負担）：";
    font-weight: 600;
  }
}

/* recruit - トップページ
------------------------------------------------- */
body.recruit {
  /* mainvisual */
  /* voice */
  /* requirements */
}
body.recruit .mainvisual {
  background-image: url(../img/recruit/mainvisual_01.jpg);
}
@media only screen and (max-width: 768px) {
  body.recruit #voice .img img {
    width: 52%;
    margin: 0 auto 10px;
    display: block;
  }
}
body.recruit #voice .img figcaption {
  text-align: center;
}
body.recruit #voice .box {
  padding-bottom: 35px;
  margin-bottom: 35px;
  border-bottom: 4px #6bb72d dotted;
}
body.recruit #voice dt {
  color: #009e37;
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 5px;
}
body.recruit #voice dt:nth-of-type(1) {
  color: #009e37;
}
body.recruit #voice dt:nth-of-type(2) {
  color: #6bb72d;
}
body.recruit #voice dd {
  margin-bottom: 25px;
}
body.recruit #voice dd:last-of-type {
  margin-bottom: 0;
}
body.recruit #voice .gallery li {
  width: 226px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  body.recruit #voice .gallery li {
    width: 48%;
  }
}
body.recruit #voice .gallery li img {
  display: block;
  margin-bottom: 15px;
}
body.recruit #requirements h3 {
  font-size: 2.2rem;
  font-weight: 600;
  background-color: #223d89;
  color: #fff;
  display: block;
  padding: 2px 0;
  letter-spacing: 1px;
  width: 205px;
  margin: 0 auto 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.recruit #requirements h3 {
    font-size: 1.9rem;
  }
}
body.recruit #requirements table {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  body.recruit #requirements table {
    margin-bottom: 30px;
  }
}
body.recruit #requirements table:last-of-type {
  margin-bottom: 0;
}
body.recruit #requirements .btn {
  margin-bottom: 60px;
}
@media only screen and (max-width: 768px) {
  body.recruit #requirements .btn {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 768px) {
  body.recruit .contact_box .mail a {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}
@media only screen and (max-width: 320px) {
  body.recruit .contact_box .mail a {
    font-size: 1rem;
    letter-spacing: 0;
    line-height: 1.3;
  }
}
@media only screen and (max-width: 768px) {
  body.recruit .contact_box .tell li {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 320px) {
  body.recruit .contact_box dd {
    line-height: 1.2;
  }
}

/* contact - トップページ
------------------------------------------------- */
body.contact {
  /* mainvisual */
}
body.contact .mainvisual {
  background-image: url(../img/contact/mainvisual_01.jpg);
}
body.contact #form > .wrap {
  padding-top: 0;
}
@media only screen and (max-width: 768px) {
  body.contact #form > .wrap {
    padding-bottom: 40px;
  }
}
body.contact #form p {
  text-align: center;
  margin-bottom: 20px;
}
body.contact #form table {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  body.contact #form .yubin {
    width: 30%;
  }
}
@media only screen and (max-width: 768px) {
  body.contact #form .notes {
    display: block;
  }
}
body.contact #form .btns {
  text-align: center;
}

body.recruit .topicpath,
body.staff .topicpath,
body.company .topicpath {
  margin-bottom: 10px;
}

body.contact .topicpath {
  margin-bottom: 45px;
}
@media only screen and (max-width: 768px) {
  body.contact .topicpath {
    margin-bottom: 20px;
  }
}

body.firefox .site_footer > .inner .label {
  line-height: 0.8;
  padding: 10px 0;
}

/* online, strengths - かいてきやオンライン健康体操, かいてきやの強み
------------------------------------------------- */
.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}

.bg_color_02 {
  background-color: #019e37;
}

.bg_color_03 {
  background-color: #6bb72d;
}

.text_color_01 {
  color: #f8f00d;
}

.text_color_02 {
  color: #009e37;
}

.link_text {
  text-decoration: underline;
}

.title_bunner {
  max-width: 387px;
  margin: 0 auto 3.5%;
  padding: 4px;
  border: 1px #f8f00d solid;
  color: #f8f00d;
  font-size: 1.8rem;
}
@media only screen and (max-width: 768px) {
  .title_bunner {
    font-size: 1.6rem;
  }
}

.heading_bunner {
  margin-bottom: 2.5%;
  padding-bottom: 2.5%;
  border-bottom: 1px #ffffff solid;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 4rem;
  line-height: 1.2;
}
.heading_bunner span.font_up {
  display: block;
  font-size: 5rem;
}
@media only screen and (max-width: 768px) {
  .heading_bunner {
    font-size: 2.5rem;
  }
  .heading_bunner span.font_up {
    display: block;
    font-size: 3.2rem;
  }
}

.circle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
}

/* online - かいてきやオンライン健康体操
------------------------------------------------- */
body.online {
  /* mainvisual */
}
body.online .mainvisual {
  background-image: url(../img/online/mainvisual_01.jpg);
}
@media only screen and (max-width: 768px) {
  body.online .mainvisual h2 {
    letter-spacing: 0;
  }
}
body.online .catch {
  background-image: url(../img/online/banner_bg.svg);
  background-repeat: no-repeat;
  background-position: center;
}
body.online .catch_inner {
  max-width: 654px;
  margin: 0 auto;
  padding: 0 20px;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner {
    padding: 0;
  }
}
body.online .catch_inner .catch_inner_wrap {
  position: relative;
  padding: 3.5% 2% 5.5%;
  color: #ffffff;
  text-align: center;
}
body.online .catch_inner .catch_inner_wrap .time {
  margin-bottom: 3.5%;
  line-height: 1.2;
}
body.online .catch_inner .catch_inner_wrap .time dt,
body.online .catch_inner .catch_inner_wrap .time dd {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .time dt,
  body.online .catch_inner .catch_inner_wrap .time dd {
    display: block;
  }
}
body.online .catch_inner .catch_inner_wrap .time dt {
  margin-right: 0.5em;
  font-size: 2.1rem;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .time dt {
    margin-right: 0;
  }
}
body.online .catch_inner .catch_inner_wrap .time dd {
  margin-right: 15%;
  font-size: 3rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .time dd {
    margin-right: 0;
    font-size: 2.8rem;
  }
}
body.online .catch_inner .catch_inner_wrap .time dd span {
  font-size: 3.5rem;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .time dd span {
    margin-right: 0;
    font-size: 3.3rem;
  }
}
body.online .catch_inner .catch_inner_wrap .note {
  max-width: 400px;
  margin: 0 auto;
  padding: 1.8%;
  background: #ffffff;
  text-align: center;
}
body.online .catch_inner .catch_inner_wrap .note .note_wrap {
  display: inline-block;
  color: #333;
  font-size: 2rem;
  line-height: 1.5;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .note .note_wrap {
    font-size: 1.6rem;
  }
}
body.online .catch_inner .catch_inner_wrap .note .note_wrap span {
  margin-left: 0.5em;
  letter-spacing: -0.2em;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .note .note_wrap span {
    margin-left: 0;
  }
}
body.online .catch_inner .catch_inner_wrap .circle {
  position: absolute;
  right: -5%;
  bottom: 18%;
  width: 160px;
  height: 160px;
  background: #f8f00d;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .circle {
    bottom: -75px;
    width: 100px;
    height: 100px;
  }
}
body.online .catch_inner .catch_inner_wrap .circle p {
  -webkit-transform: rotate(10deg);
      -ms-transform: rotate(10deg);
          transform: rotate(10deg);
  color: #333;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 4.5rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  body.online .catch_inner .catch_inner_wrap .circle p {
    font-size: 3rem;
  }
}
body.online .catch .wrap {
  position: relative;
  margin-bottom: 34px;
  padding: 0;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap {
    padding-bottom: 237px;
  }
}
body.online .catch .wrap .left, body.online .catch .wrap .right {
  position: absolute;
  bottom: 0;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .left, body.online .catch .wrap .right {
    width: 60%;
    max-width: 168px;
  }
}
body.online .catch .wrap .left .circle, body.online .catch .wrap .right .circle {
  position: absolute;
  width: 116px;
  height: 116px;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .left .circle, body.online .catch .wrap .right .circle {
    width: 58px;
    height: 58px;
  }
}
body.online .catch .wrap .left .circle span, body.online .catch .wrap .right .circle span {
  color: #ffffff;
  font-size: 2.7rem;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .left .circle span, body.online .catch .wrap .right .circle span {
    font-size: 1.4rem;
  }
}
body.online .catch .wrap .left {
  left: 0;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .left {
    left: 20%;
    -webkit-transform: translateX(-20%);
        -ms-transform: translateX(-20%);
            transform: translateX(-20%);
  }
}
body.online .catch .wrap .left .circle {
  top: 2%;
  right: 25%;
  background: #9bb905;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .left .circle {
    top: 15%;
    right: 30%;
  }
}
body.online .catch .wrap .left .circle span {
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
}
body.online .catch .wrap .right {
  right: -11%;
}
@media only screen and (max-width: 768px) {
  body.online .catch .wrap .right {
    right: 20%;
    -webkit-transform: translateX(20%);
        -ms-transform: translateX(20%);
            transform: translateX(20%);
  }
}
body.online .catch .wrap .right img {
  position: relative;
  z-index: 1;
}
body.online .catch .wrap .right .circle {
  top: -8%;
  left: 10%;
  background: #ec9f41;
}
body.online .catch .wrap .right .circle span {
  -webkit-transform: rotate(15deg);
      -ms-transform: rotate(15deg);
          transform: rotate(15deg);
}
body.online .about .card {
  width: 32%;
  margin-bottom: 50px;
  border: 1px #cecece solid;
}
@media only screen and (max-width: 768px) {
  body.online .about .card {
    width: 100%;
    max-width: 320px;
    margin-right: auto;
    margin-left: auto;
  }
}
body.online .about .card_img {
  margin-bottom: 25px;
}
body.online .about .title_green {
  text-align: center;
}
body.online .about .card_list {
  padding: 0 10px 20px;
  font-weight: 600;
}
body.online .Band_01 .bg {
  position: relative;
  z-index: -1;
}
body.online .Band_01 .title_wrap {
  position: relative;
  padding-bottom: 114px;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap {
    padding-bottom: 0;
  }
}
body.online .Band_01 .title_wrap .title_text {
  padding: 0 200px;
  color: #ffffff;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 4rem;
  line-height: 1.5;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap .title_text {
    margin-bottom: 0.5em;
    padding: 0;
    font-size: 3rem;
  }
}
body.online .Band_01 .title_wrap .title_text span {
  display: block;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 2.5rem;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap .title_text span {
    font-size: 1.8rem;
  }
}
body.online .Band_01 .title_wrap .circle {
  position: absolute;
  top: 30px;
  left: 40px;
  width: 156px;
  height: 156px;
  background: #f8f00d;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap .circle {
    display: none;
  }
}
body.online .Band_01 .title_wrap .circle p {
  -webkit-transform: rotate(-10deg);
      -ms-transform: rotate(-10deg);
          transform: rotate(-10deg);
  color: #333;
  font-size: 3.9rem;
  line-height: 1.2;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap .circle p {
    font-size: 3rem;
  }
}
body.online .Band_01 .title_wrap .img {
  position: absolute;
  bottom: 0;
  right: 0;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .title_wrap .img {
    position: relative;
    text-align: center;
  }
}
body.online .Band_01 .list_wrap {
  margin-top: -62px;
  padding-top: 0;
  padding-bottom: 90px;
}
body.online .Band_01 .list_wrap .flex {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin: 0 20px 60px;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .list_wrap .flex {
    margin-left: 0;
    margin-right: 0;
  }
}
body.online .Band_01 .list_wrap .card {
  position: relative;
  width: 41.6%;
  margin: 0 3%;
  padding: 3.6% 7%;
  border-radius: 15px;
  background: #f7f5f1;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .list_wrap .card {
    width: calc(100% - 80px);
    margin: 0 auto 30px;
    padding: 40px 10px 40px 70px;
  }
}
body.online .Band_01 .list_wrap .card:before {
  content: "";
  position: absolute;
  width: 11.5%;
  height: 4px;
  background: #009e37;
  top: 58px;
  left: 0;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .list_wrap .card:before {
    width: 50px;
  }
}
body.online .Band_01 .list_wrap .card:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: #6bb72d;
  top: 16px;
  left: 20px;
  border-radius: 15px;
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .list_wrap .card:after {
    top: 10px;
    left: 12px;
  }
}
body.online .Band_01 .list_wrap .title {
  margin-bottom: 25px;
  color: #009e37;
  font-size: 2.8rem;
}
@media only screen and (max-width: 768px) {
  body.online .Band_01 .list_wrap .title {
    font-size: 2.2rem;
  }
}
body.online .Band_01 .list_wrap .card_check_list > li {
  padding-left: 1.5em;
  background: url(../img/common/icon_check2.png) top 0.3em left no-repeat;
  background-size: 1.1em;
}
body.online .Band_01 .list_wrap .card_check_list > li:not(:last-child) {
  margin-bottom: 1em;
}
body.online .Band_01 .list_wrap .icon {
  margin-right: 0.5em;
}
body.online .flow {
  margin-bottom: 100px;
  background: #f2eada;
}
@media only screen and (max-width: 768px) {
  body.online .flow {
    margin-bottom: 50px;
  }
}
body.online .flow .card {
  position: relative;
  width: 20.6%;
  padding: 32px 12px 16px;
  background: #f7f5f0;
}
@media only screen and (max-width: 768px) {
  body.online .flow .card {
    width: calc(100% - 24px);
    margin-bottom: 24px;
  }
}
body.online .flow .card .caption {
  margin-bottom: 10px;
  color: #009e37;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}
body.online .flow .card .card_icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 77px;
  height: 77px;
  margin: 0 auto;
  margin-bottom: 16px;
  border-radius: 50%;
  background: #009e37;
}
body.online .flow .card .title {
  margin-bottom: 20px;
  font-size: 2rem;
  text-align: center;
}
body.online .flow .card .tel {
  color: #333;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
}
body.online .flow .card:not(:last-child)::before {
  content: "";
  position: absolute;
  width: 14px;
  height: 22px;
  background: url(../img/common/icon_arrow.png) no-repeat center/contain;
  top: 50%;
  right: -9.5%;
  -webkit-transform: translate(-50%, 0);
      -ms-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
}
@media only screen and (max-width: 768px) {
  body.online .flow .card:not(:last-child)::before {
    top: auto;
    right: auto;
    bottom: -30px;
    left: 50%;
    -webkit-transform: translate(0, -50%) rotate(90deg);
        -ms-transform: translate(0, -50%) rotate(90deg);
            transform: translate(0, -50%) rotate(90deg);
  }
}
body.online .security .wrap {
  padding: 0 0 100px;
}
@media only screen and (max-width: 768px) {
  body.online .security .wrap {
    padding-top: 50px;
  }
}
body.online .security .box {
  position: relative;
}
body.online .security .flex {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3% 4% 3% 17%;
  background: #6bb72d;
  border-radius: 15px;
}
@media only screen and (max-width: 768px) {
  body.online .security .flex {
    padding: 62px 26px 20px;
  }
}
body.online .security .text {
  width: 63.5%;
  color: #fff;
}
body.online .security .text .title_green {
  margin-bottom: 12px;
  color: #fff;
}
@media only screen and (max-width: 768px) {
  body.online .security .text {
    width: 100%;
    margin-bottom: 1em;
  }
}
body.online .security .image {
  width: 30.5%;
}
@media only screen and (max-width: 768px) {
  body.online .security .image {
    width: 100%;
    text-align: center;
  }
}
body.online .security .circle {
  position: absolute;
  top: 50%;
  left: 24px;
  width: 123px;
  height: 123px;
  background: #fff;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
}
@media only screen and (max-width: 768px) {
  body.online .security .circle {
    top: -61px;
    left: -20px;
    width: 110px;
    height: 110px;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
  }
}
body.online .security .circle p {
  -webkit-transform: rotate(-8deg);
      -ms-transform: rotate(-8deg);
          transform: rotate(-8deg);
  color: #6bb72d;
  font-size: 2.1rem;
  line-height: 1.5;
}
@media only screen and (max-width: 768px) {
  body.online .security .circle p {
    font-size: 1.8rem;
  }
}
body.online .Band_02 {
  position: relative;
  height: 250px;
  background: #019e37;
}
@media only screen and (max-width: 768px) {
  body.online .Band_02 {
    height: 125px;
  }
}
body.online .Band_02 .Band_02_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 1884px;
  padding: 0;
  color: #fff;
  font-size: 0;
}
body.online .Band_02 figure {
  display: inline-block;
  width: 303px;
  padding: 0 4px;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.online .Band_02 figure {
    display: none;
  }
}
body.online .Band_02 .title_text {
  display: inline-block;
  width: 640px;
  margin: 0 auto;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  text-align: center;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.online .Band_02 .title_text {
    display: block;
    width: 100%;
    font-size: 2.2rem;
  }
}
body.online .movie {
  background: #f2eada;
  padding-bottom: 90px;
}
body.online .movie .youtube {
  margin-bottom: 9%;
}
body.online .movie .banner {
  border-radius: 15px;
  border: 3px solid #223d89;
  background: #f7f5f0;
}
body.online .movie .banner a {
  display: block;
  padding: 3.2%;
}
body.online .connect .container {
  background: #f7f5f1;
}
body.online .connect .container .title_bg {
  padding: 1.8%;
  background: #6bb72d;
  color: #ffffff;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .title_bg {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv {
    text-align: center;
  }
}
body.online .connect .container .tv .item {
  width: 34%;
  margin: 3.8% 0 2.8%;
  padding: 0 2.4%;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item {
    width: calc(100% - 48px);
    margin: 38px 0 28px;
    padding: 0 24px;
  }
}
body.online .connect .container .tv .item:not(:last-child) {
  border-right: 4px #6bb72d dotted;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item:not(:last-child) {
    border-right: none;
  }
}
body.online .connect .container .tv .item .title_green {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 70px;
  padding-bottom: 5.7%;
  border-bottom: 4px #6bb72d dotted;
  color: #0e983b;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item .title_green {
    min-height: auto;
    margin-bottom: 30px;
    padding-top: 1em;
    padding-bottom: 1em;
    border-top: 4px #6bb72d dotted;
  }
}
body.online .connect .container .tv .item .item_img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 124px;
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item .item_img {
    min-height: auto;
  }
}
body.online .connect .container .tv .item .caption {
  min-height: 54px;
  margin-bottom: 12px;
  font-weight: 600;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item .caption {
    min-height: auto;
  }
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .tv .item .text {
    display: inline-block;
    text-align: left;
  }
}
body.online .connect .container .wifi,
body.online .connect .container .zoom {
  margin: 0 2.4%;
  padding: 5.8% 19.2% 4.8%;
  border-top: 4px #6bb72d dotted;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .wifi,
  body.online .connect .container .zoom {
    padding: 30px 20px;
    text-align: center;
  }
}
body.online .connect .container .wifi .icon,
body.online .connect .container .zoom .icon {
  display: inline-block;
  margin-right: 9%;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .wifi .icon,
  body.online .connect .container .zoom .icon {
    display: block;
    margin-right: 0;
    margin-bottom: 9%;
    text-align: center;
  }
}
body.online .connect .container .wifi .item_container,
body.online .connect .container .zoom .item_container {
  display: inline-block;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.online .connect .container .wifi .item_container,
  body.online .connect .container .zoom .item_container {
    text-align: left;
  }
}
body.online .connect .container .wifi .title_green,
body.online .connect .container .zoom .title_green {
  margin-bottom: 0;
  color: #0e983b;
}
body.online .connect .connect_pc figure,
body.online .connect .connect_sp figure {
  padding: 52px 20px;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.online .connect .connect_pc figure,
  body.online .connect .connect_sp figure {
    padding: 20px;
  }
}
body.online .connect .connect_pc .btn,
body.online .connect .connect_sp .btn {
  display: none;
}
@media only screen and (max-width: 768px) {
  body.online .connect .connect_pc .btn,
  body.online .connect .connect_sp .btn {
    display: block;
    width: calc(100% - 20px);
    padding-bottom: 30px;
  }
}
body.online .connect .connect_movie {
  margin-bottom: 50px;
}
body.online .youtube {
  position: relative;
  max-width: 806px;
  height: 0;
  margin: 0 auto;
  padding-bottom: 44.5%;
}
@media only screen and (max-width: 768px) {
  body.online .youtube {
    padding-bottom: 54.5%;
  }
}
body.online .youtube iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* strengths - かいてきやの強み
------------------------------------------------- */
body.strengths .mainvisual {
  background-image: url(../img/strengths/mainvisual_01.jpg);
}
body.strengths .text {
  line-height: 1.9;
}
@media only screen and (max-width: 768px) {
  body.strengths .text {
    margin-bottom: 16px;
  }
}
body.strengths .image img {
  border-radius: 7px;
}
body.strengths .top {
  margin-bottom: 80px;
}
body.strengths .top .wrap {
  padding: 0;
}
body.strengths .top .heading {
  height: 306px;
  margin-bottom: 50px;
  background: url(../img/strengths/img_top_bg.png) no-repeat bottom center/cover;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .heading {
    height: auto;
    background: none;
  }
}
body.strengths .top .heading .heading_inner {
  max-width: 468px;
  margin: 0 auto;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .heading .heading_inner {
    max-width: none;
  }
}
body.strengths .top .heading .heading_inner .heading_title {
  margin-bottom: 8px;
  color: #223d89;
  font-size: 2.6rem;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .heading .heading_inner .heading_title {
    font-size: 2.1rem;
  }
}
body.strengths .top .heading .heading_inner .heading_text {
  display: inline-block;
  color: #333333;
  font-size: 1.8rem;
  line-height: 2;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .heading .heading_inner .heading_text {
    font-size: 1.6rem;
  }
}
body.strengths .top .container {
  counter-reset: num;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .number {
    margin-bottom: 8px;
  }
}
body.strengths .top .container .number::before {
  display: inline-block;
  counter-increment: num;
  content: counter(num, decimal-leading-zero);
  margin-right: 14px;
  color: #169d3d;
  font-size: 4rem;
  vertical-align: middle;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .number::before {
    font-size: 3.2rem;
  }
}
body.strengths .top .container .number span {
  display: inline-block;
  position: relative;
  padding: 4px 20px;
  border-radius: 7px;
  background: #f7f5f1;
  color: #009e37;
  font-weight: 600;
}
body.strengths .top .container .number span::before {
  position: absolute;
  top: 5px;
  left: 4px;
  z-index: -1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 7px;
  background: #009e37;
}
body.strengths .top .container .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
body.strengths .top .container .box:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .box {
    display: block;
  }
}
body.strengths .top .container .box .detail {
  width: 480px;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .box .detail {
    width: 100%;
  }
}
body.strengths .top .container .box .detail .title {
  margin-bottom: 10px;
  color: #223d89;
  font-size: 3rem;
  line-height: 1.4;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .box .detail .title {
    font-size: 2rem;
  }
}
body.strengths .top .container .box .image {
  width: 490px;
}
@media only screen and (max-width: 768px) {
  body.strengths .top .container .box .image {
    width: 100%;
    text-align: center;
  }
}
body.strengths .top .container .box .image img {
  border-radius: 8px;
}
body.strengths .initiatives {
  margin-bottom: 66px;
}
body.strengths .initiatives .wrap {
  padding: 0;
}
body.strengths .initiatives .container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  body.strengths .initiatives .container {
    display: block;
  }
}
body.strengths .initiatives .container .detail {
  width: 466px;
}
@media only screen and (max-width: 768px) {
  body.strengths .initiatives .container .detail {
    width: 100%;
  }
}
body.strengths .initiatives .container .detail .note {
  margin-bottom: 25px;
  color: #223d89;
  font-size: 2.2rem;
  font-weight: 600;
}
@media only screen and (max-width: 768px) {
  body.strengths .initiatives .container .detail .note {
    max-width: 418px;
    margin-right: auto;
    margin-left: auto;
  }
}
body.strengths .initiatives .container .image {
  width: 484px;
}
@media only screen and (max-width: 768px) {
  body.strengths .initiatives .container .image {
    width: 100%;
    text-align: center;
  }
}
body.strengths .initiatives .images_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
body.strengths .initiatives .images_box .image {
  width: 31.2%;
}

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

		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 */