@charset "UTF-8";

/* common */
html {
  font-size: 62.5%;
}
body {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.6rem;
  line-height: 1.6;
  position: relative;
  color: #333333;
}
a {
  color: #c0af67;
  display: inline-block;
  text-decoration: none;
  transition: .3s;
}
a:hover,
span[data-adlink]:hover {
  opacity: .8;
}
.linkarea {
  transition: .3s;
}
.linkarea:hover {
  cursor: pointer;
  opacity: .8;
}
.linkarea a:hover {
  opacity: 1;
}
a[href^="tel:"] {
  pointer-events: none;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
h1,h2,h3,h4,h5 {
  font-weight: inherit;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
.pc {
  display: block;
}
.pc_inline {
  display: inline-block;
}
.sp {
  display: none;
}
.sp_inline {
  display: none;
}

@media screen and (max-width: 896px) {
  .pc {
    display: none;
  }
  .pc_inline {
    display: none;
  }
  .sp {
    display: block;
  }
  .sp_inline {
    display: inline-block;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}


.wrap,
.l-m{
  max-width: 1120px;
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 10px;
}

/* header */
.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 0 0 25px;
  margin: 0 0 80px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
}
.header-logo{
  line-height: 1;
  padding: 20px 10px 10px 30px;
}
.header-logo a {
  color: #333;
}
.header-logo img {
  width: 320px;
  height: auto;
}
.header-nav {
  position: relative;
  padding: 0;
}
.header-nav:before {
  content: "";
}
.header-nav ul {
  display: flex;
  justify-content: flex-start;
}
.header-nav li a{
  font-weight: bold;
  position: relative;
}
.header-nav-tel{
}
.header-nav-tel a{
  font-size: 2.4rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  color: #fff;
  padding: 20px 40px 20px 80px;
  background: #958250;
  position: relative;
}
.header-nav-tel a::before {
  content: "";
  width: 36px;
  height: 36px;
  background-image: url(../img/tell-icon.png);
  background-repeat: no-repeat;
  background-size: 36px 36px;
  position: absolute;
  top: calc(50% - 18px);
  left: 20px;
}
.header-nav-tel a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.header-btn{
  display: none;
}
.sp-menu{
  display: none;
}

/* bread */
.bread {
  padding: 5px 20px 0;
  font-size: 1.3rem;
  display: flex;
  letter-spacing: -0.05em;
  justify-content: flex-start;
}
.bread-link {
  display: inline-block;
}
.bread-link a {
  font-weight: bold;
  color: #c4ad70;
  position: relative;
}
.bread-link:after {
  content: '>';
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1.2;
  display: inline-block;
  margin: 0 8px 0 10px;
}
.bread-link:last-child:after {
  content: '';
  margin: 0;
}

/* main */
.main{
}
.main-in{
  display: flex;
  justify-content: space-between;
  padding: 30px 0 120px;
}
.main-con{
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
.main-con_title {
  font-size: clamp(25px, 5vw, 40px);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.08em;
  margin-bottom: 0.5em;
  font-weight: 500;
  padding-bottom: 30px;
  position: relative;
  margin-bottom: 1em;
}
.main-con_title h1:before,
.main-con_title span:before{
  content: '';
  display: block;
  position: absolute;
  width: 145px;
  height: 20px;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  background: url(../img/h2_icon.webp) no-repeat center;
}
/* .main-con_title h1:after,
.main-con_title span:after{
  content: "";
  width: 10px;
  height: 100%;
  background-color: #bfe3f2;
  transform: skewX(-30deg);
  position: absolute;
  top: 0;
  right: -30px;
  z-index: -1;
} */
.main-con_arch{
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.main-con_arch_box{
  max-width: 240px;
  width: calc((100% - 60px) / 4);
  margin: 0 20px 40px 0;
  box-sizing: border-box;
  transition: .2s;
  border: 0;
  background: #fff;
  position: relative;
}
.main-con_arch_box:hover {
  /* box-shadow: 0 0 3px rgba(0,0,0,.2);
  opacity: 1; */
}
.main-con_arch_box_img{
  overflow: hidden;
}
.main-con_arch_box_img img{
  max-width: 100%;
  box-sizing: border-box;
  height: auto;
  opacity: 1;
  -webkit-transition: .2s ease-in-out;
  transition: .2s ease-in-out;
  border: 1px solid #eee;
}
/*.main-con_arch_box:hover .main-con_arch_box_img img {
  transform: scale(1.05);
}*/
.main-con_arch_box_link{
  padding: 20px 10px 10px;
}
.main-con_arch_box_link_title{
  line-height: 1.4;
  font-size: 1.4rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin: 0 0 10px;
  color: #000;
}
.main-con_arch_box_link_title a {
  color: #000;
}
.main-con_arch_box_link_info{
  display: flex;
}
.main-con_arch_box_link_info_date{
  position: static;
  font-style: normal;
  font-size: 1.2rem;
  margin-left: 5px;
  margin-top: 0;
  padding-top: 0px;
  color: #666;
  margin: 0 10px 0 0;
}
.main-con_arch_box_link_info_cat{
  font-weight: bold;
  font-size: 1.2rem;
  color: #353F75;
}
.main-con_pagenavi{
}
.wp-pagenavi {
  display: flex;
  justify-content: center;
}
.wp-pagenavi a,
.wp-pagenavi span {
  padding: 10px 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #0090C9;
  font-weight: bold;
  transition: .2s;
  margin: 0 10px;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
  color: #fff;
  background: #0090C9;
  opacity: 1;
}
.wp-pagenavi span.extend {
  margin: 0;
}
.main-con_conts {
  max-width: 980px;
  padding: 0 20px 0 10px;
  margin: 0 auto 100px;
}
.main-con_conts_title {
  font-size: 3.6rem;
  font-weight: bold;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.main-con_conts_info {
  display: flex;
  margin: 0 0 36px;
}
.main-con_conts_info_date {
  font-size: 1.4rem;
  color: #666;
  margin: 0;
}
.main-con_conts_info_cat {
  font-size: 1.4rem;
  font-weight: bold;
  color: #353F75;
  margin: 0 10px 0 0;
}
.main-con_conts_info_cat a {
  color: inherit;
}
.main-con_conts_mv {
  text-align: center;
  margin: 0 0 30px 0;
}
.main-con_conts_mv img {
}
.main-con_conts_wrap p {
  margin: 40px 0;
  line-height: 1.8;
}
.main-con_conts_wrap p:first-child {
  margin: 0;
}
.main-con_conts_wrap p img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.main-con_conts_wrap p a {
  display: inline;
}
.main-con_conts_wrap a,
.main-con_conts_wrap span[data-adlink] {
  text-decoration: underline;
}
.main-con_conts_wrap span[data-adlink] {
    cursor: pointer;
}
.main-con_conts_wrap .b {
  font-weight: bold;
}
.main-con_conts_wrap .red {
  color: #f10;
}
/* .main-con_conts_wrap h2 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: bold;
  margin: 80px 0 30px -50px;
  position: relative;
  color: #333;
  background: #bfe3f2;
  border-radius: 100px 0 0 100px;
  padding: 18px 12px 15px 50px;
}
.main-con_conts_wrap h2:before {
  content: "";
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 8px;
  position: absolute;
  top: calc((100% - 16px) / 2);
  left: 20px;
} */
.main-con_conts_wrap h2 {
  color: #958250;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
  padding: 1.2em 1.5em;
  margin: 80px 0 40px;
  position: relative;
  text-align: center;
  border-radius: 0;
  background: url(../img/h3_icon.webp) no-repeat center center/contain;
}
.main-con_conts_wrap h2:first-child {
  margin: 0 0 40px;
}
.main-con_conts_wrap h3 {
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: bold;
  padding: 0 10px 4px 10px;
  margin: 10px 0 40px 0px;
  color: #c4ad70;
  border-bottom: 2px solid #c4ad70;
  position: relative;
}
.main-con_conts_wrap h3:first-child {
  margin: 0 0 20px;
}
.main-con_conts_wrap h4 {
  font-size: 1.8rem;
  line-height: 1.25;
  font-weight: bold;
  color: #958250;
  padding: 1px 9px 1px 0;
  margin: 40px 0;
  position: relative;
}
.main-con_conts_wrap h3:first-child {
  margin: 0 0 15px;
}
.main-con_conts_wrap ul {
  margin: 40px 0;
}
.main-con_conts_wrap ul li {
  font-weight: bold;
  padding: 0 0 0 30px;
  position: relative;
}
.main-con_conts_wrap ul li+ li {
  margin: 15px 0 0;
}
.main-con_conts_wrap ul li:before {
  content: '';
  width: 19px;
  height: 20px;
  border-radius: 4px;
  background-image: url(../img/icon_check.webp);
  background-repeat: no-repeat;
  background-size: 19px 20px;
  position: absolute;
  top: 1px;
  left: 0;
}
.main-con_conts_wrap #toc_container ul.toc_list li + li {
  margin: 16px 0 0;
}
.main-con_conts_wrap ul.toc_list li a {
  padding: 0 0 0 1.2em;
  position: relative;
}
.main-con_conts_wrap ul.check-box li {
  font-weight: bold;
  padding: 0 0 0 40px;
  position: relative;
}
.main-con_conts_wrap ul.check-box li+ li {
  margin: 30px 0 0;
}
.main-con_conts_wrap ul.check-box li:before {
  content: '';
  width: 4px;
  height: 10px;
  background: none;
  border-right: 3px solid #c4ad70;
  border-bottom: 3px solid #c4ad70;
  transform: rotate(45deg);
  position: absolute;
  top: 3px;
  left: 18px;
}
.main-con_conts_wrap ul.check-box li:after {
  content: '';
  width: 16px;
  height: 16px;
  background: none;
  border: 3px solid #c4ad70;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 10px;
}
.main-con_conts_wrap ol {
  counter-reset: li;
  list-style: none;
  margin: 40px 0;
}
.main-con_conts_wrap ol li {
  font-weight: bold;
  padding: 0 0 0 2em;
  position: relative;
}
.main-con_conts_wrap ol li+ li {
  margin: 8px 0 0;
}
.main-con_conts_wrap ol li:before {
  color: #b0bd00;
  font-weight: bold;
  counter-increment: li;
  content: counter(li) " ";
  display: inline-block;
  position: absolute;
  top: 0;
  left: 0.5em;
}
.main-con_conts_wrap table {
  max-width: 100%;
  width: 100%;
  font-size: 1.4rem;
  margin: 30px auto;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
.main-con_conts_wrap table th {
  font-size: 1.4rem;
  color: #fff;
  background: #c4ad70;
  padding: 8px 12px;
  border: 1px solid #ccc;
  vertical-align: middle;
  vertical-align: middle;
}
.main-con_conts_wrap table td {
  padding: 8px 12px;
  border: 1px solid #ccc;
}
.main-con_conts_wrap .waku {
  font-size: 1.5rem;
  padding: 20px;
  border: 5px solid #f7f2e6;
  margin: 40px 30px;
}
.main-con_conts_wrap .waku p {
  margin: 30px 0;
}
.main-con_conts_wrap .waku p:first-child {
  margin: 0 0 30px;
}
.main-con_conts_wrap .waku p:last-child {
  margin: 0;
}
.main-con_conts_wrap .bgb-beige {
  font-size: 1.5rem;
  padding: 20px;
  border-radius: 8px;
  background: #fcfaf6;
  margin: 40px 30px;
}
.main-con_conts_wrap .bgb-beige p {
  margin: 30px 0;
}
.main-con_conts_wrap .bgb-beige p:first-child {
  margin: 0 0 30px;
}
.main-con_conts_wrap .bgb-beige p:last-child {
  margin: 0;
}
.main-con_conts_wrap dl {
  width: 100%;
  display: table;
  margin: 40px 0;
}
.main-con_conts_wrap dl dt {
  width: 90px;
  display: table-cell;
  vertical-align: top;
  padding: 2px 0 2px 19px;
  border-right: 1px solid #333;
  font-weight: bold;
}
.main-con_conts_wrap dl dd {
  display: table-cell;
  vertical-align: top;
  padding: 2px 0 2px 20px;
}
.main-con_conts_wrap .mokuji {
  padding: 10px 25px 20px;
  margin: 30px  50px 30px;
  background: #caf8ef;
}
.main-con_conts_wrap .mokuji:before {
  content: "Contents";
  font-size: 3rem;
  line-height: 1.2;
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: #5b5b5b;
  opacity: .75;
}
.main-con_conts_wrap .mokuji ul {
  margin: 8px 0 0;
}
.main-con_conts_wrap .mokuji ul li a {
  color: #333;
  transition: .2s;
}
.main-con_conts_wrap .mokuji ul li a:hover {
  padding: 0 0 0 0.5em;
}
.main-con_conts_wrap blockquote {
  font-size: 1.5rem;
  padding: 30px 30px 30px 60px;
  box-sizing: border-box;
  border-radius: 8px;
  background: #fcfaf6;
  position: relative;
  margin: 40px 30px;
}
.main-con_conts_wrap blockquote:before {
  content: '“';
  font-size: 7rem;
  line-height: 1;
  color: #666;
  position: absolute;
  top: 8px;
  left: 6px;
}
.main-con_conts_wrap blockquote p {
  margin: 30px 0;
}
.main-con_conts_wrap blockquote p:first-child {
  margin: 0 0 30px;
}
.main-con_conts_wrap blockquote p:last-child {
  margin: 0;
}
.main-con_conts_wrap .referrer {
  margin: 0 0 40px 0;
  padding: 0 20px;
  font-size: 1.5rem;
}
.main-con_conts_wrap .referrer p {
  margin: 30px 0;
}
.main-con_conts_wrap .referrer p:first-child {
  margin: 0 0 30px;
}
.main-con_conts_wrap .referrer p:last-child {
  margin: 0;
}
.main-con_conts_wrap .referrer a {
  font-weight: bold;
}
.morebox_link {
  display: flex;
  border: 1px solid #c4ad70;
  border-radius: 6px;
  overflow: hidden;
  margin: 40px 25px;
}

.morelink_l {
  width: 20%;
}

.morelink_r {
  width: 80%;
  box-sizing: border-box;
  padding: 0;
  position: relative;
}

.moretitle {
  display: inline-block;
  font-size: 1.3rem;
  line-height: 1.2;
  letter-spacing: -0.08em;
  font-weight: bold;
  margin: 0 0 8px;
  padding: 6px 8px 4px;
  background: #c4ad70;
  color: #fff;
}

.morelink_r a {
  font-size: 1.8rem;
  letter-spacing: -0.05em;
  line-height: 1.4;
  padding: 0 12px;
  display: block;
  color: #333;
  font-weight: bold;
}

.kiji-gazou {
  text-align: center;
}
.kiji-gazou img {
  max-width: 100%;
  height: auto;
}

div#toc_container {
  margin: 50px 0;
}

#toc_container {
  margin: 60px 0;
}
.main-con_conts_wrap #toc_container ul li:before {
  content: '';
  width: 0;
  height: 0;
  border-radius: 0;
  background-image: none;
  background-repeat: no-repeat;
  background-size: 0 0;
  position: absolute;
  top: 0;
  left: 0;
}
.main-con_conts_wrap #toc_container ul.toc_list li a{
  padding: 0;
}

@media screen and (max-width: 896px) {
  .wrap, .l-m {
    max-width: 100%;
    padding: 0 20px;
  }
  .header {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 65px;
    box-sizing: border-box;
    padding: 10px 15px;
    margin: 0 0 20px;
  }
  .header-logo{
    width: 50%;
    padding: 0;
  }
  .header-logo img{
    width: 200px;
    max-width: 100%;
  }
  .header-nav {
    display: none;
  }
  .header-btn{
    display: flex;
    width: 32px;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    font-size: 1.1rem;
    font-family: 'Josefin Sans', sans-serif;
    line-height: 1;
    position: absolute;
    right: 15px;
  }
  .header-btn-box {
    display: block;
    width: 32px;
    height: 18px;
    box-sizing: border-box;
    border-top: 4px solid #333;
    border-bottom: 4px solid #333;
    position: relative;
    padding: 10px 0 0;
    margin: 10px auto 10px;
  }  
  .sp-menu{
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 3;
    background: rgba(255,255,255,.9);
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    padding: 0;
    text-align: center;
  }
  .sp-menu ul{
    padding: 0 30px;
  }
  .sp-menu li+ li{
    margin:25px 0 0;
  }
  .sp-menu li a{
    font-size: 2.2rem;
    font-weight: bold;
  }
  .sp-menu-btn {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 65px;
    box-sizing: border-box;
    padding: 10px 15px;
    margin: 0 0 20px;
  }
  .sp-menu-btn span {
    width: 38px;
    height: 38px;
    position: relative;
  }
  .sp-menu-btn span:before {
    content: "";
    width: 50px;
    height: 4px;
    background: #c4ad70;
    transform: rotate(45deg);
    position: absolute;
    top: 18px;
    left: -5px;
  }
  .sp-menu-btn span:after {
    content: "";
    width: 50px;
    height: 4px;
    background: #c4ad70;
    transform: rotate(-45deg);
    position: absolute;
    top: 18px;
    left: -5px;
  }
  .main-lead {
    max-width: 100%;
    margin: 0 auto;
    padding: 15px 4px 5px;
  }
  .main-lead_title {
    margin: 0 0 10px;
  }
  .main-lead_title_sub {
    font-size: 1.6rem;
    margin: 0;
  }
  .main-lead_title_main {
    font-size: 2.4rem;
  }
  .main-lead_title_main:before {
    content: "";
    width: 30px;
    left: -40px;
  }
  .main-lead_title_main:after {
    content: "";
    width: 30px;
    right: -40px;
  }
  .main-lead_con {
    font-size: 1.3rem;
  }

  .main-in {
    display: block;
    padding: 20px 0;
  }
  .main-con {
    max-width: 100%;
    margin: 0 0 70px;
  }
  .main-con_404 {
    padding: 30px 24px;
  }
  .main-con_title {
    font-size: 2.8rem;
    padding: 5px 6px;
    margin: 0 0 60px 0;
  }
  .main-con_title h1:before,
  .main-con_title span:before{
    bottom: -20px;
  }
  .main-con_arch {
    display: block;
  }
  .main-con_arch_box {
    max-width: 100%;
    width: 100%;
    display: block;
    padding: 0 0 10px;
    margin: 0;
    border-bottom: 1px solid #aaa;
  }
  .main-con_arch_box+ .main-con_arch_box{
    margin: 30px 0 0;
  }
  .main-con_arch_box_img {
    width: 100%;
  }
  .main-con_arch_box_img img {
    width: 100%;
  }
  .main-con_arch_box_link {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }
  .main-con_arch_box_link_title {
    font-size: 1.8rem;
    margin: 0 0 15px;
  }
  .main-con_arch_box_link_info_date{
    font-size: 1.4rem;
  }
  .main-con_arch_box_link_info_cat{
    font-size: 1.4rem;
  }
  .main-con_pagenavi {
    padding: 30px 0 0;
  }
  .wp-pagenavi a,
  .wp-pagenavi span {
    padding: 5px 6px;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0 5px;
  }
  .wp-pagenavi span.extend {
    padding: 5px 0;
    font-size: 1.2rem;
    line-height: 1;
    margin: 0;
  }
  .mv_slider_item{
    width: 100%;
  }
  .mv_slider_item_img{
    height: auto;
    max-height: 200px;
  }
  .mv_slider_item_title a {
    font-size: 1.4rem;
    box-sizing: border-box;
    padding: 0 12px;
  }
  .slick-prev,
  .slick-next {
    top: 42%;
    width: 20px;
    height: 20px;
  }
  .slick-prev {
    left: 15px;
  }
  .slick-next {
    right: 15px;
  }
  .slick-prev:before,
  .slick-next:before {
    width: 5px;
    height: 5px;
  }
  .slick-prev:before {
    left: 55%;
  }
  .slick-next:before {
    left: 55%;
  }

  .bread {
    display: block;
    padding: 4px 0;
    font-size: 1.1rem;
    letter-spacing: -0.05em;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow: auto;
    word-break: keep-all;
    white-space: nowrap;
  }
  .bread-inner {
    display:inline;
    padding: 0 4px;
  }
  .bread-link a {
    font-weight: bold;
    color: #c4ad70;
    position: relative;
  }
  .bread-link:after {
    content: '>';
    font-size: 1.1rem;
    font-weight: bold;
    line-height: 1.2;
    display: inline-block;
    margin: 0 4px 0 5px;
  }

  .main-con_conts_title {
    font-size: 2.8rem;
    line-height: 1.4;
    margin: 0 0 10px;
  }
  .main-con_conts_info {
    margin: 0 0 10px;
  }
  .main-con_conts_mv img {
  }
  .main-con_conts {
    padding: 0;
    margin: 0 0 50px;
  }
  .main-con_conts_wrap {
    font-size: 1.5rem;
  }
  .main-con_conts_wrap p {
    margin: 30px 0;
  }
  .main-con_conts_wrap p:first-child {
    margin: 0 0 30px 0;
  }
  .main-con_conts_wrap h2 {
    font-size: 2.3rem;
    margin: 40px -15px 30px -15px;
  }
  .main-con_conts_wrap h3 {
    font-size: 2rem;
    font-weight: bold;
    margin: 40px 0 2px;
  }
  .main-con_conts_wrap h4 {
    font-size: 1.7rem;
    font-weight: bold;
    margin: 40px 0 1px;
  }
  .main-con_conts_wrap ul {
    margin: 30px 0;
  }
  .main-con_conts_wrap ol {
    margin: 30px 0;
  }
  .main-con_conts_wrap ul li,
  .main-con_conts_wrap ol li {
    font-size: 1.4rem;
  }
  .main-con_conts_wrap ul.check-box li:before {
    top: 3px;
    left: 17px;
  }
  .main-con_conts_wrap ul.check-box li:after {
    width: 12px;
    height: 12px;
    top: 1px;
    left: 11px;
  }
  .main-con_conts_wrap table {
    margin: 5px 0;
  }
  .main-con_conts_wrap table th {
    padding: 4px 8px;
  }
  .main-con_conts_wrap table td {
    padding: 4px 8px;
  }
  .main-con_conts_wrap .sp_table {
    overflow-x: scroll;
    margin: 20px 0;
  }
  .main-con_conts_wrap .sp_table table {
    max-width: 100%;
    width: 500px;
  }
  .main-con_conts_wrap .waku {
    padding: 15px;
    border: 5px solid #f7f2e6;
    margin: 30px 0;
  }
  .main-con_conts_wrap .waku p {
    margin: 25px 0;
  }
  .main-con_conts_wrap .waku p:first-child {
    margin: 0 0 25px;
  }
  .main-con_conts_wrap .waku p:last-child {
    margin: 0;
  }
  .main-con_conts_wrap .bgb-beige {
    padding: 15px;
    background: #fffbdf;
    border-radius: 10px;
    margin: 30px 0;
  }
  .main-con_conts_wrap .bgb-beige p {
    margin: 25px 0;
  }
  .main-con_conts_wrap .bgb-beige p:first-child {
    margin: 0 0 25px;
  }
  .main-con_conts_wrap .bgb-beige p:last-child {
    margin: 0;
  }
  .main-con_conts_wrap dl {
    width: 100%;
    display: block;
    margin: 30px 0;
  }
  .main-con_conts_wrap dl dt {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 2px 10px 5px;
    border-right: 0;
    border-bottom: 1px solid #ccc;
    margin: 0 0 5px;
  }
  .main-con_conts_wrap dl dd {
    width: 100%;
    display: block;
    box-sizing: border-box;
    padding: 2px 10px 2px;
    margin: 0 0 15px;
  }

  .main-con_conts_wrap .mokuji {
    padding: 10px 15px 10px;
    margin: 0 30px;
    background: #caf8ef;
    font-size: 1.4rem;
  }
  .main-con_conts_wrap .mokuji:before {
    font-size: 2.4rem;
  }
  .main-con_conts_wrap blockquote {
    font-size: 1.4rem;
    padding: 35px 15px 15px 35px;
    margin: 30px 0;
  }
  .main-con_conts_wrap blockquote:before {
    font-size: 5rem;
  }
  .main-con_conts_wrap .referrer {
    margin: 0 0 30px 0;
    padding: 0 10px;
    font-size: 1.4rem;
  }
}


.contact_inputarea {
  padding: 0 30px;
}
dl.contact_inputarea_row {
  display: block;
  margin: 20px 0;
}
dl.contact_inputarea_row dt {
  width: 100%;
  display: block;
  border: none;
  padding: 0;
  margin: 0 0 5px;
  font-size: 1.8rem;
}
dl.contact_inputarea_row dt .any {
  color: #f10;
}
dl.contact_inputarea_row dd {
  display: block;
  padding: 0;
  margin: 0;
}
.contact_inputarea input {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding:10px 15px;
  font-size: 1.8rem;
}
.contact_inputarea textarea {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  padding:10px 15px;
  resize: vertical;
  font-size: 1.8rem;
  line-height: 1.8;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
}
.contact_acceptance {
  padding: 0 30px;
  margin: 0 0 25px;
  text-align: center;
}
.main-con_conts_wrap .contact_acceptance p {
  margin: 10px 0;
  font-size: 1.5rem;
}
.main-con_conts_wrap .contact_acceptance p:first-child {
  margin: 0 0 10px;
}
.main-con_conts_wrap .contact_acceptance span.wpcf7-list-item {
  margin: 0;
  font-weight: bold;
}
.contact_submit {
  padding: 0 30px;
}
.contact_submit input[type=submit] {
  width: 100%;
  max-width: 320px;
  padding: 15px 0 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #c4ad70;
  border: 2px solid #b58e5b;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 auto;
  transition: .2s;
}
.contact_submit input[type=submit]:hover {
  color: #fff;
  background: #c4ad70;
  cursor: pointer;
}
.wpcf7 form .wpcf7-response-output {
  font-weight: bold;
}

.cmn_btn {
  width: 100%;
  max-width: 320px;
  padding: 15px 0 12px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  color: #c4ad70;
  border: 2px solid #c4ad70;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 auto;
  transition: .2s;
  text-decoration: none;
}
.cmn_btn:hover {
  color: #fff;
  background: #c4ad70;
  cursor: pointer;
}

@media screen and (max-width: 896px) {
  .contact_inputarea {
    padding: 0 12px;
  }
  dl.contact_inputarea_row {
    margin: 15px 0;
  }
  dl.contact_inputarea_row dt {
    font-size: 1.7rem;
  }
  .contact_inputarea input {
    padding:8px 10px;
    font-size: 1.7rem;
  }
  .contact_inputarea textarea {
    padding:8px 10px;
    font-size: 1.7rem;
  }
  .contact_acceptance {
    padding: 0 12px;
    margin: 0 0 20px;
    text-align: left;
  }
  .wpcf7 form .wpcf7-response-output {
    margin: 0 0.5em 0;
  }
}

/*.pagetop {
  display: none;
  width: 30px;
  height: 50px;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 10;
}
.pagetop a {
  display: block;
  width: 100%;
  height: 50px;
  background: #183028;
  transition: .2s;
  position: relative;
  border-radius: 5px 5px 0 0;
}
.pagetop a:before,
.pagetop a:after {
  content: "";
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  left: 0;
  right: 0;
  margin: 0 auto;
  transform: translateY(-50%) rotate(135deg);
  transition: .2s;
}
.pagetop a:before {
  top: calc(50% + 10px);
}
.pagetop a:after {
  top: calc(50% + 2px);
}
.pagetop a:hover:before {
  top: calc(50% + 13px);
}
.pagetop a:hover:after {
  top: calc(50% - 1px);
}
@media screen and (max-width: 896px) {
  .pagetop {
      display: block;
      width: 40px;
      height: 40px;
      position: absolute;
      bottom: 10px;
      right: 15px;
      z-index: 10;
  }
}*/


  /* 記事中広告 (card-professor引き継ぎ) */

.card_detail {
	margin:60px 35px 60px 25px;
}
.card_detail p,
.card_detail img{
	margin:0;
	float:left;
}
.card_detail p img {
	width:100%;
	height:auto;
}
.card_detail_more {
	float:right;
	margin:0 10px 14px 0;
}
.card_detail_official {
	float:right;
	margin:0
}
.card_detail_more img,
.card_detail_official img {
  float: none;
}
.card_detail_more a {
	display:block;
}
.card_detail_official a {
	display:block;
}

.card_detail_official a {
  position: relative;
  overflow: hidden;
}
.card_detail_official a::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  pointer-events: none;
  -webkit-animation: shine 2.25s ease-in-out 0s infinite;
  animation: shine 2.25s ease-in-out 0s infinite;
}

@-webkit-keyframes shine {
  75% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  75% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.head_ad {
  display: none;
}

/* ACボタン */
.btn_ac_masuter {
  display: none;
}
@media screen and (max-width: 896px) {
  .card_detail {
  	margin: 40px 0;
  }
  .card_detail p,
  .card_detail img{
  	margin:0;
  	width: 40%;
  	float:left;
  }
  .main-con_conts_wrap .card_detail p:first-child {
    margin: 0;
  }
  .card_detail_more img,
  .card_detail_official img {
    float: none;
    width: 100%;
    height: atuo;
  }
  .card_detail p img {
  	width:100%;
  	height:auto;
    float: none;
  }
  .card_detail_more,
  .card_detail_official {
    width: 56%;
    float: right;
    text-align: center;
    margin: 0;
  }
  .card_detail_more {
    margin: 0 0 10px;
  }



  /* cattop 広告部分 (card-professor引き継ぎ) */
  .head_ad {
    display: block;
    padding: 0 8px 8px;
    margin: 0 0 5px;
  	border-bottom: 2px solid rgba(222,250,255,1);
  }
  .head_ad dl {
  	display:table;
  	width:100%;
  	vertical-align:top;
  }
  .head_ad dt {
  	display:table-cell;
  	width: 33%;
  	margin:0;
  	padding: 0 1.5% 0 1%;
  	vertical-align:top;
  }
  .head_ad dt img {
  }
  .head_ad dd {
  	width: 63%;
  	display:table-cell;
  	margin:0;
  	padding: 0 0 0 1.5%;
  	vertical-align:top;
  }
  .head_ad p {
  	font-size:13px;
  	line-height:1.4;
  	font-weight:bold;
  	color:rgba(0,0,0,1);
  }
  .head_ad p span{
  	background: -moz-linear-gradient(transparent 50%, rgba(255,246,0,1) 50%);
  	background: -webkit-linear-gradient(transparent 50%, rgba(255,246,0,1) 50%);
  	background: -webkit-gradient(linear, 0 0, 0 100%, color-stop(0.5, transparent), color-stop(0.5, rgba(255,246,0,1)));
  	background: -o-linear-gradient(transparent 50%, rgba(255,246,0,1) 50%);
  	background: linear-gradient(transparent 50%, rgba(255,246,0,1) 50%);
  }
  .head_ad .head_ad_btn {
  	padding:4px 0 0 0;
  	letter-spacing:-0.4em;
  }
  .head_ad .head_ad_btn a {
  	display:inline-block;
  	width:45%;
  	letter-spacing:normal;
  	line-height:100%;
  	vertical-align:top;
  	margin:0 1em 0 0;
  	padding:0;
  }
  .head_ad .head_ad_btn a:last-child {
  	margin:0;
    position: relative;
    overflow: hidden;
  }
  .head_ad .head_ad_btn a:last-child::before {
    position: absolute;
    top: 0;
    left: -75%;
    z-index: 2;
    display: block;
    content: '';
    width: 50%;
    height: 100%;
    background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
    background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
    -webkit-transform: skewX(-25deg);
    transform: skewX(-25deg);
    pointer-events: none;
    -webkit-animation: shine 2.25s ease-in-out 0s infinite;
    animation: shine 2.25s ease-in-out 0s infinite;
  }

  .main-con_ad {
    margin: -20px 0 24px;
  }

  /*ACボタン (card-professor引き継ぎ) */
  .btn_ac_masuter {
    display: block;
  	position: relative;
  	margin: 20px 0;
  }
  .img_accard {
  	position: absolute;
  	width: 23%;
  	top: 18%;
  	left: 2%;
  	z-index: 20;
  }
  .img_kira {
  	position: absolute;
  	width: 28%;
  	z-index: 100;
  	top: 3%;
  	left: 1.0%;
  	webkit-animation: blink 0.5s ease-in-out infinite alternate;
  	-moz-animation: blink 0.5s ease-in-out infinite alternate;
  	animation: blink 0.5s ease-in-out infinite alternate;
  }
  /*.btn_ac_masuter a:after {
  		content: "";
  		width: 152px;
  		height: 103px;
  		background: url(../images/ad/btn-card.png) no-repeat;
  		position: absolute;
  		top: 0;
  		left: 0;
  		z-index: 2;
  	background-size: 50%;
  }*/
}

.official_btn {
  max-width: 480px;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}

.official_btn_img {
  width: 26%;
  height: 86px;
  padding: 8px 0;
  box-sizing: border-box;
  position: absolute;
  text-align: center;
  top: 50%;
  left: 4%;
  /* right: 0; */
  transform: translateY(-50%);
  /* margin: 0 auto; */
  z-index: 2;
}

.official_btn_img .img_kira {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  z-index: 3;
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  -moz-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

.official_btn_img .img_card {
  width: auto;
  height: 100%;
  position: relative;
}
.official_btn_img:after {
  content: "";
  width: 110%;
  height: 86px;
  background-image: url(../images/ad/btn-kira.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -4%;
  left: 0;
  right: 0;
  margin: 0 auto;
  -webkit-animation: blink 0.5s ease-in-out infinite alternate;
  -moz-animation: blink 0.5s ease-in-out infinite alternate;
  animation: blink 0.5s ease-in-out infinite alternate;
}

.official_btn_link {
  width: 100%;
  height: 86px;
  padding: 6px 6% 4px 32%;
  box-sizing: border-box;
  background: #00d294;
  box-shadow: 2px 2px 4px 0 rgba(0,0,0,.25);
  border-radius: 43px;
  border-bottom: 4px solid #00835c;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  position: relative;
}

.official_btn_link a {
  font-size: 1.8rem;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.1em;
  position: relative;
}

.official_btn_link:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 8px 0 8px 12px;
  border-color: transparent transparent transparent #00835c;
  position: absolute;
  top: calc(50% + 2px);
  right: 2.5%;
  z-index: 2;
  transform: translateY(-50%);
}

.main-con_conts_404 {
  margin: 60px 0 0;
  text-align: center;
}

.main-con_conts_404 a {
  color: #fff;
  font-weight: bold;
  line-height: 1.0;
  background: #0090C9;
  display: inline-block;
  max-width: 360px;
  box-sizing: border-box;
  height: 50px;
  padding: 18px 0 16px;
  width: 100%;
  border-radius: 25px;
  position: relative;
}

.main-con_conts_404 a:after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  position: absolute;
  top: 50%;
  right: 8%;
  transform: rotate(45deg) translateY(-50%);
}

@media screen and (max-width: 896px) {
  .official_btn {
    max-width: 360px;
  }
  .official_btn_img {
    height: 68px;
  }
  .official_btn_img:after {
    height: 68px;
  }
  .official_btn_link {
    height: 68px;
    border-radius: 34px;
  }
  .official_btn_link a {
    font-size: 1.6rem;
  }
  .official_btn_link:after {
    top: 26px;
    transform: translateY(0);
  }

}
@media screen and (max-width: 414px) and (orientation: portrait) {
  .site_copy {
    font-size: 2.8vw;
  }
  .main-lead_title_sub {
    font-size: 2.8vw;
  }
  .main-lead_title_main {
    font-size: 5.2vw;
  }
}
@media screen and (max-width: 375px) and (orientation: portrait) {
  .official_btn_link a {
    font-size: 4.2vw;
  }
}


/* ぷるぷる */
.purun {
	-webkit-animation: purun 1.6s linear 0s 1;
	animation: purun 1.6s linear 0s 1;
	animation-iteration-count: infinite;
	}
	@-webkit-keyframes purun {
		0%	 { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
		8%	{ -webkit-transform: scale(0.98, 0.98) translate(0%, 5%); }
		18%	{ -webkit-transform: scale(1.1, 0.98) translate(0%, 10%); }
		32%	{ -webkit-transform: scale(0.98, 1.1) translate(0%, -10%); }
		48%	{ -webkit-transform: scale(1.1, 0.98) translate(0%, 5%); }
		65%	{ -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
		100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
	}
	@keyframes purun {
		0%	 { transform: scale(1.0, 1.0) translate(0%, 0%); }
		8%	{ transform: scale(0.98, 0.98) translate(0%, 5%); }
		18%	{ transform: scale(1.1, 0.98) translate(0%, 10%); }
		32%	{ transform: scale(0.98, 1.1) translate(0%, -10%); }
		48%	{ transform: scale(1.1, 0.98) translate(0%, 5%); }
		65%	{ transform: scale(1.0, 1.0) translate(0%, 0%); }
		100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}
/* 点滅 */
@-webkit-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@-moz-keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}
@keyframes blink{
	0% {opacity:0;}
	100% {opacity:1;}
}

.m small {
  color: #999;
    font-size: 12px;
    line-height: 1.2 !important;
    display: block;
    margin: 0;
    padding: 0;
}

/*2021.03.12 link_text cv_btn */
.link_t {
  display: block;
  text-align: right;
  margin: 30px 0;
  line-height: 1.8;
}
.ad_allshow .link_t {
  display: block;
}
.link_t p {
  margin: 0;
}
.link_t a,
.link_t span[data-adlink] {
  font-size: 1.15em;;
  display: inline-block;
  color: #1bb4d3;
  font-weight: bold;
}
.link_t p+ p {
  margin: 20px 0 0;
}
.cv_btn {
  display: block;
  text-align: center;
  margin: 30px 0;
}
.ad_allshow .cv_btn {
  display: block;
}
.cv_btn a,
.cv_btn span[data-adlink] {
  background-color: #0090C9;
  display: inline-block;
  min-width: 320px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.4em;
  color: #fff;
  padding: 24px 24px 20px;
  border-radius: 16px;
  border-bottom: 10px solid #003D66;
  position: relative;
  overflow: hidden;
  margin: 0;
  transition: .2s;
  animation: blinking 1s ease-in-out 2s infinite alternate;
}
@keyframes blinking {
	0% {opacity: .75;}
	100% {opacity: 1;}
}
.cv_btn a:hover,
.cv_btn span[data-adlink]:hover{
  opacity: 1;
  border-bottom: 6px solid #003D66;
  margin: 4px 0 0 ;
}
.cv_btn a:active,
.cv_btn span[data-adlink]:active{
  opacity: 1;
  border-bottom: 2px solid #003D66;
  margin: 8px 0 0 ;
}
.cv_bnr a img,
.cv_bnr span[data-adlink] img {
  max-width: 100%;
  height: auto;
  position: relative;
  z-index: 1;
}
/* .cv_btn a:after,
.cv_btn span[data-adlink]:after {
  content: "";
  width: 12px;
  height: 12px;
  background: none;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%) rotate(45deg);
} */
/* .cv_btn a:before,
.cv_btn span[data-adlink]:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
  pointer-events: none;
  -webkit-animation: shine 2.25s ease-in-out 0s infinite;
  animation: shine 2.25s ease-in-out 0s infinite;
} */
.purun {
  -webkit-animation: purun 1.6s linear 0s 1;
  animation: purun 1.6s linear 0s 1;
  animation-iteration-count: infinite;
}
@-webkit-keyframes purun {
  0%   { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
  8%  { -webkit-transform: scale(0.98, 0.98) translate(0%, 5%); }
  18% { -webkit-transform: scale(1.1, 0.98) translate(0%, 10%); }
  32% { -webkit-transform: scale(0.98, 1.1) translate(0%, -10%); }
  48% { -webkit-transform: scale(1.1, 0.98) translate(0%, 5%); }
  65% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
  100% { -webkit-transform: scale(1.0, 1.0) translate(0%, 0%); }
}
@keyframes purun {
  0%   { transform: scale(1.0, 1.0) translate(0%, 0%); }
  8%  { transform: scale(0.98, 0.98) translate(0%, 5%); }
  18% { transform: scale(1.1, 0.98) translate(0%, 10%); }
  32% { transform: scale(0.98, 1.1) translate(0%, -10%); }
  48% { transform: scale(1.1, 0.98) translate(0%, 5%); }
  65% { transform: scale(1.0, 1.0) translate(0%, 0%); }
  100% { transform: scale(1.0, 1.0) translate(0%, 0%); }
}

@-webkit-keyframes shine {
  75% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}
@keyframes shine {
  75% {
    left: -75%;
  }
  100% {
    left: 125%;
  }
}

.cv_copy {
  display: block;
  font-weight: bold;
  text-align: center;
  margin: 30px 0 -10px;
}
.ad_allshow .cv_copy {
  display: block;
}
.cv_copy span {
  display: inline-block;
  line-height: 1.4;
  padding: 0 12px;
  font-weight: bold;
  font-size: 1.1em;
}

@media screen and (max-width: 896px) {
  .cv_btn {
    display: block;
  }
  .cv_btn a,
  .cv_btn span[data-adlink] {
    width: 96%;
    box-sizing: border-box;
    padding: 10px 20px 6px;
    border-radius: 12px;
    box-shadow: 0px 0px 6px rgba(0,0,0,0.2);
  }
  .cv_btn a:after,
  .cv_btn span[data-adlink]:after {
    content: "";
    width: 10px;
    height: 10px;
    right: 12px;
  }
  .cv_btn_lead {
    font-size: 4.2vw;
  }
  .cv_btn_main {
    line-height: 1.5;
  }
  .cv_copy {
    display: block;
  }
}


.bg_y {
  background: linear-gradient(transparent 0%, #fff799 0%);
  text-align: center;
}
.cv_btn_lead {
  display: block;
  font-size: 0.75em;
  line-height: 1.4;
}
.cv_btn_main {
  line-height: 1.5;
}
.cv_btn_main_small {
  font-size: .9em;
}

/*会社検索*/
.search_area {
  margin: 0 0 60px;
}
.content_txt p.search_area_lead {
  font-size: 18px;
  font-weight: bold;
}
.search_area_sec_title {
  font-size: 18px;
  padding: 0 0 0 14px;
  border-left: 6px solid #0090C9;
  margin: 0 0 12px;
}
.search_area_sec {
  margin: 30px 0;
}
.search_area_sec_check {
  display: flex;
  flex-wrap: wrap;
}
.check_wrap {
  width: calc(100% / 3);
  padding: 6px 0;
}
.check_wrap input {
  display: none;
}
.check_name {
  display: block;
  box-sizing: border-box;
  font-size: 16px;
  padding: 2px 0 0 50px;
  position: relative;
}
input:checked+ .check_name {
  font-weight: bold;
}
.check_name:before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border: 3px solid #ccc;
  border-radius: 4px;
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%);
}
input:checked+ .check_name:after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 14px;
  border-right: 4px solid #00597d;
  border-bottom: 4px solid #00597d;
  transform: rotate(45deg) translateY(-50%);
  position: absolute;
  top: calc(50% - 7px);
  left: 18px;
}
.search_area_submit {
  padding: 50px 0 0;
  text-align: center;
  position: relative;
}
.search_area_submit:before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 26px 40px 0 40px;
  border-color: #0090C9 transparent transparent transparent;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.search_area {
  margin: 0 0 60px;
}

button.search_area_submit_btn {
  width: 86%;
  box-sizing: border-box;
  border: none;
  background: #0090C9;
  font-size: 16px;
  color: #fff;
  padding: 16px 24px;
  box-shadow: 0 0 5px rgba(0,0,0,.2);
  cursor: pointer;
  transition: .2s;
}
button.search_area_submit_btn:hover {
  background: #0090C9;
}

.search_result_back {
  text-align: center;
  margin: 0 0 40px;
}

.search_result_back button {
  background: #aaa;
  color: #fff;
  border: none;
  padding: 12px 24px;
  font-size: 16px;
  transition: .2s;
  cursor: pointer;
}

.search_result_back button:hover {
  background: #00e0f3;
}
.search_result_tag {
  font-size: 14px;
  line-height: 1.4;
  color: #666;
  padding: 0 14px;
  margin: 0 0 -30px;
}

.cstore_list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cstore_list img {
  margin: 0 5px;
}
.cstore_list span {
  display: flex;
  align-content: center;
}
.search_result_cv_limit {
  font-size: 12px;
  font-weight: bold;
  letter-spacing: -0.025em;
  margin: 0 0 5px;
}

.product_box {
  border: 2px solid #115740;
  margin: 0 0 50px;
  border-radius: 8px;
}
.product_box p {
  margin: 0;
}
.product_box_title {
  background: #0090C9;
  color: #fff;
  padding: 12px 16px 8px;
  font-size: 28px;
  line-height: 1;
  font-weight: bold;
}
.product_box_in {
  padding: 10px 12px;
}
.product_box_top {

}
.product_box p.product_box_top_lead {
  font-size: 18px;
  font-weight: bold;
  margin: 0 0 8px;
}
.product_box p.product_box_top_lead span {
  color: #ff4747;
}
.product_box p.product_box_top_note {
  font-size: 12px;
  color: #666;
  margin: 0 0 12px;
}
.product_box_main {
  width: 100%;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: start;
  margin: 0 0 18px;
}
.product_box_main_img {
  width: 40%;
  padding: 0 16px 0 0;
}
.product_box_main_img a {
  display: block;
}
.product_box_main_img img {
  width: 100%;
  height: auto;
  vertical-align: top;
}
.product_box_main_spec {
  width: 60%;
}
.product_box table {
  border-top: 2px solid #9c9c9c;
  margin: 0;
}
.product_box table th {
  background: #eee;
  padding: 5px 0 2px;
  font-weight: normal;
}
.product_box table td {
  text-align: center;
  padding: 8px 0 5px;
}
.product_box_main_attention {
  font-size: 12px;
  color: #666;
  margin: 0 0 18px;
}
.product_box_main_cv {
  display: flex;
  justify-content: space-between;
}
.product_box_main_cv_limit {
  width: 40%;
  padding: 0 16px 0 0;
  font-weight: bold;
  text-align: center;
}
.limit_time span {
  color: #ff4747;
}
.millisecond {
  color: #ff4747;
}
.product_box_main_cv_btn {
  width: 100%;
}
.product_box_main_cv_limit+ .product_box_main_cv_btn {
  width: 60%;
}
.product_box_main_cv_btn a,
.product_box_main_cv_btn span[data-adlink] {
  display: block;
  background: #eb7063;
/*  box-shadow: 0 0 4px rgba(235, 112, 99, .5);*/
  border-radius: 8px;
  position: relative;
  text-align: center;
  font-size: 18px;
  color: #fff !important;
  text-decoration: none;
  padding: 14px 0 10px;
  overflow: hidden;
}
.product_box_main_cv_btn a:before,
.product_box_main_cv_btn span[data-adlink]:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: '';
  width: 70%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  -webkit-transform: skewX(-60deg);
  transform: skewX(-60deg);
  pointer-events: none;
  -webkit-animation: shine_l 2.25s ease-in-out 0s infinite;
  animation: shine_l 2.25s ease-in-out 0s infinite;
}
.product_box_main_cv_btn a:after,
.product_box_main_cv_btn span[data-adlink]:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 38%;
  right: 16px;
}
@-webkit-keyframes shine_l {
  75% {
    left: -90%;
  }
  100% {
    left: 120%;
  }
}
@keyframes shine_l {
  75% {
    left: -90%;
  }
  100% {
    left: 120%;
  }
}


.nbd.product_box {
  border: none;
  margin: 80px 0 50px;
  padding: 0 0 18px;
  border-bottom: 1px solid #999;
  border-radius: 0;
}
.nbd .product_box_title {
  border-bottom: 1px solid #999;
  color: inherit;
  background: none;
  padding: 8px 16px;
  margin: 0 0 12px;
}

.spec_wrap {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  border-top: 2px solid #0090C9;
  font-size: .8em;
  text-align: center;
}
.spec_cell {
  display: block;
  width: calc(100% / 3);
  box-sizing: border-box;
  border-right: 1px solid #9c9c9c;
  border-top: 1px solid #9c9c9c;
}
.spec_cell:nth-child(3n + 1) {
  border-left: 1px solid #9c9c9c;
}
.spec_cell_title {
  background: #eee;
  padding: 5px 0 2px;
  font-weight: normal;
}
.spec_cell_conts {
  text-align: center;
  padding: 8px 0 5px;
}
.spec_cs {
  width: 100%;
  border: 1px solid #9c9c9c;
  font-size: .8rem;
}
.spec_cs_title {
  background: #eee;
  padding: 5px 0 2px;
  font-weight: normal;
  text-align: center;
  border-bottom: 1px solid #9c9c9c;
}
.cstore_list {
  padding: 7px 0;
}

.main-con_conts_tag {
  color: #666;
  font-size: 1.4rem;
  margin: 0 0 15px;
}

.mitsuisumitomo .product_box_main_cv_btn a {
  background: #F3C10D;
}

/*  離脱バナー */
.popup_breakaway {
  display: none;
  background: rgba(0,0,0,0.7);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 600;
  width: 100%;
  height: 100%;
  align-items: center;
}

.popup_in {
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: 20px;
  box-sizing: border-box;
  text-align: right;
}

.btn_popup_close,
.popup_bnr {
  cursor: pointer;
  transition: .2s;
}

.popup_bnr {
  display: block;
}

.btn_popup_close {
  margin-bottom: 10px;
  transition: 0.5s;
}

.btn_popup_close:hover {
  opacity: 0.75;
}

.popup_bnr:hover {
  opacity: 1;
  transform: scale(1.05);
}

.popup_bnr img {
  max-width: 100%;
  height: auto;
}

.popup_btn {
  display: block;
  background: #eb7063;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.2;
  font-weight: bold;
  text-align: center;
  padding: 16px 16px;
  border-radius: 27px;
  max-width: 64vw;
  box-sizing: border-box;
  margin: 20px auto;
  position: relative;
  overflow: hidden;
}
.popup_btn:before {
  position: absolute;
  top: 0;
  left: -90%;
  z-index: 2;
  display: block;
  content: '';
  width: 70%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,.6) 100%);
  -webkit-transform: skewX(-60deg);
  transform: skewX(-60deg);
  pointer-events: none;
  -webkit-animation: shine_l 2.25s ease-in-out 0s infinite;
  animation: shine_l 2.25s ease-in-out 0s infinite;
}
.popup_btn:after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 6px);
  right: 16px;
}

.popup_close {
  display: inline-block;
/*  padding: 8px 20px 7px 40px;*/
  font-weight: bold;
  line-height: 1.2;
/*  background: #fff;*/
  border-radius: 18px;
}
.popup_close_icon{
  position: relative;
}
.popup_close_icon:before {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  transform: rotate(-45deg);
  position: absolute;
  top: calc(50% - 1px);
  left: -25px;
}
.popup_close_icon:after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000;
  transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 1px);
  left: -25px;
}

.barenai {
  padding: 30px 50px 80px;
  max-width: 720px;
  margin: 0 auto;
}
.barenai-cardloan_main_contents  {
  width: 750pt;
  margin: 0 auto;
  padding: 0 0 1px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  border-radius: 20px;
  background: hsla(0,0%,100%,.98);
}
.barenai_title {
  font-size: 26px;
  font-weight: bold;
  padding: 0 12px 6px;
  border-bottom: 4px solid #00b7f3;
  margin: 0 0 25px;
}

.barenai_lead {
  font-size: 18px;
  padding: 0 12px;
  margin: 0 0 40px;
}

.barenai_ranking_box {
  text-align: center;
}
.barenai_ranking_box+ .barenai_ranking_box {
  margin: 40px 0 0;
}
.barenai_ranking_box_arrow {
  margin: 8px 0;
}

.btm_ad {
  display: none;
  width: 300px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 300px;
  pointer-events: none;
  opacity: 0;
  transition: .3s;
}
.flt_allshow .btm_ad {
  display: block;
}
.btm_ad.show {
  pointer-events: auto;
  opacity: 1;
}
.btm_ad_close {
  cursor: pointer;
  width: 41px;
  height: auto;
  display: block;
  position: absolute;
  top: -46px;
  right: -3px;
  z-index: 560;
}



@media screen and (max-width: 896px) {

  .search_area_sec {
    margin: 20px 0;
  }
  .content_txt p.search_area_lead {
    font-size: 16px;
  }
  .check_wrap {
    width: calc(100% / 2);
    padding: 5px;
    box-sizing: border-box;
  }
  .check_name {
    display: block;
    box-sizing: border-box;
    text-align: center;
    font-size: 15px;
    line-height: 1.4;
    padding: 10px 6px 7px;
    position: relative;
    border: 3px solid #ccc;
    border-radius: 8px;
  }
  .check_name:before {
    content: "";
    width: 0;
    height: 0;
    border: 0;
    top: 0;
  }
  input:checked+ .check_name {
    font-weight: bold;
    color: #fff;
    background: #094494;
    border: 3px solid #094494;
  }
  input:checked+ .check_name:after {
    content: "";
    width: 0;
    height: 0;
    border: 0;
    top: 0;
  }
  .link_t {
    display: block;
  }
  .link_t a,
  .link_t span[data-adlink] {
    font-size: 1em;
  }
  .cv_btn {
    display: block;
  }
  .ad_allhide .cv_btn {
    display: block;
  }
  .cv_btn a,
  .cv_btn span[data-adlink] { 
    min-width: 88%;
    box-sizing: border-box;
    font-size: 1.15em;
    padding: 18px 12px 14px;
    border-radius: 12px;
  }
  .cv_btn a br,
  .cv_btn span[data-adlink] br {
	display: block;
  }
  .cv_copy {
    display: block;
  }
  .allhide .cv_copy {
    display: block;
  }
  .cv_copy span {
    font-size: 4.8vw;
  }
  .search_area_sec_title {
    font-size: 17px;
    margin: 0 0 6px;
  }
  button.search_area_submit_btn {
    width: 92%;
  }

  .search_result_back {
    text-align: center;
    margin: 30px 0 40px;
  }

  .search_result_back button {
    width: 80%;
  }

  .search_result_tag {
    font-size: 12px;
    padding: 0 10px;
    margin: 0 0 16px;
  }

  .product_box {
    margin: 0 0 40px;
  }
  .product_box_title {
    font-size: 22px;
  }
  .product_box p.product_box_top_lead {
    font-size: 16px;
  }
  .product_box p.product_box_top_note {
    font-size: 11px;
    margin: 0 0 5px;
  }
  .product_box_main {
    display: block;
    margin: 0 0 12px;
  }
  .product_box_main_img {
    width: 80%;
    padding: 0;
    margin: 0 auto 12px;
  }
  .cstore_list img {
    width: 32px;
  }
  .product_box_main_spec {
    width: 100%;
  }
  .product_box_main_attention {
    font-size: 11px;
    margin: 0 0 8px;
  }
  .product_box .product_box_main_attention p {
    margin: 0;
  }
  .product_box_main_cv {
    align-items: center;
  }
  .product_box_main_cv_limit {
    width: 45%;
    font-size: 2.95vw;
    line-height: 1.6;
    padding: 0;
  }
  .product_box_main_cv_limit+ .product_box_main_cv_btn {
    width: 55%;
  }
  .product_box_main_cv_btn a,
  .product_box_main_cv_btn span[data-adlink] {
    font-size: 15px;
  }
  .product_box_main_cv_limit+ .product_box_main_cv_btn a,
  .product_box_main_cv_limit+ .product_box_main_cv_btn span[data-adlink] {
    font-size: 13px;
  }
  .product_box_main_cv_limit+ .product_box_main_cv_btn a:after,
  .product_box_main_cv_limit+ .product_box_main_cv_btn span[data-adlink]:after {
    width: 8px;
    height: 8px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    top: 42%;
    right: 10px;
  }

  .popup_breakaway {
    display: none;
  }
  .btn_popup_close {
    width: 30px;
    height: auto;
    margin-bottom: 4px;
  }

  .barenai-cardloan_main_contents {
    width: 100%;
  }
  .barenai {
    padding: 30px 12px;
    max-width: 100%;
  }
  .barenai_title {
    font-size: 6.5vw;
    line-height: 1.25;
    padding: 0 8px 6px;
    margin: 0 0 10px;
  }
  .barenai_lead {
    font-size: 15px;
    padding: 0 8px;
    margin: 0 0 30px;
  }
  .barenai_ranking_box_arrow img {
    width: auto;
  }

  .btm_ad {
    display: block;
    width: 100%;
    position: fixed;
    top: -150px;
    z-index: 550;
    transition: 1s;
    bottom: auto;
    right: auto;
  }
  .flt_allhide .btm_ad {
    display: none;
  }
  .btm_ad.show {
    top: 0;
  }
  .btm_ad_bnr {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 150;
  }
  .btm_ad_close {
    width: 5%;
    height: auto;
    display: block;
    position: absolute;
    bottom: 4%;
    left: 1%;
    z-index: 560;
    top: auto;
    right: auto;
  }
  .btm_ad_close img {
    width: 100%;
  }
  .close{
    display: none;
  }
  @media only screen and (orientation:landscape) {
  .btm_ad_close {
    width: 5vh!important;
  }
  .btm_ad_bnr {
    width: 100vh!important;
    margin: 0 auto;
  }
}


}




.flame33 {
position: relative;
margin: 2em auto;
padding: 1em;
width: 90%;
color: #686868;
background-color: #fff;
border: 4px double #115740;
box-shadow: 2px 2px 2px #ccc;
}
.flame33 .flame33-title {
position: absolute;
display: block;
text-align:center;
top: -15px;
font-weight: bold;
width: 50%;
background-color: #115740;
color: #fff;
}
.flame33 p {
margin: 0;
}
.contact input,
.contact textarea {
  padding: 8px;
  border-radius: 8px;
  box-sizing: border-box;
  border: 1px solid #333;
  max-width: 100%;
}
.contact textarea {
  resize: vertical;
}
.contact_btn {
  text-align: center;
}
.contact input.submit_btn {
  background: none;
  padding: 12px 30px;
  font-weight: bold;
  font-size: 1.6rem;
}

/* 横並び　*/
.yokonarabi{
    display:flex;
      align-items: center;
      justify-content: flex-start;
		margin: 15px;
}

/* 縦並び */
.tatenarabi{
display:flex;
flex-direction:column
align-items: center;
justify-content: space-around;
margin: 20px;
}

/*監修見出しデザイン*/
.kansyu {
  padding: 0.5em;/*文字周りの余白*/
  color: #494949;/*文字色*/
  background: #dff2f0;/*背景色*/
  font-weight:bold; 
}

/*注目ポイント */
.point {
    position: relative;
    margin: 0em 0;
    padding: 0em 0.5em;
    border: solid 3px #0f6e67;
	margin: 40px 0 40px;
}
.point .box-title {
    position: absolute;
    display: inline-block;
    top: -27px;
    left: -3px;
    padding: 0 9px;
 ? ?height: 25px;
    line-height: 28px;
    font-size: 17px;
    background: #0f6e67;
    color: #ffffff;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}
.point p {
    margin: 0;
    padding: 0;
}

/* コメントタグ */
.comment{
  margin: 60px 30px;
}
.comment_customer{
  width: calc(100% - 132px);
  box-sizing: border-box;
  padding: 30px;
  margin: 0 0 0 132px;
  background:#fad2d2;
  position: relative;
}
.comment_customer:before{
  content: "";
  width: 112px;
  height: 110px;
  background-image: url(../img/comment-img01.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  left: -132px;
}
.comment_customer:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 20px 12px 0;
  border-color: transparent #fad2d2 transparent transparent;
  position: absolute;
  top: 16px;
  left: -18px;
}
.comment_operator{
  width: calc(100% - 132px);
  box-sizing: border-box;
  padding: 30px;
  margin: 0 132px 0 0;
  background:#d2d7fa;
  position: relative;
}
.comment_operator:before{
  content: "";
  width: 112px;
  height: 110px;
  background-image: url(../img/comment-img02.png);
  background-repeat: no-repeat;
  background-size: 100% auto;
  position: absolute;
  top: 0;
  right: -132px;
}
.comment_operator:after{
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 20px 0 0;
  border-color: #d2d6fa transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: -18px;
}
.comment p {
  margin: 0 0 20px;
}
.comment p:last-child {
  margin: 0;
}

/* 県別おすすめコンテンツ */
.panel {
  display: none;
}
.panel {
  padding: 15px;
}
.accordion {
  margin: 15px 0 0;
  font-weight: bold;
  background: #1e976f;
  color: #ffffff;
  padding: 10px 10px 10px 40px;
  border-radius: 5px;
  position: relative;
}
.accordion::before {
  content: "+";
  font-size: 20px;
  position: absolute;
  top: calc(50% - 0.9em);
  left: 15px;
  pointer-events: none;
}
.accordion.open::before {
  content: "-";
}
.main-con_conts_prefsearch {
  margin: 60px 0;
  text-align: center;
}
.main-con_conts_prefsearch_title {
  font-size: 28px;
  font-weight: bold;
  margin: 0 0 20px;
}
.main-con_conts_prefsearch_box {
  text-align: left;
}
select#prefectureSelect {
  padding: 15px;
  font-size: 18px;
  border-radius: 8px;
  margin: 0 15px 0 0;
}
button#searchButton {
  padding: 13px 40px;
  font-size: 18px;
  font-weight: bold;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
}
button#searchButton:hover{
  opacity: .75;
}

@media screen and (max-width: 896px) {
  .comment {
    margin: 40px 0;
    font-size: 14px;
    text-align: justify;
  }
  .comment_customer {
    width: calc(100% - 66px);
    padding: 20px 15px;
    margin: 0 0 0 66px;
    border-radius: 12px;
  }
  .comment_customer:before {
    content: "";
    width: 56px;
    height: 55px;
    background-image: url(../img/comment-img01.png);
    background-size: 56px 55px;
    left: -66px;
  }
  .comment_customer:after {
    top: 12px;
    left: -12px;
  }
  .comment_operator {
    width: calc(100% - 66px);
    padding: 20px 15px;
    margin: 0 66px 0 0;
    border-radius: 12px;
  }
  .comment_operator:before {
    content: "";
    width: 56px;
    height: 55px;
    background-image: url(../img/comment-img02.png);
    background-size: 100% auto;
    position: absolute;
    top: 0;
    right: -66px;
  }
  .comment_operator:after {
    top: 12px;
    right: -12px;
  }
  .main-con_conts_prefsearch_title {
    font-size: 6vw;
    font-weight: bold;
    margin: 0 0 12px;
  }
  select#prefectureSelect {
    width: calc(64% - 15px);
    box-sizing: border-box;
    padding: 10px;
    font-size: 14px;
    border-radius: 6px;
    margin: 0 15px 0 0;
  }
  button#searchButton {
    width: 36%;
    box-sizing: border-box;
    padding: 9px 10px;
    font-size: 14px;
    font-weight: bold;
    border: 0;
    border-radius: 6px;
  }

}


.link_btn,
.btn-style {
  text-align: center;
}
.link_btn a,
.btn-style a {
  background: #958250;
  max-width: 100%;
  padding: 0.8em 1.5em;
  text-align: center;
  color: #fff;
  display: inline-block;
  text-decoration: none;
  line-height: 1.2;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  border-radius: 0;
  position: relative;
  letter-spacing: 0.2em;
  width: 260px;
}
.link_btn a::after,
.btn-style a::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 20px;
  height: 1px;
  background: #fff;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.link_btn a:hover:after,
.btn-style a:hover:after {
  width: 25px;
}
.link_btn a:hover,
.btn-style a:hover {
  opacity: 0.7;
  -moz-opacity: 0.7;
  filter: alpha(opacity=70);
  cursor: pointer;
}

#footer {
  padding: 6em 0 0;
  text-align: left;
  background: #fff;
  color: #141414;
  font-size: 16px;
}
#footer .inner {
  width: 1200px;
  margin: 0 auto;
  max-width: 96%;
}
#footer .footer-logo {
  margin-bottom: 4%;
}
#footer .smallinner .add {
  margin-bottom: 2em;
}
#footer .smallinner .btn-style a {
  width: 130px;
  padding: 0.6em;
}
.link_btn, .btn-style {
    text-align: center;
}
.time-table {
  width: 100%;
  margin: 0 auto 0.5em;
}
#footer .time-table th,
#footer .time-table td {
  padding: 10px 5px;
}
.time-table th,
.time-table td {
  text-align: center;
  font-weight: normal;
  border-bottom: 1px solid #d1c5a5;
}
.time-table td {
  font-weight: bold;
}
.time-table thead th {
  border-top: 1px solid #d1c5a5;
  padding: 16px 5px;
}
.time-table tbody tr:first-child th,
.time-table tbody tr:first-child td {
  padding: 15px 0;
}
.time-table tbody tr:last-child th,
.time-table tbody tr:last-child td {
  padding: 15px 0;
}
.color-primary {
  color: #c4ad70;
}
#footer .footer-menu {
  text-align: center;
  padding: 1em 0;
}
#footer .footer-menu li {
  display: block;
  padding: 5px;
}
#footer li a {
  text-decoration: none;
  color: #1f1f1f;
}
#footer li a:hover {
  color: #c0af67;
}
.copyright {
  text-align: center;
  padding: 1.2em 0;
  font-size: 16px;
  color: #1f1f1f;
}

.inq {
  position: fixed;
}
.totop {
  position: fixed;
  bottom: 20px;
  right: 40px;
}
.totop_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  /* background: #5e99cc; */
  color: #fff;
  height: 70px;
  text-align: center;
  width: 70px;
  z-index: 3;
}
.totop_item > * {
  -webkit-box-flex: 1;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}
.inq .inq_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: none;
}
.inq_item_tel{
  display: none;
}
@media print, screen and (min-width: 1280px){
  .inq {
    right: 150px;
    bottom: 20px;
  }
}

@media screen and (min-width: 768px){
  #footer {
    padding: 120px 0;
  }
  #footer .smallinner {
    max-width: 570px;
    margin: auto;
  }
  #footer .smallinner .add {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .link_btn, .btn-style {
    text-align: left;
  }
  #footer .smallinner ul {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #footer .smallinner ul li {
    display: flex;
    align-items: center;
  }
  #footer .smallinner ul li:not(:last-child) {
    margin-right: 5%;
  }
  #footer .smallinner ul li img {
    margin-right: 10px;
  }
}

@media only screen and (max-width: 767px){
  #footer {
    padding: 6em 0 55px;
  }
  #footer .smallinner{
    margin-bottom: 40px;
  }
  #footer .smallinner .add {
    text-align: center;
    margin-bottom: 2em;
  }
  #footer .footer-logo .btn-style {
    margin-top: 0.5em;
  }
  #footer .footer-logo .list-pin li {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
  }
  #footer .footer-logo .list-pin img {
    max-width: 50px;
    margin-right: 10px;
  }
  .inq {
    right: 0;
    bottom: 0;
  }
  .totop {
    width: calc(100% - 16px);
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: center;
    bottom: 8px;
    left: 8px;
  }
  .totop_item {
    height: 50px;
    width: 50px;
  }
  .inq_item_tel{
    display: block;
    width: calc(100% - 50px);
    margin: 0 8px 0 0;
  }
  .inq_item_tel a{
    display: flex;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
    height: 50px;
    justify-content: center;
    font-size: 22px;
    line-height: 1;
    font-weight: bold;
    letter-spacing: 0.1em;
    color: #fff;
    background: #958250;
    position: relative;
  }
  .inq_item_tel a span{
    display: inline-block;
    position: relative;
    padding: 0 0 0 32px;
  }
  .inq_item_tel a span::before {
    content: "";
    width: 18px;
    height: 18px;
    background-image: url(../img/tell-icon.png);
    background-repeat: no-repeat;
    background-size: 18px 18px;
    position: absolute;
    top: calc(50% - 9px);
    left: 0;
  }
  .inq_item_tel a::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    width: 20px;
    height: 1px;
    background: #fff;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

/* bottom btn 2023-08-24 */
.inq .bnr{
  position: fixed;
  z-index: 20001;
}
.inq .bnr.right{
  right: 0;
  bottom: 20%;
  width: 100px;
}
.inq .bnr.bottom{
  bottom: 0;
  right: 100px;
}
.inq .bnr.bottom{
  display:-webkit-box;
  display:-ms-flexbox;
  display:flex;
}
.inq .bnr.right a + a {
  margin-top: 10px;
}
.inq .bnr.bottom a + a{
}
.inq a:hover img {
  opacity: 0.8;
  -moz-opacity: 0.8;
  filter: alpha(opacity=80);
}
.inq01 {
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 1224px),(max-height: 700px) {
  .inq .bnr.right {
    width: 75px;
  }
}

@media screen and (max-width: 767px) {
  .inq .bnr a{
    flex: 1;
  }
  .inq .bnr.bottom{
    bottom: 0;
    right: 0;
  }
  .inq01{
    position: fixed;
    right: 0;
    bottom: 12vw;
    z-index: 1;
    width: 15vw;
    max-width: 93px;
  }
}

.sc_link {
  text-align: center !important;
  margin: 30px 0 70px 0;
  line-height: 0.8;
}
.sc_link p {
  margin: 0;
}
.sc_link a {
  font-size: 1.15em;;
  display: inline-block;
  color: #1a73e8;
  font-weight: bold;
}
.sc_link a::after {
  font-family: "Font Awesome 5 Free"; 
  content: "\f35d";
  padding-left: 5px;
}
.sc_link p+ p {
  margin: 20px 0 0;
}

.main-con_conts_info_wrapper {
  display: flex;
  justify-content: space-between; /* 左右にスペースを均等に配置 */
  align-items: center; /* 上下中央揃え */
}
.main-con_conts_info {
  flex: 1; /* 左側を自由に拡張 */
}
.main-con_img {
  height: auto;
  object-fit: contain; /* アスペクト比を維持しつつ画像を表示 */
  margin: 0 0 10px;
}


.main-con_conts_wrap small {
  color: #999;
    font-size: 12px;
    line-height: 1.2 !important;
    display: block;
    margin: 0;
    padding: 0;
}


.table_scroll {
    overflow-x: auto;
	white-space: nowrap;
}
.table_scroll table {
    min-width: 896px;
}
.table_scroll table tr:nth-child(even) {
    background-color: #fafafa;
}
.table_scroll table td {
    white-space: nowrap;
}
.table_scroll_description {
    margin: 10px 0 -20px 0;
}
.table_scroll_description span {
    margin: 10px 20px 0 8px;
    font-weight: bold;
    color: #919191;	
}
.table_scroll table td img {
  max-width: 100%; 
  height: auto; 
  display: block; 
  margin: 0 auto; 
}
@media screen and (max-width: 896px) {
.table_scroll_description {
	    margin: 10px 0 0 0;
}
}
.red_btn {
    display: block;
    text-align: center;
    background-color: #d6001c;
    color: white !important;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    margin: 10px auto;
    border-radius: 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    border: 2px solid white;
	max-width: 200px;
	text-decoration: none !important;
}
.red_btn:hover {
    background-color: #a31000;
}
.red_btn:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 896px) {
.red_btn {
	max-width: 150px;
}
}
.osusume-table {
  table-layout: fixed;
  width: 100%;
}
.osusume-table td a {
    color: #37a1f2;
}
.osusume-table td {
    padding: 10px !important;
}
.osusume-table td img {
    display: block;
	max-width: 100%; 
  height: auto; 
  margin: 0 auto; 
}


.yellow-highlight {
  display: inline-block;
  background-color: yellow;
  padding: 2px 0;
margin-bottom: -60px;
}
.yellow {
  background:linear-gradient(transparent 50%, yellow 100%);
}

.osusume-btn {
    display: block;
    text-align: center;
    background-color: #d6001c;
    color: white !important;
    font-size: 16px;
    font-weight: bold;
    padding: 12px 24px;
    margin: 10px auto;
    border-radius: 50px;
    text-decoration: none !important;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2); 
    border: 2px solid white;
	max-width: 200px;
}
.osusume-btn:hover {
    background-color: #a31000;
}
.osusume-btn:active {
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 896px) {
.osusume-btn {
	max-width: 150px;
}
}


m_link,
m_link2 {
  text-align: center !important;
  margin: 10px 0;
  line-height: 1.8;
  display: block;
}
m_link p,
m_link2 p {
  margin: 0;
}
m_link a,
m_link2 a {
  font-size: 1.2em;;
  color: #37a1f2 !important;
  font-weight: bold;
  letter-spacing: -0.04em;
}
m_link a::after {
  font-family: "Font Awesome 5 Free"; 
  content: "\f35d";
  padding-left: 5px;
}
m_link p+ p,
m_link2 p+ p {
  margin: 20px 0 0;
}
@media screen and (max-width: 896px) {
  m_link,
  m_link2 {
    display: block;
  }
  m_link a,
  m_link2 a {
    font-size: 1.15em;
    color: #37a1f2 !important;
  }
}

m_link_lead {
  text-align: center !important;
  margin: 10px 0;
  line-height: 1.8;
  display: block;
}
m_link_lead p {
  margin: 0;
}
m_link_lead a {
  font-size: 1.2em;;
  color: #37a1f2 !important;
  font-weight: bold;
  letter-spacing: -0.04em;
}
m_link_lead p+ p {
  margin: 20px 0 0;
}
@media screen and (max-width: 896px) {
  m_link_lead {
    display: block;
  }
  m_link_lead a {
    font-size: 1.15em;
    color: #37a1f2 !important;
  }
}
.main-con_conts_wrap .bgb-pink {
  padding: 30px;
  border-radius: 10px;
  background: #fcf0f1;
  margin: -30px 30px 10px 30px;
}
.main-con_conts_wrap .bgb-pink p {
  margin: 30px 0;
}
.main-con_conts_wrap .bgb-pink p:first-child {
  margin: 0 0 30px;
}
.main-con_conts_wrap .bgb-pink p:last-child {
  margin: 0;
}

@media screen and (max-width: 896px) {
  .main-con_conts_wrap .bgb-pink {
    padding: 20px;
    background: #fcf0f1;
    border-radius: 10px;
    margin: -20px 0 -5px 0;
  }
  .main-con_conts_wrap .bgb-pink p {
    margin: 25px 0;
  }
  .main-con_conts_wrap .bgb-pink p:first-child {
    margin: 0 0 25px;
  }
  .main-con_conts_wrap .bgb-pink p:last-child {
    margin: 0;
  }
}