@charset "utf-8";

/* CSS Document */
html {
  font-size: 62.5%;
  /*ベース10px*/
}

body {
  font-family: 'メイリオ', Meiryo, 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'ＭＳ Ｐゴシック', sans-serif;
  color: #333;
  -webkit-text-size-adjust: 100%;
  line-height: 1.8;
}

/* ＝＝＝＝＝＝＝共通スタイル＝＝＝＝＝＝＝＝ */
img {
  -webkit-backface-visibility: hidden;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

/*PC改行なし・スマホ改行あり指定*/
.break {
  display: none;
}

@media screen and (max-width: 640px) {
  .break {
    display: block;
  }
}

/*PC改行あり・スマホ改行なし指定*/
.break_br {
  display: block;
}
@media screen and (min-width:641px) and (max-width:960px) {
  .break_br {
    display: none;
  }
}

@media screen and (max-width: 640px) {
  .break_br {
    display: none;
  }
}

/*alpha*/
.alpha:hover {
  filter: alpha(opacity=70);
  opacity: 0.7;
}

/*clearfix*/
.cf:before,
.cf:after {
  content: " ";
  display: table;
}

.cf:after {
  clear: both;
}

.cf {
  *zoom: 1;
}

a img:hover {
  opacity: 0.8;
}

.clear {
  clear: both;
}

.fl-right {
  float: right;
}

.fl-left {
  float: left;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.bold {
  font-weight: bold;
}

.red {
  color: #ef223f;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-25 {
  margin-bottom: 25px;
}

.mb-30 {
  margin-bottom: 30px;
}

.mb-35 {
  margin-bottom: 35px;
}

.mb-40 {
  margin-bottom: 40px;
}

.mb-50 {
  margin-bottom: 40px;
}

.indent {
  padding-left: 1em;
  text-indent: -1em;
  margin-bottom: 2px;
  font-size: 1.2rem;
}

.indent:last-of-type {
  margin-bottom: 0;
}

/*disc*/
ul.disc {
  list-style: disc;
  margin-left: 20px;
}

ul.disc li.d_list {
  list-style: disc;
  margin-bottom: 5px;
  counter-increment: none;
  position: sticky;
}

ul.disc li.d_list:before {
  content: none;
}

ul.disc li.d_list:last-of-type {
  margin-bottom: 0;
}

/* ＝＝＝＝＝＝＝ヘッダー部分スタイル＝＝＝＝＝＝＝＝ */
header {
  background-image: url(../img/bg_header.png);
  background-repeat: no-repeat;
  background-size: cover;
}

header.bg_head {
  /*padding-bottom: calc(10vw + 10px);*/
  position: relative;
  overflow: hidden;
}

header.bg_head:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5vw solid #fff;
  border-left: 100vw solid transparent;
  z-index: 1;
  box-sizing: border-box;
}

header .catch {
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px 0 0;
  box-sizing: border-box;
}

header .catch img.pc {
  display: block;
  max-width: 100%;
}

header .catch img.sp {
  display: none;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:960px) {
  header {}

  header .catch {
    padding: 30px 20px;
  }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  header .catch {
    margin: 0 auto;
    padding: 20px 0 0;
  }

  header .catch img.pc {
    display: none;
  }

  header .catch img.sp {
    display: block;
    max-width: 100%;
  }
}

/* ＝＝＝＝＝＝＝request部分スタイル＝＝＝＝＝＝＝＝ */
.request a.btn {
  display: block;
  position: relative;
  width: 80%;
  /*ボタンの幅*/
  padding: 20px;
  margin: 50px auto;
  background-color: #a20817;
  /*ボタンの色*/
  box-shadow: 0 3px 0 0 rgba(102, 8, 18, 1);
  /*影の色(rgbaの値を変更)*/
  border-radius: 10px;
  font-weight: bold;
  font-size: 4rem;
  color: #fff;
  text-align: center;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}

.request a.btn:hover {
  text-decoration: none;
  color: #fff;
}

.request a.btn:before {
  position: absolute;
  content: '';
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  animation: shiny-btn1 3s ease-in-out infinite;
}

@-webkit-keyframes shiny-btn1 {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }

  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }

  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }

  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

.request a.btn i {
  margin-left: 15px;
}

@media screen and (min-width:641px) and (max-width:960px) {
  .request a.btn {
    width: 66%;
    /*ボタンの幅*/
    font-size: 2.6rem;
  }
}

@media screen and (max-width: 640px) {
  .request a.btn {
    width: 86%;
    padding: 20px 15px;
    margin: 20px auto;
    font-size: 1.8rem;
  }

  .request a.btn i {
    margin-left: 5px;
  }
}

/* ＝＝＝＝＝＝＝コンテンツ内容汎用＝＝＝＝＝＝＝＝ */
.contentarea {}

/*背景色*/
.bg1 {
  position: relative;
  overflow: hidden;
  background-color: #fff;
}

.bg1:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5vw solid #f8f8f8;
  border-right: 100vw solid transparent;
}

.bg2 {
  position: relative;
  overflow: hidden;
  background-color: #f8f8f8;
}

.bg2:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  border-bottom: 5vw solid #fff;
  border-left: 100vw solid transparent;
}

/*背景の最後*/
.bg_end:before {
  border-bottom: none !important;
  border-left: none !important;
}
/*背景の最後_end*/

.contentarea_inner {
  width: 100%;
  max-width: 1000px;
  height: 100%;
  padding: 60px 20px 152px;
  margin: 0px auto 0px;
  box-sizing: border-box;
  font-size: 1.6rem;
}

.inner_pb {
  padding: 60px 20px 86px;
}

.content_tit {
  margin-bottom: 80px;
}

.content_tit h2 {
  font-size: 3.6rem;
  line-height: 1.35em;
  color: #9e0707;
  font-weight: bold;
  text-align: center;
  position: relative;
}

.content_tit h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 160px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: #9e0707;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:960px) {
  .contentarea_inner {
    padding: 60px 20px 110px;
  }

  .inner_pb {
    padding: 60px 20px 60px;
  }

  .content_tit h2 {
    font-size: 3rem;
    line-height: 1.25em;
  }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  .contentarea_inner {
    padding: 30px 10px 46px;
    font-size: 1.4rem;
  }

  .inner_pb {
    padding: 30px 10px;
  }

  .content_tit {
    margin-bottom: 50px;
  }

  .content_tit h2 {
    font-size: 2.4rem;
    line-height: 1.25em;
  }

  .content_tit h2:before {
    width: 100px;
  }
}

/*スマホ320px用*/
@media screen and (max-width: 320px) {
  .content_tit h2 {
    font-size: 1.9rem;
  }
}

/* ＝＝＝＝＝＝＝アフィリエイト広告について＝＝＝＝＝＝＝＝ */
.merit {
  display: flex;
  margin-bottom: 20px;
  box-sizing: border-box;
}

.merit .merit_item {
  width: 32%;
  margin-right: 2%;
  padding: 15px;
  border: 2px solid #4476a2;
  border-radius: 15px;
  box-sizing: border-box;
}

.merit .merit_item:last-of-type {
  margin-right: 0;
}

.merit_item h3 {
  font-size: 2rem;
  font-weight: bold;
  border-bottom: 1px dotted #ccc;
  margin-bottom: 5px;
  padding-bottom: 5px;
  color: #4476a2;
}

.merit_item h3 i {
  margin-right: 3px;
}

.merit_item span.ant {
  font-size: 1rem;
}

.merit_item span.blue_txt {
  font-weight: bold;
  color:#4476a2;
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  .merit {
    display: block;
    margin-bottom: 10px;
  }

  .merit .merit_item {
    width: 100%;
    margin-right: 0;
    padding: 15px;
    margin-bottom: 15px;
  }

  .merit .merit_item:last-of-type {
    margin-bottom: 0;
  }

  .merit_item h3 {
    font-size: 1.8rem;
  }
}

/* ＝＝＝＝＝＝＝タウンライフアフィリエイトとは＝＝＝＝＝＝＝＝ */
.strength {
  background-color: #fff;
  padding: 20px;
  border-radius: 20px;
  box-sizing: border-box;
}

.strength .strength_item {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dotted #ccc;
  box-sizing: border-box;
}

.strength .strength_item:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}

.strength_item .txt {
  width: 59.9%;
  margin-right: 2%;
}

.strength_item .txt h3 {
  font-size: 2.4rem;
  line-height: 1.2;
  font-weight: bold;
  color: #0c3254;
  margin-bottom: 10px;
  padding-left: 10px;
  border-left: 5px solid #0c3254;
}

.strength_item .txt h3 i {
  margin-right: 6px;
}

.strength_item .txt p span {
  font-size: 1.2rem;
}

.strength_item .img {
  width: 350px;
}

.strength_item .img img {
  border-radius: 15px;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:1024px) {
  .strength_item .txt {
    width: 100%;
    margin-right: 0;
  }

  .strength_item .img {
    width: 350px;
    text-align: center;
    margin: 0 auto 20px;
  }

  .strength_item .order01 {
    order: 1;
  }

  .strength_item .order02 {
    order: 2;
  }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  .strength .strength_item {
    flex-direction: column;
    padding-bottom: 0;
    margin-bottom: 50px;
    border-bottom: none;
  }

  .strength_item .txt {
    width: 100%;
    margin-right: 0;
  }

  .strength_item .txt h3 {
    font-size: 1.8rem;
    font-weight: bold;
  }

  .strength_item .img {
    width: 100%;
    max-width: 350px;
    text-align: center;
    margin: 0 auto 20px;
  }

  .strength_item .order01 {
    order: 1;
  }

  .strength_item .order02 {
    order: 2;
  }
}

/* ＝＝＝＝＝＝＝ご掲載までの流れ＝＝＝＝＝＝＝＝ */
.pbd_img {
  margin-bottom: 50px;
}

.pbd_img .img_dh {
  width: 100%;
  max-width: 960px;
  text-align: center;
  margin: 0 auto;
}

.request_sin {
  font-size: 3rem;
  font-weight: bold;
  text-align: center;
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  .request_sin {
    font-size: 1.8rem;
    line-height: 1.5;
  }
}

/* ＝＝＝＝＝＝＝会社概要＝＝＝＝＝＝＝＝ */
.company_table {
  width: 100%;
  margin-bottom: 50px;
  background-color: #fff;
}

.company_table table,
.company_table td,
.company_table th {
  border-top: 1px solid #e2e0de;
  border-bottom: 1px solid #e2e0de;
  border-collapse: collapse;
  box-sizing: border-box;
  width: 100%;
}

.company_table th {
  width: 38%;
  text-align: left;
  color: #fff;
  background-color: #74addf;
  padding: 20px 15px;
  vertical-align: middle;
  box-sizing: border-box;
  line-height: 1.5em;
  word-break: break-all;
}

.company_table td {
  width: 62%;
  text-align: left;
  padding: 20px 15px;
  vertical-align: middle;
  box-sizing: border-box;
  word-break: break-all;
}

.company_philosophy {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 20px;
  background-color: #fff;
  box-sizing: border-box;
}

.company_philosophy .tit {
  font-size: 2rem;
  font-weight: bold;
}

.company_philosophy {}

.company_philosophy .img_dh {
  width: 100%;
  max-width: 364px;
  text-align: center;
  margin: 20px auto;
}

/*タブレット用*/
@media screen and (min-width:641px) and (max-width:1024px) {
  .company_table th {
    width: 100%;
    display: block;
    border-top: none;
    border-bottom: 1px solid #e2e0de;
  }

  .company_table td {
    width: 100%;
    display: block;
    border: none;
  }
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  .company_table {
    margin-bottom: 25px;
    font-size: 1.25rem;
  }

  .company_table th {
    width: 100%;
    display: block;
    padding: 8px 10px;
    border-top: none;
    border-bottom: 1px solid #e2e0de;
  }

  .company_table td {
    width: 100%;
    display: block;
    padding: 8px 10px;
    border: none;
  }

  .company_philosophy .tit {
    font-size: 1.6rem;
  }

  .company_philosophy .img_dh {
    max-width: 200px;
  }
}

/* ＝＝＝＝＝＝＝foote部分スタイル＝＝＝＝＝＝＝＝ */
footer {
  background-color: #4476a2;
  color: #fff;
}

footer .fotter_inner {
  padding: 40px 0;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: border-box;
}

footer .copyright {
  text-align: center;
}

/*PAGE TOP*/
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 20px;
  bottom: 50px;
  background: #74addf;
  border-radius: 50%;
}

#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#page_top a:before {
  font-family: "Font Awesome 5 Free";
  content: "\f102";
  /*アイコン*/
  font-weight: bold;
  font-size: 3rem;
  color: #fff;
  /*アイコンの色*/
  position: absolute;
  width: 25px;
  line-height:50px;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

/*スマホ用*/
@media screen and (max-width: 640px) {
  footer .fotter_inner {
    padding: 20px 0;
    width: 100%;
    margin: 0 auto;
  }

  footer .copyright {
    font-size: 8px;
    text-align: center;
  }
}
.foot_navi {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto 20px;
    text-align: center
}

.foot_navi li {
    list-style: none;
    padding: 0 20px 0 0;
    margin-bottom: 10px;
}

.foot_navi a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2rem
}

/*スマホ用*/
@media screen and (max-width: 500px) {
    .foot_navi {
        display: block;
    }
}