@charset "utf-8";
/* ------------------------------------------------------------
html5
------------------------------------------------------------ */
article, aside, canvas, details, figcaption, figure, header, footer, hgroup, menu, nav, section, summary {
  display: block;
}
/* ------------------------------------------------------------
base
------------------------------------------------------------ */
* {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, abbr, address, cite, code, del, dfn, em, img, ins, kbd, q, samp, small, sub, sup, var, b, i, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, main, article, aside, dialog, figcaption, figure, footer, header, hgroup, menu, nav, section, time, mark, audio, video {
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: normal;
  vertical-align: baseline;
  box-sizing: border-box;
}
address {
  font-style: normal;
}
xli {
  padding-left: 1em; /*1em（1文字）分、右に動かす*/
  text-indent: -1em; /*最初の行だけ1em（1文字）分、左に動かす*/
}
img, a img {
  border: 0;
}
img {
  vertical-align: top;
  width: 100%;
  height: auto;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
ul, ol {
  margin: 0 0 0 0;
  padding: 0;
}
.clickable {
  cursor: pointer;
}
/*ページTOPへボタン*/
.pagetop {
  bottom: 25px;
  display: none;
  position: fixed;
  right: 25px;
  z-index: 100;
}
.pagetop__btn {
  background-color: #ddd;
  border-radius: 50%;
  color: #fff;
  display: block;
  height: 50px;
  line-height: 50px;
  text-align: center;
  width: 50px;
  font-size: 12px;
  transition: all 0.3s ease;
}
.pagetop__btn:hover {
  opacity: 0.7;
  background-color: #00947A;
}
/* ------------------------------------------------------------
  COMMEN CLASS
------------------------------------------------------------ */
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration, input[type="button"]::-webkit-search-decoration {
  display: none;
}
input[type="submit"]::focus, input[type="button"]::focus {
  outline-offset: -2px;
}
/*
基本設定css
*/
html {
  font-size: 62.5%;
}
body {
  color: #333;
  background-color: #ffffff;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
}
p {
  line-height: 1.7;
}
main {
  width: 100%;
  overflow: hidden;
}
/* ------------------------------------------------------------
スクロールCSS
------------------------------------------------------------ */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/* -------------------------------------------------------------------- 
Indent
-------------------------------------------------------------------- */
.indent {
  padding-left: 1em;
  text-indent: -1em;
}
.wrapper {
  overflow: hidden;
  margin: 0 auto;
}
/*マウスオーバー時ゆっくり透過*/
.fade {
  -webkit-transition: 0.4s ease-in-out;
  -moz-transition: 0.4s ease-in-out;
  -o-transition: 0.4s ease-in-out;
  transition: 0.4s ease-in-out;
}
.fade:hover {
  opacity: 0.4;
  filter: alpha(opacity=90);
}
/* ------------------------------------------------------------
PC用設定
------------------------------------------------------------ */
.pc {
  display: block
}
.tb {
  display: none
}
.sp {
  display: none
}
.tbsp {
  display: none
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 100px 0;
}
/* ------------------------------------------------------------
共通パーツ
------------------------------------------------------------ */
.link-btn {
  max-width: 320px;
  min-width: 290px;
  text-align: center;
  position: relative;
  display: block;
  color: #00947A;
  background-color: #fff;
  text-decoration: none;
  border: solid #00947A 1px;
  box-shadow: 2px 2px 6px rgb(9 35 64 / 14%);
  padding: 19px 65px 19px 35px;
  font-size: 1.8rem;
  font-weight: bold;
  transition: padding .5s cubic-bezier(.19, 1, .22, 1), color .5s ease, background .5s ease, opacity .5s ease;
  border-radius: 32px;
  margin: 0 auto 5px;
}
.link-btn:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 40px;
  width: 8px;
  height: 8px;
  border-top: 2px solid #00947A;
  border-right: 2px solid #00947A;
  transform: translate(0, -50%) rotate(45deg);
  transition: border .5s ease;
}
.link-btn:hover {
  color: #fff;
  background: #00947A;
  ;
}
.link-btn:hover:after {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}
.txt-link {
  color: #00947A;
  text-decoration: underline;
  transition: all 0.3s ease;
}
.txt-link:hover {
  opacity: 0.7;
}
/* ------------------------------------------------------------
共通headingタグ
------------------------------------------------------------ */
h1 {
  font-size: 38px;
  font-weight: bold;
  text-align: center;
  position: relative;
}
h1 sapn {
  font-size: 26px;
}
h1::before {
  content: "";
  display: block;
  width: 70px;
  height: 70px;
  top: -50px;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../image/icon-mail.png);
  background-repeat: no-repeat;
  background-size: contain;
}
h1::after {
  content: "";
  display: block;
  width: 80%;
  height: 100%;
  top: 190%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  position: absolute;
  background-image: url(../image/header-bottom.png);
  background-repeat: no-repeat;
  background-size: 100%;
}
h2 {
  font-size: 26px;
  font-weight: bold;
  color: #00947A;
  text-align: center;
}
/* ------------------------------------------------------------
header
------------------------------------------------------------ */
header {
  width: 100%;
}
/* ------------------------------------------------------------
main
------------------------------------------------------------ */
.contact-mv {
  width: 100%;
  min-height: 280px;
  background-image: url(../image/bg-contact.jpg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 130px;
}
.disc {
  margin-top: 80px;
  padding: 0 4vw;
}
.disc p {
  text-align: center;
  margin: 40px 0 0;
}
.form {
  width: 960px;
  margin: 40px auto;
}
.contact-by-phone {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 80px 4vw;
  margin: 0 auto 80px;
  border-top: solid 1px #e2e2e2;
  border-bottom: solid 1px #e2e2e2;
}
.txt-tel {
  width: 300px;
  font-size: 20px;
  font-weight: bold;
}
.tel {
  width: 260px;
  font-size: 42px;
  font-family: 'Roboto', sans-serif;
  font-weight: bold;
  line-height: 0.6;
}
.tel small {
  font-size: 12px;
}
/* ------------------------------------------------------------
パンくず
------------------------------------------------------------ */
.breadcrumbs {
  background-color: #f8f8f8;
  padding: 16px 20px;
}
.links {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.breadcrumbs ul {
  display: flex;
  font-size: 1.4rem;
}
.links li span {
  margin: 0 10px;
}
.links li a {
  color: #00947A;
}
@media screen and (max-width: 768px) {
  .breadcrumbs ul {
    display: inline;
  }
  .breadcrumbs ul li {
    display: inline;
    line-height: 1.8;
  }
}
@media screen and (max-width: 640px) {
  .breadcrumbs {
    margin: 0 auto;
    padding: 2vw 4vw;
  }
}

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

タブレット768px以下の
 設定はここから
                
---------------------------*/
@media screen and (max-width: 768px) {
  .pc {
    display: none
  }
  .tb {
    display: block
  }
  .sp {
    display: none
  }
  .tbsp {
    display: block
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw 0;
  }
  h1 {
    font-size: 2.5rem;
  }
  h1::before {
    content: "";
    display: block;
    width: 50px;
    height: 50px;
    top: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    background-image: url(../image/icon-mail.png);
    background-repeat: no-repeat;
    background-size: contain;
  }
  h1::after {
    content: "";
    display: block;
    width: 80%;
    height: 100%;
    top: 190%;
    left: 50%;
    background-size: 100%;
  }
  h2 {
    font-size: 22px;
    font-weight: bold;
    color: #00947A;
    text-align: center;
  }
  .form {
    width: 100%;
    padding: 0 4vw;
    margin: 40px auto;
  }
  .contact-mv {
    width: 100%;
    min-height: 200px;
    background-image: url(../image/bg-contact.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 60px;
  }
  .disc p {
    margin: 30px 0 0;
  }
}
/*--------------------------

スマホ640px以下の
 設定はここから
                
---------------------------*/
/*ウィンドウ幅が0～640pxの場合にCSSを適用*/
@media screen and (max-width: 640px) {
  .pc {
    display: none
  }
  .tb {
    display: none
  }
  .sp {
    display: block
  }
  .tbsp {
    display: block
  }
  .container {
    width: 100%;
    margin: 0 auto;
    padding: 60px 4vw 0;
  }
  h1 {
    font-size: 2rem;
    margin-top: 10%;
  }
  h2 {
    font-size: 18px;
  }
  .contact-mv {
    width: 100%;
    min-height: 180px;
    background-image: url(../image/bg-contact.jpg);
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
  }
  .contact-by-phone {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 50px 4vw;
    border-top: solid 1px #e2e2e2;
    border-bottom: solid 1px #e2e2e2;
    margin: 0 auto 40px;
    flex-direction: column;
  }
  .txt-tel {
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.5;
  }
  .tel {
    width: 100%;
    text-align: center;
    font-size: 36px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
    line-height: 0.7;
    margin: 25px 0 0 0;
  }
  .disc {
    margin-top: 40px;
  }
  .disc p {
    text-align: left;
  }
}