@charset "UTF-8";
.bl_tabArea {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.bl_tabArea_item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 13px 10px 10px;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  font-size: 1.6rem;
  color: #523F32;
  background: #E6E1DF;
  font-weight: 700;
  cursor: pointer;
  border-radius: 15px 15px 0 0;
  position: relative;
}
@media only screen and (min-width: 481px) {
  .bl_tabArea_item {
    font-size: 2rem;
  }
  .bl_tabArea_item:hover, .bl_tabArea_item:focus {
    opacity: 0.8;
  }
}
.bl_tabArea_item.is_tabActive {
  color: #FFF;
  background: #D77F7E;
  pointer-events: auto;
}
.bl_tabArea_item.is_tabActive:after {
  position: absolute;
  content: "";
  left: 0;
  right: 0;
  top: 100%;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 13px 9px 0 9px;
  border-color: #D77F7E transparent transparent transparent;
}

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

		function.sass

		scssファイル内で使う関数を定義

------------------------------------------------------------------------- */
/* フォントサイズ指定
usage:
font-size:fs(18);
------------------------------------------------- */
/* -------------------------------------------------------------------------

		reset.sass

		要素のデフォルトスタイル、フォントサイズのリセット

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

		style reset

------------------------------------------------------------------------- */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, main {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

small {
  font-size: smaller;
}

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

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

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

		font styles

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

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

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

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

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

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

		vars.sass

		scssファイル内で使う変数を定義

------------------------------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* $color_sub : ; */
/* text color
------------------------------------------------- */
/* font family
------------------------------------------------- */
/* -------------------------------------------------------------------------

		util.sass

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

------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden;
}

@media only screen and (max-width: 736px) {
  .image_text_view_l,
.image_text_view_r {
    overflow: visible;
  }
}
.image_text_view_l .img {
  float: left;
  margin-right: 15px;
}

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

@media only screen and (max-width: 736px) {
  .image_text_view_r .img {
    width: 100%;
    float: none;
    margin: 0 auto 20px;
  }
}
.image_text_view_l .img > div,
.image_text_view_r .img > div {
  margin-bottom: 15px;
}

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

.image_text_view_l .text,
.image_text_view_r .text {
  overflow: hidden;
  line-height: 1.8;
}

.image_text_view_l .text p,
.image_text_view_r .text p {
  margin-bottom: 1em;
  line-height: 1.8;
}

.image_text_view_l .text p:last-child,
.image_text_view_r .text p:last-child {
  margin-bottom: 0;
}

@media only screen and (max-width: 736px) {
  .image_text_view_l .text,
.image_text_view_r .text {
    overflow: visible;
  }
}
@media only screen and (max-width: 736px) {
  .image_text_view_l .text {
    margin-left: 0 !important;
  }
}
@media only screen and (max-width: 736px) {
  .image_text_view_r .text {
    margin-right: 0 !important;
  }
}
/* br
------------------------------------------------- */
.sp_none {
  display: block;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 742px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 736px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: block;
  }
}
/* float clear
------------------------------------------------- */
/*for modern browser*/
.clear_fix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  font-size: 0;
  line-height: 0;
  visibility: hidden;
}

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

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

.clear {
  clear: both;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* fluid image
------------------------------------------------- */
.fluid_img {
  max-width: 100%;
  height: auto;
  width: auto\9 ;
  /* IE8 */
}

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

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}

.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}

.just_layout .just_item {
  display: inline-block;
  text-align: center;
  vertical-align: top;
  line-height: normal;
}

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

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

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

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

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

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

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

.list_asterisk > li:before {
  content: "※ ";
}

.list_asterisk > li > * {
  text-indent: 0;
}

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

.list_dot > li:before {
  content: "・";
}

.list_dot > li > * {
  text-indent: 0;
}

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

.list_circle > li:before {
  content: "● ";
}

.list_circle > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}

.list_decimal_01 > li:before {
  content: counter(decimal_01) ". ";
}

.list_decimal_01 > li > * {
  text-indent: 0;
}

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

.list_decimal_02 > li:before {
  content: "(" counter(decimal_02) ") ";
}

.list_decimal_02 > li > * {
  text-indent: 0;
}

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_decimal_03 > li:before {
  content: "[" counter(decimal_03) "] ";
}

.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_decimal_04 > li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}

.list_decimal_04 > li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}

.list_upper_alpha_01 > li:before {
  content: counter(upper_alpha_01, upper-alpha) ") ";
}

.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

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

.notes:before {
  content: "※ ";
}

.notes > * {
  text-indent: 0;
}

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

.notes_num:before {
  content: "※" counter(decimal_notes) " ";
}

.notes_num > * {
  text-indent: 0;
}

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

		module.sass

		見出し、ボタン、表など繰り返し使うパーツ（モジュール）のスタイルを定義

------------------------------------------------------------------------- */
html:target::before {
  display: block;
  position: fixed;
  width: 1px;
  height: 100%;
  background: cyan;
  left: 50%;
  top: 0;
  z-index: 10000;
  content: "";
  margin-left: -1px;
  -webkit-box-shadow: -540px 0 0 0 cyan, 540px 0 0 0 cyan;
          box-shadow: -540px 0 0 0 cyan, 540px 0 0 0 cyan;
}

html:target::after {
  display: block;
  position: fixed;
  height: 1px;
  width: 100%;
  background: cyan;
  top: 50%;
  left: 0;
  z-index: 10000;
  content: "";
  margin-top: -1px;
}

*::-moz-selection {
  background: #D78282;
}

*::selection {
  background: #D78282;
}

*::-moz-selection {
  background: #D78282;
}

/* text link
------------------------------------------------- */
a {
  text-decoration: none;
  color: #523F32;
}

a:hover {
  text-decoration: underline;
}

a.tel {
  cursor: default;
}

a.tel:hover {
  text-decoration: none;
}

a img:hover {
  opacity: 0.8;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  line-height: 1;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

b {
  font-weight: normal;
}

/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.animation.fast, .icon.arrow_r_01::before, .icon.arrow_r_02::after, .page_nav_area li a, body.home .mainvisual > .inner {
  -webkit-transition: all 0.15s ease-out;
  transition: all 0.15s ease-out;
}

.animation.slow {
  -webkit-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

.animation.cubic {
  -webkit-transition: all 0.5s;
  -webkit-transition-timing-function: cubic-bezier(1, 0, 0, 1);
  transition: all 0.5s;
  transition-timing-function: cubic-bezier(1, 0, 0, 1);
}

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

.right_column {
  float: right;
}

/* icon
------------------------------------------------- */
.icon::after, .icon::before {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  display: inline-block;
  vertical-align: middle;
}

.icon::before {
  margin-right: 0.5em;
}

.icon.tel::before {
  content: "\f095";
  font-size: 2.4rem;
}

.icon.arrow_r_01 {
  position: relative;
}

.icon.arrow_r_01::before {
  content: "\f0da";
  position: absolute;
  right: 5px;
  top: 50%;
  line-height: 1;
  margin-top: -0.5em;
}

.icon.arrow_r_02 {
  position: relative;
}

.icon.arrow_r_02::after {
  content: "\f061";
  position: absolute;
  right: 15px;
  top: 50%;
  line-height: 1;
  margin-top: -0.5em;
}

.icon.home::before {
  content: "\f015";
}

.icon.history::before {
  content: "\f1da";
}

.icon.license::before {
  content: "\f2c2";
}

.icon.car::before {
  content: "\f1b9";
}

.icon.bus::before {
  content: "\f207";
}

/* btn
------------------------------------------------- */
.btn {
  text-align: center;
  display: block;
  margin-right: auto;
  margin-left: auto;
  line-height: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  vertical-align: middle;
  background-color: #523F32;
  color: #fff;
  font-weight: bold;
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 5px;
}

.btn.border {
  border: #523F32 1px solid;
  background-color: transparent;
  color: #523F32;
  font-weight: normal;
}

.btn:hover::before, .btn:hover::after {
  margin-right: -5px;
}

/* page_nav_area
------------------------------------------------- */
.page_nav_area {
  background-color: #E9DFD6;
  padding: 40px 0;
}

@media only screen and (max-width: 480px) {
  .page_nav_area {
    background-color: transparent;
    padding: 0;
  }
}
@media only screen and (max-width: 480px) {
  .page_nav_area .inner {
    width: 94% !important;
  }
}
.page_nav_area li {
  border: #D77F7F 2px solid;
  border-radius: 10px;
  overflow: hidden;
  width: 540px;
  /* 診療案内 */
  /* 院長紹介 */
  /* 施設紹介・アクセス */
}

@media only screen and (max-width: 480px) {
  .page_nav_area li {
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
  }
}
.page_nav_area li.page_nav_01 a {
  background-image: url(../img/common/bg_nav_01.jpg);
}

.page_nav_area li.page_nav_02 a {
  background-image: url(../img/common/bg_nav_02.jpg);
}

.page_nav_area li.page_nav_03 a {
  background-image: url(../img/common/bg_nav_03.jpg);
}

.page_nav_area li a {
  display: block;
  padding-top: 140px;
  background-position: center 0;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 480px) {
  .page_nav_area li a {
    padding-top: 0;
    background-image: none;
  }
}
.page_nav_area li a:hover {
  text-decoration: none;
}

.page_nav_area li a:hover span::after {
  right: 0;
}

.page_nav_area li span {
  background-color: #D77F7F;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  display: block;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  .page_nav_area li span {
    padding: 10px 3%;
    text-align: left;
  }
}
/* schedule
------------------------------------------------- */
.schedule {
  width: 100%;
  margin-bottom: 8px;
}

@media only screen and (max-width: 480px) {
  .schedule {
    font-size: 1rem;
    margin-bottom: 10px;
  }
}
.schedule td, .schedule th {
  text-align: center;
  padding: 11px 13px;
  vertical-align: middle;
  border: #CCC2BD 1px solid;
  background-color: #fff;
}

@media only screen and (max-width: 480px) {
  .schedule td, .schedule th {
    padding: 5px;
  }
}
.schedule td.active, .schedule th.active {
  color: #D78282;
}

.schedule thead th {
  background-color: #E6E1DF;
  font-weight: 500;
}

.schedule thead th b {
  font-weight: bold;
}

.list_circle li::before {
  font-size: 0.5rem;
  color: #8CAB53;
}

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

		layout.sass

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

------------------------------------------------------------------------- */
/* html
------------------------------------------------- */
html {
  overflow-y: scroll;
  line-height: 1;
  font-size: 62.5%;
}

/* body
------------------------------------------------- */
body {
  font-family: "Josefin Slab", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #fff;
  color: #523F32;
  word-break: normal;
  overflow-wrap: break-word;
  word-wrap: break-word;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #D78282;
  overflow-x: hidden;
  font-weight: normal;
  padding: 5px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  right: 0;
  overflow-x: hidden;
}

@media only screen and (max-width: 480px) {
  body {
    padding: 0;
  }
}
.layer {
  position: fixed;
  top: 0;
  /*  z-index: 1;*/
  display: none;
  width: 100%;
  height: 100%;
  background-color: transparent;
}

.sidemenu {
  padding: 20px;
  position: fixed;
  top: 0;
  right: -240px;
  width: 200px;
  height: 100%;
  background-color: #E9DFD6;
}

.sidemenu .logo {
  margin-bottom: 10px;
}

.sidemenu ul {
  margin-bottom: 15px;
}

.sidemenu li {
  margin-bottom: 5px;
}

.sidemenu li a {
  background-color: #fff;
  display: block;
  padding: 10px 5%;
  font-weight: bold;
}

.sidemenu .contact a, .sidemenu .contact p {
  font-size: 1.2rem;
  color: #544032;
}

.sidemenu .contact a {
  font-size: 2.6rem;
  display: block;
  margin-bottom: 5px;
}

/* wrapper
------------------------------------------------- */
#wrapper {
  background-color: #F5F1ED;
  position: relative;
  overflow: hidden;
}

#wrapper::before {
  content: " ";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #D78282;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
}

@media only screen and (max-width: 480px) {
  #wrapper::before {
    display: none;
  }
}
#wrapper::after {
  content: " ";
  display: block;
  width: 100%;
  height: 5px;
  background-color: #D78282;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
}

@media only screen and (max-width: 480px) {
  #wrapper::after {
    display: none;
  }
}
#wrapper .corner {
  position: fixed;
  display: block;
  width: 5px;
  height: 5px;
  z-index: 10;
}

@media only screen and (max-width: 480px) {
  #wrapper .corner {
    display: none;
  }
}
#wrapper .corner.tl {
  top: 5px;
  left: 5px;
}

#wrapper .corner.tr {
  top: 5px;
  right: 5px;
}

#wrapper .corner.bl {
  bottom: 5px;
  left: 5px;
}

#wrapper .corner.br {
  bottom: 5px;
  right: 5px;
}

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

/* header
------------------------------------------------- */
.site_header {
  position: relative;
  /* menu */
}

.site_header .container {
  width: 100%;
  padding: 20px 0;
  margin-bottom: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.home .site_header .container {
  background: #fff;
}

@media only screen and (max-width: 480px) {
  .site_header .container {
    padding: 7px 3%;
    margin-bottom: 0;
  }
}
.site_header .container .inner {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .site_header .container .inner {
    width: 100%;
    position: relative;
  }
}
.site_header .site_id {
  float: left;
}

@media only screen and (max-width: 480px) {
  .site_header .site_id {
    width: 55%;
  }
}
.site_header .header_nav {
  float: right;
}

@media only screen and (max-width: 480px) {
  .site_header .header_nav {
    float: none;
    display: none;
  }
}
.site_header .header_nav ul {
  display: table;
  width: 100%;
}

@media only screen and (max-width: 480px) {
  .site_header .header_nav ul {
    display: block;
  }
}
.site_header .header_nav ul li {
  display: table-cell;
  vertical-align: middle;
  letter-spacing: 1px;
}

@media only screen and (max-width: 480px) {
  .site_header .header_nav ul li {
    display: block;
  }
}
.site_header .header_nav .top {
  border-bottom: #544032 1px solid;
}

.site_header .header_nav .top a {
  font-size: 3.6rem;
  display: block;
  letter-spacing: 2px;
}

.site_header .header_nav .top li {
  font-size: 1.4rem;
}

.site_header .header_nav .top li:first-child {
  padding-right: 45px;
}

.site_header .header_nav .bottom a {
  font-size: 1.4rem;
  text-align: center;
  display: block;
  padding: 10px 0;
  line-height: 1;
}

.site_header .header_nav .bottom li {
  border-right: #544032 1px solid;
}

.site_header .header_nav .bottom li:last-child {
  border-right: none;
}

@media only screen and (max-width: 480px) {
  .site_header .menu {
    position: absolute;
    right: 3%;
    top: 50%;
    margin-top: -13px;
  }
}
.site_header .menu .btn_menu {
  position: relative;
  width: 28px;
  height: 26px;
  margin: 0 auto;
  display: block;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site_header .menu .btn_menu span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #544032;
  display: inline-block;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.site_header .menu .btn_menu span:nth-of-type(1) {
  top: 0;
}

.site_header .menu .btn_menu span:nth-of-type(2) {
  top: 12px;
}

.site_header .menu .btn_menu span:nth-of-type(3) {
  bottom: 0;
}

.site_header .menu .btn_menu.active span:nth-of-type(1) {
  -webkit-transform: translateY(11px) rotate(-45deg);
  transform: translateY(11px) rotate(-45deg);
}

.site_header .menu .btn_menu.active span:nth-of-type(2) {
  opacity: 0;
}

.site_header .menu .btn_menu.active span:nth-of-type(3) {
  -webkit-transform: translateY(-11px) rotate(45deg);
  transform: translateY(-11px) rotate(45deg);
}

/* mainvisual
------------------------------------------------- */
.mainvisual {
  position: relative;
  height: 150px;
  line-height: 150px;
  background-color: #fff;
  overflow: hidden;
}

@media only screen and (max-width: 480px) {
  .mainvisual {
    height: auto;
    line-height: 1.5;
  }
}
.mainvisual > .inner {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .mainvisual > .inner {
    width: 100%;
  }
}
.mainvisual > .inner h1 {
  line-height: 150px;
}

@media only screen and (max-width: 480px) {
  .mainvisual > .inner h1 {
    line-height: 1.5;
    padding: 10px 0;
  }
}
.mainvisual h1 {
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  .mainvisual h1 {
    font-size: 1.1rem;
    text-align: center;
  }
}
.mainvisual h1 b {
  color: #D78080;
  font-size: 3rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  .mainvisual h1 b {
    font-size: 1.7rem;
  }
}
.mainvisual .bg {
  background-position: left center;
  background-repeat: no-repeat;
  width: 50%;
  height: 150px;
  position: absolute;
  left: 50%;
  top: 0;
}

@media only screen and (max-width: 480px) {
  .mainvisual .bg {
    width: 100%;
    height: 75px;
    background-position: center 0;
    background-size: auto 100%;
    position: static;
  }
}
/* page_content
------------------------------------------------- */
.page_content {
  /* h2 */
  /* h3 */
}

.page_content > div {
  width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 480px) {
  .page_content > div {
    width: 100%;
  }
}
.page_content > div.wide {
  width: 100%;
}

.page_content > div.wide > .inner {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  .page_content > div.wide > .inner {
    width: 100%;
  }
}
.page_content h2 {
  color: #523F32;
  font-size: 3rem;
  text-align: center;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  .page_content h2 {
    font-size: 2.1rem;
    margin-bottom: 20px;
  }
}
.page_content h2 span {
  position: relative;
  display: inline-block;
  padding-bottom: 15px;
}

.page_content h2 span::after {
  content: " ";
  display: block;
  width: 100px;
  border-bottom: #D78282 4px solid;
  text-align: center;
  position: absolute;
  left: 50%;
  margin-left: -50px;
  bottom: 0;
}

@media only screen and (max-width: 480px) {
  .page_content h2 span::after {
    border-width: 3px;
    width: 70px;
    margin-left: -35px;
  }
}
.page_content h3 {
  color: #D77F7F;
  font-size: 2.4rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-bottom: 15px;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  .page_content h3 {
    font-size: 2rem;
    line-height: 1.4;
  }
}
/* topicpath
------------------------------------------------- */
.topicpath {
  padding: 10px 0;
  margin-bottom: 40px;
}

@media only screen and (max-width: 480px) {
  .topicpath {
    padding: 10px 3%;
    margin-bottom: 20px;
  }
}
.topicpath li {
  font-size: 1.4rem;
  display: inline-block;
}

@media only screen and (max-width: 480px) {
  .topicpath li {
    font-size: 1rem;
  }
}
.topicpath li:after {
  content: ">";
  padding-left: 5px;
}

.topicpath li:last-child:after {
  content: "";
  padding-left: 0;
}

.topicpath a {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.4rem;
  text-decoration: underline;
}

@media only screen and (max-width: 480px) {
  .topicpath a {
    font-size: 1rem;
  }
}
.topicpath a:hover {
  text-decoration: none;
}

/* footer
------------------------------------------------- */
.site_footer {
  padding: 60px 0 40px;
}

@media only screen and (max-width: 480px) {
  .site_footer {
    padding: 10px 0 20px;
  }
}
.site_footer .inner {
  width: 1120px;
  margin: 0 auto;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  .site_footer .inner {
    width: 94%;
    margin: 0 auto;
  }
}
.site_footer .inner .left_column {
  width: 495px;
}

@media only screen and (max-width: 480px) {
  .site_footer .inner .left_column {
    width: 100%;
  }
}
.site_footer .inner .left_column dt {
  margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
  .site_footer .inner .left_column dt {
    width: 66%;
    margin: 0 auto 10px;
  }
}
.site_footer .inner .right_column {
  width: 570px;
}

@media only screen and (max-width: 480px) {
  .site_footer .inner .right_column {
    width: 100%;
  }
}
.site_footer .label {
  border: #544032 1px dashed;
  padding: 6px 0;
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 13px;
}

@media only screen and (max-width: 480px) {
  .site_footer .label {
    width: 82%;
    margin: 0 auto 10px;
  }
}
.site_footer .address {
  margin-bottom: 7px;
}

@media only screen and (max-width: 480px) {
  .site_footer .address {
    text-align: center;
    line-height: 1.6;
  }
}
.site_footer .tel_fax {
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  .site_footer .tel_fax {
    margin-bottom: 10px;
  }
}
.site_footer .tel_fax ul {
  display: table;
  width: 100%;
}

.site_footer .tel_fax ul li {
  display: table-cell;
  vertical-align: middle;
  font-size: 2rem;
  color: #D99292;
}

@media only screen and (max-width: 480px) {
  .site_footer .tel_fax ul li {
    font-size: 1.2rem;
  }
}
.site_footer .tel_fax ul li span {
  font-size: 1.4rem;
}

@media only screen and (max-width: 480px) {
  .site_footer .tel_fax ul li span {
    font-size: 1.2rem;
  }
}
.site_footer .tel_fax .tel {
  color: #D99292;
  font-weight: bold;
  font-size: 3.8rem;
}

@media only screen and (max-width: 480px) {
  .site_footer .tel_fax .tel {
    font-size: 2.1rem;
  }
}
/* copyright
------------------------------------------------- */
.copyright {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  background-color: #544032;
  color: #fff;
  text-align: center;
  padding: 10px 0;
  font-size: 1.2rem;
}

@media only screen and (max-width: 480px) {
  .copyright {
    font-size: 1rem;
    letter-spacing: 0;
  }
}
/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 20px;
  bottom: 40px;
  z-index: 1000;
}

@media only screen and (max-width: 480px) {
  .page_top {
    right: 10px;
    bottom: 20px;
  }
}
.page_top a {
  display: block;
  width: 81px;
  height: 77px;
}

@media only screen and (max-width: 480px) {
  .page_top a {
    display: block;
    width: 50px;
    height: auto;
  }
}
/* -------------------------------------------------------------------------

		contents.sass

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

------------------------------------------------------------------------- */
/* top page
------------------------------------------------- */
body.home {
  /* news_area */
  /* intro_area */
  /* medical_area */
  /* introduction_area */
  /* access_area */
}

@media only screen and (max-width: 480px) {
  body.home .site_header {
    background-color: #F3FAFF;
  }
}
body.home .site_header .container {
  position: absolute;
  margin-bottom: 0;
  z-index: 2;
}

@media only screen and (max-width: 480px) {
  body.home .site_header .container {
    position: static;
  }
}
body.home .site_header .site_id {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0;
}

@media only screen and (max-width: 480px) {
  body.home .site_header .site_id {
    background-color: transparent;
    padding: 0;
  }
}
body.home .mainvisual {
  height: auto;
}

body.home .mainvisual > .inner {
  width: 100%;
  height: 580px;
  background-image: url(../img/index/mainvisual_01.jpg);
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: auto 540px;
}

@media only screen and (max-width: 1280px) {
  body.home .mainvisual > .inner {
    height: 650px;
  }
}
@media only screen and (max-width: 1024px) {
  body.home .mainvisual > .inner {
    height: 550px;
  }
}
@media only screen and (max-width: 768px) {
  body.home .mainvisual > .inner {
    height: 450px;
  }
}
@media only screen and (max-width: 480px) {
  body.home .mainvisual > .inner {
    height: auto;
    overflow-x: hidden;
    position: relative;
    background-image: url(../img/index/mainvisual_01.jpg);
    background-position: left 50% bottom 250px;
    background-repeat: no-repeat;
    background-size: 1892px;
  }
}
body.home .top_content .inner {
  width: 1120px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  body.home .top_content .inner {
    width: 94%;
    margin: 0 auto;
  }
}
body.home .news_area {
  background-color: #fff;
}

body.home .news_area dl {
  display: table;
  width: 100%;
  border-right: #E0D2C7 2px dotted;
  border-left: #E0D2C7 2px dotted;
}

@media only screen and (max-width: 480px) {
  body.home .news_area dl {
    padding-bottom: 10px;
    display: block;
    border: none;
  }
}
body.home .news_area dt, body.home .news_area dd {
  display: table-cell;
  vertical-align: middle;
  padding: 30px 40px;
  font-weight: 700;
  font-size: 1.68rem;
}

@media only screen and (max-width: 480px) {
  body.home .news_area dt, body.home .news_area dd {
    display: block;
    font-size: 1.6rem;
  }
}
body.home .news_area dt {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
  border-right: #E0D2C7 2px dotted;
  padding: 35px 20px;
  width: 235px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
  body.home .news_area dt {
    width: 100%;
    padding: 10px;
    border-right: none;
    text-align: left;
    font-size: 2rem;
    border-bottom: #E0D2C7 2px dotted;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  body.home .news_area dd {
    height: 300px;
    overflow-y: scroll;
    padding: 0 10px 10px 10px;
  }
}
body.home .news_area dd li {
  padding: 15px 0;
}

@media only screen and (max-width: 480px) {
  body.home .news_area dd li {
    padding: 0;
    margin-bottom: 10px;
  }
}
body.home .news_area dd time {
  color: #D78282;
  margin-right: 20px;
  letter-spacing: 2px;
  display: inline-block;
  float: left;
  font-weight: 700;
}

@media only screen and (max-width: 480px) {
  body.home .news_area dd time {
    float: none;
    font-size: 1.2em;
  }
}
body.home .news_area dd span {
  letter-spacing: 3px;
  overflow: hidden;
  display: block;
}
@media only screen and (max-width: 480px) {
  body.home .news_area dd span {
    letter-spacing: 1px;
  }
}

body.home .news_area .highlight_txt {
  color: #f00;
}

body.home .intro_area {
  padding: 100px 0 0px;
  /* h2 */
}

@media only screen and (max-width: 480px) {
  body.home .intro_area {
    padding: 40px 0 0px;
  }
}
body.home .intro_area h2 {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 2.4rem;
  margin-bottom: 25px;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    line-height: 1.7;
  }
}
body.home .intro_area h2 b {
  font-size: 4rem;
  color: #fff;
  background-color: #8DAB55;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  padding: 15px;
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area h2 b {
    font-size: 2.4rem;
    padding: 12px;
    margin-right: 10px;
    float: left;
  }
}
@media only screen and (max-width: 480px) {
  body.home .intro_area h2 span {
    overflow: hidden;
  }
}
body.home .intro_area .img {
  position: relative;
  width: 520px;
  height: 395px;
  margin-left: 45px;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area .img {
    width: 78%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    background-image: url(../img/common/shadow_01.png);
    padding-bottom: 10px;
    border-radius: 7px;
  }
}
body.home .intro_area .img figure {
  position: relative;
  z-index: 1;
}

body.home .intro_area .img img {
  vertical-align: top;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area .img img {
    margin-left: -10px;
    margin-top: -10px;
  }
}
body.home .intro_area .img .shadow {
  border-radius: 15px;
  width: 500px;
  height: 375px;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area .img .shadow {
    display: none;
  }
}
body.home .intro_area .img .shadow span {
  background-image: url(../img/common/shadow_01.png);
  display: block;
  width: 500px;
  height: 375px;
}

@media only screen and (max-width: 480px) {
  body.home .intro_area .img .shadow span {
    width: 80%;
  }
}
body.home .medical_area {
  background-color: #E9DFD6;
  margin-bottom: 460px;
  /* li */
}

@media only screen and (max-width: 480px) {
  body.home .medical_area {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
body.home .medical_area .inner {
  position: relative;
}

body.home .medical_area .title {
  text-align: center;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area .title {
    width: 71%;
    margin: 0 auto 0;
  }
}
body.home .medical_area .title img {
  margin-top: -18px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area .title img {
    margin-top: -10px;
  }
}
body.home .medical_area h3, .el_borderTitle {
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  font-size: 3rem;
  font-weight: bold;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-bottom: 40px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area h3, .el_borderTitle {
    margin-bottom: 20px;
  }
}
body.home .medical_area h3::after, .el_borderTitle::after {
  content: " ";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100px;
  border-bottom: #D78282 4px solid;
  margin-left: -50px;
}

body.home .medical_area li {
  width: 262px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li {
    width: 48%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  body.home .medical_area li:nth-last-child(2), body.home .medical_area li:last-child {
    margin-bottom: 0;
  }
}
body.home .medical_area li a {
  display: block;
}

body.home .medical_area li figure {
  position: relative;
}

body.home .medical_area li figure > img {
  position: relative;
  z-index: 2;
}

body.home .medical_area li figcaption {
  margin-top: 20px;
  background-color: #fff;
  border-radius: 10px;
  position: absolute;
  top: 238px;
  padding: 60px 20px 30px 20px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li figcaption {
    margin-top: -20px;
    position: static;
    padding: 30px 6% 15px 6%;
  }
}
body.home .medical_area li dt {
  text-align: center;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: bold;
  color: #D77F7F;
  margin-bottom: 20px;
  position: relative;
  color: #8CAB53;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li dt {
    margin-bottom: 10px;
  }
}
body.home .medical_area li dt::after {
  border-bottom: #8DAB55 2px solid;
  position: absolute;
  bottom: 0;
  left: 50%;
  margin-left: -50px;
  content: " ";
  width: 100px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li dt::after {
    display: none;
  }
}
@media only screen and (max-width: 480px) {
  body.home .medical_area li dd:first-of-type {
    display: none;
  }
}
body.home .medical_area li dd:last-of-type {
  margin-top: 20px;
  padding: 10px 0;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li dd:last-of-type {
    margin-top: 0;
  }
}
body.home .medical_area li a:hover {
  text-decoration: none;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area li .btn::after {
    display: none;
  }
}
body.home .medical_area .department_list {
  position: absolute;
  bottom: -350px;
  width: 380px;
  left: 50%;
  margin-left: -190px;
}

@media only screen and (max-width: 480px) {
  body.home .medical_area .department_list {
    position: relative;
    margin-left: auto;
    width: 100%;
    margin-top: 30px;
    padding-right: 3%;
    padding-left: 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    text-align: left;
    top: 0;
    left: 0;
  }
}
body.home .introduction_area > .inner {
  margin-bottom: 180px;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area > .inner {
    background-color: #fff;
    width: 100%;
    padding: 15px 3%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 30px;
  }
}
body.home .introduction_area .text {
  width: 540px;
  background-color: #fff;
  border-radius: 15px;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 50px 0;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area .text {
    width: 100%;
    padding: 15px 0;
    text-align: left;
  }
}
body.home .introduction_area .text h3 {
  font-size: 3rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-bottom: 30px;
  color: #D78282;
  font-weight: bold;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area .text h3 {
    text-align: center;
    margin-bottom: 15px;
    font-size: 2rem;
  }
}
body.home .introduction_area .image_text_view_r,
body.home .introduction_area .image_text_view_l {
  position: relative;
  overflow: visible;
}

body.home .introduction_area .image_text_view_r .img,
body.home .introduction_area .image_text_view_l .img {
  position: absolute;
  top: -50px;
  z-index: 0;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area .image_text_view_r .img,
body.home .introduction_area .image_text_view_l .img {
    position: static;
    margin-bottom: 0;
  }
}
body.home .introduction_area .image_text_view_r .img {
  right: 0;
}

body.home .introduction_area .image_text_view_l .text {
  float: right;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area .image_text_view_l .text {
    float: none;
  }
}
body.home .introduction_area .image_text_view_l .img {
  left: 0;
}

body.home .introduction_area .btn {
  width: 380px;
  margin-top: 70px;
}

@media only screen and (max-width: 480px) {
  body.home .introduction_area .btn {
    width: 100%;
    margin-top: 20px;
    text-align: left;
    padding-left: 6%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
body.home .access_area #map {
  width: 100%;
  height: 400px;
}

@media only screen and (max-width: 480px) {
  body.home .access_area #map {
    height: 200px;
  }
}
/* doctor
------------------------------------------------- */
body.doctor {
  /* greeting_area */
  /* letter_area */
  /* profile_area */
  /* photo_area */
}

body.doctor .mainvisual .bg {
  background-image: url(../img/doctor/mainvisual_01.jpg);
}

body.doctor .greeting_area {
  width: 745px;
  margin: 0 auto 60px;
}

@media only screen and (max-width: 480px) {
  body.doctor .greeting_area {
    width: 94%;
    margin: 0 auto 30px;
  }
}
body.doctor .greeting_area .img {
  margin-right: 40px;
}

@media only screen and (max-width: 480px) {
  body.doctor .greeting_area .img {
    margin-right: auto;
    width: 40%;
  }
}
body.doctor .letter_area {
  background-image: url(../img/common/shadow_01.png);
  border-left: #F5F1ED 20px solid;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 60px;
}

@media only screen and (max-width: 480px) {
  body.doctor .letter_area {
    border-left: none;
    margin-bottom: 30px;
    width: 94%;
  }
}
body.doctor .letter_area > .inner {
  background-color: #fff;
  position: relative;
  top: -20px;
  left: -20px;
  padding: 45px 50px;
}

@media only screen and (max-width: 480px) {
  body.doctor .letter_area > .inner {
    padding: 15px 5%;
    position: static;
  }
}
body.doctor .letter_area h3 {
  border-bottom: #E0D2C7 1px solid;
  padding-bottom: 15px;
  padding-left: 20px;
}

@media only screen and (max-width: 480px) {
  body.doctor .letter_area h3 {
    padding-left: 0;
    padding-bottom: 10px;
    letter-spacing: -0.03em;
    margin-bottom: 10px;
  }
}
body.doctor .letter_area p {
  background-image: url(../img/common/border_note.gif);
  line-height: 41px;
  background-position: 0 0;
  padding-left: 20px;
}

@media only screen and (max-width: 480px) {
  body.doctor .letter_area p {
    padding-left: 5px;
  }
}
body.doctor .letter_area p.signature {
  background-image: none;
  text-align: right;
  padding-top: 25px;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  body.doctor .letter_area .toggle-contents {
    display: none;
  }
}
body.doctor .letter_area a {
  color: #D77F7F;
  text-decoration: underline;
}

body.doctor .profile_area {
  margin-bottom: 45px;
}

@media only screen and (max-width: 480px) {
  body.doctor .profile_area {
    margin-bottom: 20px;
  }
}
body.doctor .profile_area > div {
  background-color: #fff;
  border-radius: 15px;
  width: 540px;
  padding: 35px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
}

@media only screen and (max-width: 480px) {
  body.doctor .profile_area > div {
    width: 94%;
    padding: 15px 5%;
    border-radius: 10px;
    margin: 0 auto 10px;
    display: block;
  }
}
body.doctor .profile_area > div::before {
  content: " ";
  border-top: #D77F7F 4px solid;
  position: absolute;
  top: 0;
  width: 470px;
  left: 50%;
  margin-left: -235px;
}

@media only screen and (max-width: 480px) {
  body.doctor .profile_area > div::before {
    width: 90%;
    margin-left: -45%;
  }
}
body.doctor .profile_area > div dt {
  border-bottom: #523F32 1px dotted;
  font-size: 2.2rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  margin-bottom: 30px;
  padding-bottom: 10px;
  line-height: 1;
}

body.doctor .profile_area > div dt::before {
  color: #D77F7F;
}

body.doctor .profile_area > div dd span {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  color: #8CAB53;
  margin-right: 1em;
}

@media only screen and (max-width: 480px) {
  body.doctor .profile_area > div dd span {
    display: block;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  body.doctor .profile_area > div dd li {
    margin-bottom: 10px;
  }
}
body.doctor .profile_area > div dd li::before {
  color: #8CAB53;
  font-size: 0.5rem;
}

body.doctor .photo_area {
  margin-bottom: 80px;
}

@media only screen and (max-width: 480px) {
  body.doctor .photo_area {
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 480px) {
  body.doctor .photo_area li {
    width: 48%;
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 480px) {
  body.doctor .photo_area li:last-child {
    display: block;
    margin: 0 auto;
  }
}
body.doctor .doctor_area {
  margin-bottom: 80px;
}

@media only screen and (max-width: 480px) {
  body.doctor .doctor_area {
    margin-bottom: 20px;
  }
}
body.doctor .doctor_name {
  margin-bottom: 24px;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  body.doctor .doctor_name {
    margin-bottom: 12px;
  }
}
body.doctor .doctor_name span {
  font-size: initial;
}

/* clinic
------------------------------------------------- */
body.clinic {
  /* page_content */
  /* business_hours_area */
  /* access_area */
  /* concept_area */
  /* gallery_area */
}

body.clinic .mainvisual .bg {
  background-image: url(../img/clinic/mainvisual_01.jpg);
}

body.clinic .page_content > nav {
  width: 450px;
  margin: 0 auto 50px;
}

@media only screen and (max-width: 480px) {
  body.clinic .page_content > nav {
    width: 70%;
    text-align: center;
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 480px) {
  body.clinic .page_content > nav li {
    width: 31%;
    display: inline-block;
  }
}
body.clinic .business_hours_area {
  margin-bottom: 70px;
}

@media only screen and (max-width: 480px) {
  body.clinic .business_hours_area {
    width: 94%;
    margin-bottom: 30px;
  }
}
body.clinic .business_hours_area .left_column {
  width: 570px;
}

@media only screen and (max-width: 480px) {
  body.clinic .business_hours_area .left_column {
    width: 100%;
  }
}
body.clinic .business_hours_area .right_column {
  width: 520px;
}

@media only screen and (max-width: 480px) {
  body.clinic .business_hours_area .right_column {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  body.clinic .business_hours_area .right_column li {
    width: 48%;
  }
}
body.clinic .access_area {
  background-color: #E9DFD6;
  padding: 45px 0 60px;
  margin-bottom: 50px;
}

@media only screen and (max-width: 480px) {
  body.clinic .access_area {
    padding: 25px 3% 20px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
body.clinic .access_area .left_column {
  width: 570px;
}

@media only screen and (max-width: 480px) {
  body.clinic .access_area .left_column {
    width: 100%;
    margin-bottom: 15px;
  }
}
body.clinic .access_area .right_column {
  width: 520px;
}

@media only screen and (max-width: 480px) {
  body.clinic .access_area .right_column {
    width: 100%;
  }
}
body.clinic .access_area .right_column p {
  margin-bottom: 15px;
}

body.clinic .access_area .right_column dt {
  color: #8CAB54;
}

body.clinic .concept_area {
  margin-bottom: 70px;
  background-color: #fff;
  border: #CCC2BD 1px solid;
  border-radius: 15px;
  width: 1000px;
  padding: 35px 50px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
  body.clinic .concept_area {
    width: 94%;
    padding: 15px 5%;
    margin-bottom: 30px;
  }
}
@media only screen and (max-width: 480px) {
  body.clinic .concept_area .left_column {
    width: 30%;
    margin: 0 auto 5px;
    text-align: center;
    float: none;
  }
}
body.clinic .concept_area dt {
  font-weight: bold;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  margin-bottom: 20px;
  font-size: 2.4rem;
  padding-top: 10px;
}

@media only screen and (max-width: 480px) {
  body.clinic .concept_area dt {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 10px;
  }
}
body.clinic .gallery_area,
body.clinic .alliance_area {
  margin-bottom: 35px;
}

@media only screen and (max-width: 480px) {
  body.clinic .gallery_area,
body.clinic .alliance_area {
    width: 94%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 20px;
  }
}
body.clinic .gallery_area figure {
  width: 356px;
  margin-right: 26px;
  float: left;
  margin-bottom: 35px;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  body.clinic .gallery_area figure {
    width: 100%;
    margin-right: 0;
  }
}
body.clinic .gallery_area figure:nth-child(3n),
body.clinic .alliance_area figure:nth-child(3n) {
  margin-right: 0;
}

@media only screen and (max-width: 480px) {
  body.clinic .gallery_area figure:last-child,
body.clinic .alliance_area figure:last-child {
    margin-bottom: 0;
  }
}
body.clinic .gallery_area figure img,
body.clinic .alliance_area figure img {
  display: block;
  margin-bottom: 15px;
}

@media only screen and (max-width: 480px) {
  body.clinic .gallery_area figure img {
    width: 60%;
    margin: 0 auto 15px;
  }
}
body.clinic .alliance_area figure {
  width: 350px;
  margin-right: 35px;
  float: left;
  margin-bottom: 35px;
  text-align: center;
}

@media only screen and (max-width: 480px) {
  body.clinic .alliance_area figure {
    width: 100%;
    margin-right: 0;
  }
}
@media only screen and (max-width: 480px) {
  body.clinic .alliance_area figure img {
    width: 100%;
    max-width: 350px;
    margin: 0 auto 15px;
  }
}
/* guide
------------------------------------------------- */
body.guide {
  /* box */
  /* department_01 */
  /* department_02 */
  /* department_03 */
  /* department_04 */
}

body.guide .mainvisual .bg {
  background-image: url(../img/guide/mainvisual_01.jpg);
}

body.guide .page_content > nav {
  width: 612px;
  margin: 0 auto 30px;
}

@media only screen and (max-width: 480px) {
  body.guide .page_content > nav {
    width: 94%;
  }
}
@media only screen and (max-width: 480px) {
  body.guide .page_content > nav li {
    width: 23%;
  }
}
body.guide .motto_area {
  margin-bottom: 40px;
  /* img */
}

body.guide .motto_area .inner {
  width: 920px;
  margin: 0 auto;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area .inner {
    width: 94%;
  }
}
body.guide .motto_area .img {
  position: relative;
  width: 376px;
  height: 288px;
  margin-right: 50px;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area .img {
    width: 81%;
    height: 200px;
    margin-right: auto;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 320px) {
  body.guide .motto_area .img {
    margin-bottom: 20px;
  }
}
body.guide .motto_area .img figure {
  position: relative;
  z-index: 1;
  width: 356px;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area .img figure {
    width: 100%;
  }
}
body.guide .motto_area .img img {
  vertical-align: top;
  margin-left: 20px;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area .img img {
    margin-left: 10px;
  }
}
body.guide .motto_area .img .shadow {
  border-radius: 10px;
  width: 356px;
  height: 268px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  overflow: hidden;
  margin-bottom: 0;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area .img .shadow {
    width: 100%;
    height: 210px;
    top: 15px;
  }
}
@media only screen and (max-width: 320px) {
  body.guide .motto_area .img .shadow {
    height: 180px;
  }
}
body.guide .motto_area .img .shadow span {
  display: block;
  width: 356px;
  height: 268px;
  background-image: url(../img/common/shadow_01.png);
}

body.guide .motto_area h2 {
  text-align: left;
  font-size: 2.4rem;
  margin-bottom: 20px;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area h2 {
    font-size: 2rem;
    margin-bottom: 10px;
  }
}
body.guide .motto_area h2 b {
  font-size: 4rem;
  color: #fff;
  background-color: #8DAB55;
  display: inline-block;
  vertical-align: middle;
  border-radius: 50%;
  padding: 15px;
  line-height: 1;
  font-weight: bold;
  margin-right: 15px;
}

@media only screen and (max-width: 480px) {
  body.guide .motto_area h2 b {
    font-size: 2.4rem;
    padding: 10px;
    margin-right: 6px;
    float: left;
  }
}
@media only screen and (max-width: 480px) {
  body.guide .motto_area h2 span {
    overflow: hidden;
    display: block;
    line-height: 1.6;
    padding-top: 6px;
    padding-bottom: 0;
  }
}
@media only screen and (max-width: 480px) {
  body.guide .motto_area h2 span::after {
    display: none;
  }
}
body.guide .box {
  /* img */
  /* text */
  /* tips */
  /* variation */
}

body.guide .box .img, .home .box .img {
  margin-left: 50px;
  width: 356px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .img, .home .box .img {
    width: 94%;
    margin-left: auto;
  }
}
body.guide .box .img li, .home .box .img li {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .img li, .home .box .img li {
    margin-bottom: 20px;
  }
}
body.guide .box .text {
  padding-top: 10px;
  /* h3 */
  /* dl */
}

@media only screen and (max-width: 480px) {
  body.guide .box .text {
    padding: 0 3%;
  }
}
body.guide .box .text > h3 {
  color: #533F32;
  position: relative;
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .text > h3 {
    margin-bottom: 20px;
  }
}
body.guide .box .text > h3::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: " ";
  border-bottom: #544032 1px dotted;
  width: 100%;
  z-index: 1;
}

body.guide .box .text > h3 span {
  padding-left: 22px;
  padding-right: 20px;
  background-color: #F5F1ED;
  display: inline-block;
  position: relative;
  z-index: 2;
}

body.guide .box .text > h3 span::before {
  position: absolute;
  left: 0;
  top: -7px;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #D77F7F transparent transparent transparent;
}

body.guide .box .text > dl {
  margin-bottom: 25px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .text > dl {
    margin-bottom: 20px;
  }
}
body.guide .box .text > dl > dt {
  background-color: #544032;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 0 20px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .text > dl > dt {
    font-size: 1.4rem;
    padding: 2px 3%;
  }
}
body.guide .box .text b {
  font-size: 2rem;
}

@media only screen and (max-width: 480px) {
  body.guide .box .text b {
    font-size: 1.6rem;
  }
}
body.guide .box .tips, body.home .box .tips {
  background-color: #ECE4DD;
  padding: 25px 25px 20px;
  margin-bottom: 50px;
  text-align: center;
}

body.guide .box .tips dl, body.home .box .tips dl {
  margin-bottom: 10px;
}

@media only screen and (max-width: 480px) {
  body.guide .box .tips, body.home .box .tips {
    padding: 15px 5%;
  }
}
body.guide .box .tips h4, body.home .box .tips h4 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  font-weight: bold;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

@media only screen and (max-width: 480px) {
  body.guide .box .tips h4, body.home .box .tips h4 {
    font-size: 2rem;
  }
}
body.guide .box .tips dt, body.home .box .tips dt {
  color: #D77F7F;
  font-weight: bold;
}

body.guide .box .variation {
  width: 100%;
}

body.guide .box .variation .just_item {
  width: 32%;
  text-align: left;
}

@media only screen and (max-width: 480px) {
  body.guide .box .variation {
    width: 94%;
    margin: 0 auto;
  }
  body.guide .box .variation .just_item {
    width: 100%;
  }
}
body.guide .box .variation dl {
  width: 262px;
  background-color: #fff;
  border-radius: 15px;
  padding: 30px 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

@media only screen and (max-width: 480px) {
  body.guide .box .variation dl {
    width: 100%;
    padding: 15px 5%;
    border-radius: 10px;
    margin-bottom: 10px;
  }
}
body.guide .box .variation dt {
  color: #8CAB53;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
  position: relative;
  padding-bottom: 17px;
  margin-bottom: 17px;
  line-height: 1.4;
}

@media only screen and (max-width: 480px) {
  body.guide .box .variation dt {
    text-align: left;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
body.guide .box .variation dt::after {
  content: " ";
  width: 100px;
  position: absolute;
  left: 50%;
  bottom: 0;
  margin-left: -50px;
  border-bottom: #8DAB55 2px solid;
}

@media only screen and (max-width: 480px) {
  body.guide .box .variation dt::after {
    left: 0;
    margin-left: 0;
  }
}
body.guide #department_01 {
  margin-bottom: 45px;
}

@media only screen and (max-width: 480px) {
  body.guide #department_01 {
    margin-bottom: 25px;
  }
}
@media only screen and (max-width: 480px) {
  body.guide #department_01 .img li {
    width: 48%;
  }
}
body.guide #department_02 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 480px) {
  body.guide #department_02 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  body.guide #department_02 .img li {
    width: 60%;
    margin: 0 auto 20px;
    display: block;
  }
}
body.guide #department_03 {
  margin-bottom: 60px;
}

@media only screen and (max-width: 480px) {
  body.guide #department_03 {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  body.guide #department_03 .img li {
    width: 60%;
    margin: 0 auto 20px;
    display: block;
  }
}
body.guide #department_03 .text p {
  margin-bottom: 40px;
}

#department_04 {
  margin-bottom: 40px;
}

@media only screen and (max-width: 480px) {
  #department_04 .img li {
    width: 60%;
    margin: 0 auto;
    display: block;
  }
}
#department_04 .text ul {
  margin-bottom: 30px;
}

@media only screen and (max-width: 480px) {
  #department_04 .text ul {
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 480px) {
  #department_04 .text .tips {
    margin-bottom: 0;
  }
}
#department_04 .text .tips dt {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: bold;
  font-size: 2.4rem;
  color: inherit;
}

@media only screen and (max-width: 480px) {
  #department_04 .text .tips dt {
    font-size: 1.6rem;
  }
}
#department_04 .text .tips dd a {
  color: #D78181;
  font-size: 3.2rem;
  line-height: 1;
}

@media only screen and (max-width: 480px) {
  #department_04 .text .tips dd a {
    font-size: 2rem;
  }
}
#department_04 .text .tips dd a::before {
  font-size: 2rem;
}

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

		print.sass

		印刷用のスタイルを定義

------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }
  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}
/* 200929WEB問診バナー */
.home .bnr_monsin_area {
  margin-top: -60px;
}

.bnr_line_area {
  margin-top: 30px;
  width: 94%;
  margin-bottom: 75px;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page_content > div.wide > .bnr_monsin.inner {
  margin-top: 25px;
}

.bnr_monsin {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 35px 3% 30px;
  text-align: center;
  border: solid 5px #D78282;
  border-radius: 15px;
  background: url(../img/common/bnr_monsin.png) no-repeat left 22px top 19px, url(../img/common/bnr_monsin3.png) no-repeat left bottom, url(../img/common/bnr_monsin2.png) no-repeat right top/contain, #fff;
}

.bnr_monsin_ttl {
  color: #D78282;
  font-weight: 700;
  margin-bottom: 20px;
}

.bnr_monsin_ttl small {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  display: block;
  font-size: 2.9rem;
  margin-bottom: 0.5em;
}

.bnr_monsin_ttl span {
  font-family: "Josefin Slab", "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: inline-block;
  font-size: 3.8rem;
  letter-spacing: 0.05em;
  padding: 0 10px 0.03em;
  background: url(../img/common/shadow_01.png) repeat-x bottom left/0.4em;
}

.bnr_monsin_txt {
  line-height: 1.625;
  margin-bottom: 20px;
}

.bnr_monsin_btn {
  padding-top: 22px;
  padding-bottom: 19px;
  width: 90%;
  max-width: 380px;
  background: #8DAB55;
}

.el_ul_pink {
  border-bottom: 2px solid #D78282;
  padding-bottom: 0.05em;
  font-style: normal;
  font-weight: 700;
}

.el_underline {
  text-decoration: underline;
}

@media only screen and (max-width: 480px) {
  .home .bnr_monsin_area {
    margin-top: 0;
  }
  .page_content > div.wide > .bnr_monsin.inner {
    margin-top: 0;
  }
  .bnr_monsin {
    text-align: start;
    background: url(../img/common/bnr_monsin.png) no-repeat right 8% top 3%/23vw, url(../img/common/bnr_monsin2_sp.png) no-repeat right top/contain, #fff;
  }
  .page_content .bnr_monsin_ttl {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .bnr_monsin_ttl {
    margin-bottom: 20px;
    line-height: 1.5;
  }
  .bnr_monsin_ttl small {
    font-size: 5vw;
    margin-bottom: 0.2em;
  }
  .bnr_monsin_ttl span {
    white-space: nowrap;
    padding: 0;
    font-size: 5.1vw;
  }
  .bnr_monsin_txt {
    width: 80%;
  }
}
.site_header .header_nav ul li.w22 {
  width: 22%;
}
.site_header .header_nav ul li.w34 {
  width: 34%;
}
@media only screen and (max-width: 480px) {
  .site_header .header_nav ul li {
    width: 100% !important;
  }
}

body {
  position: relative;
}

.mainvisual * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

#ubie-dedicated-inquiry-banner {
  display: inline-block;
  position: absolute;
  right: 92px;
  bottom: 40px;
}
@media only screen and (max-width: 480px) {
  #ubie-dedicated-inquiry-banner {
    bottom: 320px;
    right: 13.5px;
  }
}

.bl_mvLinks {
  padding-top: 222px;
  max-width: 1150px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
  line-height: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.bl_mvLinks > *:not(:first-child) {
  margin-top: 25px;
}
.bl_mvLinks a {
  display: inline-block;
  background: #fff;
  border-radius: 12px;
}
@media only screen and (max-width: 480px) {
  .bl_mvLinks {
    padding-top: 305px;
    padding-bottom: 55px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
  .bl_mvLinks > *:not(:first-child) {
    margin-top: 16px;
  }
}

.un_lineLink {
  position: fixed;
  right: 5px;
  top: calc(50vh - 160px);
  z-index: 5;
}

.new_content {
  line-height: 1.7;
}
.new_content * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.new_content h2 {
  line-height: 1.7;
}
.new_content a[href^="tel:"] {
  pointer-events: none;
}
@media only screen and (max-width: 480px) {
  .new_content a[href^="tel:"] {
    pointer-events: all;
  }
}

.bl_listStaff {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.bl_listStaff_item {
  width: calc((100% - 40px) / 2);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 25px;
}
.bl_listStaff_item_img {
  max-width: 195px;
}
.bl_listStaff_item_text {
  width: calc(100% - 210px);
  padding-top: 1em;
}
@media only screen and (max-width: 1100px) {
  .bl_listStaff_item {
    width: 100%;
  }
}
@media only screen and (max-width: 480px) {
  .bl_listStaff_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .bl_listStaff_item_img {
    max-width: 195px;
    margin: 0 auto;
  }
  .bl_listStaff_item_text {
    width: 100%;
    padding-top: 0;
  }
}

.page_content .el_pinkLarge {
  color: #d78080;
  font-size: 2rem;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .page_content .el_pinkLarge {
    font-size: 1.5rem;
    text-align: left;
  }
}
.page_content .hp_smallTop {
  padding-top: 38px;
}
.page_content .bl_imgText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.page_content .bl_imgText_text {
  position: relative;
  z-index: 1;
  background: #fff;
  padding: 48px;
  border-radius: 15px;
  max-width: 540px;
  margin-right: -180px;
  margin-top: 50px;
}
.page_content .bl_imgText_img {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  width: calc(100% - 360px);
}
@media only screen and (max-width: 480px) {
  .page_content .bl_imgText {
    padding: 15px 3%;
    background: #fff;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  .page_content .bl_imgText_text {
    margin-right: 0;
    margin-top: 0;
    padding: 15px 0;
  }
  .page_content .bl_imgText_img {
    width: auto;
    margin: 0 auto;
  }
}
.page_content .ly_pbMiddle {
  padding-bottom: 60px;
}
.page_content .ly_ptMiddle {
  padding-top: 60px;
}
.page_content .ly_content {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}
.page_content .ly_content_small {
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
}
.page_content .ly_content_wrapper {
  width: 100%;
}
.page_content .ly_sideSpace {
  padding-left: 15px;
  padding-right: 15px;
}
.page_content .hp_bgBase {
  background: #fff;
}
.page_content .hp_bgDeep {
  background: #e9dfd6;
}
.page_content .hp_bgSakura {
  background: #f5f1ed;
}
.page_content .hp_radius {
  border-radius: 15px;
}
.page_content .el_titleTriangle {
  font-size: 2rem;
  color: #533f32;
  position: relative;
  margin-bottom: 30px;
  font-size: 2rem;
}
.page_content .el_titleTriangle::after {
  position: absolute;
  top: 50%;
  left: 0;
  content: " ";
  border-bottom: #544032 1px dotted;
  width: 100%;
  z-index: 1;
}
.page_content .el_titleTriangle span {
  padding-left: 22px;
  padding-right: 20px;
  background-color: #fff;
  display: inline-block;
  position: relative;
  z-index: 2;
}
.page_content .el_titleTriangle span::before {
  position: absolute;
  left: 0;
  top: -7px;
  content: " ";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 20px 0 0;
  border-color: #d77f7f transparent transparent transparent;
}
.page_content .el_titleTriangle_bottom {
  padding: 0 5px 17px 25px;
}
.page_content .el_titleTriangle_bottom > *:not(:first-child) {
  margin-top: 20px;
}
@media only screen and (max-width: 480px) {
  .page_content .el_titleTriangle {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
  .page_content .el_titleTriangle_bottom {
    padding: 0;
  }
}
.page_content .hp_bgDeep .el_titleTriangle span {
  background-color: #e9dfd6;
}
.page_content .bl_2columnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 40px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.page_content .bl_2columnList li {
  width: calc((100% - 40px) / 2);
}
@media only screen and (max-width: 480px) {
  .page_content .bl_2columnList li {
    width: 100%;
  }
}
.page_content .bl_stepList > *:not(:first-child) {
  margin-top: 35px;
}
.page_content .bl_stepList__pink .bl_stepList_item {
  background: #f5f1ed;
}
.page_content .bl_stepList_item {
  background: #fff;
  border-radius: 15px;
  padding: 40px 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.page_content .bl_stepList_left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.page_content .bl_stepList_right {
  max-width: 100%;
  width: 465px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 480px) {
  .page_content .bl_stepList_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 0;
    gap: 15px;
    padding: 15px 3%;
  }
}
.page_content .el_stepTitle {
  font-size: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5px;
}
.page_content .el_stepTitle > span {
  display: inline-block;
  padding: 0.4em 0 0;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media only screen and (max-width: 480px) {
  .page_content .el_stepTitle {
    font-size: 2.2rem;
  }
}
.page_content .hp_inlineBlock {
  display: inline-block;
}
.page_content .hp_alignCenter {
  text-align: center !important;
}
.page_content .pc_alignCenter {
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .page_content .pc_alignCenter {
    text-align: left;
  }
}
.page_content .sp_alignCenter {
  text-align: center;
}
.page_content .bl_listNote {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
}
.page_content .bl_listNote li {
  padding-left: 23px;
  position: relative;
}
.page_content .bl_listNote li::before {
  position: absolute;
  left: 0;
  top: 2px;
  content: "";
  width: 18px;
  height: 18px;
  background: url(../img/health-screening/icon_note.svg) no-repeat center/contain;
}
.page_content .ly_frame30 {
  padding: 30px;
}
@media only screen and (max-width: 480px) {
  .page_content .ly_frame30 {
    padding: 15px;
  }
}
.page_content .bl_dlText > *:not(:first-child) {
  margin-top: 20px;
}
.page_content .bl_dlText dt {
  background-color: #544032;
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 6px 20px 0;
}
.page_content .bl_listScope {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.page_content .bl_listScope li {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 30px 20px 27px;
  background: #fff;
  border-radius: 15px;
}
.page_content .bl_listScope_title {
  line-height: 1.7;
  text-align: center;
  font-size: 1.8rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  color: #8cab53;
  font-weight: 700;
  position: relative;
  padding-bottom: 7px;
  margin-bottom: 16px;
}
.page_content .bl_listScope_title::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 95px;
  height: 2px;
  background: #8cab53;
}
@media only screen and (max-width: 480px) {
  .page_content .bl_listScope {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .page_content .bl_listScope li {
    border-radius: 0;
  }
}

.ly_content {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

@media only screen and (max-width: 480px) {
  .hp_w94sp {
    width: 94%;
  }
}

.hp_mt30 {
  margin-top: 30px;
}

body.health-screening .mainvisual .bg {
  background-image: url(../img/health-screening/mainvisual_01.jpg);
}

body.scope .mainvisual .bg {
  background-image: url(../img/scope/mainvisual_01.jpg);
}

.btn__short {
  max-width: 100%;
  width: 353px;
}

.bl_list > li {
  position: relative;
  padding-left: 1.4em;
}
.bl_list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
}
.bl_list__check > li {
  position: relative;
  padding-left: 22px;
}
.bl_list__check > li::before {
  position: absolute;
  content: "";
  top: 0.2em;
  left: 0;
  width: 16px;
  height: 16px;
  background: url(../img/health-screening/icon_check.svg) center/contain;
  display: inline-block;
}
@media only screen and (min-width: 481px) {
  .bl_list__column2 {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 0 80px;
  }
  .bl_list__column2 > li {
    width: 50%;
    padding-right: 1em;
  }
}

.el_note {
  position: relative;
  padding-left: 1.4em;
}
.el_note::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 1em;
  height: 1em;
}

.el_noteNum {
  position: relative;
  padding-left: 1.9em;
  font-size: 1.4rem;
}
.el_noteNum .el_comment {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
}

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

.bl_table thead {
  background: #e6e1df;
}
.bl_table thead th,
.bl_table thead td {
  font-weight: 700;
  text-align: center;
}
.bl_table tbody {
  background: #fff;
}
.bl_table th {
  font-weight: 400;
}
@media only screen and (max-width: 480px) {
  .bl_table {
    display: block;
  }
  .bl_table thead {
    display: none;
  }
  .bl_table th,
.bl_table td {
    display: block;
    text-align: left;
  }
  .bl_table th {
    background: #e6e1df;
    font-weight: 700;
    padding: 10px 10px 7px;
  }
  .bl_table td {
    margin: 10px;
  }
  .bl_table .bl_table_spBorder {
    border-top: 1px solid #ccc2bd;
  }
}
@media only screen and (min-width: 481px) {
  .bl_table th,
.bl_table td {
    border: 1px solid #ccc2bd;
    vertical-align: middle;
    padding: 13px 10px 10px;
  }
  .bl_table th:nth-last-child(1),
.bl_table td:nth-last-child(1) {
    width: calc(100% - 150px - 180px);
  }
  .bl_table th:nth-last-child(2),
.bl_table td:nth-last-child(2) {
    width: 150px;
    text-align: center;
  }
  .bl_table th:nth-last-child(3),
.bl_table td:nth-last-child(3) {
    width: 180px;
    text-align: center;
  }
}

.bl_contentArea_item {
  background: #fff;
  border-image-source: linear-gradient(#fff, #fff);
  border-image-slice: 0 fill;
  border-image-outset: 0 50px 0 50px;
  padding: 45px 0;
}

.js_tabContent {
  display: none;
}
.js_tabContent.is_tabShow {
  display: block;
}

.el_pinkFrame {
  border: 2px solid #d77f7e;
  border-radius: 15px;
}

.el_titleA {
  font-size: 2rem;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .el_titleA {
    text-align: left;
  }
}

.hp_gridCenter {
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.un_pinkText {
  color: #d77f7e;
  font-weight: 700;
  margin-bottom: 1em;
  text-align: center;
}
@media only screen and (max-width: 480px) {
  .un_pinkText {
    text-align: left;
  }
}

.ly_media {
  gap: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
.ly_media * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.ly_media_imgWrapper {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  max-width: 100%;
  text-align: center;
}
.ly_media_body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.ly_media_body > *:last-child {
  margin-bottom: 0;
}
@media only screen and (min-width: 481px) {
  .ly_media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .ly_media__reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.intro_area .image_text_view_r {
  margin-bottom: 70px;
}
@media only screen and (max-width: 480px) {
  .intro_area {
    margin-bottom: 40px;
  }
}

.hp_ls0 {
  letter-spacing: 0 !important;
}

.ly_btnList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 480px) {
  .ly_btnList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.bl_recruitTable > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #E4E1E1;
  padding: 0 35px;
}
.bl_recruitTable > div dt {
  width: 16em;
  padding: 1em;
  font-weight: 700;
}
.bl_recruitTable > div dd {
  width: calc(100% - 16em);
  padding: 1em;
}
@media only screen and (max-width: 480px) {
  .bl_recruitTable > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: 1px solid #E4E1E1;
    padding: 0;
  }
  .bl_recruitTable > div dt {
    width: 100%;
    padding: 1em 0 0.5em;
  }
  .bl_recruitTable > div dd {
    width: 100%;
    padding: 0 0 1em;
  }
}

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

.hp_pt0 {
  padding-top: 0 !important;
}

.el_emText {
  font-size: 1.2em;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #ff6));
  background: linear-gradient(transparent 60%, #ff6 60%);
  display: inline-block !important;
}