@charset "UTF-8";
/* -------------------------------------------------------------------------

		reset.sass

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

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

		style reset

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

body {
  line-height: 1;
}

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

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

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

del {
  text-decoration: line-through;
}

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

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

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

input, select {
  vertical-align: middle;
}

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

small {
  font-size: smaller;
}

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

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

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

		font styles

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

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

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

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

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

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

		vars.sass

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

------------------------------------------------------------------------- */
/* width
------------------------------------------------- */
/* color
------------------------------------------------- */
/* text color
------------------------------------------------- */
/* fonts
------------------------------------------------- */
/* transition
------------------------------------------------- */
/* -------------------------------------------------------------------------

		function.sass

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

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

		mixin.sass

		mixinを定義

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

		util.sass

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

------------------------------------------------------------------------- */
/* layout
------------------------------------------------- */
.image_text_view_l,
.image_text_view_r {
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .image_text_view_l,
.image_text_view_r {
    overflow: visible;
  }
}

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

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

.image_text_view_l .img > div,
.image_text_view_r .img > div {
  margin-bottom: 15px;
}

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

.image_text_view_l .text,
.image_text_view_r .text {
  overflow: hidden;
  line-height: 1.8;
}
.image_text_view_l .text p,
.image_text_view_r .text p {
  margin-bottom: 1em;
  line-height: 1.8;
}
.image_text_view_l .text p:last-child,
.image_text_view_r .text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .image_text_view_l .text,
.image_text_view_r .text {
    overflow: visible;
  }
}

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

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

/* br
------------------------------------------------- */
.sp_none {
  display: inline-block;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 742px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }

  .pc_none {
    display: inline-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...）
------------------------------------------------- */
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.mt85 {
  margin-top: 85px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.ml85 {
  margin-left: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.ml90 {
  margin-left: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.ml95 {
  margin-left: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.ml100 {
  margin-left: 100px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.pt85 {
  padding-top: 85px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pr95 {
  padding-right: 95px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pl100 {
  padding-left: 100px !important;
}

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

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

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

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

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

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

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

.inline {
  display: inline !important;
}

/* justify layout
Usage:
<ul class="just_layout">
	<li class ="just_item"></li>
</ul>
------------------------------------------------- */
.just_layout {
  text-align: justify;
  text-justify: distribute-all-lines;
  zoom: 1;
  display: block;
  line-height: 0;
}
.just_layout:after {
  line-height: 0;
  visibility: hidden;
  content: "";
  display: inline-block;
  width: 100%;
}
.just_layout .just_item {
  display: inline-block;
  text-align: left;
  vertical-align: top;
  line-height: normal;
}

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

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

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

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

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

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

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

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

/* ---- ● ---- */
.list_circle > li {
  text-align: left;
  text-indent: -1em;
  margin-left: 1em;
}
.list_circle > li:before {
  content: "● ";
}
.list_circle > li > * {
  text-indent: 0;
}

/* ---- 1. ---- */
.list_decimal_01 > li {
  counter-increment: decimal_01;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.list_decimal_01 > li:before {
  content: counter(decimal_01) ". ";
}
.list_decimal_01 > li > * {
  text-indent: 0;
}

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

/* ---- [1] ---- */
.list_decimal_03 > li {
  counter-increment: decimal_03;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_03 > li:before {
  content: "[" counter(decimal_03) "] ";
}
.list_decimal_03 > li > * {
  text-indent: 0;
}

/* ---- 丸数字 ---- */
.list_decimal_04 > li {
  counter-increment: decimal_04;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_decimal_04 > li:before {
  content: counter(decimal_04);
  border: 1px solid #000;
  padding: 0 3px;
  font-size: 10px;
  margin-right: 5px;
  text-align: center;
  line-height: 1;
  border-radius: 50%;
}
.list_decimal_04 > li > * {
  text-indent: 0;
}

/* ---- upper alpha ---- */
.list_upper_alpha_01 > li {
  counter-increment: upper_alpha_01;
  margin-left: 1.5em;
  text-indent: -1.5em;
}
.list_upper_alpha_01 > li:before {
  content: counter(upper_alpha_01, upper-alpha) ") ";
}
.list_upper_alpha_01 > li > * {
  text-indent: 0;
}

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

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

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

		module.sass

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

------------------------------------------------------------------------- */
/* text link
------------------------------------------------- */
a {
  color: #040404;
  text-decoration: none;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
a.underline:hover {
  text-decoration: underline;
}
a.color:hover {
  color: #43a995;
}
a.text_link {
  color: #009bdf;
  text-decoration: underline;
}
a.text_link:hover {
  color: #104966;
  text-decoration: none;
}

a[href*="tel:"] {
  cursor: default;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href*="tel:"] {
    cursor: pointer;
    pointer-events: auto;
  }
}

/*img
------------------------------------------------- */
img {
  line-height: 1;
  vertical-align: top;
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out 0s;
  transition: all 0.3s ease-in-out 0s;
  -ms-transition: 　none;
}

/* form
------------------------------------------------- */
input, button, textarea, select {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=text],
input[type=submit],
input[type=tel],
input[type=email],
textarea {
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  margin: 0;
  background-color: #fff;
  border: 1px solid #C4C4C3;
  font-size: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  border-radius: 0;
  outline: none;
  border: 1px solid #aaa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
input[type=text].narrow,
input[type=submit].narrow,
input[type=tel].narrow,
input[type=email].narrow,
textarea.narrow {
  width: 20%;
}

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

input[type=text]:focus,
textarea:focus {
  -webkit-box-shadow: 0 0 7px #52a8ec;
          box-shadow: 0 0 7px #52a8ec;
  border: 1px solid #52a8ec;
}

input[type=radio],
input[type=checkbox] {
  margin-right: 5px;
  vertical-align: baseline;
  border-style: none;
}

input[type=submit],
input[type=button] {
  border: none;
  background-color: transparent;
  margin: 0;
  padding: 0;
  display: block;
  width: 360px;
  border-radius: 0;
  -webkit-appearance: none;
}

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

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

/* animation
------------------------------------------------- */
.animation {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.animation.fast {
  -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);
}

/* pager - WPのページャー
------------------------------------------------- */
/* list */
.pager {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto 100px;
}
@media screen and (max-width: 768px) {
  .pager {
    margin: 0 auto 60px;
  }
}
.pager a, .pager span {
  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;
  width: 50px;
  height: 50px;
  margin: 0 2px;
  border: 1px solid #d9cfa1;
  color: #d9cfa1;
  font-size: 2rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .pager a, .pager span {
    width: 40px;
    height: 40px;
    font-size: 1.8rem;
  }
}
.pager .prev, .pager .next {
  position: relative;
  color: #02283b;
  font-size: 2rem;
}
.pager .prev::after, .pager .next::after {
  position: absolute;
  top: 50%;
  left: 50%;
  content: "";
  width: 16px;
  height: 16px;
  border-top: 2px solid #d9cfa1;
  border-right: 2px solid #d9cfa1;
}
.pager .prev:hover::after, .pager .next:hover::after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.pager .prev::after {
  -webkit-transform: translate(-30%, -50%) rotate(-135deg);
          transform: translate(-30%, -50%) rotate(-135deg);
}
.pager .next::after {
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
          transform: translate(-70%, -50%) rotate(45deg);
}
.pager a:hover, .pager .current {
  background: #d9cfa1;
  color: #fff;
}
.pager .current {
  cursor: default;
  pointer-events: none;
}

/* detail */
.pager.big {
  width: 610px;
  margin: 100px auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .pager.big {
    width: calc(100% - 40px);
  }
}
.pager.big a {
  width: calc((100% - 10px) / 3);
  height: 50px;
  margin: 0;
  background: #d9cfa1;
  color: #fff;
  font-size: 1.6rem;
}
.pager.big .to_prev, .pager.big .to_next {
  position: relative;
}
.pager.big .to_prev::after, .pager.big .to_next::after {
  position: absolute;
  top: 50%;
  content: "";
  width: 14px;
  height: 14px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
.pager.big .to_prev::after {
  left: 20px;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
}
@media screen and (max-width: 768px) {
  .pager.big .to_prev::after {
    left: 10px;
  }
}
.pager.big .to_next::after {
  right: 20px;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pager.big .to_next::after {
    right: 10px;
  }
}

/* btn
------------------------------------------------- */
/* icon
------------------------------------------------- */
/* title
------------------------------------------------- */
.contents_title {
  margin-bottom: 30px;
  padding-bottom: 5px;
  border-bottom: 1px solid #040404;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.5;
}
.contents_title.contents_title__em {
  font-weight: 700;
  color: #0D749D;
}
@media screen and (max-width: 480px) {
  .contents_title {
    font-size: 6vw;
  }
}
.contents_title .en {
  display: block;
  color: #9e9777;
  font-size: 1.4rem;
}

/* lead
------------------------------------------------- */
.lead {
  margin-bottom: 60px;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .lead {
    margin-bottom: 30px;
    font-size: 1.6rem;
  }
}

/* table
------------------------------------------------- */
table {
  width: 100%;
  margin-bottom: 70px;
  border-top: 1px solid #d2d2d2;
}
@media screen and (max-width: 480px) {
  table {
    display: block;
  }
  table tbody {
    display: block;
    width: 100%;
  }
}

tr {
  border-bottom: 1px solid #d2d2d2;
}
@media screen and (max-width: 480px) {
  tr {
    display: block;
    width: 100%;
  }
}

th {
  width: 200px;
  padding: 20px 35px;
  background: #f2f2f3;
  font-weight: 400;
  text-align: left;
}
@media screen and (max-width: 480px) {
  th {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

td {
  padding: 20px 40px;
  text-align: left;
}
@media screen and (max-width: 480px) {
  td {
    display: block;
    width: 100%;
    padding: 10px;
  }
}

.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__decimal {
  counter-reset: decimal_01;
}
.bl_list__decimal > li {
  counter-increment: decimal_01;
}
.bl_list__decimal > li::before {
  content: counter(decimal_01) ". ";
  width: auto;
}

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

		layout.sass

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

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

/* body
------------------------------------------------- */
body {
  overflow-x: hidden;
  position: relative;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-color: #fff;
  color: #040404;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  word-wrap: break-word;
  word-break: normal;
  overflow-wrap: break-word;
  -webkit-text-size-adjust: 100%;
}
body *, body *::before, body *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/* header
------------------------------------------------- */
.site_header {
  position: relative;
  width: 100%;
  min-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .site_header {
    width: 100%;
    min-width: initial;
    height: auto;
    margin-bottom: 0;
    padding-top: 60px;
  }
}
.site_header .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.site_header .site_id {
  padding-left: 20px;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.8rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .site_header .site_id {
    position: fixed;
    top: 0;
    z-index: 3;
    width: 100%;
    height: 60px;
    padding: 10px;
    background: #fff;
    font-size: 2rem;
    line-height: 1.4;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .site_header .site_id a {
    display: block;
    width: 125px;
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .site_header .site_id a {
    width: auto;
  }
}
.site_header .site_id span {
  display: block;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .site_header .site_id span {
    font-size: 1.2rem;
  }
}

.header_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-right: 52px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header_box {
    margin-right: 0;
  }
}
@supports (-ms-ime-align: auto) {
  .header_box {
    margin-right: 0;
  }
}
.header_box .header_tel {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .header_box .header_tel {
    display: none;
  }
}
.header_box .header_tel a {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 400;
}
.header_box .header_tel span {
  display: block;
  font-size: 1.2rem;
  white-space: nowrap;
}
.header_box .header_contact {
  display: block;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -ms-flex-preferred-size: 160px;
      flex-basis: 160px;
  height: 80px;
  margin-left: 20px;
  padding-top: 45px;
  background: #032e43 url(../img/common/ico_mail.png) no-repeat 50% 8px;
  background-size: 40px 40px;
  color: #fff;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .header_box .header_contact {
    padding-top: 47px;
  }
}
@media screen and (max-width: 768px) {
  .header_box .header_contact {
    display: none;
  }
}
.header_box .header_contact:hover {
  background-color: #9e9777;
}

/* drawer-hamberger
------------------------------------------------- */
.drawer-hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer-hamburger {
    display: block;
    top: 10px;
    width: 3rem;
    padding: 10px;
  }
}
.drawer-hamburger .drawer-hamburger-icon, .drawer-hamburger .drawer-hamburger-icon:after, .drawer-hamburger .drawer-hamburger-icon:before {
  height: 1px;
  background: #000;
}

/* gloal navi
------------------------------------------------- */
.drawer--right .global_nav {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  overflow: visible;
  position: relative;
  right: 0;
  z-index: 6;
  width: auto;
  background: rgba(255, 255, 255, 0.7);
  -ms-touch-action: auto !important;
      touch-action: auto !important;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav {
    overflow: scroll;
    position: fixed;
    right: -100%;
    width: 85vw;
    height: 100vh;
    margin-bottom: 0;
    background: #fff;
  }
}
.drawer--right .global_nav .drawer-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu {
    display: block;
    width: 100%;
    margin-bottom: 20px;
    padding: 10px 0;
  }
}
.drawer--right .global_nav .drawer-menu li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li {
    margin: 0 20px;
    padding: 15px 0;
    border-right: none;
    border-bottom: 1px solid #d2d2d2;
    text-align: left;
  }
}
.drawer--right .global_nav .drawer-menu li:nth-of-type(6) {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .drawer-menu li:nth-of-type(6) {
    display: block;
  }
}
.drawer--right .global_nav .drawer-menu li a {
  display: block;
  width: 100%;
  padding: 0 15px;
}
.drawer--right .global_nav .drawer-menu li a:hover {
  color: #02283b;
}
.drawer--right .global_nav .nav_tel {
  display: none;
}
@media screen and (max-width: 768px) {
  .drawer--right .global_nav .nav_tel {
    display: block;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
  }
  .drawer--right .global_nav .nav_tel a {
    font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
    font-size: 3.2rem;
    font-weight: 400;
  }
  .drawer--right .global_nav .nav_tel span {
    display: block;
    font-size: 1.2rem;
  }
}

.drawer--right.drawer-open .drawer-hamburger {
  right: 85vw;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon {
  background: transparent;
}
.drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::before, .drawer--right.drawer-open .drawer-hamburger .drawer-hamburger-icon::after {
  background: #fff;
}

.drawer-overlay {
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
}

/* breadcrumb
------------------------------------------------- */
.breadcrumb {
  max-width: 1040px;
  margin: 20px auto 80px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin: 15px 20px 30px;
  }
}
.breadcrumb ul {
  letter-spacing: -0.5em;
}
.breadcrumb li {
  display: inline-block;
  margin-right: 5px;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: normal;
}
.breadcrumb li::after {
  content: "｜";
}
.breadcrumb li:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
.breadcrumb li:last-of-type::after {
  content: none;
}
.breadcrumb li:last-of-type a {
  cursor: default;
  pointer-events: none;
}
.breadcrumb li a {
  padding-right: 5px;
  color: #040404;
}
.breadcrumb li a:hover {
  color: #104966;
  text-decoration: underline;
}

/* column(one)
------------------------------------------------- */
main {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  main {
    width: 100%;
  }
}

/* column(two)
------------------------------------------------- */
.wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 1040px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .wrapper {
    display: block;
    width: 100%;
  }
}
.wrapper main {
  width: 890px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .wrapper main {
    width: 100%;
  }
}
.wrapper aside {
  width: 270px;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .wrapper aside {
    width: 100%;
    margin-bottom: 50px;
  }
}

/* page_content
------------------------------------------------- */
.contents {
  width: 1040px;
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contents {
    width: calc(100% - 40px);
  }
}

.main_title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 350px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .main_title {
    height: auto;
    padding: 50px 0;
  }
}

.page_title {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  font-weight: 400;
  letter-spacing: 0.2em;
}
@media screen and (max-width: 768px) {
  .page_title {
    font-size: 8vw;
  }
}

/* sidebar
------------------------------------------------- */
/* footer
------------------------------------------------- */
.site_footer {
  margin-top: 100px;
  background: #02283b;
}
@media screen and (max-width: 768px) {
  .site_footer {
    margin-top: 80px;
  }
}

.footer_inner {
  width: 1040px;
  margin: 0 auto;
  padding: 40px 0;
}
@media screen and (max-width: 768px) {
  .footer_inner {
    width: 100%;
    padding: 40px 20px;
  }
}
.footer_inner .contact_info {
  margin-bottom: 80px;
  padding-right: 460px;
  background: url(../img/common/img_contact.jpg) no-repeat 100% 0;
  background-size: 384px 225px;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_inner .contact_info {
    margin-bottom: 40px;
    padding-right: 0;
    padding-bottom: 58.59%;
    background-position: 50% 100%;
    background-size: contain;
  }
}
.footer_inner .contact_info .note {
  margin-bottom: 5px;
  color: #fff;
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .footer_inner .contact_info .note {
    line-height: 1.6;
  }
}
@media screen and (max-width: 480px) {
  .footer_inner .contact_info .note {
    font-size: 6vw;
  }
}
.footer_inner .contact_info .tel {
  display: inline-block;
  position: relative;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .footer_inner .contact_info .tel {
    margin-bottom: 40px;
  }
}
.footer_inner .contact_info .tel::before {
  position: absolute;
  top: 50%;
  left: -30px;
  content: "";
  width: 8px;
  height: 73px;
  margin-top: -35px;
  background: url(../img/common/ico_bracket_l.png) no-repeat 0 50%;
  background-size: contain;
}
.footer_inner .contact_info .tel::after {
  position: absolute;
  top: 50%;
  right: -30px;
  content: "";
  width: 8px;
  height: 73px;
  margin-top: -35px;
  background: url(../img/common/ico_bracket_r.png) no-repeat 0 50%;
  background-size: contain;
}
.footer_inner .contact_info .tel a {
  display: block;
  color: #d9cfa1;
  font-size: 4.8rem;
}
@media screen and (max-width: 480px) {
  .footer_inner .contact_info .tel a {
    font-size: 11vw;
  }
}
.footer_inner .contact_info .tel span {
  display: block;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .footer_inner .contact_info .tel span {
    font-size: 4vw;
  }
}
.footer_inner .contact_info .contact_btn {
  display: block;
  position: relative;
  padding: 10px 10px 10px 50px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.27);
  color: #fff;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.3rem;
  letter-spacing: 0.1em;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer_inner .contact_info .contact_btn {
    padding: 14px 10px 6px 50px;
  }
}
@media screen and (max-width: 480px) {
  .footer_inner .contact_info .contact_btn {
    margin-bottom: 40px;
    font-size: 6vw;
  }
}
.footer_inner .contact_info .contact_btn::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 40px;
  height: 40px;
  margin-left: -4.5em;
  background: url(../img/common/ico_mail.png) no-repeat 50% 50%;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .footer_inner .contact_info .contact_btn::before {
    width: 8vw;
    height: 8vw;
  }
}
.footer_inner .contact_info .contact_btn:hover {
  background: #9e9777;
}
.footer_inner .insurance_company {
  text-align: center;
}
.footer_inner .insurance_company p {
  display: inline-block;
  margin-bottom: 20px;
  padding: 5px 10px;
  border: 1px solid #fff;
  color: #fff;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer_inner .insurance_company p {
    padding: 7px 10px 3px;
  }
}
.footer_inner .insurance_company ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company ul {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.footer_inner .insurance_company ul:first-of-type {
  margin-bottom: 3.75px;
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company ul:first-of-type {
    margin-bottom: 0;
  }
}
.footer_inner .insurance_company li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc((100% - 15px) / 4);
  padding: 15px;
  background: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company li {
    width: calc((100% - 10px) / 2);
    margin-bottom: 5px;
  }
}
.footer_inner .insurance_company li:not(:last-child) {
  margin-right: 3.75px;
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company li:not(:last-child) {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company li:nth-child(odd) {
    margin-right: 5px;
  }
}
.footer_inner .insurance_company li img {
  width: auto;
  height: 35px;
}
@media screen and (max-width: 768px) {
  .footer_inner .insurance_company li img {
    width: 100%;
    height: auto;
  }
}

.footer_bottom {
  padding: 60px 0;
  background: #f2f2f3;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .footer_bottom {
    padding: 0;
  }
}
.footer_bottom .footer_nav {
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .footer_bottom .footer_nav {
    display: none;
  }
}
.footer_bottom .footer_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer_bottom .footer_nav li {
  margin: 0 15px;
}
.footer_bottom .footer_nav a {
  position: relative;
  padding-left: 10px;
  font-size: 1.6rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .footer_bottom .footer_nav a {
    padding-top: 5px;
  }
}
.footer_bottom .footer_nav a::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: rotate(45deg) skew(7deg, 7deg);
          transform: rotate(45deg) skew(7deg, 7deg);
  content: "";
  width: 4px;
  height: 4px;
  margin-top: -3px;
  border-top: 1px solid #040404;
  border-right: 1px solid #040404;
}
.footer_bottom .footer_nav a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .copyright {
    padding: 30px 20px;
  }
}

/* page_top
------------------------------------------------- */
.page_top {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 5;
  width: 0;
  height: 0;
  border: 60px solid transparent;
  border-bottom: 70px solid #02283b;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}
@media screen and (max-width: 768px) {
  .page_top {
    right: 5px;
    bottom: 10px;
    border: 40px solid transparent;
    border-bottom: 50px solid #02283b;
  }
}
.page_top a {
  display: block;
  position: absolute;
  top: 0;
  left: -60px;
  width: 120px;
  height: 70px;
  padding-top: 45px;
  color: #d9cfa1;
  font-size: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_top a {
    left: -40px;
    width: 80px;
    height: 50px;
    padding-top: 30px;
    font-size: 1rem;
  }
}
.page_top a::after {
  position: absolute;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 30px;
  height: 17px;
  background: url(../img/common/ico_pagetop_arrow.png) no-repeat 0 0;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .page_top a::after {
    top: 15px;
    width: 15px;
    height: 8px;
  }
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* home - トップページ
------------------------------------------------- */
.home .mainvisual {
  position: relative;
}
.home .mainvisual .slider {
  width: 100%;
  overflow: hidden;
}
.home .mainvisual .slick-slide {
  height: calc(100vh - 80px);
}
@media screen and (max-width: 768px) {
  .home .mainvisual .slick-slide {
    height: calc(100vh - 60px);
  }
}
@media screen and (max-width: 480px) {
  .home .mainvisual .slick-slide {
    width: 100%;
    height: 53vw;
  }
}
.home .mainvisual .slideimg1 {
  background: url(../img/index/slide1.jpg) center;
  background-size: cover;
}
.home .mainvisual .slideimg2 {
  background: url(../img/index/slide2.jpg) center;
  background-size: cover;
}
.home .mainvisual .slideimg3 {
  background: url(../img/index/slide3.jpg) center;
  background-size: cover;
}
.home .mainvisual .slideimg4 {
  background: url(../img/index/slide4.jpg) center;
  background-size: cover;
}
.home .mainvisual .slideimg5 {
  background: url(../img/index/slide5.jpg) center;
  background-size: cover;
}
.home .mainvisual .mv_text {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  text-align: center;
  white-space: nowrap;
  text-shadow: 3px 3px 4px rgba(255, 255, 255, 0.8), -3px 3px 4px rgba(255, 255, 255, 0.8), 3px -3px 4px rgba(255, 255, 255, 0.8), -3px -3px 4px rgba(255, 255, 255, 0.8), 3px -3px 4px rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 768px) {
  .home .mainvisual .mv_text {
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .home .mainvisual .mv_text {
    font-size: 3.5vw;
  }
}
.home .mainvisual .mv_text .en {
  display: block;
  margin-bottom: 20px;
  font-family: "Prata", serif;
  font-size: 6.4rem;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .home .mainvisual .mv_text .en {
    margin-bottom: 5px;
    font-size: 6vw;
  }
}
.home .mainvisual .mv_text .jp {
  font-weight: 700;
  line-height: 1.5;
  font-size: 4.8rem;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .home .mainvisual .mv_text .jp {
    font-size: 5vw;
  }
}
.home .mainvisual::before {
  z-index: 1;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%) rotate(0.001deg);
          transform: translateX(-50%) rotate(0.001deg);
  content: "SCROLL";
  color: #d9cfa1;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .home .mainvisual::before {
    bottom: 20px;
    font-size: 1.4rem;
  }
}
.home .mainvisual::after {
  z-index: 1;
  position: absolute;
  bottom: -20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  content: "";
  width: 2px;
  height: 50px;
  background: #9e9777;
}
@media screen and (max-width: 768px) {
  .home .mainvisual::after {
    height: 30px;
  }
}
.home .banner {
  width: 1040px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .home .banner {
    width: calc(100% - 40px);
  }
}
.home .banner .banner_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  min-height: 310px;
  padding: 25px 35px;
}
@media screen and (max-width: 768px) {
  .home .banner .banner_inner {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
    min-height: initial;
    padding: 20px;
  }
}
.home .banner .banner_inner .banner_text {
  margin-bottom: 20px;
}
.home .banner .banner_inner .banner_head {
  display: inline-block;
  margin-bottom: 30px;
  border-bottom: 1px solid #d9cfa1;
  color: #d9cfa1;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 3.2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .home .banner .banner_inner .banner_head {
    margin-bottom: 20px;
    font-size: 4vw;
  }
}
@media screen and (max-width: 480px) {
  .home .banner .banner_inner .banner_head {
    font-size: 6vw;
  }
}
.home .banner .banner_inner .banner_head .en {
  display: block;
  color: #9e9777;
  font-size: 1.4rem;
}
.home .banner .banner_inner p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .home .banner .banner_inner p {
    font-size: 1.6rem;
  }
}
.home .banner .banner01 {
  margin-top: 40px;
  margin-bottom: 30px;
  background: url(../img/index/bg_index_01.png) no-repeat 50% 50%/cover;
}
.home .banner .banner01 figure {
  -ms-flex-preferred-size: 368px;
      flex-basis: 368px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .home .banner .banner01 figure {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    margin-left: 0;
  }
}
.home .banner .banner02 {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  background: url(../img/index/bg_index_02.png) no-repeat 50% 50%/cover;
}
.home .banner .banner02 figure {
  -ms-flex-preferred-size: 360px;
      flex-basis: 360px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 30px;
}
@media screen and (max-width: 768px) {
  .home .banner .banner02 figure {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
    width: 100%;
    margin-right: 0;
  }
}
.home .casualty_insurance {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .home .casualty_insurance {
    margin-bottom: 50px;
  }
}
.home .casualty_insurance .casualty_insurance_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .home .casualty_insurance .casualty_insurance_box {
    margin-bottom: 20px;
  }
}
.home .casualty_insurance .casualty_insurance_box a {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
      flex-basis: calc((100% - 40px) / 3);
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .home .casualty_insurance .casualty_insurance_box a {
    -ms-flex-preferred-size: calc((100% - 20px) / 2);
        flex-basis: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 480px) {
  .home .casualty_insurance .casualty_insurance_box a {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.home .casualty_insurance .casualty_insurance_box a:hover {
  opacity: 0.7;
}
.home .casualty_insurance .casualty_insurance_box figure img {
  vertical-align: bottom;
}
.home .casualty_insurance .casualty_insurance_box .text_box {
  position: relative;
  height: 145px;
  padding: 20px 10px;
  background: #f2f2f3;
}
@media screen and (max-width: 480px) {
  .home .casualty_insurance .casualty_insurance_box .text_box {
    height: auto;
  }
}
.home .casualty_insurance .casualty_insurance_box .text_box::before {
  position: absolute;
  top: -24px;
  right: 0;
  content: "CLICK";
  width: 60px;
  height: 24px;
  background: #009bdf;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
}
.home .casualty_insurance .casualty_insurance_box .text_box h3 {
  color: #032e43;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
}
.home .casualty_insurance .link_btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 480px) {
  .home .casualty_insurance .link_btn_area {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.home .casualty_insurance .link_btn_area a {
  position: relative;
  padding: 20px 90px;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.2;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .home .casualty_insurance .link_btn_area a {
    padding: 24px 90px 16px;
  }
}
@media screen and (max-width: 768px) {
  .home .casualty_insurance .link_btn_area a {
    width: calc((100% - 20px) / 2);
    padding: 20px;
    font-size: 3vw;
  }
}
@media screen and (max-width: 480px) {
  .home .casualty_insurance .link_btn_area a {
    width: 100%;
    font-size: 5vw;
  }
}
.home .casualty_insurance .link_btn_area a::before {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 11px;
  height: 12px;
  background: url(../img/common/ico_arrow.png) no-repeat 0 50%;
  background-size: contain;
}
.home .casualty_insurance .link_btn_area a:first-of-type {
  margin-right: 30px;
  background: #02283b;
}
@media screen and (max-width: 768px) {
  .home .casualty_insurance .link_btn_area a:first-of-type {
    margin-right: 20px;
  }
}
@media screen and (max-width: 480px) {
  .home .casualty_insurance .link_btn_area a:first-of-type {
    margin-right: 0;
    margin-bottom: 20px;
  }
}
.home .casualty_insurance .link_btn_area a:first-of-type:hover {
  background: #04496c;
}
.home .casualty_insurance .link_btn_area a:last-of-type {
  background: #104966;
}
.home .casualty_insurance .link_btn_area a:last-of-type:hover {
  background: #176992;
}
.home .life_insurance .life_insurance_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-left: 410px;
  background: url(../img/index/img_index_08.jpg) no-repeat 0 50%;
  background-size: 348px 230px;
}
@media screen and (max-width: 768px) {
  .home .life_insurance .life_insurance_box {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 12px;
    padding-top: 70.09%;
    background-position: 50% 0;
    background-size: contain;
  }
}
.home .life_insurance .life_insurance_box .life_insurance_inner {
  position: relative;
  width: calc((100% - 30px) / 2);
  margin-top: 30px;
  padding: 40px;
  border-top: 4px solid #009bdf;
  background: #f2f2f3;
}
@media screen and (max-width: 768px) {
  .home .life_insurance .life_insurance_box .life_insurance_inner {
    width: 100%;
  }
}
.home .life_insurance .life_insurance_box .number {
  position: absolute;
  top: -30px;
  left: -12px;
  width: 54px;
  height: 54px;
  color: #fff;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
}
.home .life_insurance .life_insurance_box .number span {
  font-size: 3.2rem;
}
.home .life_insurance .life_insurance_box h3 {
  margin-bottom: 5px;
  color: #032e43;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
}
.home .life_insurance .life_insurance_box p:not(.number) {
  display: inline-block;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .home .life_insurance .life_insurance_box .corporation {
    margin-bottom: 30px;
  }
}
.home .life_insurance .life_insurance_box .corporation .number {
  background: #02283b;
}
.home .life_insurance .life_insurance_box .personal .number {
  background: #104966;
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* overview - 会社概要
------------------------------------------------- */
.overview .main_title {
  background: url(../img/overview/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.overview .greeting {
  margin-bottom: 60px;
}
.overview .greeting .text {
  margin-bottom: 1.5em;
  text-align: left;
}
.overview .greeting .signature {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: right;
}
.overview .overview_detail li {
  margin-bottom: 10px;
  margin-left: 1em;
  text-indent: -1em;
}
.overview .overview_detail li:before {
  content: "・";
}
.overview .overview_detail dl:first-of-type {
  margin-bottom: 20px;
}
.overview .overview_detail dt {
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 6px solid #02283b;
  color: #02283b;
  font-weight: 600;
  line-height: 1.4;
}
.overview .overview_detail dd {
  margin-bottom: 10px;
  margin-left: 1em;
  text-indent: -1em;
}
.overview .overview_detail dd::before {
  content: "・";
}
.overview .map_link {
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .overview .map_link {
    display: block;
    margin-left: 0;
  }
}
.overview .map {
  width: 1040px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .overview .map {
    width: 100%;
    height: 300px;
    padding: 0 20px;
  }
  .overview .map iframe {
    width: 100%;
    height: 100%;
  }
}
.overview .link_box {
  width: 1040px;
  margin: 0 auto;
  padding: 50px 20px;
  border-top: 4px solid #009bdf;
  background: #f2f2f3;
}
@media screen and (max-width: 768px) {
  .overview .link_box {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}
.overview .link_box p {
  margin-bottom: 30px;
  color: #032e43;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.overview .link_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .overview .link_box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.overview .link_box li {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
      flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .overview .link_box li {
    margin-bottom: 20px;
  }
  .overview .link_box li:last-of-type {
    margin-bottom: 0;
  }
}
.overview .link_box a {
  position: relative;
  display: block;
  padding: 20px;
  background: #02283b;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .overview .link_box a {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .overview .link_box a {
    font-size: 1.8rem;
  }
}
.overview .link_box a::before {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 11px;
  height: 12px;
  background: url(../img/common/ico_arrow.png) no-repeat 0 50%;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .overview .link_box a::before {
    left: 20px;
  }
}
.overview .link_box a:hover {
  background: #04496c;
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* overview - 会社概要
------------------------------------------------- */
.recruit .main_title {
  background: url(../img/recruit/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.recruit .greeting {
  margin-bottom: 60px;
}
.recruit .greeting .text {
  margin-bottom: 1.5em;
  text-align: left;
}
.recruit .greeting .signature {
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: right;
}
.recruit .overview_detail li {
  margin-bottom: 10px;
  margin-left: 1em;
  text-indent: -1em;
}
.recruit .overview_detail li:before {
  content: "・";
}
.recruit .overview_detail dl:first-of-type {
  margin-bottom: 20px;
}
.recruit .overview_detail dt {
  margin-bottom: 5px;
  padding-left: 10px;
  border-left: 6px solid #02283b;
  color: #02283b;
  font-weight: 600;
  line-height: 1.4;
}
.recruit .overview_detail dd {
  margin-bottom: 10px;
  margin-left: 1em;
  text-indent: -1em;
}
.recruit .overview_detail dd::before {
  content: "・";
}
.recruit .map_link {
  display: inline-block;
  margin-left: 20px;
}
@media screen and (max-width: 768px) {
  .recruit .map_link {
    display: block;
    margin-left: 0;
  }
}
.recruit .map {
  width: 1040px;
  margin: 0 auto 70px;
}
@media screen and (max-width: 768px) {
  .recruit .map {
    width: 100%;
    height: 300px;
    padding: 0 20px;
  }
  .recruit .map iframe {
    width: 100%;
    height: 100%;
  }
}
.recruit .link_box {
  width: 1040px;
  margin: 0 auto;
  padding: 50px 20px;
  border-top: 4px solid #009bdf;
  background: #f2f2f3;
}
@media screen and (max-width: 768px) {
  .recruit .link_box {
    width: calc(100% - 40px);
    padding: 30px 20px;
  }
}
.recruit .link_box p {
  margin-bottom: 30px;
  color: #032e43;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}
.recruit .link_box ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .recruit .link_box ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.recruit .link_box li {
  -ms-flex-preferred-size: calc((100% - 40px) / 3);
      flex-basis: calc((100% - 40px) / 3);
}
@media screen and (max-width: 768px) {
  .recruit .link_box li {
    margin-bottom: 20px;
  }
  .recruit .link_box li:last-of-type {
    margin-bottom: 0;
  }
}
.recruit .link_box a {
  position: relative;
  display: block;
  padding: 20px;
  background: #02283b;
  color: #fff;
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit .link_box a {
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .recruit .link_box a {
    font-size: 1.8rem;
  }
}
.recruit .link_box a::before {
  position: absolute;
  top: 50%;
  left: 40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 11px;
  height: 12px;
  background: url(../img/common/ico_arrow.png) no-repeat 0 50%;
  background-size: contain;
}
@media screen and (max-width: 480px) {
  .recruit .link_box a::before {
    left: 20px;
  }
}
.recruit .link_box a:hover {
  background: #04496c;
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* policy - 勧誘方針
------------------------------------------------- */
.policy .main_title {
  background: url(../img/policy/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.policy .contents *:not(.contents_title) {
  text-align: left;
}
.policy dl {
  margin-bottom: 50px;
}
.policy dt {
  margin-bottom: 25px;
  padding: 5px 0 5px 1.1em;
  border-top: 1px solid #02283b;
  border-bottom: 1px solid #02283b;
  color: #02283b;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  text-indent: -1.1em;
}
@media screen and (max-width: 768px) {
  .policy dt {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.policy dd {
  margin-bottom: 20px;
}
.policy dd p {
  margin-bottom: 50px;
}
.policy dd li {
  margin-bottom: 10px;
}
.policy dd li:last-of-type {
  margin-bottom: 0;
}
.policy .list_mark {
  margin-left: 1em;
  text-indent: -1em;
}
.policy .list_mark::before {
  content: "・";
}
.policy .authority {
  margin-top: -50px;
  padding-top: 50px;
}
@media screen and (max-width: 768px) {
  .policy .authority {
    margin-top: -80px;
    padding-top: 80px;
  }
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* privacy - プライバシーポリシー
------------------------------------------------- */
.privacy .main_title {
  background: url(../img/privacy/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.privacy .contents *:not(.contents_title) {
  text-align: left;
}
.privacy .lead p:not(:last-of-type) {
  margin-bottom: 1.5em;
}
.privacy dl:not(.purpose_detail) {
  margin-bottom: 50px;
}
.privacy dl:not(.purpose_detail) dt {
  margin-bottom: 25px;
  padding: 5px 0 5px 1.1em;
  border-top: 1px solid #02283b;
  border-bottom: 1px solid #02283b;
  color: #02283b;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 2.4rem;
  text-indent: -1.1em;
}
@media screen and (max-width: 768px) {
  .privacy dl:not(.purpose_detail) dt {
    font-size: 2rem;
    line-height: 1.6;
  }
}
.privacy dl:not(.purpose_detail) dd {
  margin-bottom: 20px;
}
.privacy dl:not(.purpose_detail) dd p {
  margin-bottom: 50px;
}
.privacy dl:not(.purpose_detail) dd ul li {
  margin-bottom: 10px;
}
.privacy dl:not(.purpose_detail) dd ul li:last-of-type {
  margin-bottom: 0;
}
.privacy dl:not(.purpose_detail) dd ol {
  margin-top: 20px;
}
.privacy dl:not(.purpose_detail) dd ol li {
  margin-bottom: 20px;
  margin-left: 1.2em;
  text-indent: -1.2em;
}
.privacy dl:not(.purpose_detail) dd ol li:last-of-type {
  margin-bottom: 0;
}
.privacy .purpose_detail {
  margin-bottom: 50px;
}
.privacy .purpose_detail dt {
  margin-bottom: 20px;
  padding-top: 3px;
  padding-left: 10px;
  border-left: 6px solid #02283b;
  color: #02283b;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .privacy .purpose_detail dt {
    line-height: 1.6;
  }
}
.privacy .purpose_detail ul li {
  margin-bottom: 5px;
}
.privacy .purpose_detail ul li::before {
  content: "・";
}
.privacy .list_mark {
  margin-left: 1em;
  text-indent: -1em;
}
.privacy .list_mark::before {
  content: "・";
}
.privacy .information_desk .head {
  margin-bottom: 20px;
  padding-top: 3px;
  padding-left: 10px;
  border-left: 6px solid #02283b;
  color: #02283b;
  font-family: "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
}

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

		contents.sass

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

------------------------------------------------------------------------- */
/* contact - お問い合わせ
------------------------------------------------- */
.contact .main_title {
  background: url(../img/contact/img_mv.jpg) no-repeat 50% 50%;
  background-size: cover;
}
.contact .contact_top {
  margin-bottom: 30px;
}
.contact .contact_top .text {
  text-align: left;
}
.contact table {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .contact table {
    margin-bottom: 30px;
  }
}
.contact table th {
  width: 300px;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .contact table th {
    width: 100%;
  }
}
.contact table th span {
  float: right;
  margin-top: 3px;
  padding: 2px 10px;
  background: #009bdf;
  color: #fff;
  font-size: 1.2rem;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contact table th span {
    padding: 5px 10px 1px;
  }
}
@media screen and (max-width: 768px) {
  .contact table td {
    padding: 10px 0;
  }
}
.contact table .address td {
  letter-spacing: -0.5em;
}
.contact table .address label {
  display: inline-block;
  width: 8em;
  line-height: 1.2;
  vertical-align: middle;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .contact table .address label {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
}
.contact table .address input {
  width: calc(100% - 8em - 16px);
  vertical-align: middle;
  letter-spacing: normal;
}
@media screen and (max-width: 768px) {
  .contact table .address input {
    width: 100%;
  }
}
.contact .agree_box {
  display: inline-block;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .contact .agree_box {
    margin-bottom: 30px;
  }
}
.contact .agree_box p {
  display: inline-block;
  margin-right: 15px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .contact .agree_box p {
    display: block;
  }
}
.contact .agree_box span {
  display: inline-block;
  margin-top: -2px;
  padding: 2px 10px;
  background: #009bdf;
  color: #fff;
  font-size: 1.2rem;
  vertical-align: middle;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contact .agree_box span {
    padding: 5px 10px 1px;
  }
}
.contact .agree_box input[type=checkbox] {
  display: none;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.contact .agree_box label {
  position: relative;
  display: inline-block;
  padding-left: 25px;
  cursor: pointer;
}
.contact .agree_box label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 14px;
  height: 14px;
  margin-top: -8px;
  background: #fff;
  border: 1px solid #aaa;
}
.contact .agree_box input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 10px;
  left: 3px;
  width: 13px;
  height: 5px;
  border-left: 2px solid #009bdf;
  border-bottom: 2px solid #009bdf;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.contact .box_submit {
  text-align: center;
}
.contact .box_submit .reserve_btn {
  position: relative;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .contact .box_submit .reserve_btn {
    width: 100%;
  }
}
.contact .box_submit .reserve_btn::before {
  position: absolute;
  top: 50%;
  left: 50px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  width: 11px;
  height: 12px;
  background: url(../img/common/ico_arrow.png) no-repeat 0 50%;
  background-size: contain;
}
.contact .box_submit input[type=submit] {
  display: inline-block;
  padding: 10px 100px;
  width: auto;
  background: #02283b;
  color: #fff;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .contact .box_submit input[type=submit] {
    padding: 14px 100px 6px;
  }
}
@media screen and (max-width: 768px) {
  .contact .box_submit input[type=submit] {
    width: 100%;
    padding: 10px;
  }
}
.contact .box_submit input[type=submit]:hover {
  background: #9e9777;
}
.contact .box_submit #submit[disabled] {
  background: #999;
  cursor: default;
}
.contact .box_submit #submit[disabled]:hover {
  background: #999;
}

@media screen and (max-width: 768px) {
  .confirm .contact_table table td {
    padding: 10px;
  }
}
.confirm .box_submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .confirm .box_submit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.confirm .back {
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .confirm .back {
    margin-top: 20px;
    margin-right: 0;
  }
}
.confirm .back input[type=button] {
  display: inline-block;
  padding: 10px 50px;
  width: auto;
  height: 100%;
  background: #aaa;
  color: #fff;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "メイリオ", Meiryo, sans-serif;
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  cursor: pointer;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  .confirm .back input[type=button] {
    display: block;
    width: 100%;
    padding: 10px;
  }
}
.confirm .back input[type=button]:hover {
  background: #999;
}

.thanks a {
  display: inline-block;
  margin-top: 50px;
  padding: 10px 50px;
  background: #02283b;
  color: #fff;
  font-size: 2.4rem;
}
.thanks a:hover {
  background: #9e9777;
}

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

		print.sass

		印刷用のスタイルを定義

------------------------------------------------------------------------- */
@media print {
  /* IE zoom
  ------------------------------------------------- */
  /* for IE6 or older */
  * html body {
    zoom: 0.7;
  }

  /* for IE7 */
  * + html body {
    zoom: 1;
  }
}
/*# sourceMappingURL=style.css.map */