@charset "UTF-8";
/* 
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 {
  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 {
  display: block;
}

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

/* 追加設定
----------------------------------------------- */
* {
  box-sizing: border-box;
}

img {
  max-width: 100%;
}

/*===========================================================*/
/*機能編 4-2-4　背景色が伸びる（左から右）　 */
/*===========================================================*/
/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999999;
  text-align: center;
  background: #C6C6C4;
}
#splash .progress-container {
  width: 100%;
  background-color: #ccc;
  height: 5px;
}
#splash .progress-container .progress-bar {
  width: 0;
  height: 100%;
  background-color: #333333;
  border-radius: 5px;
}

#splash-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  padding: 20px;
}
#splash-logo img {
  width: 55px;
}
@media screen and (max-width: 767px) {
  #splash-logo img {
    width: 45px;
  }
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

body.appear .splashbg {
  display: block;
  content: "";
  position: fixed;
  z-index: 9999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #333333;
  /*伸びる背景色の設定*/
  animation-name: PageAnime;
  animation-duration: 0.6s;
  animation-timing-function: ease-in-out;
  animation-fill-mode: forwards;
}

@keyframes PageAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#main_content {
  opacity: 0;
}

/*bodyにappearクラスがついたら出現*/
body.appear #main_content {
  animation-name: PageAnimeAppear;
  animation-duration: 1s;
  animation-delay: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*==================================================
　5-2-6 3本線が回転して×に
===================================*/
/*========= ボタン ===============*/
#humberger {
  position: fixed;
  width: 50px;
  height: 50px;
  z-index: 2000;
  top: 15px;
  right: 15px;
  cursor: pointer;
}

/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.openbtn6 {
  position: relative;
  /*ボタン内側の基点となるためrelativeを指定*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*ボタン内側*/
.openbtn6 span {
  display: inline-block;
  transition: all 0.4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #333;
}

.openbtn6 span:nth-of-type(1) {
  top: 15px;
  width: 45%;
}

.openbtn6 span:nth-of-type(2) {
  top: 23px;
  width: 35%;
}

.openbtn6 span:nth-of-type(3) {
  top: 31px;
  width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/
.openbtn6.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-135deg);
  width: 30%;
}

.openbtn6.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn6.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(135deg);
  width: 30%;
}

/*========= メニュー画面 ===============*/
#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 1010;
  top: 0;
  left: 0;
  background: url("../images/common/bg.png") repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  left: 0;
}

/* 共通設定
----------------------------------------------- */
@media print, screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
body {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  background: url("../images/common/bg.png") repeat;
  color: #000000;
  overflow-x: clip;
}

img {
  max-width: 100%;
}

p {
  line-height: 1.8;
  text-shadow: 1px 1px #e5e5e5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  p {
    font-weight: normal;
  }
}

a {
  color: #000000;
  text-decoration: none;
}

ul {
  list-style: none;
}

.flex {
  display: flex;
}

.layout-flex {
  display: flex;
  justify-content: end;
  position: relative;
}
.layout-flex .main-column {
  width: calc(100% - 230px);
}
@media screen and (max-width: 767px) {
  .layout-flex .main-column {
    width: 100%;
  }
}

/* ヘッダー
----------------------------------------------- */
header {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1020;
}
@media screen and (max-width: 767px) {
  header {
    position: fixed;
  }
}
header h1.logo {
  text-align: center;
  padding: 50px 0;
}
@media screen and (max-width: 767px) {
  header h1.logo {
    padding: 25px 10px;
  }
  header h1.logo img {
    width: 200px;
  }
}

/* グローバルナビ
    ----------------------------------------------- */
ul.main_nav {
  padding-left: 20px;
  padding-bottom: 70px;
}
@media screen and (max-width: 767px) {
  ul.main_nav {
    padding-top: 20px;
    padding-left: 0;
    padding-bottom: 0;
    font-size: 20px;
  }
}
ul.main_nav li {
  margin-bottom: 24px;
  letter-spacing: 0.05em;
}
ul.main_nav li a {
  text-shadow: 1px 1px #e5e5e5;
}
ul.main_nav li a.sub_nav_title {
  font-size: 12px;
  color: #1a1a1a;
  text-shadow: 1px 1px #e5e5e5;
}
ul.main_nav li ul.sub_nav {
  margin-top: 20px;
  margin-left: 20px;
  margin-bottom: 30px;
}
ul.main_nav li .sns {
  display: flex;
  padding-top: 30px;
}
ul.main_nav li .sns .facebook,
ul.main_nav li .sns .instagram {
  margin-right: 25px;
}

/*サブページカバー
----------------------------------------------- */
.sub_cover {
  position: relative;
  height: 348px;
}
.sub_cover .page_title {
  text-indent: -999px;
}
@media screen and (max-width: 767px) {
  .sub_cover {
    background-size: cover;
  }
}

/* パンくずナビ
----------------------------------------------- */
.bread .breadcrumbs {
  max-width: 960px;
  margin: 0 auto;
  padding: 20px 0;
}
.bread .breadcrumbs span {
  font-size: 14px;
  font-weight: bold;
  text-shadow: 1px 1px #e5e5e5;
}
.bread .breadcrumbs span a:hover {
  color: #099DA6;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .bread .breadcrumbs span {
    font-weight: normal;
    line-height: 1.4;
  }
}
@media screen and (max-width: 767px) {
  .bread {
    width: 100%;
  }
}

/* コンテンツ部分の囲み
----------------------------------------------- */
div.container {
  min-height: 300px;
}

.wrapper {
  max-width: 960px;
  margin: 0 auto;
}
@media screen and (max-width: 1400px) {
  .wrapper {
    margin-right: 100px;
  }
}
@media screen and (max-width: 1285px) {
  .wrapper {
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 0 15px;
  }
}

section {
  padding: 40px 0;
}

/* サブタイトル
----------------------------------------------- */
.sub_title {
  font-size: 24px;
  text-shadow: 1px 1px #e5e5e5;
  text-align: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .sub_title {
    font-size: 20px;
  }
}

.sub_title:after {
  content: "";
  width: 60px;
  height: 2px;
  background: #707070;
  display: block;
  margin: 25px auto 0;
}

.index {
  font-size: 20px;
  font-weight: bold;
  text-shadow: 1px 1px #e5e5e5;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .index {
    font-weight: normal;
  }
}

/* ボタン
----------------------------------------------- */
.btn {
  text-align: center;
}
.btn a {
  position: relative;
  display: inline-block;
  width: 300px;
  height: 80px;
  line-height: 80px;
  text-shadow: 1px 1px #e5e5e5;
  font-weight: bold;
  border: solid 1px #7d7d7d;
  margin: 0 15px;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .btn a {
    width: 300px;
    height: 80px;
    line-height: 80px;
    font-weight: normal;
    margin-bottom: 15px;
  }
}
.btn a:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 40px 0 0;
  border-color: #C2C2C1 transparent transparent transparent;
}
.btn a:after {
  content: "";
  position: absolute;
  top: -6px;
  left: 5px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 0 35px 25px;
  border-color: transparent transparent #9fa09f transparent;
  box-shadow: 2px 2px 2px 1px rgba(0, 0, 0, 0.15);
  transform: rotate(16deg);
}
.btn a:hover {
  background-color: #231815;
}

/* フッター
----------------------------------------------- */
footer {
  padding: 100px 0 50px;
  text-align: center;
  /* ページトップ
  ----------------------------------------------- */
}
footer .pagetop {
  position: fixed;
  bottom: 0;
  right: 0;
}
footer .f_logo {
  margin-bottom: 20px;
}
footer .f_info {
  font-size: 16px;
  line-height: 1.6;
  text-shadow: 1px 1px #e5e5e5;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  footer .f_info {
    font-size: 14px;
  }
}
footer .copy {
  font-size: 12px;
  padding-bottom: 15px;
}/*# sourceMappingURL=common.css.map */