@charset "UTF-8";
/* simple clearfix */
/**************************
@mixin for sprite
*/
/* @mixin sp_unindent {
	margin-left: -1 * $sp_padding;
	margin-right: -1 * $sp_padding;
	// width: 100vw;
} */
/***********************************************************************
 ***********************************************************************
 ***********************************************************************

## Component - Base

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


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

.red_text {
  color: #e75252;
}

.underline {
  text-decoration: underline;
}

.blue_text {
  color: #252f79;
}

/**************************
.main_content
*/
.main_content ul:not(.cancel):not(.pagelink_list) {
  line-height: 2;
}

@media screen and (min-width: 1000px), print {
  .main_content ul:not(.cancel):not(.pagelink_list).indent {
    margin-left: 1em;
  }
}

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

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

.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: #355aba;
  border-radius: 3px;
}

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

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

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

@media screen and (min-width: 1000px), print {
  .main_content .anotation_list:not(.cancel).indent {
    margin-left: 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;
  line-height: 2;
}

@media screen and (min-width: 1000px), print {
  .main_content ol:not(.cancel).indent {
    margin-left: 1em;
  }
}

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

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

.main_content ol:not(.cancel) > li::before {
  counter-increment: num;
  content: counter(num) ".";
  color: #355aba;
  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;
}

.main_content .link_list .text {
  display: inline-block;
}

.main_content .link_list a {
  line-height: 1.4;
  color: #1599ca;
  text-decoration: none;
  border-bottom: none !important;
}

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

.main_content .link_list a::before {
  content: '';
  display: inline-block;
  background: url("/common/img/link.png") 0 center no-repeat transparent;
  background-size: 8px 10px;
  width: 8px;
  height: 10px;
  margin-right: 7px;
  position: relative;
  top: 0;
  left: 0px;
}

.main_content .link_list a:hover {
  text-decoration: underline;
  color: #1599ca;
}

@media screen and (min-width: 1000px), print {
  .main_content .link_list a.indent {
    margin-left: 1em;
  }
}

@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;
    -o-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: 1.3em;
  }
}

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

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

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

.table td,
.table-borderd td,
.wpnews table td {
  color: #4f4946;
}

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

.table th,
.table-borderd th,
.wpnews table th {
  background-color: #eeeeee;
  color: #4f4946;
  font-weight: bold;
  text-align: left;
  vertical-align: middle;
  text-align: center;
}

.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: #252f79;
  color: #fff;
}

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

@media screen and (max-width: 999px) {
  .table tbody th,
  .table-borderd tbody th,
  .wpnews table tbody th {
    width: 168px;
  }
}

.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;
  line-height: 1.8;
}

@media screen and (min-width: 1000px), print {
  
  .anotation.indent {
    margin-left: 1em;
  }
}

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

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


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


.anotation-black {
  color: #27282d;
}


.anotation-black::before {
  color: #27282d;
}


.anotation-right {
  float: right;
}

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

## - p

*/
/*

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

*/
.main_content a:not(.cancel):not(.btn):not(.link):not(.news_line):not(.white_btn) {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #1599ca;
  text-decoration: none;
  border-bottom: 1px solid #1599ca;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  padding-bottom: 2px;
}

.main_content a:not(.cancel):not(.btn):not(.link):not(.news_line):not(.white_btn):hover {
  border-bottom: none;
}

.main_content p {
  color: #27282d;
}

@media screen and (min-width: 1000px), print {
  .main_content p {
    font-size: 16px;
    line-height: 2.25;
  }
}

@media screen and (max-width: 999px) {
  .main_content p {
    font-size: 14px;
    line-height: 2;
  }
}

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

		.sp_indent {
			padding-left: 7.5px;
			padding-right: 7.5px;
		}
	} */
}

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

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

リンクだけど文字色は黒

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

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

/*

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

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

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

*/
.ext::after,
.icon_ext::after {
  content: '';
  display: inline-block;
  background: url("/common/img/ext_icon.png") 0 center no-repeat transparent;
  background-size: 14px 14px;
  width: 14px;
  height: 14px;
  position: relative;
  top: 3px;
  left: 0;
}

/* .btn.ext {
	&::after {
		@include bg-inline('/common/img/icon/ext_icon_white.png', 14px, 14px);
		position: relative;
		top: 3px;
		left: 3px;
		margin-left: 7px;
		margin-top: -10px;
	}
} */
/*
<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("/common/img/pdf_icon.png") 0 center no-repeat transparent;
  background-size: 13px 14px;
  width: 13px;
  height: 14px;
  position: relative;
  top: 1px;
  left: 3px;
}

.btn.pdf::after {
  content: '';
  display: inline-block;
  background: url("/common/img/pdf_icon_white.png") 0 center no-repeat transparent;
  background-size: 13px 14px;
  width: 13px;
  height: 14px;
  margin-left: 5px;
  position: relative;
  top: 2px;
  left: 0;
  margin-top: -10px;
}

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

## - .btn - 汎用ボタン

*/
/*

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

汎用ボタン。

*/
a.btn {
  display: inline-block;
  padding: 1em 3em;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 500;
  letter-spacing: 0.1ex;
  background: #355aba;
  border-radius: 2em;
  line-height: 1.8;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  -o-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1) all;
  margin: 1em;
  /* + .btn {
		@media screen and (min-width: 1000px), print {
			margin-left: 20px;
		}
		@media screen and (max-width: 999px) {
			margin-top: 20px;
		}
	} */
}

@media screen and (max-width: 999px) {
  a.btn {
    padding: 0.7em 1.2em;
    margin: 0.5em;
  }
}

a.btn:hover {
  -webkit-box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
          box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.25);
  -webkit-transform: translateY(-5px);
      -ms-transform: translateY(-5px);
          transform: translateY(-5px);
  background-color: #204091;
}

a.btn::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 12px;
  height: 12px;
  background: url(/common/img/white_arrow.png) center center/contain no-repeat;
  margin-left: 4px;
  margin-top: -2px;
}

@media screen and (max-width: 999px) {
  a.btn::after {
    margin-left: 1px;
    margin-top: -4px;
  }
}

a.btn.pdf::after {
  margin-left: 5px;
  position: relative;
  top: 2px;
  left: 0;
  margin-top: -8px;
  content: '';
  display: inline-block;
  background: url("/common/img/pdf_icon_white.png") 0 center no-repeat transparent;
  background-size: 13px 14px;
  width: 13px;
  height: 14px;
}

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

a.white_btn {
  display: inline-block;
  color: #252f79;
  padding: 20px;
  position: relative;
  text-decoration: none;
  border: 1px solid #252f79 !important;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  max-width: 250px;
  -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

a.white_btn::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid #252f79;
  border-right: 2px solid #252f79;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
  margin-left: 5px;
  -webkit-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  -o-transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
}

@media screen and (max-width: 999px) {
  a.white_btn {
    max-width: 100%;
    width: 100%;
    font-size: 12px;
    padding: 14px 40px;
  }
}

@media screen and (min-width: 1000px), print {
  a.white_btn:hover {
    background-color: #252f79;
    color: #fff;
  }
  a.white_btn:hover::after {
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
  }
}

.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;
  -o-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;
  -o-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*

## - 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: 16px;
  line-height: 1.7;
}

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

.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: #252f79;
  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;
  color: #27282d;
}

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

/*

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

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

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

.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;
  -o-transition: opacity .1s ease-out, max-height .4s ease-out;
  transition: opacity .1s ease-out, max-height .4s ease-out;
  overflow: hidden;
  display: none;
}

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

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

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

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

.js-toggle {
  position: absolute;
  display: block;
  min-height: 10px;
  width: 10px;
  right: 8px;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 100;
  background-color: #ccc;
  padding: 5px;
}

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

.js-toggle::after {
  content: '';
  display: block;
  width: 15px;
  height: 2px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
      -ms-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;
  -o-transition: transform .2s ease-out;
  transition: transform .2s ease-out;
  transition: transform .2s ease-out, -webkit-transform .2s ease-out;
}

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

.js-toggle._opened::after {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
      -ms-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;
  -o-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

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

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


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

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: #1599ca;
  text-decoration: none;
}

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

.link::before {
  content: '';
  display: inline-block;
  background: url("/common/img/link.png") 0 center no-repeat transparent;
  background-size: 8px 10px;
  width: 8px;
  height: 10px;
  margin-right: 7px;
  position: relative;
  top: 0;
  left: 0px;
}

.link:hover {
  text-decoration: underline;
  color: #1599ca;
}

@media screen and (min-width: 1000px), print {
  .link.indent {
    margin-left: 1em;
  }
}

/* お知らせページ */
.news_pager {
  text-align: center;
  font-size: 1rem;
  margin-left: auto;
  margin-right: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 40px;
}

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

.news_pager__box {
  margin: 5px;
}

.news_pager a {
  line-height: 40px;
  color: #fff !important;
  text-align: center;
  background-color: #252f79;
  font-weight: bold;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-bottom: none !important;
}

.news_pager a:hover {
  text-decoration: none;
  opacity: 0.6;
  -webkit-transition: 0.2s opacity;
  -o-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;
}

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

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

## Utility - Cosmetic

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

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

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

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



## Component - Base

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

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

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

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

**2列 .pc_column2**

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

**3列 .pc_column3**

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

**4列 .pc_column4**

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

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

.content_section {
  margin-bottom: 120px;
}

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

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

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

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

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

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

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

/*

<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,
.left_text {
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

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

/*

<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: #252f79 !important;
}

a.black_text {
  color: #252f79 !important;
}

a.black_text:hover {
  color: #1599ca;
}

/*

<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;
  -o-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

/*

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

.root .main_content .line-height2 {
  line-height: 2 !important;
}

/* simple clearfix */
/**************************
@mixin for sprite
*/
/* @mixin sp_unindent {
	margin-left: -1 * $sp_padding;
	margin-right: -1 * $sp_padding;
	// width: 100vw;
} */
/* 共通設定 */
#main_content {
  margin-top: 40px;
}

.container {
  width: 100%;
  padding-right: 25px;
  padding-left: 25px;
  margin: 0 auto;
}

/* header */
.header {
  width: 100%;
  height: 40px;
  background-color: #12176f;
  position: fixed;
  top: 0;
  left: 0;
}

.header_1 .header_logo {
  height: 40px;
  padding-left: 12px;
  overflow: hidden;
}

.header_1 .header_logo a {
  display: block;
  margin-top: 4px;
}

.header_1 .header_logo img {
  height: 30px;
  -webkit-transform: translateY(2px);
      -ms-transform: translateY(2px);
          transform: translateY(2px);
}

.header .open_menu {
  background-color: #fff;
  position: absolute;
  right: 0;
  width: 40px;
  height: 40px;
  text-indent: 100%;
  white-space: nowrap;
}

.header .open_menu span {
  display: block;
  width: 23px;
  height: 2px;
  background-color: #12176f;
  position: absolute;
  top: 11px;
  right: 50%;
  margin-right: -11px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.header .open_menu span::before {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background-color: #12176f;
  position: absolute;
  top: 16px;
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

.header .open_menu span::after {
  content: "";
  display: block;
  width: 23px;
  height: 2px;
  background-color: #12176f;
  position: absolute;
  top: 8px;
}

.header_2 {
  display: none;
}

.mm_menu {
  width: 100%;
  height: calc(100vh - 40px);
  min-height: 60px;
  position: fixed;
  top: 40px;
  background: url(/common/img/sp_mm-menu_bg.jpg) no-repeat center center/cover;
  text-align: center;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
  z-index: 9000;
  overflow: scroll;
  overflow-x: hidden;
  overflow-y: auto;
}

.mm_menu_ul {
  margin-top: 25%;
}

.mm_menu_li {
  margin-bottom: 50px;
  opacity: 0;
  -webkit-transform: translateY(30%);
      -ms-transform: translateY(30%);
          transform: translateY(30%);
  -webkit-transition-delay: 0.1s;
       -o-transition-delay: 0.1s;
          transition-delay: 0.1s;
  -webkit-transition: 0.5s;
  -o-transition: 0.5s;
  transition: 0.5s;
  /* &:nth-child(2) {
				transition-delay: 0.2s;
			}
			&:nth-child(3) {
				transition-delay: 0.3s;
			}
			&:nth-child(4) {
				transition-delay: 0.4s;
			} */
}

.mm_menu_li.opened {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.mm_menu_li .mm_menu_a {
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  position: relative;
}

.mm_menu_li .mm_menu_a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -6px;
}

.mm_menu_bottom {
  width: 100%;
}

.mm_menu_bottom .contact_btn_sp {
  border: 1px solid #fff;
  width: 170px;
  height: 40px;
  padding: 10px;
  color: #fff;
  display: block;
  border-radius: 19px;
  margin: 80px auto 0;
}

.mm_menu_bottom .contact_btn_sp span {
  position: relative;
  display: block;
  text-align: center;
  padding-right: 20px;
}

.mm_menu_bottom .contact_btn_sp span::after {
  content: "";
  display: block;
  position: absolute;
  width: 17px;
  height: 14px;
  top: 50%;
  right: 14px;
  margin-top: -7px;
  background: url(/common/img/sp_mm_contact_icon.png) no-repeat center center/cover;
}

.mm_menu.opened {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}

/* sp_menuが開いた状態 */
body {
  -webkit-transition: .2s;
  -o-transition: .2s;
  transition: .2s;
}

body .mm_menu_logo {
  display: none;
}

body.mm-opened {
  overflow: hidden;
}

body.mm-opened .header_1 {
  background-color: #fff;
}

body.mm-opened .header_1 .mm_menu_logo {
  display: block;
}

body.mm-opened .header_1 .default_logo {
  display: none;
}

body.mm-opened .open_menu {
  background-color: #1c2148;
}

body.mm-opened .open_menu span {
  background-color: #fff;
  top: 20px;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

body.mm-opened .open_menu span::before {
  background-color: #fff;
  top: 0;
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

body.mm-opened .open_menu span::after {
  display: none;
}

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

## Component - Base

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

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

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

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

**2列 .sp_column2**

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

**3列 .sp_column3**

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

**4列 .sp_column4**

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

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

.sp_column2::after {
  clear: both;
}

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

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

.sp_column3::after {
  clear: both;
}

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

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

.sp_column4::after {
  clear: both;
}

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

.sp_column2 > *:nth-child(2n),
.sp_column3 > *:nth-child(3n),
.sp_column4 > *:nth-child(4n) {
  padding-bottom: 15px;
}

.sp_column2 > *:last-child,
.sp_column3 > *:last-child,
.sp_column4 > *:last-child {
  padding-bottom: 0;
}

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

.sp_column2::after {
  clear: both;
}

.sp_column2 > * {
  width: 50%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp_column2 > *:nth-child(2n + 1) {
  clear: left;
  padding-right: 5px;
}

.sp_column2 > *:nth-child(2n) {
  padding-left: 5px;
}

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

.sp_column3::after {
  clear: both;
}

.sp_column3 > * {
  width: 33.33333%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp_column3 > *:nth-child(3n + 1) {
  clear: left;
  padding-right: 7px;
}

.sp_column3 > *:nth-child(3n + 2) {
  padding-left: 3px;
  padding-right: 3px;
}

.sp_column3 > *:nth-child(3n) {
  padding-left: 7px;
}

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

.sp_column4::after {
  clear: both;
}

.sp_column4 > * {
  width: 25%;
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.sp_column4 > *:nth-child(4n + 1) {
  clear: left;
  padding-right: 8px;
}

.sp_column4 > *:nth-child(4n + 2) {
  padding-left: 3px;
  padding-right: 5px;
}

.sp_column4 > *:nth-child(4n + 3) {
  padding-left: 5px;
  padding-right: 3px;
}

.sp_column4 > *:nth-child(4n) {
  padding-left: 8px;
}

/**************************
.pc_column
*/
.pc_column2:not(.sp_column2):not(.mb_column2):not(.link_list) > *:not(:last-child) {
  margin-bottom: 1em;
}

.pc_column3:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list) > *:not(:last-child) {
  margin-bottom: 1em;
}

.pc_column4:not(.sp_column2):not(.sp_column3):not(.mb_column2):not(.mb_column3):not(.link_list) > *:not(:last-child) {
  margin-bottom: 1em;
}

.pc_column2_2 > *:not(:last-child) {
  margin-bottom: 1em;
}

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

.table-column2:not(.table-noborder) tr:first-child th:first-child,
.table-column2:not(.table-noborder) tr:first-child td:first-child {
  border-top: 1px solid #cac9c8;
}

.table-column2 thead,
.table-column2 tbody,
.table-column2 tfoot,
.table-column2 tr,
.table-column2 th,
.table-column2 td {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  float: left;
  clear: both;
}

.root .table-column2 thead, .root
.table-column2 tbody, .root
.table-column2 tfoot, .root
.table-column2 tr, .root
.table-column2 th, .root
.table-column2 td {
  width: 100%;
}

.table-column2 tr th,
.table-column2 th + td {
  border-top: 0 none;
}

.table-column2 thead th,
.table-column2 thead td,
.table-column2 tbody th,
.table-column2 tbody td {
  width: 100%;
}

.table-column2 thead td + td,
.table-column2 tbody td + td {
  border-top: 0 none;
}

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

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

.set .fix + .resize,
.set .resize + .fix {
  margin-top: 30px;
}

.set .left,
.set .right {
  float: none;
}

.set .fix img,
.set .resize img {
  display: block;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/*

<div class="_h3">横スクロールできる table</div>

responsive-tables.js と組み合わせないと効果が生まれない。
左の固定部分の横幅を変えたい場合は、CSSを追記する必要がある。
.responsive_table_area で包んで、
table.responsive とするのが必須の仕様。

	<div class="responsive_table_area">
		<table class="responsive">
			<tbody>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
				<tr>
					<th>テキスト</th>
					<td>テキスト</td>
				</tr>
			</tbody>
		</table>
	</div>

*/
.responsive_table_area {
  position: relative;
  top: 0;
  left: 0;
  clear: both;
  margin-bottom: 10px;
}

.root .responsive_table_area table {
  margin-bottom: 0;
}

.responsive_table_area:not(.responsive_table_area-all) th:first-child {
  max-width: 125px;
  min-width: 125px;
  width: 125px;
}

.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .pinned {
  max-width: 126px;
  min-width: 126px;
  width: 126px;
}

.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .scrollable {
  padding-left: 125px;
}

.responsive_table_area:not(.responsive_table_area-all) .table-wrapper .scrollable > table {
  margin-left: -125px;
}

.responsive_table_area td {
  min-width: 70px;
}

.responsive_table_area th:first-child {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.responsive_table_area .scrollable {
  -webkit-overflow-scrolling: touch;
}

.responsive_table_area .table-wrapper {
  margin-bottom: 0;
}

.responsive_table_area table.responsive th:first-child,
.responsive_table_area table.responsive table.responsive td:first-child,
.responsive_table_area table.responsive table.responsive td:first-child,
.responsive_table_area table.responsive.pinned td {
  display: table-cell;
}

.responsive_table_area-all .table-wrapper .table {
  min-width: 1200px;
}

.responsive_table_area-all .table-wrapper td,
.responsive_table_area-all .table-wrapper th {
  position: static;
  white-space: normal;
}

.responsive_table_area-all .table-wrapper .pinned {
  display: none;
}

.responsive_table_area-all .table-wrapper .scrollable {
  padding-left: 0;
}

.responsive_table_area-all .table-wrapper .scrollable > table {
  margin-left: 0;
}

.responsive_table_mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(/common/img/icon_swipe.png) center center no-repeat transparent;
  background-size: auto 90px;
  z-index: 102;
  cursor: pointer;
}

.responsive_table_mask.shadow {
  background-image: none;
  background: #666;
  opacity: 0.5;
  z-index: 101;
}

/**************************
	.table
*/
.no_th_table_area .table-wrapper .pinned {
  display: none;
}

.no_th_table_area .table-wrapper .scrollable {
  padding-left: 0;
}

.no_th_table_area .table-wrapper .scrollable > table {
  margin-left: -0;
}

.no_th_table_area th:first-child,
.no_th_table_area td:first-child {
  max-width: none;
  min-width: initial;
  width: auto;
}

.root .no_th_table_area th,
.root .no_th_table_area td {
  white-space: inherit !important;
}
