@charset "UTF-8";

/*
回り込み
カラム
左右ボックス
リスト型メニュー
リスト各種
記述リスト
表組み
よくある質問
動画埋め込み
Googleマップ埋め込み
SNSシェアボタン
罫線
個別調整
リセット
ClearFix
*/

/* ■ 回り込み ==================================================================================== */

/* 左 */
.FloatL {
  float: left;
  margin-top: 20px !important;
  margin-right: 30px !important;
  margin-bottom: 10px !important;
}

/* 右 */
.FloatR {
  float: right;
  margin-top: 20px !important;
  margin-left: 30px !important;
  margin-bottom: 10px !important;
}

/* ■ カラム（Col） ==================================================================================== */

.Col {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /*display: flex;*/
  /*flex-wrap: wrap;*/
  gap: 1rem;
}

/*.Col li a {*/
/*  display: block;*/
/*}*/

.Col li:not(.ListDisc li) {
    padding-left: 0 !important;
}

.Col li:not(.ListDisc li)::before {
    display: none !important;
}

.Col li:not(.ListDisc li)+li:not(.ListDisc li) {
    margin-top: 0 !important;
}

/* ■ 左右ボックス ==================================================================================== */

.LRBox {
}

@media only screen and (max-width: 767px) {
}

@media print, screen and (min-width: 768px) {
  .LRBox .LBox {
    float: left;
    width: 50%;
    position: relative;
  }

  .LRBox .RBox {
    float: right;
    position: relative;
    width: 40%;
  }
}

@media print, screen and (min-width: 768px) {
  .LRBox .LBox + p {
    float: left;
    width: 50%;
    position: relative;
    padding-left: 1rem;
  }

  .LRBox .RBox + p {
    float: right;
    position: relative;
    width: 40%;
  }
}

@media print, screen and (min-width: 1090px) {
}

/* ■ リスト各種 ==================================================================================== */

/*
ディスク（ListDisc）
ディスク：小（ListDiscS）
米印（ListKome）
米印：小（ListKomeS）
連番（ListNum）
連番：小（ListNumS）
米印連番：小（ListKomeNumS）
*/

/*#growp-editor-wrapper .ListDisc li,*/
/*#growp-editor-wrapper .ListDiscS li,*/
#growp-editor-wrapper .ListKome li,
#growp-editor-wrapper .ListKomeS li,
#growp-editor-wrapper .ListNum li,
#growp-editor-wrapper .ListNumS li,
#growp-editor-wrapper .ListKomeNumS li,
/*.l-post-content .ListDisc li,*/
/*.l-post-content .ListDiscS li,*/
.l-post-content .ListKome li,
.l-post-content .ListKomeS li,
.l-post-content .ListNum li,
.l-post-content .ListNumS li,
.l-post-content .ListKomeNumS li {
  position: relative;
  padding-left: 0;
}

#growp-editor-wrapper .ListKome li:before,
#growp-editor-wrapper .ListKomeS li:before,
#growp-editor-wrapper .ListNum li:before,
#growp-editor-wrapper .ListNumS li:before,
#growp-editor-wrapper .ListKomeNumS li:before,
.l-post-content .ListKome li:before,
.l-post-content .ListKomeS li:before,
.l-post-content .ListNum li:before,
.l-post-content .ListNumS li:before,
.l-post-content .ListKomeNumS li:before {
  display: inline-block;
  position: absolute;
  font-family: "Lato", Sans-Serif;
  background-color: transparent;
  width: auto;
  height: auto;
  position: relative;
  top: 0;
  left: 0;
}

.ListDisc.InlineB li,
.ListDiscS.InlineB li,
.ListKome.InlineB li,
.ListKomeS.InlineB li,
.ListNum.InlineB li,
.ListNumS.InlineB li,
.ListKomeNumS.InlineB li {
  display: inline-block;
}

/* ディスク（ListDisc） */
.ListDisc li:before {
  content: "";
}

/* ディスク：小（ListDiscS） */
.ListDiscS li:before {
  content: "";
}

/* 米印（ListKome） */
#growp-editor-wrapper ul.ListKome li:before,
.l-post-content ul.ListKome li:before {
  content: "※";
}

/* 米印：小（ListKomeS） */
#growp-editor-wrapper ul.ListKomeS li:before,
.l-post-content ul.ListKomeS li:before {
  content: "※";
}

/* 連番（ListNum） */
.ListNum li:before {
  content: counter(ListNum) ".";
}

/* 連番：小（ListNumS） */
.ListNumS li:before {
  content: counter(ListNum) ".";
}

/* 米印連番：小（ListKomeNumS） */
#growp-editor-wrapper ul.ListKomeNumS li:before,
.l-post-content ul.ListKomeNumS li:before {
  content: "※" counter(ListNum);
}

/* ■ 記述リスト ==================================================================================== */

/* 左右 */
.DLHori {
  margin-bottom: 15px;
}

.DLHori dl {
  display: table;
  width: 100%;
}

.DLHori dt,
.DLHori dd {
  display: table-cell;
  line-height: 1.8em;
  vertical-align: top;
}

/* 上下 */
.DLVert {
  margin-bottom: 15px;
}

.DLVert dt,
.DLVert dd {
  margin: 0;
  line-height: 1.8em;
}

/* テーブルスタイル */
.DLTable {
  margin-bottom: 15px;
  border-top: 1px solid #b8b8b8;
}

.DLTable dl {
  display: table;
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-left: 1px solid #b8b8b8;
}

.DLTable dt,
.DLTable dd {
  display: table-cell;
  padding: 10px 15px;
  border-right: 1px solid #b8b8b8;
  border-bottom: 1px solid #b8b8b8;
  line-height: 1.8em;
  vertical-align: middle;
}

.DLTable dt {
  width: 25%;
  background: #f2f2f2;
}

.DLTable dd {
  width: 75%;
}

/* ■ 表組み ==================================================================================== */

.Table1,
.Table2 {
  width: 100%;
  margin-bottom: 15px;
}

.Table1 th,
.Table2 th,
.Table1 td,
.Table2 td {
  border: 1px solid #b8b8b8;
  line-height: 1.8em;
}

.Table1 th,
.Table2 th {
  background: #f2f2f2;
}

.Table1 td,
.Table2 td {
  background: #fff;
}

/* Table1（項目：左） */
.Table1 th {
  text-align: left;
}

.Table1 th {
  /* width: 25%; */
}

/* Table2（項目：上） */
.Table2 th {
  text-align: center;
}

.Col2_Col1 .Table1,
.Col2_Col1 .Table2 {
  margin-top: 1rem;
}

.Col2_Col1 .Table1 th,
.Col2_Col1 .Table1 td {
  font-size: 12px;
  padding: 10px;
}

/* ■ よくある質問 ==================================================================================== */

.FaqQ li {
  position: relative;
  padding-left: 30px;
  counter-increment: ListNum;
}

.FaqQ.Over10 li {
  padding-left: 35px;
}

.FaqQ li:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "Q" counter(ListNum) ".";
}

.FaqQA li {
  position: relative;
  padding-left: 30px;
  line-height: 2em;
  counter-increment: ListNum;
}

.FaqQA.Over10 li {
  padding-left: 35px;
}

.FaqQA li:before {
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
  content: "Q" counter(ListNum) ".";
}

.FaqQA .answer {
  position: relative;
}

.FaqQA .answer:before {
  display: inline-block;
  position: absolute;
  left: -20px;
  top: 0;
  content: "A.";
}

.FaqQA.Over10 .answer:before {
  left: -25px;
}

/* ■ 動画埋め込み ==================================================================================== */

/*.l-post-content .MovieWrap {*/
/*  margin: 0;*/
/*}*/

.MovieWrap {
  position: relative;
  /*margin-bottom: 20px;*/
  padding-bottom: 56.25%;
  overflow: hidden;
}

.MovieWrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.MovieWrap .mce-object-iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ■ Googleマップ埋め込み ==================================================================================== */

.GoogleMapWrap {
  position: relative;
  padding-top: 50%;
}

.GoogleMap {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

/* ■ SNSシェアボタン ==================================================================================== */

/*
.SnsShare {
text-align: center;
}
*/

.SnsShare li {
  display: inline;
  margin-right: 5px;
}

/* 調整  */

/* Twitter */
/*
.twitter-share-button {
}
*/

/* Facebook */
.fb_iframe_widget {
  display: inline-block !important;
}

.fb_iframe_widget > span {
  vertical-align: baseline !important;
}

/* LINE */
.SnsShare li.Line img {
  vertical-align: top;
}

/* Google＋ */
/*
.SnsShare #___plusone_0 {
width: 70px !important;
}
*/

/* ■ 罫線 ==================================================================================== */

hr {
  margin: 30px 0;
  padding: 0;
  border-style: solid;
  border-width: 1px 0 0 0;
  border-color: #ccc;
}

/* ■ 個別調整 ==================================================================================== */

/* 左・右・中央 寄せ */
.AlignL {
  text-align: left !important;
}

.AlignC {
  text-align: center !important;
}

.AlignR {
  text-align: right !important;
}

/* ボーダー無し */
.NoBorder {
  border: none !important;
}

/* マージン無し */
.MT0 {
  margin-top: 0 !important;
}

.MB0 {
  margin-bottom: 0 !important;
}

/* 横幅「%」指定 */
.W5 {
  width: 5% !important;
}

.W10 {
  width: 10% !important;
}

.W15 {
  width: 15% !important;
}

.W20 {
  width: 20% !important;
}

.W25 {
  width: 25% !important;
}

.W30 {
  width: 30% !important;
}

.W35 {
  width: 35% !important;
}

.W40 {
  width: 40% !important;
}

.W45 {
  width: 45% !important;
}

.W50 {
  width: 50% !important;
}

.W55 {
  width: 55% !important;
}

.W60 {
  width: 60% !important;
}

.W65 {
  width: 65% !important;
}

.W70 {
  width: 70% !important;
}

.W75 {
  width: 75% !important;
}

.W80 {
  width: 80% !important;
}

.W85 {
  width: 85% !important;
}

.W90 {
  width: 90% !important;
}

.W95 {
  width: 95% !important;
}

.W100 {
  width: 100% !important;
}

/* ■ リセット ==================================================================================== */

body {
  margin: 0;
  padding: 0;
  line-height: 1em;
  -webkit-text-size-adjust: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
th,
td,
dl,
ul,
ol,
caption,
blockquote,
input,
select,
textarea,
div {
  margin: 0;
  padding: 0;
  /*font-size: 100%;*/
}

article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

input,
select,
textarea {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

img {
  /*width: 100%;*/
  height: auto;
  border: none;
  vertical-align: bottom;
}

.SectionWrap img {
  height: auto !important;
}

@media print, screen and (min-width: 768px) {
  .PhotoIH {
    width: inherit;
  }
}

form {
  margin: 0;
  padding: 0;
}

li {
  list-style-type: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

blockquote {
  margin: 0 0 0 30px;
}

small {
  font-size: 86%;
  line-height: 1.5em;
}

strong,
em {
  font-style: normal;
}

/* Chromeのオートコンプリートの背景色を消す */
@keyframes onAutoFillStart {
  from {
  }
  to {
  }
}

input:-webkit-autofill {
  animation-name: onAutoFillStart;
  transition: background-color 50000s ease-in-out 0s;
}

/* ■ ClearFix ==================================================================================== */

.CF:after,
.ClearFix:after {
  content: "";
  display: block;
  clear: both;
}

#Header:after,
#HeaderUnit:after,
#Footer:after,
#GlobalNav:after,
#GlobalNavSP:after,
#MainMenu:after,
#News:after,
#Stage:after,
#PageTop:after,
#FooterNav:after,
#FooterNavUnit:after,
.SectionMain:after,
.SectionSub:after,
.SectionMainIn:after,
.SectionSubIn:after,
.IndexMenu:after,
.IndexMenu1:after,
.IndexMenu2:after,
.TabMenu:after,
.Col:after,
.LRBox:after,
.PageNation:after,
.FormAction:after {
  content: "";
  display: block;
  clear: both;
}
