@charset "utf-8";
/*------------------------------------------------
  ウェブフォント設定
------------------------------------------------*/

/* @font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 500;
  src: local("NotoSansCJKjp-Medium"),
    local("NotoSansJP-Medium"),
    url("../../fonts/NotoSansCJKjp-Medium.woff2") format("woff2"),
    url("../../fonts/NotoSansCJKjp-Medium.woff") format("woff");
}

@font-face {
  font-family: "Noto Sans CJK JP";
  font-style: normal;
  font-weight: 700;
  src: local("NotoSansCJKjp-Bold"),
    local("NotoSansJP-Bold"),
    url("../../fonts/NotoSansCJKjp-Bold.woff2") format("woff2"),
    url("../../fonts/NotoSansCJKjp-Bold.woff") format("woff");
}
@font-face {
  font-family: "Noto Serif CJK JP";
  font-style: normal;
  font-weight: 900;
  src: local("NotoSerifCJKjp-Black"),
    local("NotoSerifJP-Black"),
    url("../../fonts/NotoSerifCJKjp-Black.woff2") format("woff2"),
    url("../../fonts/NotoSerifCJKjp-Black.woff") format("woff");
} */

/* Noto Sans JP */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500;700;900&display=swap');


/*------------------------------------------------
  基本
------------------------------------------------*/

html {
  font-size: 62.5%;  /* フォントサイズを10pxに設定 */
}

body {
  color: #333;
  /* font-family: "Noto Sans CJK JP", sans-serif; */
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;  /* 14px */
  line-height: 1.5;
}

@media print, screen and (min-width: 769px) {
  html {
    min-width: 1024px;
  }

  body {
    font-size: 1.6rem;  /* 16px */
  }
}

/*----- コンテンツが少ない場合に、フッターを最下部に固定 -----*/

html {
  display: flex;
  flex-direction: column;
}

body {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 60px);
}

main {
  flex-grow: 1;
  min-height: 1%;
}

@media print, screen and (min-width: 769px) {
  body {
    min-height: 100vh;
  }
}


/*----- リンクホバー -----*/
a {
  color: inherit;
  text-decoration: none;
}

a:hover {
  opacity: .7;
}

/*----- PCで電話番号リンク無効 -----*/
@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    color: inherit;
    text-decoration: none;
    pointer-events: none;
  }
}

/*----- イメージ下スペース削除 -----*/
img {
  vertical-align: middle;
}

/*----- テーブルスタイル削除 -----*/
table {
  border-collapse: collapse;
}

/*----- リストスタイル削除 -----*/
ul, ol {
  list-style: none;
}

/*----- Clearfix -----*/
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

/*----- 可変BRタグ -----*/
.brake-sp {
  display: inline-block;
}

@media print, screen and (min-width: 667px) {
  .brake-sp {
    display: none;
  }
}

.brake-tb {
  display: none;
}

@media print, screen and (min-width: 667px) {
  .brake-tb {
    display: inline-block;
  }
}

.brake-pc {
  display: none;
}

@media print, screen and (min-width: 769px) {
  .brake-pc {
    display: inline-block;
  }
}

/*------------------------------------------------
  ヘッダー
------------------------------------------------*/

.header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 0 3px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  padding: 0 10px;
}

.header-logo {
  /* width: 200px; */
  width: 230px;
}

.header-logo * {
  width: 100%;
  height: 100%;
}

@media print, screen and (min-width: 769px) {
  .header {
    position: static;
    box-shadow: none;
  }

  .header-inner {
    flex-wrap: wrap;
    min-width: 1000px;
    height: 120px;
    margin: auto;
    padding: 5px 20px;
  }

  .header-logo {
    /* width: 260px; */
    /* height: 36px; */
    z-index: 100000;
  }
  .header-logo * {
    /* width: 260px; */
    /* height: 36px; */
    height: auto;
    display: block;
  }
}

@media print, screen and (min-width: 1200px) {
  .header-logo {
    width: 300px;
  }
}

@media print, screen and (min-width: 1600px) {
  .header-logo {
    width: 380px;
  }
}

/*========== ヘッダーナビゲーション ==========*/

.header-nav {
  display: none;
  position: fixed;
  z-index: 50;
  top: 60px;
  left: 0;
  width: 100%;
  height: calc(100% - 60px);
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  background-color: #5e93eb;
}

.nav-open .header-nav {
  display: block;
  animation-name: header-nav-fade-in;
  animation-duration: .3s;
}

@keyframes header-nav-fade-in {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.nav-open .header-nav-list {
  animation-name: header-nav-list-slide-in;
  animation-duration: .3s;
}

@keyframes header-nav-list-slide-in {
  0% {
    transform: translateY(-30px);
  }

  100% {
    transform: translateY(0);
  }
}

.header-nav-item-button {
  color: #fff;
  font-family: "Noto Sans CJK JP", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  font-weight: 500;
  border-bottom: 1px solid #fff;
}

@media print, screen and (min-width: 769px) {
  .header-nav {
    /*width: 700px;*/
    /* width: 800px; */
    /* height: 50px; */
    width: calc(100% - 260px);
    max-width: 800px;
    height: auto;
    display: block;
    top:0;
    overflow-y: hidden;
    background-color: inherit;
  }

  .header-nav-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between;
    /* height: 50px; */
  }

  .header-nav-item.for-sp {
    display: none;
  }

  .header-nav-item-button {
    color: #333;
    height: 35px;
    padding: 0 5px;
    font-weight: 700;
    font-size: 1.7rem;
    line-height: 1.25;
    text-align: center;
    border-bottom: 3px solid transparent;
  }
}



/*お問い合わせボタン*/
@media print, screen and (min-width: 769px) {
  .header-nav-item.contact-btn .header-nav-item-button {
    color: #fff;
    padding: 0 25px;
    background-color: #5e93eb;
    height: 30px;
  }
}

/*========== 追従下線 ==========*/

.header-nav-item.current-item {
  width: 100%!important;
}

@media print, screen and (min-width: 769px) {
  .header-nav {
    position: relative;
  }
  .header-nav-item.current-item {
    width: auto!important;
  }
  #slide-line {
    position: absolute;
    bottom: 0;
    height: 3px;
    background-color: #5e93eb;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
  }
}

/*========== ナビゲーショントリガー ==========*/

.nav-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
  width: 40px;
  height: 45px;
  color: #5e93eb;
  font-size: 1.2rem;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-weight: bold;
  line-height: 1;
}

@media print, screen and (min-width: 769px) {
  .nav-trigger {
    display: none;
  }
}

/*========== ハンバーガーアイコン ==========*/

.humberger-icon {
  margin: 14px auto 15px;
}

.humberger-icon,
.humberger-icon::before,
.humberger-icon::after {
  display: block;
  position: relative;
  height: 3px;
  width: 35px;
  background-color: #5e93eb;
}

.humberger-icon::before,
.humberger-icon::after {
  content: "";
  position: absolute;
  transition: transform .3s;
}

.humberger-icon::before {
  transform: translateY(-10px);
}

.humberger-icon::after {
  transform: translateY(10px);
}

.nav-open .humberger-icon {
  background-color: rgba(255, 255, 255, 0);
}

.nav-open .humberger-icon::before {
  transform: rotate(-45deg);
}

.nav-open .humberger-icon::after {
  transform: rotate(45deg);
}

/*========== グローバルナビゲーションオープン時のスクロールロック ==========*/

.no-scroll {
  position: fixed;
  width: 100%;
  height: 100%;
}

/*------------------------------------------------
  フッター
------------------------------------------------*/

.footer {
  background-color: #d2d2d2;
}

@media print, screen and (min-width: 769px) {
  .footer {
    padding: 15px 0 35px;
  }
  .footer-inner {
    display: flex;
    flex-wrap: wrap;
    max-width: 1200px;
    align-items: center;
    justify-content: space-between;
    margin: auto;
  }
}

/*========== フッター 会社情報 ==========*/

.footer-company-info-button {
  width: 60%;
  /* max-width: 200px; */
  max-width: 230px;
  display: block;
  margin: 15px;
}

.footer-company-info-button > img {
  width: 100%;
}

.footer-company-info-address {
  text-align: left;
  padding-bottom: 8px;
  border-bottom: 1px dotted #808080;
  line-height: 1;
  width: calc(100% - 30px);
  margin: 15px;
}

@media print, screen and (min-width: 769px) {
  .footer-company-info-button {
    width: 260px;
    max-width: 260px;
  }
  .footer-company-info-address {
    border-bottom: none;
  }
}
@media print, screen and (min-width: 1200px) {
  .footer-company-info-button {
    width: 300px;
    max-width: 300px;
  }
}


/*========== フッターナビゲーション ==========*/

.footer-nav {
  width:  calc(100% - 30px);
  margin: 15px;
}

.footer-nav-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin: 15px 0;
}

.footer-nav-item {
  width: 50%;
  padding: 4px;
}

.footer-nav-item-button {
  color: #333;
  padding: 4px 0 4px 10px;
  font-size: 1.1rem;
  position: relative;
}

.footer-nav-item-button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -4px;
  width: 7px;
  height: 4px;
  border: 4px solid transparent;
  border-left: 7px solid #333;
}

@media print, screen and (min-width: 769px) {
  .footer-nav {
    width: calc(100% - 550px);
    /*width: 460px;
    margin-right: 130px;*/
  }

  .footer-nav-list {
    flex-direction: column;
    align-content: space-between;
    justify-content: flex-start;
    width: 100%;
    height: 100px;
  }

  .footer-nav-item {
    width: auto;
    margin: 0 10px;
    padding: 4px;
  }

  .footer-nav-item-button {
    padding: 4px 12px;
    font-size: 1.3rem;
  }

}

/*========== フッターコンタクト ==========*/

.footer-contact {
  width: 100%;
  padding: 15px;
  background-color: #fff;
}

.footer-contact-title {
  text-align: center;
  margin-bottom: 15px;
}

.footer-contact-list {
  width: 100%;
}

.footer-contact-item {
  color: #fff;
  width: 100%;
  background-color: #4071de;
  position: relative;
  text-align: center;
}

.footer-contact-item::after {
  content: "";
  display: block;
  background-position: center center;
  background-size: 50%;
  background-color: #898989;
  position: absolute;
  top: 0;
  left: 0;
  width: 30px;
  height: 30px;
}

.footer-contact-item:not(:last-of-type) {
  margin-bottom: 15px;
}

.footer-contact-item.contact-tel::after {
  background-image: url(../../images/common/tel_icon.png);
}
.footer-contact-item.contact-mail::after {
  background-image: url(../../images/common/mail_icon.png);
}

.footer-contact-item-button {
  padding: 10px 20px;
  width: 100%;
  height: 100%;
  display: block;
}

.tel-number {
  font-size: 2.4rem;
  display: block;
}

.mail-form {
  font-size: 1.6rem;
}

@media print, screen and (min-width: 769px) {
  .footer-contact {
    max-width: 1200px;
    height: auto;
    padding: 20px 20px 20px 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .footer-contact-title {
    text-align: left;
    margin: 15px 0;
    font-size: 2rem;
  }

  .footer-contact-list {
    width: auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    min-width: 870px;
    max-width: 910px;
  }

  .footer-contact-item {
    width: 49%;
    min-width: 400px;
    max-width: 440px;
    height: 80px;
    text-align: left;
  }

  .footer-contact-item::after {
    margin-top: -25px;
    background-size: contain;
    background-color: inherit;
    width: 50px;
    height: 50px;
    left: 25px;
    top:50%;
  }

  .footer-contact-item:not(:last-of-type) {
    margin-bottom: 0;
  }

  .footer-contact-item.contact-tel::after {
    background-image: url(../../images/common/tel_icon.png);
  }
  .footer-contact-item.contact-mail::after {
    background-image: url(../../images/common/mail_icon.png);
  }

  .footer-contact-item-button {
    padding: 10px 0 10px 100px;
    width: 100%;
    height: 100%;
    /* display: block; */
    display: flex;
    flex-wrap: wrap;
    align-items: center;
  }

  .tel-number {
    font-size: 2.4rem;
    display: block;
  }

  .mail-form {
    font-size: 1.6rem;
  }
}

/*------------------------------------------------
  メインコンテンツ
------------------------------------------------*/

.main-content {
  padding: 25px 0;
  position: relative;
}

@media print, screen and (min-width: 769px) {
  .main-content {
    padding: 50px 0;
  }
}


/*コンテンツ区切り*/

.break-line::after{
  content: "";
  display: block;
  height: 20px;
  width: 90%;
  background: radial-gradient(ellipse farthest-side, #ccc 30%, transparent 30%, transparent 100%);
  background-size: 20px 20px;
  background-position: 0 0;
  margin: 70px auto;
}

/*------------------------------------------------
  ページヘッダー
------------------------------------------------*/

.page-header {
  margin-top: 60px;
  height: 90px;
  background-size: cover;
}

/*会社情報*/
.page-header.company-bg {
  background-image: url(../../images/company/company_page_header_bg.jpg);
  background-position: center bottom;
}

/*事業内容*/
.page-header.business-bg  {
  background-image: url(../../images/business/business_page_header_bg.jpg);
  background-position: center bottom;
}

/*フロン回収事業内容*/
.page-header.freon-bg  {
  background-image: url(../../images/freon/freon_page_header_bg.jpg);
  background-position: center bottom;
}

/*つまり解消事例集*/
.page-header.case-bg {
  background-image: url(../../images/case/case_page_header_bg.jpg);
  background-position: center bottom;
}

/*採用情報*/
.page-header.recruit-bg {
  background-image: url(../../images/recruit/recruit_page_header_bg.jpg);
  background-position: center bottom;
}

/*プライバシーポリシー*/
.page-header.privacy-bg {
  background-image: url(../../images/privacy/privacy_page_header_bg.jpg);
  background-position: center bottom;
}

/*お問合せ*/
.page-header.contact-bg {
  background-image: url(../../images/contact/contact_page_header_bg.jpg);
  background-position: center bottom;
}

/*新着情報*/
.page-header.news-bg {
  background-image: url(../../images/news/news_page_header_bg.jpg);
  background-position: center bottom;
}


@media print, screen and (min-width: 769px) {
  .page-header {
    margin-top: 0;
    height: 210px;
  }
}

/*------------------------------------------------
 タイトル
------------------------------------------------*/

/*==========ページタイトル==========*/

.page-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 25px;
}

.page-subtitle {
  color: #91004f;
  text-align: center;
}

@media print, screen and (min-width: 769px) {
  .page-title {
    font-size: 3.4rem;
    margin-bottom: 30px;
  }
  .page-subtitle {
    font-size: 2.2rem;
    line-height: 2.5;
  }
}

/*==========バー付きタイトル==========*/

.contents-ttl-bar {
  font-size: 1.8rem;
  font-weight: 500;
  margin: 25px auto;
  padding: 0 5px 5px;
  border-bottom: 3px solid #5e93eb;
  display: table;
}

@media print, screen and (min-width: 769px) {
  .contents-ttl-bar {
    font-size: 3rem;
  }
}


/*------------------------------------------------
パンくずリスト
------------------------------------------------*/

.content-pagepath {
  background-color: #d2d2d2;
  width: 100%;
  padding: 5px 0;
}

.content-pagepath-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
}

.content-pagepath-item {
  font-size: 1rem;
  margin: 0 0 0 15px;
}

.content-pagepath-item:not(:last-of-type)::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 15px;
  border: 1px solid;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(45deg);
}

@media print, screen and (min-width: 769px) {
  .content-pagepath {
    padding: 12px;
  }
  .content-pagepath-list {
    max-width: 1200px;
    margin: auto;
  }
  .content-pagepath-item {
    font-size: 1.5rem;
    margin: 0 0 0 15px;
    line-height: 1;
  }
  .content-pagepath-item:not(:last-of-type)::after {
    width: 10px;
    height: 10px;
  }
}

/*------------------------------------------------
  ページトップボタン
------------------------------------------------*/

.pagetop-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: 15px;
  background-position: center;
  background-size: 20px;
}

@media print, screen and (min-width: 769px) {
  .pagetop-button {
    margin-right: calc((100vw - 900px) / 2);
  }
}
