/*
* Theme Name: HTMLレイアウト LPテンプレート共通CSS
* Theme URI:
* Description: ４ブランド共通で使うスタイル
* Created Date: 2019.03.01
* Update Date: 2022.02.19
*/

/*------------------------------------
  Color
------------------------------------*/
body {
  color: #000;
}

/*------------------------------------
  Font
------------------------------------*/
body {
  /* win:游ゴシック優先、mac:ヒラギノ角ゴシック優先 */
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', YuGothic, 'Yu Gothic', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif, 'Avenir', 'Helvetica Neue', 'Helvetica', 'Arial';
  font-size: 18px;
  letter-spacing: -0.05em;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 100;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 200;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 300;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}

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

body {
  height: 100%;
  margin: 0;
}

a {
  color: inherit;
  cursor: pointer;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
}

/*------------------------------------
  Text
------------------------------------*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
th,
td,
dt,
dd {
  line-height: 1.2;
  margin: 0;
  padding: 0;
}

/*------------------------------------
  breadcrumb
------------------------------------*/
.breadcrumb-list{
  width: 1000px;
  margin: 0 auto;
  padding: 5px 0 5px 10px;
  display: flex;
  list-style: none;
}

.breadcrumb-list-text-underline{
  text-decoration: underline;
}

.breadcrumb-list-item:not(:last-child)::after {
  content: ">";
}

/*------------------------------------
  SNS
------------------------------------*/
.button-sns-share {
  margin: 20px auto 30px;
  width: 1000px;
}

.sns-item {
  display: flex;
  justify-content: center;
}

.sns-item a {
  margin-right: 20px;
}

.sns-item a:last-of-type {
  margin-right: 0;
}

.sns-item img {
  width: 70px;
}

/*------------------------------------
  sns
------------------------------------*/
.sns-container {
  display: flex;
  justify-content: center;
}

.sns-img {
  margin: 0 10px;
  width: 70px;
}

/*------------------------------------
  To top
------------------------------------*/
.global-page-top-button .page-top {
  margin: 0;
  padding: 0;
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 9999;
}

.global-page-top-button .page-top {
  display: block;
  background: #009380;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50px;
  color: #fff;
  line-height: 50px;
  text-decoration: none;
  text-align: center;
  transition: all 0.3s;
}
