@charset "UTF-8";
/*
Theme Name :pitlog
Theme URL :
Description :	pitlogのコンタクトフォーム用です
Author:	株式会社Protea
Version : 1
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;200;300;400;500;700;900&family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Teko:wght@300..700&display=swap");
html {
  margin: 0 !important;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8rem;
}

a {
  color: #000000;
}

a:hover {
  opacity: 0.5;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.section {
  padding: 0;
}

/* -------------------------------------共通-------------------------------------*/
.section.section_page {
  margin-top: 150px;
  margin-bottom: 220px;
}
@media (max-width: 768px) {
  .section.section_page {
    margin-top: 100px;
    margin-bottom: 60px;
  }
}

.content {
  max-width: 1000px;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .content {
    display: flex;
  }
}
@media (max-width: 1000px) {
  .content {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .content {
    width: 100%;
  }
}

.ttl {
  display: flex;
  margin-bottom: 30px;
  align-items: center;
}
.ttl h2 {
  margin-right: 15px;
  margin-bottom: 0;
  font-size: 45px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .ttl h2 {
    font-size: 30px;
  }
}
.ttl h2.new {
  font-size: 70px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .ttl h2.new {
    font-size: 60px;
  }
}
.ttl p:not(:last-child) {
  margin-bottom: 15px;
}

/* -------------------------------------共通-------------------------------------*/
/* -------------------------------------font-------------------------------------*/
.helvetica {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}

.notosans {
  font-family: "Noto Sans JP", sans-serif;
}

.notoserif {
  font-family: "Noto Serif JP", serif;
}

.red {
  color: #952329 !important;
}

/* -------------------------------------font-------------------------------------*/
/* -------------------------------------header-------------------------------------*/
header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #F5F5F5;
  margin-top: 0;
  z-index: 999;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.17);
  /* メニューオープン時 */
}
header .header {
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  header .header {
    margin: 0 0 0 auto;
    width: 100%;
  }
}
header .header .header_logo {
  align-items: center;
}
@media (max-width: 768px) {
  header .header .header_logo {
    width: 60%;
  }
}
header .header .tagel_column_logo {
  width: 247px;
  display: inline-block;
  margin-right: 20px;
}
@media (max-width: 768px) {
  header .header .tagel_column_logo {
    width: 130px;
    margin-right: 10px;
  }
}
header .header .ABDi_logo {
  width: 120px;
  display: inline-block;
  transform: translateY(3px);
}
@media (max-width: 768px) {
  header .header .ABDi_logo {
    width: 70px;
  }
}
header .header .btn-header {
  display: inline-block;
  position: relative;
  padding: 10px 50px;
  margin-right: 24px;
  color: #952329;
  text-align: center;
  background-color: #fff;
  border: 2px solid #952329;
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}
@media (max-width: 1020px) {
  header .header .btn-header:not(:first-child) {
    margin-top: 2px;
  }
}
@media (max-width: 768px) {
  header .header .btn-header {
    font-size: 13px;
    padding: 5px 15px;
    margin-top: 2px;
  }
}
header .header .btn-header:before {
  position: absolute;
  top: 18px;
  right: -20px;
  content: "";
  display: inline-block;
  width: 40px;
  height: 8px;
  border-bottom: 2px solid #952329;
  border-right: 2px solid #952329;
  transform: skew(45deg);
}
@media (max-width: 768px) {
  header .header .btn-header:before {
    top: 18px;
    right: -12px;
    width: 23px;
    height: 6px;
  }
}
header .header.content {
  padding: 10px 20px !important;
  background-color: #F5F5F5;
}
@media (max-width: 768px) {
  header .header.content {
    padding: 0;
  }
}
header .hamburgerheader {
  position: relative;
  padding: 20px;
}
header .hamburger {
  position: fixed;
  top: 5px;
  right: 10px;
  z-index: 100;
  width: 48px;
  height: 48px;
  border: none;
  background: transparent;
  cursor: pointer;
}
header .hamburger__line {
  position: absolute;
  left: 11px;
  width: 26px;
  height: 2px;
  background-color: #333;
  transition: all 0.4s;
}
header .hamburger__line:nth-of-type(1) {
  top: 14px;
}
header .hamburger__line:nth-of-type(2) {
  top: 23px;
}
header .hamburger__line:nth-of-type(3) {
  top: 32px;
}
header .hamburger.active .hamburger__line:nth-of-type(1) {
  transform: translateY(9px) rotate(-45deg);
}
header .hamburger.active .hamburger__line:nth-of-type(2) {
  opacity: 0;
}
header .hamburger.active .hamburger__line:nth-of-type(3) {
  transform: translateY(-9px) rotate(45deg);
}
header .nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 130px;
  background-color: #F5F5F5;
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.17);
  transform: translateY(-100%);
  transition: transform 0.4s;
  z-index: -1;
}
header .nav.active {
  transform: translateY(0);
}
header .nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 70px 0 0;
  list-style: none;
}
header .nav__item {
  padding: 0 20px;
}
header .nav__link {
  display: block;
  padding: 15px 0;
  color: #333;
  text-decoration: none;
  border-bottom: 1px solid #eee;
}

/* -------------------------------------header-------------------------------------*/
/* -------------------------------------footer-------------------------------------*/
#footer {
  color: #fff;
  font-size: 14px;
  position: relative;
  background: #565656;
}
#footer li,
#footer br {
  line-height: 1.5;
}
#footer a {
  color: #fff;
}
#footer .footer_logo {
  width: 50%;
}
#footer .pull-left {
  float: left;
}
#footer .footer-top {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 80px 0;
}
#footer .footer-top h3 {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-bottom: 0;
  margin-bottom: 0;
}
#footer .footer-top p {
  font-size: 15;
  margin: 30px 0 0 0;
  padding: 0;
  line-height: 1.5;
}
#footer .footer-top .footer-newsletter {
  text-align: center;
  font-size: 15px;
  margin-top: 30px;
}
#footer .footer-top .footer-newsletter form {
  background: #fff;
  padding: 6px 10px;
  position: relative;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
  text-align: left;
}
#footer .footer-top .footer-newsletter form input[type=email] {
  border: 0;
  padding: 4px 8px;
  width: calc(100% - 100px);
}
#footer .footer-top .footer-newsletter form input[type=submit] {
  position: absolute;
  top: 0;
  right: -1px;
  bottom: 0;
  border: 0;
  background: none;
  font-size: 16px;
  padding: 0 20px;
  background: #fdc134;
  color: #fff;
  transition: 0.3s;
  border-radius: 50px;
  box-shadow: 0px 2px 15px rgba(0, 0, 0, 0.1);
}
#footer .footer-top .footer-newsletter form input[type=submit]:hover {
  background: #fcb102;
}
#footer .footer-top .social-links {
  margin-top: 30px;
}
#footer .footer-top .social-links a {
  font-size: 18px;
  display: inline-block;
  background: #284864;
  color: #fff;
  line-height: 1;
  padding: 8px 0;
  margin-right: 4px;
  border-radius: 50%;
  text-align: center;
  width: 36px;
  height: 36px;
  transition: 0.3s;
}
#footer .footer-top .social-links a:hover {
  background: #fcb102;
  color: #fff;
  text-decoration: none;
}
#footer .footer-bottom {
  /*border-top: 1px solid #1a2e40;*/
  z-index: 2;
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
#footer .copyright {
  text-align: center;
  float: left;
}
#footer .credits {
  float: right;
  text-align: center;
  font-size: 13px;
}
@media (max-width: 768px) {
  #footer .copyright,
#footer .credits {
    padding: 5px;
    float: none;
    text-align: ceneter;
  }
}
#footer .row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
#footer .justify-content-center {
  justify-content: center !important;
}
#footer .footer_col {
  padding-top: 50px;
}
#footer .footer_title {
  font-size: 15px;
  text-align: left;
  font-weight: bold;
}
@media (min-width: 768px) {
  #footer .footer_title {
    margin-bottom: 15px;
  }
}
@media (max-width: 768px) {
  #footer .footer_title {
    margin-top: 20px;
  }
}
#footer .footer_title strong {
  font-weight: bolder;
  color: #fff;
}
#footer .text-left {
  text-align: left !important;
}
@media (min-width: 768px) {
  #footer .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}
@media (min-width: 768px) {
  #footer .col-md-2 {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }
}
@media (min-width: 768px) {
  #footer .col-md-4 {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}
#footer .col-md-1,
#footer .col-md-10,
#footer .col-md-11,
#footer .col-md-12,
#footer .col-md-2,
#footer .col-md-3,
#footer .col-md-4,
#footer .col-md-5,
#footer .col-md-6,
#footer .col-md-7,
#footer .col-md-8,
#footer .col-md-9,
#footer .col-md-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 576px) {
  #footer .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  #footer .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  #footer .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  #footer .container {
    max-width: 1140px;
  }
}
#footer .container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

#footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  /*background: rgba(26, 46, 64, 0.85);*/
  z-index: 1;
}

/* -------------------------------------footer-------------------------------------*/
/* -------------------------------------column-------------------------------------*/
.section.section_page.column {
  border-bottom: 2px solid #057FAE;
  margin-bottom: 60px;
}
@media (max-width: 768px) {
  .section.section_page.column {
    margin-bottom: 25px;
  }
}
.section.section_page.column .content.content_top_column {
  margin-top: 200px;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .section.section_page.column .content.content_top_column {
    margin-top: 120px;
    margin-bottom: 50px;
  }
}
.section.section_page.column .content.content_top_column .ttl {
  margin-bottom: 85px;
  align-items: center;
}
@media (max-width: 768px) {
  .section.section_page.column .content.content_top_column .ttl {
    margin-bottom: 50px;
  }
}
.section.section_page.column .content.content_top_column .ttl p:first-child {
  margin-right: 10px;
  margin-bottom: 5px;
}
.section.section_page.column .content.content_top_column .ttl p:not(:last-child) {
  margin-bottom: 15px;
}
.section.section_page.column .content.content_top_column .ttl_tag {
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.section.section_page.column .content.content_top_column .ttl_tag p:first-child {
  margin-right: 10px;
  margin-bottom: 0;
}
.section.section_page.column .content.content_top_column .article {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section.section_page.column .content.content_top_column .article .article_wrapper {
  width: 47%;
  margin-bottom: 30px;
}
@media (max-width: 768px) {
  .section.section_page.column .content.content_top_column .article .article_wrapper {
    width: 100%;
  }
}
.section.section_page.column .content.content_top_column .article .article_wrapper .category_flex {
  justify-content: space-between;
}
.section.section_page.column .content.content_top_column .article .article_wrapper .article_ttl {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .section.section_page.column .content.content_top_column .article .article_wrapper .article_ttl {
    margin-bottom: 10px;
  }
}
.section.section_page.column .content_top_column {
  justify-content: space-between;
}
.section.section_page.column .content_top_column .content_top_column_left {
  width: 80%;
}
@media (max-width: 768px) {
  .section.section_page.column .content_top_column .content_top_column_left {
    width: 100%;
  }
}
.section.section_page.column .content_top_column .content_top_column_right {
  width: 18%;
}
@media (max-width: 768px) {
  .section.section_page.column .content_top_column .content_top_column_right {
    width: 100%;
  }
}
.section.section_page.column .content_top_column .content_top_column_right .tag_group {
  flex-wrap: wrap;
}

/* -------------------------------------column-------------------------------------*/
/* -------------------------------------picup-------------------------------------*/
.content_top_picup {
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .content_top_picup {
    margin-bottom: 50px;
  }
}
.content_top_picup .ttl {
  margin-bottom: 60px;
  align-items: center;
}
.content_top_picup .ttl p:first-child {
  margin-right: 10px;
  margin-bottom: 0;
}
.content_top_picup .category_flex {
  justify-content: space-between;
}
.content_top_picup p.article_ttl {
  margin-bottom: 25px;
}
@media (max-width: 768px) {
  .content_top_picup p.article_ttl {
    margin-bottom: 10px;
  }
}
.content_top_picup .picup_no1-5 {
  justify-content: space-around;
}
.content_top_picup .picup_no1-5 .picup_no1 {
  width: 47%;
  position: relative;
}
@media (max-width: 768px) {
  .content_top_picup .picup_no1-5 .picup_no1 {
    width: 95%;
    margin: 60px auto;
  }
}
.content_top_picup .picup_no1-5 .picup_no1 .icon_1 {
  width: 16%;
  position: absolute;
  top: -9%;
  left: -7%;
}
.content_top_picup .picup_no1-5 .picup_no2-5 {
  width: 47%;
}
@media (max-width: 768px) {
  .content_top_picup .picup_no1-5 .picup_no2-5 {
    width: 100%;
  }
}
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 {
  justify-content: space-around;
  margin-bottom: 20px;
}
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_img {
  position: relative;
  width: 35%;
}
@media (max-width: 500px) {
  .content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_img,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_img {
    width: 45%;
  }
}
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_img .icon_2-3,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_img .icon_2-3,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_img .icon_2-3,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_img .icon_2-3 {
  position: absolute;
  top: -28%;
  left: -15%;
  width: 30%;
}
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_img .icon_4-5,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_img .icon_4-5,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_img .icon_4-5,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_img .icon_4-5 {
  position: absolute;
  top: -18%;
  left: -11%;
  width: 22%;
}
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_ttl {
  width: 55%;
}
@media (max-width: 500px) {
  .content_top_picup .picup_no1-5 .picup_no2-5 .picup_no2 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no3 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no4 .picup_no2-5_ttl,
.content_top_picup .picup_no1-5 .picup_no2-5 .picup_no5 .picup_no2-5_ttl {
    width: 45%;
  }
}

/* -------------------------------------picup-------------------------------------*/
/* -------------------------------------article-------------------------------------*/
.article .content_article_top {
  margin-bottom: 100px;
}
.article .content_article_top img {
  width: 100%;
}
.article .content_article_top h2 {
  font-size: 20px;
  padding: 20px 15px;
  background: #952329;
  margin-bottom: 40px;
  color: #FFFFFF;
  font-weight: 500;
}
@media (max-width: 768px) {
  .article .content_article_top h2 {
    font-size: 18px;
  }
}
.article .content_article_top h3 {
  font-size: 18px;
  border-bottom: 2px solid #952329;
  padding: 10px 0;
  margin-top: 60px;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .article .content_article_top h3 {
    font-size: 16px;
  }
}
.article .content_article_top h4 {
  font-size: 15px;
  border-left: 6px solid #952329;
  padding: 10px 15px;
  margin-bottom: 30px;
  margin-top: 50px;
}
.article .content_article_top blockquote {
  position: relative;
  background-color: #FCFAF6;
  padding: 35px 75px;
  border: 1px solid #A7A7A7;
  margin-block: 65px;
}
@media (max-width: 768px) {
  .article .content_article_top blockquote {
    padding: 30px 10px 30px 40px;
  }
}
.article .content_article_top blockquote p::before {
  position: absolute;
  content: "‘‘";
  font-size: 67px;
  font-family: "GFS Didot", serif;
  top: 50px;
  left: 15px;
  display: block;
}
@media (max-width: 768px) {
  .article .content_article_top blockquote p::before {
    top: 42px;
    left: 5px;
    font-size: 48px;
  }
}
.article .content_article_top .square::before {
  content: url(./img/square.png);
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
}
.article .content_article_top table tbody td {
  border-width: 1px;
}
.article .content_article_top table tbody tr:last-child td {
  border-bottom-width: 1px;
}
.article .content_article_top .kanren_article {
  margin-top: 80px;
}
.article .content_article_top .kanren_article .kanren_article_wrapper {
  align-items: center;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  margin-bottom: 50px;
}
.article .content_article_top .kanren_article .kanren_article_wrapper a:first-child {
  width: 20%;
}
@media (max-width: 768px) {
  .article .content_article_top .kanren_article .kanren_article_wrapper a:first-child {
    width: 100%;
  }
}
.article .content_article_top .kanren_article .kanren_article_wrapper a:nth-child(2) {
  width: 80%;
  padding: 10px 30px;
  display: inline-block;
}
@media (max-width: 768px) {
  .article .content_article_top .kanren_article .kanren_article_wrapper a:nth-child(2) {
    width: 100%;
  }
}
.article .content_article_top .kanren_article .kanren_article_wrapper a:nth-child(2) .ttl {
  margin-bottom: 3px;
}
.article .content_article_top .kanren_article .kanren_article_wrapper a,
.article .content_article_top .kanren_article .kanren_article_wrapper a:visited {
  color: #4a4a4a;
}
.article .content_article_bottom {
  margin-bottom: 100px;
  border: 1px solid #E1E1E1;
  border-left: 3px solid #952329;
  padding: 15px;
}
.article .content_article_bottom .square::before {
  content: url(./img/square.png);
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: bottom;
}
.article .content_article_bottom .advisor_article_wrapper {
  align-items: center;
}
.article .content_article_bottom .advisor_article_wrapper img {
  width: 20%;
  max-width: 200px;
}
@media (max-width: 768px) {
  .article .content_article_bottom .advisor_article_wrapper img {
    min-width: 140px;
  }
}
.article .content_article_bottom .advisor_article_wrapper .advisor_article {
  width: 80%;
  padding: 20px 30px;
}
@media (max-width: 768px) {
  .article .content_article_bottom .advisor_article_wrapper .advisor_article {
    width: 100%;
    padding: 0 0 0 20px;
    font-size: 15px;
  }
}
.article .cta {
  border: 3px solid #952329;
  border-radius: 17px;
  margin-bottom: 100px;
}
.article .cta .cta_wrapper {
  padding: 35px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper {
    text-align: center;
    padding: 25px;
  }
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .cta_ttl_br {
    display: none;
  }
}
.article .cta .cta_wrapper p:first-child {
  text-align: center;
  color: #952329;
  font-size: 20px;
  margin-bottom: 10px;
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper p:first-child {
    font-size: 18px;
  }
}
.article .cta .cta_wrapper .is-flex-tablet {
  justify-content: center;
}
.article .cta .cta_wrapper .article_cta {
  border-radius: 7px;
  padding: 15px;
  color: #FFFFFF;
  width: 40%;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .article_cta {
    width: 100%;
    margin-top: 20px;
  }
}
@media (min-width: 769px) {
  .article .cta .cta_wrapper .article_cta_inner {
    display: flex;
    align-items: center;
  }
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .article_cta_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
.article .cta .cta_wrapper .article_cta_inner img {
  height: 32px;
  width: auto;
}
@media (min-width: 769px) {
  .article .cta .cta_wrapper .article_cta_inner img {
    flex-grow: 1;
  }
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .article_cta_inner img {
    height: 30px;
  }
}
.article .cta .cta_wrapper .article_cta_inner p {
  flex-grow: 1;
}
.article .cta .cta_wrapper .button_1 {
  background: #952329;
}
@media (min-width: 769px) {
  .article .cta .cta_wrapper .button_1 {
    margin-right: 20px;
  }
}
.article .cta .cta_wrapper .button_1 .contact {
  font-size: 19px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .button_1 .contact {
    font-size: 16px;
  }
}
.article .cta .cta_wrapper .button_3 {
  background: #952329;
}
.article .cta .cta_wrapper .button_3 .tell {
  font-size: 20px;
  margin-left: 10px;
}
@media (max-width: 768px) {
  .article .cta .cta_wrapper .button_3 .tell {
    font-size: 19px;
  }
}

/* -------------------------------------article-------------------------------------*/
/* -------------------------------------pagination-------------------------------------*/
#pagination {
  text-align: center;
  margin-bottom: 130px;
}
@media (max-width: 768px) {
  #pagination {
    margin-bottom: 70px;
  }
}
#pagination .page-numbers {
  margin-right: 25px;
}

.pnavi {
  margin-top: 100px;
  position: relative;
}
@media (max-width: 768px) {
  .pnavi {
    margin-top: 50px;
  }
}
.pnavi .page-numbers {
  display: none;
}
.pnavi .prev.page-numbers,
.pnavi .next.page-numbers {
  display: inline-block;
}
.pnavi .prev.page-numbers {
  position: absolute;
  left: 0;
  top: 0;
}
.pnavi .next.page-numbers {
  position: absolute;
  right: 0;
  top: 0;
}
.pnavi .prev.page-numbers:before {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 24px;
  /*画像の幅*/
  height: 24px;
  /*画像の高さ*/
  background-image: url(./img/prev.png);
  background-size: contain;
  vertical-align: middle;
}
.pnavi .next.page-numbers:before {
  content: "";
  /*何も入れない*/
  display: inline-block;
  width: 24px;
  /*画像の幅*/
  height: 24px;
  /*画像の高さ*/
  background-image: url(./img/next.png);
  background-size: contain;
  vertical-align: middle;
}

/* -------------------------------------pagination-------------------------------------*/
/* -------------------------------------pagetop-------------------------------------*/
.pagetop_button {
  position: fixed;
  right: 2.5em;
  z-index: 99;
}
@media (max-width: 768px) {
  .pagetop_button {
    right: 0.5em;
  }
}
.pagetop_button #pagetop {
  border-radius: 50%;
}
@media screen and (min-width: 960px) {
  .pagetop_button #pagetop {
    width: 56px;
    height: 56px;
  }
}
.pagetop_button .c-fixBtn {
  align-items: center;
  background: #952329;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05), 0 4px 4px -4px rgba(0, 0, 0, 0.1);
  color: #A7A7A7;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  letter-spacing: normal;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  height: 52px;
  width: 52px;
}
.pagetop_button .c-fixBtn__icon {
  display: block;
  font-size: 20px;
}
.pagetop_button .c-fixBtn__icon {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(-45deg);
}

/* -------------------------------------pagetop-------------------------------------*/
/* -------------------------------------pankuzu_list-------------------------------------*/
.pankuzu_list {
  font-size: 13px;
  line-height: 1.5;
}
.pankuzu_list a::after {
  content: " ＞ ";
  color: #4a4a4a;
}

/* -------------------------------------pankuzu_list-------------------------------------*/
/* -------------------------------------cta_button-------------------------------------*/
a.btn.btn-arrow {
  text-transform: uppercase;
  display: inline-block;
  padding: 10px 60px;
  text-decoration: none;
  color: #313131;
  border: 1px solid #313131;
  position: relative;
  background-color: #FFFFFF;
}

a.btn.btn-arrow.footer {
  margin-top: 35px;
  width: 369px;
  max-width: 100%;
  padding: 22px 60px;
}

a.btn.btn-arrow.all_news {
  width: 302px;
  max-width: 100%;
  font-size: 18px;
  padding: 12px 60px;
  margin: 0 auto;
}

a.btn.btn-arrow.category {
  border: 0;
  padding: 0;
  font-size: 19px;
  display: block;
}

a.btn.btn-arrow.bottom_link {
  border: 0;
  padding: 0;
  display: block;
}

@media screen and (max-width: 769px) {
  a.btn.btn-arrow {
    display: block;
    padding: 7px 33px 7px 10px;
    text-align: center;
    font-size: 14px;
  }
  a.btn.btn-arrow.footer {
    padding: 18px 60px;
  }
  a.btn.btn-arrow.category {
    text-align: left;
    font-size: 16px;
  }
}
a.btn.btn-arrow .homePresident_arrow {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translate(0, -50%);
}

a.btn.btn-arrow .homePresident_arrow .arrow {
  display: grid;
  overflow: hidden;
}

a.btn.btn-arrow .homePresident_arrow .arrow .arrow_before,
a.btn.btn-arrow .homePresident_arrow .arrow .arrow_after {
  width: 1.5rem;
  display: inline-flex;
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: 1/1;
  translate: none;
  rotate: none;
  scale: none;
  transition: 0.4s;
}

a.btn.btn-arrow .homePresident_arrow .arrow .arrow_before {
  transform: translate(-150%, 0%);
}

a.btn.btn-arrow .homePresident_arrow .arrow .arrow_before .arrow_after {
  transform: translate(0px, 0px);
}

a.btn.btn-arrow:hover {
  transition: 0.4s;
  color: #952329;
  border: 1px solid #952329;
  opacity: 1;
}

a.btn.btn-arrow.bottom_link:hover,
a.btn.btn-arrow.category:hover {
  border: 0;
}

a.btn.btn-arrow:hover .arrow .arrow_before {
  -webkit-animation: arrow_before 0.4s ease-in-out;
  animation: arrow_before 0.4s ease-in-out;
}

a.btn.btn-arrow:hover .arrow .arrow_after {
  -webkit-animation: arrow_after 0.4s ease-in-out;
  animation: arrow_after 0.4s ease-in-out;
}

a.btn.btn-arrow:hover .arrow #SvgArrow {
  fill: #fff !important;
}

@-webkit-keyframes arrow_before {
  0% {
    transform: translate(-150%, 0%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@keyframes arrow_before {
  0% {
    transform: translate(-150%, 0%);
  }
  100% {
    transform: translate(0%, 0%);
  }
}
@-webkit-keyframes arrow_after {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(150%, 0px);
  }
}
@keyframes arrow_after {
  0% {
    transform: translate(0%, 0%);
  }
  100% {
    transform: translate(150%, 0px);
  }
}
a.btn.btn-viewall {
  font-family: linotype-didot, serif;
}

a.btn.btn-viewall:hover {
  color: #987839;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
/* -------------------------------------cta_button-------------------------------------*/