@charset "UTF-8";
/* $pc_container_width_sm: 800px; */
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
/* $pc_container_width_sm: 800px; */
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Foundation
ブラウザ仕様をフラットにする

文字色 : palette('color');
リンク : $link_color
ホバー : $hover_color

*/
body {
  -webkit-font-smoothing: antialiased;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
}

li {
  list-style: none;
}

input,
textarea {
  outline: 0;
}

input::-moz-placeholder {
  color: #999;
  opacity: .75;
}

input::-webkit-input-placeholder {
  color: #999;
  opacity: .75;
}

input:-ms-input-placeholder {
  color: #999;
  opacity: .75;
}

.none {
  display: none;
}

body {
  font-family: 'Lato', 'Noto Sans JP', 'ヒラギノ角ゴ ProN', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.7;
  background: #fff;
  color: #343434;
}

.gmap {
  width: 100%;
}

.gmap > iframe {
  max-width: 100%;
}

.gmap > img {
  max-width: 100%;
}

.gcalendar {
  max-width: 100%;
}

.gcalendar > iframe {
  max-width: 100%;
}

.gcalendar > img {
  max-width: 100%;
}

.twitter {
  overflow: hidden;
}

.twitter > iframe {
  margin-left: auto;
  margin-right: auto;
}

.img {
  max-width: 100%;
  display: block;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

*/
em {
  font-style: italic;
}

/*

<div class="_h3">.bold</div>

太字。

	<span class="bold">太い文字</span><br>
	<span class="em">太い文字</span>

*/
.bold,
.em {
  font-weight: bold;
  font-style: normal;
}

/*

<div class="_h3">.underline</div>

下線。

	<span class="underline">テキスト</span><br>

*/
.underline {
  text-decoration: underline;
}

.no_underline {
  text-decoration: none !important;
}

/*

<div class="_h3">.red .caution</div>

赤文字。

	<span class="caution">赤い文字</span><br>
	<span class="red">赤い文字</span>

*/
.caution,
.red_text {
  color: #e75252;
  -webkit-text-decoration-color: #e75252;
          text-decoration-color: #e75252;
}

.black_text {
  color: #343434 !important;
}

a.black_text {
  color: #343434 !important;
}

a.black_text:hover {
  color: #ee9d00;
}

/*

<div class="_h3">.orange_text</div>

オレンジ文字。

	<span class="orange_text">オレンジ文字</span>

*/
.orange_text {
  color: #dc8630;
}

.orange_text2 {
  color: #ffcad4;
}

/*

<div class="_h3">.white_text</div>

白文字。

	<span class="white_text">オレンジ文字</span>

*/
.white_text {
  color: #fff;
}

/*

<div class="_h3">.blue_text</div>

時々使う青文字

	<div class="blue_text">テキスト</div>

*/
.blue_text {
  color: #57c2e1;
  font-weight: bold;
}

.small_text {
  font-size: 0.75rem;
}

/*

<div class="_h3">.yellow_text</div>

時々使う青文字

	<div class="yellow_text">テキスト</div>

*/
.yellow_text {
  color: #a67f07;
  font-weight: bold;
}

/*

<div class="_h3">.gray_text</div>

時々使う灰色文字

	<div class="gray_text">テキスト</div>

*/
.gray_text {
  color: #888;
}

/*

<div class="_h3">.pink_text</div>

ピンク文字

	<div class="pink_text">テキスト</div>

*/
.pink_text {
  color: #ff7bac;
}

/*

<div class="_h3">.center</div>

適当に中央によせたい。

3つ指定してます
margin-left: auto;
margin-right: auto;
text-align: center;

	<div class="center">テキスト</div>

*/
.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.center_table {
  margin-left: auto;
  margin-right: auto;
}

.left {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.right {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

/*

<div class="_h3">.center_position</div>

画像を適当に中央によせたい。
親要素に relative が必要
width と height は個別に指定した方がいい

	<div class='line'>
		<img class="center_position" src="http://placehold.it/100x100" alt="">
	</div>

*/
.center_position {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/*

<div class="_h3">.center_text</div>

text-align: right 。 float はしない。

	<div class="center_text">テキスト</div>

*/
.center_text {
  text-align: center;
}

/*

<div class="_h3">.right_text</div>

text-align: right 。 float はしない。

	<div class="right_text">テキスト</div>

*/
.right_text {
  text-align: right;
}

.float_right {
  float: right;
  padding-left: .5em;
  padding-bottom: .5em;
}

.float_left {
  float: left;
  padding-right: .5em;
  padding-bottom: .5em;
}

.clear_both {
  clear: both;
}

/*

<div class="_h3">.clearfix</div>

	<div class="clearfix">テキスト</div>

*/
.clearfix::after {
  content: '';
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  display: inline-block;
}

* html .clearfix {
  height: 1%;
}

.clearfix {
  display: block;
}

/*

<div class="_h3">.clear</div>

clear: both; だけしたい時。

	<div class="clear">テキスト</div>

*/
.clear {
  clear: both;
}

/*

<div class="_h3">.no_text</div>

背景画像だけを表示して、テキストを吹き飛ばして非表示にしたい。 text-indent: 120%;
(下記例の info_title _hosp クラスはサンプルをわかりやすくするための指定。)

	<div class="info_title _hosp no_text">テキスト</div>

.no_text {
	text-indent: 120%;
	line-height: 0;
	white-space: nowrap;
	overflow: hidden;
	display: block;
}
*/
.no_text,
.hide-text {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
}

/*

<div class="_h3">.on_opacity</div>

:hover で透明化する aタグ。 opacity はサイト統一と考えて、基本ここにしか書いていません。

	<a href="#" class="on_opacity">マウスオーバーで透明化するリンクテキスト</a>

*/
.on_opacity:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*

<div class="_h3">.ellipsis</div>

領域からはみ出た場合に「...」を表示する。ブラウザの挙動がおかしいのであまりにあてにしない。

	<div class="ellipsis" style="width: 100px;">長いテキスト長いテキスト長いテキスト長いテキスト</div>

*/
.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

/*

<div class="_h3">.no_wrap</div>

改行せず、領域を貫通するテキスト。 PCのために書く時、SPで改行をせず表示が壊れないかに注意。

	<div class="no_wrap">テキスト</div>

*/
.no_wrap {
  white-space: nowrap;
}

/*

<div class="_h3">.mb_1em</div>

*/
.root .main_content .mb_3em {
  margin-bottom: 3em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_3em-pc {
    margin-bottom: 3em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_3em-sp {
    margin-bottom: 3em !important;
  }
}

.root .main_content .mb_2em {
  margin-bottom: 2em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_2em-pc {
    margin-bottom: 2em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_2em-sp {
    margin-bottom: 2em !important;
  }
}

.root .main_content .mb_1_5em {
  margin-bottom: 1.5em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_1_5em-pc {
    margin-bottom: 1.5em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_1_5em-sp {
    margin-bottom: 1.5em !important;
  }
}

.root .main_content .mb_1em {
  margin-bottom: 1em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_1em-pc {
    margin-bottom: 1em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_1em-sp {
    margin-bottom: 1em !important;
  }
}

.root .main_content .mb_05em {
  margin-bottom: .5em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_05em-pc {
    margin-bottom: .5em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_05em-sp {
    margin-bottom: .5em !important;
  }
}

.root .main_content .mb_0em,
.root .main_content .no_mb,
.root .main_content .mb_none {
  margin-bottom: 0 !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mb_0em-pc,
  .root .main_content .no_mb-pc,
  .root .main_content .mb_none-pc {
    margin-bottom: 0 !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mb_0em-sp,
  .root .main_content .no_mb-sp,
  .root .main_content .mb_none-sp {
    margin-bottom: 0 !important;
  }
}

.root .main_content .mt_3em {
  margin-top: 3em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_3em-pc {
    margin-top: 3em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_3em-sp {
    margin-top: 3em !important;
  }
}

.root .main_content .mt_2em {
  margin-top: 2em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_2em-pc {
    margin-top: 2em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_2em-sp {
    margin-top: 2em !important;
  }
}

.root .main_content .mt_1_5em {
  margin-top: 1.5em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_1_5em-pc {
    margin-top: 1.5em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_1_5em-sp {
    margin-top: 1.5em !important;
  }
}

.root .main_content .mt_1em {
  margin-top: 1em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_1em-pc {
    margin-top: 1em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_1em-sp {
    margin-top: 1em !important;
  }
}

.root .main_content .mt_05em {
  margin-top: .5em !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_05em-pc {
    margin-top: .5em !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_05em-sp {
    margin-top: .5em !important;
  }
}

.root .main_content .mt_0em,
.root .main_content .no_mt,
.root .main_content .mt_none {
  margin-top: 0 !important;
}

@media screen and (min-width: 1000px), print {
  .root .main_content .mt_0em-pc,
  .root .main_content .no_mt-pc,
  .root .main_content .mt_none-pc {
    margin-top: 0 !important;
  }
}

@media screen and (max-width: 999px) {
  .root .main_content .mt_0em-sp,
  .root .main_content .no_mt-sp,
  .root .main_content .mt_none-sp {
    margin-top: 0 !important;
  }
}

/*

<div class="_h3">.tel</div>

comment

	<div class="fot_m">外来診療</div>

*/
.tel_link {
  word-wrap: break-word;
}

.mincho {
  font-family: "YuMincho", "游明朝", "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  font-weight: normal;
}

/**************************
.image_radius
*/
.image_radius {
  border-radius: 8px;
}

.root .no_radius {
  border-radius: inherit;
}

/**************************
.skip
*/
.skip {
  border-style: none;
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 0;
  z-index: 100;
}

.fb_page_container {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

/* box-sizing: border-box;以外ほとんど使わないので */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 以下をinline-blockで使うこともほぼ無いので ※これは消さない */
img,
iframe,
video {
  display: block;
  max-width: 100%;
  margin: auto;
}

/* $pc_container_width_sm: 800px; */
/**************************
Compass Text Replacement
*/
/**************************
Inline List
*/
/**************************
Inline Block List
*/
/**************************
horizontal-list
*/
/**************************
Bullets
*/
/* simple clearfix */
/**************************
@mixin for sprite
*/
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@-webkit-keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@-webkit-keyframes zoom-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes zoom-in-hover {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom-in-hover {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes zoom-in-hover2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes zoom-in-hover2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@-webkit-keyframes sub_menu_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .5;
  }
}

@keyframes sub_menu_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .5;
  }
}

@-webkit-keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
            transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
            transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
            transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
            transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
            transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
            transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes pop-downwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, -12);
            transform: matrix(0.97, 0, 0, 1, 0, -12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, -2);
            transform: matrix(0.99, 0, 0, 1, 0, -2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 1);
            transform: matrix(1, 0, 0, 1, 0, 1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@keyframes pop-downwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, -12);
            transform: matrix(0.97, 0, 0, 1, 0, -12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, -2);
            transform: matrix(0.99, 0, 0, 1, 0, -2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 1);
            transform: matrix(1, 0, 0, 1, 0, 1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@-webkit-keyframes pop-up {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pop-up {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes pop-up-return {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes pop-up-return {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@-webkit-keyframes character_move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes character_move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@-webkit-keyframes character_move02 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes character_move02 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes comment01_move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes comment01_move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@-webkit-keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes slide-up {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes header_start {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header_start {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes gnav_sub {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes gnav_sub {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes header_appear {
  0% {
    top: -66px;
  }
  100% {
    top: 0;
  }
}

@keyframes header_appear {
  0% {
    top: -66px;
  }
  100% {
    top: 0;
  }
}

@-webkit-keyframes imenu_fade-in {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes imenu_fade-in {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@-webkit-keyframes header-fixed {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: none;
  }
  1% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: block;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: block;
  }
}

@keyframes header-fixed {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: none;
  }
  1% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: block;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: block;
  }
}

@-webkit-keyframes header-sub-show {
  0% {
    opacity: 0;
    max-height: 20px;
  }
  100% {
    opacity: 1;
    max-height: 150px;
    display: block;
  }
}

@keyframes header-sub-show {
  0% {
    opacity: 0;
    max-height: 20px;
  }
  100% {
    opacity: 1;
    max-height: 150px;
    display: block;
  }
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

コンポーネント設定。
各ページでよく使い回す記述。
このサイト専用の共通設定。


*/
.fs_30 {
  font-size: 1.875rem;
}

/**************************
heading
*/
/*

<div class="_h3">.large_text</div>

大きい文字。

	<span class="large_text">テキスト</span><br>

*/
.large_text {
  font-weight: normal;
  line-height: 2;
}

@media screen and (min-width: 1000px), print {
  .large_text {
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 999px) {
  .large_text {
    font-size: 1.125rem;
  }
}

.large_text.red_text {
  color: #e75252;
}

.push_text {
  font-size: 1.25rem;
  font-weight: bold;
  color: #ffcad4;
  line-height: 1.5;
}

.push_text-blue {
  color: #57c2e1;
}

/**************************
.main_content
*/
.main_content ul:not(.cancel):not(.pagelink_list) > li {
  padding-left: 1.5em;
  margin-bottom: .3em;
  position: relative;
  top: 0;
  left: 0;
  line-height: 1.6;
}

.main_content ul:not(.cancel):not(.pagelink_list) > li:last-child {
  margin-bottom: 0;
}

.main_content ul:not(.cancel):not(.pagelink_list) > li::before {
  content: '';
  display: block;
  position: absolute;
  left: .2em;
  width: 6px;
  height: 6px;
  background-color: #93ab22;
  border-radius: 3px;
}

@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.pagelink_list) > li::before {
    top: 1.1ex;
  }
}

@media screen and (max-width: 999px) {
  .main_content ul:not(.cancel):not(.pagelink_list) > li::before {
    top: 1.1ex;
  }
}

.main_content .anotation_list:not(.cancel):not(:last-child) {
  margin-bottom: 1em;
}

.main_content .anotation_list:not(.cancel) > li {
  padding-left: 1.5em;
  margin-bottom: .5em;
  position: relative;
  top: 0;
  left: 0;
}

.main_content .anotation_list:not(.cancel) > li:last-child {
  margin-bottom: 0;
}

.main_content .anotation_list:not(.cancel) > li::before {
  content: '※';
  width: .5em;
  position: absolute;
  background: 0 none;
  top: .04em;
  left: 0;
  color: #f1333e;
}

.main_content ol:not(.cancel) {
  list-style: none;
  counter-reset: num;
}

.main_content ol:not(.cancel):not(:last-child) {
  margin-bottom: 2em;
}

.main_content ol:not(.cancel) > li {
  padding-left: 1.5em;
  line-height: 1.6;
  margin-bottom: 1em;
  position: relative;
  top: 0;
  left: 0;
}

.main_content ol:not(.cancel) > li::before {
  counter-increment: num;
  content: counter(num) ".";
  color: #93ab22;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -.5em;
  text-align: right;
  width: 1.5em;
}

.main_content ol:not(.cancel) > li:last-child {
  margin-bottom: 0;
}

@media screen and (min-width: 1000px), print {
  .main_content .link_list li {
    margin-bottom: .3em;
  }
}

@media screen and (max-width: 999px) {
  .main_content .link_list li {
    margin-bottom: 0;
  }
}

.main_content .link_list li::before {
  display: none;
}

@media screen and (max-width: 999px) {
  .main_content .link_list li {
    border-bottom: 1px dashed #ccc;
  }
  .main_content .link_list a,
  .main_content .link_list button {
    display: block;
    padding-top: 1em;
    padding-bottom: 1em;
    text-decoration: none;
  }
  .main_content .link_list a:hover,
  .main_content .link_list button:hover {
    text-decoration: none;
    opacity: 0.6;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .main_content .link_list a.link,
  .main_content .link_list button.link {
    padding-left: 16px;
    position: relative;
    top: 0;
    left: 0;
  }
  .main_content .link_list a.link::before,
  .main_content .link_list button.link::before {
    position: absolute;
    left: 0;
    top: 2.1em;
  }
}

.table,
.table-borderd,
.wpnews table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
}

.table:not(:last-child),
.table-borderd:not(:last-child),
.wpnews table:not(:last-child) {
  margin-bottom: 1em;
}

.table caption.cap,
.table-borderd caption.cap,
.wpnews table caption.cap {
  display: block;
  text-align: left;
  font-weight: bold;
  color: #dc8630;
  padding-bottom: .5em;
}

.table th,
.table td,
.table-borderd th,
.table-borderd td,
.wpnews table th,
.wpnews table td {
  vertical-align: top;
  font-weight: normal;
  border: 1px solid #d2d2d2;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.table th,
.table th p,
.table td,
.table td p,
.table-borderd th,
.table-borderd th p,
.table-borderd td,
.table-borderd td p,
.wpnews table th,
.wpnews table th p,
.wpnews table td,
.wpnews table td p {
  line-height: 1.6;
}

@media screen and (min-width: 1000px), print {
  .table th,
  .table td,
  .table-borderd th,
  .table-borderd td,
  .wpnews table th,
  .wpnews table td {
    padding: 11px 25px;
  }
}

@media screen and (max-width: 999px) {
  .table th,
  .table td,
  .table-borderd th,
  .table-borderd td,
  .wpnews table th,
  .wpnews table td {
    padding: 0.36em 0.63em;
  }
}

.table th,
.table-borderd th,
.wpnews table th {
  background-color: #f7f6f4;
  color: #343434;
  font-weight: 500;
  text-align: left;
  vertical-align: middle;
  text-align: center;
  font-size: 1rem;
}

.table .th_140,
.table-borderd .th_140,
.wpnews table .th_140 {
  width: 140px;
}

.table thead th,
.table-borderd thead th,
.wpnews table thead th {
  background-color: #9dc025;
  font-size: 1.125rem;
  color: #fff;
}

.table thead th:not(:last-of-type),
.table-borderd thead th:not(:last-of-type),
.wpnews table thead th:not(:last-of-type) {
  border-right: 1px solid #fff;
}

@media screen and (min-width: 1000px), print {
  .table tbody th,
  .table-borderd tbody th,
  .wpnews table tbody th {
    width: 280px;
  }
}

.table .number-cell,
.table-borderd .number-cell,
.wpnews table .number-cell {
  text-align: right;
}

.responsive_table_area:not(:last-child) {
  margin-bottom: 1em;
}

@media screen and (min-width: 1000px), print {
  .table-small {
    max-width: 40em;
  }
  .table-medium {
    max-width: 50em;
  }
}

.table-td_right td {
  text-align: right;
}

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

.table-th_center th {
  text-align: center;
}

.table-td_center td {
  text-align: center;
}

.table-th_auto tbody th {
  width: auto;
}

.table-td_middle tbody td {
  vertical-align: middle;
}

.table-noborder th,
.table-noborder td {
  border: 0 none;
  background-color: transparent;
  text-align: left;
  vertical-align: top;
}

.table-noborder th {
  padding-right: 2em;
}

.table-half_columns td, .table-half_columns th {
  width: 50%;
}

.banner_horizontal_list {
  padding-left: 0;
}

.banner_horizontal_list > li::before {
  display: none;
}

.banner_horizontal_list > li:not(:last-child) {
  margin-bottom: 10px;
}


.anotation {
  position: relative;
  top: 0;
  left: 0;
  padding-left: 1.3em;
}

@media screen and (min-width: 1000px), print {
  
  .anotation {
    font-size: 0.938rem;
  }
}

@media screen and (max-width: 999px) {
  
  .anotation {
    font-size: 0.875rem;
  }
}


.anotation::before {
  content: '※';
  width: 1em;
  position: absolute;
  top: .04em;
  left: 0;
  color: #f1333e;
}


.anotation-black {
  color: #343434;
}


.anotation-black::before {
  color: #343434;
}


.anotation-right {
  float: right;
}

/**************************

## - p

*/
/*

<div class="_h3">p</div>

*/
section p:not(:last-child) {
  margin-bottom: 1em;
}

p {
  color: #343434;
}

@media screen and (min-width: 1000px), print {
  p {
    font-size: 1.125rem;
    line-height: 2;
  }
}

@media screen and (max-width: 999px) {
  p {
    font-size: 0.875rem;
    line-height: 1.78571;
  }
}

/**************************
.indent
*/
@media screen and (min-width: 1000px), print {
  .main_content .indent,
  .main_content .pc_indent {
    padding-left: 15px;
  }
}

@media screen and (max-width: 999px) {
  .main_content .indent {
    padding-left: 0;
    padding-right: 0;
  }
  .main_content .sp_indent {
    padding-left: 7.5px;
    padding-right: 7.5px;
  }
}

/**************************

## - a リンク設定

*/
/*

<div class="_h3">a</div>

基本のリンク設定

	<a href="#" class="a">テキスト</a>

*/
a {
  color: #ee9d00;
  text-decoration: underline;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

section a {
  text-decoration: underline;
  /* &:hover {
			// text-decoration: none;
		} */
}

section a.no_border {
  text-decoration: none;
}

.url {
  text-decoration: underline;
  color: #ee9d00;
  word-break: break-all;
}

.url:hover, .url:focus, .url:active {
  color: #ee9d00;
  text-decoration: none;
}

input:focus, input:active,
textarea:focus,
textarea:active {
  /*text-decoration: underline;*/
  outline: 2px solid #a6a6a6;
}

/*

<div class="_h3">a.black</div>

リンクだけど文字色は黒

	<a href="#" class="black">テキスト</a>

*/
a.black,
a .black {
  color: #000;
}

/*

<div class="_h3">.outlink</div>

外部リンク。後ろに矢印画像を表示する

	<a href="#" class="outlink">テキスト</a>

*/
.out::after,
.ext::after,
.outlink::after,
.icon_out::after,
.icon_ext::after {
  content: '';
  display: inline-block;
  background: url("/common/img/icon/ext.png") 0 center no-repeat transparent;
  background-size: 15px 14px;
  width: 15px;
  height: 14px;
  position: relative;
  top: 2px;
  left: 0;
  margin-left: 7px;
  margin-top: -10px;
}

.btn_ext::after {
  content: '';
  display: inline-block;
  background: url("/common/img/icon/ext.png") 0 center no-repeat transparent;
  background-size: 15px 14px;
  width: 15px;
  height: 14px;
  position: relative;
  top: 2px;
  left: 0;
  margin-left: 7px;
  margin-top: -10px;
}

.btns_ext::after {
  content: '';
  display: inline-block;
  background: url("/common/img/icon/ext.png") 0 center no-repeat transparent;
  background-size: 15px 14px;
  width: 15px;
  height: 14px;
  position: relative;
  top: 0;
  left: 0;
  margin-left: 7px;
  margin-top: -10px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

/**************************

## - .btn - 汎用ボタン

*/
/*

<div class="_h3">.btn</div>

汎用ボタン。

*/
.btn {
  background-color: #F7F6F5;
  line-height: 1.5;
  color: #343434 !important;
  font-weight: 400;
  text-align: center;
  display: inline-block;
  text-decoration: none;
  padding: 17px 1em;
  -webkit-transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  transition: transform 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955), opacity 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.05s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  margin: .5em;
  max-width: 100%;
}

@media screen and (min-width: 1000px), print {
  .btn {
    font-size: 17px;
    min-width: 270px;
  }
}

@media screen and (max-width: 999px) {
  .btn {
    font-size: 14px;
    min-width: 200px;
  }
}

.btn::before {
  content: '';
  display: inline-block;
  position: relative;
  left: 0;
  top: 0;
  background-image: url("../img/icon/arrow_maru.png");
  background-size: cover;
  width: 12px;
  height: 12px;
  margin-right: 7px;
}

.btn:hover {
  opacity: .7;
}

.btn:active {
  -webkit-transform: translate(5px, 5px);
          transform: translate(5px, 5px);
  -webkit-box-shadow: 0 0 0 0 #e5e5e5;
          box-shadow: 0 0 0 0 #e5e5e5;
}

.btn.ext::after {
  background-image: url("../img/icon/ext.png");
}

.btn.pdf::after {
  background-image: url("../img/icon/pdf.png");
}

.btn.btn-down::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

button.btn {
  border: 0 none;
}

.btn-large,
button.btn-large,
input.btn-large {
  width: 80%;
}

.root .btn-disabled, .root
button.btn-disabled, .root
input.btn-disabled {
  opacity: .4;
}

.root .btn-disabled:hover, .root
button.btn-disabled:hover, .root
input.btn-disabled:hover {
  opacity: .4;
}

.btn._disable {
  pointer-events: none;
  opacity: .4;
}

.submit_prev {
  color: #dff0e7;
  border: 0 none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-size: auto 10px;
  padding-left: 10px;
}

.submit_prev:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.submit_next {
  color: #dff0e7;
  border: 0 none;
  margin: 0;
  padding: 0;
  cursor: pointer;
  background-size: auto 10px;
  padding-right: 10px;
}

.submit_next:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*

<div class="_h3">.icon_menu</div>

メニューアイコン

	<a href="#" class="btn _large __orange fot_db">
		<span class="icon_menu">テキスト</span>
	</a>

*/
.icon_menu {
  display: inline-block;
  min-height: 14px;
  background-size: 16px 14px;
  padding-left: 23px;
  line-height: 16px;
}

/*

<div class="_h3">.icon_pdf</div>

PDFアイコン

	<span class="icon_pdf">テキスト</span><br>
	<span class="icon_pdf_right">テキスト</span><br>
	<a href="#" class="btn _large __orange fot_db">
		<span class="icon_pdf2">テキスト</span>
	</a>

*/
.pdf::after,
.icon_pdf::after {
  content: '';
  display: inline-block;
  background: url("../img/icon/pdf.png") 0 center no-repeat transparent;
  background-size: 12px 16px;
  width: 12px;
  height: 16px;
  margin-left: 5px;
  position: relative;
  top: 4px;
  left: 0;
  margin-top: -10px;
}

.btn_pdf::after {
  content: '';
  display: inline-block;
  background: url("../img/icon/pdf.png") 0 center no-repeat transparent;
  background-size: 12px 16px;
  width: 12px;
  height: 16px;
  margin-left: 5px;
  position: relative;
  top: 4px;
  left: 0;
  margin-top: -10px;
}

/*

## - list ul ol

<div class="_h3">.anotation_list</div>

※ をつけるリスト。
改行時に ※ padding を守る。

	<ul class="anotation_list">
		<li>16歳（高校生）以上の方の<br>診察となります。</li>
		<li>月2回の診療のため、お電話で診療日をご確認下さい。</li>
	</ul>

*/
.dl {
  font-size: 0.938rem;
}

.dl::before, .dl::after {
  content: '';
  display: table;
}

.dl::after {
  clear: both;
}

.dl dt {
  clear: left;
  position: relative;
  top: 0;
  left: 0;
  z-index: 2;
  color: #819a0b;
  font-weight: bold;
}

.dl dt::before {
  margin-right: .5em;
}

@media screen and (min-width: 1000px), print {
  .dl dt,
  .dl dd {
    float: left;
  }
}

.dl dt:last-child,
.dl dd:last-child {
  margin-bottom: 0;
}

.dl dd {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.dl dd:not(:last-child) {
  padding-bottom: .3em;
}

@media screen and (max-width: 999px) {
  .dl dd:not(:last-child) {
    margin-bottom: .7em;
  }
}

@media screen and (min-width: 1000px), print {
  .dl-2em dt {
    width: 2em;
  }
  .dl-2em dt .h-inline {
    width: -1.5em;
  }
  .dl-2em dd {
    margin-left: -3em;
    padding-left: 3em;
  }
  .dl-3em dt {
    width: 3em;
  }
  .dl-3em dt .h-inline {
    width: -0.5em;
  }
  .dl-3em dd {
    margin-left: -4em;
    padding-left: 4em;
  }
  .dl-4em dt {
    width: 4em;
  }
  .dl-4em dt .h-inline {
    width: 0.5em;
  }
  .dl-4em dd {
    margin-left: -5em;
    padding-left: 5em;
  }
  .dl-5em dt {
    width: 5em;
  }
  .dl-5em dt .h-inline {
    width: 1.5em;
  }
  .dl-5em dd {
    margin-left: -6em;
    padding-left: 6em;
  }
  .dl-6em dt {
    width: 6em;
  }
  .dl-6em dt .h-inline {
    width: 2.5em;
  }
  .dl-6em dd {
    margin-left: -7em;
    padding-left: 7em;
  }
  .dl-7em dt {
    width: 7em;
  }
  .dl-7em dt .h-inline {
    width: 3.5em;
  }
  .dl-7em dd {
    margin-left: -8em;
    padding-left: 8em;
  }
  .dl-8em dt {
    width: 8em;
  }
  .dl-8em dt .h-inline {
    width: 4.5em;
  }
  .dl-8em dd {
    margin-left: -9em;
    padding-left: 9em;
  }
  .dl-10em dt {
    width: 10em;
  }
  .dl-10em dt .h-inline {
    width: 6.5em;
  }
  .dl-10em dd {
    margin-left: -11em;
    padding-left: 11em;
  }
  .dl-12em dt {
    width: 12em;
  }
  .dl-12em dt .h-inline {
    width: 8.5em;
  }
  .dl-12em dd {
    margin-left: -13em;
    padding-left: 13em;
  }
  .dl-14em dt {
    width: 14em;
  }
  .dl-14em dt .h-inline {
    width: 10.5em;
  }
  .dl-14em dd {
    margin-left: -15em;
    padding-left: 15em;
  }
  .dl-16em dt {
    width: 16em;
  }
  .dl-16em dt .h-inline {
    width: 12.5em;
  }
  .dl-16em dd {
    margin-left: -17em;
    padding-left: 17em;
  }
  .dl-18em dt {
    width: 18em;
  }
  .dl-18em dt .h-inline {
    width: 14.5em;
  }
  .dl-18em dd {
    margin-left: -19em;
    padding-left: 19em;
  }
  .dl-20em dt {
    width: 20em;
  }
  .dl-20em dt .h-inline {
    width: 16.5em;
  }
  .dl-20em dd {
    margin-left: -21em;
    padding-left: 21em;
  }
}

.dl-mb_1em dd {
  margin-bottom: 1em;
}

.scell {
  margin-right: 1em;
}

.scell2 {
  margin-right: .5em;
}

/**************************
.inline_list
*/
.inline_list {
  list-style-type: none;
}

.inline_list,
.inline_list > li,
.inline_list > * {
  margin: 0;
  padding: 0;
  display: inline;
}

/**************************
.inline_block-list
*/
.inline_block_list::before, .inline_block_list::after {
  content: '';
  display: table;
}

.inline_block_list::after {
  clear: both;
}

.inline_block_list > li,
.inline_block_list > * {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  display: inline-block;
  vertical-align: middle;
  white-space: nowrap;
  padding-left: 10px;
  padding-right: 10px;
}

.inline_block_list > li:first-child,
.inline_block_list > *:first-child {
  padding-left: 0;
}

.inline_block_list > li:last-child,
.inline_block_list > *:last-child {
  padding-right: 0;
}

@media screen and (min-width: 1000px), print {
  .pc_inline_block_list::before, .pc_inline_block_list::after {
    content: '';
    display: table;
  }
  .pc_inline_block_list::after {
    clear: both;
  }
  .pc_inline_block_list > li,
  .pc_inline_block_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  .pc_inline_block_list > li:first-child,
  .pc_inline_block_list > *:first-child {
    padding-left: 0;
  }
  .pc_inline_block_list > li:last-child,
  .pc_inline_block_list > *:last-child {
    padding-right: 0;
  }
}

@media screen and (max-width: 999px) {
  .pc_inline_block_list li {
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 999px) {
  .sp_inline_block_list::before, .sp_inline_block_list::after {
    content: '';
    display: table;
  }
  .sp_inline_block_list::after {
    clear: both;
  }
  .sp_inline_block_list > li,
  .sp_inline_block_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    display: inline-block;
    vertical-align: middle;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
  }
  .sp_inline_block_list > li:first-child,
  .sp_inline_block_list > *:first-child {
    padding-left: 0;
  }
  .sp_inline_block_list > li:last-child,
  .sp_inline_block_list > *:last-child {
    padding-right: 0;
  }
}

/**************************
.horizontal_list
*/
.horizontal_list::before, .horizontal_list::after {
  content: '';
  display: table;
}

.horizontal_list::after {
  clear: both;
}

.horizontal_list > li,
.horizontal_list > * {
  list-style-image: none;
  list-style-type: none;
  margin-left: 0;
  white-space: nowrap;
  float: left;
  padding-left: 20px;
  padding-right: 20px;
}

.horizontal_list > li:first-child,
.horizontal_list > *:first-child {
  padding-left: 0;
}

.horizontal_list > li:last-child,
.horizontal_list > *:last-child {
  padding-right: 0;
}

.main_content .horizontal_list {
  padding-left: 0;
}

.main_content .horizontal_list li::before {
  display: none;
}

@media screen and (min-width: 1000px), print {
  .ul_horizontal_list::before, .ul_horizontal_list::after {
    content: '';
    display: table;
  }
  .ul_horizontal_list::after {
    clear: both;
  }
  .ul_horizontal_list > li,
  .ul_horizontal_list > * {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    white-space: nowrap;
    float: left;
    padding-left: 20px;
    padding-right: 20px;
  }
  .ul_horizontal_list > li:first-child,
  .ul_horizontal_list > *:first-child {
    padding-left: 0;
  }
  .ul_horizontal_list > li:last-child,
  .ul_horizontal_list > *:last-child {
    padding-right: 0;
  }
  .main_content .ul_horizontal_list {
    padding-left: 0;
  }
  .main_content .ul_horizontal_list li::before {
    display: none;
  }
}

@media screen and (max-width: 999px) {
  .main_content .ul_horizontal_list > ul:not(.cancel) {
    margin-bottom: .3em;
  }
}

/*

## - table

<div class="_h3">クラス名なし</div>

	<table>
		<thead>
			<tr>
				<th></th>
				<th>詳細</th>
			</tr>
		</thead>
		<tbody>
			<tr>
				<th>事業所名所</th>
				<td>宗教法人寒川神社　寒川病院</td>
			</tr>
			<tr>
				<th>所在地</th>
				<td>〒253-0106　神奈川県高座郡寒川町宮山193</td>
			</tr>
			<tr>
				<th>開設</th>
				<td>昭和44年7月</td>
			</tr>
		</tbody>
	</table>

<div class="_h3">.table1</div>
.table1 は、SP表示時に display: block; に変わるので、基本、2列の table のための table

	<table class="table1">
		<tbody>
			<tr>
				<th>事業所名所</th>
				<td>宗教法人寒川神社　寒川病院</td>
			</tr>
			<tr>
				<th>所在地</th>
				<td>〒253-0106　神奈川県高座郡寒川町宮山193</td>
			</tr>
			<tr>
				<th>開設</th>
				<td>昭和44年7月</td>
			</tr>
		</tbody>
	</table>
*/
.wpnews table {
  margin-bottom: 1em;
}

/*

<div class="_h3">table._no_border</div>

画像だけの table を想定

*/
table table._no_border {
  width: auto;
  margin: auto;
}

table table._no_border th,
table table._no_border td {
  padding: 0 1em;
  vertical-align: middle;
}

/**************************
.inline_video
*/
.inline_video {
  max-width: 100%;
}

/*

<div class="_h3">photoswipe ギャラリー</div>

pdf を iframe 表示に使用。
.photoswipe > .pdf または、
.photoswipe > ._pdf または、
.photoswipe > ._iframe の時、iframe を表示する仕様。

+ a タグの href が pdf への URL。
+ a タグの title が キャプションテキスト。

	<div class="photoswipe">
		<a href="pdf/test.pdf" target="_blank" class="pdf">貯金一覧</a>
	</div>

*/
.photoswipe a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.pswp .pswp__iframe {
  padding: 0;
  width: 80%;
  height: 90%;
  position: relative;
  top: 5%;
  left: 10%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.pswp .pswp__caption__center {
  text-align: center;
  font-size: 1rem;
}

/*
.scroll_to_top
*/
.footer .container {
  position: relative;
}

.to-top {
  width: 100px;
  position: fixed;
  left: auto;
  z-index: 800;
  right: 50px;
}

@media screen and (min-width: 1000px), print {
  .to-top {
    -webkit-transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 1s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .to-top:hover {
    text-decoration: none;
    opacity: 0.6;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
}

@media (max-width: 1260px) {
  .to-top {
    right: 20px;
  }
}

@media screen and (max-width: 999px) {
  .to-top > img {
    opacity: 0.8;
  }
}

.to-top,
.to-top a,
.to-top img {
  display: block;
}

/**************************
	.sup_area
*/
.sup_area {
  position: relative;
  top: 0;
  left: 0;
}

.sup {
  position: absolute;
  top: -.8em;
  left: 0;
  width: 100%;
  font-size: 0.625rem;
  display: inline-block;
  text-align: center;
}

/**************************
a.accordion
*/
.sub_content .js-accordion .js-accordion__toggle {
  display: block;
}

.sub_content .js-accordion .js-accordion__content {
  position: relative;
  top: 0;
  left: 0;
  max-height: 0;
  opacity: 0;
  -webkit-transition: opacity .1s ease-out, max-height .4s ease-out;
  transition: opacity .1s ease-out, max-height .4s ease-out;
  overflow: hidden;
}

.sub_content .js-accordion .js-accordion__content__inner {
  padding-bottom: 2em;
}

.sub_content .js-accordion .js-accordion__content._opened {
  max-height: 100em;
  opacity: 1;
}

.sub_content .js-accordion .js-accordion__content._opened-long {
  max-height: 200em;
}

.sub_content .js-accordion .js-accordion__content._opened-short {
  max-height: 20em;
}

.sub_content .li1 {
  position: relative;
}

.sub_content .js-toggle {
  position: absolute;
  display: block;
  min-height: 15px;
  width: 15px;
  left: -2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  background-color: transparent;
}

.sub_content .js-toggle::before {
  content: '';
  display: block;
  width: 9px;
  height: 1px;
  background-color: #93ab22;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.sub_content .js-toggle::after {
  content: '';
  display: block;
  width: 9px;
  height: 1px;
  background-color: #93ab22;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
          transform: translateX(-50%) translateY(-50%) rotate(90deg);
  -webkit-transition: -webkit-transform .2s ease-out;
  transition: -webkit-transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

.sub_content .js-toggle._opened::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
          transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.sub_content .js-toggle._opened::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
          transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.tab_area__content {
  display: none;
}

.tab_area__content._show {
  display: block;
}

.archive_list li {
  padding-left: 1em;
}

.archive_list li::before {
  left: .5em;
}

.bordered {
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.image_list a {
  display: block;
}

.image_list img {
  max-width: 100%;
  display: block;
}

.image_list .cap {
  padding-top: .5em;
  text-align: center;
  font-size: 0.875rem;
}

@media screen and (min-width: 1000px), print {
  .image_list li {
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 999px) {
  .image_list li {
    margin-bottom: 30px;
  }
}

.banner {
  display: block;
}

.banner:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.banner img {
  display: block;
  max-width: 100%;
}

.banner._disable {
  pointer-events: none;
}

@media screen and (min-width: 1000px), print {
  .inner_float_left {
    float: left;
    margin-right: 20px;
    margin-bottom: 20px;
  }
  .inner_float_right {
    float: right;
    margin-left: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 999px) {
  .inner_float_left,
  .inner_float_right {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
  }
}

.faq_list > li {
  border-bottom: 1px solid #d3d3d3;
  padding-bottom: 1.2em;
}

.faq_list > li:not(:first-child) {
  padding-top: 1.2em;
}

.faq__q {
  color: #dc8630;
  font-size: 1rem;
  padding-left: 40px;
  padding-bottom: .7em;
}

.faq__a {
  font-size: 0.938rem;
  padding-left: 40px;
}

.signature {
  text-align: right;
}


.shadow {
  -webkit-box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
          box-shadow: 1px 1px 2.5px rgba(0, 0, 0, 0.3);
}

.wpnews::before, .wpnews::after {
  content: '';
  display: table;
}

.wpnews::after {
  clear: both;
}

.wpnews__head {
  margin-bottom: 30px;
  padding-bottom: .5em;
  border-bottom: 1px solid #fff;
}

.wpnews__date {
  text-align: right;
}

.wpnews__attr {
  text-align: center;
}

.wpnews__attr > * {
  display: inline-block;
  font-size: 0.938rem;
}

.wpnews__attr .date::after {
  content: '/';
  display: inline;
  padding: 0 .7em;
}

.wpnews__attr .category {
  color: #888;
}

.wpnews__content {
  max-width: 100%;
  font-size: 0.938rem;
  line-height: 1.7;
}

.root .wpnews__content {
  margin: 0 auto;
}

.wpnews__content img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 999px) {
  .wpnews__content img {
    max-width: 100%;
    width: auto;
    height: auto;
  }
  .wpnews__content table {
    max-width: 100%;
  }
}

.wpnews a {
  text-decoration: underline;
}

.wpnews blockquote {
  padding: 10px;
  border-left: 5px solid #59A676;
  background-color: #F7F7F7;
  margin-bottom: 1em;
}

.wp_pagination::before, .wp_pagination::after {
  content: '';
  display: table;
}

.wp_pagination::after {
  clear: both;
}

.wp_pagination_prev {
  float: left;
}

.wp_pagination_next {
  float: right;
}

.gmap {
  height: 400px;
  background-color: #ccc;
}

.gmap > iframe {
  max-width: 100%;
}

@media screen and (max-width: 999px) {
  .gmap {
    height: 300px;
  }
}

.facebook {
  margin-left: auto;
  margin-right: auto;
}

.facebook,
.facebook > iframe {
  max-width: 100%;
}

.video,
.video video {
  max-width: 100%;
}

.youtube {
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 999px) {
  .youtube {
    max-width: 300px;
    height: 170px;
  }
}

.youtube iframe {
  max-width: 100%;
  max-height: 100%;
}

.gcalendar > iframe {
  height: 300px;
}


.marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #fff));
  background: -webkit-linear-gradient(transparent 60%, #fff 60%);
  background: linear-gradient(transparent 60%, #fff 60%);
}

.cell {
  margin-right: 1em;
}

.cell2 {
  margin-right: 0.5em;
}

.scell {
  margin-right: 1em;
}

figure img {
  display: block;
  max-width: 100%;
}

@media screen and (max-width: 999px) {
  figure img {
    margin-left: auto;
    margin-right: auto;
  }
}

@media screen and (min-width: 1000px), print {
  figure figcaption {
    padding-top: 1em;
  }
  figure figcaption._left {
    text-align: left;
  }
  figure figcaption._center {
    text-align: center;
  }
}

@media screen and (max-width: 999px) {
  figure figcaption {
    padding-top: 1em;
    text-align: center;
  }
}

.link {
  line-height: 1.4;
  color: #ee9d00;
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  padding-left: 15px;
  margin-right: 7px;
}

.link:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.link::before {
  content: '';
  display: inline-block;
  background: url("../img/icon/arrow.png") 0 center no-repeat transparent;
  background-size: 10px 12px;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 5px;
  left: 0;
}

@media screen and (max-width: 999px) {
  .link::before {
    top: 3px;
  }
}

.link_list .link {
  line-height: 1.4;
  color: #ee9d00;
  text-decoration: none !important;
  display: inline-block;
  position: relative;
  padding-left: 30px;
  margin-right: 7px;
}

.link_list .link:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.link_list .link::before {
  content: '';
  display: inline-block;
  background: url("../img/icon/arrow.png") 0 center no-repeat transparent;
  background-size: 10px 12px;
  width: 10px;
  height: 12px;
  position: absolute;
  top: 7px;
  left: 13px;
}

@media screen and (max-width: 999px) {
  .link_list .link::before {
    top: 18px !important;
  }
}

.link-down::before {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}

.link-back::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.link-next::before {
  display: none;
}

.link-next::after {
  content: '';
  display: inline-block;
  background: url("../img/icon/arrow/link.png") 0 center no-repeat transparent;
  background-size: 12px 12px;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  position: relative;
  top: .1em;
  left: 0;
}

.link-prev::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.link-disable {
  pointer-events: none;
  color: #ccc;
  opacity: .75;
  text-decoration: none;
}

.link._disable {
  display: inline-block;
  pointer-events: none;
  color: #ccc;
  opacity: .75;
  text-decoration: none;
}

button.link {
  border: 0 none;
  padding-top: 0;
  padding-bottom: 0;
  margin-top: 0;
  margin-bottom: 0;
  background-color: transparent;
  text-align: left;
  line-height: 1.7;
}

button.link::before {
  top: 1.2ex;
}

/*

<div class="_h3">.news</div>

*/
.news_box__body {
  width: 100%;
  border-radius: 0 0 16px 16px;
  min-height: 508.391px;
  height: auto;
  border: 4px solid #8cba00;
  background: #fff;
  overflow: hidden;
  z-index: 50;
  position: relative;
}

@media screen and (max-width: 999px) {
  .news_box__body {
    border-radius: 16px;
    min-height: auto;
  }
}

.newsline_list {
  overflow: hidden;
  z-index: 1;
}

.newsline_list .no_news {
  padding: 30px 45px;
}

@media screen and (max-width: 999px) {
  .newsline_list {
    border-radius: 12px;
  }
}

.newsline {
  line-height: 1.7;
  text-decoration: none;
  position: relative;
  border-bottom: 1px solid #dcdcdc;
}

@media screen and (min-width: 1000px), print {
  .newsline {
    padding: 40px 30px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .newsline:hover {
    background: #FBFAF8;
    opacity: 1;
  }
}

@media screen and (max-width: 999px) {
  .newsline {
    padding: 20px 30px 20px 0 !important;
    display: block;
  }
}

.newsline._disable {
  pointer-events: none;
}

.newsline._disable::after {
  display: none;
}

.newsline__body {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.newsline__head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (min-width: 1000px), print {
  .newsline__head {
    min-width: 245px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.newsline__date {
  padding-left: 0;
  font-size: 1rem;
  font-weight: medium;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #989898;
  position: relative;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1000px), print {
  .newsline__date {
    font-size: 1rem;
    margin-right: 60px;
    width: 6em;
    min-width: 6em;
  }
}

@media screen and (max-width: 999px) {
  .newsline__date {
    font-size: 0.938rem;
    margin-right: 1em;
  }
}

.newsline__cate {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  top: 0;
  left: 0;
}

.newsline__cate .label {
  margin-right: .5em;
  border-radius: 3px;
  color: #fff;
  background-color: #57c2e1;
  text-decoration: none;
  display: block;
  display: block;
  position: relative;
  top: 0;
  left: 0;
}

@media screen and (min-width: 1000px), print {
  .newsline__cate .label {
    padding-left: 10px;
    padding-right: 10px;
    font-size: 12px;
    height: 20px;
    border-radius: 10px;
    line-height: 20px;
  }
}

@media screen and (max-width: 999px) {
  .newsline__cate .label {
    padding-left: 5px;
    padding-right: 5px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 5px;
    font-size: 12px;
    height: 20px;
    line-height: 20px;
    word-break: keep-all;
  }
}

.newsline__cate .label.all {
  background-color: #0d4069;
}

.newsline__cate .label.news {
  background-color: #c45c5d;
}

.newsline__cate .label.important {
  background-color: #c2a418;
}

.newsline__cate .label.campaign {
  background-color: #619c3e;
}

.newsline__cate .label.einou {
  background-color: #e47530;
}

.newsline__ex {
  color: #444;
}

@media screen and (min-width: 1000px), print {
  .newsline__ex {
    font-size: 1.125rem;
    padding-top: .15ex;
  }
}

@media screen and (max-width: 999px) {
  .newsline__ex {
    font-size: 15px;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.newsline {
  position: relative;
  padding: 40px 80px 40px 30px;
}

.newsline::before {
  display: block;
  content: "";
  width: 9px;
  height: 9px;
  border-top: solid 1px #b1cd51;
  border-right: solid 1px #b1cd51;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 47%;
  right: 30px;
}

@media screen and (max-width: 999px) {
  .newsline::before {
    right: 10px;
  }
}

.icon_new {
  font-size: 14px;
  margin-right: 1em;
  border: 1px solid #ff596d;
  color: #ff596d;
  height: 1.3em;
  line-height: 1.3em;
  padding: 0 .7em;
}

@media screen and (max-width: 999px) {
  .icon_new {
    font-size: 12px;
  }
}

@media screen and (min-width: 1000px), print {
  .news_pager_area {
    padding-top: 40px;
  }
}

@media screen and (max-width: 999px) {
  .news_pager_area {
    padding-top: 20px;
  }
}

.news_pager {
  text-align: center;
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news_pager__box,
.news_pager a {
  display: block;
  width: 40px;
  height: 40px;
}

@media screen and (min-width: 1000px), print {
  .news_pager__box {
    padding-left: 4px;
    padding-right: 4px;
  }
}

@media screen and (max-width: 999px) {
  .news_pager__box {
    padding-left: 2px;
    padding-right: 2px;
  }
}

.news_pager a {
  line-height: 40px;
  color: #fff;
  text-align: center;
  background-color: #dff0e7;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.news_pager a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.main_content .news_pager a {
  text-decoration: none;
}

.news_pager a.current {
  pointer-events: none;
}

.news_pager a.current, .news_pager a:hover {
  color: #fff;
}

.news_pager .next_link,
.news_pager .prev_link {
  background-color: transparent;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0 none;
  color: #fff;
}

.news_pager .next_link::before,
.news_pager .prev_link::before {
  -webkit-transition: -webkit-transform .1s ease-in-out;
  transition: -webkit-transform .1s ease-in-out;
  transition: transform .1s ease-in-out;
  transition: transform .1s ease-in-out, -webkit-transform .1s ease-in-out;
}

.news_pager .next_link:hover,
.news_pager .prev_link:hover {
  background-color: transparent;
}

.news_pager .next_link {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
}

.news_pager .next_link::before {
  right: 13px;
  left: auto;
}

.news_pager .next_link-passive {
  pointer-events: none;
  opacity: .2;
}

.news_pager .next_link:hover::before {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}

.news_pager .prev_link {
  text-indent: -119988px;
  overflow: hidden;
  text-align: left;
}

.news_pager .prev_link::before {
  left: 13px;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news_pager .prev_link-passive {
  pointer-events: none;
  opacity: .2;
}

.news_pager .prev_link:hover::before {
  -webkit-transform: scale(1.2) rotate(180deg);
          transform: scale(1.2) rotate(180deg);
}

@media screen and (max-width: 999px) {
  .news_pager {
    margin-left: -10px;
    margin-right: -10px;
  }
  .news_pager__box,
  .news_pager a {
    width: 33px;
    height: 41px;
  }
  .news_pager__box {
    padding-left: 2px;
    padding-right: 2px;
  }
  .news_pager a {
    line-height: 41px;
  }
}

.nakaguroten {
  letter-spacing: -.45ex;
  margin-left: -.3ex;
}

.tab_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
  bottom: -4px;
  left: 0;
  height: 67px;
}

@media screen and (max-width: 999px) {
  .tab_list {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    position: static;
    margin: 0 auto 20px;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: auto;
  }
}

.tab_list li {
  font-size: 17.1px;
  padding-top: 2px;
}

.tab_list li._selected {
  z-index: 100;
}

@media screen and (max-width: 999px) {
  .tab_list li {
    width: 49.5%;
    font-size: 0.875rem;
    margin-bottom: 5px;
  }
  .tab_list li:nth-of-type(1) {
    width: 100%;
  }
}

.tab_list li:nth-of-type(1) .tab {
  border: 4px solid #8cba00;
  background: #8cba00;
}

.tab_list li:nth-of-type(2) .tab {
  background: #c45c5d;
  border: 4px solid #c45c5d;
}

.tab_list li:nth-of-type(3) .tab {
  background: #C2A418;
  border: 4px solid #C2A418;
}

.tab_list li:nth-of-type(4) .tab {
  background: #629C3E;
  border: 4px solid #629C3E;
}

.tab_list li:nth-of-type(5) .tab {
  background: #E47531;
  border: 4px solid #E47531;
}

.tab_list li .tab {
  width: 152px;
  max-width: 220px;
  display: block;
  padding: 3px 5px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: #fff;
  border-radius: 12px 12px 0 0;
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  white-space: nowrap;
}

.tab_list li .tab span {
  letter-spacing: 0.02em;
}

@media screen and (min-width: 1000px), print {
  .tab_list li .tab:hover, .tab_list li .tab._selected {
    color: #444;
    font-size: 20px;
    background: #fff;
    border: 4px solid #8cba00;
    border-bottom: none;
    min-width: 153px;
    width: auto;
    padding: 10px 10px 13px;
  }
}

@media screen and (max-width: 999px) {
  .tab_list li .tab {
    border-radius: 12px;
    max-width: 100%;
    width: 100%;
    font-weight: bold;
    padding: 5px;
  }
  .tab_list li .tab._selected {
    background: #fff;
    color: #444;
  }
}

.schedule_calendar_head {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -webkit-align-items: flex-end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin-bottom: 30px;
}

.schedule_calendar_head .year {
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  padding-right: 20px;
  padding-bottom: 2px;
}

.schedule_calendar_head .month {
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  font-family: 'Ubuntu', sans-serif;
}

.schedule_calendar .calendar_table {
  width: 420px;
  font-family: 'Ubuntu', sans-serif;
}

@media screen and (max-width: 999px) {
  .schedule_calendar .calendar_table {
    width: 100%;
  }
}

.schedule_calendar .calendar_table .thead {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.schedule_calendar .calendar_table .thead .day {
  width: 60px;
  text-align: center;
  font-family: 'Ubuntu', sans-serif;
  font-size: 20px;
  font-weight: 400;
  padding-bottom: 10px;
  color: #2a2a2a;
}

.schedule_calendar .calendar_table .thead .day.red {
  color: #d25656;
}

@media screen and (max-width: 999px) {
  .schedule_calendar .calendar_table .thead .day {
    font-size: 16px;
    width: calc(100% / 7);
  }
}

.schedule_calendar .calendar_table .week_date {
  padding-bottom: 14px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.schedule_calendar .calendar_table .week_date .date {
  width: 60px;
  text-align: center;
  font-size: 20px;
}

@media screen and (max-width: 999px) {
  .schedule_calendar .calendar_table .week_date .date {
    font-size: 16px;
    width: calc(100% / 7);
  }
}

.schedule_calendar .calendar_table .week_date .red {
  color: #d25656;
}

.schedule_calendar .calendar_table .week_date .temporary_close {
  position: relative;
}

.schedule_calendar .calendar_table .week_date .temporary_close::after {
  content: "";
  width: 12px;
  height: 11px;
  display: block;
  background: url(/common//img/index/open.png) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.schedule_calendar .calendar_table .week_date .close {
  position: relative;
}

.schedule_calendar .calendar_table .week_date .close::after {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  background: url(/common//img/index/close.png) no-repeat center center/cover;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.schedule_calendar_bottom {
  position: relative;
  margin: 17px auto 0;
  width: calc(100% - 40px);
}

.schedule_calendar_bottom::before {
  width: 100%;
  height: 1px;
  content: "";
  display: block;
  position: absolute;
  background-color: #d2d2d2;
}

.schedule_calendar_bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  padding-top: 15px;
  margin-bottom: 40px;
  font-size: 18px;
}

.schedule_calendar_bottom ul li {
  font-size: 16px;
}

@media screen and (max-width: 999px) {
  .schedule_calendar_bottom ul li {
    font-size: 14px;
  }
}

.schedule_calendar_bottom ul .closed_day {
  position: relative;
  margin-right: 140px;
  line-height: 1;
}

@media screen and (max-width: 999px) {
  .schedule_calendar_bottom ul .closed_day {
    margin-right: 60px;
  }
}

.schedule_calendar_bottom ul .closed_day::after {
  content: "";
  width: 11px;
  height: 11px;
  display: block;
  background: url(/common//img/index/close.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -22px;
}

.schedule_calendar_bottom ul .temporary_closed_day {
  position: relative;
  line-height: 1;
}

.schedule_calendar_bottom ul .temporary_closed_day::after {
  content: "";
  width: 12px;
  height: 11px;
  display: block;
  background: url(/common//img/index/open.png) no-repeat center center/cover;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -22px;
}

.schedule_calendar_bottom .time {
  text-align: right;
}

.schedule_calendar_bottom .time .open_green {
  color: #a1c32e;
  font-family: 'Ubuntu', sans-serif;
  position: relative;
  padding-right: 60px;
  font-size: 20px;
}

.schedule_calendar_bottom .time .open_green::after {
  content: "";
  display: block;
  width: 21px;
  height: 25px;
  background: url(/common/img/index/open_after.png) no-repeat center center/cover;
  position: absolute;
  top: 3px;
  right: 21px;
}

@media screen and (max-width: 999px) {
  .schedule_calendar_bottom .time .open_green::after {
    top: -3px;
    right: 12px;
  }
}

@media screen and (max-width: 999px) {
  .schedule_calendar_bottom .time .open_green {
    padding-right: 45px;
    font-size: 14px;
  }
}

@media screen and (max-width: 999px) {
  .schedule_calendar_bottom .time {
    font-size: 14px;
  }
}

@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    display: block;
    opacity: 1;
  }
  99% {
    display: block;
    opacity: 0;
  }
  100% {
    display: none;
    opacity: 0;
  }
}

@keyframes zoom-in {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoom-in-hover {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes zoom-in-hover2 {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
}

@keyframes sub_menu_fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: .5;
  }
}

@keyframes pop-upwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, 12);
            transform: matrix(0.97, 0, 0, 1, 0, 12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, 2);
            transform: matrix(0.99, 0, 0, 1, 0, 2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, -1);
            transform: matrix(1, 0, 0, 1, 0, -1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@keyframes pop-downwards {
  0% {
    -webkit-transform: matrix(0.97, 0, 0, 1, 0, -12);
            transform: matrix(0.97, 0, 0, 1, 0, -12);
    opacity: 0;
  }
  20% {
    -webkit-transform: matrix(0.99, 0, 0, 1, 0, -2);
            transform: matrix(0.99, 0, 0, 1, 0, -2);
    opacity: .7;
  }
  40% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 1);
            transform: matrix(1, 0, 0, 1, 0, 1);
    opacity: 1;
  }
  70% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
  100% {
    -webkit-transform: matrix(1, 0, 0, 1, 0, 0);
            transform: matrix(1, 0, 0, 1, 0, 0);
    opacity: 1;
  }
}

@keyframes pop-up {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes pop-up-return {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes character_move {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  50% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes character_move02 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(-12px);
            transform: translateY(-12px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes comment01_move {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  50% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

@keyframes _on_opacity {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slide-up {
  0% {
    -webkit-transform: translateY(20%);
            transform: translateY(20%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@keyframes header_start {
  0% {
    -webkit-transform: translateY(-200px);
            transform: translateY(-200px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes gnav_sub {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header_appear {
  0% {
    top: -66px;
  }
  100% {
    top: 0;
  }
}

@keyframes imenu_fade-in {
  0% {
    display: none;
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes header-fixed {
  0% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: none;
  }
  1% {
    -webkit-transform: translateY(-100%);
            transform: translateY(-100%);
    display: block;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    display: block;
  }
}

@keyframes header-sub-show {
  0% {
    opacity: 0;
    max-height: 20px;
  }
  100% {
    opacity: 1;
    max-height: 150px;
    display: block;
  }
}

*:focus {
  outline: none;
}

body {
  background: #fff;
}

html, body {
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}

.container {
  width: 1200px;
  margin: 0 auto;
}

@media (max-width: 1260px) {
  .container {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (max-width: 1260px) and (max-width: 999px) {
  .container {
    padding-right: 25px;
    padding-left: 25px;
  }
}

@media screen and (min-width: 1000px), print {
  .main_content p {
    margin-left: 20px;
  }
  .main_content p.cancel {
    margin-left: 0;
  }
  .contact__gr p {
    margin-left: 0;
  }
}

@media screen and (min-width: 1000px), print {
  .header_container {
    width: 100%;
    z-index: 1000;
  }
}

@media print {
  .header_container {
    position: absolute;
  }
}

@media screen and (min-width: 1000px), print {
  .header a {
    color: #819a0b;
  }
  .header_inner {
    width: 1200px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1260px), print and (max-width: 1260px) {
  .header_inner {
    width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav_wrapper {
    margin: 0 auto;
    height: 101px;
    background-color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
  }
  .header .gnav_wrapper .logo_area {
    width: 350px;
    padding-top: 23px;
    padding-right: 20px;
  }
  .header .gnav_wrapper .logo_area > img {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1100px), print and (max-width: 1100px) {
  .header .gnav_wrapper .logo_area {
    width: 320px;
    padding-right: 40px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav__ul {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: 100%;
  }
  .header .gnav__ul li:not(:last-of-type) {
    margin-right: 30px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1300px), print and (max-width: 1300px) {
  .header .gnav__ul li:not(:last-of-type) {
    margin-right: 15px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav__li:hover .gnav__text {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .gnav__li:hover .gnav__text::after {
    content: "";
    width: 36px;
    height: 3px;
    background-color: #9dc025;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
  }
  .header .gnav .gnav__text {
    padding-top: 35px;
    padding-bottom: 15px;
  }
  .header .gnav .gnav__text > p {
    height: 50px;
    white-space: nowrap;
    overflow: hidden;
    text-indent: 100%;
    margin-left: 0 !important;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__text {
    padding-top: 40px;
  }
  .header .gnav .gnav__text > p {
    height: 45px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a-1 .gnav__text > p {
    width: 106px;
    background: url(/common/img/gnav/home.png) no-repeat center center/100% 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__a-1 .gnav__text > p {
    width: 95px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a-2 .gnav__text > p {
    width: 104px;
    background: url(/common/img/gnav/introduction.png) no-repeat center center/100% 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__a-2 .gnav__text > p {
    width: 94px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a-3 .gnav__text > p {
    width: 143px;
    background: url(/common/img/gnav/treatment.png) no-repeat center center/100% 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__a-3 .gnav__text > p {
    width: 133px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a-4 .gnav__text > p {
    width: 116px;
    background: url(/common/img/gnav/access.png) no-repeat center center/100% 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__a-4 .gnav__text > p {
    width: 106px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a-5 .gnav__text > p {
    width: 176px;
    background: url(/common/img/gnav/cancer.png) no-repeat center center/100% 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1130px), print and (max-width: 1130px) {
  .header .gnav .gnav__a-5 .gnav__text > p {
    width: 166px;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav .gnav__a.active .gnav__text {
    position: relative;
  }
  .header .gnav .gnav__a.active .gnav__text::after {
    content: "";
    width: 36px;
    height: 3px;
    background-color: #9dc025;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
  }
  .header .gnav__sub {
    display: none;
  }
  .header .gnav__sub-show {
    display: block;
    width: 1200px;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    padding: 0 89px;
    border-bottom: 1px solid #e5e5e5;
    background-color: #fff;
    margin-top: 1px;
    overflow: hidden;
    max-height: 10px;
    -webkit-animation-name: header-sub-show;
            animation-name: header-sub-show;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-duration: .8s;
            animation-duration: .8s;
    -webkit-animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
            animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1);
    z-index: 5;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px), print and (max-width: 1200px) {
  .header .gnav__sub-show {
    width: 100%;
  }
}

@media screen and (min-width: 1000px), print {
  .header .gnav__sub-show .sub_ul2 {
    display: none;
  }
  .header .gnav__sub-show .gnav__sub__ul1 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 20px;
    padding-bottom: 10px;
  }
  .header .gnav__sub-show .gnav__sub__ul1 .js-accordion__content {
    display: none;
  }
  .header .gnav__sub-show .gnav__sub__ul1 a {
    text-decoration: none !important;
    display: block;
    padding-top: 5px;
    padding-bottom: 10px;
  }
  .header .gnav__sub-show .gnav__sub__ul1 a .text {
    font-size: 15px;
    color: #8ca80b;
    position: relative;
    padding-left: 20px;
  }
  .header .gnav__sub-show .gnav__sub__ul1 a .text::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    background: url(/common/img/icon/arrow_maru.png) no-repeat center center/cover;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .header .gnav__sub-show .gnav__sub__ul1:hover .gnav__text {
    position: relative;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .header .gnav__sub-show .gnav__sub__ul1:hover .gnav__text::after {
    content: "";
    width: 36px;
    height: 3px;
    background-color: #9dc025;
    position: absolute;
    bottom: -1px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 2;
  }
  .header-fixed {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8888;
    width: 100%;
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    -webkit-animation-name: header-fixed;
            animation-name: header-fixed;
    -webkit-animation-fill-mode: forwards;
            animation-fill-mode: forwards;
    -webkit-animation-iteration-count: 1;
            animation-iteration-count: 1;
    -webkit-animation-direction: normal;
            animation-direction: normal;
    -webkit-animation-duration: .5s;
            animation-duration: .5s;
    -webkit-animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
            animation-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  }
  .header-fixed .header_inner {
    width: 1600px;
    margin: 0 auto;
    height: 90px;
    position: relative;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1600px), print and (max-width: 1600px) {
  .header-fixed .header_inner {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1260px), print and (max-width: 1260px) {
  .header-fixed .header_inner {
    padding-right: 0;
    padding-left: 0;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .gnav_wrapper {
    margin: 0 auto;
    height: 90px;
    padding-left: 19px;
    padding-top: 19px;
    background-color: #fff;
    border-bottom: none;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1070px), print and (max-width: 1070px) {
  .header-fixed .gnav_wrapper {
    padding-left: 5px;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .gnav_wrapper .logo_area {
    width: 330px;
    padding-top: 0;
    padding-right: 0;
    margin-top: -5px;
  }
  .header-fixed .gnav_wrapper .logo_area > img {
    width: 100%;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1300px), print and (max-width: 1300px) {
  .header-fixed .gnav_wrapper .logo_area {
    width: 250px;
    margin-top: 0;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1060px), print and (max-width: 1060px) {
  .header-fixed .gnav_wrapper .logo_area {
    width: 210px;
    margin-top: 5px;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .gnav {
    padding-right: 180px;
  }
  .header-fixed .gnav .gnav__text {
    padding-top: 10px;
    padding-bottom: 6px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1600px), print and (max-width: 1600px) {
  .header-fixed .gnav .gnav__text {
    padding-top: 15px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1300px), print and (max-width: 1300px) {
  .header-fixed .gnav .gnav__text {
    padding-bottom: 14px;
  }
  .header-fixed .gnav .gnav__text > p {
    height: 42px;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .gnav__ul {
    padding-right: 40px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1600px), print and (max-width: 1600px) {
  .header-fixed .gnav__ul {
    padding-right: 10px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1380px), print and (max-width: 1380px) {
  .header-fixed .gnav__ul li:not(:last-of-type) {
    margin-right: 10px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1300px), print and (max-width: 1300px) {
  .header-fixed .gnav .gnav__a-1 .gnav__text > p {
    width: 85px;
  }
  .header-fixed .gnav .gnav__a-2 .gnav__text > p {
    width: 84px;
  }
  .header-fixed .gnav .gnav__a-3 .gnav__text > p {
    width: 123px;
  }
  .header-fixed .gnav .gnav__a-4 .gnav__text > p {
    width: 96px;
  }
  .header-fixed .gnav .gnav__a-5 .gnav__text > p {
    width: 156px;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .gnav__sub-show {
    width: 1600px;
    top: 90px;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1600px), print and (max-width: 1600px) {
  .header-fixed .gnav__sub-show {
    width: 100%;
  }
}

@media screen and (min-width: 1000px), print {
  .header-fixed .header_right {
    width: 180px;
    height: 90px;
    position: absolute;
    top: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header-fixed .header_right_01 {
    display: none;
  }
  .header-fixed .header_right span {
    display: none;
  }
  .header-fixed .header_right_02 a::before {
    width: 55px;
    height: 70px;
    position: absolute;
    left: 50%;
    top: 10px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .header_right {
    width: 840px;
    height: 70px;
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header_right_01 {
    width: 480px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 22px 0 21px 11px;
  }
  .header_right_01 img {
    width: 27px;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header_right_01 img:hover {
    opacity: .7;
  }
  .header_right_01 .icon_01 {
    width: 50px;
    border-right: 1px solid #dcdcdc;
  }
  .header_right_01 .icon_02 {
    width: 60px;
    border-right: 1px solid #dcdcdc;
  }
  .header_right_01 .icon_03_wrapper > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
    border-right: 1px solid #dcdcdc;
    padding-right: 14px;
  }
  .header_right_01 .icon_03_wrapper > a .icon_03 {
    width: 45px;
    padding-left: 18px;
  }
  .header_right_01 .icon_03_wrapper > a .header_tel {
    line-height: 27px;
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding-left: 5px;
    color: #2a2a2a;
  }
  .header_right_01 .icon_04_wrapper > a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-decoration: none;
  }
  .header_right_01 .icon_04_wrapper > a .icon_04 {
    width: 24px;
    margin-left: 15px;
  }
  .header_right_01 .icon_04_wrapper > a .header_english {
    font-family: 'Ubuntu', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding-left: 1px;
    color: #2a2a2a;
    position: relative;
  }
//  .header_right_01 .icon_04_wrapper > a .header_english::after {
//    content: "（準備中）";
//    display: block;
//    font-size: 10px;
//    position: absolute;
//    left: 50%;
//    -webkit-transform: translateX(-50%);
//            transform: translateX(-50%);
//  }
  .header_right_01 a {
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .header_right_01 a:hover {
    opacity: .7;
  }
  .header_right_02 {
    width: 360px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .header_right_02_01 {
    width: 50%;
  }
  .header_right_02_01 a {
    background: #1e2088 /* 元は#e7b02b */ ;
  }
  .header_right_02_01 a::before {
    background: url(/common/img/icon/header/icon_01.png) no-repeat center center/55px 70px;
  }
  .header_right_02_02 {
    width: 50%;
  }
  .header_right_02_02 a {
    background: #4d9bf5 /* 元は#93ab22 */ ;
  }
  .header_right_02_02 a::before {
    background: url(/common/img/icon/header/icon_02.png) no-repeat center center/55px 70px;
  }
  .header_right_02 a {
    width: 100%;
    height: 100%;
    display: block;
    height: 100%;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 16px;
    line-height: 1.375;
    -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    padding-left: 50px;
    text-decoration: none;
    font-weight: 500;
  }
  .header_right_02 a::before {
    content: "";
    display: block;
    width: 55px;
    height: 70px;
    position: absolute;
    left: 10px;
    top: 0;
  }
  .header_right_02 a:hover {
    opacity: .8;
  }
}

/* footer */
.footer {
  width: 100%;
  background-color: #d2f0ff;
}

@media screen and (max-width: 999px) {
  .footer .container {
    padding-left: 12px;
    padding-right: 12px;
  }
}

.footer_top {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 49px;
  padding-right: 80px;
  padding-left: 80px;
}

.footer_top .footer_logo > img {
  width: 430px;
}

.footer_top .footer_adress {
  color: #1e2088;
  font-size: 1rem;
  font-weight: 500;
  padding-top: 43px;
  position: relative;
}

.footer_top .footer_adress::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 44px;
  background-color: #e3e3e3;
  bottom: 15px;
  left: -22px;
}

@media screen and (max-width: 1060px) {
  .footer_top {
    display: block;
    padding-top: 30px;
    padding-right: 0px;
    padding-left: 0px;
  }
  .footer_top .footer_logo > img {
    max-width: 265px;
  }
  .footer_top .footer_adress {
    padding-top: 0;
    padding-left: 8px;
    font-size: 0.875rem;
    border-left: 1px solid #1e2088;
    display: table;
    margin: 10px auto 0;
  }
}

@media screen and (max-width: 1060px) and (max-width: 450px) {
  .footer_top .footer_adress {
    font-size: 0.75rem;
  }
}

@media screen and (max-width: 1060px) {
  .footer_top .footer_adress::before {
    display: none;
  }
}

.footer_bottom {
  padding-top: 50px;
  padding-bottom: 30px;
}

.footer_bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 20px;
}

.footer_bottom ul li:not(:nth-last-child(1)) > a {
  border-right: 1px solid #e3e3e3;
}

.footer_bottom ul li > a {
  color: #ababab;
  text-decoration: none;
  font-size: 1rem;
  padding-right: 35px;
  padding-left: 35px;
  line-height: 1;
}

@media screen and (max-width: 999px) {
  .footer_bottom ul li > a {
    white-space: nowrap;
  }
}

.footer_bottom .footer_copy {
  width: 360px;
  height: 25px;
  margin: 0 auto;
}

@media screen and (max-width: 1060px) {
  .footer_bottom {
    padding-top: 20px;
  }
  .footer_bottom ul li > a {
    font-size: 0.875rem;
    padding-right: 10px;
    padding-left: 10px;
  }
}

@media screen and (max-width: 1060px) and (max-width: 450px) {
  .footer_bottom ul li > a {
    font-size: 0.75rem;
    padding-right: 7px;
    padding-left: 8px;
  }
}

@media screen and (max-width: 1060px) {
  .footer_bottom .footer_copy {
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
  }
}

.footer-index .footer_sub_content {
  display: none;
}

.footer-sub {
  position: relative;
  z-index: 2;
  margin-top: 140px;
  width: 100%;
}

.footer-sub .footer_sub_li:not(.footer_sub_common) {
  display: none;
}

@media screen and (max-width: 999px) {
  .footer-sub {
    margin-top: 30px;
  }
}

.footer-sub.footer_area_introduction .footer_sub_introduction {
  display: block;
}

.footer-sub.footer_area_introduction .footer_sub_common {
  display: none;
}

.footer-sub.footer_area_treatment .footer_sub_treatment {
  display: block;
}

.footer-sub.footer_area_treatment .footer_sub_common {
  display: none;
}

.footer-sub.footer_area_cancerimmunity .footer_sub_cancerimmunity {
  display: block;
}

.footer-sub.footer_area_cancerimmunity .footer_sub_common {
  display: none;
}

/* 下層ページレイアウト */
.category_area {
  width: 100%;
  height: 300px;
  background: url(/common/img/category_area/background_common.jpg) no-repeat center center/cover;
}

.category_area_introduction {
  background: url(/common/img/category_area/background_introduction2.jpg) no-repeat center center/cover;
}

.category_area_treatment {
  background: url(/common/img/category_area/background_treatment.jpg) no-repeat center center/cover;
}

.category_area_access {
  background: url(/common/img/category_area/background_access2.jpg) no-repeat center center/cover;
}

.category_area_cancerimmunity {
  background: url(/common/img/category_area/background_cancerimmunity.jpg) no-repeat center center/cover;
}

@media screen and (max-width: 999px) {
  .category_area {
    width: 100%;
    height: 120px;
  }
}

.category_area_inner {
  padding-top: 150px;
}

.category_area_inner .category_ja {
  height: 50px;
}

.category_area_inner .category_en {
  height: 40px;
}

.category_area_inner img {
  height: 100%;
}

@media screen and (max-width: 999px) {
  .category_area_inner {
    padding-top: 30px;
  }
  .category_area_inner .category_ja {
    height: 40px;
  }
  .category_area_inner .category_en {
    height: 30px;
  }
}

.breadcrumbs,
.bread_crumb {
  text-align: left;
  padding-top: 20px;
  padding-bottom: 23px;
}

@media screen and (max-width: 999px) {
  .breadcrumbs,
  .bread_crumb {
    width: 95%;
    padding-top: 10px;
    padding-bottom: 10px;
  }
}

@media screen and (min-width: 1000px), print {
  .breadcrumbs .node,
  .bread_crumb .node {
    font-size: 1rem;
  }
}

@media screen and (max-width: 999px) {
  .breadcrumbs .node,
  .bread_crumb .node {
    font-size: 0.875rem;
  }
}

.breadcrumbs li,
.bread_crumb li {
  display: inline;
  line-height: 1.2;
  color: #b8b8b8;
}

.breadcrumbs li:not(:last-child)::after,
.bread_crumb li:not(:last-child)::after {
  content: '>';
  display: inline-block;
  position: relative;
  left: 0;
  color: #b8b8b8;
}

@media screen and (min-width: 1000px), print {
  .breadcrumbs li:not(:last-child)::after,
  .bread_crumb li:not(:last-child)::after {
    margin-left: .7em;
    margin-right: .2em;
  }
}

@media screen and (max-width: 999px) {
  .breadcrumbs li:not(:last-child)::after,
  .bread_crumb li:not(:last-child)::after {
    margin-left: .6em;
    margin-right: .3em;
  }
}

.breadcrumbs li:first-child,
.bread_crumb li:first-child {
  position: relative;
  top: 0;
  left: 0;
}

.breadcrumbs a,
.bread_crumb a {
  text-decoration: none;
  position: relative;
  top: 0;
  left: 0;
  color: #93ab22;
}

.breadcrumbs a:hover,
.bread_crumb a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.pagelink_list {
  list-style: none;
}

@media screen and (min-width: 1000px), print {
  .pagelink_list {
    width: 680px;
    margin-left: calc(100% - 680px);
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

@media screen and (max-width: 999px) {
  .pagelink_list {
    width: 100%;
  }
}

.pagelink_list > li {
  list-style: none;
  padding: 0;
  margin-left: -1px;
}

@media screen and (min-width: 1000px), print {
  .pagelink_list > li {
    position: relative;
    margin-bottom: 8px;
  }
  .pagelink_list > li::before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 14px;
    background-color: #dcdcdc;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .pagelink_list > li::after {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 14px;
    background-color: #dcdcdc;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.pagelink_list > li > a {
  color: #8f8f8f;
  -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  font-size: 1.063rem;
  text-decoration: none;
  position: relative;
  display: block;
}

.pagelink_list > li > a:hover {
  color: #819a0b;
}

.pagelink_list > li > a::before {
  width: 12px;
  height: 12px;
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: 25px;
  background: url(/common/img/icon/pagelink_icon.png) no-repeat center center/cover;
}

@media screen and (max-width: 999px) {
  .pagelink_list > li > a::before {
    top: 13px;
  }
}

@media screen and (min-width: 1000px), print {
  .pagelink_list > li > a {
    padding-left: 40px;
    padding-right: 25px;
  }
}

@media screen and (max-width: 999px) {
  .pagelink_list > li > a {
    font-size: 1rem;
    padding-left: 20px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  .pagelink_list > li > a::before {
    left: 0;
  }
}

@media screen and (max-width: 999px) {
  .pagelink_list > li {
    border-bottom: dashed 1px #dcdcdc;
  }
}

/* main_content内共通要素 */
.main_content h2:not(.cancel),
.main_content .h2 {
  font-size: 2.25rem;
  color: #819a0b;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  border-bottom: 1px solid #a0a0a0;
  line-height: 1.3;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 11px;
  margin-bottom: 40px;
  margin-top: 45px;
}

@media screen and (max-width: 999px) {
  .main_content h2:not(.cancel),
  .main_content .h2 {
    font-size: 1.625rem;
    margin-bottom: 28px;
    padding-left: 0;
  }
}

.main_content h3:not(.cancel),
.main_content .h3 {
  width: calc(100% - 20px);
  font-size: 1.75rem;
  color: #819a0b;
  font-weight: 500;
  background-color: #f7f6f5;
  padding: 7px 20px;
  margin-bottom: 35px;
  margin-top: 45px;
  position: relative;
}

.main_content h3:not(.cancel)::after,
.main_content .h3::after {
  display: block;
  content: "";
  width: 20px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -20px;
  background: url(/common/img/h3_deco.png) no-repeat center center/20px 100%;
}

@media screen and (max-width: 999px) {
  .main_content h3:not(.cancel),
  .main_content .h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    margin-top: 25px;
  }
}

.main_content h4:not(.cancel),
.main_content .h4 {
  font-weight: 500;
  font-size: 1.625rem;
  color: #819a0b;
  margin-top: 35px;
  margin-bottom: 20px;
  margin-top: 50px;
  padding-left: 19px;
  position: relative;
}

.main_content h4:not(.cancel)::before,
.main_content .h4::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 24px;
  left: 0;
  top: 10px;
  background-color: #dcdcdc;
}

@media screen and (max-width: 999px) {
  .main_content h4:not(.cancel)::before,
  .main_content .h4::before {
    height: 20px;
    top: 3px;
  }
}

@media screen and (max-width: 999px) {
  .main_content h4:not(.cancel),
  .main_content .h4 {
    font-size: 1.188rem;
    margin-top: 35px;
    margin-bottom: 15px;
  }
}

.main_content h5:not(.cancel),
.main_content .h5 {
  font-size: 1.375rem;
  font-weight: 600;
  line-height: 1.5;
  color: #819a0b;
  padding-left: 20px;
  margin-bottom: 10px;
  margin-top: 35px;
}

@media screen and (max-width: 999px) {
  .main_content h5:not(.cancel),
  .main_content .h5 {
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 12px;
    padding-left: 0;
  }
}

.main_content h6:not(.cancel),
.main_content .h6 {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.5;
  color: #819a0b;
  padding-left: 20px;
  margin-bottom: 10px;
  margin-top: 30px;
}

@media screen and (max-width: 999px) {
  .main_content h6:not(.cancel),
  .main_content .h6 {
    font-size: 1rem;
    margin-top: 25px;
    margin-bottom: 25px;
  }
}

.green_text {
  color: #819a0b;
}

.box {
  padding: 30px;
  background-color: #fcf8f2;
  display: table;
}

.box-full {
  width: 100%;
  padding: 30px;
  background-color: #fcf8f2;
  display: table;
}

/* カラム設定 */
.set .fix img {
  width: 350px;
  display: block;
}

.set .fix a {
  text-decoration: none;
}

.table-status {
  /* thead {
			th {
				// background-color: palette('green', 'default');
			}
		} */
}

.table-status tbody td {
  text-align: center;
}

.table-status tbody td p {
  margin-bottom: 0 !important;
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************
## Layout
*/
@media (min-width: 1061px) {
  .wrapper {
    min-width: 1200px;
  }
  .pc_padding,
  .padding {
    padding-left: 15px;
    padding-right: 15px;
  }
  .main_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
  .main_content {
    width: 960px;
    padding-right: 80px;
  }
  .sub_content {
    width: 240px;
    -webkit-flex-basis: 240px;
        -ms-flex-preferred-size: 240px;
            flex-basis: 240px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    border-left: 1px solid #e5e5e5;
    padding-left: 29px;
    padding-top: 60px;
  }
  .sub_content .side_block {
    display: block;
  }
  .sub_content .gnav__text {
    width: 210px;
    position: relative;
    margin-bottom: 77px;
  }
  .sub_content .gnav__text::after {
    position: absolute;
    content: "";
    display: block;
    width: 36px;
    height: 2px;
    background-color: #7d7d7d;
    margin-top: 29px;
  }
  .sub_content .gnav__text img {
    width: 100%;
  }
  .sub_content .sub_menu {
    border-top: 1px dashed #e5e5e5;
  }
  .sub_content .sub_menu .text {
    display: block;
  }
  .sub_content .sub_menu .a1,
  .sub_content .sub_menu .a2 {
    text-decoration: none;
    position: relative;
  }
  .sub_content .sub_menu .a1 .text,
  .sub_content .sub_menu .a2 .text {
    padding-left: 15px;
  }
  .sub_content .sub_menu .a1:not(.js-accordion__toggle) > .text,
  .sub_content .sub_menu .a2:not(.js-accordion__toggle) > .text {
    position: relative;
  }
  .sub_content .sub_menu .a1:not(.js-accordion__toggle) > .text::before,
  .sub_content .sub_menu .a2:not(.js-accordion__toggle) > .text::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #a5b947;
    border-right: 1px solid #a5b947;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }
  .sub_content .sub_menu .a1 .text {
    border-bottom: 1px dashed #e5e5e5;
    padding-top: 12px;
    padding-bottom: 11px;
    color: #636363;
    -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .sub_content .sub_menu .a2 .text {
    padding-top: 6px;
    padding-bottom: 6px;
    color: #b9b9b9;
  }
  .sub_content .sub_menu .a2 .text:hover {
    color: #93ab22;
  }
  .sub_content .sub_menu .sub_ul2 {
    border-bottom: 1px dashed #e5e5e5;
    padding-bottom: 15px;
    padding-top: 10px;
    padding-left: 23px;
  }
  .sub_content .sub_menu .active > .a1 > .text {
    background-color: #f7f6f5;
    border-bottom: none;
  }
  .sub_content .sub_menu .active > .a1 > .text::before {
    content: "";
    width: 3px;
    height: 45%;
    background-color: #93ab22;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    border-top: none;
    border-right: none;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sub_content .sub_menu .active > .a1 .js-toggle {
    display: block;
  }
  .sub_content .sub_menu .active > .a1 .js-toggle::before {
    display: none;
  }
  .sub_content .sub_menu .active > .a1 .js-toggle::after {
    display: none;
  }
  .sub_content .sub_menu .a1:hover > .text {
    background-color: #f7f6f5;
  }
  .sub_content .sub_menu .active > .a2 .text {
    border-bottom: none;
    color: #636363;
  }
  .sub_content .sub_menu .active > .a2 .text::before {
    content: "";
    width: 3px;
    height: 16px;
    background-color: #93ab22;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    border-top: none;
    border-right: none;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 1060px) {
  .main_wrapper {
    display: block;
  }
  .main_content {
    width: 100%;
  }
  .sub_content {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    overflow: hidden;
    background-color: #FCFBF9;
    padding-right: 20px;
    padding-left: 20px;
    padding-top: 10px;
    margin-top: 100px;
  }
  .sub_content .gnav__text {
    width: 200px;
    margin-bottom: 10px;
  }
  .sub_content .sub_menu .text {
    display: block;
  }
  .sub_content .sub_menu .a1,
  .sub_content .sub_menu .a2 {
    text-decoration: none;
    position: relative;
  }
  .sub_content .sub_menu .a1 .text,
  .sub_content .sub_menu .a2 .text {
    padding-left: 15px;
  }
  .sub_content .sub_menu .a1:not(.js-accordion__toggle) > .text,
  .sub_content .sub_menu .a2:not(.js-accordion__toggle) > .text {
    position: relative;
  }
  .sub_content .sub_menu .a1:not(.js-accordion__toggle) > .text::before,
  .sub_content .sub_menu .a2:not(.js-accordion__toggle) > .text::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid #a5b947;
    border-right: 1px solid #a5b947;
    -webkit-transform: rotate(45deg) translateY(-50%);
            transform: rotate(45deg) translateY(-50%);
  }
  .sub_content .sub_menu .a1 .text {
    border-top: 1px dashed #e5e5e5;
    padding-top: 12px;
    padding-bottom: 11px;
    color: #636363;
    -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
    transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  }
  .sub_content .sub_menu .a2 .text {
    padding-top: 6px;
    padding-bottom: 6px;
    color: #636363;
    padding-top: 12px;
    padding-bottom: 11px;
  }
  .sub_content .sub_menu .a2 .text:hover {
    text-decoration: none;
    opacity: 0.6;
    -webkit-transition: 0.2s opacity;
    transition: 0.2s opacity;
  }
  .sub_content .sub_menu .sub_ul2 {
    padding-left: 23px;
  }
  .sub_content .sub_menu .sub_ul2 li:not(:last-of-type) .text {
    border-bottom: 1px dashed #e5e5e5;
  }
  .sub_content .sub_menu .active > .a1 > .text {
    background-color: #f7f6f5;
    border-bottom: none;
  }
  .sub_content .sub_menu .active > .a1 > .text::before {
    content: "";
    width: 3px;
    height: 16px;
    background-color: #93ab22;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    border-top: none;
    border-right: none;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sub_content .sub_menu .active > .a1 .js-toggle {
    display: block;
  }
  .sub_content .sub_menu .active > .a1 .js-toggle::before {
    display: none;
  }
  .sub_content .sub_menu .active > .a1 .js-toggle::after {
    display: none;
  }
  .sub_content .sub_menu .active > .a2 > .text {
    border-bottom: none;
  }
  .sub_content .sub_menu .active > .a2 > .text::before {
    content: "";
    width: 3px;
    height: 16px;
    background-color: #93ab22;
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    border-top: none;
    border-right: none;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
  .sub_content .sub_menu .active > .a2 .js-toggle {
    display: block;
  }
  .sub_content .sub_menu .active > .a2 .js-toggle::before {
    display: none;
  }
  .sub_content .sub_menu .active > .a2 .js-toggle::after {
    display: none;
  }
  .sub_content .sub_menu .a1:hover > .text {
    background-color: #f7f6f5;
  }
  .sub_content .sub_menu .active > .a2 .text {
    color: #636363;
  }
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Utility - Cosmetic

ユーティリティー設定。
このサイト専用というわけでもない共通設定。

*/
@media screen and (min-width: 1000px), print {
  .pc_none,
  .root .pc_none {
    display: none;
  }
  .block,
  .pc_block {
    display: block;
  }
  .tel_link,
  .tel_link-no {
    pointer-events: none;
    cursor: default;
    color: inherit;
    text-decoration: none;
  }
  .root .tel_link,
  .root .tel_link:hover, .root
  .tel_link-no,
  .root
  .tel_link-no:hover {
    text-decoration: none;
    color: inherit;
  }
  .sp_click,
  .pc_no_click {
    pointer-events: none;
    cursor: default;
  }
}

@media screen and (min-width: 1000px) and (min-width: 1000px), print {
  .hedaer_fixed_root .main_wrapper {
    margin-top: 101px;
  }
}

/***********************************************************************
 ***********************************************************************
 ***********************************************************************



## Component - Base

コンポーネント設定。
各ページでよく使い回す記述。
このサイト専用の共通設定。

*/
/**************************

## - 段組設定 2列 3列 4列

PCの時だけ、中央に等間隔で余白を作り、width: 100%; を守って列になる。
ul でなくてもいい。

**2列 .pc_column2**

	<ul class="pc_column2">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

**3列 .pc_column3**

	<ul class="pc_column3">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

**4列 .pc_column4**

	<ul class="pc_column4">
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
		<li>コンテンツ</li>
	</ul>

*/
@media screen and (min-width: 1000px), print {
  .pc_column2 > *:nth-child(2n) {
    padding-bottom: 20px;
  }
  .pc_column2 > *:last-child {
    padding-bottom: 0;
  }
  .pc_column3 > *:nth-child(3n) {
    padding-bottom: 20px;
  }
  .pc_column3 > *:last-child {
    padding-bottom: 0;
  }
  .pc_column4 > *:nth-child(4n) {
    padding-bottom: 20px;
  }
  .pc_column4 > *:last-child {
    padding-bottom: 0;
  }
  .pc_column2::before, .pc_column2::after {
    content: '';
    display: table;
  }
  .pc_column2::after {
    clear: both;
  }
  .pc_column2 > * {
    width: 50%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pc_column2 > *:nth-child(2n + 1) {
    clear: left;
    padding-right: 10px;
  }
  .pc_column2 > *:nth-child(2n) {
    padding-left: 10px;
  }
  .pc_column3::before, .pc_column3::after {
    content: '';
    display: table;
  }
  .pc_column3::after {
    clear: both;
  }
  .pc_column3 > * {
    width: 33.33333%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pc_column3 > *:nth-child(3n + 1) {
    clear: left;
    padding-right: 13px;
  }
  .pc_column3 > *:nth-child(3n + 2) {
    padding-left: 7px;
    padding-right: 7px;
  }
  .pc_column3 > *:nth-child(3n) {
    padding-left: 13px;
  }
  .pc_column4::before, .pc_column4::after {
    content: '';
    display: table;
  }
  .pc_column4::after {
    clear: both;
  }
  .pc_column4 > * {
    width: 25%;
    float: left;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .pc_column4 > *:nth-child(4n + 1) {
    clear: left;
    padding-right: 15px;
  }
  .pc_column4 > *:nth-child(4n + 2) {
    padding-left: 5px;
    padding-right: 10px;
  }
  .pc_column4 > *:nth-child(4n + 3) {
    padding-left: 10px;
    padding-right: 5px;
  }
  .pc_column4 > *:nth-child(4n) {
    padding-left: 15px;
  }
  .pc_column2_2 {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    width: 100%;
  }
  .pc_column2_2 > * {
    width: 0px;
    margin-right: 10px;
  }
  .pc_column2_2 > *:nth-child(2n) {
    margin-right: 0;
  }
  .pc_column2_2 > *:nth-child(2n) {
    padding-bottom: 20px;
  }
  .pc_column2_2 > *:last-child {
    padding-bottom: 0;
  }
  .set::before, .set::after {
    content: '';
    display: table;
  }
  .set::after {
    clear: both;
  }
  .set .resize.right {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: right;
    padding-left: 300px;
    margin-left: -280px;
  }
  .set .fix.left {
    width: 280px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: left;
  }
  .set .resize.left {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
    padding-right: 300px;
    margin-right: -280px;
  }
  .set .fix.right {
    width: 280px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: right;
  }
  .set .fix > img:not(.cancel),
  .set .resize > img:not(.cancel) {
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .set-2 .resize.right {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: right;
    padding-left: 220px;
    margin-left: -200px;
  }
  .set-2 .fix.left {
    width: 200px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: left;
  }
  .set-2 .resize.left {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
    padding-right: 220px;
    margin-right: -200px;
  }
  .set-2 .fix.right {
    width: 200px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: right;
  }
  .set-3 .resize.right {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: right;
    padding-left: 470px;
    margin-left: -450px;
  }
  .set-3 .fix.left {
    width: 450px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: left;
  }
  .set-3 .resize.left {
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    float: left;
    padding-right: 470px;
    margin-right: -450px;
  }
  .set-3 .fix.right {
    width: 450px;
    position: relative;
    top: 0;
    left: 0;
    z-index: 2;
    float: right;
  }
}

.content_section {
  margin-bottom: 120px;
}

@media screen and (max-width: 999px) {
  .content_section {
    margin-bottom: 60px;
  }
}

.content_section-sm {
  margin-bottom: 80px;
}

@media screen and (max-width: 999px) {
  .content_section-sm {
    margin-bottom: 40px;
  }
}

.column_section {
  width: 100%;
  background-color: #f6ffe2;
  padding: 30px 80px 70px;
  position: relative;
}

.column_section::after {
  content: "";
  display: block;
  position: absolute;
  width: 60px;
  height: 60px;
  background: url(/common/img/column_tail.jpg) no-repeat center center/cover;
  bottom: 0;
  right: 0;
}

.column_section .column_title {
  font-size: 1.625rem;
  font-weight: 500;
  text-align: center;
  border-bottom: 1px solid #c3de88;
  margin-bottom: 35px;
  padding-bottom: 15px;
  padding-top: 33px;
  position: relative;
}

.column_section .column_title::before {
  content: "";
  width: 111px;
  height: 33px;
  background: url(/common//img//column_hukidashi.png) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.column_section p {
  margin-left: 0 !important;
}

@media screen and (max-width: 1060px) {
  .column_section {
    margin-bottom: 60px;
  }
}

@media screen and (max-width: 999px) {
  .column_section {
    padding: 30px 20px 70px;
  }
}

@media screen and (min-width: 1000px), print {
  .inner_float_right {
    float: right;
    margin-left: 1em;
    margin-bottom: 1em;
    margin-top: .5em;
  }
}

@media screen and (max-width: 999px) {
  .inner_float_right {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2em;
  }
}

@media screen and (min-width: 1000px), print {
  .inner_float_left {
    float: left;
    margin-right: 1em;
    margin-bottom: 1em;
    margin-top: .5em;
  }
}

@media screen and (max-width: 999px) {
  .inner_float_left {
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 2em;
  }
}

.box {
  width: 100%;
  background-color: #f6ffe2;
  padding: 30px 30px;
  margin-bottom: 1em;
}

@media screen and (max-width: 999px) {
  .box {
    padding: 30px 10px;
  }
}

.box_gray {
  width: 100%;
  background-color: #f7f6f5;
  padding: 40px 40px;
  margin-bottom: 1em;
}

@media screen and (max-width: 999px) {
  .box_gray {
    padding: 30px 10px;
  }
}

.pickup_content ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 999px) {
  .pickup_content ul {
    display: block;
    margin-bottom: 168px;
  }
}

.pickup_content ul li > a {
  display: block;
  width: 280px;
  height: 280px;
  text-decoration: none;
  -webkit-box-shadow: 8.192px 5.736px 40px 0px rgba(148, 141, 128, 0.149);
          box-shadow: 8.192px 5.736px 40px 0px rgba(148, 141, 128, 0.149);
  padding-top: 35px;
  padding-bottom: 33px;
  margin-bottom: 100px;
  -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 999px) {
  .pickup_content ul li > a {
    width: 90%;
    margin: 0 auto 30px;
    padding-right: 10px;
    padding-left: 10px;
  }
}

.pickup_content ul li > a .pickup_txt {
  font-weight: 500;
  font-size: 20px;
  color: #2a2a2a;
  text-align: center;
  margin-bottom: 35px;
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

@media screen and (max-width: 999px) {
  .pickup_content ul li > a .pickup_txt {
    font-size: 16px;
  }
}

.pickup_content ul li > a img {
  width: 100px;
  height: 85px;
  margin-bottom: 23px;
  -webkit-transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.pickup_content ul li > a .more_btn {
  height: 35px;
  width: 140px;
  background-color: #9dc025;
  border-radius: 17px;
  color: #fff;
  font-size: 20px;
  text-align: center;
  margin: 0 auto;
  -webkit-transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
  transition: 0.2s cubic-bezier(0.23, 1, 0.32, 1);
}

.pickup_content ul li > a .more_btn span {
  position: relative;
  margin-right: 10px;
}

.pickup_content ul li > a .more_btn span::before {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: 47%;
  right: -10px;
}

.pickup_content ul li > a:hover {
  -webkit-box-shadow: 8.192px 5.736px 40px 0px rgba(24, 24, 24, 0.149);
          box-shadow: 8.192px 5.736px 40px 0px rgba(24, 24, 24, 0.149);
  opacity: 1;
}

.pickup_content ul li > a:hover .pickup_txt {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.pickup_content ul li > a:hover img {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
/*# sourceMappingURL=common.css.map */