@charset "utf-8";
/* CSS Document */
.pc{
	display: block;
}
.sp{
	display: none;
}
body {
 /* font-family: "Helvetica Neue",
    Arial,
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    Meiryo,
    sans-serif; */
	
	font-family: "Sawarabi Gothic";
}
/*=======================
		ヘッダー
========================*/
.header_design{
	background-color: #E1EBFF;
    height: 88px;
}
.header_design img{
	vertical-align: middle;
	margin-left: 3%;
	float: left;
}
.header_design p{
	display: inline-block;
	color: #565656;
	letter-spacing: 0.1em;
	font-weight: bold;
    font-size: 18px;
}
.sub_title{
	float: left;
    vertical-align: middle;
    margin-top: 34px;
    margin-left: 11px;
}
.left_content{
	display: inline;
}
.right_content{
	display: inline;
    float: right;
    margin-right: 10%;
}
.right_content a{
	letter-spacing: 4px;
    margin-top: 7%;
    vertical-align: top;
}
/*----------------------------
* メニュー開閉ボタン
*----------------------------*/
.menu-btn{
  position: fixed;
    top: 20px;
    right: 20px;
    z-index: 2;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #485daa;
    color: #fff;
    border-radius: 50px;
}
/*------------------------------

  ここから下がハンバーガーメニュー
  に関するCSS

------------------------------*/
.drawer-open{
	background-color: #485DAA;
    border-radius: 50px;
    margin-top: 35%;
	margin-left: 16%;
}
.drawer{
	display: inline-block;
    position: fixed;
    top: 0px;
    right: 5%;
    z-index: 100;
}
.drower-inner{
	width: 80%;
    margin: 0 auto;
}
.drawer-list {
    margin: 23% 0 0 0;
    font-size: 1em;
    line-height: 2.2em;
}
.drawer-item{
	color: #FFF;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1em;
    line-height: 4.2em;
}
.drawer-item a:hover{
	opacity: 0.6;
	transition: 0.4s;
}
/* チェックボックスは非表示に */
.drawer-hidden {
  display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
  display: flex;
  height: 50px;
  width: 50px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 100;/* 重なり順を一番上に */
  cursor: pointer;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
  content: '';
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background: #FFF;
  transition: 0.5s;
  position: absolute;
}

/* 三本線のうち一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線のうち一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-check:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-check:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-check:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
 
/* メニューのデザイン*/
.drawer-content {
    width: 50%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    background: #000;
    transition: .5s;
	opacity: 0.8;
}


/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
      left: 50%;
}
/*----------------------------
* メニュー本体
*----------------------------*/
.menu{
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #555;
}
.menu__item{
  width: 100%;
    height: auto;
    padding: .5em 1em;
    text-align: center;
    color: #565656;
    box-sizing: border-box;
    font-weight: bold;
    letter-spacing: 1px;
    line-height: 2.5em;
}
.menu__item a:hover{
	opacity: 0.6;
	transition: 0.4s;
}
/*----------------------------
* アニメーション部分
*----------------------------*/

/* アニメーション前のメニューの状態 */
.menu{
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* アニメーション後のメニューの状態 */
.menu.is-active{
  transform: translateX(0);
	background-color: #E1EBFF;
}
.btn-flat-simple:hover {
  opacity: 0.6;
  color: white;
}
.main_catch{
/* 	background-image: url(/total2020/wp-content/themes/total2020/img/main_catch.jpg); */
	background-image: url(/total2020/wp-content/uploads/2021/03/pc-top-2-scaled.jpg);
	
    background-repeat: no-repeat;
    background-size: cover;
}
.main_catch_content{
	width: 50%;
    padding: 5% 5% 10% 5%;
}
.main_catch_content h1{
/*	font-size: 27px; */
	font-size:40px;
    letter-spacing: 6px;
 color: #565656; 
    line-height: 2.2em;
    text-align: center;
    font-weight: bold;
}
.main_catch_content p{
	letter-spacing: 2px;
    color: #565656;
    text-align: center;
    margin-top: 7%;
}
.consultation_button{
	letter-spacing: 4px;
	text-align: center;
	margin-top: 5%;
}
.btn-gradient-3d-orange {
  display: inline-block;
    padding: 1em 1em;
    text-decoration: none;
    border-radius: 4px;
    color: #ffffff;
    background-image: linear-gradient(45deg, #FFC107 0%, #ff8b5f 100%);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
    border-bottom: solid 3px #c58668;
    font-weight: bold;
}

.btn-gradient-3d-orange:active {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);
  border-bottom: none;
}		
.btn-flat-simple_01 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  background: #ED8937;
  transition: .4s;
  border-radius: 5px;
font-size: 25px;
}

.btn-flat-simple_01:hover {
  opacity: 0.6;
  color: white;
}
/*=======================
		コンテンツ(3)
========================*/
.main_contents{
/*	background-color: #fce6a9; */
	background:#ffffff;
	text-align: center;
}
.main_contents_inner{
	padding: 2% 0 7% 0;
}



.main_contents_inner h2 {
		font-size:30px;
	line-height:2em;
	font-weight:bold;
	color: #565656;
	letter-spacing: 6px;
	margin-bottom:50px;
  position: relative;
}
.main_contents_inner h2:before {
  content: '';
  position: absolute;
  bottom: -15px;
  display: inline-block;
  width: 60px;
  height: 5px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  background-color: black;
  border-radius: 2px;
}


.content_01{
	background-color: #FFF;
    width: 400px;
    height: 430px;
    margin: 0 10px;
    display: inline-block;
box-shadow: 2px 2px 4px gray;
}
.content_01 p{
	font-weight: bold;
    color: #565656;
    letter-spacing: 4px;
    margin: 3% 0;
}
.content_01 span{
	font-size: 20px;
}
.content_01_button a{
	letter-spacing: 4px;
    margin-top: 6%;
}
.mail_button{
	position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  background: #ff9433;
  transition: .4s;
  border-radius: 10px;
}
.mail_button:hover {
  opacity: 0.6;
  color: white;
}
.btn-flat-simple_02 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  background: #98b548;
  transition: .4s;
  border-radius: 10px;
	font-size:1.2em;
}

.btn-flat-simple_02:hover {
  opacity: 0.6;
  color: white;
}
.btn-flat-simple_03 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  background: #ff9433;
  transition: .4s;
  border-radius: 10px;
	font-size:1.2em;
}

.btn-flat-simple_03:hover {
  opacity: 0.6;
  color: white;
}
.btn-flat-simple_04 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  background: #e5cf2c;
  transition: .4s;
  border-radius: 10px;
	font-size:1.2em;
}

.btn-flat-simple_04:hover {
  opacity: 0.6;
  color: white;
}
/*=======================
		フッター
========================*/
footer{
	background-color: #485daa;
}
.footer_inner{
	width: 80%;
    margin: 0 auto;
    padding: 1% 0 3%;
}
.footer_content_01{
	width: 25%;
	display: inline-block;
	margin: 0 2% 0 5%;
}
.footer_content_01 img{
	margin: 3% 0;
}
.footer_content_01 p{
	color: #FFF;
    letter-spacing: 1px;
    font-size: 16px;
    margin: 2% 0;
    line-height: 30px;
}
.footer_button{
	letter-spacing: 4px;
    margin-top: 5%;
}
.btn-flat-simple_05 {
  position: relative;
  display: inline-block;
  font-weight: bold;
  padding: 0.8em 3.5em;
  text-decoration: none;
  color: #FFF;
  transition: .4s;
  border: 1px #FFF solid;
  border-radius: 5px;
　font-size: 15px;
}

.btn-flat-simple_05:hover {
  background: #FFF;
  color: #565656;
}
.footer_content_02{
	width: 25%;
    display: inline-block;
    margin: 0 2% 0 5%;
    vertical-align: top;
}
.footer_content_02 a{
	color: #FFF;
    display: block;
    letter-spacing: 1px;
    font-size: 16px;
    line-height: 3em;
	transition: .4s;
}
.footer_content_02 a:hover{
	opacity: 0.6;
	
}

.snow-monkey-form{
	margin-top:80px;
}

@media screen and (max-width: 768px){/*ウィンドウ幅が0～767pxの場合にCSSを適用*/

.pc{
	display: none;
}
.sp {
	display: block;
}
.header_design {
    background-color: #E1EBFF;
    height: 70px;
}
	
	.drawer-open{
	background-color: #485DAA;
    border-radius: 50px;
    margin-top: 15%;
	margin-left: 16%;
}

.sub_title {
    float: left;
    vertical-align: middle;
    margin-top: 2%;
    margin-left: 2%;
    line-height: 1em;
}
.left_content img{
	width: 30%;	
}
.nav_logo img{
    width: 30%;
}
	
.nav_logo p{
    color: #FFF;

}
.drawer-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;
    z-index: 99;
    background: #000;
    transition: .5s;
	opacity: 1;
}
/* アイコンがクリックされたらメニューを表示 */
#drawer-check:checked ~ .drawer-content {
      left: 0%;
}
.drower-inner {
    width: 90%;
    margin: 0 auto;
}
.drawer-list {
    margin-top: 20%;
    text-align: center;
    font-size: 1em;
    line-height: 2.2em;
}
.drawer-item {
    color: #fff;
    box-sizing: border-box;
    font-weight: bold;
    font-size: 1em;
    line-height: 2em;
    text-align: left;
    border-bottom: 1px #4c4c4c solid;
    padding: 5% 0;
	height: 90px;
}
.drawer-list a{
	margin-top: 10%;
}
.mail_button {
    display: none;
}
.main_catch{
	background-image: none;
    background-repeat: no-repeat;
    background-size: cover;
}	
	
		.header_design img{
margin-top:1%
	}
	
.header_design p {
   font-size: 0.7em;
	margin-top:3%;
	line-height:1.5em;
}	
.menu-btn {
    position: fixed;
    top: 5%;
    right: 2%;
    z-index: 2;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #485daa;
    color: #fff;
    border-radius: 50px;
}
.right_content {
    float: right;
    margin-right: 6%;
}
.main_catch_content {
    width: 100%;
    padding: 0% 0% 10% 0%;
	margin-top: -2%;
	position:relative;
	
}

.main_catch_content h1 {
    font-size: 0.9em;
    letter-spacing: 6px;
    color: #565656;
    line-height: 1.8em;
    text-align: center;
    font-weight: bold;
	/* margin-top: -18%; */
	position:absolute;
	top:20%;
	left:8%;
	background:rgba(256,256,256,0.9);
padding:3%;
}
	
	.consultation_button{
		
	position:absolute;
	top:40%;
	left:11%;
		
	}
	
	.main_contents_inner h2{
		 font-size: 1.2em;
	}
.main_catch_content p {
    letter-spacing: 2px;
    color: #565656;
    text-align: center;
    margin-top: 7%;
    font-size: 0.8em;
}	
.btn-flat-simple_01 {
    position: relative;
    display: inline-block;
    font-weight: bold;
    padding: 0.8em 3.5em;
    text-decoration: none;
    color: #FFF;
    background: #ED8937;
    transition: .4s;
    border-radius: 5px;
    font-size: 1em;
}	
.content_01 {
    background-color: #FFF;
    width: 80%;
    height: 362px;
    margin: 5% 0;
    display: inline-block;
}
.content_01 p {
    font-weight: bold;
    color: #565656;
    letter-spacing: 4px;
    margin: 3% 0;
    font-size: 0.8em;
}
.content_01 span {
    font-size: 1.5em;
}
.footer_inner {
    width: 90%;
    margin: 0 auto;
    padding: 3% 0 8%;
}
.footer_button {
    letter-spacing: 4px;
    margin: 7% 0;
    text-align: center;
}
.footer_content_01 {
    width: 100%;
    display: inline-block;
    margin: 0 auto;
	text-align: center;
}
.footer_content_01 img{
	width: 40%;	
}
.footer_content_02 {
    width: 100%;
    display: inline-block;
    margin: 0 auto;
    vertical-align: top;
    text-align: center;
}
	
	.footer_content_02 a{
		
		border-top: 1px solid #fff;
		line-height:4em;
	}
	
	.footer_content_02 a.footer_last{
		
		border-bottom:1px solid #fff;
	}
	
	.btn-flat-simple_05{
		
		width: 100%;
line-height: 3em;
		
	}

}