@charset "UTF-8";
/* ==========*==========*==========*==========
リセット
==========*==========*==========*========== */
*,
:before,
:after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-print-color-adjust: exact;
}

html {
  scroll-padding-top: 50px;
  font-size: 16px;
}
@media print, screen and (min-width: 1200px) {
  html {
    scroll-padding-top: 80px;
  }
}
@media print, screen and (min-width: 768px) {
  html {
    font-size: 17px;
  }
}
@media print, screen and (min-width: 1200px) {
  html {
    font-size: 18px;
  }
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 1.6;
  color: #333;
  text-align: justify;
  text-justify: inter-ideograph;
  letter-spacing: 0;
  background: #DDDDDD;
}

p {
  margin: 0;
  margin-bottom: 0.75em;
}
@media print, screen and (min-width: 960px) {
  p {
    margin-bottom: 1em;
  }
}

a {
  color: #000000;
  text-decoration: none;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
a:hover {
  opacity: 0.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  margin: 1em 0 0.25em;
  line-height: 1.4;
  font-weight: bold;
}

strong,
mark,
em {
  padding: 0 0.5em;
  font-weight: bold;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, rgba(247, 226, 32, 0.5)), color-stop(90%, rgba(247, 226, 32, 0.5)));
  background: linear-gradient(transparent 50%, rgba(247, 226, 32, 0.5) 50%, rgba(247, 226, 32, 0.5) 90%);
}

em {
  font-weight: bold;
  font-style: italic;
}

sup {
  line-height: 1;
  vertical-align: text-top;
}

sub {
  line-height: 1;
  vertical-align: text-bottom;
}

s {
  color: rgba(51, 51, 51, 0.7);
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

figure {
  margin: 0;
}

ul,
ol {
  padding-left: 1.2em;
  margin: 0;
  margin-bottom: 0.5em;
  line-height: 1.4;
}
@media print, screen and (min-width: 960px) {
  ul,
  ol {
    margin-bottom: 0.75em;
  }
}
ul li,
ol li {
  padding: 0.25em 0;
}
ul li ul,
ul li ol,
ol li ul,
ol li ol {
  margin: 0.25em 0 0;
  padding-top: 0.1em;
}
ul li ul li,
ul li ol li,
ol li ul li,
ol li ol li {
  font-size: 0.9em;
}

table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  text-align: left;
  margin: 0;
  margin-bottom: 0.75em;
}
@media print, screen and (min-width: 960px) {
  table {
    margin-bottom: 1em;
  }
}
table tr > th,
table tr td {
  padding: 0.75em;
  line-height: 1.5;
}
table tr th {
  width: 30%;
}
table tr td ul li,
table tr td ol li {
  padding: 0.15em 0;
}

dl {
  margin: 0;
  margin-bottom: 0.75em;
  line-height: 1.5;
}
@media print, screen and (min-width: 960px) {
  dl {
    margin-bottom: 1em;
  }
}
dl dd {
  margin-left: 0;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=password],
input[type=url],
select,
textarea {
  font-size: 1em;
  padding: 0.75em;
  border: none;
  border-radius: 3px;
  background-color: rgba(51, 51, 51, 0.02);
}

:-moz-placeholder-shown {
  color: rgba(161, 161, 161, 0.5);
}

:-ms-input-placeholder {
  color: rgba(161, 161, 161, 0.5);
}

:placeholder-shown {
  color: rgba(161, 161, 161, 0.5);
}

::-webkit-input-placeholder {
  color: rgba(161, 161, 161, 0.5);
}

:-moz-placeholder {
  opacity: 1;
  color: rgba(161, 161, 161, 0.5);
}

::-moz-placeholder {
  opacity: 1;
  color: rgba(161, 161, 161, 0.5);
}

:-ms-input-placeholder {
  color: rgba(161, 161, 161, 0.5);
}

/* ==========*==========*==========*==========
装飾
==========*==========*==========*==========* /



/* レイアウト
==========*==========*==========*========== */
#container {
  position: relative;
  padding-top: 3em;
  padding-bottom: 3em;
}
@media print, screen and (min-width: 768px) {
  #container {
    padding-top: 1em;
  }
}
@media print, screen and (min-width: 960px) {
  #container {
    padding-top: 2em;
    padding-bottom: 5em;
  }
}

.sect {
  position: relative;
  padding: 2em 0;
  overflow-x: hidden;
}
@media print, screen and (min-width: 768px) {
  .sect {
    padding: 2.5em 0;
  }
}
@media print, screen and (min-width: 1200px) {
  .sect {
    padding: 3em 0;
  }
}
@media print, screen and (min-width: 1600px) {
  .sect {
    padding: 8em 0;
  }
}

/* 表示
==========*==========*==========*========== */
.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

@media print, screen and (min-width: 568px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media print, screen and (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media print, screen and (min-width: 960px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
@media print, screen and (min-width: 1600px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
}
/* 余白
==========*==========*==========*========== */
.mt-0 {
  margin-top: 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* テキスト
==========*==========*==========*========== */
/* フォント
==========*========== */
.ff-eng {
  font-family: "Montserrat";
}

/* 色
==========*========== */
.weak {
  color: rgba(51, 51, 51, 0.7);
}

/* その他
==========*========== */
.icon-i {
  margin-right: 0.3em;
}

/* 見出し
==========*==========*==========*========== */
.h1 {
  display: none;
}

.h2 {
  font-size: 2em;
  margin: 0;
}
@media print, screen and (min-width: 768px) {
  .h2 {
    font-size: 2.5em;
  }
}
@media print, screen and (min-width: 960px) {
  .h2 {
    font-size: 2.75em;
  }
}

.h3 {
  font-size: 1.75em;
}
@media print, screen and (min-width: 768px) {
  .h3 {
    font-size: 2.25em;
  }
}
@media print, screen and (min-width: 960px) {
  .h3 {
    font-size: 2.5em;
  }
}

.h4 {
  font-size: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .h4 {
    font-size: 1.75em;
  }
}
@media print, screen and (min-width: 960px) {
  .h4 {
    font-size: 2em;
  }
}

.h5 {
  font-size: 1.3em;
}
@media print, screen and (min-width: 768px) {
  .h5 {
    font-size: 1.4em;
  }
}
@media print, screen and (min-width: 960px) {
  .h5 {
    font-size: 1.5em;
  }
}

.h6 {
  font-size: 1.1em;
}
@media print, screen and (min-width: 768px) {
  .h6 {
    font-size: 1.2em;
  }
}

/* 基本装飾
==========*==========*/
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small {
  margin: 0 0.1em;
}
h1.bgm,
h2.bgm,
h3.bgm,
h4.bgm,
h5.bgm,
h6.bgm {
  background: #000000;
  padding: 0.5em;
  color: #fff;
}
h1.bgw,
h2.bgw,
h3.bgw,
h4.bgw,
h5.bgw,
h6.bgw {
  padding: 0.5em 0 0.5em 0.75em;
  background-color: rgba(179, 179, 179, 0.075);
}
h1.bgw:before,
h2.bgw:before,
h3.bgw:before,
h4.bgw:before,
h5.bgw:before,
h6.bgw:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25em;
  height: 100%;
  background-color: #000000;
}
h1.ltm,
h2.ltm,
h3.ltm,
h4.ltm,
h5.ltm,
h6.ltm {
  padding-left: 1em;
  color: #1a1a1a;
}
h1.ltm:before,
h2.ltm:before,
h3.ltm:before,
h4.ltm:before,
h5.ltm:before,
h6.ltm:before {
  content: "";
  position: absolute;
  top: calc(50% - 0.25em);
  left: 0;
  width: 0.5em;
  height: 0.5em;
  background-color: #000000;
}
h1.ltw,
h2.ltw,
h3.ltw,
h4.ltw,
h5.ltw,
h6.ltw {
  padding-left: 0.75em;
}
h1.ltw:before,
h2.ltw:before,
h3.ltw:before,
h4.ltw:before,
h5.ltw:before,
h6.ltw:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0.25em;
  height: 100%;
  background-color: #737373;
}

.upper-dott span {
  position: relative;
}
.upper-dott span:before {
  content: "";
  position: absolute;
  top: -0.25em;
  left: calc(50% - 0.125em);
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background-color: #000000;
}

/* 画像
==========*==========*==========*========== */
.img-none {
  background-color: #000000;
}

.img-sample:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/sample.svg) center;
  background-size: cover;
  opacity: 0.7;
}
.img-sample.RD:after {
  background-image: url(../img/sample-RD.svg);
  opacity: 0.4;
}

.obj-f {
  display: block;
  position: relative;
  padding-top: 55%;
  margin-bottom: 0;
}
.obj-f.f-max {
  padding: 0;
  height: 100%;
}
.obj-f.f-21 {
  padding-top: 50%;
}
.obj-f.f-11 {
  padding-top: 100%;
}
.obj-f img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
  object-fit: cover;
}

.omt {
  display: none;
  position: absolute;
}

/*----------*----------*----------*----------*
リスト
*----------*----------*----------*----------*/
ul.inline {
  padding: 0;
  text-align: left;
}
ul.inline li {
  display: inline-block;
  padding: 0;
}
ul.inline li:last-of-type {
  padding-right: 0;
}
ul.inline.slash li:after {
  content: "/";
  padding: 0 0.5em;
}
ul.inline.slash li:last-of-type:after {
  content: none;
}
ul.caution {
  list-style: none;
  padding: 0;
  font-size: 0.8em;
  color: #d52e2e;
  margin-top: 0.75em;
}
ul.caution li {
  position: relative;
  padding-left: 1em;
}
ul.caution li:before {
  content: "※";
  position: absolute;
  left: 0;
}
ul.caution.weak {
  color: rgba(77, 77, 77, 0.7);
}
ul.caution.sm li {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}

/*----------*----------*----------*----------*
テーブル
*----------*----------*----------*----------*/
table.basis tr th,
table.basis tr td {
  border: 1px solid #e3e3e3;
  border-left-style: dashed;
  border-right-style: dashed;
}
table.basis tr th:first-child,
table.basis tr td:first-child {
  border-left: none;
}
table.basis tr th:last-child,
table.basis tr td:last-child {
  border-right: none;
}
table.basis tr th {
  background-color: #f5f5f5;
  color: #333;
  /*@include mq-min(xl) {
  	width: 25%;
  }*/
}
table.basis tr td .btn-area {
  margin-bottom: 0;
}
table.basis tr td .btn-area .btn {
  background-color: #000000;
  -webkit-box-shadow: 0 0 0 black;
          box-shadow: 0 0 0 black;
  font-size: 0.9em;
  margin-top: 0.2em;
  /*@include mq-min(md) {
  	margin: 0 0 0 0.5em;
  }*/
}
table.basis tr td .btn-area .btn:hover {
  top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
table.basis thead tr th {
  background-color: #000000;
  border-color: #1a1a1a;
  border-top: none;
  border-bottom: none;
  color: #fff;
}
table.basis thead + tbody > tr:first-child > th,
table.basis thead + tbody > tr:first-child > td {
  border-top: none;
}
table.basis tfoot tr > th,
table.basis tfoot tr > td {
  background-color: transparent;
  border-top: 3px double #d6d6d6;
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  table.basis.sp tr > * {
    border-top: none !important;
    border-left-style: none !important;
    border-right-style: none !important;
  }
  table.basis.sp tr th {
    background-color: #f5f5f5;
  }
  table.basis.sp tr td {
    border-bottom: 1px solid #e3e3e3;
  }
  table.basis.sp tr:first-of-type > :first-child {
    border-top: 1px solid #e3e3e3 !important;
  }
}
table.stripe tbody tr th {
  background-color: transparent;
}
table.stripe tbody tr:nth-child(odd) {
  background-color: #f5f5f5;
}
@media screen and (max-width: 767px) {
  table.stripe.sp tr {
    background-color: transparent !important;
  }
}
table.bd tr {
  border-bottom: 1px solid rgba(51, 51, 51, 0.075);
}
@media screen and (max-width: 767px) {
  table.bd.sp th {
    padding-bottom: 0.25em;
    font-size: 1.1em;
  }
  table.bd.sp td {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  table.sp tr > * {
    display: block !important;
    width: 100% !important;
  }
}

/*----------*----------*----------*----------*
説明リスト
*----------*----------*----------*----------*/
.dl {
  margin: 0;
  margin-bottom: 0.75em;
}
@media print, screen and (min-width: 960px) {
  .dl {
    margin-bottom: 1em;
  }
}
.dl dl:last-of-type {
  margin-bottom: 0;
}
.dl.list dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0;
}
.dl.list dl dd {
  padding-left: 0.5em;
}
.dl.list dl:last-of-type {
  margin-bottom: 0;
}
.dl.menu dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  margin: 0;
  padding: 0.5em 0;
  border-bottom: 1px dashed rgba(51, 51, 51, 0.075);
  line-height: 1.4;
}
.dl.menu dl:first-of-type {
  padding-top: 0;
}
.dl.heading dl dd, .dl.heading dl dt span {
  padding: 0.25em;
}
.dl.heading dl dt span {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding-left: 0.75em;
  padding-right: 0.75em;
}
.dl.heading dl dd {
  padding-left: 0;
  padding-right: 0;
}
@media print, screen and (min-width: 960px) {
  .dl.heading.tbl-pc dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .dl.heading.tbl-pc dl dd {
    padding-left: 0.75em;
  }
}
.dl.heading.tbl dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.dl.heading.tbl dl dd {
  padding-left: 0.75em;
}

/* ボタン
==========*==========*==========*========== */
.btn {
  position: relative;
  top: 0;
  display: block;
  margin-top: 0.5em;
  padding: 0.5em 0.75em;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
  color: #fff;
  text-align: center;
  background-color: #000000;
  -webkit-box-shadow: 0 0.3em 0 black;
          box-shadow: 0 0.3em 0 black;
}
.btn:hover {
  top: 0.3em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media print, screen and (min-width: 768px) {
  .btn {
    display: inline-block;
  }
}
.btn.round {
  border-radius: 3px;
}

/* その他
==========*==========*==========*========== */
.iframe {
  margin: 0;
  margin-bottom: 0.75em;
  position: relative;
  padding-top: 56.25%;
}
@media print, screen and (min-width: 960px) {
  .iframe {
    margin-bottom: 1em;
  }
}
.iframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.scroll {
  margin: 0;
  margin-bottom: 0.75em;
  display: block;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
@media print, screen and (min-width: 960px) {
  .scroll {
    margin-bottom: 1em;
  }
}
@media print, screen and (min-width: 960px) {
  .scroll {
    white-space: normal;
  }
}
.scroll:before {
  content: "※下記は、横にスクロールし、ご確認ください。";
  display: block;
  font-size: 0.9em;
  font-weight: bold;
  color: #d52e2e;
  margin-bottom: 0.25em;
}
@media print, screen and (min-width: 960px) {
  .scroll:before {
    display: none;
  }
}
.scroll > table {
  margin-bottom: 0;
  table-layout: auto;
}

#breadcrumbs {
  display: none;
}
@media print, screen and (min-width: 768px) {
  #breadcrumbs {
    display: block;
    font-size: 0.8em;
    color: rgba(51, 51, 51, 0.7);
    margin: 2.5em 0 0;
  }
}
@media print, screen and (min-width: 960px) {
  #breadcrumbs {
    margin-top: 3.5em;
  }
}

.page-title {
  margin-top: 0;
  font-size: 1.25rem;
  color: #0d0d0d;
}
@media print, screen and (min-width: 768px) {
  .page-title {
    font-size: 2rem;
  }
}
@media print, screen and (min-width: 960px) {
  .page-title {
    font-size: 2.5rem;
  }
}
.page-title small:before {
  content: "｜";
  margin-left: 0.25em;
}
@media print, screen and (min-width: 960px) {
  .page-title small {
    font-size: 0.7em;
  }
}

.post-meta {
  font-size: 0.8em;
}
.post-meta time {
  color: rgba(51, 51, 51, 0.7);
}
.post-meta .post-categories {
  margin-top: 0.25em;
  padding: 0;
}
.post-meta .post-categories li {
  display: inline;
  margin-right: 0.5em;
  white-space: nowrap;
}
.post-meta .post-categories li a:before {
  font-family: "icons";
  font-weight: 700;
  margin-right: 0.25em;
  content: "\f02b";
}

/* ==========*==========*==========*==========
グリッドシステム
==========*==========*==========*========== */
/* .container
==========*==========*==========*========== */
.container {
  position: relative;
  width: 100%;
  max-width: 1375px;
  margin: 0 auto;
  padding: 0 15px;
}
@media print, screen and (min-width: 768px) {
  .container {
    width: 90%;
  }
}
.container.sm {
  max-width: 468px;
}
.container.md {
  max-width: 668px;
}
.container.lg {
  max-width: 860px;
}
.container.xl {
  max-width: 1100px;
}
.container.xxl {
  max-width: 1500px;
}
.container.fluid {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

/* .row
==========*==========*==========*========== */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto;
  margin: -15px;
}

.row-0 {
  margin: -0px !important;
}
.row-0 > [class*=col], .row-0 > [class*=" col-"] {
  padding: 0px !important;
}

.row-5 {
  margin: -5px !important;
}
.row-5 > [class*=col], .row-5 > [class*=" col-"] {
  padding: 5px !important;
}

.row-10 {
  margin: -10px !important;
}
.row-10 > [class*=col], .row-10 > [class*=" col-"] {
  padding: 10px !important;
}

.row-15 {
  margin: -15px !important;
}
.row-15 > [class*=col], .row-15 > [class*=" col-"] {
  padding: 15px !important;
}

.row-20 {
  margin: -20px !important;
}
.row-20 > [class*=col], .row-20 > [class*=" col-"] {
  padding: 20px !important;
}

.row-25 {
  margin: -25px !important;
}
.row-25 > [class*=col], .row-25 > [class*=" col-"] {
  padding: 25px !important;
}

.row-30 {
  margin: -30px !important;
}
.row-30 > [class*=col], .row-30 > [class*=" col-"] {
  padding: 30px !important;
}

.row-35 {
  margin: -35px !important;
}
.row-35 > [class*=col], .row-35 > [class*=" col-"] {
  padding: 35px !important;
}

.row-40 {
  margin: -40px !important;
}
.row-40 > [class*=col], .row-40 > [class*=" col-"] {
  padding: 40px !important;
}

.row-45 {
  margin: -45px !important;
}
.row-45 > [class*=col], .row-45 > [class*=" col-"] {
  padding: 45px !important;
}

.row-50 {
  margin: -50px !important;
}
.row-50 > [class*=col], .row-50 > [class*=" col-"] {
  padding: 50px !important;
}

@media print, screen and (min-width: 568px) {
  .row-sm-0 {
    margin: -0px !important;
  }
  .row-sm-0 > [class*=col], .row-sm-0 > [class*=" col-"] {
    padding: 0px !important;
  }
  .row-sm-5 {
    margin: -5px !important;
  }
  .row-sm-5 > [class*=col], .row-sm-5 > [class*=" col-"] {
    padding: 5px !important;
  }
  .row-sm-10 {
    margin: -10px !important;
  }
  .row-sm-10 > [class*=col], .row-sm-10 > [class*=" col-"] {
    padding: 10px !important;
  }
  .row-sm-15 {
    margin: -15px !important;
  }
  .row-sm-15 > [class*=col], .row-sm-15 > [class*=" col-"] {
    padding: 15px !important;
  }
  .row-sm-20 {
    margin: -20px !important;
  }
  .row-sm-20 > [class*=col], .row-sm-20 > [class*=" col-"] {
    padding: 20px !important;
  }
  .row-sm-25 {
    margin: -25px !important;
  }
  .row-sm-25 > [class*=col], .row-sm-25 > [class*=" col-"] {
    padding: 25px !important;
  }
  .row-sm-30 {
    margin: -30px !important;
  }
  .row-sm-30 > [class*=col], .row-sm-30 > [class*=" col-"] {
    padding: 30px !important;
  }
  .row-sm-35 {
    margin: -35px !important;
  }
  .row-sm-35 > [class*=col], .row-sm-35 > [class*=" col-"] {
    padding: 35px !important;
  }
  .row-sm-40 {
    margin: -40px !important;
  }
  .row-sm-40 > [class*=col], .row-sm-40 > [class*=" col-"] {
    padding: 40px !important;
  }
  .row-sm-45 {
    margin: -45px !important;
  }
  .row-sm-45 > [class*=col], .row-sm-45 > [class*=" col-"] {
    padding: 45px !important;
  }
  .row-sm-50 {
    margin: -50px !important;
  }
  .row-sm-50 > [class*=col], .row-sm-50 > [class*=" col-"] {
    padding: 50px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .row-md-0 {
    margin: -0px !important;
  }
  .row-md-0 > [class*=col], .row-md-0 > [class*=" col-"] {
    padding: 0px !important;
  }
  .row-md-5 {
    margin: -5px !important;
  }
  .row-md-5 > [class*=col], .row-md-5 > [class*=" col-"] {
    padding: 5px !important;
  }
  .row-md-10 {
    margin: -10px !important;
  }
  .row-md-10 > [class*=col], .row-md-10 > [class*=" col-"] {
    padding: 10px !important;
  }
  .row-md-15 {
    margin: -15px !important;
  }
  .row-md-15 > [class*=col], .row-md-15 > [class*=" col-"] {
    padding: 15px !important;
  }
  .row-md-20 {
    margin: -20px !important;
  }
  .row-md-20 > [class*=col], .row-md-20 > [class*=" col-"] {
    padding: 20px !important;
  }
  .row-md-25 {
    margin: -25px !important;
  }
  .row-md-25 > [class*=col], .row-md-25 > [class*=" col-"] {
    padding: 25px !important;
  }
  .row-md-30 {
    margin: -30px !important;
  }
  .row-md-30 > [class*=col], .row-md-30 > [class*=" col-"] {
    padding: 30px !important;
  }
  .row-md-35 {
    margin: -35px !important;
  }
  .row-md-35 > [class*=col], .row-md-35 > [class*=" col-"] {
    padding: 35px !important;
  }
  .row-md-40 {
    margin: -40px !important;
  }
  .row-md-40 > [class*=col], .row-md-40 > [class*=" col-"] {
    padding: 40px !important;
  }
  .row-md-45 {
    margin: -45px !important;
  }
  .row-md-45 > [class*=col], .row-md-45 > [class*=" col-"] {
    padding: 45px !important;
  }
  .row-md-50 {
    margin: -50px !important;
  }
  .row-md-50 > [class*=col], .row-md-50 > [class*=" col-"] {
    padding: 50px !important;
  }
}
@media print, screen and (min-width: 960px) {
  .row-lg-0 {
    margin: -0px !important;
  }
  .row-lg-0 > [class*=col], .row-lg-0 > [class*=" col-"] {
    padding: 0px !important;
  }
  .row-lg-5 {
    margin: -5px !important;
  }
  .row-lg-5 > [class*=col], .row-lg-5 > [class*=" col-"] {
    padding: 5px !important;
  }
  .row-lg-10 {
    margin: -10px !important;
  }
  .row-lg-10 > [class*=col], .row-lg-10 > [class*=" col-"] {
    padding: 10px !important;
  }
  .row-lg-15 {
    margin: -15px !important;
  }
  .row-lg-15 > [class*=col], .row-lg-15 > [class*=" col-"] {
    padding: 15px !important;
  }
  .row-lg-20 {
    margin: -20px !important;
  }
  .row-lg-20 > [class*=col], .row-lg-20 > [class*=" col-"] {
    padding: 20px !important;
  }
  .row-lg-25 {
    margin: -25px !important;
  }
  .row-lg-25 > [class*=col], .row-lg-25 > [class*=" col-"] {
    padding: 25px !important;
  }
  .row-lg-30 {
    margin: -30px !important;
  }
  .row-lg-30 > [class*=col], .row-lg-30 > [class*=" col-"] {
    padding: 30px !important;
  }
  .row-lg-35 {
    margin: -35px !important;
  }
  .row-lg-35 > [class*=col], .row-lg-35 > [class*=" col-"] {
    padding: 35px !important;
  }
  .row-lg-40 {
    margin: -40px !important;
  }
  .row-lg-40 > [class*=col], .row-lg-40 > [class*=" col-"] {
    padding: 40px !important;
  }
  .row-lg-45 {
    margin: -45px !important;
  }
  .row-lg-45 > [class*=col], .row-lg-45 > [class*=" col-"] {
    padding: 45px !important;
  }
  .row-lg-50 {
    margin: -50px !important;
  }
  .row-lg-50 > [class*=col], .row-lg-50 > [class*=" col-"] {
    padding: 50px !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .row-xl-0 {
    margin: -0px !important;
  }
  .row-xl-0 > [class*=col], .row-xl-0 > [class*=" col-"] {
    padding: 0px !important;
  }
  .row-xl-5 {
    margin: -5px !important;
  }
  .row-xl-5 > [class*=col], .row-xl-5 > [class*=" col-"] {
    padding: 5px !important;
  }
  .row-xl-10 {
    margin: -10px !important;
  }
  .row-xl-10 > [class*=col], .row-xl-10 > [class*=" col-"] {
    padding: 10px !important;
  }
  .row-xl-15 {
    margin: -15px !important;
  }
  .row-xl-15 > [class*=col], .row-xl-15 > [class*=" col-"] {
    padding: 15px !important;
  }
  .row-xl-20 {
    margin: -20px !important;
  }
  .row-xl-20 > [class*=col], .row-xl-20 > [class*=" col-"] {
    padding: 20px !important;
  }
  .row-xl-25 {
    margin: -25px !important;
  }
  .row-xl-25 > [class*=col], .row-xl-25 > [class*=" col-"] {
    padding: 25px !important;
  }
  .row-xl-30 {
    margin: -30px !important;
  }
  .row-xl-30 > [class*=col], .row-xl-30 > [class*=" col-"] {
    padding: 30px !important;
  }
  .row-xl-35 {
    margin: -35px !important;
  }
  .row-xl-35 > [class*=col], .row-xl-35 > [class*=" col-"] {
    padding: 35px !important;
  }
  .row-xl-40 {
    margin: -40px !important;
  }
  .row-xl-40 > [class*=col], .row-xl-40 > [class*=" col-"] {
    padding: 40px !important;
  }
  .row-xl-45 {
    margin: -45px !important;
  }
  .row-xl-45 > [class*=col], .row-xl-45 > [class*=" col-"] {
    padding: 45px !important;
  }
  .row-xl-50 {
    margin: -50px !important;
  }
  .row-xl-50 > [class*=col], .row-xl-50 > [class*=" col-"] {
    padding: 50px !important;
  }
}
@media print, screen and (min-width: 1600px) {
  .row-xxl-0 {
    margin: -0px !important;
  }
  .row-xxl-0 > [class*=col], .row-xxl-0 > [class*=" col-"] {
    padding: 0px !important;
  }
  .row-xxl-5 {
    margin: -5px !important;
  }
  .row-xxl-5 > [class*=col], .row-xxl-5 > [class*=" col-"] {
    padding: 5px !important;
  }
  .row-xxl-10 {
    margin: -10px !important;
  }
  .row-xxl-10 > [class*=col], .row-xxl-10 > [class*=" col-"] {
    padding: 10px !important;
  }
  .row-xxl-15 {
    margin: -15px !important;
  }
  .row-xxl-15 > [class*=col], .row-xxl-15 > [class*=" col-"] {
    padding: 15px !important;
  }
  .row-xxl-20 {
    margin: -20px !important;
  }
  .row-xxl-20 > [class*=col], .row-xxl-20 > [class*=" col-"] {
    padding: 20px !important;
  }
  .row-xxl-25 {
    margin: -25px !important;
  }
  .row-xxl-25 > [class*=col], .row-xxl-25 > [class*=" col-"] {
    padding: 25px !important;
  }
  .row-xxl-30 {
    margin: -30px !important;
  }
  .row-xxl-30 > [class*=col], .row-xxl-30 > [class*=" col-"] {
    padding: 30px !important;
  }
  .row-xxl-35 {
    margin: -35px !important;
  }
  .row-xxl-35 > [class*=col], .row-xxl-35 > [class*=" col-"] {
    padding: 35px !important;
  }
  .row-xxl-40 {
    margin: -40px !important;
  }
  .row-xxl-40 > [class*=col], .row-xxl-40 > [class*=" col-"] {
    padding: 40px !important;
  }
  .row-xxl-45 {
    margin: -45px !important;
  }
  .row-xxl-45 > [class*=col], .row-xxl-45 > [class*=" col-"] {
    padding: 45px !important;
  }
  .row-xxl-50 {
    margin: -50px !important;
  }
  .row-xxl-50 > [class*=col], .row-xxl-50 > [class*=" col-"] {
    padding: 50px !important;
  }
}
/* .col
==========*==========*==========*========== */
[class*=col-],
[class*=" col-"] {
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 15px;
}

.col-1 {
  -ms-flex: 0 0 8.3333333333%;
  -webkit-box-flex: 0;
          flex: 0 0 8.3333333333%;
  max-width: 8.3333333333%;
}

.col-2 {
  -ms-flex: 0 0 16.6666666667%;
  -webkit-box-flex: 0;
          flex: 0 0 16.6666666667%;
  max-width: 16.6666666667%;
}

.col-3 {
  -ms-flex: 0 0 25%;
  -webkit-box-flex: 0;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -ms-flex: 0 0 33.3333333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.3333333333%;
  max-width: 33.3333333333%;
}

.col-5 {
  -ms-flex: 0 0 41.6666666667%;
  -webkit-box-flex: 0;
          flex: 0 0 41.6666666667%;
  max-width: 41.6666666667%;
}

.col-6 {
  -ms-flex: 0 0 50%;
  -webkit-box-flex: 0;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -ms-flex: 0 0 58.3333333333%;
  -webkit-box-flex: 0;
          flex: 0 0 58.3333333333%;
  max-width: 58.3333333333%;
}

.col-8 {
  -ms-flex: 0 0 66.6666666667%;
  -webkit-box-flex: 0;
          flex: 0 0 66.6666666667%;
  max-width: 66.6666666667%;
}

.col-9 {
  -ms-flex: 0 0 75%;
  -webkit-box-flex: 0;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -ms-flex: 0 0 83.3333333333%;
  -webkit-box-flex: 0;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
}

.col-11 {
  -ms-flex: 0 0 91.6666666667%;
  -webkit-box-flex: 0;
          flex: 0 0 91.6666666667%;
  max-width: 91.6666666667%;
}

.col-12 {
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
}

@media print, screen and (min-width: 568px) {
  .col-sm-1 {
    -ms-flex: 0 0 8.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-sm-2 {
    -ms-flex: 0 0 16.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-sm-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -ms-flex: 0 0 33.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-sm-5 {
    -ms-flex: 0 0 41.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-sm-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -ms-flex: 0 0 58.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-sm-8 {
    -ms-flex: 0 0 66.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-sm-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -ms-flex: 0 0 83.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-sm-11 {
    -ms-flex: 0 0 91.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-sm-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 768px) {
  .col-md-1 {
    -ms-flex: 0 0 8.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-md-2 {
    -ms-flex: 0 0 16.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-md-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -ms-flex: 0 0 33.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-md-5 {
    -ms-flex: 0 0 41.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-md-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -ms-flex: 0 0 58.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-md-8 {
    -ms-flex: 0 0 66.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-md-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -ms-flex: 0 0 83.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-md-11 {
    -ms-flex: 0 0 91.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-md-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 960px) {
  .col-lg-1 {
    -ms-flex: 0 0 8.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-lg-2 {
    -ms-flex: 0 0 16.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-lg-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -ms-flex: 0 0 33.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-lg-5 {
    -ms-flex: 0 0 41.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-lg-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -ms-flex: 0 0 58.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-lg-8 {
    -ms-flex: 0 0 66.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-lg-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -ms-flex: 0 0 83.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-lg-11 {
    -ms-flex: 0 0 91.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-lg-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 1200px) {
  .col-xl-1 {
    -ms-flex: 0 0 8.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xl-2 {
    -ms-flex: 0 0 16.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -ms-flex: 0 0 33.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xl-5 {
    -ms-flex: 0 0 41.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -ms-flex: 0 0 58.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xl-8 {
    -ms-flex: 0 0 66.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -ms-flex: 0 0 83.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xl-11 {
    -ms-flex: 0 0 91.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 1600px) {
  .col-xxl-1 {
    -ms-flex: 0 0 8.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 8.3333333333%;
    max-width: 8.3333333333%;
  }
  .col-xxl-2 {
    -ms-flex: 0 0 16.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 16.6666666667%;
    max-width: 16.6666666667%;
  }
  .col-xxl-3 {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -ms-flex: 0 0 33.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.3333333333%;
    max-width: 33.3333333333%;
  }
  .col-xxl-5 {
    -ms-flex: 0 0 41.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 41.6666666667%;
    max-width: 41.6666666667%;
  }
  .col-xxl-6 {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -ms-flex: 0 0 58.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 58.3333333333%;
    max-width: 58.3333333333%;
  }
  .col-xxl-8 {
    -ms-flex: 0 0 66.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 66.6666666667%;
    max-width: 66.6666666667%;
  }
  .col-xxl-9 {
    -ms-flex: 0 0 75%;
    -webkit-box-flex: 0;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -ms-flex: 0 0 83.3333333333%;
    -webkit-box-flex: 0;
            flex: 0 0 83.3333333333%;
    max-width: 83.3333333333%;
  }
  .col-xxl-11 {
    -ms-flex: 0 0 91.6666666667%;
    -webkit-box-flex: 0;
            flex: 0 0 91.6666666667%;
    max-width: 91.6666666667%;
  }
  .col-xxl-12 {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
/* ==========*==========*==========*==========
ヘッダー
==========*==========*==========*========== */
body {
  padding-top: 50px;
}
@media print, screen and (min-width: 1200px) {
  body {
    padding-top: 80px;
  }
}

header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.1);
}
header a {
  display: block;
  text-decoration: none;
}
header .container {
  height: 50px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  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;
  padding-right: 0;
}
@media print, screen and (min-width: 1200px) {
  header .container {
    max-width: 100%;
    height: 80px;
    padding-right: 15px;
  }
}
header .container .logo {
  height: 18px;
  margin: 0;
}
@media print, screen and (min-width: 1200px) {
  header .container .logo {
    height: 30px;
  }
}
header .container .logo a {
  height: 100%;
}
header .container .logo a img {
  display: block;
  width: auto;
  height: 100%;
}
header .container #nav-global {
  display: none;
  position: absolute;
  z-index: 50;
  top: 50px;
  left: 0;
  width: 100%;
}
@media print, screen and (min-width: 1200px) {
  header .container #nav-global {
    display: block;
    position: static;
    z-index: auto;
    z-index: initial;
    width: auto;
    margin-left: auto;
  }
}
header .container #nav-global ul {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style: none;
  background: #fff;
  margin: 0;
  padding: 0;
}
@media print, screen and (min-width: 1200px) {
  header .container #nav-global ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    background: transparent;
    font-size: 0.9em;
  }
}
@media print, screen and (min-width: 1600px) {
  header .container #nav-global ul {
    font-size: 1em;
  }
}
header .container #nav-global ul li {
  padding: 0;
}
header .container #nav-global ul li a {
  padding: 0.75em;
  background-color: #000000;
  color: #fff;
  text-decoration: none;
  border-top: 1px dashed #1a1a1a;
}
@media print, screen and (min-width: 1200px) {
  header .container #nav-global ul li a {
    background-color: transparent;
    color: #1a1a1a;
    padding: 0.5em;
    border: none;
  }
}
@media print, screen and (min-width: 1600px) {
  header .container #nav-global ul li a {
    padding: 0.75em 1em;
  }
}
header .container #nav-global ul li:first-of-type a {
  border-top: none;
}
header .container .sp-nav {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style-type: none;
  text-align: center;
  margin: 0;
}
@media print, screen and (min-width: 1200px) {
  header .container .sp-nav {
    display: none;
  }
}
header .container .sp-nav li#sp-menu, header .container .sp-nav li#sp-tel a {
  border-left: 1px solid rgba(51, 51, 51, 0.075);
  width: 50px;
  height: 50px;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0;
}
header .container .sp-nav li {
  padding: 0;
}
header .container .sp-nav li .name {
  font-size: 0.7rem;
  line-height: 1;
  color: #000000;
}
header .container .sp-nav li#sp-tel a i {
  font-size: 20px;
  margin-bottom: 4px;
}
header .container .sp-nav li#sp-menu {
  cursor: pointer;
}
header .container .sp-nav li#sp-menu .hamburger {
  position: relative;
  width: 25px;
  height: 2px;
  margin: 8px auto 14px;
  background-color: #000000;
}
header .container .sp-nav li#sp-menu .hamburger:before, header .container .sp-nav li#sp-menu .hamburger:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -8px;
  left: 0;
  background-color: #000000;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
header .container .sp-nav li#sp-menu .hamburger:after {
  top: 8px;
}
header .container .sp-nav li#sp-menu.on .hamburger {
  background-color: transparent;
}
header .container .sp-nav li#sp-menu.on .hamburger:before, header .container .sp-nav li#sp-menu.on .hamburger:after {
  top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
header .container .sp-nav li#sp-menu.on .hamburger:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
header .container .pc-contact {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  header .container .pc-contact {
    display: block;
    margin: 0 0 0 1%;
    text-align: center;
  }
  header .container .pc-contact .hours {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0;
    font-size: 0.75em;
  }
}
@media print, screen and (min-width: 1200px) and (min-width: 1600px) {
  header .container .pc-contact .hours {
    font-size: 0.8em;
  }
}
@media print, screen and (min-width: 1200px) {
  header .container .pc-contact .hours > * {
    margin: 0;
  }
  header .container .pc-contact .hours dt:after {
    content: "／";
  }
  header .container .pc-contact .tel {
    margin: 0.1em 0 0;
    color: #000000;
    font-size: 1.5rem;
    line-height: 1;
    font-weight: bold;
  }
}
@media print, screen and (min-width: 1200px) and (min-width: 1600px) {
  header .container .pc-contact .tel {
    font-size: 1.75rem;
  }
}
@media print, screen and (min-width: 1200px) and (min-width: 1200px) {
  header .container .pc-contact .tel .icon-i {
    font-size: 0.8em;
  }
}

/* ==========*==========*==========*==========
フッター
==========*==========*==========*========== */
footer {
  padding: 3em 0 2em;
  background-color: #000000;
  font-size: 0.9rem;
  color: #fff;
}
@media print, screen and (min-width: 1200px) {
  footer {
    padding: 4em 0 3.5em;
  }
}
footer .container .wrap {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media print, screen and (min-width: 1200px) {
  footer .container .wrap {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
footer .container .wrap #footer-info {
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  footer .container .wrap #footer-info {
    width: 30%;
    text-align: left;
  }
}
footer .container .wrap #footer-info .logo {
  margin-bottom: 0;
}
footer .container .wrap #footer-info .logo a img {
  max-width: 200px;
  margin: 0 auto;
}
@media print, screen and (min-width: 1200px) {
  footer .container .wrap #footer-info .logo a img {
    max-width: 250px;
    margin-left: 0;
  }
}
footer .container .wrap #footer-info .title {
  font-size: 1.1em;
  font-weight: normal;
  margin: 1em 0 1em;
}
footer .container .wrap #footer-info ul {
  list-style: none;
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  padding-left: 0;
}
footer .container .wrap #footer-info ul a {
  color: rgba(255, 255, 255, 0.85);
}
footer .container .wrap #footer-nav {
  display: none;
}
@media print, screen and (min-width: 1200px) {
  footer .container .wrap #footer-nav {
    display: block;
    width: 65%;
    font-size: 1.1em;
    padding-top: 1em;
  }
  footer .container .wrap #footer-nav ul {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-left: 0;
  }
  footer .container .wrap #footer-nav ul li a {
    color: #fff;
  }
}

#copyright {
  display: block;
  background-color: black;
  font-size: 0.6em;
  color: #fff;
  text-align: center;
  padding: 0.5em 0;
}
@media print, screen and (min-width: 1200px) {
  #copyright {
    padding: 1em 0;
  }
}

/* ==========*==========*==========*==========
ループ
==========*==========*==========*========== */
.loop .title {
  font-size: 1em;
  margin: 0 0 0.5em;
  line-height: 1.3;
}
.loop .title a {
  color: #000000;
}
.loop .txt {
  font-size: 0.9em;
  margin: 0.5em 0 0;
}
.loop .btn-area {
  text-align: right;
}
.loop .btn-area .btn {
  color: #000000;
  background: none;
  padding: 0;
}
.loop.list {
  margin: 0;
  margin-bottom: 0.75em;
  list-style: none;
  padding: 0;
}
@media print, screen and (min-width: 960px) {
  .loop.list {
    margin-bottom: 1em;
  }
}
.loop.list li {
  border-bottom: 1px solid rgba(51, 51, 51, 0.075);
  padding: 0;
}
.loop.list li a {
  display: block;
  padding: 0.5em 0;
}
.loop.list li a .post-meta {
  display: block;
  color: #333;
  margin-bottom: 0.25em;
}
@media print, screen and (min-width: 960px) {
  .loop.list li a .post-meta {
    font-size: 1em;
    margin-right: 1em;
  }
}
.loop.card {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5em;
}
.loop.card article {
  padding: 0.5em;
  -ms-flex: 0 0 100%;
  -webkit-box-flex: 0;
          flex: 0 0 100%;
  max-width: 100%;
  /*margin-top: 1.5em;
  &:first-of-type {
  	margin-top: 0;
  }
  &:nth-of-type(-n + 2) {
  	@include mq-min(md) {
  		margin-top: 0;
  	}
  }
  &:nth-of-type(-n + 3) {
  	@include mq-min(xl) {
  		margin-top: 0;
  	}
  }*/
}
@media print, screen and (min-width: 568px) {
  .loop.card article {
    -ms-flex: 0 0 50%;
    -webkit-box-flex: 0;
            flex: 0 0 50%;
    max-width: 50%;
  }
}
@media print, screen and (min-width: 1200px) {
  .loop.card article {
    -ms-flex: 0 0 25%;
    -webkit-box-flex: 0;
            flex: 0 0 25%;
    max-width: 25%;
  }
}
.loop.card article .inner .txt-area {
  padding-top: 0.75em;
}
.loop.card article .inner .txt-area .title {
  font-size: 1.1em;
}
.loop.post {
  margin: -0.5em;
}
.loop.post article {
  /*-ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;*/
  /*font-size: 0.8em;
  @include mq-min(md){
  	font-size: 0.9em;
  }
  @include mq-min(lg){
  	font-size: 1.0em;
  }*/
  padding: 0.5em;
}
.loop.post article:last-of-type {
  margin-bottom: 0;
}
.loop.post article .inner .loop-row {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: auto;
}
.loop.post article .inner .loop-row .img-area {
  -ms-flex: 0 0 33.333333%;
  -webkit-box-flex: 0;
          flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.loop.post article .inner .loop-row .img-area .img {
  padding-top: 100%;
}
.loop.post article .inner .loop-row .txt-area {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.666667%;
          flex: 0 0 66.666667%;
  max-width: 66.666667%;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0.75em;
}
.loop.post article .inner .loop-row .txt-area .title {
  margin-top: 0;
}
@media print, screen and (min-width: 568px) {
  .loop.post article .inner .loop-row .txt-area .title {
    font-size: 1.1em;
  }
}
@media print, screen and (min-width: 768px) {
  .loop.post article .inner .loop-row .txt-area .title {
    font-size: 1.2em;
  }
}
.loop.post article .inner .loop-row .txt-area .post-categories {
  margin-bottom: 0;
}
.loop.post article .inner .loop-row .txt-area .txt {
  display: none;
}
@media print, screen and (min-width: 568px) {
  .loop.post article .inner .loop-row .txt-area .txt {
    display: block;
  }
}
.loop.card-post {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: -0.5em;
}
.loop.card-post article {
  padding: 0.5em;
  -ms-flex: 0 0 83.3333333333%;
  -webkit-box-flex: 0;
          flex: 0 0 83.3333333333%;
  max-width: 83.3333333333%;
  /*margin-top: 1.5em;

  &:first-of-type {
      margin-top: 0;
  }

  &:nth-of-type(-n + 2) {
      @include mq-min(xl) {
          margin-top: 0;
      }
  }*/
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article {
    -ms-flex: 0 0 100%;
    -webkit-box-flex: 0;
            flex: 0 0 100%;
    max-width: 100%;
  }
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article .inner .loop-row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article .inner .loop-row .img-area {
    -ms-flex: 0 0 33.333333%;
    -webkit-box-flex: 0;
            flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article .inner .loop-row .img-area .img {
    padding-top: 100%;
  }
}
.loop.card-post article .inner .loop-row .txt-area {
  padding-top: 0.75em;
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article .inner .loop-row .txt-area {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.666667%;
            flex: 0 0 66.666667%;
    max-width: 66.666667%;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 0 0 0.75em;
  }
}
.loop.card-post article .inner .loop-row .txt-area .title {
  font-size: 1.1em;
}
@media print, screen and (min-width: 568px) {
  .loop.card-post article .inner .loop-row .txt-area .title {
    font-size: 1.2em;
  }
}

/* ==========*==========*==========*==========
ウィジット
==========*==========*==========*========== */
/*
お問い合わせ
==========*==========*==========*========== */
.contact-card, .contact-card--line, .contact-card--plural, .contact-card--long, .contact-card--short {
  text-align: center;
}
.contact-card__inner {
  background-color: #ffffff;
  -webkit-box-shadow: 0 0 0 #e6e6e6;
          box-shadow: 0 0 0 #e6e6e6;
  color: #333;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: min(1.5em, 30px) min(1em, 16px);
  margin: 0;
}
.contact-card__inner:hover {
  top: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}
@media print, screen and (min-width: 768px) {
  .contact-card__inner {
    height: 100%;
    padding: 2em 1em;
    padding: min(2em, 35px) min(1em, 16px);
  }
}
.contact-card__title {
  font-size: 1.1em;
  font-size: min(1.1em, 22px);
  color: #000000;
  margin: 0 0 0.5em;
}
@media print, screen and (min-width: 768px) {
  .contact-card__title {
    font-size: 1.2em;
    font-size: min(1.2em, 34px);
  }
}
.contact-card__txt-main {
  margin: 0;
  line-height: 1;
}
.contact-card__txt-main .icon-i {
  font-size: 0.85em;
}
.contact-card__txt {
  font-size: 0.8em;
  font-size: min(0.8em, 13px);
  color: rgba(51, 51, 51, 0.7);
  margin: 1em 0 0;
}
@media print, screen and (min-width: 768px) {
  .contact-card__txt {
    font-size: 0.7em;
    font-size: min(0.7em, 12px);
  }
}
@media print, screen and (min-width: 960px) {
  .contact-card__txt {
    font-size: 0.8em;
    font-size: min(0.8em, 20px);
  }
}
.contact-card--short .contact-card__txt-main {
  font-size: 2.3em;
  font-size: min(2.3em, 39px);
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .contact-card--short .contact-card__txt-main {
    font-size: 1.9em;
    font-size: min(1.9em, 35px);
  }
}
@media print, screen and (min-width: 960px) {
  .contact-card--short .contact-card__txt-main {
    font-size: 2.3em;
    font-size: min(2.3em, 46px);
  }
}
.contact-card--short .contact-card__txt-main .icon-i {
  color: rgba(0, 0, 0, 0.3);
}
.contact-card--short .contact-card__txt {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact-card--short .contact-card__txt dt,
.contact-card--short .contact-card__txt dd {
  padding: 0.25em 0.5em;
}
.contact-card--short .contact-card__txt dt {
  background-color: #d9d9d9;
  color: #fff;
}
.contact-card--long .contact-card__txt-main {
  font-size: 1em;
  font-size: min(1em, 19px);
  background-color: #000000;
  color: #fff;
  padding: 0.45em 1em;
}
@media print, screen and (min-width: 768px) {
  .contact-card--long .contact-card__txt-main {
    font-size: min(1em, 17px);
  }
}
@media print, screen and (min-width: 960px) {
  .contact-card--long .contact-card__txt-main {
    padding: 0.65em 1em;
  }
}
.contact-card--long .contact-card__txt-main .icon-i {
  color: #fff;
}
.contact-card--plural .contact-card__txt-main {
  width: auto;
  font-size: 1.3em;
  text-align: left;
}
.contact-card--plural .contact-card__tbl-td, .contact-card--plural .contact-card__tbl-th {
  padding: 0;
  width: auto;
}

.contact-card--plural .contact-card__tbl-th {
  font-weight: normal;
}
.contact-card--plural .contact-card__tbl-td:before {
  content: "：";
}
.contact-card--plural .contact-card__txt {
  margin-top: 0.5em;
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__row {
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    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;
  }
}
.contact-card--line .contact-card__img-area {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__img-area {
    display: block;
    width: 85px;
  }
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__img {
    padding-top: 100%;
    border: 1px solid rgba(51, 51, 51, 0.075);
  }
}
.contact-card--line .contact-card__txt {
  text-align: left;
  margin-top: 0;
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__txt {
    padding-left: 1em;
  }
}
.contact-card--line .contact-card.contact-card__direction--pc, .contact-card--line .contact-card.contact-card__direction--sp, .contact-card--line .contact-card.contact-card__direction, .contact-card--line .contact-card--short.contact-card__direction--pc, .contact-card--line .contact-card--short.contact-card__direction--sp, .contact-card--line .contact-card--short.contact-card__direction, .contact-card--line .contact-card--long.contact-card__direction--pc, .contact-card--line .contact-card--long.contact-card__direction--sp, .contact-card--line .contact-card--long.contact-card__direction, .contact-card--line .contact-card--plural.contact-card__direction--pc, .contact-card--line .contact-card--plural.contact-card__direction--sp, .contact-card--line .contact-card--plural.contact-card__direction, .contact-card--line .contact-card--line.contact-card__direction--pc, .contact-card--line .contact-card--line.contact-card__direction--sp, .contact-card--line .contact-card--line.contact-card__direction {
  margin: 0;
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__direction--sp {
    display: none;
  }
}
.contact-card--line .contact-card__direction--pc {
  display: none;
}
@media print, screen and (min-width: 960px) {
  .contact-card--line .contact-card__direction--pc {
    display: block;
  }
}
.contact-card--line .contact-card__direction-tag {
  display: inline-block;
  background-color: #000000;
  color: #fff;
  padding: 0.25em 0.5em;
}
.contact-card--line .contact-card__direction-dd {
  padding: 0.25em 0;
}
.contact-card--line .contact-card__caution {
  margin: 0;
}
.contact-card--line .contact-card__caution li {
  padding-top: 0.1em;
  padding-bottom: 0.1em;
}
.widget-contact .contact-card__inner {
  background-color: #fff;
  -webkit-box-shadow: 0.4em 0.4em 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0.4em 0.4em 0 rgba(0, 0, 0, 0.05);
}
.widget-contact .contact-card__inner:hover {
  top: 0.4em;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.widget-contact .contact-card__title {
  color: #000000;
}
.widget-contact .contact-card__direction-tag {
  background-color: #000000;
}
.widget-contact .contact-card--short .icon-i {
  color: rgba(0, 0, 0, 0.5);
}
.widget-contact .contact-card--long .contact-card__txt-main {
  background-color: #000000;
}

/*.contact-card {
	article {
		text-align: center;

		.btn {
			@include btn($c-b02, $c-txt 0, 0, );
			color: $c-txt;
		}

		.inner {
			display: -webkit-flex;
			display: -moz-flex;
			display: -ms-flex;
			display: -o-flex;
			display: flex;
			justify-content: center;
			flex-direction: column;
			align-items: center;
			//padding: 1.5em 1.0em;
			padding: min(1.5em, 30px) min(1em, 16px);
			margin: 0;

			@include mq-min(md) {
				height: 100%;
				padding: 2.0em 1.0em;
				padding: min(2.0em, 35px) min(1em, 16px);
			}

			.title {
				font-size: 1.1em;
				font-size: min(1.1em, 22px);
				color: $c-m01;
				margin: 0 0 0.5em;

				@include mq-min(md) {
					font-size: 1.2em;
					font-size: min(1.2em, 34px);
				}
			}

			.txt-main {
				margin: 0;
				line-height: 1.0;

				.icon-i {
					font-size: 0.85em;
				}
			}

			.txt {
				font-size: 0.8em;
				font-size: min(0.8em, 13px);
				color: $c-weak;
				margin: 1.0em 0 0;

				@include mq-min(md) {
					font-size: 0.7em;
					font-size: min(0.7em, 12px);
				}

				@include mq-min(lg) {
					font-size: 0.8em;
					font-size: min(0.8em, 20px);
				}
			}
		}

		&.short {
			.txt-main {
				font-size: 2.3em;
				font-size: min(2.3em, 39px);

				@include mq-min(md) {
					font-size: 1.9em;
					font-size: min(1.9em, 35px);
				}

				@include mq-min(lg) {
					font-size: 2.3em;
					font-size: min(2.3em, 46px);
				}

				.icon-i {
					color: rgba($c-m01, 0.3);
				}

			}

			dl.txt {
				display: -webkit-flex;
				display: -moz-flex;
				display: -ms-flex;
				display: -o-flex;
				display: flex;
				justify-content: center;

				dt,
				dd {
					padding: 0.25em 0.5em;
				}

				dt {
					background-color: darken($c-b02, 15%);
					color: $c-WH;
				}
			}
		}

		&.long {
			.txt-main {
				//display: inline-block;
				font-size: 1.0em;
				font-size: min(1.0em, 19px);
				background-color: $c-m01;
				color: $c-WH;
				padding: 0.45em 1.0em; //0.6em 1.0em;

				@include mq-min(md) {
					font-size: min(1.0em, 17px);
				}

				@include mq-min(lg) {
					padding: 0.65em 1.0em;
				}

				.icon-i {
					color: $c-WH;
				}
			}
		}

		&.plural {
			.txt-main {
				//display: inline-block;
				width: auto;
				font-size: 1.3em;
				//minを用意する
				text-align: left;

				th,
				td {
					padding: 0;
					width: auto;
				}

				th {
					font-weight: normal;
				}

				td {
					&:before {
						content: "：";
					}
				}
			}

			.txt {
				margin-top: 0.5em;
			}
		}

		&.line {

			//minを用意する
			.row-inner {


				@include mq-min(lg) {
					display: -webkit-flex;
					display: -moz-flex;
					display: -ms-flex;
					display: -o-flex;
					display: flex;
					justify-content: center;
					align-items: center;
				}

				.img-area {
					display: none;

					@include mq-min(lg) {
						display: block;
						width: 85px;
					}

					.img {
						@include mq-min(lg) {
							padding-top: 100%;
							border: 1px solid $c-line;
						}
					}
				}

				.txt {
					text-align: left;
					margin-top: 0;

					@include mq-min(lg) {
						padding-left: 1em;
					}

					dl {
						margin: 0;

						dt {
							span {
								display: inline-block;
								background-color: $c-a01;
								color: $c-WH;
								padding: 0.25em 0.5em;
							}
						}

						dd {
							padding: 0.25em 0;
						}
					}

					.caution {
						margin: 0.1em 0 0;

						//font-size: 0.6em;
						li {
							padding-top: 0.1em;
							padding-bottom: 0.1em;
						}
					}

					.sp {
						@include mq-min(lg) {
							display: none;
						}
					}

					.pc {
						display: none;

						@include mq-min(lg) {
							display: block;
						}
					}
				}
			}
		}
	}
}
*/
.widget-contact {
  background-color: #000000;
}
.widget-contact .widget-contact__desc, .widget-contact .widget-contact__title {
  color: #fff;
  text-align: center;
}
@media print, screen and (min-width: 1200px) {
  .widget-contact .widget-contact__desc, .widget-contact .widget-contact__title {
    display: inline-block;
  }
}
.widget-contact__title {
  font-size: 1.3em;
  font-size: min(1.3em, 21px);
  margin-top: 0;
}
@media print, screen and (min-width: 768px) {
  .widget-contact__title {
    font-size: 1.275em;
    font-size: min(1.275em, 22px);
  }
}
@media print, screen and (min-width: 960px) {
  .widget-contact__title {
    font-size: 1.3em;
    font-size: min(1.3em, 27px);
  }
}
@media print, screen and (min-width: 1200px) {
  .widget-contact__title {
    font-size: 1.3em;
    font-size: min(1.3em, 23px);
    margin-bottom: 1em;
  }
}
.widget-contact__title-mark {
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(50%, black), color-stop(90%, black));
  background: linear-gradient(transparent 50%, black 50%, black 90%);
}
@media print, screen and (min-width: 1200px) {
  .widget-contact__desc {
    font-size: 0.9em;
  }
}
@media print, screen and (min-width: 1200px) {
  .widget-contact__desc:before {
    content: "｜";
  }
}

/*
.widget-contact {
	background-color: $c-a01;

	h3,h3+.desc {
		color: #fff;
		text-align: center;

		@include mq-min(xl) {
			display: inline-block;
		}
	}

	h3 {
		font-size: 1.3em;
		font-size: min(1.3em, 21px);
		margin-top: 0;

		@include mq-min(md) {
			font-size: 1.275em;
			font-size: min(1.275em, 22px);
		}

		@include mq-min(lg) {
			font-size: 1.3em;
			font-size: min(1.3em, 27px);
		}

		@include mq-min(xl) {
			font-size: 1.3em;
			font-size: min(1.3em, 23px);
			margin-bottom: 1.0em;
		}


		mark {
			color: $c-a01-pre;
			background: linear-gradient(transparent 50%, darken($c-a01, 10%) 50%, darken($c-a01, 10%) 90%)
		}

		&+.desc {
			@include mq-min(xl) {
				font-size: 0.9em;
			}

			&:before {
				@include mq-min(xl) {
					content: "｜";
				}
			}
		}
	}

	.contact-card {
		article {
			.btn {
				@include btn($c-WH, $c-txt, 0.4em, 0.4em, rgba(0, 0, 0, 0.05));

				h4 {
					color: $c-a01;
				}


				dl.txt {
					dt {
						background-color: $c-a01;
					}
				}
			}

			&.short {
				.txt-main {
					.icon-i {
						color: rgba($c-a01, 0.5);
					}
				}
			}

			&.long {
				.txt-main {
					background-color: $c-a01;
				}
			}
		}
	}
}*/