@charset "UTF-8";

/**
 * common.css
 *
 * #base
 *  #reset.............リセット用
 *  #default...........要素用
 *
 * #common module
 *  #全ページ共通ヘッダー
 *  #全ページ共通フッター
 *
 * #utility.........ヘルパークラス
 *  #Margin
 *  #Padding
 *  #font
 *  #position
 *  #other.............clearfix等
*/


/* ==========================================================================
   #base
   ========================================================================== */

/* #reset
   ----------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6, p, ul, li {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6, th { font-weight: normal; }

ul { list-style: none; }

strong { font-weight: 600; }



/* #default
   ----------------------------------------------------------------- */
body {
  min-width: 1000px;
  color: #222;
  font-size: 16px;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  line-height: 1.6;
  letter-spacing: 0.18em;
  font-weight: normal;
  font-feature-settings: "palt";
}

a {
  color: #aa9259;
  transition: all 0.8s ease-out;
}

img {
  vertical-align: bottom;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* セレクションのスタイル */
::selection {
  color: #fff;
  background: #2c4978;
}
::-moz-selectio {
  color: #fff;
  background: #2c4978;
}



/* ==========================================================================
   #common module
   ========================================================================== */

/* #全ページ共通パーツ
   ----------------------------------------------------------------- */

/* テキスト関係
----------------------- */
/*ポイント 赤*/
.point-txt { color: #d24c4a; }

/* ページ遷移アニメーション
----------------------- */
body:after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url("../../images/common/logo.svg") no-repeat;
  background-size: 280px;
  background-position: center center;
  background-color: #f6f8fb;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 99999;
}

/* IE10対策 */
_:-ms-lang(x), body:after {
  height: 0\9;
}

body.js-fadeout:after { opacity: 1; }

/* IE10対策 */
_:-ms-lang(x), body.js-fadeout:after {
  height: 100%\9;
}

/* 流れるエフェクト
----------------------- */
.block-revealer__element {  
  position: absolute;  
  top: 0;  
  left: 0;  
  width: 100%;  
  height: 100%;  
  background: #000;  
  pointer-events: none;  
  opacity: 0;  
}

/* 出現エフェクト
----------------------- */
.js-fadein {
  opacity: 0;
  transform: translateY(10px);
  transition: all 1.0s;
}

/* SVG
----------------------- */
.logo-svg-path { fill:#1c2a41; }

/* #全ページ共通ヘッダー
   ----------------------------------------------------------------- */
.l-header {
  position: relative;
  padding-top: 30px;
  z-index: 1000;
}

/* 固定ヘッダー */
.l-header-flow {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: none;
  padding: 15px 0;
  background-color: #fff;
  box-shadow: 2.237px 3.316px 20px 0px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transition: opacity 0.2s ease-out;
}

.header-inner {
  overflow: hidden;
  width: 1000px;
  margin: 0 auto;
}

.header-logo {
  float: left;
  padding-top: 3px;
  font-size: 0;
  width: 268px;
  height: 34px;
  margin: 0 auto;
}

.header-logo .logo-svg-path { transition: all 0.5s ease-out; }

.header-logo:hover .logo-svg-path { fill: #aa9259; }

.header-menu { float: right; }

.header-menu-list { overflow: hidden; }

.header-menu-list-item {
  float: left;
  margin-right: 40px;
  line-height: 1;
  letter-spacing: 0.08em;
}

.header-menu-list-item a {
  position: relative;
  display: block;
  padding: 14px 0;
  color: #222;
  font-size: 12px;
  text-decoration: none;
}

.header-menu-list-item a:hover { color: #aa9259; }

.header-menu-list-item a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 1px;
  background: #aa9259;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: all 0.5s ease-out;
}

.header-menu-list-item a:hover:after { transform: scale(1, 1); }

/* ご相談予約 */
.header-menu-list-item-appointment {
  float: left;
  line-height: 1;
  letter-spacing: 0.08em;
}

.header-menu-list-item-appointment a {
  position: relative;
  display: block;
  width: 120px;
  padding: 13px 0;
  color: #fff;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  background-image: linear-gradient(to right, #aa9259 120px, transparent 120px);
  background-position: 0 0;
  background-size: 240px auto;
  border: 1px solid #aa9259;
}

.header-menu-list-item-appointment a:hover {
  background-position: 120px 0;
  color: #aa9259;
}

/* #アクセス
   ----------------------------------------------------------------- */
.l-access { padding: 120px 0 180px; }

.access-inner {
  width: 1000px;
  margin: 0 auto;
}

.access-info {
  overflow: hidden;
  margin-bottom: 60px;
}

.access-info-left { float: left; }

.access-info-right { float: right; }

.access-ttl {
  margin-bottom: 20px;
  color: #2c4978;
  font-size: 32px;
  line-height: 1;
}

.access-ttl-en {
  color: #aa9259;
  font-size: 20px;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.access-pos {
  margin: -4px 0 36px;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.12em;
}

.access-list {
  overflow: hidden;
  margin: 0;
}

.access-list-ttl {
  clear: left;
  float: left;
  width: 186px;
  margin-bottom: 20px;
  padding: 8px 0;
  color: #2c4978;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.12em;
  text-align: center;
  background-color: #f6f8fb;
}

.access-list-data {
  float: left;
  margin: 0 0 20px 20px;
  font-size: 14px;
  line-height: 2.1428571429;
  letter-spacing: 0.12em;
}

.access-map {
  width: 100%;
  height: 500px;
}

.access-map iframe,
.access-map object,
.access-map embed {
  filter: grayscale(100%);
}


/* #CTA
   ----------------------------------------------------------------- */
.l-cta {
  position: relative;
  text-align: center;
  background: url("../../images/cta/bg_cta.jpg") no-repeat;
  background-position: center center;
  background-size: cover;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2) { 
  .l-cta {
    background: url("../../images/cta/bg_cta@2x.jpg") no-repeat;
    background-position: center center;
    background-size: cover;
  }
}

.l-cta:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(18,31,53,0.9);
}

.cta-inner {
  position: relative;
  width: 1000px;
  height: 426px;
  padding: 122px;
  margin: 0 auto;
}

.cta-pagetop {
  position: absolute;
  bottom: -35px;
  right: 0;
  width: 70px;
  height: 70px;
  padding-top: 32px;
  color: #2c4978;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  background-color: #fff;
  border-radius: 35px;
  box-shadow: 2.237px 3.316px 20px 0px rgba(0, 0, 0, 0.05);
}

.cta-pagetop:before {
  content: "";
  position: absolute;
  top: 18px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -4px;
  border-top: 1px solid #2c4978;
  border-left: 1px solid #2c4978;
  transform: rotate(45deg);
  transition: all 0.5s ease-out;
}

.cta-pagetop:hover {
  color: #fff;
  background-color: #2c4978;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cta-pagetop:hover:before {
  border-color: #fff;
}

.cta-txt {
  margin-bottom: 40px;
  color: #fff;
  font-size: 24px;
  line-height: 2;
  letter-spacing: 0.24em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.cta-link {
  display: block;
  width: 240px;
  margin: 0 auto;
  padding: 22px 0;
  color: #fff;
  font-size: 16px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  text-decoration: none;
  background-image: linear-gradient(to right, #aa9259 50%, #fff 50%);
  background-position: 0 0;
  background-size: 200% auto;
}

.cta-link:hover {
  background-position: -100% 0;
  color: #aa9259;
}

/* #全ページ共通フッター
   ----------------------------------------------------------------- */
.l-footer {  }

.footer-inner {
  overflow: hidden;
  width: 1000px;
  margin: 0 auto;
  padding: 80px 0;
}

.footer-left { float: left; }

.footer-logo {
  width: 320px;
  height: 42px;
  margin-bottom: 26px;
}

.footer-logo .logo-svg-path { transition: all 0.5s ease-out; }

.footer-logo:hover .logo-svg-path { fill: #aa9259; }

.footer-list {
  overflow: hidden;
  margin: 0;
  font-size: 14px;
  line-height: 1.4285714286;
  letter-spacing: 0.06em;
}

.footer-list-ttl {
  clear: left;
  float: left;
  width: 66px;
}

.footer-list-data {
  float: left;
  margin: 0 0 12px;
  padding: 0;
}

.footer-list-data a:hover { color: #2c4978; }

.footer-right {
  overflow: hidden;
  float: right;
  width: 590px;
}

.footer-menu-wrap { float: left; }

.footer-menu-wrap.business { margin: 0 -40px 50px 0; }

.footer-menu-wrap.office { width: 210px; }

.footer-menu-wrap.consultation {
  width: 210px;
  margin-right: -40px;
}

.footer-menu-ttl {
  margin-bottom: 20px;
  padding: 0 10px;
  color: #2c4978;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.08em;
}

.footer-menu-list {
  overflow: hidden;
  padding-top: 1px;
}

.footer-menu-list-item {
  position: relative;
  float: left;
  width: 170px;
  margin: -1px 40px 0 0;
  border-top: 1px solid #ebebeb;
  border-bottom: 1px solid #ebebeb;
}

.footer-menu-list-item:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  width: 4px;
  height: 4px;
  margin-top: -3px;
  border-right: 1px solid #aa9259;
  border-bottom: 1px solid #aa9259;
  transform: rotate(-45deg);
  transition: all 0.2s ease-out;
}

.footer-menu-list-item:hover:before { right: 8px; }

.footer-menu-list-item a {
  display: block;
  padding: 10px;
  color: #222;
  font-size: 14px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-menu-list-item a:hover { color: #aa9259; }

.footer-copyright small {
  display: block;
  padding: 9px 0;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  letter-spacing: 0.08em;
  text-align: center;
  background-color: #2c4978;
}


/* ==========================================================================
   #utility
   ========================================================================== */

/* #Margin
   ----------------------------------------------------------------- */
.m0{ margin:0!important; }

.mr0 { margin-right: 0!important; }
.mr5 { margin-right: 5px!important; }
.mr10 { margin-right: 10px!important; }
.mr15 { margin-right: 15px!important; }
.mr20 { margin-right: 20px!important; }
.mr25 { margin-right: 25px!important; }
.mr30 { margin-right: 30px!important; }
.mr35 { margin-right: 35px!important; }
.mr40 { margin-right: 40px!important; }
.mr45 { margin-right: 45px!important; }
.mr50 { margin-right: 50px!important; }

.ml0 { margin-left: 0!important; }
.ml5 { margin-left: 5px!important; }
.ml10 { margin-left: 10px!important; }
.ml15 { margin-left: 15px!important; }
.ml20 { margin-left: 20px!important; }
.ml25 { margin-left: 25px!important; }
.ml30 { margin-left: 30px!important; }
.ml35 { margin-left: 35px!important; }
.ml40 { margin-left: 40px!important; }
.ml45 { margin-left: 45px!important; }
.ml50 { margin-left: 50px!important; }

.mt0 { margin-top: 0!important; }
.mt5 { margin-top: 5px!important; }
.mt10 { margin-top: 10px!important; }
.mt15 { margin-top: 15px!important; }
.mt20 { margin-top: 20px!important; }
.mt25 { margin-top: 25px!important; }
.mt30 { margin-top: 30px!important; }
.mt35 { margin-top: 35px!important; }
.mt40 { margin-top: 40px!important; }
.mt45 { margin-top: 45px!important; }
.mt50 { margin-top: 50px!important; }

.mb0 { margin-bottom: 0!important; }
.mb1 { margin-bottom: 1px!important }
.mb2 { margin-bottom: 2px!important }
.mb3 { margin-bottom: 3px!important }
.mb4 { margin-bottom: 4px!important }
.mb5 { margin-bottom: 5px!important }
.mb10 { margin-bottom: 10px!important; }
.mb15 { margin-bottom: 15px!important; }
.mb20 { margin-bottom: 20px!important; }
.mb25 { margin-bottom: 25px!important; }
.mb30 { margin-bottom: 30px!important; }
.mb35 { margin-bottom: 35px!important; }
.mb40 { margin-bottom: 40px!important; }
.mb45 { margin-bottom: 45px!important; }
.mb50 { margin-bottom: 50px!important; }


/* #Padding
   ----------------------------------------------------------------- */
.p0{ padding: 0!important; }

.pr0 { padding-right: 0!important; }
.pr5 { padding-right: 5px!important; }
.pr10 { padding-right: 10px!important; }
.pr15 { padding-right: 15px!important; }
.pr20 { padding-right: 20px!important; }
.pr25 { padding-right: 25px!important; }
.pr30 { padding-right: 30px!important; }
.pr35 { padding-right: 35px!important; }
.pr40 { padding-right: 40px!important; }
.pr45 { padding-right: 45px!important; }
.pr50 { padding-right: 50px!important; }

.pl0 { padding-left: 0!important; }
.pl5 { padding-left: 5px!important; }
.pl10 { padding-left: 10px!important; }
.pl15 { padding-left: 15px!important; }
.pl20 { padding-left: 20px!important; }
.pl25 { padding-left: 25px!important; }
.pl30 { padding-left: 30px!important; }
.pl35 { padding-left: 35px!important; }
.pl40 { padding-left: 40px!important; }
.pl45 { padding-left: 45px!important; }
.pl50 { padding-left: 50px!important; }

.pt0 { padding-top: 0!important; }
.pt1 { padding-top: 1px!important; }
.pt2 { padding-top: 2px!important; }
.pt3 { padding-top: 3px!important; }
.pt4 { padding-top: 4px!important; }
.pt5 { padding-top: 5px!important; }
.pt10 { padding-top: 10px!important; }
.pt15 { padding-top: 15px!important; }
.pt20 { padding-top: 20px!important; }
.pt25 { padding-top: 25px!important; }
.pt30 { padding-top: 30px!important; }
.pt35 { padding-top: 35px!important; }
.pt40 { padding-top: 40px!important; }
.pt45 { padding-top: 45px!important; }
.pt50 { padding-top: 50px!important; }

.pb0 { padding-bottom: 0!important; }
.pb1 { padding-bottom: 1px!important; }
.pb2 { padding-bottom: 2px!important; }
.pb3 { padding-bottom: 3px!important; }
.pb4 { padding-bottom: 4px!important; }
.pb5 { padding-bottom: 5px!important; }
.pb10 { padding-bottom: 10px!important; }
.pb15 { padding-bottom: 15px!important; }
.pb20 { padding-bottom: 20px!important; }
.pb25 { padding-bottom: 25px!important; }
.pb30 { padding-bottom: 30px!important; }
.pb35 { padding-bottom: 35px!important; }
.pb40 { padding-bottom: 40px!important; }
.pb45 { padding-bottom: 45px!important; }
.pb50 { padding-bottom: 50px!important; }





/* #font
   ----------------------------------------------------------------- */
.tc { text-align: center; }
.tl { text-align: left; }
.tr { text-align: right; }

.tdu { text-decoration: underline; }

.lh10 { line-height: 1em; }
.lh15 { line-height: 1.5em; }
.lh2 { line-height: 2em; }
.lh3 { line-height: 3em; }

.vm { vertical-align: middle; }
.vt { vertical-align: top; }

.fs08 { font-size: 0.8em; }
.fs09 { font-size: 0.9em; }
.fs1 { font-size: 1em; }
.fs11 { font-size: 1.1em; }
.fs12 { font-size: 1.2em; }
.fs13 { font-size: 1.3em; }

.bn { border:none; }
.bbn { border-bottom: none; }
.bol { font-weight: 600; }





/* #position
   ----------------------------------------------------------------- */
.relative { position: relative; }
.absolute { position: absolute; }

/* float解除 */
.cb { clear:both; }

/* float */
.fl-left { float: left; }
.fl-right { float: right; }





/* #other
   ----------------------------------------------------------------- */
.oh { overflow: hidden; }
.di { display: inline; }
.db { display: block; }

.clearfix:before, .clearfix:after {
  content:"";
  display:table;
}

.clearfix:after { clear:both; }
.clearfix { zoom: 1; } /* For IE 6/7 */