@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;
  }
}

.root-index {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.root-index .header .gnav_wrapper {
  border-bottom: none;
}

.root-index .gnav__sub-show {
  border-top: 1px solid #e5e5e5;
}

.root-index .header-fixed .gnav__sub-show {
  border-top: none;
}

.root-index .header_right {
  z-index: 1000;
}

.js-pix_diapo_original {
  display: none;
}

.index_main_content {
  margin-top: 100px;
}

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

@media screen and (max-width: 999px) {
  .index_main_content {
    margin-top: 20px;
    padding-bottom: 40px;
  }
}

h2.serif {
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 999px) {
  h2.serif {
    font-size: 24px;
  }
}

@media screen and (min-width: 1000px), print {
  .index_container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
  }
}

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

@media screen and (max-width: 999px) {
  .index_container {
    width: 100%;
    padding-right: 12px;
    padding-left: 12px;
    position: relative;
  }
}

.hero_area {
  width: 100%;
  max-height: 800px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  -webkit-transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@media (min-width: 1600px) {
  .hero_area {
    max-height: 80vh;
  }
}

.hero_area .slick-slide {
  overflow: hidden;
  max-height: 800px;
}

@media (min-width: 1600px) {
  .hero_area .slick-slide {
    max-height: 80vh;
  }
}

.hero_area .hero_container {
  position: absolute;
  bottom: 22px;
  right: 50%;
  -webkit-transform: translateX(50%);
          transform: translateX(50%);
}

@media screen and (max-width: 999px) {
  .hero_area .hero_container {
    bottom: 10px;
  }
}

.hero_area img {
  -o-object-fit: cover;
     object-fit: cover;
}

.hero_area-inited {
  opacity: 1;
}

.general_section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  margin-bottom: 85px;
}

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

.general_section .general_title {
  width: 500px;
  min-height: 340px;
  background-color: #fcfbf9;
  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;
  -webkit-transition-delay: .2s;
          transition-delay: .2s;
}

.general_section .general_title h2 {
  width: 200px;
}

@media screen and (max-width: 999px) {
  .general_section .general_title h2 {
    width: 150px;
  }
}

@media screen and (max-width: 999px) {
  .general_section .general_title {
    min-height: 100px;
    width: 100%;
    margin-bottom: 20px;
  }
}

.general_section .general_content {
  width: 700px;
  padding-right: 100px;
  padding-left: 100px;
  line-height: 2.25;
}

@media screen and (min-width: 1000px), print {
  .general_section .general_content {
    -webkit-transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    -webkit-transform: translateY(40px);
            transform: translateY(40px);
  }
}

@media (max-width: 1600px) {
  .general_section .general_content {
    padding-left: 0;
  }
}

@media screen and (max-width: 999px) {
  .general_section .general_content {
    padding-right: 20px;
    padding-left: 20px;
    width: 100%;
  }
}

.general_section .general_content_top {
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 75px;
}

@media screen and (max-width: 999px) {
  .general_section .general_content_top {
    font-size: 15px;
    margin-bottom: 45px;
  }
}

.general_section .general_content_bottom {
  border-top: 1px solid #d2d2d2;
  border-bottom: 1px solid #d2d2d2;
  position: relative;
  padding: 22px 13px;
}

@media screen and (max-width: 999px) {
  .general_section .general_content_bottom {
    padding: 22px 5px;
  }
}

.general_section .general_content_bottom h3 {
  width: 70px;
  background-color: #fff;
  position: absolute;
  top: -15px;
  left: 0;
  color: #4a4a4a;
  font-weight: 400;
  font-size: 18px;
}

@media screen and (max-width: 999px) {
  .general_section .general_content_bottom h3 {
    font-size: 14px;
    top: -16px;
    width: 60px;
  }
}

.general_section .general_content_bottom ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: space-around;
      -ms-flex-pack: distribute;
          justify-content: space-around;
}

@media (max-width: 420px) {
  .general_section .general_content_bottom ul {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.general_section .general_content_bottom ul li {
  font-size: 20px;
  font-weight: 500;
  color: #2a2a2a;
}

.general_section .general_content_bottom ul li img {
  width: 46px;
}

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

.introduction_title {
  text-align: center;
  width: 100%;
  max-width: 1600px;
  height: 156px;
  background: url(/common/img/index/introduction_en.png) no-repeat;
  background-size: 1060px 156px;
  background-position: right;
  margin-bottom: 71px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.introduction_title h2 {
  padding-top: 75px;
}

@media (max-width: 1600px) {
  .introduction_title {
    left: 0;
    -webkit-transform: none;
            transform: none;
  }
}

@media (max-width: 1200px) {
  .introduction_title {
    background-size: 80% 80%;
  }
}

@media screen and (max-width: 999px) {
  .introduction_title {
    left: auto;
    right: 0;
    background-position: left;
    background-size: contain;
    margin-top: 40px;
    width: 90%;
    height: 120px;
    margin-bottom: 25px;
    text-align: left bottom;
    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;
  }
  .introduction_title h2 {
    padding-left: 25px;
    padding-top: 20px;
  }
}

.introduction_wrapper {
  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;
  margin-bottom: 80px;
}

@media screen and (max-width: 999px) {
  .introduction_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-left: 12px;
    padding-right: 12px;
    margin-bottom: 30px;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}

.introduction_img {
  max-width: 860px;
  margin-left: -200px;
}

.introduction_img img {
  width: 100%;
}

@media screen and (max-width: 999px) {
  .introduction_img {
    width: calc(100% + 12px);
    margin-left: -24px;
    height: 400px;
    overflow: hidden;
  }
}

@media screen and (max-width: 999px) and (max-width: 800px) {
  .introduction_img {
    height: 340px;
  }
}

@media screen and (max-width: 999px) and (max-width: 600px) {
  .introduction_img {
    height: 200px;
  }
}

@media screen and (min-width: 1000px), print {
  .introduction_txts {
    margin-left: 60px;
  }
  .introduction_txts p {
    font-size: 22px;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    line-height: 3.2;
    letter-spacing: 0.05em;
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px), print and (max-width: 1200px) {
  .introduction_txts {
    margin-left: 20px;
  }
}

@media screen and (max-width: 999px) {
  .introduction_txts {
    margin-bottom: 20px;
  }
  .introduction_txts p {
    font-size: 14px;
    line-height: 2.3;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
  }
}

.introduction .introduction_word {
  text-align: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 125px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 999px) {
  .introduction .introduction_word {
    text-align: left;
    font-size: 18px;
    padding-left: 12px;
    margin-bottom: 70px;
  }
}

/* .introduction_word copy */
.introduction .introduction_word_right {
  text-align: right;
  font-family: 'Noto Serif JP', serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 125px;
  letter-spacing: 0.1em;
}

@media screen and (max-width: 999px) {
  .introduction .introduction_word_right {
    text-align: right;
    font-size: 18px;
    padding-left: 12px;
    margin-bottom: 70px;
  }
}

/* /.introduction_word copy */

.gan-tiryou {
  width: 100%;
  background-color: #fafaf5;
  position: relative;
  overflow: hidden;
  margin-bottom: 105px;
}

.gan-tiryou .index_container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 999px) {
  .gan-tiryou .index_container {
    padding-left: 0;
  }
}

.gan-tiryou_green.sp_none {
  width: 646px;
  position: absolute;
  bottom: 0;
  right: -100px;
}

.gan-tiryou_wrapper {
  width: 700px;
  z-index: 3;
  position: relative;
}

@media screen and (max-width: 999px) {
  .gan-tiryou_wrapper {
    width: 100%;
    background: url(/common/img/index/gan-tiryou_bg_sp.jpg) no-repeat;
    background-position: bottom left;
    background-size: 60%;
  }
}

@media screen and (max-width: 999px) and (max-width: 630px) {
  .gan-tiryou_wrapper {
    background-position: bottom 0 left -100%;
    background-size: 80%;
  }
}

@media screen and (max-width: 999px) and (max-width: 500px) {
  .gan-tiryou_wrapper {
    background-size: 422px 416px;
    background-position: bottom 0 left -120px;
  }
}

@media screen and (max-width: 999px) and (max-width: 450px) {
  .gan-tiryou_wrapper {
    background-position: bottom 0 left -180px;
  }
}

.gan-tiryou_title {
  margin-top: 45px;
  margin-bottom: 40px;
}

.gan-tiryou_title h2 {
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  color: #2a2a2a;
}

.gan-tiryou_title h2 .serif_txt {
  font-size: 30px;
  font-family: 'Noto Serif JP', serif;
  font-weight: 600;
}

@media screen and (max-width: 999px) {
  .gan-tiryou_title h2 .serif_txt {
    font-size: 24px;
  }
}

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

.gan-tiryou_txt {
  font-size: 18px;
  font-weight: 500;
  line-height: 2.25;
  color: #2a2a2a;
  margin-bottom: 40px;
  z-index: 10;
  position: relative;
}

@media screen and (max-width: 999px) {
  .gan-tiryou_txt {
    font-size: 15px;
    margin-bottom: 10px;
    padding-left: 24px;
    padding-right: 12px;
  }
}

.gan-tiryou_more {
  text-align: right;
  padding-right: 36px;
  margin-bottom: 90px;
}

.gan-tiryou_more a {
  position: relative;
  display: inline-block;
  padding-right: 60px;
  font-size: 14px;
  color: #a1c32e;
  text-decoration: none;
  font-weight: 600;
}

.gan-tiryou_more a::before, .gan-tiryou_more a::after {
  content: "";
  display: block;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  position: absolute;
  right: 0;
  bottom: 8px;
}

.gan-tiryou_more a::before {
  width: 36px;
  height: 1px;
  background: #a1c32e;
}

.gan-tiryou_more a::after {
  width: 2px;
  height: 6px;
  background: #a1c32e;
}

@media screen and (max-width: 999px) {
  .gan-tiryou_more {
    padding-right: 24px;
    margin-bottom: 35px;
  }
  .gan-tiryou_more a {
    padding-right: 30px;
    font-size: 14px;
    font-weight: 500;
  }
  .gan-tiryou_more a::before, .gan-tiryou_more a::after {
    right: 0;
    bottom: 8px;
  }
  .gan-tiryou_more a::before {
    width: 26px;
  }
  .gan-tiryou_more a::after {
    width: 2px;
    height: 6px;
    background: #a1c32e;
  }
}

@media screen and (min-width: 1000px), print {
  .gan-tiryou_box_wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 75px;
  }
  .gan-tiryou_box {
    width: calc(100% / 3);
    border-left: 1px solid #d2d2d2;
    height: 102px;
    text-align: center;
    display: block;
    text-decoration: none;
  }
  .gan-tiryou_box:nth-of-type(3) {
    border-right: 1px solid #d2d2d2;
  }
  .gan-tiryou_box img {
    width: 46px;
    height: 35px;
    display: block;
    margin: 9px auto 13px;
    -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .gan-tiryou_box_txt {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    color: #151515;
    font-weight: 600;
    position: relative;
    -webkit-transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  .gan-tiryou_box_txt::after {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/common/img/icon/arrow_maru.png) no-repeat center center/cover;
    position: absolute;
    left: 50%;
    bottom: -18px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@media screen and (max-width: 999px) {
  .gan-tiryou {
    /* .gan-tiryou_green {
			width: 60%;
			position: absolute;
			right: 50%;
			bottom: 0;
			height: 350px;
			background: url(/common/img/index/gan-tiryou_bg.jpg) no-repeat center bottom / cover;
		} */
  }
  .gan-tiryou_box_wrapper {
    margin-bottom: 15px;
    min-width: 170px;
    width: 50%;
    margin-left: 50%;
  }
}

@media screen and (max-width: 999px) and (max-width: 370px) {
  .gan-tiryou_box_wrapper {
    margin-left: calc(100% - 170px);
  }
}

@media screen and (max-width: 999px) {
  .gan-tiryou_box {
    text-decoration: none;
    min-height: 97px;
    display: block;
    padding-top: 20px;
    padding-bottom: 34px;
  }
  .gan-tiryou_box:not(:last-child) {
    position: relative;
  }
  .gan-tiryou_box:not(:last-child)::after {
    width: 90%;
    height: 1px;
    background-color: #d2d2d2;
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .gan-tiryou_box_txt {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    color: #151515;
    font-weight: 600;
    position: relative;
    text-align: center;
  }
  .gan-tiryou_box_txt::after {
    display: block;
    content: "";
    width: 14px;
    height: 14px;
    background: url(/common/img/icon/arrow_maru.png) no-repeat center center/cover;
    position: absolute;
    left: 50%;
    bottom: -18px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .gan-tiryou_box img {
    width: 10%;
    min-width: 25px;
    display: block;
    margin: 9px auto 13px;
  }
}

.pickup_content .container {
  max-width: 1000px;
}

.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: 200px;
  }
}

.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);
}

.schedule {
  width: 100%;
  min-height: 600px;
  position: relative;
  margin-bottom: 100px;
  /* .schedule_bg {
		width: 50%;
		height: 100%;
		background: #fcfbf9;
		position: absolute;
		top: 0;
		right: 0;
		@media screen and (max-width: 999px) {
			width: 100%;
		}
	} */
}

.schedule::before {
  background: #fcfbf9;
  background-size: 100% 80%;
  background-position: right;
  min-height: 600px;
  content: "";
  display: block;
  width: 70%;
  height: 100%;
  position: absolute;
  right: 0;
}

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

@media screen and (min-width: 1000px), print {
  .schedule .schedule_img {
    max-width: 500px;
    position: absolute;
    top: 75px;
    left: -100px;
    -webkit-box-shadow: -7.431px 6.691px 50px 0px rgba(162, 134, 126, 0.2);
            box-shadow: -7.431px 6.691px 50px 0px rgba(162, 134, 126, 0.2);
  }
}

@media screen and (min-width: 1000px) and (max-width: 1200px), print and (max-width: 1200px) {
  .schedule .schedule_img {
    width: 45%;
    left: 0;
  }
}

@media screen and (max-width: 999px) {
  .schedule .schedule_img {
    width: 80%;
    height: 160px;
    background: url(/common/img/index/schedule_img_sp.jpg) no-repeat center center/cover;
    position: absolute;
    top: -90px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

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

.schedule .schedule_calendar {
  margin-left: 500px;
  margin-right: 75px;
}

@media (max-width: 1200px) {
  .schedule .schedule_calendar {
    margin-left: 50%;
    width: 420px;
  }
}

@media screen and (max-width: 999px) {
  .schedule .schedule_calendar {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

.schedule .schedule_calendar_head {
  position: relative;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_calendar_head {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.schedule .schedule_calendar_head::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #434343;
  position: absolute;
  right: 300px;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_calendar_head::after {
    right: -50%;
  }
}

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

.schedule_container {
  width: 1000px;
  height: 100%;
  position: relative;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (max-width: 1200px) {
  .schedule_container {
    width: 100%;
  }
}

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

.schedule .schedule_wrapper {
  right: 100px;
  padding-bottom: 80px;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_wrapper {
    right: auto;
    width: 90%;
    max-width: 500px;
    margin: 0 auto;
  }
}

.schedule .schedule_title {
  margin-left: 450px;
  text-align: center;
  margin-bottom: 30px;
  padding-top: 70px;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_title {
    padding-top: 100px;
  }
}

.schedule .schedule_title .schedule_title_h2 {
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 12px;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_title .schedule_title_h2 {
    font-size: 18px;
  }
}

.schedule .schedule_title .schedule_title_en {
  color: #b3aea5;
  font-size: 16px;
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
  line-height: 1;
}

@media screen and (max-width: 999px) {
  .schedule .schedule_title .schedule_title_en {
    font-size: 14px;
  }
}

@media screen and (max-width: 999px) {
  .schedule .schedule_title {
    margin-left: 0;
  }
}

.news_sectioin {
  margin-bottom: 78px;
  padding-right: 100px;
  padding-left: 100px;
}

@media screen and (max-width: 999px) {
  .news_sectioin {
    padding-right: 12px;
    padding-left: 12px;
    margin-bottom: 60px;
  }
}

.news_sectioin_title {
  width: calc(100% + 100px);
  height: 130px;
  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;
  background: url(/common/img/index/news_title-bg.png) no-repeat;
  background-size: 450px 130px;
  background-position: left;
  margin-bottom: 34px;
  margin-left: -100px;
}

@media screen and (max-width: 999px) {
  .news_sectioin_title {
    width: 70%;
    background-size: contain;
    margin-left: -24px;
    margin-bottom: 0;
  }
}

.news_sectioin_title h2 {
  margin-top: 61px;
  margin-left: 100px;
}

@media screen and (max-width: 999px) {
  .news_sectioin_title h2 {
    margin-left: 24px;
  }
}

.news_sectioin_title .topics_more {
  position: relative;
  display: inline-block;
  margin-top: 80px;
  padding-right: 50px;
  font-size: 20px;
  color: #a1c32e;
  text-decoration: none;
  font-family: 'Ubuntu', sans-serif;
}

.news_sectioin_title .topics_more::before, .news_sectioin_title .topics_more::after {
  content: "";
  display: block;
  -webkit-transform: skewX(45deg);
          transform: skewX(45deg);
  position: absolute;
  right: 4px;
  bottom: 30px;
}

@media screen and (max-width: 999px) {
  .news_sectioin_title .topics_more::before, .news_sectioin_title .topics_more::after {
    bottom: 35px;
  }
}

.news_sectioin_title .topics_more::before {
  width: 36px;
  height: 1px;
  background: #a1c32e;
}

@media screen and (max-width: 999px) {
  .news_sectioin_title .topics_more::before {
    width: 24px;
  }
}

.news_sectioin_title .topics_more::after {
  width: 2px;
  height: 6px;
  background: #a1c32e;
}

@media screen and (max-width: 999px) {
  .news_sectioin_title .topics_more {
    margin-right: calc(-40% + -24px);
    font-size: 15px;
    padding-right: 35px;
  }
}

.news_sectioin .newsline_content li:first-child a {
  border-top: 1px solid #dcdcdc;
}

.COVID-19_info {
  border: 1px solid #fa4a6b;
  padding: 40px 100px;
  margin-bottom: 90px;
}

@media screen and (max-width: 999px) {
  .COVID-19_info {
    padding: 35px 25px 50px;
    margin-bottom: 85px;
  }
}

.COVID-19_info .covid_icon {
  width: 104px;
}

.COVID-19_info h2 {
  text-align: center;
  color: #fa4a6b;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 50px;
  margin-top: 10px;
}

.COVID-19_info .txt {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a2a;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .COVID-19_info .txt {
    text-align: left;
    font-size: 14px;
  }
}

.COVID-19_info ul {
  margin-bottom: 40px;
}

.COVID-19_info li {
  padding-left: 10px;
  margin-bottom: 8px;
  position: relative;
  top: 0;
  left: 0;
  line-height: 2;
  font-size: 16px;
  color: #2a2a2a;
  font-weight: 500;
}

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

.COVID-19_info li:last-child {
  margin-bottom: 0;
}

.COVID-19_info li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #fa4a6b;
  border-radius: 1.5px;
  top: 1.8ex;
}

.COVID-19_info .covid_txt_bottom {
  text-align: right;
  font-size: 16px;
  font-weight: 500;
  color: #2a2a2a;
  border-top: 1px solid #e7e7e7;
  padding-top: 28px;
}

@media screen and (max-width: 999px) {
  .COVID-19_info .covid_txt_bottom {
    text-align: left;
    font-size: 14px;
  }
}

.clinic_photo {
  width: 100%;
  margin-bottom: 77px;
}

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

.clinic_info {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 90px;
}

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

.clinic_info_wrapper {
  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) {
  .clinic_info_wrapper {
    display: block;
  }
}

.clinic_info .clinic_info_text {
  font-size: 16px;
  font-weight: 600;
  margin-right: 20px;
}

@media screen and (max-width: 999px) {
  .clinic_info .clinic_info_text {
    font-size: 14px;
    font-weight: 500;
    padding-left: 12px;
    padding-right: 12px;
  }
}

.clinic_info .guide {
  margin-bottom: 50px;
}

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

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

.clinic_info .clinic_info_title {
  font-size: 24px;
  color: #2a2a2a;
  font-weight: 400;
  position: relative;
  margin-bottom: 30px;
}

@media screen and (max-width: 999px) {
  .clinic_info .clinic_info_title {
    font-size: 16px;
  }
}

.clinic_info .clinic_info_title::after {
  content: "";
  display: block;
  width: 45px;
  height: 1px;
  background-color: #a1c32e;
  position: absolute;
  left: 0;
  bottom: -7px;
}

.clinic_info dt {
  color: #919191;
  font-size: 16px;
  font-weight: 600;
}

@media screen and (min-width: 1000px), print {
  .clinic_info dt {
    float: left;
    padding-bottom: 15px;
  }
}

@media screen and (max-width: 999px) {
  .clinic_info dt {
    font-size: 14px;
    font-weight: 500;
  }
}

.clinic_info dd {
  color: #464646;
  font-weight: 500;
  padding-left: 10px;
  padding-bottom: 15px;
}

@media screen and (min-width: 1000px), print {
  .clinic_info dd {
    margin-left: 100px;
  }
}

@media screen and (max-width: 999px) {
  .clinic_info dd {
    font-size: 14px;
    font-weight: 500;
  }
}

.clinic_info .clinic_info_map {
  width: 540px;
}

@media screen and (max-width: 999px) {
  .clinic_info .clinic_info_map {
    width: 100%;
    height: 600px;
  }
}

.clinic_info .attention {
  color: #838383;
}

.clinic_info .dot_black > li {
  position: relative;
  padding-left: 1em;
}

.clinic_info .dot_black > li::before {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  width: 3px;
  height: 3px;
  background-color: #464646;
  border-radius: 1.5px;
  top: 1.8ex;
}
/*# sourceMappingURL=index.css.map */