@charset "utf-8";

/*
Theme Name:株式会社みかわ屋
*/

:root {
  /* font-family */
  --font-gothic: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-awesome: "FontAwesome";
  /* color */
  --color-blue: #005bc3;
  --color-rightblue: #f2f6fa;
  --color-white: #fff;
  --color-yellow: #ed9d0f;
  --color-rightyellow: #fffab1;
  --color-pink: #d65b5b;
  --color-rightpink: #f5d3d3;
  --color-green: #1f7a5b;
  --color-orange: #e58b20;
  --color-gray: #333;
  --color-rightgray: #ccc;
}

/*===============================
 全体共通
===============================*/
body {
  background: var(--color-white);
  color: var(--color-gray);
  font-family: var(--font-gothic);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: .03em;
  line-height: 2;
  transition: all .3s linear;
  word-break: break-word;
  position: relative;
}

ul,ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

@media (max-width: 768px)  {
  .col-reverse {
    flex-direction: column-reverse; 
  }
}

/*---------- PC・スマホ切り替え ----------*/
.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width:640px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

/*---------- 背景 ----------*/
.bg_wt { /* ホワイト */
  background: var(--color-white);
}

.bg_rb { /* ライトブルー */
  background: var(--color-rightblue);
}

.bg_bl { /* ブルー */
  background: var(--color-blue);
}

.bg_yl { /* イエロー */
  background: var(--color-rightyellow);
}

/*---------- 枠 ----------*/
.wrapper {
  box-sizing: border-box;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 30px;
}

.box_1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.box_750 {
  max-width: 750px;
  margin: 0 auto;
}

.waku_pink {
  background: var(--color-rightpink);
  border-radius: 25px;
  overflow: hidden;
}

@media screen and (max-width:640px) {
  .wrapper {
    padding: 0 15px;
  }
}

/*---------- リンク ----------*/
a {
  color: var(--color-blue);
  transition: all .5s;
}

a:hover {
  text-decoration: none;
}

/*---------- ボタン ----------*/
/* ホワイトボタン */
.btn_wt {
  box-sizing: border-box;
  background: var(--color-white);
  color: var(--color-blue);
  border: 2px solid var(--color-blue);
  border-radius: 100px;
  font-weight: bold;
  line-height: 2;
  padding: 10px 30px;
  margin-top: 1.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all .5s linear;
  min-width: 200px;
}

.btn_wt:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* ブルーボタン */
.btn_bl {
  box-sizing: border-box;
  background: var(--color-blue);
  color: var(--color-white);
  border: 2px solid var(--color-blue);
  border-radius: 100px;
  font-weight: bold;
  line-height: 2;
  padding: 10px 30px;
  margin-top: 1.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all .5s linear;
  min-width: 200px;
}

.btn_bl:hover {
  background: var(--color-white);
  color: var(--color-blue);
}

.btn_bl:disabled {
  opacity: 0.5;
}

.btn_bl:disabled:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/* グリーンボタン */
.btn_gr {
  box-sizing: border-box;
  background: var(--color-green);
  color: var(--color-white);
  border: 2px solid var(--color-green);
  border-radius: 100px;
  font-weight: bold;
  line-height: 2;
  padding: 10px 30px;
  margin-top: 1.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all .5s linear;
  min-width: 200px;
}

.btn_gr:hover {
  background: var(--color-white);
  color: var(--color-green);
}

/* ピンクボタン */
.btn_pi {
  box-sizing: border-box;
  background: var(--color-pink);
  color: var(--color-white);
  border: 2px solid var(--color-pink);
  border-radius: 100px;
  font-weight: bold;
  line-height: 2;
  padding: 10px 30px;
  margin-top: 1.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all .5s linear;
  min-width: 200px;
}

.btn_pi:hover {
  background: var(--color-white);
  color: var(--color-pink);
}

/* オレンジボタン */
.btn_or {
  box-sizing: border-box;
  background: var(--color-orange);
  color: var(--color-white);
  border: 2px solid var(--color-orange);
  border-radius: 100px;
  font-weight: bold;
  line-height: 2;
  padding: 10px 30px;
  margin-top: 1.5em;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all .5s linear;
  min-width: 200px;
}

.btn_or:hover {
  background: var(--color-white);
  color: var(--color-orange);
}

/*---------- 見出し ----------*/
h2,h3,h4,h5,h6 {
  font-family: var(--font-gothic);
  font-weight: bold;
}

h2 {
  color: var(--color-blue);
  display: block;
  font-weight: bold;
  font-size: 36px;
}

h3 {
  font-size: 26px;
}

@media screen and (max-width:960px) {
  h2 {
    font-size: 30px;
  }
  h3 {
    font-size: 22px;
  }
}

/*---------- お知らせリスト ----------*/
.news_list li {
  border-bottom: 1px dotted #b8b8cc;
}

.news_list li a {
  color: var(--color-gray);
  display: flex;
  align-items: flex-start;
  padding: 20px;
}

.news_list li a:hover {
  color: var(--color-blue);
  opacity: 0.6;
}

.news_list li img {
  border: 1px solid #eaeaea;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  width: 130px;
}

.news_list li div {
  padding: 10px;
}

.news_list li span:first-of-type {
  margin-right: 1.5em;
}

.news_list li p {
  font-size: 22px;
  margin: 0;
}

@media screen and (max-width:640px) {
  .news_list li a {
    padding: 20px 10px;
  }
  .news_list li img {
    width: 27vw;
  }
  .news_list li span {
    font-size: 14px;
  }
  .news_list li p {
    font-size: 18px;
  }
}

/*---------- テーブル ----------*/
.wp-block-table,
.uk-table {
  border-collapse: collapse;
  box-sizing: border-box;
  table-layout: fixed;
  word-break: break-all;
  word-wrap: break-all;
}

.wp-block-table caption,
.uk-table caption {
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
  font-size: 16px;
  padding: 10px;
}

.wp-block-table th,
.uk-table th {
  color: var(--color-gray);
  font-weight: bold;
  font-size: 16px;
  vertical-align: top;
  width: 20em;
  text-align: left;
}

.wp-block-table th,
.uk-table th,
.wp-block-table td,
.uk-table td {
  box-sizing: border-box;
  border: none!important;
  border-bottom: 1px dotted var(--color-rightgray)!important;
}

.wp-block-table tr:last-child th,
.uk-table tr:last-child th,
.wp-block-table tr:last-child td,
.uk-table tr:last-child td {
  border: none!important;
}

@media screen and (max-width:640px) {
  .wp-block-table th,
  .uk-table th,
  .wp-block-table td,
  .uk-table td {
    display: block;
    width: 100%;
  }
  .wp-block-table th,
  .uk-table th {
    border-bottom: none!important;
  }
  .wp-block-table td,
  .uk-table td {
    padding: 0 12px 16px;
  }
}

/*---------- ページナビ ----------*/
.wp-pagenavi {
  text-align: center;
  margin: 2em auto;
}

/*---------- アニメーション ----------*/
/* 下から出現 */
.fadeUpTrigger{
  opacity: 0;
}

/* 左から出現 */
.fadeRightTrigger{
  opacity: 0;
}

/* 右から出現 */
.fadeLeftTrigger{
  opacity: 0;
}

/* 順番に下から出現 */
.delayScroll > * {
  opacity: 0;
}

/* 左から出現 */
.fadeRight{
  animation: fadeRightAnime 1s forwards;
  opacity: 0;
}
@keyframes fadeRightAnime{
  from {
    opacity: 0;
    transform: translateX(-80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 右から出現 */
.fadeLeft{
  animation: fadeLeftAnime 1s forwards;
  opacity: 0;
}
@keyframes fadeLeftAnime{
  from {
    opacity: 0;
    transform: translateX(80px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* 下から出現 */
.fadeUp {
  animation: fadeUpAnime 1s forwards;
  opacity: 0;
}
@keyframes fadeUpAnime{
  from {
    opacity: 0;
    transform: translateY(80px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/*===============================
 header
===============================*/
header {
  background: var(--color-white);
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 150;
}

.header_wrapper {
  padding: 5px;
}

header a {
  color: var(--color-gray);
  font-weight: bold;
}

@media screen and (max-width:960px) {
  .header_wrapper {
    padding: 15px;
  }
}

/*---------- logo ----------*/
header h1,
header .logo {
  width: 255px;
  margin: 0;
}

header h1 a:hover,
header .logo a:hover {
  opacity: 0.6;
}

header h1 img,
header .logo img,
header h1 a,
header .logo a {
  display: block;
  font-size: 12px;
  font-family: var(--font-gothic);
  font-weight: normal !important;
  line-height: 1.2;
}

@media screen and (max-width:960px) {
  header h1,
  header .logo {
    margin: 0;
  }
}

/*---------- pc nav ----------*/
.header_nav_pc > div {
  gap: 15px;
}

.header_nav_pc > div a:nth-of-type(1) img {
  height: 30px;
}

.header_nav_pc > div a:nth-of-type(1):hover {
  opacity: 0.8;
}

.header_nav_pc > div a:nth-of-type(2) {
  background: var(--color-blue);
  border: 2px solid var(--color-blue);
  color: var(--color-white);
  padding: 5px 15px;
}

.header_nav_pc > div a:nth-of-type(2)::before {
  content: "\f0e0";
  font-family: var(--font-awesome);
  padding-right: 0.5em;
}

.header_nav_pc > div a:nth-of-type(2):hover {
  color: var(--color-blue);
  background: var(--color-white);
}

.uk-navbar-container {
  background: transparent !important;
  margin-top: 10px;
}

.uk-navbar-container.active {
  display: block;
}

.uk-navbar-nav {
  gap: 0;
}

.uk-navbar-nav li a {
  color: var(--color-gray);
  font-size: 16px;
  font-family: var(--font-gothic);
  font-weight: 600;
  padding: 0 10px;
  min-height: 30px;
}

.uk-navbar-nav li a:hover {
  opacity: 0.8;
}

.uk-navbar-nav li p {
  margin: 0;
}

.uk-navbar-dropdown {
  min-width: 230px;
}

@media screen and (max-width:1155px) {
  .uk-navbar-nav li a {
    font-size: 1.3vw;
    padding: 0 0.7vw;
  }
}

@media screen and (max-width:960px) {
  .header_nav_pc {
    display: none;
  }
  .uk-navbar-container {
    display: none;
  }
}

/*---------- ハンバーガーメニュー ----------*/
.nav_btn {
  display: none;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1100;
  background: var(--color-white);
  border: none;
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  padding: 0;
}

.nav_btn span{
  display: inline-block;
  transition: all .5s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-gray);
  width: 45%;
}

.nav_btn span:nth-of-type(1) {
  top:15px; 
}

.nav_btn span:nth-of-type(2) {
  top:23px;
}

.nav_btn span:nth-of-type(3) {
  top:31px;
}

.nav_btn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.nav_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn.active span:nth-of-type(3){
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

@media screen and (max-width:960px) {
  .nav_btn {
    display: block;
  }
}

/*---------- sp nav ----------*/
.header_nav_sp {
  display: none;
  box-sizing: border-box;
  background: var(--color-blue);
  color: var(--color-white);
  width: 100%;
  height: 100%;
  padding: 5vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.header_nav_sp.active {
  display: block;
  z-index: 1000;
}
.header_nav_sp_inner {
  box-sizing: border-box;
  height: 100%;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.header_nav_sp_inner::-webkit-scrollbar{
  display: none;
}
.header_nav_sp_logo {
  font-size: 2.4vw;
  margin-bottom: 8vw;
  width: 65%;
}
.header_nav_sp li {
  font-weight: bold;
  padding: 2vw;
}
.header_nav_sp li a {
  color: var(--color-white);
  display: block;
}
.header_nav_sp_list_child {
  padding: 1vw !important;
}
.header_nav_sp_list_child a {
  padding-left: 2.4em;
}
.header_nav_sp_list_child a::before {
  content: "\f068";
  font-family: var(--font-awesome);
  display: inline-block;
  margin-left: -1.4em;
  padding-right: 0.4em;
}

@media screen and (min-width:960px) {
  .header_nav_sp.active {
    display: none;
  }
}



/*===============================
 topページ
===============================*/
/*---------- メインビジュアル ----------*/
/* メインビジュアル */
.mainvisual {
  position: relative;
}

.mainvisual img {
  width: 100%;
}

.mainvisual_pc {
  display: block;
}

.mainvisual_sp {
  display: none;
}

@media screen and (max-width:960px) {
  .mainvisual_pc {
    display: none;
  }
  .mainvisual_sp {
    display: block;
  }
}

/* スライドショーナビ */
.uk-dotnav li a {
  border: 2px solid var(--color-rightgray) !important;
}

.uk-dotnav > .uk-active a {
  background: var(--color-blue) !important;
  border: 2px solid var(--color-blue) !important;
}


/*---------- 困ったときはみかわ屋にご相談ください！ ----------*/
.top_aboutus {
  position: relative;
}

.top_aboutus::before {
  content: "";
  display: block;
  height: 90%;
  width: 50%;
  background: url(images/top/bg_about.jpg) no-repeat center left / auto 100%;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.top_aboutus .wrapper > div {
  margin-left: 38%;
  background: rgba(255, 255, 255, 0.8);
  position: relative;
}

.top_aboutus h2 span {
  font-size: 30px;
  color: var(--color-gray);
  display: inline-block;
  margin-bottom: 20px;
}

@media screen and (max-width:960px) {
  .top_aboutus {
    padding-bottom: 80vw;
  }
  .top_aboutus::before {
    height: 70vw;
    width: 100%;
    background: url(images/top/bg_about.jpg) no-repeat center left / auto 100%;
    top: auto;
    bottom: 0;
    left: 0;
    transform: translateY(0);
  }
  .top_aboutus .wrapper > div {
    margin-left: 0;
    padding: 0;
  }
}
@media screen and (max-width:640px) {
  .top_aboutus h2 span {
    font-size: 5vw;
  }
}

/*---------- お知らせ・お得情報 ----------*/
.top_news .box_1000 {
  border-radius: 30px;
  position: relative;
}

.top_news .box_1000::before {
  content: "";
  display: block;
  height: 160px;
  width: 160px;
  background: url(images/common/el_ye_01.svg) no-repeat center center / 100% auto;
  position: absolute;
  bottom: -30px;
  left: -30px;
}

.top_news .box_1000::after {
  content: "";
  display: block;
  height: 160px;
  width: 160px;
  background: url(images/common/el_pi_01.svg) no-repeat center center / 100% auto;
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.top_news h2 {
  margin-top: -90px;
}

.icon_notice {
  background: var(--color-blue);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 14px;
  padding: 3px 10px;
}

.icon_gain {
  background: var(--color-yellow);
  border-radius: 100px;
  color: var(--color-white);
  font-size: 14px;
  padding: 3px 10px;
}

@media screen and (max-width:1200px) {
  .top_news .box_1000::before {
    height: 15vw;
    width: 15vw;
    bottom: -35px;
    left: 5px;
  }
  .top_news .box_1000::after {
    height: 15vw;
    width: 15vw;
    bottom: -35px;
    right: 5px;
  }
  .top_news h2 {
    margin-top: -7vw;
  }
}

@media screen and (max-width:960px) {
  .top_news {
    margin-top: 10vw;
  }
}

@media screen and (max-width:748px) {
  .top_news .box_1000.uk-padding-large {
    padding: 15px;
  }
  .top_news .box_1000::before {
    height: 20vw;
    width: 20vw;
  }
  .top_news .box_1000::after {
    height: 20vw;
    width: 20vw;
  }
  .top_news h2 {
    margin-top: -10vw;
  }
}

/*---------- 事業案内 ----------*/
.product_list > div {
  background: var(--color-white);
  box-sizing: border-box;
  width: 50%;
}

.product_list:nth-of-type(even) > div {
margin-left: 50%;
}

.product_list_demolition {
  background: url(images/top/bg_business_demolition.jpg) no-repeat right center / 50% auto;
}

.product_list_civil-engineering {
  background: url(images/top/bg_business_civil-engineering.jpg) no-repeat left center / 50% auto;
}

.product_list_buying-unwanted-items {
  background: url(images/top/bg_business_buying-unwanted-items.jpg) no-repeat right center / 50% auto;
}

.product_list_land-use {
  background: url(images/top/bg_business_land-use.jpg) no-repeat left center / 50% auto;
}

@media screen and (max-width:640px) {
  .product_list {
    padding-top: 60vw;
  }
  .product_list > div {
    width: 100%;
  }
  .product_list:nth-of-type(even) > div {
    margin-left: 0;
  }
  .product_list_demolition {
    background: url(images/top/bg_business_demolition.jpg) no-repeat top center / 100% auto;
  }
  .product_list_civil-engineering {
    background: url(images/top/bg_business_civil-engineering.jpg) no-repeat top center / 100% auto;
  }
  .product_list_buying-unwanted-items {
    background: url(images/top/bg_business_buying-unwanted-items.jpg) no-repeat top center / 100% auto;
  }
  .product_list_land-use {
    background: url(images/top/bg_business_land-use.jpg) no-repeat top center / 100% auto;
  }
}

/*---------- 実績 ----------*/
.top_works {
  background: url(images/common/bg_town.svg) no-repeat top center / 100% auto;
  padding-top: 180px;
}

.work_list a:hover {
  opacity: 0.6;
}

.work_list figure {
  margin-bottom: 5px;
}

.work_list img {
  border-radius: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.icon_demolition {
  background: var(--color-blue);
  color: var(--color-white);
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 100px;
}

.icon_civil-engineering {
  background: var(--color-green);
  color: var(--color-white);
  font-weight: bold;
  font-size: 14px;
  padding: 5px 10px;
  border-radius: 100px;
}

.work_list h3 {
  font-size: 120%;
  margin: 0;
}

@media screen and (max-width:640px) {
  .top_works {
    background: url(images/common/bg_town.svg) no-repeat top center / 150% auto;
    padding-top: 15vw;
  }
}

/*---------- リンク ----------*/
.top_link a {
  border: 10px solid #daecf7;
  border-radius: 40px;
  display: block;
  padding: 50px 30px;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

.top_link a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: all 0.3s ease 0s;
  background: #daecf7;
}

.top_link a:hover::before {
  height: 100%;
}

.top_link a h2 {
  margin: 0;
  position: relative;
  z-index: 1;
}

/*---------- バナー ----------*/
.banner li {
  transition: all .3s linear;
}

.banner li + li {
  margin-top: 30px;
}

.banner li a {
  display: block;
}

.banner p {
  margin-top: 100px;
}



/*===============================
 下層ページ共通
===============================*/
/*---------- 見出し ----------*/
.title {
  background-position: center;
  background-size: cover;
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.title::after {
  z-index: 1;
}

.title::before {
  background-color: rgba(0,91,195,0.6);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: '';
}

.title h1 {
  color: var(--color-white);
  font-size: 60px;
  font-family: var(--font-gothic);
  font-optical-sizing: auto;
  font-weight: 600;
  font-style: normal;
  line-height: 1.3;
  position: relative;
  text-shadow:1px 1px 0 var(--color-blue),-1px 1px 0 var(--color-blue),1px -1px 0 var(--color-blue),-1px -1px 0 var(--color-blue);
  text-transform: uppercase;
  z-index: 2;
}

@media screen and (max-width:640px) {
  .title {
    padding: 150px 0 120px;
  }
  .title h1 {
    font-size: 8vw;
  }
}

/*---------- パンくずリスト ----------*/
.uk-breadcrumb {
  margin: 15px 0 30px;
}

/*---------- キャッチコピー ----------*/
.catch {
  color: var(--color-blue);
  font-size: 36px;
  line-height: 1.5;
}

@media screen and (max-width:640px) {
  .catch {
    font-size: 26px;
  }
}

/*---------- ページ内リンクナビ ----------*/
.page_link a {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
  font-weight: bold;
  display: block;
  padding: 5px 15px;
}

.page_link a::after {
  content: "\f107";
  font-family: var(--font-awesome);
  padding-left: 0.5em;
}

.page_link a:hover {
  background: var(--color-blue);
  color: var(--color-white);
}

/*---------- 2カラム表示　メインコンテンツ ----------*/
.contents_main {
  margin-bottom: 40px;
}

/*---------- 2カラム表示　サイドバー ----------*/
.contents_side {
  margin-bottom: 30px;
}

.contents_side h3 {
  background: var(--color-rightblue);
  font-size: 20px;
  padding: 10px;
}

.contents_side_menu li {
  border-bottom: 1px dotted var(--color-rightgray);
}

.contents_side_menu li a {
  color: var(--color-blue);
  display: block;
}

.contents_side_menu li a span {
  display: block;
  font-size: 80%;
}



/*===============================
 お知らせ・お得情報一覧
===============================*/
/*---------- 見出し ----------*/
.title_news::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_06.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_news::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_news::after {
    width: 26vw;
    height: 30vw;
    bottom: -30px;
    right: 3%;
  }
}

/*---------- お知らせカテゴリーリンク ----------*/
.news_link a {
  background: var(--color-white);
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
  font-weight: bold;
  display: block;
  padding: 5px 30px;
  transition: all .5s;
}

.news_link a.active {
  background: var(--color-pink);
  color: var(--color-white);
  font-weight: bold;
  display: block;
  padding: 5px 30px;
}

.news_link a:hover {
  opacity: 0.7;
}

.news_link a.notice {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
}

.news_link a.notice.active {
  background: var(--color-blue);
  color: var(--color-white);
}

.news_link a.gain {
  border: 2px solid var(--color-yellow);
  color: var(--color-yellow);
}

.news_link a.gain.active {
  background: var(--color-yellow);
  color: var(--color-white);
}

@media screen and (max-width:640px) {
  .news_link a {
    padding: 1vw 5vw;
  }
}



/*===============================
 当社について
===============================*/
/*---------- 見出し ----------*/
.title_aboutus::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_aboutus::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_aboutus::after {
    width: 34vw;
    height: 34vw;
  }
}

/*---------- 気軽に相談できる総合窓口
 ----------*/
.aboutus h2 {
  background: url(images/common/bg_town.svg) no-repeat bottom center / 100% auto;
  color: var(--color-gray);
  line-height: 1.7;
  padding-bottom: 200px;
  position: relative;
}

.aboutus h2::before {
  content: "";
  background: url(images/common/el_ye_01.svg) no-repeat center center / 100% auto;
  display: block;
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: 0;
  left: 60px;
}

.aboutus h2::after {
  content: "";
  background: url(images/common/el_pi_01.svg) no-repeat center center / 100% auto;
  display: block;
  width: 160px;
  height: 160px;
  position: absolute;
  bottom: 0;
  right: 60px;
}

.aboutus h2 strong {
  color: var(--color-blue);
  font-size: 160%;
}

.aboutus p {
  font-size: 120%;
}

@media screen and (max-width:640px) {
  .aboutus h2 {
    background: url(images/common/bg_town.svg) no-repeat bottom center / 150% auto;
    padding-bottom: 25vw;
  }
  .aboutus h2::before {
    height: 20vw;
    width: 20vw;
    left: 0;
  }
  .aboutus h2::after {
    height: 20vw;
    width: 20vw;
    right: 0;
  }
  .aboutus h2 strong {
    font-size: 7.5vw;
  }
  .aboutus h2 span {
    font-size: 5.8vw;
  }
}

/*---------- メリット ----------*/
.merit .bg_wt {
  border-radius: 30px;
}

/*---------- こんな時はご依頼ください ----------*/
.ex h3 {
  font-size: 120%;
}

.ex img {
  border-radius: 20px;
}

/*---------- 安心のサポート体制 ----------*/
.support img {
  border-radius: 20px;
}



/*===============================
 事業案内
===============================*/
/*---------- 見出し ----------*/
.title_business::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_03.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_business::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_business::after {
    width: 30vw;
    height: 34vw;
  }
}

/*---------- 買取・土地活用バナー ----------*/
.banner_link a img {
  border: 4px solid var(--color-blue);
  border-radius: 30px;
}



/*===============================
 建物解体
===============================*/
/*---------- 見出し ----------*/
.title_demolition::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_demolition::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_demolition::after {
    width: 34vw;
    height: 34vw;
    right: 0;
  }
}

/*---------- 建物解体 ----------*/
.bg_business_demolition {
  background: var(--color-rightblue) url(images/common/bg_business.svg) no-repeat top 30px right / 400px auto;
}

/* 住宅解体の流れ（木造解体の場合） */
.demolition_flow {
  background: var(--color-white);
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  padding: 40px 40px 0;
}

.demolition_flow h3 {
  color: var(--color-blue);
}

.demolition_flow figure {
  position: relative;
}

.demolition_flow figure::after {
  display: block;
  background: var(--color-white);
  border-bottom-right-radius: 20px;
  color: var(--color-blue);
  font-weight: bold;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -3px;
  left: -3px;
}

.demolition_flow .wp-block-columns > div:nth-of-type(1) figure::after {
  content: "1";
}
.demolition_flow .wp-block-columns > div:nth-of-type(2) figure::after {
  content: "2";
}
.demolition_flow .wp-block-columns > div:nth-of-type(3) figure::after {
  content: "3";
}
.demolition_flow .wp-block-columns > div:nth-of-type(4) figure::after {
  content: "4";
}

.demolition_flow img {
  border-radius: 20px;
}

@media screen and (max-width:640px) {
  .demolition_flow {
    padding: 15px 15px 0;
  }
}

/* サービスの流れ */
.bg_demolition_service {
  background: url(images/business/demolition/bg_flow.jpg) no-repeat center center / cover;
  position: relative;
}

.bg_demolition_service::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg_demolition_service .wrapper {
  position: relative;
}

.bg_demolition_service h2 {
  color: var(--color-white);
}



/*===============================
 土木工事
===============================*/
/*---------- 見出し ----------*/
.title_civil-engineering::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_civil-engineering::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_civil-engineering::after {
    width: 34vw;
    height: 34vw;
    right: 0;
  }
}

/*---------- 土木工事 ----------*/
.bg_business_civil-engineering {
  background: #e9f4ee url(images/common/bg_business.svg) no-repeat top 30px right / 400px auto;
}

/* サービスの流れ */
.bg_civil-engineering_service {
  background: url(images/business/civil-engineering/bg_flow.jpg) no-repeat center center / cover;
  position: relative;
}

.bg_civil-engineering_service::before {
  content: "";
  display: block;
  background: rgba(0, 0, 0, 0.7);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.bg_civil-engineering_service .wrapper {
  position: relative;
}

.bg_civil-engineering_service h2 {
  color: var(--color-white);
}



/*===============================
 不用品買取
===============================*/
/*---------- 見出し ----------*/
.title_buying-unwanted-items::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_05.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_buying-unwanted-items::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_buying-unwanted-items::after {
    width: 32vw;
    height: 32vw;
    right: 0;
  }
}

/*---------- 不用品買取り ----------*/
.bg_business_buying-unwanted-items {
  background: #f7eded url(images/common/bg_business.svg) no-repeat top 30px right / 400px auto;
}

.buying-unwanted-items_ex figure {
  background: var(--color-white);
  border-radius: 20px;
  padding: 10px 0;
  text-align: center;
}

.buying-unwanted-items_ex h4 {
  margin: 0;
  text-align: center;
}

.buying-unwanted-items_ex p {
  font-size: 80%;
  line-height: 1.5;
}



/*===============================
 土地活用
===============================*/
/*---------- 見出し ----------*/
.title_land-use::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_land-use::after {
    width: 28vw;
    height: 28vw;
    bottom: -40px;
  }
}

@media screen and (max-width:480px) {
  .title_land-use::after {
    width: 34vw;
    height: 34vw;
  }
}

/*---------- 土地活用 ----------*/
.bg_business_land-use {
  background: #f7f2ed url(images/common/bg_business.svg) no-repeat top 30px right / 400px auto;
}



/*===============================
 サービスの流れ
===============================*/
/*---------- 見出し ----------*/
.title_flow::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_flow::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_flow::after {
    width: 34vw;
    height: 34vw;
  }
}

/*---------- サービスの流れ ----------*/
.flow figure {
  position: relative;
}

.flow figure::after {
  display: block;
  background: var(--color-white);
  border-bottom-right-radius: 20px;
  color: var(--color-blue);
  font-weight: bold;
  font-size: 30px;
  line-height: 60px;
  text-align: center;
  width: 60px;
  height: 60px;
  position: absolute;
  top: -3px;
  left: -3px;
}

.flow > div:nth-of-type(1) figure::after {
  content: "1";
}
.flow > div:nth-of-type(2) figure::after {
  content: "2";
}
.flow > div:nth-of-type(3) figure::after {
  content: "3";
}
.flow > div:nth-of-type(4) figure::after {
  content: "4";
}
.flow > div:nth-of-type(5) figure::after {
  content: "5";
}
.flow > div:nth-of-type(6) figure::after {
  content: "6";
}
.flow > div:nth-of-type(7) figure::after {
  content: "7";
}
.flow > div:nth-of-type(8) figure::after {
  content: "8";
}
.flow > div:nth-of-type(9) figure::after {
  content: "9";
}
.flow > div:nth-of-type(10) figure::after {
  content: "10";
}
.flow > div:nth-of-type(11) figure::after {
  content: "11";
}
.flow > div:nth-of-type(12) figure::after {
  content: "12";
}

.flow img {
  border-radius: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
}



/*===============================
 実績
===============================*/
/*---------- 見出し ----------*/
.title_works::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_04.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_works::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_works::after {
    width: 34vw;
    height: 34vw;
    right: 0;
  }
}

/*---------- 実績カテゴリーリンク ----------*/
.works_link a {
  background: var(--color-white);
  border: 2px solid var(--color-pink);
  color: var(--color-pink);
  font-weight: bold;
  display: block;
  padding: 5px 30px;
  transition: all .5s;
}

.works_link a.active {
  background: var(--color-pink);
  color: var(--color-white);
}

.works_link a:hover {
  opacity: 0.7;
}

.works_link .demolition {
  border: 2px solid var(--color-blue);
  color: var(--color-blue);
}

.works_link .demolition.active {
  background: var(--color-blue);
  color: var(--color-white);
}

.works_link .civil-engineering {
  border: 2px solid var(--color-green);
  color: var(--color-green);
}

.works_link .civil-engineering.active {
  background: var(--color-green);
  color: var(--color-white);
}

@media screen and (max-width:640px) {
  .works_link a {
    padding: 1vw 5vw;
  }
}



/*===============================
 よくあるご質問
===============================*/
/*---------- 見出し ----------*/
.title_faq::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_02.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_faq::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_faq::after {
    width: 28vw;
    height: 32vw;
  }
}

/*---------- Q&A ----------*/
.faq dl {
  background: var(--color-white);
  border-radius: 15px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.2);
}

.faq dt {
  padding: 10px 40px 10px 50px;
  position: relative;
}

.faq dt {
  border-top-right-radius: 15px;
  border-top-left-radius: 15px;
}

.faq dt::before {
  content: "Q";
  display: inline-block;
  color: var(--color-white);
  background: var(--color-blue);
  border-radius: 100px;
  font-weight: bold;
  text-align: center;
  width: 30px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.faq dt::after {
  content: "\2b";
  display: inline-block;
  color: var(--color-blue);
  font-family: var(--font-awesome);
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 10px;
}

.faq dt.active::after {
  content: "\f068";
}

.faq dt:hover {
  cursor: pointer;
  background: var(--color-rightblue);
}

.faq dd {
  display: none;
  border-top: 1px dotted var(--color-rightgray);
  margin: 0 10px 10px;
  padding: 10px 0 10px 40px;
}



/*===============================
 解体費用シミュレーター
===============================*/
/*---------- 見出し ----------*/
.title_simulation::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_02.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_simulation::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_simulation::after {
    width: 28vw;
    height: 32vw;
  }
}

/*---------- 見積シミュレーション表 ----------*/
/*
#mitsumori-js {
  background-color: var(--color-white);
  box-sizing: border-box;
}
#mitsumori-js table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
#mitsumori-js .mitsumori-js-tbl {
  margin-bottom: 15px;
}
#mitsumori-js .mitsumori-js-total-tbl th {
  background: #c41c78;
  border-bottom: 2px solid #c41c78;
  color: var(--color-white);
  font-size: 180%;
  box-sizing: border-box;
  width: 10em;
}
#mitsumori-js .mitsumori-js-total-tbl td {
  border-bottom: 2px solid #c41c78;
  color: #c41c78;
  font-weight: bold;
  font-size: 250%;
  padding: 0 15px;
  box-sizing: border-box;
}
#mitsumori-js .mitsumori-js-tbl th,
#mitsumori-js .mitsumori-js-tbl td {
  display: block;
  font-weight: bold;
  padding: 12px;
}
#mitsumori-js .item-name {
  font-weight: bold;
  color: var(--color-blue);
  background: var(--color-rightblue);
  border-left: 10px solid var(--color-blue);
  box-sizing: border-box;
}
#mitsumori-js .mitsumori-js-tbl .item-price {
  display: none;
}
#mitsumori-js img {
  display: inline-block;
  margin-bottom: 5px;
}
#mitsumori-js label {
  display: inline-block;
  text-align: center;
  cursor: pointer;
}
#mitsumori-js input[type="radio"] {
  display: none;
}
#mitsumori-js input[type="radio"] + .radio-label {
  box-sizing: border-box;
  border: 2px solid var(--color-rightgray);
  border-radius: 15px;
  padding: 8px;
  height: 100%;
}
#mitsumori-js input[type="radio"]:checked + .radio-label {
  background: #cde1f7;
  border: 2px solid #0076bc;
}
#mitsumori-js input[type="text"],
#mitsumori-js input[type="number"] {
  width: 4em;
}
#mitsumori-js input[type="text"],
#mitsumori-js input[type="number"],
#mitsumori-js select {
  border: 2px solid #aaa;
  border-radius: 5px;
  font-weight: bold;
  padding: 8px 10px;
  text-align: center;
}
#mitsumori-js input[type="text"]::placeholder,
#mitsumori-js input[type="number"]::placeholder {
  opacity: 0.4;
}
#mitsumori-js input[type="text"]:valid,
#mitsumori-js input[type="number"]:valid,
#mitsumori-js select:valid {
  border: 2px solid #0076bc;
  background: #cde1f7;
}
#mitsumori-js input[type="text"]:invalid,
#mitsumori-js input[type="number"]:invalid,
#mitsumori-js select:invalid {
  border: 2px solid var(--color-pink);
  background: var(--color-rightpink);
}

.mitsumori_text {
  color: var(--color-blue);
  font-weight: bold;
  font-size: 180%;
  line-height: 1.5;
}

.mitsumori-arrow {
  color: var(--color-blue);
  animation: blinking 2s ease-in-out infinite;
  position: relative;
}

@keyframes blinking {
	0% {
		opacity: 0;
    top: -15px;
	}
	90% {
		opacity: 1;
    top: 0;
	}
  100% {
		opacity: 0;
    top: 0;
	}
}

@media screen and (max-width:640px) {
  #mitsumori-js .mitsumori-js-total-tbl th,
  #mitsumori-js .mitsumori-js-total-tbl td {
    display: block;
    text-align: center;
    width: 100%;
  }
  .mitsumori_text {
    font-size: 6vw;
  }
}
*/


/*===============================
 オフィシャルブログ
===============================*/
/*---------- 見出し ----------*/
.title_blog::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_06.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_blog::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_blog::after {
    width: 26vw;
    height: 30vw;
    bottom: -30px;
    right: 3%;
  }
}

/*---------- ブログ ----------*/
.blog_list figure {
  margin: 0;
}

.blog_list img {
  border-radius: 20px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.15);
  aspect-ratio: 16 / 9;
  object-fit: cover;
  width: 100%;
}

.blog_list p {
  margin: 0.5em 0;
}

.blog_list h3 {
  margin: 0;
  font-size: 120%;
}

.blog_list_date {
  font-size: 80%;
  margin: 0;
}

.blog_list_title {
  font-weight: bold;
  font-size: 120%;
  margin: 0;
}

@media screen and (max-width:640px) {
  .blog_list h3 {
    font-size: 100%;
  }
}

/* ブログ詳細記事見出し */
.blog_detail h2 {
  background: var(--color-rightblue);
  padding: 10px;
}

/* 前後記事リンク */
.nav-links {
  display: flex;
  justify-content: center;
  font-size: 110%;
  line-height: 1.5;
}

.nav-links span {
  font-size: 80%;
  font-weight: normal;
}

.nav-previous,
.nav-next {
  border-top: 1px solid var(--color-rightgray);
  border-bottom: 1px solid var(--color-rightgray);
  font-weight: bold;
  position: relative;
}

.nav-next {
  border-left: 1px solid var(--color-rightgray);
}

.nav-previous::after {
  content: "\f104";
  color: var(--color-rightgray);
  font-family: var(--font-awesome);
  position: absolute;
  top: 35%;
  left: 10px;
  transition: all .3s linear;
}

.nav-previous:hover::after {
  left: 0;
}

.nav-next::after {
  content: "\f105";
  color: var(--color-rightgray);
  font-family: var(--font-awesome);
  position: absolute;
  top: 35%;
  right: 10px;
  transition: all .3s linear;
}

.nav-next:hover::after {
  right: 0;
}

.nav-links a {
  color: var(--color-gray);
  display: block;
  text-align: center;
  padding: 10px 50px;
}

.nav-links a:hover {
  color: var(--color-blue);
}

@media screen and (max-width:640px) {
  .nav-previous,
  .nav-next {
    width: 50%;
  }
  .nav-links a {
    padding: 4vw 10vw;
  }
}



/*===============================
 会社概要
===============================*/
/*---------- 見出し ----------*/
.title_company::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_03.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_company::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_company::after {
    width: 28vw;
    height: 32vw;
  }
}



/*===============================
 採用情報
===============================*/
/*---------- 見出し ----------*/
.title_recruit::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_03.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_recruit::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_recruit::after {
    width: 28vw;
    height: 30vw;
  }
}



/*===============================
 サステナビリティ
===============================*/
/*---------- 見出し ----------*/
.title_sustainability::after {
  content: "";
  display: block;
  background: url(images/common/el_ye_06.png) no-repeat center center / 100% auto;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_sustainability::after {
    width: 28vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_sustainability::after {
    width: 30vw;
    height: 30vw;
    bottom: -65px;
  }
}



/*===============================
 プライバシーポリシー
===============================*/
.privacy ul li {
  margin-left: 1em;
}

.privacy ul li:nth-of-type(1)::before {
  content: "(1)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(2)::before {
  content: "(2)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(3)::before {
  content: "(3)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(4)::before {
  content: "(4)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(5)::before {
  content: "(5)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(6)::before {
  content: "(6)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(7)::before {
  content: "(7)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(8)::before {
  content: "(8)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(9)::before {
  content: "(9)";
  margin-left: -1em;
}

.privacy ul li:nth-of-type(10)::before {
  content: "(10)";
  margin-left: -1em;
}



/*===============================
 お問い合わせ
===============================*/
/*---------- 見出し ----------*/
.title_contact::after {
  content: "";
  display: block;
  background: url(images/common/el_pi_06.png) no-repeat center center / 100% auto;
  width: 150px;
  height: 180px;
  position: absolute;
  bottom: -50px;
  right: 5%;
}

@media screen and (max-width:640px) {
  .title_contact::after {
    width: 25vw;
    height: 28vw;
  }
}

@media screen and (max-width:480px) {
  .title_contact::after {
    width: 28vw;
    height: 32vw;
  }
}

/*---------- 入力フォーム ----------*/
@media screen and (max-width:850px) {
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  textarea {
    box-sizing: border-box;
    max-width: 100%;
  }
}



/*===============================
 footer
===============================*/
footer {
  background: var(--color-rightblue);
}

/*---------- footer_contact ----------*/
.footer_contact {
  border-top: 10px solid var(--color-blue);
  background: var(--color-white) url(images/common/bg_footer.png) no-repeat bottom right / 40% auto;
}

.footer_contact figure {
  text-align: center;
}

.footer_contact figure img {
  width: 65%;
}

.footer_contact_area {
  background: rgba(255, 255, 255, 0.6);
  font-weight: bold;
}

.footer_contact_area span {
  background: var(--color-blue);
  color: var(--color-white);
  padding: 5px 10px;
  margin-right: 10px;
}

.footer_contact_tel {
  color: var(--color-blue);
  font-weight: bold;
}

.footer_contact .btn_wt {
  font-size: 130%;
  margin-top: 15px;
}

@media screen and (max-width:960px) {
  .footer_contact figure img {
    width: 80%;
  }
  .footer_contact {
    background: var(--color-white) url(images/common/bg_footer.png) no-repeat bottom right / 70% auto;
  }
  .footer_contact_detail {
    text-align: center;
  }
}

@media screen and (max-width:480px) {
  .footer_contact {
    background: var(--color-white);
  }
}

/*---------- footer概要 ----------*/
footer .sns li:nth-child(1) a,
footer li:nth-child(1) i:first-child {
  color: #f00;
}

footer .sns li:nth-child(2) a,
footer li:nth-child(2) i:first-child {
  color: #dc13b2;
}

/*---------- nav ----------*/
footer nav ul:first-of-type li:nth-child(n+5):nth-child(-n+8) {
  margin-left: 1em;
}

footer nav ul:first-of-type li:nth-child(n+5):nth-child(-n+8)::before {
  content: "-";
}

footer nav li + li {
  padding: 5px 0 0;
}

footer nav span {
  opacity: 0.6;
}

footer nav span::before {
  content: "-";
  padding-right: 0.5em;
  margin-left: -1em;
}

footer nav li::before {
  color: var(--color-blue);
  content: "\f0da";
  font-family: var(--font-awesome);
  font-size: 80%;
  padding-right: 5px;
}

footer nav a {
  color: var(--color-blue);
  opacity: 1;
}

footer nav a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

@media screen and (max-width:640px) {
  footer nav ul {
    margin: 0 !important;
  }
}

/*---------- copyright ----------*/
.copyright {
  background: var(--color-gray);
  color: var(--color-white);
  padding: 7px 0;
  text-align: center;
  margin: 0;
}