/*
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;700&display=swap');
*/
/* noto-sans-jp-regular - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 400;
  src: url('./fonts/noto-sans-jp-v52-japanese_latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* noto-sans-jp-700 - japanese_latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Noto Sans JP';
  font-style: normal;
  font-weight: 700;
  src: url('./fonts/noto-sans-jp-v52-japanese_latin-700.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
body {
	font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
}
.w100 {font-weight: 100;}
.w200 {font-weight: 200;}
.w300 {font-weight: 300;}
.w400 {font-weight: 400;}
.w500 {font-weight: 500;}
.w700 {font-weight: 700;}
.w900 {font-weight: 900;}

.txt_sml {
    font-size: 11px;
}

/*--------------------------------------------------------------------
wrapper
--------------------------------------------------------------------*/
#wrapper {
  width: 100%;
  margin: 0;
  padding: 0;
}
#wrapper p {
  font-weight: 500;
  line-height: 1.8;
  color: #053650;
}

/*--------------------------------------------------------------------
header
--------------------------------------------------------------------*/
#header {
    width: 100%;
    text-align: left;
    z-index: 1000;
    display: block;
}
.header_inner {
    width: 100%;
    height: 55px;
    margin: 0 auto;
    position: relative;
    background-color: rgba(255,255,255,0.8);
}
.header_inner .h_logo {
    position: absolute;
    left: 8px;
    top: 11px;
}
.header_inner .h_logo img {
    width: 64%;
    height: auto;
	border: 0;
    vertical-align: top;
}

/*　ハンバーガーメニューボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 10px;
  top   : 8px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 3px ;
  left    : 6px;
  background : #0042ad;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#0042ad;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#0042ad;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #333;
  background: rgb(255 255 255 / 100%);
  text-align: center;
  width: 100%;
  transform: translateX(100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
    margin: 50px auto;
    padding: 0;
    width: 70%;
}

nav.globalMenuSp ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    font-size: 1.2em;
	font-weight: bold;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :#ddd;
}

nav.globalMenuSp ul li a {
    display: block;
    color: #333;
    padding: 15px 0;
    border-bottom: 1px solid;
    font-size: 0.9em;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateX(0%);
}




/*--------------------------------------------------------------------
 透過白背景
--------------------------------------------------------------------*/
.area_frame{
	width:100%;
	margin : 0px auto;
	/*padding : 10px 0;*/
    background-color: rgba(255,255,255,0.7);
}
.area_in{
	margin : 0 auto;
	width:100%;
}

/*--------------------------------------------------------------------
　top
--------------------------------------------------------------------*/
img.topimg {
  width: 100%;
  margin-bottom: 10px;
}


/*--------------------------------------------------------------------
 CTAボタン
--------------------------------------------------------------------*/
.cta {
  text-align: center;
  width: 90%;
  margin: 0 auto 30px;
}


/*--------------------------------------------------------------------
 お悩みありませんか
--------------------------------------------------------------------*/
#onayami {
  margin-bottom: 30px;
}


/*--------------------------------------------------------------------
 レスポンシブ下部固定 新バージョン
--------------------------------------------------------------------*/
.ftbtn {
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  color: #FFF;
  font-size: 100%;
  z-index: 999;
  transform: translateY(100px);
  transition: 1.5s;
  opacity: 0;
}
.ftbtn.fadeinanime {
  transform: translateY(0);
  transition: 1.5s;
  opacity: 1;
}
.ftbtn a {
  width: 100%;
  display: block;
  text-decoration: none;
}
.ftbtn .ftbtn_con {
  display: flex;
  flex-wrap: wrap;
}
.ftbtn .ftbtn_tel {
  width: 100%;
  background-color: #0042ad;
  padding: .78% 1%;
}
.ftbtn .ftbtn_tel a {
  padding: 0;
}
.ftbtn .ftbtn_tel a .ftbtn_tel_no {
  font-size: 1.5em;
  font-weight: bold;
  line-height: 1.2;
  position: relative;
  margin-left: 20px;
}
.ftbtn .ftbtn_tel a .ftbtn_tel_no:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../images/footer_tel.webp) no-repeat;
  background-size: contain;
  width: 27px;
  height: 50px;
  left: -35px;
  top: 9px;
}
.ftbtn .ftbtn_tel a .ftbtn_tel_msg {
  font-size: .85em;
  margin-bottom: 0;
  font-weight: normal;
  line-height: 1.5;
  margin-left: 20px;
}
.ftbtn .ftbtn_mail
, .ftbtn .ftbtn_line {
  width: 50%;
  font-weight: 700;
  font-size: 0.9em;
  padding: 2.605% 0 !important;
}
.ftbtn .ftbtn_mail {
  background: #46cbc8;
}
.ftbtn .ftbtn_line {
  background: #06c755;
}
.ftbtn .ftbtn_mail a span  {
  position: relative;
  margin-left: 30px;
}
.ftbtn .ftbtn_mail a span:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../images/footer_mail.webp) no-repeat;
  background-size: contain;
  width: 25px;
  height: 100%;
  left: -30px;
  top: 2px;
}
.ftbtn .ftbtn_line a span {
  position: relative;
  margin-left: 33px;
}
.ftbtn .ftbtn_line a span:before {
  content: "";
  position: absolute;
  display: inline-block;
  background: url(../images/footer_line.webp) no-repeat;
  background-size: contain;
  width: 25px;
  height: 30px;
  left: -33px;
  top: -2px;
}

