@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=M+PLUS+Rounded+1c:400,800&display=swap");
/* ==================================================
	404
================================================== */
.p-404 {
  background-color: #efefef;
  padding: 100px 0 100px;
  text-align: center;
  font-size: 1.8rem;
}
.p-404__title {
  font-size: 3rem;
  line-height: 1.2;
  font-weight: bold;
  margin-bottom: 30px;
}
.p-404__text {
  margin-bottom: 30px;
}
.p-404 a {
  color: #fff;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  width: 300px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  z-index: 9;
  text-decoration: none;
}
.p-404 a:hover {
  opacity: 1;
  color: #333;
}
.p-404 a:hover:before {
  animation: hover-in 0.3s forwards alternate;
}
.p-404 a:before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: "";
  transform: scale(0, 1);
  transition: all 0.3s;
  background: #fff;
  border: 2px solid #333;
}

@keyframes hover-in {
  0% {
    transform-origin: left top;
    transform: scale(0, 1);
  }
  100% {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
/* ==================================================
	お問い合わせ完了ページ（Thanks）
================================================== */
.p-thank {
  padding: 100px 0;
  text-align: center;
  font-size: 1.8rem;
}
.p-thank figure {
  margin-bottom: 30px;
}
.p-thank img {
  margin: 0 auto;
}
.p-thank_tlt {
  font-size: 2rem;
  color: #333;
  font-weight: bold;
}
.p-thank_txt {
  font-size: 1.6rem;
  line-height: 1.6;
  color: #000;
}
.p-thank_btn {
  outline: none;
  display: block;
  width: 200px;
  background: #d55f91;
  border-radius: 100px;
  border: 4px solid #d55f91;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  margin: 40px auto 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .p-thank_btn {
    margin-top: 20px;
    padding: 5px 10px;
  }
}
/* ========== end △ */

/* ==================================================
	記事詳細ページ（singlepage）
================================================== */
.l-content .single-entry a {
  text-decoration: underline;
  color: #00e;
}
.l-content .single-entry p {
  margin-bottom: 30px;
}
.l-content .single-entry ul, .l-content .single-entry ol {
  background-color: #f9f9f9;
  padding-top: 20px;
  padding-left: 40px;
  padding-bottom: 20px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.02);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.02);
  margin-bottom: 30px;
}
.l-content .single-entry ul {
  list-style: disc;
}
.l-content .single-entry ol {
  list-style: decimal;
}
.l-content .single-entry h2 {
  background: #333;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1.6;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h3 {
  background-color: #fff;
  color: #333;
  font-size: 2.2rem;
  line-height: 1.6;
  padding: 15px 0;
  border-top: 3px solid #333;
  border-bottom: 3px solid #333;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h4 {
  background-color: #fff;
  color: #333;
  border-left: 4px solid #333;
  font-size: 2rem;
  line-height: 1.6;
  padding: 15px;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h5 {
  background-color: #fff;
  color: #333;
  font-size: 1.8rem;
  line-height: 1.6;
  padding: 15px 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry h6 {
  background-color: #fff;
  color: #333;
  font-size: 1.6rem;
  line-height: 1.6;
  padding: 15px 0;
  font-weight: bold;
  margin-bottom: 30px;
}
.l-content .single-entry blockquote {
  padding: 30px;
  border: 1px solid #666;
  position: relative;
  margin-bottom: 30px;
}
.l-content .single-entry blockquote:before, .l-content .single-entry blockquote:after {
  font-family: fontello;
  font-size: 2rem;
  width: 2rem;
  height: 2rem;
  background: #fff;
  position: absolute;
  color: #666;
}
.l-content .single-entry blockquote:before {
  content: "";
  top: -6px;
  left: -6px;
}
.l-content .single-entry blockquote:after {
  content: "";
  bottom: -6px;
  right: -6px;
}
.l-content .single-entry blockquote p {
  margin-bottom: 0 !important;
}
.l-content .single-entry code {
  background-color: #eee;
  padding: 0px 5px 0px;
  border-radius: 2px;
  margin: 0 5px;
  border: solid 1px #bbb;
  color: #333;
  font-size: 1.6rem;
  line-height: 40px;
  display: inline-block;
  margin-bottom: 30px;
}

.pre-next {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  max-width: 750px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 30px;
  list-style: none;
  background: no-repeat;
  box-shadow: none;
  border: none;
  padding: 0;
  border-radius: unset;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next {
    margin: 20px 0;
  }
}
/* ========== end △ */
.pre-next li {
  position: relative;
  border: 0 solid #ddd;
  border-width: 1px 1px 1px 0;
  font-size: 14px;
  list-style: none;
  -webkit-transition: background 0.2s ease;
  -o-transition: background 0.2s ease;
  transition: background 0.2s ease;
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.pre-next li:first-child {
  border-width: 1px;
}
.pre-next li:before {
  font-size: 1.4rem;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
}
.pre-next a {
  color: #333;
  width: 100%;
  padding: 15px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next a {
    justify-content: center;
    padding: 10px 40px;
  }
}
/* ========== end △ */
.pre-next a .image {
  width: 120px;
  overflow: hidden;
}
.pre-next a .image .thumb {
  width: 100%;
  padding-top: 60%;
  position: relative;
}
.pre-next a .image .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next a .image {
    display: none;
  }
}
/* ========== end △ */
.pre-next a span {
  flex: 1;
  margin: 0 10px;
  font-size: 1.4rem;
  max-height: 40px;
  -webkit-line-clamp: 2;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next a span {
    display: none;
  }
}
/* ========== end △ */
.pre-next .pre-post:before {
  left: 10px;
}
.pre-next .pre-post a {
  padding-right: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next .pre-post a:before {
    content: attr(data-prev);
  }
}
/* ========== end △ */
.pre-next .pre-post a span {
  margin-right: 0;
  margin-left: 15px;
}
.pre-next .next-post:before {
  right: 10px;
}
.pre-next .next-post a {
  text-align: right;
  width: 100%;
  padding-left: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .pre-next .next-post a:before {
    content: attr(data-next);
  }
}
/* ========== end △ */
.pre-next .next-post a span {
  margin-left: 0;
  margin-right: 15px;
}
.pre-next .l-arrow:before {
  content: "";
  font-family: fontello;
}
.pre-next .r-arrow:before {
  content: "";
  font-family: fontello;
}

/* ==================================================
	TinyMCE Advanced用
================================================== */
/* ==================================================
	basic layout
================================================== */
* {
  box-sizing: border-box;
}

body {
  font-family: Hiragino Sans, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  color: #333;
  overflow-x: hidden;
}

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

/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 1024px) {
  h1 {
    font-size: 3em;
    margin-bottom: 30px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (max-width: 1023px) and (min-width: 769px) {
  h1 {
    font-size: 2.5em;
    line-height: 1.125em;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  h1 {
    font-size: 2em;
    line-height: 1.25em;
  }
}
/* ========== end △ */

/* ▽ PC-TAB layout ========== */
@media only screen and (min-width: 1024px) {
  h2 {
    font-size: 2.25em;
    line-height: 1.25em;
    margin-bottom: 30px;
  }
}
/* ========== end △ */
/* ▽ PC-TAB layout ========== */
@media only screen and (max-width: 1023px) and (min-width: 769px) {
  h2 {
    font-size: 2em;
    line-height: 1.25em;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  h2 {
    font-size: 1.625em;
    line-height: 1.15384615em;
  }
}
/* ========== end △ */

.container {
  max-width: 1200px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media only screen and (max-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 0;
    width: 95%;
  }
}

.l-no__padding {
  padding: 0;
}
.l-no__margin {
  margin: 0;
}
.l-flex {
  display: flex;
}
.l-flex__no-wrap {
  flex-wrap: nowrap;
}
.l-flex__wrap {
  flex-wrap: wrap;
}
.l-flex__spb {
  justify-content: space-between;
}
.l-block {
  display: block;
}
.l-none {
  display: none;
}
.l-inline {
  display: inline;
}

.aR {
  text-align: right;
}

.aC {
  text-align: center;
}

.aL {
  text-align: left;
}

/* ==================================================
	until
================================================== */
.mt0 {
  margin-top: 0px;
}

.mb0 {
  margin-top: 0px;
}

.mt1 {
  margin-top: 5px;
}

.mb1 {
  margin-top: 5px;
}

.mt2 {
  margin-top: 10px;
}

.mb2 {
  margin-top: 10px;
}

.mt3 {
  margin-top: 15px;
}

.mb3 {
  margin-top: 15px;
}

.mt4 {
  margin-top: 20px;
}

.mb4 {
  margin-top: 20px;
}

.mt5 {
  margin-top: 25px;
}

.mb5 {
  margin-top: 25px;
}

.mt6 {
  margin-top: 30px;
}

.mb6 {
  margin-top: 30px;
}

.mt7 {
  margin-top: 35px;
}

.mb7 {
  margin-top: 35px;
}

.mt8 {
  margin-top: 40px;
}

.mb8 {
  margin-top: 40px;
}

.mt9 {
  margin-top: 45px;
}

.mb9 {
  margin-top: 45px;
}

.mt10 {
  margin-top: 50px;
}

.mb10 {
  margin-top: 50px;
}

/* ==================================================
	l-pageTitle
================================================== */
.l-pageTitle {
  background-color: #cdcdcd;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 70vh;
}
.l-pageTitle h1, .l-pageTitle h2 {
  font-size: 7vw;
}

/* ==================================================
	l-header
================================================== */
.l-header {
  width: 100%;
  height: 100vh;
  background-image: url("../img/mv-bg.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
  min-height: 700px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-header {
    min-height: 500px;
	  height:100%;
	  padding-bottom:130%;
  }
}
/* ========== end △ */
.l-header_img {
  width: 40%;
  position: absolute;
  bottom: 0;
  left: 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-header_img {
    width: 60%;
  }
  .l-header_img img {
    width: 100%;
  }
}
/* ========== end △ */
.l-header h1 {
  margin-bottom: 0;
}
.l-header_banner {
  margin-bottom: 20px;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 650px) {
  .l-header_banner {
    margin-bottom: 10px;
  }
}
/* ========== end △ */
.l-header_info {
  width: 65%;
  margin-left: auto;
  padding-right: 15vw;
  transition: 0.2s linear;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 1024px) {
  .l-header_info {
    padding: 0 15px;
    width: 70%;
  }
}
/* ========== end △ */
/* ▽ any width layout ========== */
@media only screen and (max-width: 600px) {
  .l-header_info {
    width: 80%;
   	position:absolute;
	 top:35px;
	right:0;
  }
}
/* ========== end △ */
.l-header_txt01 {
  display: block;
  font-size: 3rem;
  color: #fff;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-header_txt01 {
    font-size: 1.5rem;
    line-height: 1.5;
  }
}
/* ========== end △ */
.l-header_txt02 {
  display: block;
  font-size: 8rem;
  line-height: 1.2;
  color: #fff;
  font-weight: bold;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-header_txt02 {
    font-size: 4rem;
  }
}
/* ========== end △ */
.l-header_txt03 {
  display: block;
  font-size: 6rem;
  color: #fff;
  font-style: italic;
  line-height: 1.2;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-header_txt03 {
    font-size: 3rem;
  }
}
/* ========== end △ */

/* ==================================================
	l-layout
================================================== */
.single-2column {
  display: flex;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .single-2column {
    flex-direction: column;
  }
}
/* ========== end △ */
.single-2column .l-layout--content {
  flex: 1 1 auto;
  padding-right: 30px;
}
.single-2column .l-layout--sidebar {
  flex: 0 0 300px;
}

/* ==================================================
	l-sidebar
================================================== */
/* ==================================================
	Breadcrumb
================================================== */
.c-breakcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  margin: 30px 0;
  list-style: none;
}

@media only screen and (max-width: 639px) {
  .c-breakcrumb {
    padding: 15px 0;
    margin: 20px 0;
  }
}
.c-breakcrumb li {
  font-size: 11px;
  position: relative;
  margin: 0 10px;
  padding-right: 25px;
}

.c-breakcrumb li a {
  font-size: 1.2rem;
  text-decoration: none;
  color: #112942;
  vertical-align: middle;
}

.c-breakcrumb li:not(:last-child):after {
  content: "";
  position: absolute;
  right: 0px;
  top: 50%;
  margin-top: -5px;
  width: 6px;
  height: 10px;
  background: url(../img/arrow-right.svg) center center no-repeat;
  background-size: cover;
}

.c-breakcrumb li span {
  font-size: 1.2rem;
  text-decoration: none;
  color: #333;
}

/* Sidebar -Widget
===================================================== */
.sidebar-main {
  margin-bottom: 40px;
}
.sidebar-main:last-child {
  margin-bottom: 0;
}
.sidebar-main .sidebar-title {
  text-transform: uppercase;
  font-size: 1.6rem;
  padding: 6px 12px;
  background: #333;
  border: 3px double #fff;
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
}
.sidebar-main img {
  width: 100%;
}

.wide-layout ul {
  list-style-type: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
}
.wide-layout ul li {
  margin-bottom: 30px;
}
.wide-layout ul li .side-ranking-title {
  font-size: 17px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
}
.wide-layout ul li .side-ranking-meta {
  margin-top: 15px;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img img {
  display: none;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a {
  overflow: hidden;
  display: block;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a img {
  width: 100%;
  height: auto;
  display: block;
  background: #fff;
  -webkit-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.wide-layout ul li .side-ranking-meta .side-ranking-img a:hover img {
  -webkit-filter: opacity(0.8);
  filter: opacity(0.8);
}
.wide-layout ul li .side-ranking-meta .side-ranking-info {
  font-size: 1.6rem;
  line-height: 1.5;
  margin-top: 10px;
  margin-bottom: 10px;
}
.wide-layout ul li .side-btn-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.wide-layout ul li .side-ranking-btn {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}
.wide-layout ul li .side-ranking-btn a {
  width: 100%;
  height: auto;
  padding-left: 10px;
  padding-right: 10px;
}
.wide-layout ul li:last-child {
  margin-bottom: 0;
}
.wide-layout ul li:first-child .side-ranking-title {
  border-color: #FFCF24;
}
.wide-layout ul li:nth-child(2) .side-ranking-title {
  border-color: #A0A9B1;
}
.wide-layout .color-button01 a {
  line-height: 40px;
  font-size: 1.4rem;
}
.wide-layout .color-button02 a {
  line-height: 40px;
  font-size: 1.4rem;
}

.simple-style .side-ranking-title {
  border-bottom: 1px solid;
  padding-left: 45px;
  padding-bottom: 3px;
  letter-spacing: 0;
}
.simple-style .side-ranking-title img {
  width: 45px;
  position: absolute;
  left: -2px;
  bottom: 4px;
}

.c-profile {
  text-align: center;
}
.c-profile .img {
  width: 110px;
  height: 110px;
  margin: 0 auto 10px auto;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
}
.c-profile .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.c-profile .name {
  font-weight: 700;
  font-size: 1.6rem;
  margin-bottom: 5px;
}
.c-profile .job {
  font-size: 1.4rem;
  color: #999;
  margin-bottom: 3px;
}
.c-profile .profile-sns {
  margin-top: 10px;
}

.link--wrap a {
  display: inline-block;
  vertical-align: top;
  margin: 4px;
  padding: 8px 12px;
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 13px;
  color: #fff;
  background: #666;
}

.searchform {
  position: relative;
}
.searchform .screen-reader-text {
  display: none;
}
.searchform .label__submit {
  display: inherit;
  margin-bottom: 10px;
}
.searchform .label__submit:before {
  content: "";
  font-family: fontello;
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  height: 45px;
  width: 34px;
  background: none;
  display: inline-block;
  font-size: 2rem;
  color: #aaa !important;
  line-height: 45px;
}
.searchform input[type=text] {
  background-color: #fff;
  border: 1px solid #ddd;
  height: 45px;
  width: 100%;
  margin: 0;
  padding: 0 10px;
  padding-right: 40px;
  font-size: 1.3rem;
  -webkit-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  -webkit-transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, opacity 0.3s ease, border 0.3s ease, padding 0.3s ease, left 0.3s ease, bottom 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
}
.searchform input[type=text]:focus {
  border: 1px solid #0094c8;
}
.searchform input[type=submit] {
  display: none;
}

.tagcloud a {
  display: inline-block;
  vertical-align: top;
  margin: 4px;
  padding: 8px 12px;
  font-size: 1.3rem !important;
  font-weight: 500;
  line-height: 13px;
  color: #fff;
  background: #666666;
}

.recent-post.c-list01 .c-list01_items {
  width: 100%;
  margin-right: 0;
}

.post-sidebar .items {
  width: 100%;
  position: relative;
  margin-bottom: 20px;
}
.post-sidebar .items:last-child {
  margin-bottom: 0;
}
.post-sidebar .items a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.post-sidebar .items .img {
  width: 33%;
  margin-right: 2%;
}
.post-sidebar .items .img .thumb {
  padding-top: 60%;
  position: relative;
  width: 100%;
  overflow: hidden;
}
.post-sidebar .items .img .thumb img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.post-sidebar .items .content {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  position: relative;
}
.post-sidebar .items .inner {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  position: absolute;
  bottom: 0;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
}
.post-sidebar .items .inner .date {
  margin-right: 10px;
}
.post-sidebar .items .tlt p {
  font-size: 1.4rem;
  font-weight: 500;
  color: #333;
  font-weight: bold;
  line-height: 18px;
  max-height: 36px;
  margin-bottom: 3px;
}
.post-sidebar .items .view p {
  font-size: 1.2rem;
  color: #aaa;
  padding-left: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-sidebar .items .view span {
  position: relative;
}
.post-sidebar .items .view span:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.2rem;
  left: -15px;
  top: 0px;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.post-sidebar .items .date p {
  font-size: 1.2rem;
  color: #aaa;
}

.twobutton {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  margin-bottom: 30px;
}

.color-button01 {
  margin: 0 5px;
}
.color-button01 a {
  border-radius: 6px;
  text-align: center;
  padding: 0px 80px;
  line-height: 60px;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
}
.color-button01 a:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0 0 0 #c07800 !important;
  box-shadow: 0 0 0 #c07800 !important;
  -webkit-transition: all 0.01 ease-in-out;
  -o-transition: all 0.01 ease-in-out;
  transition: all 0.01 ease-in-out;
}

.color-button02 {
  margin: 0 5px;
}
.color-button02 a {
  border-radius: 6px;
  text-align: center;
  padding: 0px 80px;
  line-height: 60px;
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
}
.color-button02 a:hover {
  -webkit-transform: translateY(4px);
  -ms-transform: translateY(4px);
  transform: translateY(4px);
  -webkit-box-shadow: 0 0 0 #c07800 !important;
  box-shadow: 0 0 0 #c07800 !important;
  -webkit-transition: all 0.01 ease-in-out;
  -o-transition: all 0.01 ease-in-out;
  transition: all 0.01 ease-in-out;
}

@media (max-width: 767px) {
  .wide-layout ul li .side-ranking-title {
    font-weight: 500;
  }
}
@media (max-width: 768px) {
  .wide-layout ul li .side-btn-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .wide-layout ul li .side-ranking-btn {
    -webkit-box-flex: inherit;
    -ms-flex: inherit;
    flex: inherit;
    width: 100%;
    margin: 5px auto;
  }
}
@media print {
  .post-sidebar .items .tlt p {
    font-size: 1.6rem;
  }

  .color-button01 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button01 a {
    width: 100%;
    display: block;
  }

  .color-button02 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button02 a {
    width: 100%;
    display: block;
  }

  .wide-layout .color-button01 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
  .wide-layout .color-button02 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 768px) {
  .post-sidebar .items .tlt p {
    font-size: 1.6rem;
  }

  .color-button01 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button01 a {
    width: 100%;
    display: block;
  }

  .color-button02 {
    display: block;
    width: 100%;
    margin: 5px 0px;
  }
  .color-button02 a {
    width: 100%;
    display: block;
  }

  .wide-layout .color-button01 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
  .wide-layout .color-button02 a {
    line-height: 60px;
    font-size: 1.6rem;
  }
}
.widget_pages ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_pages ul li:last-child {
  border-bottom: none;
}
.widget_pages ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_pages ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_pages ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.widget_popularpost_widget .post-sidebar .img {
  position: relative;
}

.widget_categories ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_categories ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_categories ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_categories ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}
.widget_categories label {
  font-size: 0;
  position: relative;
  display: none;
}
.widget_categories select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_categoryC select {
  width: 100%;
  height: 40px;
  border: 1px solid #e5e5e5;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_meta ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_meta ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_meta ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_meta ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.widget_archive ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_archive ul li:last-child {
  border-bottom: none;
}
.widget_archive ul li a {
  display: block;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_archive ul li a:hover {
  -webkit-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  transform: translate(5px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_archive ul li a:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 0.9rem;
  line-height: 14px;
  top: 50%;
  left: 0;
  color: #fff;
  background: #333;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  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;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  text-indent: 2px;
}
.widget_archive label {
  font-size: 0;
  position: relative;
  display: none;
}
.widget_archive select {
  width: 100%;
  height: 40px;
  border: 1px solid #ddd;
  padding-left: 10px;
  z-index: 1;
  background: transparent;
  position: relative;
  font-size: 1.6rem;
  -webkit-appearance: none;
  background: url("../img/60781.png");
  background-size: 15px 15px;
  background-repeat: no-repeat;
  background-position: calc(100% - 10px) center;
}

.widget_calendar table caption {
  padding: 8px 0;
  margin-bottom: 8px;
  background: #ececec;
}
.widget_calendar table tr th {
  text-align: center;
  padding: 3px 0;
}
.widget_calendar table tr td {
  text-align: center;
  font-size: 1.4rem;
  padding: 3px 0;
}
.widget_calendar #calendar_wrap {
  background: #fff;
  padding-bottom: 8px;
}
.widget_calendar #prev a {
  color: #333 !important;
  font-size: 1.4rem;
}
.widget_calendar #next a {
  color: #333 !important;
}

.widget_pages ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_pages ul li:last-child {
  border-bottom: none;
}
.widget_pages ul li a {
  display: block;
  padding: 10px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_pages ul li a:hover:after {
  right: 5px;
  -webkit-transform: translate(1px, 0);
  -ms-transform: translate(1px, 0);
  transform: translate(1px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_pages ul li a:after {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 1.4rem;
  right: 10px;
  color: #666;
}

.intro-site .intro-text {
  margin-top: 5px;
  text-align: center;
  color: #333;
}

.widget_rss h4 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.widget_rss h4 .rsswidget {
  font-size: 1.6rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 5px;
}
.widget_rss ul li {
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
}
.widget_rss ul li a {
  font-size: 1.6rem;
  color: #333;
  font-weight: bold;
  display: block;
}
.widget_rss ul li .rss-date {
  font-size: 1.4rem;
  padding: 5px 0;
  display: block;
}
.widget_rss ul li .rssSummary {
  font-size: 1.4rem;
  display: block;
}
.widget_rss ul li cite {
  display: none;
}

.widget_nav_menu ul li {
  border-bottom: 1px dotted #ddd;
  margin: 0;
  padding: 0;
  position: relative;
}
.widget_nav_menu ul li:last-child {
  border-bottom: none;
}
.widget_nav_menu ul li .sub-menu {
  padding-left: 15px;
}
.widget_nav_menu ul li .sub-menu a {
  border-bottom: none;
}
.widget_nav_menu ul li a {
  display: block;
  padding: 10px 20px;
  margin: 0;
  position: relative;
  color: #666;
}
.widget_nav_menu ul li a:hover {
  -webkit-transform: translate(5px, 0);
  -ms-transform: translate(5px, 0);
  transform: translate(5px, 0);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}
.widget_nav_menu ul li a:before {
  content: "";
  font-family: fontello;
  position: absolute;
  font-size: 0.9rem;
  line-height: 14px;
  top: 50%;
  left: 0;
  color: #fff;
  background: #333;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  transform: translateY(-50%);
  text-indent: 2px;
}
.widget_nav_menu ul .menu-item-has-children {
  border-bottom: none;
}
.widget_nav_menu ul .menu-item-has-children a {
  border-bottom: 1px dotted #ddd;
}

.gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.gallery dt a {
  width: 100%;
  display: block;
  position: relative;
  padding-top: 100%;
}
.gallery dt a img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}

/* l-intro
------------------------------------------------- */
.l-intro_inner {
  display: flex;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 550px) {
  .l-intro_inner {
    display: block;
  }
}
/* ========== end △ */
.l-intro_info {
  width: 50%;
  background: #fff;
  padding: 100px 50px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-intro_info {
    width: 100%;
    padding: 50px 25px;
  }
}
/* ========== end △ */
.l-intro_bg__inner {
  background-image: url(../img/intro_image.png);
}
.l-intro_bg {
  width: 50%;
  overflow: hidden;
  position: relative;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-intro_bg {
    width: 100%;
    padding-bottom: 100%;
  }
}
/* ========== end △ */
.l-intro_bg .bg_photo {
  background-size: auto 100%;
  background-position: top left;
  background-repeat: repeat;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 550px) {
  .l-intro_bg .bg_photo {
    width: 252.711% !important;
  }
}
/* ========== end △ */
.l-intro_bg .bg_photo__01 {
  background-image: url(../img/intro_image.png);
  animation: photo01 20s linear 0s infinite forwards;
}
.l-intro_bg .bg_photo__02 {
  background-image: url(../img/intro_image.png);
  transform: translateX(-100%);
  animation: photo02 20s linear 0s infinite forwards;
}
.l-intro_bg img {
  display: none;
}
@keyframes photo01 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes photo02 {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0);
  }
}
.l-intro_txt {
  font-size: 2rem;
  line-height: 1.875;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-intro_txt {
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
/* ========== end △ */

/* l-profile
------------------------------------------------- */
.l-profile {
  background: -moz-linear-gradient(90deg, #cd6eff 0%, #d55e89 100%);
  /* ff3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #d55e89), color-stop(100%, #cd6eff));
  /* safari4+,chrome */
  background: -webkit-linear-gradient(90deg, #cd6eff 0%, #d55e89 100%);
  /* safari5.1+,chrome10+ */
  background: -o-linear-gradient(90deg, #cd6eff 0%, #d55e89 100%);
  /* opera 11.10+ */
  background: -ms-linear-gradient(90deg, #cd6eff 0%, #d55e89 100%);
  /* ie10+ */
  background: linear-gradient(0deg, #cd6eff 0%, #d55e89 100%);
  /* w3c */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d55e89", endColorstr="#cd6eff",GradientType=0 );
  /* ie6-9 */
  padding: 100px 0;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile {
    padding: 50px 0;
  }
}
/* ========== end △ */
.l-profile_inner {
  background-image: url("../img/profile-bg.png");
  background-color: #fff;
  background-position: center;
  background-size: cover;
  border-radius: 8px;
  padding: 50px;
  box-shadow: 0 0px 15px 0px rgba(51, 51, 51, 0.7);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_inner {
    padding: 25px;
    border-radius: 4px;
  }
}
/* ========== end △ */
.l-profile_tlt01 {
  color: #d55e89;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 6rem;
  text-align: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_tlt01 {
    font-size: 3rem;
  }
}
/* ========== end △ */
.l-profile_tlt02 {
  color: #d55e89;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 50px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_tlt02 {
    font-size: 2rem;
    margin-bottom: 25px;
  }
}
/* ========== end △ */
.l-profile_tb {
  max-width: 630px;
  display: block;
  margin: 0 auto 30px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_tb {
    max-width: 320px;
    margin-bottom: 15px;
  }
}
/* ========== end △ */
.l-profile_tb dl {
  display: flex;
}
.l-profile_tb dt, .l-profile_tb dd {
  flex: 1;
  font-size: 2rem;
  line-height: 1.4;
  padding: 10px 80px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_tb dt, .l-profile_tb dd {
    font-size: 1.4rem;
    padding: 5px 0vw;
    transition: 0.2s linear;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-profile_tb dt, .l-profile_tb dd {
    padding-left: 7vw;
  }
}
/* ========== end △ */
/* ▽ any width layout ========== */
@media only screen and (max-width: 650px) {
  .l-profile_tb dt, .l-profile_tb dd {
    padding-left: 8vw;
  }
}
/* ========== end △ */

.l-youtube_inner {
  margin-bottom: 100px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-youtube_inner {
    margin-bottom: 50px;
  }
}
/* ========== end △ */
.l-youtube_tlt01 {
  color: #fff;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 6rem;
  text-align: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-youtube_tlt01 {
    font-size: 3rem;
  }
}
/* ========== end △ */
.l-youtube_list {
  margin: 50px 0;
}
.l-youtube_list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: -30px;
}
.l-youtube_list li {
  width: 32%;
  margin-bottom: 30px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-youtube_list li {
    width: 48%;
  }
}
/* ========== end △ */
@media only screen and (max-width: 639px) {
  .l-youtube_list li {
    width: 100%;
  }
	
	.l-youtube_list{
		margin-bottom:30px;
	}
}
.l-youtube_list iframe {
  width: 100%;
  height: 280px;
}

/* l-line
------------------------------------------------- */
.l-social {
  background: #00b900;
  padding: 5vw 0;
  text-align: center;
}
.l-social_home {
  background: linear-gradient(45deg, #ef6d6e 0%, #e51a7e 100%);
}
.l-social_home .l-social_btn {
  border-color: #c41957;
  color: #ff1b6e;
}
.l-social_home .l-social_arrow {
  background: #ff1b6e;
}
.l-social_home .l-social_arrow:after {
  background: #ff1b6e;
}
.l-social_youtube {
  background: #ff0000;
}
.l-social_youtube .l-social_btn {
  border-color: #b80000;
  color: #da0707;
}
.l-social_youtube .l-social_arrow {
  background: #da0707;
}
.l-social_youtube .l-social_arrow:after {
  background: #da0707;
}
.l-social_twt {
  background: #00acee;
}
.l-social_twt .l-social_btn {
  border-color: #17607c;
  color: #0d86b5;
}
.l-social_twt .l-social_arrow {
  background: #0d86b5;
}
.l-social_twt .l-social_arrow:after {
  background: #0d86b5;
}

.l-social_note {
  background: #2db696;
}
.l-social_note .l-social_btn {
  border-color: #0fd9aa;
  color: #0fd9aa;
}
.l-social_note .l-social_arrow {
  background: #0fd9aa;
}
.l-social_note .l-social_arrow:after {
  background: #0fd9aa;
}

.l-social_telegram{
	background:#57AEE7;
}

.l-social_telegram .l-social_btn{
  border-color: #0B5180;
  color: #57aee7;
}

.l-social_telegram .l-social_arrow {
  background: #57aee7;
}

.l-social_telegram .l-social_arrow:after {
  background: #57aee7;
}


.l-social_tlt {
  color: #fff;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 30px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-social_tlt {
    margin-bottom: 15px;
    font-size: 1.4rem;
  }
}
/* ========== end △ */
.l-social_btn {
  display: inline-block;
  background: #fff;
  border-radius: 100px;
  border: 8px solid #019801;
  font-size: 3rem;
  font-weight: bold;
  color: #00b900;
  padding: 30px 50px;
  width: 800px;
  max-width: 100%;
  position: relative;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-social_btn {
    max-width: 320px;
    width: 100%;
    height: 50px;
    border-width: 4px;
    border-radius: 25px;
    font-size: 1.6rem;
    padding: 0 15px;
    margin: 0 auto;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
  }
}
/* ========== end △ */
/* ▽ MIN TAB layout ========== */
@media only screen and (min-width: 769px) {
  .l-social_btn:hover .l-social_arrow {
    transform: translateX(10px);
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-social_btn:hover .l-social_arrow {
    right: 10px;
  }
}
/* ========== end △ */
.l-social_arrow {
  display: inline-block;
  width: 100px;
  height: 2px;
  background: #00b900;
  margin-left: 30px;
  /* position: relative; */
  transition: 0.2s linear;
  position: absolute;
  top: 50%;
  right: 70px;
  margin-top: 5px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-social_arrow {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    max-width: 50px;
    margin-top: 2px;
  }
}
/* ========== end △ */
.l-social_arrow:after {
  content: "";
  display: block;
  position: absolute;
  right: -2px;
  bottom: 4px;
  width: 15px;
  height: 2px;
  background: #00b900;
  -webkit-transform: rotate(30deg);
  -moz-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  -o-transform: rotate(30deg);
  transform: rotate(30deg);
}

.l-question {
  padding: 70px 0 100px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question {
    padding: 35px 0 50px;
  }
}
/* ========== end △ */
.l-question .message {
  display: flex;
  margin-bottom: 10px;
}
.l-question .message:last-child {
  margin-bottom: 0px;
}
.l-question .message .balloon {
  width: 70%;
  font-size: 2.2rem;
  font-weight: bold;
  background: #efefef;
  /* background:#d6d6d6; */
  line-height: 1.4;
  border-bottom: 3px solid;
  border-color: #bfbfbf;
  padding: 26px 40px;
  border-radius: 5px;
  position: relative;
  margin-left: 40px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message .balloon {
    font-size: 1.6rem;
    padding: 13px 20px;
    margin-left: 20px;
    border-width: 2px;
  }
}
/* ========== end △ */
.l-question .message .balloon:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 40px 25px 0;
  border-color: transparent #efefef transparent transparent;
  position: absolute;
  top: 15px;
  left: -39px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message .balloon:before {
    border-width: 0 20px 15px 0;
    left: -19px;
    top: 10px;
  }
}
/* ========== end △ */
.l-question .message_reverse {
  justify-content: flex-end;
  margin-bottom: 40px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message_reverse {
    margin-bottom: 20px;
  }
}
/* ========== end △ */
.l-question .message_reverse .balloon {
  background: #d46199;
  align-self: flex-end;
  color: #fff;
  margin-left: 0px;
  width: 76%;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message_reverse .balloon {
    align-self: center;
  }
}
/* ========== end △ */
.l-question .message_reverse .balloon:before {
  left: auto;
  right: -39px;
  border-width: 25px 40px 0 0;
  border-color: #d46199 transparent transparent transparent;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message_reverse .balloon:before {
    right: -19px;
    border-width: 15px 20px 0 0;
  }
}
/* ========== end △ */
.l-question .message .avatar {
  width: 115px;
  margin-left: 60px;
  flex-shrink: 0;
}
.l-question .message .avatar img {
  border-radius: 50%;
  box-shadow: 3px 4px 15.2px 3.8px rgba(0, 0, 0, 0.2);
  transform: scaleX(-1);
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-question .message .avatar {
    max-width: 100px;
    width: 23%;
    margin-left: 30px;
  }
}
/* ========== end △ */

/* l-footer
------------------------------------------------- */
.page-id-9 .l-footer {
  background: none;
}

.l-footer {
  background: url("../img/footer-bg.png") no-repeat;
  background-position: 52% 27%;
  background-size: auto 1140px;
  padding: 68px 0 30px;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 1140px) {
  .l-footer {
    background-size: cover;
  }
}
/* ========== end △ */
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-footer {
    padding: 40px 0 15px;
  }
}
/* ========== end △ */
.l-footer__content {
  padding-bottom: 45px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-footer__content {
    padding-bottom: 10px;
  }
}
/* ========== end △ */
.l-footer .c-banner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 800px) {
  .l-footer .c-banner {
    justify-content: space-between;
  }
}
/* ========== end △ */
.l-footer .c-banner li {
  max-width: 320px;
  margin: 19px 22px;
  background: #fff;
}
/* ▽ any width layout ========== */
@media only screen and (max-width: 800px) {
  .l-footer .c-banner li {
    width: 48%;
    max-width: 100%;
    margin: 0 0 20px;
  }
}
/* ========== end △ */
.l-footer .c-banner li a {
  display: block;
}
.l-footer .c-banner li img {
  transition: 0.2s linear;
  max-width: 100%;
}
.l-footer .c-banner li:hover img {
  opacity: 0.75;
}
.l-footer .copy {
  text-align: center;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-footer .copy {
    font-size: 1.3rem;
  }
}
/* ========== end △ */

/* l-form
------------------------------------------------- */
.l-form {
  max-width: 850px;
  width: 100%;
  margin: 0 auto 50px;
  background: rgba(255, 255, 255, 0.7);
  padding: 50px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-form {
    max-width: 500px;
    padding: 30px;
  }
}
/* ========== end △ */
.l-form_tlt {
  color: #d55e89;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  font-size: 4rem;
  text-align: center;
  margin-bottom: 40px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-form_tlt {
    font-size: 2rem;
    margin-bottom: 20px;
  }
}
/* ========== end △ */
.l-form dl {
  display: flex;
  margin-bottom: 20px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-form dl {
    display: block;
  }
}
/* ========== end △ */
.l-form dt {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  max-width: 200px;
  width: 100%;
  padding-bottom: 10px;
  margin-top: 5 px;
  position: relative;
  padding-right: 40px;
}
/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-form dt {
    max-width: unset;
  }
}
/* ========== end △ */
.l-form dt.required:after {
  content: "必須";
  font-size: 1rem;
  line-height: 1.6;
  background: #Fa0000;
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
  position: absolute;
  right: 10px;
  top: 2px;
}
.l-form dt.option:after {
  content: "任意";
  font-size: 1rem;
  line-height: 1.6;
  background: #b9b9b9;
  color: #fff;
  border-radius: 4px;
  padding: 2px 5px;
  position: absolute;
  right: 10px;
  top: 2px;
}
.l-form dd {
  flex: 1;
  padding-bottom: 10px;
}
.l-form dd span {
  display: inline-block;
  font-size: 1.4rem;
  margin-top: 5px;
}
.l-form .field_input {
  font-size: 1.6rem;
  line-height: 1.6;
  outline: none;
  padding: 5px 10px;
  display: block;
  width: 100%;
  border-radius: 4px;
  border: 1px solid #b9b9b9;
}
.l-form .field_input.is-error {
  color: #B94A48 !important;
  background: #F2DEDE !important;
  border: 1px solid #EED3D7 !important;
}
.l-form_submit {
  outline: none;
  display: block;
  width: 500px;
  background: #d55f91;
  border-radius: 100px;
  border: 4px solid #d55f91;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: bold;
  color: #fff;
  padding: 15px;
  margin: 40px auto 0;
font-family:inherit;
	text-align:center;
}

.c-btn01{
    outline: none;
    display: block;
    width: 500px;
    background: #d55f91;
    border-radius: 100px;
    border: 4px solid #fff;
    font-size: 1.6rem;
    line-height: 1.6;
    font-weight: bold;
    padding: 15px;
    font-family: inherit;
    text-align: center;
    margin: 0 auto;
    color: #fff;
}

/* ▽ SP layout ========== */
@media only screen and (max-width: 768px) {
  .l-form_submit {
    margin-top: 20px;
    padding: 5px 10px;
    max-width: 100%;
  }
	
	.c-btn01{
		max-width:100%;
		padding:5px 10px;
	}
}


.benefit{
	border: 5px solid #d46199;
    padding: 35px 50px 50px;
    margin-top: 70px;
}

.benefit .benefit-ttl{
    margin-bottom: 40px;
}

.benefit p{
	font-weight:bold;
	font-size:1.6rem;
}

@media only screen and (max-width: 768px) {
	.benefit{
	border-width:4px;
    padding: 35px 20px;
    margin-top: 50px;
}

.benefit .benefit-ttl{
    margin-bottom: 30px;
}

}
/* ========== end △ */

/*# sourceMappingURL=style.css.map */
