@charset "utf-8";
/* Index
++++++++++++++++++++++++++++++++++++++++
- Foundation
- Layout
- utility
- Styles
  - header
  - main visual
  - navigation
  - section
    - common
    - intro
      - No1
      - Voice
    - content
      - common
      - Kabu
      - FX
      - CFD
  - footer

++++++++++++++++++++++++++++++++++++++++ */


/* Foundation
++++++++++++++++++++++++++++++++++++++++ */

/* reset */
html,
body, article, section, nav, aside, header, footer, address, h1, h2, h3, h4, h5, h6,
p, pre, blockquote, ol, ul, li, dl, dt, dd, figure, figcaption, div, main,
a, em, strong, small, s, cite, q, dfn, abbr, time, code, var, samp, kbd, sub, sup, i, b, u, mark, span,
ins, del,
img, iframe, embed, object, video, audio,
table, caption, tbody, thead, tfoot, tr, td, th,
form, label, output, fieldset, legend,
details, summary,
canvas {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  text-align: inherit;
  vertical-align: baseline;
}

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

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

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

/* initialize */
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.8em;
  text-align: left;
  line-height: 1.5;
  color: #272732;
}

@media (max-width: 767px) {
  body {
    font-size: 1.4em;
  }
}

th, td {
  vertical-align: middle;
}

a {
  color: #272732;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

a:hover {
  opacity: 0.7;
}

b {
  font-weight: bold;
}

img {
  line-height: 1;
  vertical-align: bottom;
}
@media (max-width: 767px) {
  img {
    width: 100%;
  }
}

/* beacon出力のimg要素 レイアウト干渉避け */
body > img[height="1"][width="1"] {
  position: absolute;
  bottom: 0;
  width: 1px;
  height: 1px;
}

/* Layout
++++++++++++++++++++++++++++++++++++++++ */

/* display control */
.l-disp-none-sp {
  display: block;
}
.l-disp-none-pc {
display: none;
}
@media screen and (max-width: 767px) {
  .l-disp-none-pc {
    display: block;
  }
  .l-disp-none-sp {
    display: none;
  }
}

/* wrap */
.wrap-default{
  display: block;
  width: 900px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .wrap-default{
    display: block;
    width: auto;
    /*max-width: 600px;*/
    /*margin: 0 10px;*/
    margin: 0 10px;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  .wrap-default{
    /*margin: 0 auto;*/
  }
}

/* flex */
.l-flex{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
}
.l-flex .col-bottom{
  align-self: flex-end;
}
.l-flex-between{
  justify-content: space-between;
}
.l-flex-center {
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .footer-contact {
    width: 330px;
  }
  .footer-contact img {
    width: 100%;
  }
}

/* utility
++++++++++++++++++++++++++++++++++++++++ */

/* iPhoneX safe area offset */
.u-safeareainset-btm {
  display: block;
  padding-bottom: env(safe-area-inset-bottom);
  visibility: hidden;
}

/* clearfix */
.clearfix:after {
  clear: both;
  display: block;
  content: '';
}

/* color */
.home-color{
  color: #005bac !important;
}
.key-color-01{
  color: #e90012 !important;
}
.key-bgcolor-01{
  background-color: #fff !important;
}
.key-bgcolor-02{
  background-color: #f0f0f0 !important;
}
.key-bgcolor-03{
  background-color: #132d61 !important;
}
.key-bgcolor-04{
  background-color: #e90012 !important;
}

/* list */
.list-note > li{
  font-size: 1.4rem;
  padding-left: 0.75em;
  text-indent: -0.75em;
}
.list-note > li:before{
  content: "※";
}
@media screen and (max-width: 767px) {
  .list-note > li{
    font-size: 1.2rem;
  }
}

/* Styles
++++++++++++++++++++++++++++++++++++++++ */

/* button - kouza */
header .btn-kouza{
  position: fixed;
  top: 90px;
  right: 0;
  z-index: 10;
}
header .btn-kouza a{
  display: block;
}
header .btn-kouza a img{
  width: auto;
  height: auto;
}
main .btn-kouza a{
  display: block;
  width: 904px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  header .btn-kouza{
    position: absolute;
    top: 10px;
    right: 10px;
  }
  header .btn-kouza a img{
    width: auto;
    height: 24px;
  }
  main .btn-kouza a{
    display: block;
    width: calc( 100% - 16px );
    max-width: 604px;
    margin: 0 8px;
  }
}
@media screen and (min-width: 640px) and (max-width: 767px) {
  main .btn-kouza a{
    margin: 0 auto;
  }
}
/* header */
header {
  width: 100%;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.08);
  position: relative;  
}
.header-inner {
  position: relative;
  z-index: 99;
  width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
.header-logo {
  line-height: 20px;
}
.header-logo a {
  display: block;
}
.header-logo a img {
  width: auto;
  height: 20px;
}
.header-txt{
  font-size: 1.3rem;
  line-height: 20px;
  text-align: right;
}
@media screen and (max-width: 767px) {
  header {
    /* position: fixed; */
    width: 100%;
    height: 54px;
    margin: 0 auto;
    padding: 0px 10px;
    box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
  }
  .header-inner {
    width: 100%;
    margin: unset;
    padding: 0 0!important;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header-logo {
    width: 48%;
    max-width: 640px;
    line-height: 24px;
  }
  .header-logo a img {
    width: 100%;
    height: auto;
    vertical-align: middle;
  }
  .btn-koza {
    width: 48%;
    text-align: right;
  }
  .btn-koza img {
  	width: auto;
  	max-width: 100%;
  	max-height: 48px;
  }
}

.btn-koza {
  position: absolute;
  top: 0;
  right: 0;
}
.mv {
  background-image: url(/corp/tool/fxwatch_apple/images/mv-bg-pc.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
  padding: 61px 0 191px;
}
.mv-img {
  position: relative;
	width: 49%;
}
.mv-inner {
  width: 900px;
  margin: 0 auto;
  justify-content: space-between;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: stretch;
}
.mv-ttl {
	width: 49%;
	text-align: center;
}
.mv-ttl-img {
  margin-bottom: 74px;
}
.btn-trial {
  text-align: center;
}
.btn-link {
  display: block;
  width: 124px;
  height: 34px;
  background-image: url(/corp/tool/fxwatch_apple/images/btn-link-off.png);
  margin-top: 31px;
  position: absolute;
  right: 0;
  background-size: cover;
}
.btn-link:hover {
  opacity: unset;
  transition: background 0.4s ease;
  background-image: url(/corp/tool/fxwatch_apple/images/btn-link-on.png);
}
.btn-koza-mv-sub {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  max-width: 640px;
}
.mv-img img:first-child {
  margin-right: 21px;
}
.mv-sub {
  position: relative;
  padding: 268px 0 60px; 
}
.mv-sub-inner {
  width: 900px;
  margin: 0 auto;
  box-shadow: 0px 0px 5px 3px rgba(0, 0, 0, 0.08);
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translate(-50%, -90px);
  background: #FFF;
}
.mv-sub-img {
  background-image: url(/corp/tool/fxwatch_apple/images/mv-sub-watch-img-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 45%;
  height: auto;
  overflow: hidden;
}
.mv-sub-txt{
  font-family: 'Noto Sans JP';
  padding: 46px 62px;
  width: 55%;
	color: #434343;
}
.mv-sub-txt h2 {
  font-size: 40px;
  font-weight: normal; 
}
.mv-sub-txt p {
  font-size: 27px;
  margin-top: 28px;
}
@media screen and (max-width: 767px) {
  .mv {
    padding: 0 0 46%;
    background-image: url(/corp/tool/fxwatch_apple/images/mv-bg-pc.png);
  }
  .mv-inner {
    width: 100%;
    margin: unset;
    display: block;
  }
  .mv-ttl {
    display: block;
    width: auto;
    margin: 0 20px;
    padding: 10% 0 8.8%;
    text-align: center;
  }
  .mv-ttl img {
    width: 80%;
    margin-bottom: 0px;
  }
  .mv-img {
    width: 80%;
    margin: 0 auto;
  }
  .mv-img .mv-img-inner {
    margin-bottom: 8.8%;
    align-items: center;
  }
  .mv-img-left,
  .mv-img-right {
    width: 48%;
  }
  .mv-img img:first-child {
    margin-right: 0px; 
  }
  .btn-trial {
    width: 60%;
    margin: 0 auto;
  }
  .btn-link {
    display: block;
    width: 32%;
    height: auto;
    background-image: url(/corp/tool/fxwatch_apple/images/btn-link-off.png);
    margin-top: 5%;
    position: absolute;
    right: 0;
    background-size: contain;
    background-repeat: no-repeat;
    padding-top: 10%;
  }
  .mv-sub {
    padding: 14% 0 6%; 
  }
  .mv-sub-inner {
    width: 96%;
  }
  .mv-sub-txt {
    width: 53%;
    padding: 10px 0;
  }
  .mv-sub-txt h2 {
    font-size: 1.6rem;
  }
  .mv-sub-txt p {
    font-size: 1.2rem;
    margin-top: 4px;
  }
  .btn-koza-mv-sub {
    width: 90%;
    margin: 0 auto;
  }
}
.sec-watch-settings {
  background: #1f3450;
  padding: 56px 0 60px;
}
.sec-watch-settings h2 {
  font-size: 45px;
  text-align: center;
  color: #FFF;
  margin-bottom: 20px;
  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 600;
}
.sec-watch-settings p.sec-watch-settings-lead {
  font-size: 24px;
  text-align: center;
  color: #FFF;
  margin-bottom: 48px;
}
.sec-watch-settings-list,
.sec-watch-features-list {
  width: 900px;
  margin: 0 auto;
}
.sec-watch-settings-item,
.sec-watch-features-item {
  background: #FFF;
  border-radius: 30px;
  padding: 0 40px;
  margin-bottom: 50px;
}
.sec-watch-settings-item {
  align-items: center;
}
.sec-watch-settings-item .sec-watch-settings-img {
  width: 32%;
  padding-top: 47%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  overflow: hidden;
}
.sec-watch-settings-item:first-child .sec-watch-settings-img {
  background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-settings-img-01.png);
	align-self: stretch;
}
.sec-watch-settings-item:nth-child(2) .sec-watch-settings-img {
  background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-settings-img-02.png);
	align-self: stretch;
}
.sec-watch-settings-item:nth-child(3) .sec-watch-settings-img {
  background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-settings-img-03.png);
	align-self: stretch;
}
.sec-watch-features-item {
  border: 1px solid #999;
}
.sec-watch-features-item:first-child {
  position: relative;
	align-items: center;
}
.sec-watch-features-item:first-child .sec-watch-features-description {
  width: 63%;
}
.sec-watch-features-item:first-child .sec-watch-features-img {
  position: absolute;
	bottom: 0;
  right: 38px;
}
.sec-watch-features-item:nth-child(2),
.sec-watch-features-item:nth-child(4) {
  align-items: center;
  justify-content: space-between;
}
.sec-watch-features-item:nth-child(2) .sec-watch-features-img {
  background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-features-img-02.png);
}
.sec-watch-features-item:nth-child(4) .sec-watch-features-img {
  background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-features-img-04.png);
}
.sec-watch-features-item:nth-child(2) .sec-watch-features-img,
.sec-watch-features-item:nth-child(4) .sec-watch-features-img {
  width: 36%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: auto;
  overflow: hidden;
  padding-top: 40%;
}
.sec-watch-features-item:nth-child(2) .sec-watch-features-description,
.sec-watch-features-item:nth-child(4) .sec-watch-features-description {
  width: 53%;
  padding: 6px 0px;
}
.sec-speed-order {
  padding: 40px 38px;
	align-items: center;
}
.sec-calender {
  padding: 30px 42px 0;
}
.sec-demo {
  padding: 30px 42px 42px;
}
.sec-calender .sec-watch-features-description,
.sec-demo .sec-watch-features-description {
  padding: 0px 0px;
}
.sec-calender img,
.sec-demo img {
  display: block;
  margin: 40px auto 0;
}
.sec-watch-settings-item:last-child,
.sec-watch-features-item:last-child {
  margin-bottom: 0px;
}
.sec-watch-settings-description {
  width: 62%;
}
.sec-watch-settings-description h3 {
  font-family: 'Noto Sans JP';
  font-size: 32px;
  border-bottom: 1px solid #000;
  padding: 0 0 12px;
  margin-bottom: 12px;
}
.sec-watch-settings-description p,
.sec-watch-settings-description ul li {
  font-size: 22px;
	color: #434343;
}
.sec-watch-features-description h3 {
  font-family: 'Noto Sans JP';
  font-size: 32px;
  border-bottom: 1px solid #000;
  padding: 0 0 12px;
  margin-bottom: 12px;
}
.sec-speed-order .sec-watch-features-description h3 {
  border-bottom: unset!important;
  padding: 0 0 0px!important;
  margin-bottom: 0px!important;  
}
.sec-watch-features-description p,
.sec-watch-features-description ul li {
  font-size: 22px;
	color: #434343;
}
section.sec-dl {
  display: block;
  padding: 32px 0 60px;
  text-align: center;
}
.dl-item-wrap {
    margin: 16px 0 50px;
}
.badge-appstore {
  width: 100%;
  height: auto;
  max-width: 259px;
}
.dldemo-qr-appstore {
  margin-left: 45px;
}
.sec-dl h2 {
  font-family: 'Noto Sans JP';
  font-size: 36px;
  margin: 26px 0 14px;
}
.sec-dl-2nd h2 {
  margin: 0px 0 26px;  
}
.sec-dl p {
  font-family: 'Noto Sans JP';
  font-size: 22px;
}
.sec-watch-features {
  background: #e9f1ff;
  padding: 62px 0 56px;
}
.sec-watch-features h2 {
  font-size: 45px;
  text-align: center;
  color: #0e1549;
  margin-bottom: 70px;

  font-family: hiragino-kaku-gothic-pron, sans-serif;
  font-style: normal;
  font-weight: 600;
}
.sec-watch-features-box {
	width: 36%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: cover;
	height: auto;
	overflow: hidden;
	padding-top: 40%;
}
@media screen and (max-width: 767px) {
  .sec-watch-settings {
    padding: 26px 0 36px;
  }
  .sec-watch-settings h2 {
    font-size: 2.0rem;
    margin-bottom: 18px;
  }
  .sec-watch-settings p.sec-watch-settings-lead {
    font-size: 1.4rem;
    margin-bottom: 20px;
  }
  .sec-watch-features {
    padding: 22px 0 26px;
  }
  .sec-watch-features h2 {
    font-size: 2.0rem;
    margin-bottom: 38px;
  }
  .sec-watch-settings-list,
	.sec-watch-features-list {
    width: 100%;
  }
  .sec-watch-settings-item,
  .sec-watch-features-item {
    padding: 0 4px;
    margin-bottom: 20px;
    align-items: center;
    justify-content: space-between;
  }
  .sec-watch-settings-item,
  .sec-watch-features-item {
    border-radius: 15px;
  }
  .sec-watch-settings-item img {
    width: 50%;
  }
  .sec-watch-settings-item .sec-watch-settings-img {
    width: 38%;
    padding-top: 56%;
  }
  .sec-watch-settings-description {
    width: 60%;
    padding: 6px;
  }
  .sec-watch-features-item:first-child .sec-watch-features-description {
  	width: 60%;
  	padding: 12px 6px;
  }
  .sec-watch-features-item:first-child .sec-watch-features-img {
    position: absolute;
    top: unset;
    bottom: 0px;
    right: 4px;
    width: 38%;
  }
	.sec-watch-features-box {
		width: 46%;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
		height: auto;
		overflow: hidden;
		padding-top: 48%;
	}
  .sec-watch-features-item:nth-child(2) .sec-watch-features-img {
    background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-features-img-02.png);
  }
  .sec-watch-features-item:nth-child(4) .sec-watch-features-img {
    background-image: url(/corp/tool/fxwatch_apple/images/sec-watch-features-img-04.png);
  }
  .sec-watch-features-item:nth-child(2) .sec-watch-features-img,
  .sec-watch-features-item:nth-child(4) .sec-watch-features-img {
    width: 46%;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: auto;
    overflow: hidden;
    padding-top: 48%;
  }
  .sec-watch-features-item:nth-child(2) .sec-watch-features-description,
  .sec-watch-features-item:nth-child(4) .sec-watch-features-description {
    width: 53%;
    padding: 6px 0px;
  }
  .sec-watch-features-description {
    width: 60%;
    padding: 6px 0px;
  }
  .sec-watch-settings-description h3,
  .sec-watch-features-description h3 {
    font-size: 1.4rem;
    padding: 0 0 6px;
    margin-bottom: 6px;
  }
  .sec-watch-settings-description p, .sec-watch-settings-description ul li,
  .sec-watch-features-description p, .sec-watch-features-description ul li {
    font-size: 1.1rem;
  }
  .sec-speed-order,
  .sec-demo {
    display: block;
    padding: 8px 20px 12px!important;
  }
  .sec-calender {
    display: block;
    padding: 8px 20px 0px!important;
  }
  .sec-speed-order .sec-watch-features-description,
  .sec-calender .sec-watch-features-description,
  .sec-demo .sec-watch-features-description {
    width: 100%;
    margin-bottom: 14px;
  }
  .sec-speed-order .sec-watch-features-description h3 {
    text-align: center;
  }
  .sec-speed-order img,
  .sec-demo img {
    width: 90%;
    margin: 0 auto;
    display: block;
  }
  .sec-calender img {
    width: 84%;
    margin: 0 auto;
    display: block;
  }
  section.sec-dl {
    padding: 22px 0;
  }
  .icon-app {
    max-width: 74px;
    height: auto;
  }
  .badge-appstore {
    width: 100%;
    height: auto;
    max-width: 130px;
  }
  .dl-item-wrap {
    margin: 18px 0 28px;
  }
  .sec-dl h2 {
    font-size: 1.8rem;
    margin: 12px 0 6px;
  }
  .sec-dl-2nd h2 {
    margin: 0px 0 12px;
  }
  .sec-dl p {
    font-size: 1.1rem;
  }
  .sec-dl .btn-koza-mv-sub {
    width: 100%;
  }
}
.sec-footer {
  background: #e5e5ea;
  padding: 40px 0 60px;
}
.sec-terms-of-use {
  background: #FFF;
  padding: 20px 40px;
  width: 900px;
  margin: 0 auto 40px;
}
.sec-caution {
  background: #FFF;
  padding: 20px 40px;
  width: 900px;
  margin: 0 auto;
}
.sec-terms-of-use h2,
.sec-caution h2 {
  font-size: 28px;
  font-family: 'Noto Sans JP';
  /* color: #000; */
  text-align: center;
  margin-top: 14px;
  margin-bottom: 18px;
}
.sec-terms-of-use h3 {
  font-size: 22px;
  font-family: 'Noto Sans JP';
  /* color: #000; */
  margin-bottom: 2px;
}
.sec-footer-dlist {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.6rem;
}
.sec-footer-dlist dt {
  width: 17%;
  border-top: 1px solid #000;
  padding: 10px 0;
}
.sec-footer-dlist dd {
  width: 83%;
  border-top: 1px solid #000;
  padding: 10px 0;
}
.sec-footer-dlist dt:first-child {
  border-top: 2px solid #000;
}
.sec-footer-dlist dt:first-child + dd {
  border-top: 2px solid #000;
}
.sec-caution p {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .sec-footer {
    padding: 22px 12px;
  }
	.sec-terms-of-use {
    margin: 0 auto 24px;
  }
  .sec-terms-of-use,
  .sec-caution {
    width: 100%;
    padding: 14px 8px;
  }
  .sec-terms-of-use h2, .sec-caution h2 {
    font-size: 1.4rem;
    margin-top: 0px;
    margin-bottom: 6px;
  }
  .sec-terms-of-use h3 {
    font-size: 1.3rem;
    margin-bottom: 4px;
  }
  .sec-footer-dlist {
    font-size: 1.1rem;
  }
  .sec-footer-dlist dt {
    width: 27%;
  }
  .sec-footer-dlist dd {
    width: 73%;
  }
  .sec-footer-dlist dt,
  .sec-footer-dlist dd {
  	padding: 6px 0; 
  }
  .sec-caution p {
    font-size: 1.1rem;
  }
}

/* footer */
footer {
  background: #FFF;
  padding: 10px 0 40px;
}
.footer-list-nonte{
}
.footer-list-nonte dd,
.footer-list-nonte dt{
  line-height: 2.5rem;
}
.footer-list-nonte dt{
  font-size: 1.6rem;
  margin-top: 30px;
  font-weight: bold;
  text-align: left;
}
.footer-list-nonte dt:before{
  content: "【";
}
.footer-list-nonte dt:after{
  content: "】";
}
.footer-list-nonte dd{
  margin-top: 0;
  font-size: 1.4rem;
}
footer address{
  display: flex;
}
.footer-address dt{
}
.footer-address-logo{
  width: 190px;
  height: auto;
}
.footer-address dd{
  width: 540px;
  font-size: 1.2rem;
  margin-top: 16px;
}
.footer-contact{
  margin-top: 0;
}
.copyright{
  padding: 16px 0;
  font-size: 1.3rem;
  text-align: center;
  color: #fff;
}
.btn-top {
  position: fixed;
  right: 1em;
  bottom: 8%;
  width: 54px;
  height: 54px;
  pointer-events: none;
  transform: translateY(260%);
  transition: transform 0.3s ease;
}
.btn-top.is-fixed {
  transform: translateY(0);
}
.btn-top a {
  pointer-events: all;
}
@media screen and (max-width: 767px) {
  footer{
    margin-top: 16px;
    padding: 0px 0 20px;
  }
  .footer-list-nonte dd,
  .footer-list-nonte dt{
    line-height: 1.8rem;
  }
  .footer-list-nonte dt{
    margin-top: 20px;
    font-size: 1.4rem;
    text-align: center;
  }
  .footer-list-nonte dd{
    margin-top: 1.8rem;
    font-size: 1.2rem;
  }
  footer address{
    display: block !important;
  }
  .footer-address-logo{
    width: 180px;
    height: auto;
  }
  .footer-address dd{
    width: auto;
    margin-top: 8px;
  }
  .footer-contact{
    margin-top: 20px;
    text-align: center;
  }
  .copyright{
    padding: 8px 0;
    font-size: 1.0rem;
  }
  .btn-top {
		width: 42px;
		height: 42px;
		right: 10px;
    bottom: 34px;
  }
}

/* animation effect ---------- */
.fadein-effect {
  opacity: 0;
  transform: translateY(40px);
  transition-property: opacity, transform;
  transition-duration: 0.6s;
  transition-timing-function: ease-in;
}

.fadein-effect.-animated {
  opacity: 1;
  transform: translateY(0);
}
.fadein-effect.-delay {
  transition-delay: 0.25s;
}
@media screen and (min-width: 768px) {
  .l-breadcrumb {
    width: 900px;
    padding: 12px 0 0;
  }
}

