﻿@charset "utf-8";

/*----------------------------------------------------------------

layout Set

----------------------------------------------------------------*/

/* Header
----------------------------------------------- */
.header {
  position: relative;
  z-index: 9999;
  width: 100%;
  padding: 0;
  background: #fff;
}
.header__logo {
  position: relative;
  top: 13px;
  margin: 0 0 0 3%;
  padding: 0;
}
.header__logo-img {
  height: 26px;
}
@media screen and (max-width: 991px) {
  .header {
    position: fixed;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
  }
  .header__contact {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 90px;
    width: 94%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .header__logo {
    margin: 0;
  }
  .header__logo-img {
    height: 38px;
  }
  .header__contact {
    margin-top: 20px;
  }
  .header__contact-list {
    display: flex;
  }
  .header__contact-item img {
    width: auto;
    height: 46px;
  }
}
/* Nav
----------------------------------------------- */
/*トグル*/
.toggle {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 9999;
  width: 40px;
  height: 40px;
  border: none;
  text-align: center;
  cursor: pointer;
  background: none;
  transition: all 0.3s ease-out;
}
.toggle__btn {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 18px;
  margin-top: 11px;
  transition: all 0.3s ease-out;
}
.toggle span {
  position: absolute;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--color-text);
  transition: all 0.3s ease-out;
}
.toggle span:nth-of-type(1) {
  top: 0;
}
.toggle span:nth-of-type(2) {
  top: 8px;
}
.toggle span:nth-of-type(3) {
  bottom: 0;
}
.toggle.active span:nth-of-type(1) {
  transform: translateY(7.5px) rotate(-45deg);
}
.toggle.active span:nth-of-type(2) {
  opacity: 0;
}
.toggle.active span:nth-of-type(3) {
  transform: translateY(-8.5px) rotate(45deg);
}
/* スマホ用ナビゲーション */
.sp-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 100vw;
  max-width: 420px;
  height: 100vh;
  padding: 60px 2em 100px;
  overflow-y: scroll;
  background: var(--color-main-light);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transform: translateX(100vw);
  transition: all 0.5s ease-out;
}
.sp-menu.active {
  transform: translateX(0%);
}
.sp-menu__nav {
  background: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1em;
}
.sp-menu__list {
  width: 90%;
  max-width: 300px;
  margin: 0 auto;
}
.sp-menu__list li {
  margin-bottom: 0;
  border-top: solid 1px var(--color-border);
}
.sp-menu__list > li:first-child {
  border-top: none;
}
.sp-menu__list li a,
.sp-menu__list li span {
  position: relative;
  display: block;
  color: var(--color-text);
  text-decoration: none;
  background: url(../images/common/icon-arrow01.png) no-repeat right center;
  background-size: 1em;
  font-family: var(--font-min);
}
.sp-menu__list li span {
  background-image: url(../images/common/icon-arrow-u01.png);
}
.sp-menu__list > li > a,
.sp-menu__list > li > span {
  padding: 0.8em 1em 0.8em 0.2em;
}
.sp-menu__list > li > a strong,
.sp-menu__list > li > span strong {
  font-weight: 400;
}
.sp-menu__list .sub-menu {
  width: 97%;
  padding: 0;
  margin: 0 0 0 3%;
}
.sp-menu__list .sub-menu li a {
  padding: 0.6em 1em 0.6em 1.2em;
  background-position: right center;
  font-size: 0.9em;
}
.sp-menu__list .sub-menu li a::before {
  position: absolute;
  top: 1.4em;
  left: 0.2em;
  content: "";
  display: block;
  width: 0.5em;
  height: 1px;
  background: var(--color-border);
}
/* スマホ用コンタクト */
.sp-menu__contact {
  margin-top: 2em;
  text-align: center;
}
.sp-menu__contact-item {
  margin: 0.5em auto 0;
}
/* スマホ用SNS */
.sp-menu__sns {
  margin-top: 2em;
  text-align: center;
}
.sp-menu__sns-list {
  display: flex;
  justify-content: center;
  gap: 0.8em;
}
.sp-menu__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-radius: 50%;
  background: var(--color-main);
  line-height: 1;
  letter-spacing: 0;
}
.sp-menu__sns-list img {
  height: 1.6em;
}
/* PC用ナビゲーション */
.pc-menu {
  clear: both;
  padding: 0.5em 0 0;
  /*border-top: 1px solid #e6dfdb;
  border-bottom: 1px solid #e6dfdb;*/
}
.pc-menu__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.pc-menu__list > li {
  position: relative;
  text-align: center;
  margin: 0;
  transition: all 0.3s ease-out;
}
.pc-menu__list > li:hover > a,
.pc-menu__list > li:hover > span {
  background-color: #f6f2f0;
}
.pc-menu__list > li a,
.pc-menu__list > li span {
  position: relative;
  text-align: center;
  display: block;
  padding: 1.5em 1em 1.6em;
  margin: 0;
  font-size: clamp(12px, 1.3vw, 16px);
  line-height: 1;
  color: var(--color-text);
  font-family: var(--font-min);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease-out;
}
.pc-menu__list > li ul {
  position: absolute;
  left: 0;
  display: none;
}
.pc-menu__list > li ul li {
  margin: 0;
  border-bottom: solid 1px #e6dfdb;
}
.pc-menu__list > li ul li:last-of-type {
  border-bottom: none;
}
.pc-menu__list > li ul li a {
  z-index: 1000;
  width: 280px;
  padding: 0.8em 1em;
  font-size: 0.9em;
  text-align: left;
  background: #e0dddc;
  transition: all 0.3s ease-out;
}
.pc-menu__list > li ul li:nth-child(even) a {
  background: #eae7e6;
}
.pc-menu__list > li ul li a:hover {
  background: #f6f2f0;
}
.pc-menu__list > li:hover ul {
  display: block;
}
@media screen and (max-width: 991px) {
  .pc-menu {
    display: none;
  }
}
@media screen and (min-width: 992px) {
  .toggle,
  .sp-menu {
    display: none;
  }
}

/* breadcrumb
----------------------------------*/
#breadcrumb {
  width: 100%;
  margin-top: 5em;
  padding: 0.8em 5% 1em;
  color: #888;
  overflow: auto;
  white-space: nowrap;
  border-top: #dadada 1px solid;
}
#breadcrumb ul li {
  font-size: 0.5em;
  display: inline-block;
  margin: 0 1em 0 0;
  background: url(../images/common/icon-arrow02.png) no-repeat left center;
  background-size: 1em;
  padding: 0 0 0 1.4em;
}
#breadcrumb ul li.home {
  background: none;
  padding-left: 0;
}
#breadcrumb ul li a {
  color: #888;
  display: block;
  text-decoration: none;
}
#breadcrumb ul li a:hover {
  color: #aaa;
}
@media screen and (min-width: 768px) {
  #breadcrumb {
    padding-top: 0;
    border-top: none;
  }
}
@media screen and (min-width: 992px) {
  #breadcrumb > ul {
    max-width: 1080px;
    margin: 0 auto;
  }
}

/* コンテンツ枠 */
.wrapper {
  width: 100%;
  margin: 2.5em auto 0;
}
.content {
  width: 100%;
}
.main {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
.wrapper.home,
.wrapper.home .main {
  max-width: none !important;
}
.post {
  margin-bottom: 2.5em;
  background: #fff;
}
.inner {
  width: 92%;
  max-width: 800px;
  margin: 0 auto;
}
.inner.is-wide {
  max-width: 1200px;
}
:root {
  --section-space: 3em;
}
.section.-MT {
  margin-top: var(--section-space);
}
.section.-MB {
  margin-bottom: var(--section-space);
}
.section.-PB {
  padding-bottom: var(--section-space);
}
.section.-PT {
  padding-top: var(--section-space);
}
@media screen and (min-width: 992px) {
  :root {
    --section-space: 6em;
  }
  .wrapper {
    margin-top: 4em;
    max-width: 1200px;
  }
  .content {
    display: flex;
    flex-wrap: nowrap;
  }
  .two-column .main {
    width: 74%;
    max-width: 720px;
    margin: 0 6% 0 0;
  }
  .two-column #sidebar {
    width: 300px;
    margin: 0 0 0;
  }
}
/* アイキャッチ */
#eyecatch {
  margin: 0 auto 0px;
  text-align: center;
}
#eyecatch img {
  margin: 0 auto 20px;
  height: auto;
}

/* ループ */
.news_list-wrap {
  margin-bottom: 1.5em;
}
.news_list-wrap a {
  display: block;
  width: 100%;
  padding: 15px;
  color: #6c6767;
  text-decoration: none;
  background: #fff;
  border: 1px solid #f2f2f2;
  transition: all 0.3s ease-out;
}
.news_list-wrap a:hover {
  box-shadow: 0 0 15px rgba(19, 19, 19, 0.1);
  transform: translateY(-5px);
  color: #6c6767;
  opacity: 0.7;
}
.news_list-wrap .news_list-thumb {
  position: relative;
  width: 100%;
  margin-bottom: 0.5em;
}
.news_list-wrap .news_list-thumb::before {
  display: block;
  padding-top: 66.66%;
  /* 縦横比 4:6=66.66% */
  content: "";
}
.news_list-wrap .news_list-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
}
.news_list-wrap .news_list-text time {
  display: block;
  margin-top: 15px;
  font-size: 12px;
}
.news_list-wrap .news_list-text h3 {
  padding: 0;
  margin: 10px 0 0;
  font-size: 110%;
  line-height: 1.5;
  background: none;
  border: none;
}
/* ページャー */
.pagination {
  clear: both;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px 0;
  position: relative;
  font-size: 13px;
}
.pagination span,
.pagination a {
  display: block;
  width: auto;
  margin: 2px;
  padding: 8px;
  border: 1px solid #aaa;
  background-color: #fff;
  text-decoration: none;
  text-align: center;
  line-height: 16px;
  color: #aaa;
}
.pagination a:hover,
.pagination .current {
  color: #fff;
  border-color: #aaa;
  background-color: #aaa;
}
.pagination a.prev {
  margin-right: 12px;
}
.pagination a.next {
  margin-left: 12px;
}
.pagination span.page_num {
  display: none;
}

/* sidebar
----------------------------------------------- */
#sidebar {
  width: 94%;
  margin: 60px auto 0;
  font-size: 0.9em;
}
#sidebar section {
  margin-bottom: 30px;
}
#sidebar p {
  margin-bottom: 15px;
  line-height: 1.5;
}

#sidebar p.banner {
  margin-bottom: 20px;
  text-align: center;
}

#sidebar p.banner img {
  max-width: 100%;
  height: auto;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
#sidebar p.banner a img:hover {
  cursor: pointer;
  opacity: 0.7;
}
section.widget h2,
section.widget h3 {
  clear: both;
  margin: 1.5em 0 0.5em;
  border: none;
  background: none;
  padding: 0;
  font-weight: bold;
  font-size: 1.3em;
}
section.widget ul {
  margin: 0 0 1.5em 0;
  border-bottom: 1px dotted #ccc;
}
section.widget li {
  text-align: left;
  color: #666;
  padding: 0;
  margin: 0;
  border-bottom: 1px dotted #ccc;
}

section.widget li:last-child {
  border-bottom: none;
}

section.widget li a {
  text-decoration: none;
  display: block;
  line-height: 1.5;
  background: url(../images/common/icon-arrow02.png) no-repeat left 20px;
  background-size: 6px;
  padding: 14px 10px 12px 14px;
  color: #666;
}
section.widget li .sub-menu {
  margin: 0 0 0 14px;
  border-top: 1px dotted #ccc;
  border-bottom: none;
}

section.widget li:last-child a {
  border: 0;
}

/* カレンダー */
.widget_calendar table {
  margin: 0 auto;
  width: 90%;
}

.widget_calendar table caption {
  padding: 10px 0;
  text-align: center;
  font-weight: bold;
}

.widget_calendar table th,
.widget_calendar table td {
  padding: 3px;
  text-align: center;
}

.widget_calendar table th:nth-child(6),
.widget_calendar table td:nth-child(6) {
  color: #3a589d;
}
.widget_calendar table th:nth-child(7),
.widget_calendar table td:nth-child(7) {
  color: #950000;
}
.widget_calendar table td#prev {
  text-align: left;
}

.widget_calendar table td#next {
  text-align: right;
}

.widget_calendar a {
  font-weight: bold;
  color: #444;
}
/* コメント */
section.widget .wp-block-latest-comments a {
  display: inline;
}

/* サイド投稿リスト　
-------------*/
section.widget .top-list {
  margin: 10px 0;
}

section.widget .top-list li {
  border-bottom: 1px dashed #ccc;
  background-color: #fff;
  margin-bottom: 15px;
}

section.widget .top-list a {
  display: block;
  text-decoration: none;
  color: #6c6767;
  padding: 0;
}

section.widget .top-list a:after {
  display: block;
  clear: both;
  content: "";
}

section.widget .top-list a:hover {
  background-color: #f6f6f6;
  opacity: 0.8;
}

section.widget .top-list img {
  float: left;
  width: 30%;
  max-height: 105px;
  margin: 0 4% 15px 0;
  object-fit: cover;
  object-position: top;
  font-family: "object-fit: cover; object-position: top;";
}

section.widget .top-list .text {
  float: left;
  width: 66%;
}

section.widget .top-list h4 {
  font-size: 1em;
  padding: 0;
  line-height: 1.5;
  margin-top: 0;
  margin-bottom: 10px;
  background: none;
  border: none;
  clear: none;
  color: #57504c;
  font-weight: bold;
}

section.widget .post-date {
  font-size: 0.8em;
  margin-bottom: 8px;
  color: #666;
}

section.widget .cat-data {
  font-size: 0.6em;
  padding: 3px 5px;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  border-radius: 3px;
  background-color: #464646;
}

section.widget .top-list p {
  font-size: 0.9em;
  line-height: 1.6;
  margin: 0 0 10px;
  clear: none;
}

/* fixedコンタクト
----------------------------------*/
#fixed_contact {
  position: fixed;
  bottom: 0;
  width: 100%;
  max-height: 54px;
  text-align: center;
  padding: 7px 0 3px;
  background: rgba(246, 246, 246, 0.9);
  z-index: 1000;
}
#fixed_contact p {
  font-size: 11px;
  margin-bottom: 0;
}
#fixed_contact .tel {
  font-size: 1.5em;
  color: #ff9f00;
  line-height: 1.2;
}
#fixed_contact .tel span {
  padding: 0;
  font-size: 1.5em;
}
#fixed_contact .tel a {
  color: #ff9f00;
}

#fixed_contact .telimg {
  float: left;
  width: 40%;
  text-align: center;
  padding: 0 0 0 1%;
  height: 54px;
}
#fixed_contact .btn {
  float: right;
  width: 16%;
  padding: 0 1%;
  text-align: center;
  height: 54px;
}

/* PageTOP */
#pagetop {
  position: fixed;
  bottom: 10px;
  right: 15px;
  text-align: right;
  padding: 5px 0;
  z-index: 1000;
}
#pagetop a img {
  vertical-align: bottom;
  width: 50px;
}
@media screen and (min-width: 992px) {
  #pagetop {
    bottom: 30px;
    right: 30px;
  }
  #pagetop a img {
    width: 70px;
  }
}
/* フッター01 */
.footer01 {
  margin: 0 auto 0;
  width: 100%;
  padding: 4em 0 3em;
  background: #7f94a9;
}
.footer01 .footer__inner {
  margin: 0 auto 0;
  width: 94%;
}
.footer01 .footer-info {
  text-align: center;
  color: #fff;
}
.footer01 .footer__logo {
  margin-bottom: 2em;
}
.footer01 .footer__logo-img {
  width: 180px;
}
.footer01 .footer__address {
  margin-bottom: 2em;
}
.footer01 .footer__address-text {
  margin-bottom: 1em;
  line-height: 1.8;
}
.footer01 .footer__address-tel a {
  font-size: 2em;
  color: #fff;
  font-family: var(--font-en);
  text-decoration: none;
}
.footer01 .footer__contact {
  margin-bottom: 2em;
}
.footer01 .footer__contact-item {
  margin: 1em auto;
  max-width: 300px;
}
.footer01 .footer__sns-list {
  display: flex;
  justify-content: center;
  gap: 0.8em;
}
.footer01 .footer__sns-item {
  margin: 0 !important;
}
.footer01 .footer__sns-link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1em;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.3);
  line-height: 1;
  letter-spacing: 0;
  transition: all 0.3s ease-out;
}
.footer01 .footer__sns-item img {
  height: 1.6em;
}
.footer01 .footer__sns-link:hover {
  background: rgba(0, 0, 0, 0.6);
}
/* フッターメニュー */
.footer01 .footer-menu {
  width: 90%;
  margin: 2.5em auto;
}
.footer01 .footer-menu__list li {
  color: var(--color-text);
  padding: 0;
  margin: 0;
}
.footer01 .footer-menu__list li a {
  display: block;
  padding: 0.8em 0.5em;
  color: #fff;
  line-height: 1.5;
  text-decoration: none;
}
.footer01 .footer-menu__list li a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .footer01 {
    font-size: 0.9em;
  }
  .footer01 .footer-menu__list {
    border-top: 1px dotted rgba(255, 255, 255, 0.3);
  }
  .footer01 .footer-menu__list li {
    text-align: left;
    border-bottom: 1px dotted rgba(255, 255, 255, 0.3);
  }
  .footer01 .footer-menu__list li a {
    padding: 0.8em 0.5em 0.8em 1.5em;
    background: url(../images/common/icon-arrow03.png) no-repeat left 1.2em;
    background-size: 0.8em;
  }
}
@media screen and (min-width: 768px) {
  .footer01 .footer__logo-img {
    width: 244px;
  }
  .footer01 .footer__contact {
    margin-bottom: 0.5em;
  }
  .footer01 .footer__contact-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .footer01 .footer-info .btn li {
    margin: 0;
  }
  .footer01 .footer-menu {
    border-top: solid 1px rgba(255, 255, 255, 0.3);
    padding-top: 1.5em;
  }
  .footer01 .footer-menu__list {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1em;
  }
}
@media screen and (min-width: 992px) {
  .footer01 #footer {
    margin-top: 0;
    padding-top: 40px;
  }
  .footer01 #footer .footermenu {
    width: 90%;
    max-width: 1280px;
    margin: 0 auto;
  }
  .footer01 #footer .footermenu ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    border: none;
  }
  .footer01 #footer .footermenu li {
    display: flex;
    margin: 0;
    border-bottom: none;
  }
  .footer01 #footer .footermenu li a {
    margin: 0 0.5em;
  }
}
/* フッター02 */
.footer02 #footer {
  /*margin-top: 50px;*/
  padding-top: 40px;
  border-top: 1px solid #ccc;
  background: #f6f6f6;
  color: #666;
}
.footer02 #footera {
  color: #6c6767;
  text-decoration: none;
}
.footer02 #footera:hover {
  color: #999;
  text-decoration: underline;
}
.footer02 .footer-info {
  margin: 0 auto 20px;
  width: 94%;
  font-size: 0.9em;
}
.footer02 .footer-info .logo {
  margin-bottom: 2em;
  text-align: center;
}
.footer02 .footer-info p {
  margin-bottom: 1em;
}
.footer02 .footer-info .footermenu h3 {
  margin: 1.5em 0 0.5em;
  border: none;
  background: none;
  padding: 0;
  font-weight: bold;
  font-size: 1.3em;
}
.footer02 .footer-info .footermenu ul {
  margin: 0 0 1.5em 0;
  border-bottom: 1px dotted #ccc;
}
.footer02 .footer-info .footermenu li {
  text-align: left;
  color: #666;
  padding: 0;
  margin: 0;
  border-bottom: 1px dotted #ccc;
}

.footer02 .footer-info .footermenu li:last-child {
  border-bottom: none;
}

.footer02 .footer-info .footermenu li a {
  display: block;
  line-height: 1.5;
  background: url(../images/common/icon-arrow02.png) no-repeat left 20px;
  background-size: 6px;
  padding: 14px 10px 12px 14px;
  color: #666;
}

.footer02 .footer-info .footermenu li .sub-menu {
  margin: 0 0 0 14px;
  border-top: 1px dotted #ccc;
  border-bottom: none;
}
@media screen and (min-width: 768px) {
  .footer02 #footer {
    /*margin-top: 70px;*/
    padding: 30px 0 30px;
    font-size: 0.9em;
  }
  .footertel {
    display: none;
  }

  .footer02 .footer-info {
    width: 94%;
    margin: 0 auto;
  }
  .footer02 .footer-info .itemleft {
    float: left;
    width: 45%;
    padding-right: 5%;
  }
  .footer02 .footer-info .itemleft .logo {
    text-align: left;
    max-width: 380px;
  }
  .footer02 .footer-info .itemleft p {
    text-align: left;
  }
  .footer02 .footer-info .itemright {
    float: right;
    width: 55%;
  }
  .footer02 .footer-info .itemright .footermenu {
    float: left;
    width: 50%;
  }
  .footer02 .footer-info .itemright .footermenu section:first-child h3 {
    margin-top: 0;
  }
  .footer02 .footer-info .itemright .footermenu ul {
    margin-right: 1em;
  }
}
@media screen and (min-width: 992px) {
  .footer02 .footer-info .itemleft {
    width: 40%;
    padding-right: 5%;
  }
  .footer02 .footer-info .itemleft .logo {
    text-align: left;
    max-width: 380px;
  }
  .footer02 .footer-info .itemleft p {
    text-align: left;
  }
  .footer02 .footer-info .itemright {
    float: right;
    width: 55%;
  }
  .footer02 .footer-info .itemright .footermenu {
    float: left;
    width: 46%;
    margin: 0 2% 0;
  }
  .footer02 .footer-info .itemright .footermenu section:first-child h3 {
    margin-top: 0;
  }
  .footer02 .footer-info .itemright .footermenu ul {
    margin-right: 1em;
  }
}
/* コピーライト */
.copyright {
  clear: both;
  margin: 0 !important;
  padding: 0;
  text-align: center;
  font-size: 0.7em;
  color: #fff;
}
.copyright a {
  color: #fff;
  text-decoration: none;
}
.copyright a:hover {
  text-decoration: underline;
}
/* fixed_line_pc
----------------------------------------------- */
#fixed_line_pc {
  display: none;
}

/* response
----------------------------------------------- */
.response {
  text-align: center;
  margin: 30px 0;
}
.response p {
  text-align: center;
}
.response .contact-btn {
  width: 100%;
  text-align: center;
  margin: 15px auto 0;
  border-radius: 10px;
  font-weight: bold;
}
.contact-btn a {
  width: 90%;
  margin: 0 auto;
  padding: 5% 1%;
  display: block;
  text-decoration: none;
  color: #fff;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
}
.contact-btn a:hover {
  color: #fff;
}
.contact-btn:hover {
  opacity: 0.8;
}

.response .contact-btn.tel {
  background: #fa9038;
  border-bottom: 6px solid #cb6919;
}
.contact-btn.tel span {
  display: inline-block;
}
.contact-btn.tel .telnum {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 2em;
  color: #ff0;
  background: url(../images/common/icon-tel03.png) no-repeat left center;
  background-size: 36px;
  padding: 0 0 0 40px;
  text-decoration: none;
}
.contact-btn.tel .sm {
  font-size: 0.9em;
  line-height: 1.5;
}
.contact-btn.line {
  background: #00b900;
  border-bottom: 6px solid #009d00;
}

/* 768px～ メディアクエリ開始 */
@media screen and (min-width: 768px) {
  /* ループ */
  .news_list-wrap .news_list-text p {
    margin: 8px 0 0;
    font-size: 85%;
  }
  .news_list-wrap a {
    display: flex;
    padding: 20px;
  }
  .news_list-wrap .news_list-thumb {
    width: 240px;
    margin: 0 15px 0 0;
  }
  .news_list-wrap .news_list-text {
    width: calc(100% - 255px);
  }
  .news_list-wrap .news_list-text time {
    margin-top: 5px;
  }
  .news_list-wrap .news_list-text h3 {
    margin-top: 5px;
    font-size: 125%;
  }

  /* fixed_line_pc
  ----------------------------------------------- */
  #fixed_line_pc {
    z-index: 100;
    display: block;
    position: fixed;
    bottom: 110px;
    right: 0px;
    width: 70px;
    opacity: 0.9;
  }
}
