@charset "UTF-8";

/*リセット
/************************************************************/
html,
body,
p,
ol,
ul,
li,
dl,
dt,
dd,
blockquote,
figure,
fieldset,
legend,
textarea,
pre,
iframe,
hr,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
}
ol,
ul,
li,
dl {
  list-style-position: inside;
}
ol,
ul,
li,
dl {
  list-style: none;
}
button,
input,
select,
textarea {
  margin: 0;
}
html {
  box-sizing: border-box;
  line-height: 1;
  font-size: 62.5%;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
img,
embed,
iframe,
object,
audio,
video {
  max-width: 100%;
}
iframe {
  border: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
td,
th {
  padding: 0;
  text-align: left;
}
hr {
  height: 0;
  border: 0;
}

/*ベース
/************************************************************/
body {
  width: 100%;
  font-family: "Noto Sans JP", "Lato", "游ゴシック体", "Yu Gothic", "YuGothic",
    "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", "メイリオ",
    "Meiryo, Osaka", "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
  font-size: 1.4rem;
  font-weight: 500;
  color: #093046;
  background: #fff;
  word-wrap: break-word;
  overflow-wrap: break-word;
  letter-spacing: 0.2px;
  line-height: 2;
}

button,
input,
select,
textarea {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}

/*レイアウト
/************************************************************/

/*ヘッダー*/
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 1000;
}
.l-header::after {
  content: "";
  display: block;
  clear: both;
}

.header-top {
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-box-shadow: 0 0 3px #ddd;
  box-shadow: 0 0 3px #ddd;
}

.menuNavi {
  background-color: #000;
  padding: 0 20px;
}

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

#menuNavi__menu {
  color: #fff;
}

.menu-open {
  display: block !important;
}

/*エキストラ*/
.l-extra {
  position: relative;
  background: #191919;
}
.l-extraNone {
  display: none;
}

/*ラッパー(メイン&サイドバーを囲む要素)*/
.l-wrapper {
  position: relative;
  width: 1136px;
  max-width: 98%;
  margin: 0 auto;
}

.m-wrapper {
  position: relative;
  width: 1040px;
  max-width: 98%;
  margin: 0 auto;
}

.s-wrapper {
  position: relative;
  width: 780px;
  max-width: 98%;
  margin: 0 auto;
}

.content-height {
  padding: 8rem 0;
}

/*メイン*/
.l-main {
  width: 70%;
  padding: 60px 8% 60px 0;
}
.l-main.l-main-single {
  width: 820px;
  max-width: 100%;
  padding: 60px 0;
  margin: 0 auto;
}
.l-main.l-main-w740 {
  width: 740px;
}
.l-main.l-main-w900 {
  width: 900px;
}
.l-main.l-main-w100 {
  width: 100%;
}

/*サイドバー*/
.l-sidebar {
  width: 30%;
  padding: 60px 0 60px 2.5%;
}

/*フッター*/
.l-footer {
  width: 100%;
  border-top: 1px solid #093046;
}

/*モジュール
/************************************************************/

/*コンテナ(ヘッダー・フッター・エキストラなどで使用)*/
.container {
  position: relative;
  width: 1200px;
  max-width: 98%;
  margin: 0 auto;
}
.container::after {
  content: "";
  display: block;
  clear: both;
}

/*インフォメーションヘッダー*/
.infoHead {
  text-align: center;
  background: #c53929;
}
.infoHead__link {
  display: block;
  font-weight: 700;
  color: #ffffff;
  height: 30px;
  line-height: 30px;
}
.infoHead__link:hover {
  background: rgba(255, 255, 255, 0.15);
  transition: 0.2s;
}

/*サイトタイトル(ヘッダーで使用)*/
.siteTitle {
  width: 100%;
  overflow: hidden;
  padding: 10px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}
/*ロゴがあるとき*/
.siteTitle__logo {
  display: block;
  max-width: 100%;
  max-height: 30px;
  line-height: 30px;
}
/*ロゴがないとき*/
.siteTitle__name {
  display: block;
  letter-spacing: 0.5px;
  line-height: 30px;
}

.siteTitle__link {
  display: block;
  float: left;
  width: auto;
  height: 30px;
}
.siteTitle__link:hover {
  opacity: 0.75;
}
.siteTitle__img {
  width: auto;
  max-height: 30px;
}
.siteTitle__main {
  display: block;
  color: #ffffff;
  font-size: 2rem;
  font-weight: 900;
}
.siteTitle__sub {
  display: block;
  font-size: 1.2rem;
  margin-left: 10px;
  float: left;
}

/*検索ナビ(エキストラで使用)*/
.searchNavi {
  display: flex;
  padding: 15px 0;
}
.searchNavi__title {
  height: 30px;
  line-height: 30px;
  text-align: center;
  color: #ffffff;
  padding: 0 15px;
  background: #f0b200;
  margin-right: 5px;
  border-radius: 5px;
  font-weight: 500;
}
.searchNavi__list {
  list-style: none;
  flex-grow: 2;
  padding-top: 8px;
  margin-right: 15px;
  overflow: hidden;
}
.searchNavi__item {
  color: #bfbfbf;
  float: left;
  height: 14px;
  overflow: hidden;
  line-height: 1;
  margin-bottom: 8px;
  transition: 0.2s;
}
.searchNavi__item:hover {
  color: #ffffff;
  font-weight: bold;
}
.searchNavi__link {
  padding: 0 10px;
}

/*メインナビ(ヘッダーで使用)*/
@media screen and (max-width: 767px) {
  .mainNavi {
    display: none;
    height: calc(100vh - 50px);
    width: 100%;
  }
}

.mainNavi ul {
  display: flex;
}

@media screen and (max-width: 767px) {
  .mainNavi ul {
    width: 100%;
    flex-flow: column wrap;
  }
}

.mainNavi a {
  color: #fff;
  padding: 18px;
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .mainNavi a {
    display: block;
    border-bottom: 1px solid #ddd;
  }
}

@media screen and (max-width: 767px) {
  .content-height {
    padding: 3rem 0;
  }
}

/*検索窓(エキストラとウィジェットで使用)*/
.searchBox {
  font-size: 1.2rem;
  flex-grow: 1;
}
.searchBox__form {
  position: relative;
  height: 30px;
  border-radius: 5px;
  background: #f2f2f2;
  min-width: 130px;
}
.searchBox__input {
  position: absolute;
  top: 0;
  left: 0;
  width: calc(100% - 30px);
  height: inherit;
  border: none;
  padding: 0 10px;
  background: transparent;
}
.searchBox__submit {
  position: absolute;
  top: 0;
  right: 0;
  width: 30px;
  height: inherit;
  line-height: 30px;
  border: none;
  cursor: pointer;
  background: transparent;
}

/*グローバルナビ(エキストラで使用)*/
.globalNavi {
  padding-top: 23px;
  overflow: hidden;
}
.globalNavi__list {
  display: table;
  list-style: none;
}
.globalNavi__list .page_item,
.globalNavi__list .menu-item {
  color: #bfbfbf;
  float: left;
  height: 14px;
  line-height: 1;
  margin-bottom: 23px;
  padding: 0 15px;
  border-left: 1px solid #3f3f3f;
  transition: 0.2s;
}
.globalNavi__list .page_item:first-child,
.globalNavi__list .menu-item:first-child {
  border-left: 0;
  padding-left: 0;
}
.globalNavi__list .current_page_item,
.globalNavi__list .current-menu-item,
.globalNavi__list .page_item:hover,
.globalNavi__list .menu-item:hover {
  color: #ffffff;
  font-weight: bold;
}

/*キーリスト(TOPで使用)*/
.key {
  width: 100%;
}
.key__list {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
}
.key__item {
  position: relative;
  flex-grow: 1;
  height: 270px;
  background-position: center center;
  background-size: cover;
}
.key__item::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  transition: 0.2s;
}
.key__item:hover::before {
  opacity: 0;
}
.key__cat {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #f0b200;
  z-index: 2;
}
.key__cat a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 1.3rem;
  transition: 0.2s;
}
.key__cat a::before {
  font-family: "icomoon";
  content: "\e902";
  margin-right: 5px;
}
.key__cat a:hover {
  background: rgba(255, 255, 255, 0.25);
}
.key__link {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.key__title {
  position: absolute;
  left: 0;
  bottom: 0;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.25;
  margin: 10px;
}

/*ランキングボックス(TOPページで使用)*/
.rankingBox {
  padding: 60px 0;
  margin-bottom: 60px;
  background: #f7f7f7;
}
.rankingBox__over {
  overflow-x: auto;
  overflow-y: hidden;
}
.rankingBox__list {
  display: table;
  counter-reset: number;
  height: 0;
}
.rankingBox__item {
  display: table-cell;
  position: relative;
}
.rankingBox__item:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #bfbfbf;
  color: #fff;
  z-index: 5;
}
.rankingBox__item:nth-child(1):before {
  background: #ecd357;
}
.rankingBox__item:nth-child(2):before {
  background: #a9c6d5;
}
.rankingBox__item:nth-child(3):before {
  background: #c58459;
}

.rankingBox__img {
  overflow: hidden;
  width: 230px;
  height: 230px;
}
.rankingBox__img img {
  width: 410px;
  max-width: 410px;
  height: 230px;
  margin-left: -90px;
  vertical-align: bottom;
  transform: scale(1);
  transition: ease-in-out 0.2s;
}
.rankingBox__img img:hover {
  transform: scale(1.2);
}

.rankingBox__title {
  height: calc(100% - 230px);
  background: #f0b200;
}
.rankingBox__titleLink {
  display: block;
  height: 100%;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #fff;
  padding: 15px;
}
.rankingBox__titleLink:hover {
  background: rgba(255, 255, 255, 0.25);
}

/*カテゴリー新着1件(TOPページで使用)*/
.categoryBox {
  padding-bottom: 20px;
}
/*シングルページ*/
.categoryBox.categoryBox-gray {
  padding-top: 60px;
  background: #f7f7f7;
}
.categoryBox__list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin-left: -20px;
}
.categoryBox__list::after {
  content: "";
  display: block;
  clear: both;
}
.categoryBox__item {
  width: calc(33.3% - 20px);
  float: left;
  margin: 0 0 40px 20px;
}
.categoryBox__title {
  color: #f0b200;
  border-top: 2px solid;
  font-size: 1.8rem;
}
.categoryBox__titleLink {
  position: relative;
  display: block;
  padding: 20px 0;
}
.categoryBox__titleLink::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  border-right: 1px solid;
  transform: rotate(45deg);
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  transition: 0.5s;
}
.categoryBox__titleLink:hover::before {
  transform: rotate(765deg);
  width: 10px;
  height: 10px;
  margin-top: -5px;
}

/*カテゴリー説明ボックス(カテゴリーアーカイブで使用)*/
.categoryDescription {
  position: relative;
  padding: 30px 0;
  background: #f0b200;
}
.categoryDescription::before {
  content: "";
  background-color: rgba(0, 0, 0, 0);
  background-image: linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.15) 50%,
      transparent 50%
    ),
    linear-gradient(rgba(0, 0, 0, 0.15) 50%, transparent 50%);
  background-size: 2px 2px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.categoryDescription::after {
  content: "";
  display: block;
  clear: both;
}

.categoryDescription__explain {
  float: left;
  width: 70%;
  padding-right: 2.5%;
}
.categoryDescription__heading {
  position: relative;
  display: inline-block;
  color: #fff;
  font-size: 3rem;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.categoryDescription__heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
}
.categoryDescription__sub {
  display: block;
  color: #fff;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.categoryDescription__text {
  color: #fff;
  line-height: 1.75;
}

.categoryDescription__post {
  float: right;
  list-style: none;
  width: 30%;
  padding-left: 2.5%;
}
.categoryDescription__item {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.categoryDescription__item:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.categoryDescription__item img {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
}
.categoryDescription__ribbon {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -35px;
  width: 125px;
  padding: 10px 0;
  background: linear-gradient(#e73831, #bd2021);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  transform: rotate(-45deg);
  z-index: 999;
}
.categoryDescription__link {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.categoryDescription__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.05) 50%,
    rgba(0, 0, 0, 0.25) 100%
  );
  transition: 0.2s;
}
.categoryDescription__link:hover::before {
  opacity: 0;
}
.categoryDescription__title {
  position: absolute;
  bottom: 0;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1.25;
  margin: 10px;
}

/*ランキングリスト(ランキングページで使用)*/
.rankingPage {
  list-style-type: none;
  counter-reset: number;
  margin-top: 40px;
}
.rankingPage__item {
  position: relative;
  margin-bottom: 20px;
}
.rankingPage__item:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #bfbfbf;
  color: #fff;
  z-index: 5;
}
.rankingPage__item:nth-child(1):before {
  background: #ecd357;
}
.rankingPage__item:nth-child(2):before {
  background: #a9c6d5;
}
.rankingPage__item:nth-child(3):before {
  background: #c58459;
}

.rankingPage__item::after {
  content: "";
  display: block;
  clear: both;
}

.rankingPage__contents {
  float: right;
  width: calc(100% - 180px);
}

/*アーカイブディスクリプションボックス(アーカイブで使用)*/
.archiveDescription {
  padding: 20px 0;
  margin: -40px 0 40px 0;
  line-height: 2;
  border-bottom: dotted 1px #e5e5e5;
}
/*アーカイブリスト(アーカイブで使用)*/
.archive {
  display: flex;
  flex-wrap: wrap;
  margin-left: -20px;
}
.archiveItem {
  width: calc(50% - 20px);
  position: relative;
  margin: 0 0 40px 20px;
}
.archiveItem__text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #7f7f7f;
}
.archiveItem .btn.btn-right {
  display: none;
}

.archiveItem.archiveItem-wide {
  width: 100%;
  margin: 0 0 40px 20px;
  padding-top: 40px;
  border-top: dotted 1px #d8d8d8;
}
.archiveItem.archiveItem-wide:first-child {
  padding-top: 0;
  border-top: none;
}
.archiveItem.archiveItem-wide .archiveItem__text {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.archiveItem.archiveItem-wide .btn.btn-right {
  display: block;
}

.archiveList {
  width: 100%;
  position: relative;
  margin: 0 0 40px 20px;
}
.archiveList__text {
  font-size: 1.3rem;
  line-height: 1.75;
  color: #7f7f7f;
}

/*アイキャッチ画像(複数個所で使用)*/
.eyecatch {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 20px;
  overflow: hidden;
}
.eyecatch:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}
.eyecatch img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}
/*ウィジェットエリア*/
.eyecatch.eyecatch-widget {
  margin-bottom: 10px;
}
/*シングルページ*/
.eyecatch.eyecatch-singleTitle {
  float: right;
  width: 27.5%;
  margin: 0 0 0 2.5%;
}
/*ランキングページ*/
.eyecatch.eyecatch-ranking {
  float: left;
  width: 160px;
  margin-right: 20px;
}
.eyecatch img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
  transform: scale(1);
  transition: ease-in-out 0.2s;
}
.eyecatch img:hover {
  transform: scale(1.2);
}
.eyecatch__cat {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 10;
  background: #f0b200;
}
.eyecatch__cat a {
  display: block;
  padding: 10px 20px;
  color: #ffffff;
  font-size: 1.3rem;
  transition: 0.2s;
}
.eyecatch__cat a::before {
  font-family: "icomoon";
  content: "\e902";
  margin-right: 5px;
}
.eyecatch__cat a:hover {
  background: rgba(255, 255, 255, 0.25);
}
.eyecatch__ribbon {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -35px;
  width: 125px;
  padding: 10px 0;
  background: linear-gradient(#e73831, #bd2021);
  color: #fff;
  font-size: 1.5rem;
  text-align: center;
  transform: rotate(-45deg);
  z-index: 999;
}

/*データリスト(複数個所で使用)*/
.dateList {
  list-style: none;
  margin-bottom: 10px;
}
/*シングルページ*/
.dateList.dateList-singleTitle {
  margin-bottom: 0;
  background-color: #fff;
  padding: 6px 12px;
  border-radius: 20px;
  display: inline-block;
}
/*ウィジェットエリア*/
.dateList.dateList-widget {
  margin-bottom: 0;
}
.dateList__item {
  display: inline-block;
  text-align: left;
  color: #7f7f7f;
  font-size: 1.2rem;
  margin-right: 10px;
  line-height: 1.5;
}
.dateList__item::before {
  margin-right: 5px;
  line-height: 1;
}
.dateList__item a {
  transition: 0.2s;
}
.dateList__item a[rel="tag"]:hover {
  color: #f0b200;
}
.dateList__item a[rel="category"]:hover {
  color: #f0b200;
}
.dateList__item.icon-tag span:last-child {
  display: none;
}

/*サブページネーション(アーカイブタイトルボックス内で使用)*/
.subPager {
  float: right;
  margin-top: 10px;
}
.subPager__text {
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 5px;
}
.subPager__list {
  list-style: none;
  display: inline-block;
}
.subPager__item {
  font-family: monospace;
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  margin-left: 2px;
  color: #bfbfbf;
  border: #bfbfbf solid 1px;
  border-radius: 5px;
}
.subPager__item:hover {
  color: #7f7f7f;
  border-color: #7f7f7f;
}
.subPager__link {
  display: block;
}

/*パンくずエリアパーツ(複数個所で使用)*/
.breadcrumb {
  background: #f2f2f2;
  font-size: 90%;
  color: #666;
}

.breadcrumb .container {
  padding: 15px 10px;
  line-height: 1.6;
}

.breadcrumb span {
  display: inline-block !important;
  margin: 0;
}

/*アーカイブタイトルボックス(アーカイブで使用)*/
.archiveTitle {
  position: relative;
  margin-bottom: 40px;
}
.archiveTitle::before {
  content: "";
  width: 100%;
  position: absolute;
  bottom: 0;
  border-bottom: 1px solid #e5e5e5;
  z-index: -2;
}
.archiveTitle::after {
  content: "";
  display: block;
  clear: both;
}

/*ページトップ(フッターで使用)*/
.pagetop {
  position: relative;
  width: 180px;
  height: 60px;
  line-height: 70px;
  margin: 0 auto;
  background: #aaa;
  color: #ffffff;
  text-align: center;
  border-radius: 0 0 5px 5px;
}
.pagetop::before {
  content: "";
  position: absolute;
  top: 15px;
  left: 50%;
  margin-left: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid #ffffff;
  border-left: 1px solid #ffffff;
  transform: rotate(45deg);
  transition: 0.2s;
}
.pagetop:hover::before {
  top: 10px;
}
.pagetop__link {
  display: block;
  height: inherit;
  transition: 0.2s;
}

/*コピーライト&ソーシャルリンク(フッターで使用)*/
.copySns {
  margin: 40px auto 0 auto;
  padding: 30px 0;
  border-top: 1px solid #333333;
  display: flex;
  flex-wrap: wrap;
}
.copySns.copySns-noBorder {
  margin-top: 0;
  border: none;
}
.copySns::after {
  content: "";
  display: block;
  clear: both;
}
/*copyright*/
.copySns__copy {
  width: calc(100% - 200px);
  font-size: 1.3rem;
  color: #d8d8d8;
  letter-spacing: 0.5px;
  line-height: 30px;
}
.copySns__copyInfo {
  display: block;
  margin-top: -5px;
}
.copySns__copyLink {
  font-weight: 700;
  text-decoration: underline;
  color: #ffffff;
  transition: 0.2s;
}
.copySns__copyLink:hover {
  color: #f0b200;
}

/*ソーシャルリスト*/
.copySns__list {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  width: 200px;
}
.copySns__listItem {
  display: inline-block;
  margin-left: 5px;
}
.copySns__listLink {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #bfbfbf;
  font-size: 1.2rem;
  background: #3f3f3f;
  transition: 0.2s;
}
.copySns__listLink:hover {
  color: #fff;
}

/*お問い合わせ用テーブルデザイン*/
.contactTable {
  width: 100%;
  margin-top: 20px;
}
.contactTable__header {
  width: 180px;
  padding: 0 0 30px 0;
  vertical-align: top;
  line-height: 1.5;
}
.contactTable__header .required {
  display: block;
  float: right;
  text-align: center;
  padding: 3px 5px;
  font-size: 1.2rem;
  background: #f0b200;
  color: #fff;
  border-radius: 5px;
}
.contactTable__data {
  padding: 0 0 30px 20px;
  vertical-align: top;
  line-height: 1.5;
}
.contactTable__data .error {
  display: block;
  font-size: 1.2rem;
  color: #b70000;
  padding: 3px 0;
}

/*見出し(複数個所で使用)*/
.heading {
  display: block;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
  font-weight: 700;
}
.heading.heading-first {
  float: left;
  font-size: 2.2rem;
  line-height: 1.5;
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: #f0b200 1px solid;
}
.heading.heading-archive {
  font-size: 1.8rem;
  line-height: 1.5;
  margin-bottom: 10px;
}
.heading.heading-singleTitle {
  font-size: 3rem;
  line-height: 1.5;
  color: #fff;
}
.heading.heading-page {
  font-size: 3rem;
  line-height: 1.5;
}
.heading.heading-primary {
  font-size: 2.2rem;
  line-height: 1.5;
}
.heading.heading-primary span {
  display: inline-block;
  font-size: 1.4rem;
  margin-left: 10px;
}
.heading.heading-primary small a {
  display: inline-block;
  padding: 5px 10px;
  font-size: 1.3rem;
  text-align: center;
  color: #3f3f3f;
  border: 1px solid #3f3f3f;
  border-radius: 5px;
  transition: 0.2s;
}
.heading.heading-primary small a:hover {
  color: #ffffff;
  background: #3f3f3f;
}
.heading.heading-primary .heading__bg {
  font-size: inherit;
  margin-left: 0;
  padding: 5px 15px;
  margin-right: 5px;
  color: #fff;
  border-radius: 5px;
  background: #f0b200;
}

.heading.heading-widget,
.heading.heading-footer {
  position: relative;
  overflow: hidden;
  font-size: 1.8rem;
}
.heading.heading-footer {
  color: #d8d8d8;
}

.heading.heading-widget::before,
.heading.heading-widget::after,
.heading.heading-footer::before,
.heading.heading-footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 100%;
}

.heading a {
  display: inline-block;
  transition: 0.2s;
}

/*ボタン(複数個所で使用)*/
.btn {
  width: 100%;
}
.btn.btn-center {
  text-align: center;
}
.btn.btn-right {
  text-align: right;
}
.btn.btn-mt20 {
  margin-top: 20px;
}

.btn__link,
.widget .tag-cloud-link,
.comment-respond .submit,
.comments__list .comment-reply-link {
  position: relative;
  display: inline-block;
  padding: 10px 40px;
  border-radius: 5px;
  font-size: 1.3rem !important;
  border: 1px solid #f0b200;
  color: #f0b200;
  background: transparent;
  cursor: pointer;
  transition: 0.2s;
}
.widget .tag-cloud-link {
  padding: 10px;
  margin-bottom: 10px;
}
.comment-respond .submit {
  width: auto;
}
.btn__link.btn__link-profile {
  padding: 7px 20px 7px 10px;
  font-weight: 500;
  line-height: 1;
}
.comments__list .comment-reply-link {
  padding: 7px 20px 7px 10px;
}
.btn__link::before,
.comments__list .comment-reply-link::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 10px;
  margin-top: -3px;
  width: 6px;
  height: 6px;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: rotate(45deg);
}
.btn__link:hover,
.widget .tag-cloud-link:hover,
.comment-respond .submit:hover,
.comments__list .comment-reply-link:hover {
  color: #ffffff !important;
  background: #f0b200;
}

/*ソーシャルボタンhover時BGカラー設定*/
.menuNavi__link.icon-facebook:hover,
.copySns__listLink.icon-facebook:hover,
.profile__link.icon-facebook:hover {
  background: #3b5998;
}
.menuNavi__link.icon-twitter:hover,
.copySns__listLink.icon-twitter:hover,
.profile__link.icon-twitter:hover {
  background: #00b0ed;
}
.menuNavi__link.icon-instagram:hover,
.copySns__listLink.icon-instagram:hover,
.profile__link.icon-instagram:hover {
  background: radial-gradient(
      circle farthest-corner at 32% 106%,
      rgb(255, 225, 125) 0%,
      rgb(255, 205, 105) 10%,
      rgb(250, 145, 55) 28%,
      rgb(235, 65, 65) 42%,
      transparent 82%
    ),
    linear-gradient(135deg, rgb(35, 75, 215) 12%, rgb(195, 60, 190) 58%);
}
.menuNavi__link.icon-google:hover,
.copySns__listLink.icon-google:hover,
.profile__link.icon-google:hover {
  background: #df4a32;
}
.menuNavi__link.icon-rss:hover,
.copySns__listLink.icon-rss:hover {
  background: #ff9900;
}

/*コメント*/
.comments__list + .comment-respond {
  margin-top: 40px;
}

/*カテゴリ用カラー指定
/************************************************************/
.c-black {
  color: #191919 !important;
}
.c-gray {
  color: #7f7f7f !important;
}
.c-darkgray {
  color: #3f3f3f !important;
}
.c-lightgray {
  color: #bfbfbf !important;
}
.c-red {
  color: #dd3340 !important;
}
.c-winered {
  color: #a21d48 !important;
}
.c-pink {
  color: #ff7bac !important;
}
.c-hotpink {
  color: #ed1e79 !important;
}
.c-rosepink {
  color: #ee8299 !important;
}
.c-orange {
  color: #f46f22 !important;
}
.c-goldyellow {
  color: #faa629 !important;
}
.c-sunflour {
  color: #ffc20f !important;
}
.c-green {
  color: #4dac26 !important;
}
.c-emeraldgreen {
  color: #01b3a7 !important;
}
.c-dallasgreen {
  color: #6c9a51 !important;
}
.c-blue {
  color: #009bde !important;
}
.c-sax {
  color: #5ec3ef !important;
}
.c-loyalblue {
  color: #0153a7 !important;
}
.c-lavender {
  color: #919bcc !important;
}
.c-purple {
  color: #692d91 !important;
}
.c-brown {
  color: #754c24 !important;
}
.c-darkbrown {
  color: #42210b !important;
}
.c-lightbrown {
  color: #c69c6d !important;
}
.c-beige {
  color: #ebc7ad !important;
}
.c-cream {
  color: #ffe0b2 !important;
}
.c-radish {
  color: #ce0c40 !important;
}
.c-apricot {
  color: #f99933 !important;
}
.c-yellowgreen {
  color: #bfd676 !important;
}
.c-mintgreen {
  color: #95d1bd !important;
}
.c-lavendergray {
  color: #a0adc1 !important;
}

.bgc-black {
  background: #191919 !important;
}
.bgc-gray {
  background: #7f7f7f !important;
}
.bgc-darkgray {
  background: #3f3f3f !important;
}
.bgc-lightgray {
  background: #bfbfbf !important;
}
.bgc-red {
  background: #dd3340 !important;
}
.bgc-winered {
  background: #a21d48 !important;
}
.bgc-pink {
  background: #ff7bac !important;
}
.bgc-hotpink {
  background: #ed1e79 !important;
}
.bgc-rosepink {
  background: #ee8299 !important;
}
.bgc-orange {
  background: #f46f22 !important;
}
.bgc-goldyellow {
  background: #faa629 !important;
}
.bgc-sunflour {
  background: #ffc20f !important;
}
.bgc-green {
  background: #4dac26 !important;
}
.bgc-emeraldgreen {
  background: #01b3a7 !important;
}
.bgc-dallasgreen {
  background: #6c9a51 !important;
}
.bgc-blue {
  background: #009bde !important;
}
.bgc-sax {
  background: #5ec3ef !important;
}
.bgc-loyalblue {
  background: #0153a7 !important;
}
.bgc-lavender {
  background: #919bcc !important;
}
.bgc-purple {
  background: #692d91 !important;
}
.bgc-brown {
  background: #754c24 !important;
}
.bgc-darkbrown {
  background: #42210b !important;
}
.bgc-lightbrown {
  background: #c69c6d !important;
}
.bgc-beige {
  background: #ebc7ad !important;
}
.bgc-cream {
  background: #ffe0b2 !important;
}
.bgc-radish {
  background: #ce0c40 !important;
}
.bgc-apricot {
  background: #f99933 !important;
}
.bgc-yellowgreen {
  background: #bfd676 !important;
}
.bgc-mintgreen {
  background: #95d1bd !important;
}
.bgc-lavendergray {
  background: #a0adc1 !important;
}

.hc-black:hover {
  color: #191919 !important;
}
.hc-gray:hover {
  color: #7f7f7f !important;
}
.hc-darkgray:hover {
  color: #3f3f3f !important;
}
.hc-lightgray:hover {
  color: #bfbfbf !important;
}
.hc-red:hover {
  color: #dd3340 !important;
}
.hc-winered:hover {
  color: #a21d48 !important;
}
.hc-pink:hover {
  color: #ff7bac !important;
}
.hc-hotpink:hover {
  color: #ed1e79 !important;
}
.hc-rosepink:hover {
  color: #ee8299 !important;
}
.hc-orange:hover {
  color: #f46f22 !important;
}
.hc-goldyellow:hover {
  color: #faa629 !important;
}
.hc-sunflour:hover {
  color: #ffc20f !important;
}
.hc-green:hover {
  color: #4dac26 !important;
}
.hc-emeraldgreen:hover {
  color: #01b3a7 !important;
}
.hc-dallasgreen:hover {
  color: #6c9a51 !important;
}
.hc-blue:hover {
  color: #009bde !important;
}
.hc-sax:hover {
  color: #5ec3ef !important;
}
.hc-loyalblue:hover {
  color: #0153a7 !important;
}
.hc-lavender:hover {
  color: #919bcc !important;
}
.hc-purple:hover {
  color: #692d91 !important;
}
.hc-brown:hover {
  color: #754c24 !important;
}
.hc-darkbrown:hover {
  color: #42210b !important;
}
.hc-lightbrown:hover {
  color: #c69c6d !important;
}
.hc-beige:hover {
  color: #ebc7ad !important;
}
.hc-cream:hover {
  color: #ffe0b2 !important;
}
.hc-radish:hover {
  color: #ce0c40 !important;
}
.hc-apricot:hover {
  color: #f99933 !important;
}
.hc-yellowgreen:hover {
  color: #bfd676 !important;
}
.hc-mintgreen:hover {
  color: #95d1bd !important;
}
.hc-lavendergray:hover {
  color: #a0adc1 !important;
}

/*ウィジェットブロック(※主にWPの標準マークアップに従う)
/************************************************************/

/*サイド用固定ウィジェット枠*/
.widgetSticky {
  position: sticky;
  top: 30px;
}

/*投稿ページ用ウィジェット枠*/
.widgetPost {
  margin-bottom: 20px;
  overflow: hidden;
}

/*フッター用ウィジェット枠*/
.widgetFoot {
  margin: 40px auto 0 auto;
  display: flex;
  justify-content: space-between;
}
.widgetFoot__contents {
  width: 30%;
}

/*基本ボックス*/
.widget {
  position: relative;
  max-width: 100%;
  margin: 0 auto 40px auto;
}
.widget::after {
  content: "";
  display: block;
  clear: both;
}
.widget:last-child {
  margin-bottom: 0;
}

/*基本リンク*/
.widget a {
  transition: 0.2s;
  display: block;
}

/*基本リスト*/
.widget ul {
  list-style-type: none;
}
.widget ul li {
  position: relative;
  padding: 15px 0 0 0;
  margin-bottom: 15px;
  border-top: dotted 1px #d8d8d8;
  line-height: 1.5;
}

.widget ul li:after {
  content: "〉";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -0.5rem;
}

.widget > div > ul > li:first-child,
.widget > ul > li:first-child {
  padding-top: 0;
  border-top: 0;
}
.widget .sub-menu {
  margin-top: 15px;
}

/*投稿日表示*/
.widget .rss-date,
.widget .post-date {
  display: block;
  font-size: 1.2rem;
  color: #7f7f7f;
  margin-top: 5px;
  font-weight: normal;
}
.widget .rss-date::before,
.widget .post-date::before {
  font-family: "icomoon";
  content: "\e900";
  margin-right: 5px;
}

/*RSS関連*/
.widget h2 .rss-widget-icon {
  display: none;
}
.widget ul li .rsswidget {
  display: block;
  font-weight: 700;
  color: #f0b200;
}
.widget ul li .rsswidget:hover {
  text-decoration: underline;
}
.widget ul li .rssSummary {
  margin: 10px 0;
}
.widget ul li cite {
  text-align: right;
  display: block;
}
.widget ul li cite::before {
  content: "by:";
}

/*テキストボックス*/
.widget .textwidget {
  font-size: 1.3rem;
  color: #3f3f3f;
  line-height: 1.75;
}

.widget .textwidget a {
  font-weight: 700;
}
.widget .textwidget p + p {
  margin-top: 10px;
}

/*タグクラウド*/
.widget .tagcloud {
  margin-bottom: -10px;
}

/*ドロップダウン*/
.widget .screen-reader-text {
  display: none;
}
.widget select {
  display: block;
  width: 100%;
  height: 30px;
  border: none;
  padding: 0 10px;
  border-radius: 5px;
  background: #fff;
}

/*広告*/
.adWidget {
  width: 100%;
  overflow: hidden;
  text-align: center;
  margin: auto;
  padding: 0 10px;
  background-color: #f2f2f2;
  background-image: linear-gradient(
    to top right,
    #fff 0%,
    #fff 25%,
    transparent 25%,
    transparent 50%,
    #fff 50%,
    #fff 75%,
    transparent 75%,
    transparent 100%
  );
  background-size: 6px 6px;
}
.adWidget__title {
  font-size: 1.2rem;
  padding: 10px 0;
  display: block;
  font-weight: normal;
}

/*最新の投稿（サムネイル付カスタマイズ）*/
.imgListWidget {
  list-style-type: none;
}
.imgListWidget__item {
  padding-top: 20px;
  line-height: 1.5;
}
.imgListWidget__item:first-child {
  padding-top: 0;
}
.imgListWidget__item::after {
  content: "";
  display: block;
  clear: both;
}
.imgListWidget__title {
  width: calc(100% - 100px);
  float: left;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-left: 10px;
}

/*サムネイルボーダー（最新の投稿でのみ使用中）*/
.imgListWidget__borderBox {
  position: relative;
  overflow: hidden;
  display: block;
  float: left;
  width: 90px;
  height: 90px;
}
.imgListWidget__borderBox img {
  display: block;
  width: 90px;
  height: 90px;
}
.imgListWidget__borderBox:before,
.imgListWidget__borderBox:after,
.imgListWidget__borderBox > span:before,
.imgListWidget__borderBox > span:after {
  content: "";
  position: absolute;
  background: #ffffff;
  z-index: 99999;
}

.imgListWidget__borderBox:before {
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 2px;
}
.imgListWidget__borderBox:after {
  bottom: -100%;
  right: 0;
  width: 2px;
  height: 100%;
}
.imgListWidget__borderBox > span:before {
  top: 0;
  right: -100%;
  width: 100%;
  height: 2px;
}
.imgListWidget__borderBox > span:after {
  top: -100%;
  left: 0;
  width: 2px;
  height: 100%;
}
.imgListWidget__borderBox:hover:before {
  animation: leftAnim 1s linear 0s infinite;
}
.imgListWidget__borderBox:hover:after {
  animation: bottomAnim 1s linear 0.5s infinite;
}
.imgListWidget__borderBox > span:hover:before {
  animation: rightAnim 1s linear 0s infinite;
}
.imgListWidget__borderBox > span:hover:after {
  animation: topAnim 1s linear 0.5s infinite;
}

/*ランキング*/
.rankListWidget {
  list-style-type: none;
  counter-reset: number;
}
.rankListWidget__item {
  position: relative;
  padding-top: 20px;
}
.rankListWidget__item:first-child {
  padding-top: 0;
}
.rankListWidget__item:before {
  position: absolute;
  counter-increment: number;
  content: counter(number);
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  background: #bfbfbf;
  color: #fff;
  z-index: 5;
}
.rankListWidget__item:nth-child(1):before {
  background: #ecd357;
}
.rankListWidget__item:nth-child(2):before {
  background: #a9c6d5;
}
.rankListWidget__item:nth-child(3):before {
  background: #c58459;
}
.rankListWidget__item img {
  width: 100%;
}
.rankListWidget__title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 5px;
  overflow: hidden;
}

/*カレンダー*/
.widget .calendar_wrap {
  padding: 20px;
  background: #fff;
  border: 1px #e5e5e5 solid;
}
.widget .calendar_wrap table {
  width: 100%;
}
.widget .calendar_wrap caption {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.widget .calendar_wrap thead {
  font-size: 1.2rem;
}
.widget .calendar_wrap thead th {
  padding-bottom: 10px;
  text-align: center;
}
.widget .calendar_wrap tbody {
  color: #7f7f7f;
}
.widget .calendar_wrap tbody td {
  background: #f2f2f2;
  border: 1px solid #fff;
  text-align: center;
  height: 35px;
  line-height: 35px;
}
.widget .calendar_wrap tbody td:hover {
  background: #fff;
}
.widget .calendar_wrap tbody a {
  display: block;
  font-weight: bold;
  background: #7f7f7f;
  color: #fff !important;
  text-decoration: underline;
}
.widget .calendar_wrap tbody a:hover {
  background: #f0b200;
}
.widget .calendar_wrap tbody .pad {
  background: none;
}
.widget .calendar_wrap tfoot a {
  text-decoration: underline;
}
.widget .calendar_wrap tfoot #next {
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: right;
}
.widget .calendar_wrap tfoot #prev {
  font-size: 1.2rem;
  text-transform: uppercase;
  padding-top: 10px;
}

/*テーマ
/************************************************************/
/*DARK*/
.t-dark .widget.widget-foot .imgListWidget__borderBox:before,
.t-dark .widget.widget-foot .imgListWidget__borderBox:after,
.t-dark .widget.widget-foot .imgListWidget__borderBox > span:before,
.t-dark .widget.widget-foot .imgListWidget__borderBox > span:after {
  background: #191919;
}

.t-dark .widget.widget-foot .imgListWidget__title,
.t-dark .widget.widget-foot .rankListWidget__title,
.t-dark .widget.widget-foot ul li,
.t-dark .widget.widget-foot .textwidget {
  color: #d8d8d8;
}

.t-dark .widget.widget-foot ul li {
  border-color: #3f3f3f;
}

/*LIGHT*/
.t-light .widget.widget-foot .imgListWidget__borderBox:before,
.t-light .widget.widget-foot .imgListWidget__borderBox:after,
.t-light .widget.widget-foot .imgListWidget__borderBox > span:before,
.t-light .widget.widget-foot .imgListWidget__borderBox > span:after {
  background: #f7f7f7;
}

.t-light .menuNavi__link-current,
.t-light .menuNavi__link:hover {
  background: #f7f7f7;
  color: #191919;
}
.t-light .l-extra {
  background: #f7f7f7;
  border-bottom: 1px #d8d8d8 solid;
}

.t-light .searchNavi__item {
  color: #3f3f3f;
}
.t-light .searchNavi__item:hover {
  color: #191919;
}

.t-light .globalNavi__list .page_item,
.t-light .globalNavi__list .menu-item {
  color: #3f3f3f;
  border-color: #d8d8d8;
}
.t-light .globalNavi__list .page_item:hover,
.t-light .globalNavi__list .menu-item:hover {
  color: #191919;
}

.t-light .l-footer {
  background: #f7f7f7;
  border-top: 5px solid #f0b200;
}
.t-light .heading.heading-footer {
  color: #191919;
}
.t-light .heading.heading-footer::after {
  border-color: #e5e5e5;
}

.t-light .copySns {
  border-color: #e5e5e5;
}
.t-light .copySns__copy {
  color: #3f3f3f;
}
.t-light .copySns__copyLink {
  color: #191919;
}

.t-light .copySns__listLink {
  color: #fff;
  background: #3f3f3f;
}
.t-light .l-extra .searchBox__form,
.t-light .widget-foot .searchBox__form {
  background: #fff;
  border: 1px solid #d8d8d8;
}
.t-light .widget-foot ul li {
  border-color: #cccccc;
}

/*RICH*/

.t-rich .menuNavi__link-current,
.t-rich .menuNavi__link.icon-search:hover,
.t-rich .menuNavi__link.icon-menu:hover {
  background: linear-gradient(180deg, rgba(25, 25, 25, 1), rgba(48, 48, 48, 1));
}
.t-light.t-rich .menuNavi__link-current,
.t-light.t-rich .menuNavi__link:hover {
  background: #f7f7f7;
}

.t-rich .l-extra::before,
.t-rich .l-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(
    0deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.1)
  );
}

.t-light.t-rich .l-extra::before,
.t-light.t-rich .l-footer::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  content: "";
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0),
    rgba(255, 255, 255, 0) 35%,
    rgba(0, 0, 0, 0.05)
  );
}
.t-rich .eyecatch {
  box-shadow: 0 12px 10px -6px rgba(0, 0, 0, 0.25);
}
.t-rich .searchBox__form,
.t-rich .comment-respond input,
.t-rich .comment-respond textarea,
.t-rich .contactTable__data input,
.t-rich .contactTable__data textarea {
  box-shadow: 0px 5px 5px -5px rgba(0, 0, 0, 0.25) inset;
}

/*ユーティリティ
/************************************************************/

/*text-shadow*/
.u-txtShdw {
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.35);
}

/*margin*/
.u-mt-0 {
  margin-top: 0;
}
.u-ml-0 {
  margin-left: 0;
}
.u-mr-0 {
  margin-right: 0;
}
.u-mb-0 {
  margin-bottom: 0;
}

/*display*/
.u-none {
  display: none;
}
.u-none-pc {
  display: none;
}
.u-none-sp {
  display: block;
}

/*keyframes設定
/************************************************************/
/* ヘッダーマーキー */
@keyframes marquee {
  from {
    transform: translate(0%);
  }
  to {
    transform: translate(-100%);
  }
}

/* ボーダー */
@keyframes topAnim {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}
@keyframes bottomAnim {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 100%;
  }
}
@keyframes rightAnim {
  0% {
    right: -100%;
  }
  100% {
    right: 100%;
  }
}
@keyframes leftAnim {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/*レスポンシブ設定
/************************************************************/

/* PCのTOPのみで適用されるランキングボックスのスクロールバーデザイン */
@media only screen and (min-width: 768px) {
  .rankingBox__over::-webkit-scrollbar {
    width: 8px;
  }
  .rankingBox__over::-webkit-scrollbar-track {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) inset;
    background: #fff;
  }
  .rankingBox__over::-webkit-scrollbar-thumb {
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.3) inset;
    background-color: #555;
  }
}
@media only screen and (max-width: 1023px) {
  .l-wrapper,
  .m-wrapper,
  .s-wrapper {
    width: 840px;
  }
  .container {
    width: 840px;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: 1.3rem;
    -webkit-text-size-adjust: 100%;
  }
  .l-wrapper,
  .m-wrapper,
  .s-wrapper {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 0 16px;
  }
  .l-main {
    width: 100%;
    padding: 40px 10px;
  }
  .l-main.l-main-single {
    width: 100%;
    padding: 40px 10px;
  }
  .l-sidebar {
    width: 100%;
    padding: 0 10px 40px 10px;
  }
  .container {
    width: 100%;
    max-width: 100%;
    padding: 0 10px;
  }
  .container.container-max {
    padding: 0;
  }
  .infoHead {
    overflow: hidden;
  }
  .infoHead__link {
    padding-left: 100%;
    white-space: nowrap;
    display: inline-block;
    animation-name: marquee;
    animation-timing-function: linear;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    font-size: 1.2rem;
  }

  .siteTitle__logo {
    max-height: 20px;
    line-height: 20px;
  }
  .siteTitle__name {
    height: inherit;
    line-height: 20px;
  }
  .siteTitle__link {
    height: 20px;
  }
  .siteTitle__img {
    max-height: 20px;
  }
  .siteTitle__main {
    font-size: 1.5rem;
  }
  .siteTitle__sub {
    display: none;
  }
  .menuNavi__link {
    height: 50px;
    line-height: 50px;
  }

  .searchNavi {
    padding: 10px 0;
  }
  .searchNavi__title {
    display: none;
  }
  .searchNavi__list {
    display: none;
  }

  .globalNavi {
    padding: 19px 0;
    overflow-x: auto;
  }
  .globalNavi__list {
    padding: 0 10px;
  }
  .globalNavi__list .page_item,
  .globalNavi__list .menu-item {
    float: none;
    display: table-cell;
    white-space: nowrap;
    font-size: 1.2rem;
    height: 12px;
    margin-bottom: 0;
  }

  .archive {
    margin-left: -10px;
  }
  .archiveItem {
    width: calc(50% - 10px);
    margin: 0 0 20px 10px;
  }
  .archiveItem__text {
    display: none;
  }

  .archiveItem.archiveItem-wide,
  .archiveItem.archiveItem-wideSp {
    width: 100%;
    margin: 0 0 40px 10px;
    padding-top: 40px;
    border-top: dotted 1px #d8d8d8;
  }
  .archiveItem.archiveItem-wide:first-child,
  .archiveItem.archiveItem-wideSp:first-child {
    padding-top: 0;
    border-top: none;
  }
  .archiveItem.archiveItem-wide .archiveItem__text {
    display: block;
    font-size: 1.3rem;
  }

  .archiveItem.archiveItem-wideSp .archiveItem__text {
    display: block;
    font-size: 1.3rem;
    margin-bottom: 20px;
  }
  .archiveItem.archiveItem-wideSp .btn.btn-right {
    display: block;
  }

  .archiveList {
    margin: 0 0 20px 10px;
  }
  .archiveList__text {
    font-size: 1.3rem;
  }

  .key {
    overflow-x: auto;
  }
  .key__list {
    display: table;
  }
  .key__item {
    display: table-cell;
    height: 180px;
  }
  .key__cat a {
    font-size: 1.2rem;
    padding: 8px 16px;
  }
  .key__link {
    width: 90vw;
  }

  .rankingBox {
    padding: 40px 0;
    margin-bottom: 40px;
  }
  .categoryBox {
    padding-bottom: 10px;
  }
  .categoryBox.categoryBox-gray {
    padding-top: 40px;
  }
  .categoryBox__list {
    margin-left: -10px;
  }
  .categoryBox__item {
    width: calc(50% - 10px);
    margin: 0 0 20px 10px;
  }
  .categoryBox__title {
    font-size: 1.5rem;
  }
  .categoryBox__titleLink {
    padding: 15px 0;
  }

  .categoryDescription__explain {
    float: none;
    width: 100%;
    padding-right: 0;
    margin-bottom: 20px;
  }
  .categoryDescription__heading {
    font-size: 2.4rem;
  }
  .categoryDescription__post {
    float: none;
    width: 100%;
    padding-left: 0;
  }

  .rankingPage__item {
    margin-bottom: 0;
  }
  .rankingPage__contents {
    width: calc(100% - 100px);
  }

  .singleTitle {
    padding: 0;
  }
  .singleTitle::before {
    background-color: rgba(0, 0, 0, 0.5);
  }
  .singleTitle__heading {
    position: relative;
    float: none;
    width: 100%;
    min-height: 180px;
    padding: 20px 0;
  }

  .eyecatch.eyecatch-archive {
    margin-bottom: 10px;
  }
  .eyecatch.eyecatch-singleTitle {
    display: none;
  }
  .eyecatch.eyecatch-ranking {
    width: 80px;
  }

  .eyecatch__cat a {
    padding: 6px 12px;
    font-size: 1.2rem;
  }
  .eyecatch__cat a::before {
    content: normal;
  }
  .archiveItem.archiveItem-wide .eyecatch__cat a,
  .archiveItem.archiveItem-wideSp .eyecatch__cat a {
    padding: 10px 20px;
    font-size: 1.3rem;
  }
  .archiveItem.archiveItem-wide .eyecatch__cat a::before,
  .archiveItem.archiveItem-wideSp .eyecatch__cat a::before {
    content: "\e902";
  }
  .eyecatch__ribbon {
    top: 0px;
    left: -55px;
    width: 140px;
    padding: 5px 0;
    font-size: 1.1rem;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
  }

  .dateList.dateList-archive {
    margin-bottom: 5px;
  }

  .pager {
    font-size: 1.2rem;
  }
  a.page-numbers.prev,
  a.page-numbers.next {
    padding: 10px;
  }
  a.page-numbers.prev::before,
  a.page-numbers.next::before {
    content: normal;
  }

  .subPager {
    display: none;
  }

  .breadcrumb {
    overflow-x: auto;
  }
  .breadcrumb__list {
    display: table;
  }
  .breadcrumb__item {
    display: table-cell;
    white-space: nowrap;
    float: none;
    padding-left: 15px;
    margin-right: 0;
  }
  .breadcrumb__item:first-child {
    padding-left: 0;
  }

  .copySns__copy {
    order: 2;
    width: 100%;
    font-size: 1.2rem;
    text-align: center;
    line-height: 1.5;
    margin-top: 20px;
  }
  .copySns__copyInfo {
    margin-top: 5px;
  }
  .copySns__list {
    order: 1;
    display: block;
    width: 100%;
    text-align: center;
  }
  .copySns__listItem {
    margin: 0 2.5px;
  }

  .contactTable__header {
    width: 100%;
    display: block;
    padding: 0 0 10px 0;
  }
  .contactTable__data {
    width: 100%;
    display: block;
    padding: 0 0 20px 0;
  }

  .heading.heading-first {
    font-size: 1.4rem;
  }
  .heading.heading-archive {
    font-size: 1.5rem;
  }
  .archiveItem.archiveItem-wide .heading.heading-archive,
  .archiveItem.archiveItem-wideSp .heading.heading-archive {
    font-size: 1.8rem;
  }
  .heading.heading-singleTitle {
    font-size: 2.4rem;
    margin-bottom: 20px;
  }
  .heading.heading-primary {
    font-size: 1.8rem;
  }
  .heading.heading-primary span {
    font-size: 1.4rem;
  }
  .heading.heading-widget {
    font-size: 1.6rem;
  }
  .heading.heading-footer {
    font-size: 1.6rem;
  }

  .btn__link,
  .widget .tag-cloud-link,
  .comment-respond .submit,
  .comments__list .comment-reply-link {
    font-size: 1.2rem;
  }
  .comment-respond .submit {
    padding-left: 15px;
    padding-right: 15px;
  }

  .widgetFoot {
    display: block;
  }
  .widgetFoot__contents {
    width: 100%;
  }
  .widget.widget-foot:last-child {
    margin-bottom: 40px;
  }

  .u-none-pc {
    display: block;
  }
  .u-none-sp {
    display: none;
  }
}
 @keyframes float {
	 0%, 100% {
		 transform: translateY(0);
	}
	 50% {
		 transform: translateY(-5px);
	}
}
 body {
	 color: #000;
	 line-height: 1.6;
}
 @media screen and (max-width: 640px) {
	 body {
		 font-size: 1.4rem;
	}
}
 @media screen and (min-width: 641px) {
	 .sp {
		 display: none !important;
	}
}
 @media screen and (max-width: 640px) {
	 .pc {
		 display: none !important;
	}
}
 .content-width {
	 width: 100%;
	 margin: 0 auto;
	 max-width: 1120px;
}
 @media screen and (max-width: 1220px) {
	 .content-width {
		 padding: 0 50px;
		 max-width: none;
	}
}
 @media screen and (max-width: 860px) {
	 .content-width {
		 padding: 0 30px;
	}
}
 @media screen and (max-width: 640px) {
	 .content-width {
		 padding: 0 20px;
	}
}
 .content-pdg {
	 padding: 80px 0;
}
 @media screen and (max-width: 640px) {
	 .content-pdg {
		 padding: 60px 0;
	}
}
 .bg-blue-light {
	 background-color: #f4f4f4;
}
 .shadow-blue {
	 box-shadow: 0 3px 15px rgba(7,118,166,0.3);
}
 .num {
	 font-family: Droid Sans;
}
 .text-xl {
	 font-size: 2.2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 .text-xl {
		 font-size: 1.8rem;
	}
}
 .cta-btn {
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 width: 480px;
	 height: 102px;
	 border-radius: 60px;
	 background: linear-gradient(-90deg,#e11616 0%,#f85601 100%);
	 background-color: #fff;
	 margin-top: 2rem;
	 position: relative;
	 font-size: 2.4rem;
	 font-weight: 800;
	 transition: ease-in .2s;
}
 @media screen and (max-width: 640px) {
	 .cta-btn {
		 width: 100%;
		 font-size: 1.6rem;
		 height: 7.4rem;
		 max-width: 340px;
		 margin-left: auto;
		 margin-right: auto;
	}
}
 .cta-btn .btn-icon {
	 width: 6rem;
	 margin-right: 1rem;
}
 @media screen and (max-width: 640px) {
	 .cta-btn .btn-icon {
		 width: 4rem;
		 margin-right: 0;
	}
}
 .cta-btn span {
	 font-size: 2.8rem;
}
 @media screen and (max-width: 640px) {
	 .cta-btn span {
		 font-size: 1.6rem;
	}
}
 .cta-btn .arrow {
	 position: absolute;
	 width: 1.3rem;
	 right: 3rem;
}
 @media screen and (max-width: 640px) {
	 .cta-btn .arrow {
		 width: 0.8rem;
		 right: 2rem;
	}
}
 .cta-btn:hover {
	 background: #fff;
	 color: #e11616;
	 border: 2px solid;
	 transform: scale(1.02);
	 transition: ease-in .2s;
}
 .cta {
	 padding: 60px 0;
	 background-image: linear-gradient(to right, #03045E 0%, #02306F 100%);
}
 .cta .content-width {
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 color: #fff;
}
 @media screen and (max-width: 940px) {
	 .cta .content-width {
		 flex-direction: column;
	}
}
 .cta .content-width .cta-tel {
	 text-align: center;
}
 @media screen and (max-width: 640px) {
	 .cta .content-width .cta-tel {
		 width: 100%;
	}
}
 .cta .content-width .cta-tel .cta-tel-num {
	 font-size: 4.8rem;
	 font-weight: bold;
}
 .cta .content-width .cta-tel .cta-tel-num .cta-tel-sp {
	 color: #e11616;
	 background: #fff;
	 border: 3px solid;
	 font-weight: 800;
}
 .cta .content-width .cta-tel .cta-tel-num .cta-tel-sp .tell {
	 margin-right: 1rem;
}
 .cta .content-width .cta-tel .cta-tel-num span {
	 display: block;
	 font-size: 1.2rem;
	 font-weight: 400;
	 border-top: 1px dashed;
	 padding: 1rem;
}
 @media screen and (max-width: 640px) {
	 .cta .content-width .cta-tel .cta-tel-num span {
		 border-top: none;
	}
}
 .cta .content-width .cta-mail {
	 margin-left: 8rem;
}
 @media screen and (max-width: 940px) {
	 .cta .content-width .cta-mail {
		 margin-left: 0;
		 margin-top: 2rem;
	}
}
 @media screen and (max-width: 640px) {
	 .cta .content-width .cta-mail {
		 width: 100%;
	}
}
 .cta .content-width .cta-mail .cta-mail-baloon {
	 background-color: #fff;
	 border-radius: 15px;
	 color: #000;
	 font-size: 2rem;
	 font-weight: 800;
	 max-width: 420px;
	 margin: 0 auto;
	 text-align: center;
	 padding: 1.4rem 0;
	 line-height: 1.4;
	 position: relative;
	 animation: 2s ease-in-out 1s infinite float;
}
 @media screen and (max-width: 640px) {
	 .cta .content-width .cta-mail .cta-mail-baloon {
		 width: 100%;
		 font-size: 1.6rem;
	}
}
 .cta .content-width .cta-mail .cta-mail-baloon span {
	 color: #E6153D;
	 font-size: 2.4rem;
}
 @media screen and (max-width: 640px) {
	 .cta .content-width .cta-mail .cta-mail-baloon span {
		 font-size: 1.8rem;
	}
}
 .cta .content-width .cta-mail .cta-mail-baloon::after {
	 content: "";
	 display: block;
	 position: absolute;
	 border-top: 1.2rem solid #fff;
	 border-left: 0.8rem solid transparent;
	 border-right: 0.8rem solid transparent;
	 bottom: -1.2rem;
	 left: 50%;
	 margin-left: -0.8rem;
}
 .cta .content-width .cta-mail .cta-btn {
	 margin-top: 3rem;
}
 .title h2 {
	 font-size: 3.2rem;
	 font-weight: 800;
	 text-align: center;
}
 @media screen and (max-width: 640px) {
	 .title h2 {
		 font-size: 2.6rem;
	}
}
 .title-icon {
	 background-color: #e11616;
	 width: fit-content;
	 line-height: 1;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 border-radius: 4rem;
	 margin: 1rem auto 0;
	 color: #fff;
	 font-size: 2.2rem;
	 font-weight: 800;
	 padding: 0.4rem 4rem;
	 letter-spacing: 4px;
}
 @media screen and (max-width: 640px) {
	 .title-icon {
		 font-size: 1.6rem;
		 letter-spacing: 2px;
		 padding: 0.8rem 1rem;
	}
}
 .title-icon img {
	 margin-right: 0.4rem;
	 width: 40px;
}
.title-icon img.icon-achievement{
	width: 60px;
}
 @media screen and (max-width: 640px) {
	 .title-icon img {
		 width: 2rem;
	}
}
 #header {
	 width: 100%;
	 position: fixed;
	 height: 60px;
	 z-index: 9999;
	 background-color: #fff;
	 transition: ease .2s;
	 transform: translate(0,-100%);
}
 @media screen and (max-width: 1060px) {
	 #header {
		 display: none;
	}
}
 #header.is-shown {
	 transform: translate(0,0);
}
 #header .content-width {
	 height: 100%;
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
}
 #header .content-width .header-logo {
	 width: 98px;
	 color: #001A53;
}
 #header .content-width .header-gnav {
	 display: flex;
	 align-items: center;
}
 #header .content-width .header-gnav li {
	 color: #000;
	 font-weight: 700;
	 margin-left: 2.4rem;
	 transition: ease .2s;
}
 @media screen and (max-width: 1220px) {
	 #header .content-width .header-gnav li {
		 margin-left: 1.8rem;
	}
}
 #header .content-width .header-gnav li a {
	 display: block;
}
 #header .content-width .header-gnav li:hover {
	 color: #0675A6;
	 font-weight: 800;
}
 #header .content-width .header-gnav li:last-child a {
	 padding: 1rem 1.6rem;
	 border-radius: 30px;
	 background-color: #e11616;
	 color: #fff;
	 transition: ease .2s;
	 box-sizing: border-box;
}
 #header .content-width .header-gnav li:last-child a:hover {
	 color: #e11616;
	 background-color: #fff;
	 border: 2px solid;
}
 #header-ham {
	 position: fixed;
	 right: 0;
	 top: 0;
	 width: 6.5rem;
	 height: 6.5rem;
	 background-color: #001A53;
	 border-bottom-left-radius: 15px;
	 z-index: 9999;
	 box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	 cursor: pointer;
	 display: none;
}
 @media screen and (min-width: 1061px) {
	 #header-ham {
		 display: none;
	}
}
 #header-ham .ham {
	 position: relative;
	 height: 100%;
}
 #header-ham .ham span {
	 position: absolute;
	 right: 0;
	 left: 0;
	 margin: auto;
	 width: 2.4rem;
	 height: 3px;
	 background: #fff;
	 transition: ease .2s;
}
 #header-ham .ham span:nth-child(1) {
	 top: 50%;
	 margin-top: -0.6rem;
}
 #header-ham .ham span:nth-child(2) {
	 bottom: 50%;
	 margin-bottom: -0.6rem;
}
 #header-ham.close {
	 position: fixed;
	 right: 210px;
	 margin-left: -6.5rem;
}
 #header-ham.close .ham span:nth-child(1) {
	 margin-top: -0.2rem;
	 transform: rotate(45deg);
}
 #header-ham.close .ham span:nth-child(2) {
	 margin-bottom: -0.2rem;
	 transform: rotate(-45deg);
}
 #header-mobile .header-mobile-inner {
	 height: 100%;
	 position: relative;
}
 #header-mobile .header-mobile-inner .toggle-header {
	 width: 210px;
	 height: 100%;
	 position: absolute;
	 right: 0;
	 top: 0;
	 bottom: 0;
	 font-size: 1.4rem;
	 font-weight: 800;
	 color: #0675A6;
}
 #header-mobile .header-mobile-inner .toggle-header .toggle-header-inner {
	 height: 100%;
	 position: relative;
}
 #header-mobile .header-mobile-inner .toggle-header .toggle-header-inner ul {
	 display: none;
}
 #header-mobile .header-mobile-inner .toggle-header .toggle-header-inner ul li + li {
	 margin-top: 2rem;
}
 #header-mobile.open {
	 display: block;
	 position: fixed;
	 width: 100%;
	 height: 100%;
	 background: rgba(0,0,0,0.4);
	 z-index: 1000;
}
 #header-mobile.open .header-mobile-inner .toggle-header-inner {
	 background-color: #fff;
	 padding: 5rem 3rem;
}
 #header-mobile.open .header-mobile-inner .toggle-header-inner ul {
	 display: block;
}
 #main {
	 background-image: linear-gradient(to right, #03045E 0%, #02306F 100%);
	 overflow: hidden;
}
 @media screen and (max-width: 640px) {
	 #main {
		 background-position: initial;
	}
}
 #main .content-width {
	 position: relative;
	 padding: 60px 0;
	 z-index: 0;
}
 @media screen and (max-width: 1220px) {
	 #main .content-width {
		 padding: 60px 50px;
	}
}
 @media screen and (max-width: 640px) {
	 #main .content-width {
		 padding: 40px 20px;
	}
}
 #main .content-width .main-logo {
	 width: 19rem;
	 color: #fff;
}
 @media screen and (max-width: 640px) {
	 #main .content-width .main-logo {
		 width: 15rem;
	}
}
 #main .content-width .main-illust {
	 position: absolute;
	 right: 0;
	 top: 50%;
	 width: 488px;
	 margin-top: -192px;
	 margin-right: -162px;
	 z-index: -1;
}
 @media screen and (max-width: 1220px) {
	 #main .content-width .main-illust {
		 width: 36%;
		 margin-right: -54px;
		 margin-top: -12%;
	}
}
 @media screen and (max-width: 1024px) {
	 #main .content-width .main-illust {
		 display: none;
	}
}
 #main .content-width .main-text {
	 width: 793px;
	 margin-top: 3.4rem;
	 margin-left: -15px;
}
 @media screen and (max-width: 1220px) {
	 #main .content-width .main-text {
		 width: 70%;
	}
}
 @media screen and (max-width: 1024px) {
	 #main .content-width .main-text {
		 width: 90%;
		 margin: 3.4rem auto;
	}
}
 @media screen and (max-width: 860px) {
	 #main .content-width .main-text {
		 width: 100%;
	}
}
 @media screen and (max-width: 640px) {
	 #main .content-width .main-text {
		 margin: 1.4rem auto 1rem;
	}
}
 #main .content-width .main-list {
	 margin-top: 2rem;
	 margin-left: -2.4rem;
	 display: flex;
}
 @media screen and (max-width: 1024px) {
	 #main .content-width .main-list {
		 justify-content: center;
	}
}
 @media screen and (max-width: 640px) {
	 #main .content-width .main-list {
		 margin-left: -1.4rem;
		 margin-top: 0;
	}
}
 #main .content-width .main-list li {
	 color: #fff;
	 line-height: 1.4;
	 width: 224px;
	 height: 137px;
	 border-radius: 15px;
	 border: 2px solid;
	 margin-left: 2.4rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 text-align: center;
}
 @media screen and (max-width: 1220px) {
	 #main .content-width .main-list li {
		 font-size: 1.8rem;
		 width: 194px;
		 height: 127px;
	}
}
 @media screen and (max-width: 640px) {
	 #main .content-width .main-list li {
		 font-size: 1.2rem;
		 line-height: 1.6;
		 margin-left: 1.4rem;
		 height: 86px;
	}
}
 #main .content-width .main-list li span {
	 font-size: 2.6rem;
}
 @media screen and (max-width: 1220px) {
	 #main .content-width .main-list li span {
		 font-size: 2.2rem;
	}
}
 @media screen and (max-width: 640px) {
	 #main .content-width .main-list li span {
		 font-size: 1.4rem;
	}
}
 .main-tel-box {
	 position: absolute;
	 top: 0;
	 right: 0;
	 background-color: #e11616;
	 color: #fff;
	 padding: 0.6rem 1.5rem 0;
	 border-bottom-left-radius: 10px;
	 border-bottom-right-radius: 10px;
	 text-align: center;
}
 @media screen and (max-width: 1060px) {
	 .main-tel-box {
		 display: none;
	}
}
 .main-tel-box .main-tel {
	 display: flex;
	 font-size: 2.8rem;
	 border-bottom: 1px dashed;
	 line-height: 1.6;
}
 .main-tel-box .main-tel img {
	 width: 1.9rem;
	 margin-right: 0.8rem;
}
 .main-tel-box span {
	 font-size: 1.2rem;
	 font-weight: 100;
	 display: block;
	 padding: 0.6rem;
}
 .top-cta-box {
	 width: 100%;
	 max-width: 900px;
	 margin: 0 auto;
	 background-color: #00B4D8;
	 color: #fff;
	 border-radius: 20px;
	 padding: 50px 40px;
	 position: relative;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 @media screen and (max-width: 1024px) {
	 .top-cta-box {
		 display: block;
		 text-align: center;
		 max-width: 740px;
	}
}
 @media screen and (max-width: 640px) {
	 .top-cta-box {
		 padding: 40px 20px;
	}
}
 .top-cta-box img {
	 width: 200px;
}
 @media screen and (max-width: 1024px) {
	 .top-cta-box img {
		 width: 194px;
	}
}
 @media screen and (max-width: 640px) {
	 .top-cta-box img {
		 width: 170px;
	}
}
 .top-cta-box .top-cta {
	 text-align: center;
	 margin-left: 6rem;
}
 @media screen and (max-width: 1024px) {
	 .top-cta-box .top-cta {
		 margin-left: 0;
		 margin-top: 2rem;
	}
}
 .top-cta-box .top-cta .top-cta-text {
	 font-size: 2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 .top-cta-box .top-cta .top-cta-text {
		 font-size: 1.8rem;
	}
}
 @media screen and (max-width: 1024px) {
	 .top-cta-box .top-cta .cta-btn {
		 margin: 2rem auto 0;
	}
}
 @media screen and (max-width: 640px) {
	 .top-cta-box .top-cta .cta-btn {
		 font-size: 1.6rem;
	}
}
 .top-cta-box .top-cta-limit {
	 position: absolute;
	 top: -2.4rem;
	 right: -2.4rem;
	 width: 108px;
	 height: 108px;
	 border-radius: 50%;
	 background-color: #fff;
	 color: #001A53;
	 transform: rotate(15deg);
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 @media screen and (max-width: 920px) {
	 .top-cta-box .top-cta-limit {
		 top: -1.6rem;
		 right: -1.6rem;
	}
}
 @media screen and (max-width: 640px) {
	 .top-cta-box .top-cta-limit {
		 top: -1rem;
		 right: -1rem;
		 width: 9rem;
		 height: 9rem;
	}
}
 .top-cta-box .top-cta-limit p {
	 font-size: 2rem;
	 font-weight: bold;
	 text-align: center;
	 line-height: 1;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 .top-cta-box .top-cta-limit p {
		 font-size: 1.6rem;
	}
}
 .top-cta-box .top-cta-limit p span {
	 font-size: 3.2rem;
}
 @media screen and (max-width: 640px) {
	 .top-cta-box .top-cta-limit p span {
		 font-size: 2.6rem;
	}
}
 @media screen and (max-width: 640px) {
	 #worry {
		 padding-bottom: 8rem;
	}
}
 #worry .worry-title {
	 text-align: center;
	 margin-top: 10rem;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-title {
		 margin-top: 3.6rem;
	}
}
 #worry .worry-title h2 {
	 font-size: 3.2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-title h2 {
		 font-size: 2.2rem;
	}
}
 #worry .worry-title h2 span {
	 font-size: 4.2rem;
	 color: #0675A6;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-title h2 span {
		 font-size: 2.6rem;
	}
}
 #worry .worry-list-wrap {
	 margin-top: 3rem;
}
 #worry .worry-list-wrap .worry-list {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: center;
	 margin-left: -1.6rem;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-list-wrap .worry-list {
		 margin-left: 0;
		 max-width: 400px;
		 margin: 0 auto;
	}
}
 #worry .worry-list-wrap .worry-list .worry-list-item {
	 width: 31rem;
	 height: 19rem;
	 border-radius: 30px;
	 background-color: #fff;
	 margin-top: 1.6rem;
	 margin-left: 1.6rem;
	 position: relative;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 text-align: center;
}
 @media screen and (max-width: 920px) {
	 #worry .worry-list-wrap .worry-list .worry-list-item {
		 width: 28rem;
	}
}
 @media screen and (max-width: 640px) {
	 #worry .worry-list-wrap .worry-list .worry-list-item {
		 width: 25.7rem;
		 height: 16rem;
		 margin-top: 4rem;
		 margin-left: auto;
	}
}
 @media screen and (max-width: 640px) {
	 #worry .worry-list-wrap .worry-list .worry-list-item:nth-child(even) {
		 margin-left: 0;
		 margin-right: auto;
	}
}
 #worry .worry-list-wrap .worry-list .worry-list-item .circle {
	 position: absolute;
	 top: -15px;
	 left: 50%;
	 margin-left: -27px;
	 width: 50px;
}
 #worry .worry-list-wrap .worry-list .worry-list-item p {
	 padding-top: 1.6rem;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-list-wrap .worry-list .worry-list-item p {
		 font-size: 1.6rem;
	}
}
 #worry .worry-list-wrap .worry-list .worry-list-item p span {
	 font-size: 2.8rem;
	 color: #0675A6;
	 display: block;
}
 @media screen and (max-width: 640px) {
	 #worry .worry-list-wrap .worry-list .worry-list-item p span {
		 font-size: 2rem;
	}
}
 #worry .worry-list-wrap .worry-list .worry-list-item .worry-image {
	 position: absolute;
	 bottom: 0;
}
 #worry .worry-list-wrap .worry-list .worry-list-item .worry-image.worry-image01 {
	 width: 14rem;
	 right: -9rem;
}
 #worry .worry-list-wrap .worry-list .worry-list-item .worry-image.worry-image02 {
	 width: 12rem;
	 left: -8rem;
}
 #worry .worry-list-wrap .worry-list .worry-list-item .worry-image.worry-image03 {
	 width: 16rem;
	 right: -9rem;
}
 #worry .worry-list-wrap .worry-list .worry-list-item .worry-image.worry-image04 {
	 width: 14rem;
	 left: -9rem;
}
 #worry .worry-list-wrap .worry-illust {
	 margin-top: 4rem;
	 margin-bottom: 10rem;
}
 #worry .worry-list-wrap .worry-illust ul {
	 display: flex;
	 justify-content: center;
	 align-items: baseline;
	 margin-left: -4rem;
}
 #worry .worry-list-wrap .worry-illust ul li {
	 margin-left: 4rem;
}
 #worry .worry-list-wrap .worry-illust ul li:nth-child(1) {
	 width: 200px;
}
 #worry .worry-list-wrap .worry-illust ul li:nth-child(2) {
	 width: 200px;
}
 #worry .worry-list-wrap .worry-illust ul li:nth-child(3) {
	 width: 200px;
}
 #worry .worry-list-wrap .worry-illust ul li:nth-child(4) {
	 width: 200px;
	 margin-left: 1rem;
}
 #success .relief {
	 position: relative;
	 padding: 12rem 0 6rem;
	 z-index: 0;
	 background-image: linear-gradient(to right, #03045E 0%, #02306F 100%);
}
 @media screen and (max-width: 640px) {
	 #success .relief {
		 padding: 7rem 0 3rem;
		 background-position: top;
	}
}
 #success .relief::after {
	 content: "";
	 display: block;
	 border-top: 41px solid #03045E;
	 border-left: 84px solid transparent;
	 border-right: 84px solid transparent;
	 position: absolute;
	 left: 50%;
	 bottom: -40px;
	 margin-left: -84px;
}
 @media screen and (max-width: 640px) {
	 #success .relief::after {
		 height: 5px;
	}
}
 #success .relief .relief-cloud {
	 position: absolute;
	 top: -110px;
	 left: 50%;
	 width: 384px;
	 margin-left: -192px;
}
 @media screen and (max-width: 640px) {
	 #success .relief .relief-cloud {
		 width: 30rem;
		 margin-left: -15rem;
	}
}
 #success .relief .relief-cloud .illust-cloud {
	 position: relative;
}
 #success .relief .relief-cloud .illust-cloud .illust-relief {
	width: 180px;
    position: absolute;
    top: -1rem;
    left: -12rem;
}
 @media screen and (max-width: 640px) {
	 #success .relief .relief-cloud .illust-cloud .illust-relief {
		width: 9rem;
		left: -2rem;
		top: 3rem;
	}
}
 #success .relief .relief-cloud .illust-cloud p {
	 text-align: center;
	 width: 100%;
	 color: #0675A6;
	 position: absolute;
	 top: 50%;
	 margin-top: -0.5em;
	 line-height: 1;
	 font-size: 2.8rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 #success .relief .relief-cloud .illust-cloud p {
		 font-size: 2rem;
	}
}
 #success .relief .relief-text {
	 color: #fff;
	 text-align: center;
	 font-size: 3.2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 #success .relief .relief-text {
		 line-height: 1.8;
		 font-size: 2rem;
	}
}
 #success .relief .relief-text span {
	 font-size: 4.4rem;
	 position: relative;
}
 @media screen and (max-width: 640px) {
	 #success .relief .relief-text span {
		 font-size: 2rem;
	}
}
 #success .relief .relief-text span::before {
	 content: "";
	 display: block;
	 position: absolute;
	 background: #e11616;
	 left: 0;
	 right: 0;
	 height: 10px;
	 bottom: 3px;
	 z-index: -1;
}
@media screen and (max-width: 640px) {
	#success .relief .relief-text span::before {
		height: 5px;
   }
}

 #success .reason {
	 background-color: #0D8CBA;
	 position: relative;
	 z-index: -1;
	 overflow: hidden;
}
#success .reason .reason-inner .content-pdg {
	 position: relative;
}
 #success .reason .reason-inner .content-pdg .illust-success {
	 position: absolute;
	 top: 2rem;
	 right: 6rem;
	 width: 265px;
	 z-index: -1;
}
 #success .reason-title {
	 color: #fff;
	 text-align: center;
	 font-size: 3.2rem;
	 font-weight: 800;
	 line-height: 1.4;
	 padding-top: 2rem;
	 position: relative;
}
#success .support .reason-title {
	color: #000;
}
 @media screen and (max-width: 640px) {
	 #success .reason-title {
		 font-size: 2.2rem;
	}
}
 #success .reason-title span {
	 font-size: 3.8rem;
}
 @media screen and (max-width: 640px) {
	 #success .reason-title span {
		 font-size: 2rem;
	}
}
 #success .reason-title span strong {
	 font-size: 4.6rem;
}
 @media screen and (max-width: 640px) {
	 #success .reason-title span strong {
		 font-size: 2.4rem;
	}
}
 #success .reason-title .icon-why {
	 position: absolute;
	 top: -40px;
	 left: 50%;
	 width: 97px;
	 margin-left: -310px;
}
 @media screen and (max-width: 640px) {
	 #success .reason-title .icon-why {
		 width: 8rem;
		 margin-left: -180px;
		 top: -60px;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item {
	 position: relative;
	 background-color: #fff;
	 border-radius: 30px;
	 padding: 4.5rem 6rem;
	 margin-top: 6rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item {
		 padding: 3.5rem 4rem;
	}
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item {
		 text-align: center;
		 max-width: 740px;
	}
}
 @media screen and (max-width: 640px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item {
		 margin-top: 5rem;
		 padding: 3.5rem 2rem;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(odd) {
	 margin-right: 18rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(odd) {
		 margin-right: 14rem;
	}
}
 @media screen and (max-width: 1024px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(odd) {
		 margin-right: 0;
	}
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(odd) {
		 margin-left: auto;
		 margin-right: auto;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(even) {
	 margin-left: 18rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(even) {
		 margin-left: 14rem;
	}
}
 @media screen and (max-width: 1024px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(even) {
		 margin-left: 0;
	}
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(even) {
		 margin-left: auto;
		 margin-right: auto;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item .success-item-text {
	 width: 50%;
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item .success-item-text {
		 width: 100%;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item .success-item-illust {
	 position: absolute;
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item .success-item-illust {
		 position: initial;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(1) .success-item-illust {
	width: 300px;
	bottom: 6rem;
	right: 10rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(1) .success-item-illust {
		display: block;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(2) .success-item-illust {
	width: 300px;
	bottom: 6rem;
	right: 10rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(2) .success-item-illust {
		display: block;
	}
}
 @media screen and (max-width: 1024px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(2) .success-item-illust {
		display: block;
	}
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(2) .success-item-illust {
		display: block;
	}
}
 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(3) .success-item-illust {
	 width: 300px;
	 bottom: 6rem;
	 right: 10rem;
}
 @media screen and (max-width: 1220px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(3) .success-item-illust {
		display: block;
	}
}
 @media screen and (max-width: 1024px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(3) .success-item-illust {
		display: block;
	}
}
 @media screen and (max-width: 920px) {
	 #success .reason .reason-inner .content-pdg .success-list .success-item:nth-child(3) .success-item-illust {
		display: block;
	}
}

 .main-content-list .main-content-item .main-content-text .main-content-label {
	 background-color: #e11616;
	 color: #fff;
	 font-size: 1.8rem;
	 font-weight: 800;
	 padding: 0.5rem 2rem;
	 border-radius: 4rem;
	 line-height: 1;
	 display: flex;
	 width: fit-content;
	 justify-content: center;
	 align-items: center;
}
 .main-content-list .main-content-item .main-content-text .main-content-label .num {
	 font-size: 3rem;
}
 @media screen and (max-width: 920px) {
	 .main-content-list .main-content-item .main-content-text .main-content-label {
		 margin: 0 auto;
	}
}
 @media screen and (max-width: 640px) {
	 .main-content-list .main-content-item .main-content-text .main-content-label {
		 font-size: 1.6rem;
	}
}
 .main-content-list .main-content-item .main-content-text .main-content-title {
	 font-size: 3.2rem;
	 font-weight: 800;
	 color: #0675A6;
	 margin-top: 2rem;
}
 @media screen and (max-width: 1024px) {
	 .main-content-list .main-content-item .main-content-text .main-content-title {
		 font-size: 2.8rem;
	}
}
 @media screen and (max-width: 640px) {
	 .main-content-list .main-content-item .main-content-text .main-content-title {
		 font-size: 2.6rem;
	}
}
 @media screen and (max-width: 1024px) {
	 .main-content-list .main-content-item .main-content-text .main-content-title br {
		 display: none;
	}
}
 @media screen and (max-width: 640px) {
	 .main-content-list .main-content-item .main-content-text .main-content-title br {
		 display: block;
	}
}
 .main-content-list .main-content-item .main-content-text .main-content-prgh {
	 font-size: 1.6rem;
	 font-weight: 400;
	 margin-top: 2rem;
	 line-height: 2;
}
 @media screen and (max-width: 640px) {
	 .main-content-list .main-content-item .main-content-text .main-content-prgh {
		 font-size: 1.4rem;
		 text-align: left;
	}
}
 .main-content-list .main-content-item .main-content-text .main-content-prgh span {
	 font-size: 1.8rem;
	 font-weight: 600;
}
 @media screen and (max-width: 640px) {
	 .main-content-list .main-content-item .main-content-text .main-content-prgh span {
		 font-size: 1.6rem;
	}
}
 #strength .strength-title h2 {
	 text-align: center;
	 font-size: 3.2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 #strength .strength-title h2 {
		 font-size: 2.2rem;
	}
}
 #strength .strength-title h2 span {
	 font-size: 4.6rem;
	 font-weight: 800;
	 color: #0675A6;
}
 #strength .strength-list {
	 margin-top: 4rem;
}
 #strength .strength-list .strength-item {
	 display: flex;
	 justify-content: space-between;
	 align-items: center;
}
 @media screen and (max-width: 920px) {
	 #strength .strength-list .strength-item {
		 flex-direction: column;
	}
}
 #strength .strength-list .strength-item .strength-content-text {
	 width: 48%;
}
 @media screen and (max-width: 920px) {
	 #strength .strength-list .strength-item .strength-content-text {
		 width: 100%;
		 max-width: 700px;
		 text-align: center;
	}
}
 #strength .strength-list .strength-item .strength-content-image {
	 width: 48%;
}
 @media screen and (max-width: 640px) {
	 #strength .strength-list .strength-item .strength-content-image {
		 width: 95%;
		 margin-top: 2rem;
	}
}
 #strength .strength-list .strength-item:nth-child(even) .strength-content-image {
	 order: -1;
}
 @media screen and (max-width: 920px) {
	 #strength .strength-list .strength-item:nth-child(even) .strength-content-image {
		 order: 0;
	}
}
 @media screen and (max-width: 920px) {
	 #strength .strength-list .strength-item:nth-child(n + 2) {
		 margin-top: 5rem;
	}
}
 .support {
	 text-align: center;
	 /* margin-top: 8rem; */
}
 .support .support-title h4 {
	 font-size: 3.2rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 .support .support-title h4 {
		 font-size: 2.2rem;
	}
	.support .support-title{
		padding: 2em;
	}
}
 .support .support-title p {
	 font-size: 1.8rem;
	 font-weight: 400;
	 margin-top: 2rem;
	 line-height: 2;
}
.support .support-title p.p-title {
	font-size: 3.2rem;
	font-weight: 800;
	color: #0675A6;
	margin-top: 2rem;
}
@media screen and (max-width: 640px) {
	 .support .support-title p {
		 font-size: 1.6rem;
	}
	.support .support-title p.p-title{
		font-size: 2.4rem;
		line-height: 1.4;
	}
}
 .support .support-list {
	 margin: 4.6rem 2rem 0;
	 background-color: #fff;
	 border-radius: 15px;
	 display: flex;
	 flex-wrap: wrap;
}
 .support .support-list .support-item {
	 padding: 2.4rem 0;
	 width: calc(100% / 3);
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 justify-content: end;
	 border-left: 1px dashed;
}
 @media screen and (max-width: 920px) {
	 .support .support-list .support-item {
		 width: 50%;
		 border: none;
	}
}
 @media screen and (max-width: 640px) {
	 .support .support-list .support-item {
		 width: 100%;
	}
}
 .support .support-list .support-item:nth-child(1) .internal-img {
	 width: 161px;
}
 .support .support-list .support-item:nth-child(2) .internal-img {
	 width: 161px;
}
 .support .support-list .support-item:nth-child(3) .internal-img {
	 width: 161px;
}
 .support .support-list .support-item:nth-child(4) .internal-img {
	width: 161px;
}
 .support .support-list .support-item:nth-child(5) .internal-img {
	width: 161px;
}
 .support .support-list .support-item:nth-child(6) .internal-img {
	width: 161px;
}
 .support .support-list .support-item:nth-child(n + 4) {
	 border-top: 1px dashed;
}
 @media screen and (max-width: 920px) {
	 .support .support-list .support-item:nth-child(n + 4) {
		 border: none;
	}
}
 .support .support-list .support-item:nth-child(3n -2) {
	 border-left: none;
}
 @media screen and (max-width: 920px) {
	 .support .support-list .support-item:nth-child(3n -2) {
		 border: none;
	}
}
 @media (min-width: 641px) and (max-width: 920px) {
	 .support .support-list .support-item:nth-child(n + 3) {
		 border-top: 1px dashed;
	}
}
 @media (min-width: 641px) and (max-width: 920px) {
	 .support .support-list .support-item:nth-child(even) {
		 border-left: 1px dashed;
	}
}
 @media screen and (max-width: 640px) {
	 .support .support-list .support-item:nth-child(n + 2) {
		 border-top: 1px dashed;
	}
}
 .support .support-list .support-item .support-item-text {
	 font-size: 2rem;
	 font-weight: 800;
	 margin: 2.4rem 1.5rem 0;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
.support .support-list .support-item .text-red{
	padding: 1rem 1.6rem;
    border-radius: 30px;
    background-color: #e11616;
    color: #fff;
    transition: ease .2s;
    box-sizing: border-box;
}
 @media screen and (max-width: 640px) {
	 .support .support-list .support-item .support-item-text {
		 font-size: 1.6rem;
	}
}
 .support .support-list .support-item .support-item-text img {
	 width: 2.2rem;
	 margin-right: .5rem;
}
 @media screen and (max-width: 640px) {
	 .support .support-list .support-item .support-item-text img {
		 width: 1.7rem;
	}
}
 #achievement {
	 background-color: #0D8CBA;
	 position: relative;
	 overflow: hidden;
	 z-index: 0;
}
 #achievement .achievement-title {
	 text-align: center;
}
 #achievement .achievement-title h2 {
	 color: #fff;
}
 #achievement .achievement-box {
	 background-color: #fff;
	 border-radius: 15px;
	 position: relative;
	 padding: 60px;
	 margin-top: 6rem;
}
 @media screen and (max-width: 1080px) {
	 #achievement .achievement-box {
		 padding: 30px;
	}
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-box {
		 padding: 20px;
		 margin-top: 3.6rem;
	}
}
 #achievement .achievement-box .illust-achievement {
	 position: absolute;
	 top: -225px;
	 z-index: -1;
	 width: 285px;
}
 @media screen and (max-width: 920px) {
	 #achievement .achievement-box .illust-achievement {
		 display: none;
	}
}
 #achievement .achievement-box .achievement-box-title {
	 font-size: 2.8rem;
	 font-weight: 800;
	 text-align: center;
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-box .achievement-box-title {
		 font-size: 1.8rem;
		 line-height: 1.4;
	}
}
 #achievement .achievement-box .achievement-box-title span {
	 position: relative;
	 z-index: 0;
}
 #achievement .achievement-box .achievement-box-title span::before {
	 content: "";
	 display: block;
	 position: absolute;
	 left: 0;
	 bottom: 4px;
	 width: 100%;
	 height: 8px;
	 background-color: #FAA701;
	 z-index: -1;
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-box .achievement-box-title span::before {
		 bottom: 0;
		 height: 6px;
	}
}
 #achievement .achievement-box .achievement-box-title span strong {
	 color: #0675A6;
	 font-size: 4.2rem;
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-box .achievement-box-title span strong {
		 font-size: 2.6rem;
	}
}
 #achievement .achievement-box .achievement-table {
	 margin-top: 3rem;
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-box .achievement-table {
		 margin-top: 2rem;
	}
}
 #achievement .achievement-box .achievement-table table {
	 width: 100%;
}
 #achievement .achievement-box .ahievement-image {
	 margin-top: 3rem;
}
 #achievement .achievement-conclusion {
	 background-color: #0675A6;
	 color: #fff;
	 border-radius: 15px;
	 margin-top: 4rem;
	 padding: 4rem;
	 font-size: 2.6rem;
	 font-weight: 800;
	 line-height: 1.4;
	 text-align: center;
}
 @media screen and (max-width: 1080px) {
	 #achievement .achievement-conclusion {
		 font-size: 2.2rem;
	}
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-conclusion {
		 font-size: 1.6rem;
		 padding: 4rem 2rem;
		 margin-top: 3rem;
	}
}
 #achievement .achievement-conclusion span {
	 font-size: 3.6rem;
	 position: relative;
	 z-index: 0;
}
 @media screen and (max-width: 1080px) {
	 #achievement .achievement-conclusion span {
		 font-size: 2.6rem;
	}
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-conclusion span {
		 font-size: 2rem;
	}
}
 #achievement .achievement-conclusion span::before {
	 content: "";
	 display: block;
	 position: absolute;
	 left: 0;
	 bottom: 4px;
	 width: 100%;
	 height: 8px;
	 background-color: #FAA701;
	 z-index: -1;
}
 @media screen and (max-width: 640px) {
	 #achievement .achievement-conclusion span::before {
		 bottom: 2px;
		 height: 4px;
	}
}
 #voice .voice-list {
	 display: flex;
	 flex-wrap: wrap;
	 justify-content: space-between;
	 margin-top: 7rem;
}
 @media screen and (max-width: 920px) {
	 #voice .voice-list {
		 margin-top: 0;
	}
}
 #voice .voice-list .voice-item {
	 width: 48%;
}
 @media screen and (max-width: 920px) {
	 #voice .voice-list .voice-item {
		 width: 100%;
		 max-width: 720px;
		 margin: 4rem auto 0;
	}
}
 #voice .voice-list .voice-item:nth-child(even) {
	 margin-top: 7rem;
}
 @media screen and (max-width: 920px) {
	 #voice .voice-list .voice-item:nth-child(even) {
		 margin-top: 4rem;
	}
}
 #voice .voice-list .voice-item .voice-baloon {
	 background-color: #0675A6;
	 color: #fff;
	 border-radius: 15px;
	 height: 84px;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 position: relative;
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-baloon {
		 height: 64px;
	}
}
 #voice .voice-list .voice-item .voice-baloon img {
	 width: 4.4rem;
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon img {
		 width: 3.6rem;
	}
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-baloon img {
		 width: 3.2rem;
	}
}
 #voice .voice-list .voice-item .voice-baloon p {
	 font-size: 2.4rem;
	 font-weight: 800;
	 padding-left: 1rem;
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon p {
		 font-size: 2rem;
	}
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-baloon p {
		 padding-left: 0.5rem;
		 font-size: 1.8rem;
	}
}
 #voice .voice-list .voice-item .voice-baloon p span {
	 font-size: 2.8rem;
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon p span {
		 font-size: 2.4rem;
	}
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon p span {
		 font-size: 2.2rem;
	}
}
 #voice .voice-list .voice-item .voice-baloon p span .num {
	 font-size: 3.8rem;
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon p span .num {
		 font-size: 3.4rem;
	}
}
 @media screen and (max-width: 1080px) {
	 #voice .voice-list .voice-item .voice-baloon p span .num {
		 font-size: 3rem;
	}
}
 #voice .voice-list .voice-item .voice-baloon:after {
	 content: "";
	 display: block;
	 position: absolute;
	 bottom: -16px;
	 border-top: 16px solid #0675A6;
	 border-left: 9px solid transparent;
	 border-right: 9px solid transparent;
}
 #voice .voice-list .voice-item .voice-content {
	 margin-top: 3.4rem;
	 background-color: #fff;
	 border-radius: 15px;
	 padding: 3rem;
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-content {
		 margin-top: 3rem;
		 padding: 3rem 2rem 1.5rem;
	}
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-content .voice-content-title {
		 text-align: center;
	}
}
 #voice .voice-list .voice-item .voice-content .voice-content-prgh {
	 font-size: 1.6rem;
	 line-height: 2;
	 font-weight: 400;
	 margin-top: 2rem;
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-content .voice-content-prgh {
		 margin-top: 1.2rem;
		 font-size: 1.4rem;
	}
}
 #voice .voice-list .voice-item .voice-content .voice-who {
	 margin-top: 2rem;
	 padding-top: 2rem;
	 border-top: 1px dashed;
	 display: flex;
	 align-items: center;
}
 @media screen and (max-width: 640px) {
	 #voice .voice-list .voice-item .voice-content .voice-who {
		 padding-top: 1.5rem;
	}
}
 #voice .voice-list .voice-item .voice-content .voice-who .voice-pic {
	 width: 6.4rem;
	 height: 6.4rem;
	 border-radius: 50%;
	 background-color: #EAEDF2;
	 background-size: cover;
	 background-position: center;
}
 #voice .voice-list .voice-item .voice-content .voice-who .voice-name {
	 margin-left: 1rem;
	 font-size: 1.6rem;
	 white-space: nowrap;
}
 #voice .voice-list .voice-item .voice-content .voice-who .voice-name span {
	 font-size: 1.2rem;
	 font-weight: 400;
}
 #voice .voice-list .voice-item:nth-child(1) .voice-pic {
	 background-image: url("../assets-lp02/img/icon-img-voice.svg");
}
 #voice .voice-list .voice-item:nth-child(2) .voice-pic {
	 background-image: url("../assets-lp02/img/icon-img-voice.svg");
}
 #voice .voice-list .voice-item:nth-child(3) .voice-pic {
	 background-image: url("../assets-lp02/img/icon-img-voice.svg");
}
#voice .voice-list .voice-item:nth-child(4) .voice-pic {
	background-image: url("../assets-lp02/img/icon-img-voice.svg");
}
#flow {
	 position: relative;
	 overflow: hidden;
}
#flow .flow-list {
	 display: flex;
	 justify-content: space-between;
	 flex-wrap: wrap;
}
 #flow .flow-list .flow-item {
	 width: calc((100% - 10rem)/ 3);
	 background-color: #fff;
	 border-radius: 15px;
	 padding: 3rem;
	 position: relative;
	 margin-top: 8rem;
}
 @media screen and (max-width: 1080px) {
	 #flow .flow-list .flow-item {
		 width: calc((100% - 6rem)/ 3);
		 margin-top: 6rem;
	}
}
 @media screen and (max-width: 920px) {
	 #flow .flow-list .flow-item {
		 width: calc((100% - 3rem)/ 2);
	}
}
 @media screen and (max-width: 640px) {
	 #flow .flow-list .flow-item {
		 width: 100%;
		 padding: 2rem;
	}
}
 #flow .flow-list .flow-item span {
	 position: absolute;
	 left: 50%;
	 top: -3.1rem;
	 width: 6.2rem;
	 height: 6.2rem;
	 margin-left: -3.1rem;
	 border-radius: 50%;
	 background-color: #e11616;
	 color: #fff;
	 font-size: 2.8rem;
	 font-weight: bold;
	 display: flex;
	 justify-content: center;
	 align-items: center;
}
 @media screen and (max-width: 640px) {
	 #flow .flow-list .flow-item span {
		 width: 5.4rem;
		 height: 5.4rem;
		 font-size: 2.4rem;
	}
}
 #flow .flow-list .flow-item .flow-item-title {
	 font-size: 2.4rem;
	 font-weight: 800;
	 text-align: center;
	 margin-top: 2rem;
}
 @media screen and (max-width: 640px) {
	 #flow .flow-list .flow-item .flow-item-title {
		 font-size: 2rem;
	}
}
 #flow .flow-list .flow-item .flow-pic {
	 width: 9rem;
	 height: 9rem;
	 border-radius: 50%;
	 background-color: #EAEDF2;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 margin: 2rem auto 0;
}
#flow .flow-list .flow-item .flow-pic .check-circle {
	width: 52px;
}
 #flow .flow-list .flow-item .flow-item-prgh {
	 margin-top: 2rem;
	 font-size: 1.6rem;
	 font-weight: 400;
	 line-height: 2;
}
 @media screen and (max-width: 640px) {
	 #flow .flow-list .flow-item .flow-item-prgh {
		 font-size: 1.4rem;
	}
}
 #flow .flow-additional {
	 margin-top: 4rem;
	 font-size: 1.6rem;
	 font-weight: 400;
	 line-height: 2;
	 margin-left: 52%;
}
 @media screen and (max-width: 920px) {
	 #flow .flow-additional {
		 margin-left: 0;
		 font-size: 1.4rem;
		 margin-top: 3rem;
	}
}
 #faq .faq-list {
	 margin: 3rem auto 0;
	 max-width: 867px;
}
 @media screen and (max-width: 920px) {
	 #faq .faq-list {
		 max-width: 720px;
	}
}
 #faq .faq-list .faq-item {
	 border-radius: 15px;
	 overflow: hidden;
}
 #faq .faq-list .faq-item .faq-question {
	 background-color: #0675A6;
	 font-size: 2.4rem;
	 font-weight: 700;
	 color: #fff;
	 height: 8rem;
	 display: flex;
	 align-items: center;
	 padding: 0 3rem;
}
 @media screen and (max-width: 920px) {
	 #faq .faq-list .faq-item .faq-question {
		 height: auto;
		 padding: 1.5rem 2rem;
	}
}
 @media screen and (max-width: 920px) {
	 #faq .faq-list .faq-item .faq-question {
		 font-size: 2.6rem;
	}
}
 @media screen and (max-width: 640px) {
	 #faq .faq-list .faq-item .faq-question {
		 font-size: 1.8rem;
	}
}
 #faq .faq-list .faq-item .faq-question span {
	 font-size: 3.2rem;
	 padding-right: 1rem;
}
 @media screen and (max-width: 920px) {
	 #faq .faq-list .faq-item .faq-question span {
		 font-size: 2.8rem;
	}
}
 @media screen and (max-width: 640px) {
	 #faq .faq-list .faq-item .faq-question span {
		 font-size: 2.6rem;
	}
}
 #faq .faq-list .faq-item .faq-answer {
	 padding: 3rem;
	 font-size: 1.6rem;
	 line-height: 2;
	 font-weight: 400;
}
 @media screen and (max-width: 640px) {
	 #faq .faq-list .faq-item .faq-answer {
		 padding: 2rem;
		 font-size: 1.4rem;
	}
}
 #faq .faq-list .faq-item .faq-answer span {
	 font-size: 2rem;
	 font-weight: 600;
}
 @media screen and (max-width: 640px) {
	 #faq .faq-list .faq-item .faq-answer span {
		 font-size: 1.8rem;
	}
}
 #faq .faq-list .faq-item .faq-answer a {
	 color: #0675A6;
	 text-decoration: underline;
}
 #faq .faq-list .faq-item + .faq-item {
	 margin-top: 3rem;
}
 #service .service-list {
	 margin: 3rem auto 0;
	 max-width: 867px;
	 position: relative;
	 z-index: 0;
}
 #service .service-list::before {
	 content: "";
	 display: block;
	 position: absolute;
	 left: 3rem;
	 top: 3rem;
	 bottom: 7%;
	 border-right: 1px dashed;
	 z-index: -1;
}
 #service .service-list .service-item {
	 display: flex;
}
 #service .service-list .service-item .num {
	 width: 6.2rem;
	 height: 6.2rem;
	 border-radius: 50%;
	 background-color: #e11616;
	 color: #fff;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 font-size: 2.8rem;
	 flex-shrink: 0;
}
 @media screen and (max-width: 640px) {
	 #service .service-list .service-item .num {
		 width: 5.4rem;
		 height: 5.4rem;
		 font-size: 2.4rem;
	}
}
 #service .service-list .service-item .service-text {
	 margin-left: 2rem;
}
 #service .service-list .service-item .service-text .service-title {
	 height: 6.2rem;
	 display: flex;
	 align-items: center;
	 font-size: 2.4rem;
	 font-weight: 800;
	 color: #0675A6;
	 width: 100%;
	 white-space: nowrap;
}
 @media screen and (max-width: 920px) {
	 #service .service-list .service-item .service-text .service-title {
		 font-size: 2rem;
	}
}
 @media screen and (max-width: 640px) {
	 #service .service-list .service-item .service-text .service-title {
		 font-size: 1.8rem;
		 height: auto;
	}
}
 #service .service-list .service-item .service-text .service-prgh {
	 font-size: 1.6rem;
	 font-weight: 400;
	 line-height: 2;
}
 @media screen and (max-width: 640px) {
	 #service .service-list .service-item .service-text .service-prgh {
		 font-size: 1.4rem;
		 padding-top: 1rem;
	}
}
 #service .service-list .service-item .service-text .service-prgh a {
	 color: #0675A6;
	 text-decoration: underline;
	 font-weight: 600;
}
 #service .service-list .service-item + .service-item {
	 margin-top: 4rem;
}
 @media screen and (max-width: 640px) {
	 #service .service-list .service-item + .service-item {
		 margin-top: 3rem;
	}
}
 #contact {
	background-image: linear-gradient(to right, #03045E 0%, #02306F 100%);
}
 #contact .contact-title {
	 color: #fff;
}
 #contact .contact-title .icon-blog {
	 display: block;
	 width: 6rem;
	 margin: 0 auto 1rem;
}
 #contact .contact-wrap {
	 max-width: 740px;
	 margin: 4rem auto 0;
	 background-color: #0675A6;
	 border-radius: 15px;
	 padding: 4rem;
}
 @media screen and (max-width: 920px) {
	 #contact .contact-wrap {
		 max-width: 720px;
		 padding: 3rem;
	}
}
 @media screen and (max-width: 640px) {
	 #contact .contact-wrap {
		 background-color: transparent;
		 padding: 0;
	}
}
 #contact .contact-tel {
	 color: #fff;
	 text-align: center;
	 margin-top: 5rem;
}
 @media screen and (max-width: 640px) {
	 #contact .contact-tel {
		 border-top: 1px dashed;
		 margin-top: 4rem;
		 padding-top: 4rem;
	}
}
 #contact .contact-tel p {
	 width: 100%;
}
 #contact .contact-tel .contact-num {
	 width: fit-content;
	 margin: 1rem auto;
	 font-size: 3.8rem;
	 border-bottom: 1px dashed;
	 display: flex;
	 align-items: center;
}
 #contact .contact-tel .contact-num img {
	 margin-right: 1rem;
	 width: 2.8rem;
}
 #contact .contact-tel .cta-btn {
	 background: #fff;
	 color: #e11616;
	 border: none;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 margin-bottom: 1rem;
	 margin-top: 0;
}
 #contact .contact-tel .cta-btn p {
	 width: auto;
	 margin-left: 1rem;
}
 #contact .open-time {
	 display: block;
	 color: #fff;
	 text-align: center;
	 font-size: 1.2rem;
	 font-weight: 400;
}
 #Form dl dt {
	 color: #fff;
	 font-size: 1.8rem;
	 font-weight: 800;
	 padding-bottom: 0.5rem;
	 display: flex;
	 align-items: center;
}
 @media screen and (max-width: 640px) {
	 #Form dl dt {
		 font-size: 1.4rem;
	}
}
 #Form dl dt strong {
	 background-color: #e11616;
	 font-size: 1.4rem;
	 padding: 0.2rem 1rem;
	 border-radius: 2rem;
	 margin-left: 1rem;
}
 @media screen and (max-width: 640px) {
	 #Form dl dt strong {
		 font-size: 1.2rem;
	}
}
 #Form dl dd input, #Form dl dd textarea {
	 width: 100%;
	 border-radius: 1rem;
	 font-size: 1.6rem;
	 font-weight: 400;
	 border: none;
	 outline: none;
	 transition: ease-in .2s;
}
 #Form dl dd input:hover, #Form dl dd textarea:hover {
	 background-color: #EAEDF2;
}
 #Form dl dd input {
	 height: 6rem;
	 padding: 0 2rem;
}
 #Form dl dd input::placeholder {
	 color: #D3D3D3;
	 font-weight: 400;
}
 @media screen and (max-width: 640px) {
	 #Form dl dd input {
		 height: 5rem;
	}
}
 #Form dl dd textarea {
	 min-height: 14rem;
	 padding: 2rem;
}
 #Form dl + dl {
	 margin-top: 3rem;
}
 @media screen and (max-width: 640px) {
	 #Form dl + dl {
		 margin-top: 2rem;
	}
}
 #Form input[type="submit"] {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #e11616;
	height: 9rem;
	max-width: 46rem;
	width: 100%;
	border-radius: 100rem;
	border: none;
	font-size: 2.4rem;
	font-weight: 800;
	color: #fff;
	margin: 3rem auto;
	display: block;
	box-shadow: 0 3px 15px rgba(0,26,83,0.3);
	cursor: pointer;
	transition: ease .2s;
	box-sizing: border-box;
}
#Form input[type="submit"]:hover{
	color: #e11616;
    background-color: #fff;
    border: 2px solid;
}

 @media screen and (max-width: 640px) {
	 #Form input[type="submit"] {
		 font-size: 1.8rem;
		 height: 7.4rem;
		 margin-top: 2rem;
		 max-width: 340px;
	}
}
 #about table {
	 max-width: 760px;
	 margin: 4rem auto 0;
	 width: 100%;
}
 @media screen and (max-width: 640px) {
	 #about table {
		 margin-top: 1rem;
	}
}
 @media screen and (max-width: 640px) {
	 #about table tr {
		 display: flex;
		 flex-direction: column;
		 padding: 1.6rem 0;
	}
}
 #about table tr td {
	 padding: 2rem 0;
}
 @media screen and (max-width: 640px) {
	 #about table tr td {
		 padding: 0;
		 width: 100%;
	}
}
 #about table tr td:nth-child(odd) {
	 font-size: 1.8rem;
	 font-weight: 800;
}
 @media screen and (max-width: 640px) {
	 #about table tr td:nth-child(odd) {
		 font-size: 1.4rem;
	}
}
 #about table tr td:nth-child(even) {
	 font-size: 1.6rem;
	 font-weight: 400;
}
 @media screen and (max-width: 640px) {
	 #about table tr td:nth-child(even) {
		 font-size: 1.4rem;
	}
}
 #about table tr + tr {
	 border-top: 1px dashed;
}
 footer {
	 height: 6rem;
	 display: flex;
	 align-items: center;
	 justify-content: center;
	 background-color: #0675A6;
}
 @media screen and (max-width: 640px) {
	 footer {
		 margin-bottom: 7rem;
	}
}
 footer > p {
	 color: #fff;
	 font-size: 1.2rem;
	 font-weight: 400;
}
 .fixed-cta-bar {
	 position: fixed;
	 left: 0;
	 bottom: 0;
	 width: 100%;
	 background: rgba(255,255,255,0.7);
	 padding: 0.5rem;
	 transition: ease .2s;
}
 .fixed-cta-bar.hide {
	 transform: translateY(13rem);
}
 .fixed-cta-bar .fixed-cta-inner {
	 position: relative;
}
 .fixed-cta-bar .fixed-cta-inner ul {
	 display: flex;
	 justify-content: space-between;
}
 .fixed-cta-bar .fixed-cta-inner ul li {
	 height: 6rem;
	 border-radius: 1rem;
	 width: calc((100% - 0.5rem)/ 2);
}
 .fixed-cta-bar .fixed-cta-inner ul li a {
	 width: 100%;
	 height: 100%;
	 display: flex;
	 justify-content: center;
	 align-items: center;
	 font-weight: bold;
}
 .fixed-cta-bar .fixed-cta-inner ul li a img {
	 margin-right: 1rem;
}
 .fixed-cta-bar .fixed-cta-inner ul li:nth-child(1) {
	 color: #e11616;
	 border: 3px solid;
	 background-color: #fff;
}
 .fixed-cta-bar .fixed-cta-inner ul li:nth-child(2) {
	 color: #fff;
	 background-color: #e11616;
}
 .fixed-cta-bar .fixed-cta-inner .top-arrow {
	 position: absolute;
	 top: -6.4rem;
	 right: 0rem;
	 width: 5.4rem;
}
 .header-thanks {
	 position: fixed;
	 top: 0;
	 left: 0;
	 width: 100%;
}
 .header-thanks .content-width {
	 position: relative;
}
 .header-thanks .content-width .logo {
	 width: 19rem;
	 display: block;
	 color: #0675A6;
}
 @media screen and (max-width: 640px) {
	 .header-thanks .content-width .logo {
		 width: 16rem;
	}
}
 #thanks {
	 height: 100vh;
	 display: flex;
	 align-items: center;
}
 #thanks .thanks-message {
	 background-color: #fff;
	 max-width: 740px;
	 border-radius: 3rem;
	 margin: 0 auto;
	 padding: 6rem;
	 text-align: center;
	 width: 100%;
}
 @media screen and (max-width: 640px) {
	 #thanks .thanks-message {
		 padding: 4rem 2rem;
	}
}
 #thanks .thanks-message h2 {
	 font-size: 3.2rem;
	 font-weight: bold;
}
 @media screen and (max-width: 640px) {
	 #thanks .thanks-message h2 {
		 font-size: 2.2rem;
	}
}
 #thanks .thanks-message p {
	 padding-top: 2rem;
	 line-height: 1.6;
	 font-size: 1.6rem;
}
 @media screen and (max-width: 640px) {
	 #thanks .thanks-message p {
		 font-size: 1.4rem;
	}
}
 #thanks .thanks-message .cta-btn {
	 background: #e11616;
	 color: #fff;
	 margin: 2rem auto 0;
	 height: 8rem;
	 max-width: 420px;
}
 @media screen and (max-width: 640px) {
	 #thanks .thanks-message .cta-btn {
		 height: 6rem;
	}
}
 #thanks .thanks-message .cta-btn p {
	 padding-top: 0;
}

/* table03 */
#table03, #table03 th, #table03 td {
  }
  
  #table03 tr{
	border-bottom: 1px solid #FFF;
  }
  #table03 tr:last-child{
	border-bottom: none;
  }
	#table03 th{
	text-align: center;
	width: 20%;
	color: #FFF;
	min-width: 130px;
	border-right: 1px solid #FFF;
	padding: 1.25em 4.10959%;
	font-size: 1.25em;
	line-height: 1.4;
	background-color: #00B4D8;
  }
  #table03 td{
	text-align: center;
	border-right: 1px solid #FFF;
	font-size: 1.25em;
	line-height: 1.4;
  }
  #table03 th:last-child{
	background: #0675A6;
	color: #FFF;
	font-size: 1.6em;
  }
  #table03 td:last-child{
	background: #0675A6;
	color: #FFF;
	font-size: 1.6em;
	border-right: none;
  }
  #achievement .achievement-box .achievement-table table tr:nth-child(odd){
	background-color: #EAEDF2;
  }
  #table03 .head {
	background-color: #00B4D8;
  }
  .spbr{
	display: none!important;
  }
  
  /* tab */
  @media only screen and (max-width: 768px) {
	#table03 {
	  display: block;
	  overflow-x: scroll;
	}
	#table03 .fixed {
	  position: sticky;
	  left: 0;
	}
	#table03 th{
	  font-size: inherit;
	  padding: 1em;
	}
	#table03 th:last-child,
	#table03 td:last-child{
	  font-size: 1.4em;
	}
	.spbr{
	  display: block!important;
	}
	
  }
  