@charset "UTF-8";
/*
共通レイアウト
*/
body {
  font-size: 16px;
  letter-spacing: 0.08em;
}

#wrapper {
  min-width: 1100px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  #wrapper {
    min-width: auto;
  }
}

/*
共通カラー
*/
.color01 {
  background-color: #1a0083;
}

.color02 {
  background-color: #6098a8;
}

/*

共通建組み見出し
*/
.h2-ttl01, .h3-ttl01 {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-align: left;
  display: inline-block;
  position: relative;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .h2-ttl01, .h3-ttl01 {
    font-size: 20px;
  }
}

.h2-ttl01:after, .h3-ttl01:after {
  content: "";
  display: block;
  width: 1px;
  height: 70px;
  background-color: #000000;
  position: absolute;
  bottom: -90px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media screen and (max-width: 768px) {
  .h2-ttl01:after, .h3-ttl01:after {
    top: 50%;
    left: calc(100% + 48px);
    width: 70px;
    height: 1px;
  }
}

@-moz-document url-prefix() {
  .h2-ttl01:after, .h3-ttl01:after {
    left: 36%;
  }
}

.h3-ttl01 {
  display: block;
}

.h3-ttl01:after {
  display: none;
}

.h3-ttl02 {
  font-size: 20px;
  font-weight: 600;
}

/*
共通建組み数字修正
*/
.txc, .txc01, .txc02 {
  text-combine-upright: all;
  font-family: serif;
  -webkit-writing-mode: horizontal-tb;
      -ms-writing-mode: lr-tb;
          writing-mode: horizontal-tb;
  letter-spacing: 0;
  line-height: 1.2;
}

.txc01 {
  margin-bottom: -3px;
}

.txc01:last-of-type {
  margin-bottom: 4px;
}

.txc02 {
  margin-bottom: 3px;
}

/*
共通建組み本文
*/
.txt01 {
  font-size: 16px;
  line-height: 2;
  font-weight: 400;
  text-align: left;
  text-align: justify;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media screen and (max-width: 768px) {
  .txt01 {
    font-size: 14px;
  }
}

.rl {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 768px) {
  .rl {
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

/*
括弧の字間調整
*/
.b-fix01 {
  margin-top: -13px;
}

_::-webkit-full-page-media, _:future, :root .b-fix01 {
  margin-top: 0;
}

.b-fix02 {
  margin: -10px 0 -8px 0;
}

_::-webkit-full-page-media, _:future, :root .b-fix02 {
  margin: 0;
}

.b-fix03 {
  margin: -4px 0 -8px 0;
}

_::-webkit-full-page-media, _:future, :root .b-fix03 {
  margin: 0;
}

/*
共通ボタン
*/
.btn:hover {
  text-decoration: none;
  opacity: 1;
}

.btn01, .btn02 {
  position: relative;
  width: 220px;
  height: 60px;
  border: 1px solid #000000;
  background-color: #ffffff;
  font-weight: 600;
  color: #000000;
  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;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media screen and (max-width: 768px) {
  .btn01, .btn02 {
    height: 65px;
  }
}

.btn01:hover, .btn02:hover {
  background-color: #000000;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn01:hover:before, .btn02:hover:before {
  background-color: #ffffff;
}

.btn01:before, .btn02:before {
  content: "";
  display: block;
  width: 50px;
  height: 1px;
  background-color: #000000;
  position: absolute;
  right: -35px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

.btn02 {
  border: 1px solid #000000;
  color: #000000;
  margin: 0 auto;
}

/*
共通コンテンツ幅
*/
.inner {
  max-width: 1100px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .inner {
    padding: 0 5%;
  }
}

.inner700 {
  max-width: 700px;
  margin: 0 auto;
}

/*
ページトップ
*/
.pagetop {
  position: fixed;
  right: 3%;
  bottom: 55px;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.2s ease-out;
  transition: all 0.2s ease-out;
  z-index: 150;
}

@media screen and (max-width: 768px) {
  .pagetop {
    right: 0;
    bottom: 45px;
  }
}

.pagetop.active {
  visibility: visible;
  opacity: 1;
}

/*
共通ヘッダー
*/
.header {
  background-color: #ffffff;
}

.header .header__inner {
  padding: 0 5%;
  min-height: 100px;
  justify-self: center;
  position: relative;
  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;
}

@media screen and (max-width: 768px) {
  .header .header__inner {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    min-height: 136px;
    padding: 15px 5% 18px;
  }
}

.header .header__inner .header__txt-area {
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__txt-area {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.header .header__inner .header__txt-area:hover {
  text-decoration: none;
}

.header .header__inner .header__txt-area .header__address {
  font-size: 12px;
  display: block;
  margin: 12px 0 0 0;
  font-weight: 400;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__txt-area .header__address {
    font-size: 10px;
    margin: 4px 0 0 0;
  }
}

.header .header__inner .header__logo {
  width: 78px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__logo {
    top: auto;
    bottom: 18px;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.header .header__inner .header__link-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__link-list .header__link-item {
    width: 20px;
  }
}

.header .header__inner .header__link-list .header__link-item:not(:last-child) {
  margin: 0 40px 0 0;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__link-list .header__link-item:not(:last-child) {
    margin: 0 20px 0 0;
  }
}

.header .header__inner .header__link-list .header__link-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header .header__inner .header__link-list .header__link-item a:hover {
  text-decoration: none;
}

.header .header__inner .header__link-list .fa-instagram {
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__link-list .fa-instagram {
    font-size: 20px;
  }
}

.header .header__inner .header__link-list .fa-facebook {
  font-size: 28px;
}

@media screen and (max-width: 768px) {
  .header .header__inner .header__link-list .fa-facebook {
    font-size: 20px;
  }
}

/*
共通フッター
*/
.footer {
  padding: 33px 0 24px 0;
  text-align: center;
  background-color: #000000;
}

@media screen and (max-width: 768px) {
  .footer {
    padding: 20px 0;
  }
}

.footer .footer__logo {
  margin: 0 0 15px 0;
}

@media screen and (max-width: 768px) {
  .footer .footer__logo {
    margin: 0 0 10px 0;
  }
}

@media screen and (max-width: 768px) {
  .footer .footer__logo img {
    width: 120px;
  }
}

.footer .footer__copy {
  color: #FFFFFF;
  font-size: 12px;
}

@media screen and (max-width: 768px) {
  .footer .footer__copy {
    font-size: 10px;
  }
}

/*
共通タイトル
*/
/*
共通パンくず
*/
a {
  text-decoration: none;
  color: #000000;
  -webkit-transition: all .3s;
  transition: all .3s;
}

a:hover {
  text-decoration: underline;
  cursor: pointer;
  opacity: .7;
}

.pc {
  display: block;
}

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

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
/*# sourceMappingURL=common_layout.css.map */