/****************************************
　　　　　　　　　Style Setting
*****************************************/
/*基本情報*/
/*html::-webkit-scrollbar {
  display: none;
}*/
html, body {
  margin: 0;
  padding: 0;
}
/*初期設定*/
body {
  font-size: 16px;
  line-height: 1.6;
  color: #000;
  font-family: YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  position: relative;
}
body.active {
  overflow: hidden;
}
/* IEフォント対応 */
@media all and (-ms-high-contrast:none) {
  body {
    font-family: "メイリオ", Meiryo, YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
  }
}
* {
  box-sizing: border-box;
}
.page-wrap {
  padding-left: 40px;
  padding-right: 40px;
}
.page-size {
  max-width: 1130px;
  width: 100%;
  margin: 0 auto;
  word-wrap: break-word;
}
.content-wrap {
  padding-left: 24px;
  padding-right: 24px;
}
@media screen and (max-width: 568px) {
  .page-wrap {
    padding-left: 10px;
    padding-right: 10px;
  }
}
/*フォント*/
h1, h2, h3, h4, h5, a, p {
  padding: 0;
  margin: 0;
}
/*frontのh1はヘッダーに利用されている場合*/
.front-h1 {
  font-size: 0;
}
.font-0 {
  font-size: 0;
}
/*フォントファミリー*/
.font-PassionOne {
  font-family: 'Passion One', YuGothic, "游ゴシック体", "Yu Gothic", sans-serif;
}
.font-YuGothic {
  font-family: YuGothic, 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', sans-serif;
}
.font-SawarabiGothic {
  font-family: 'Sawarabi Gothic', sans-serif;
}
.font-MuseoSans700 {
  font-family: "Museo Sans 700", sans-serif;
}
/*リンク*/
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
/*イメージ*/
img {
  max-height: 100%;
  max-width: 100%;
  vertical-align: bottom;
}
.object-fit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-family: 'object-fit: cover;';
}
/*リスト*/
ul, ol, li {
  padding: 0;
  margin: 0;
  list-style: none;
}
/*テーブル*/
table {
  border-spacing: 0;
  border-collapse: collapse;
}
td, th {
  padding: 0;
}
input, button, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
/*フォーム*/
input[type="text"] {
  padding: 0;
  border: none;
  border-radius: 0;
  outline: none;
  background: none;
}
input[type="radio"] {
  display: none;
}
input[type="radio"]:checked + label {
  background: #ff0000;
}
input[type="checkbox"] {
  display: none;
}
input[type="checkbox"]:checked + label {
  background: #ff0000;
}
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  outline: none;
  background: transparent;
}
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  resize: none;
  padding: 0;
  border: 0;
  outline: none;
  background: transparent;
}
button, input[type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  border: none;
  outline: none;
  background: transparent;
  cursor: pointer;
}
/*レスポンシブ*/
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
/*内部スクロール*/
.scorll-target {
  padding-top: 64px;
  margin-top: -64px;
}
/*リンクの枠を消す*/
a:focus, *:focus {
  outline: none;
}
/*トリミング*/
.trm_h, .trm_w {
  position: relative;
  height: 0;
  line-height: 0;
  overflow: hidden;
  width: 100%;
  display: block;
  padding-top: 67%;
}
.trm_h img, .trm_w img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .3s;
}
.trm_h img { /*縦*/
  height: 100%;
  width: auto;
  max-width: inherit;
}
.trm_w img { /*横*/
  height: auto;
  width: 100%;
}
/*エディター*/
.editor_area {
  padding-bottom: 80px;
  line-height: 2;
  letter-spacing: 0.05rem;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .editor_area {
    padding-bottom: 50px;
  }
}
.editor_area h2, .editor_area h1 {
  color: #fff;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  margin-bottom: 20px;
  padding: 0 1rem;
  background: #F2879B;
  display: block;
  font-size: 22px;
}
.editor_area h3 {
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  border-bottom: solid 2px #F2879B;
  margin-bottom: 10px;
  font-size: 20px;
}
.editor_area h4 {
  font-weight: bold;
  font-size: 18px;
}
.editor_area strong {
  font-weight: bold;
}
.editor_area em {
  font-style: italic;
}
.editor_area ol {
  list-style: decimal;
  padding-left: 2em;
}
.editor_area ol li {
  list-style: decimal;
}
.editor_area ul {
  list-style: inherit;
  padding-left: 2em;
}
.editor_area ul li {
  list-style: inherit;
}
.editor_area ul.wp-block-gallery {
  padding-left: 0;
}
.editor_area a {
  transition: 0.3s;
  font-weight: bold;
  text-decoration: underline !important;
}
.editor_area a:hover {
  opacity: .7;
}
.editor_area blockquote {
  position: relative;
  padding: 10px 15px 10px 60px;
  box-sizing: border-box;
  font-style: italic;
  background: #f5f5f5;
  color: #777777;
  border-left: 4px solid #f2879b;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.14);
  margin: 10px 0;
}
.editor_area blockquote:before {
  display: inline-block;
  position: absolute;
  top: 15px;
  left: 15px;
  content: "\f10d";
  font-family: FontAwesome;
  color: #f2879b;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
}
.editor_area blockquote p {
  padding: 0;
  margin: 7px 0;
  line-height: 1.7;
}
.editor_area blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}
/*対応エリア*/
.service_list_area {
  margin-bottom: 40px;
}
.s_a_ttl02 {
  font-size: 14px;
  padding: 5px 20px;
  margin: 0 auto 8px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-left: solid 5px #f2879b;
  border-bottom: 1px solid #ccc;
  line-height: 1;
}
.q_footer .s_a_ttl02 {
  border-left: solid 5px #fcc;
  border-bottom: 1px solid #fcc;
}
.s_a_ttl02_span {
  display: inline-block;
  font-size: 18px;
}
.s_a_txt02 {
  line-height: 1.6;
  font-size: 14px;
  padding: 0 2.3%;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 0.5em;
}
/*.s_a_txt02 a{
  display: inline-block;
  color: #000;
  border-bottom: dotted 2px #fff;
}
.s_a_txt02 a:hover{
  border-bottom: dotted 2px #515151;
}*/
/*@media screen and (max-width: 767px){

}*/
.f-event-img .event_finish {
  position: absolute;
  top: 5px;
  right: 5px;
  color: #fff;
  z-index: 10;
  background-color: #333;
  padding: 5px 10px;
}