@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/earlyaccess/hannari.css');
html {
  font-size: 62.5%; /*16px*62.5%=10px8*/
  margin: 0;
  padding: 0;
}

body {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
 font-family: "Hannari", serif;
  color: #031520;
  font-size: 1.6rem;
  line-height: 1.7;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  width: 100%;
  max-width: 100%;
	
}

h1 h2 h3 h4  {
  margin: 0;
  padding: 0;
}

#header {
	position: fixed;
	background-color:#fff;
	text-align: center;
	z-index: 100;
	margin: 0 auto;
	width: 100%;
}

a{
	color:#031520;
	text-decoration: none;
}

li {
  list-style: none;
}
img{
	width: 100%;
}
button{
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        padding: 0;
        appearance: none;
}

.header_inner{
     background-color: #D1E0E5;
    border-bottom: 1px solid #031520;
}
.logo{
    width: 8%;
    margin: auto;
    padding: 10px 0;
   
}
#g-nav-list{
    border-bottom: 1px solid #031520;
    position: relative;
}

#g-nav-list::after{
    content:'';
	position: absolute;
	top:103%;
	width:100%;
	height:0px;
    left: 0%;
	border-bottom: 3px solid #031520;

}
/*========= ナビゲーションドロップダウンのためのCSS ===============*/

/*ナビゲーションを横並びに*/
nav ul{
	list-style: none;
	display: flex;
	justify-content: center;
	padding: 10px 0;
    
}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;
}

/*下の階層のulや矢印の基点にするためliにrelativeを指定*/
nav ul li{
	position: relative;
}

/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	text-decoration: none;
	color: #464646;
	padding:10px 60px;
	transition:all .3s;
	font-size: 1.6rem;
	font-family: 'GFS Didot', serif;
    border-right: 1px solid #031520;
}


@media screen and (max-width:1200px) {
nav ul li a{
	padding:10px 20px;
}

}

nav ul li a:hover{
	color:#D1E0E5;	
}

/*==矢印の設定*/

/*2階層目を持つliの矢印の設定*/
nav ul li.has-child::before{
	content:'';
	position: absolute;
	left:80%;
	top:17px;
	width:6px;
	height:6px;
	border-top: 1.5px solid #031520;
    border-right:1.5px solid #031520;
    transform: rotate(135deg);
}

@media screen and (max-width:1200px) {
nav ul li.has-child::before {
    left: 100px;
}
}

/*== 2・3階層目の共通設定 */

/*下の階層を持っているulの指定*/
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:0;
	top:45px;
	z-index: 4;
    /*形状を指定*/
	background:rgba(255,255,255,0.9);
	width:200px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	color: #031520;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	font-size: 1.3rem;
     border-right: none;
    margin: 0 ;
    padding:15px 0; 
}

nav li.has-child ul li:last-child a{
	border-bottom:none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:rgba(255,255,255,0.8);
   
}


/*==================================================
中心から外に線が伸びる（下部）
===================================*/

#g-navi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

#g-navi li.current a,
#g-navi li a:hover{
    color: #031520;
}

#g-navi li a::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    bottom: 0;
    left: 25%;
    /*線の形状*/
    width: 50%;
    height: 1px;
    background:#031520;
    /*アニメーションの指定*/
    transition: all .2s;
    transform: scale(0, 1);/*X方向0、Y方向1*/
    transform-origin: center top;/*上部中央基点*/
}

/*現在地とhoverの設定*/
#g-navi li.current a::after,
#g-navi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}
/*==================================================
MVsection
===================================*/
.mainv{
	display: flex;
	align-items: center;
    margin: auto;
    justify-content: center;
    width: 85%;
 
}

.main_copy{
    font-size: 2.0rem;
    position: relative;
    text-align: center;
    margin-top: 5%;
    width: 45%;
    
}
.main_copy h1{
    font-family:'GFS Didot', serif; 
    padding: 50px 0;
    font-size: 2.0rem;
    letter-spacing: 0.2em;
    
}
.main_copy h2{
    line-height: 40px;
    letter-spacing: 0.1em;
}
.main_copy::before{
	position: absolute;
	content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 80px;/*画像の幅*/
  height: 0px;/*画像の高さ*/
  border-bottom: 0.5px solid #031520;
	top:50%;
	left:40%;
}


/*==================================================
スライダーのためのcss
===================================*/
.slider {
    position:relative;
	z-index: 1;
	/*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
	height: 80vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    width: 60%;
    margin-top: 165px;
}
/*　背景画像設定　*/

.slider-item01 {
    background:url("../img/MV_1@2x.jpg"); 
}

.slider-item02 {
   background:url("../img/MV_2@2x.jpg");
}

.slider-item03 {
   background:url("../img/MV_3@2x.jpg");
}
.slider-item04 {
   background:url("../img/MV_4@2x.jpg");
}

.slider-item {
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:62vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}

.ttl{
    transform: rotate(90deg);
    margin-left: 5%;
    display: inline-block;
    font-size: 2.8rem;
    letter-spacing: 0.3em;
    position: relative;
}
.ttl::after{
    position: absolute;
    content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 60px;/*画像の幅*/
  height: 0px;/*画像の高さ*/
  border-top: 0.5px solid #031520;
	top:80%;
	left:90%;

}
.ttlflex{
    display: flex;
}

.scrollArea{
	height: 180px;
	overflow: auto;
	padding-right: 20px;
    margin: auto;

}
/*スクロールバーの横幅指定*/
.scrollArea.deco::-webkit-scrollbar {
    width: 8px;
}
/*スクロールバーの背景色・角丸指定*/
.scrollArea.deco::-webkit-scrollbar-track {
  border-radius: 20px;
	background: #f2f2f2;
}
/*スクロールバーの色・角丸指定*/
.scrollArea.deco::-webkit-scrollbar-thumb {
  border-radius: 20px;
	background:#09C9D9;
}

.news{
    position: relative;
    margin-top: -2%;
}
.newsx{
    position: absolute;
    top:10%;
}
.newstxt{
	padding: 0 0 100px;
    margin: auto;
}
.newstxt dl{
	display: flex;
	margin: auto;
	width: 100%;
    border-bottom: 1px dotted #ccc;
    font-size: 1.4rem;
}

.newstxt dt{
	padding:10px 30px 10px 0;
    width: 100px;
}
.newstxt dd{
	padding: 10px 0 10px;
}
.newstxt_topi{
    border: 1px solid firebrick;
    font-size: 1.2rem;
    color: firebrick;
}
.media{
    display: flex;
    width: 70%;
    margin: 0 auto 100px;
    padding: 20px;
    border: 3px double #2c2d4a;
}
.media1{
    width: 50%;
}
.media2{
    width: 25%;
    margin: auto;
}
.media2 img{
    box-shadow: 1px 3px 6px #ccc;
        transform: rotate(7deg);
}
.mediattl{
    width: 100%;
    background-color: #2C3D4A;
    font-size: 1.8rem;
    color: aliceblue;
    margin: 10px 0;
    text-align: center;
}
.mediatxt{
    padding: 10px 20px;
}
.mediatxt span{
    border-bottom: 1px solid #2C3D4A;
}
.m-logo{
    width: 25%;
    margin: auto;
    padding: 20px 0;
}

.newspaper{
    width: 50%;

}
.newspaper img{
    width: 100%;
}

.pr{
    display: flex;
    width: 80%;
    margin: auto;
    text-align: center;
    background-color: rgba(252,252,252,0.90);
    box-shadow: 2px 2px 5px #ccc;
    padding: 40px 0 80px;
    margin-bottom: 100px;
}

.pr img{
    width: 60%;
    box-shadow: 1px 3px 5px #ccc;
}
.pr p{
    width: 380px;
    justify-content: center;
    margin: 0 auto 40px;
    text-align: left;
    padding-top: 20px;
}
.icon{
    padding: 0 15px;
}
.videottl{
    font-size: 1.8rem;
    padding-bottom: 20px;
    text-align: center;
}

.mailbtn{
    width: 70%;
    text-align: center;
    margin: auto;
}
.mailbtn h3 {
  position: relative; /* 三角の位置を固定するために設定 */
  width: 70%; /* 幅 */
  margin: 0 auto 40px; /* 上 左右 下のマージン */
  padding: 20px; /* ふきだし内の余白 */
  background: #f5f5f5; /* 背景色 */
  text-align: center; /* テキストの揃え */
  box-shadow: 2px 2px 2px #ccc;
}
.mailbtn h3::before { /* 三角 */
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  margin-left: -10px;
  width: 20px; /* 影をつけるために線幅で設定せずにboxを使用する */
  height: 20px;
  transform: rotate(45deg); /* 回転 */
  background: #ddd; /* 吹き出しの地と同じ色 */
  box-shadow: 2px 2px 2px #ccc;
  transform: rotate(45deg); /* 回転 */
  background: #f5f5f5; /* 吹き出しの地と同じ色 */
}

.mailbtn span{
    display: inline-block;
    margin-bottom: 10px;
     position: relative;
    font-size: 1.8rem;
}
.mailbtn span::after{
     content: "";
  position: absolute;
    top:82%;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 6px;
  background: -webkit-repeating-linear-gradient(-45deg, #D1E0E5, #D1E0E5 1px, #fff 2px, #fff 4px);
  background: repeating-linear-gradient(-45deg, #D1E0E5, #D1E0E5 1px, #fff 2px, #fff 4px);
}



button a{
    border: 1px solid #031520;
    padding: 15px 80px;
    margin-top: 40px;
-webkit-transition: all 0.2s ease;/*ふわっとさせる間隔 Google Chrome、Safari*/
-moz-transition: all 0.2s ease;/*ふわっとさせる間隔 Firefox*/
-o-transition: all 0.2s ease;/*ふわっとさせる間隔 Opera*/
transition: all  0.2s ease;/*ふわっとさせる間隔*/
font-family:'GFS Didot', serif; 
    letter-spacing: 0.12em;
    text-align: center;
    display: inline-block;
    font-size: 1.6rem;
}
/* マウスオーバーした際の背景 */
button a:hover {
background-color :#D1E0E5;
}


.aboutbox{
    margin-bottom: 60px;
}

.aboutbox img{
    width: 70%;
    margin: auto;
}

.aboutcont{
    position: relative;
    display: flex;

}

.about{
    position: absolute;
    top:5%;
    
}
.aboutxt{
    position:relative;
}

.aboutxt2{
    display: inline-block;
    position: absolute;
    background-color: rgba(255,255,255,0.85);
    box-shadow: 1px 2px 5px #ccc;
    padding: 30px;
    top:20%;
    left:20%;
    width: 400px;
    text-align: center;
    line-height: 36px;
}
.aboutxt2 span{
    font-size: 1.8rem;
    padding: 20px 0 20px;
    display: block;
}
.servicebox{
    position: relative;
    display: flex;
}
.service_box{
    display: flex;
    width: 70%;
    margin: auto;
    justify-content: space-between;
    padding-top: 60px;
    margin-bottom: 100px;   
}
.service{
    position: absolute;
    top:13%;
}

.service_box dl{
    padding: 0 0px;
    width: 30%;
    position: relative;
    text-align: center;
    margin-bottom: 100px;
}

.service_box dl dt span{
    font-size: 3.6rem;
    display: block;
    position: absolute;
    top:-10%;
    text-align: center;
    left: 45%;
}

.service_box dt{
    font-size: 1.6rem;
    padding: 10px 0;
    text-align: center;
   
}
.service_box dd{
    font-size: 1.6rem;
    border-top: 1px solid #031520;
    padding: 10px 0;
    margin-bottom: 20px;
    text-align: left;
     height: 150px;
}

.profile_box{
    position: relative;
    display: flex;
}
.profile{
    position: absolute;
    top:0%;
}
.profilebox{
    width: 70%;
    margin: 0 auto -20%;
    text-align: center;
}

.profilecont{
    display: flex;
    position: relative;

    margin: auto;

}
.profilecont::after{
     position: absolute;
    content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 100%;/*画像の幅*/
  height: 100%;/*画像の高さ*/
  background-image: url("../img/squer.png");
    background-repeat: no-repeat;
    top: -96%;
    left: -93%;
    z-index: 10;
    transform: rotate(180deg);
}

.profilecont img{
    width: 45%;
    margin-left: 20px;
}

.profiletxt{
    position: absolute;
    width: 480px;
    top:15%;
    left: 50%;
}
.profiletxt h2{
    font-size: 1.8rem;
    line-height: 36px;
    text-align: center;
    padding-bottom: 20px;
    letter-spacing: 0.2em;
}
.profilebox::after{
    position: absolute;
     content: '';/*何も入れない*/
  display: inline-block;/*忘れずに！*/
  width: 7%;/*画像の幅*/
  height: 20%;/*画像の高さ*/
  background-image: url("../img/squer.png");
    background-repeat: no-repeat;
    top: 130%;
    left: 80%;
    z-index: 10;
    transform: rotate(0deg);
}

.profiletxt p span{
    display: inline-block;
    padding-bottom: 20px;
    letter-spacing: 0.15em;
    text-align: left;
}


.profilebox button{
    text-align: center;
    margin-top:30%;
}
probtn a{
    margin: 20px;
}

/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/
.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}
/*----------------------------
scroll_left ｜左から出現
----------------------------*/
.scroll_left {
    -webkit-transition: 0.8s ease-in-out;
    -moz-transition: 0.8s ease-in-out;
    -o-transition: 0.8s ease-in-out;
    transition: 0.8s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}
.scroll_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}
/* アニメーションスタートの遅延時間を決めるCSS*/

.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}


.fot_sns{
    margin-top: 30%;
    border-top: 1px solid #031520;
    border-bottom: 1px solid #031520;
    padding: 8px 0;
}
.sns{
    position: relative;
}
.sns::after{
    content:'';
	position: absolute;
	top:-2%;
	width:100%;
	height:0px;
    left: 0%;
	border-bottom: 3px solid #031520;
}
.fot_sns li{
	padding-bottom: 20px;
    width: 100px;
    padding: 15px 30px;
}
.fot_sns img{
	width: 60%;
}
.fot_sns ul{
	text-align: center;
    display: flex;
    margin: auto;
    width: 45%;
    align-items: center;
}

.fot_sns img {
	 -webkit-transition: all 0.2s ease;
	-moz-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all  0.2s ease;
}
.fot_sns img:hover{
background-color :#D1E0E5;
    border-radius: 10px 10px;
}
.fot_sns li:nth-child(3){
     width: 55%;
}
.fot_sns li:nth-child(4){
     width: 70%;
}
.privacy{
	font-size:1.6rem;
	text-align: center;
    padding: 15px 0;
    border-top: 1px solid #031520;
}
.contact1{
    border-bottom: 1px solid #031520;
}
.contact{
    padding: 20px 0;
    text-align: center;
}
.contact img{
    width: 2%;
    display: inline;
    padding: 0 10px;
}

.rss{
    width: 65%;
    margin: 40px auto 100px;
}
.rss h3 img{
    width: 10%;
}

.rss h3{
    align-items: center;
    padding-bottom: 20px;
}
.mailbox{
    text-align: center;
}
.mail_btn{
    border: 1px solid #031520;
    padding: 15px 50px;
    margin: 20px auto 100px;
    display: inline-block;
    text-align: center;
    background-color: #D1E0E5;
    box-shadow: 1px 1px 2px #ccc;
    font-size: 1.8rem;
}




#footer{
	 background-color:rgba(209,224,229,0.65);
}

.footer_inner{
	width: 100%;
    border-top: 1px solid #031520;
	background-color: #D1E0E5;
}

.pagetop{
	position: fixed;
	bottom:30px;
	right: 20px;
}
.pagetop img{
	width: 50%;
}
.pagetop img a{
	display: block;
}

.copyright{
	font-size: 1.2rem;
	text-align: center;
}

/*profile*/
.main_2{
    width: 80%;
    margin: auto;
}
.mainv_2{
    display: flex;
    margin: auto;
    text-align: center;   
    padding-top: 13%;
    align-items: center;
}
.mainv_2 img{
    width: 60%;
}
.mainv_2 h2{
    font-size: 2.4rem;
    font-family: 'GFS Didot', serif; 
    text-align: center;
    margin: auto;
}
.mainv_2 span{
    line-height: 36px;
    font-family: "Hannari", serif;
    font-size: 2.2rem;
    letter-spacing: 0.3em;
}

.sectionbox{
    width: 70%;
    margin: auto;
}
.p_about{
    position: absolute;
    top:115px;


}

.pro_lead{
    padding: 60px 0 60px;
}
.p_about_box{
    display: flex;
    position: relative;
    margin-bottom: 100px;
}
.p_aboutcont ul{
    display: flex;
    margin-bottom: 30px;
}
.p_about_img{
    border-left: 1px solid #031520;
    border-bottom: 1px solid #031520;
    margin-bottom: 20px;
    padding: 10px 10px;
}
.p_aboutcont li img{
    width: 70%;
    justify-content: space-around;
}
.p_aboutcont li{
    margin: auto;
    text-align: center;
    
}
.p_person_box{
    display: flex;
    position: relative;
}
.p_person{
    position: absolute;
    top:20%;
    left: -5.5%;
}
.p_perdsoncont{
    display: flex;
    margin: auto;
    justify-content: center;
}
.p_perdsoncont img{
    width: 40%;
}
.pro_box2{
    margin:0 20px;
}
.pro_box2 h4{
    text-align: left;
    font-size: 3.2rem;
     font-family: 'GFS Didot', serif; 
    line-height: 50px;
    border-bottom: 1px solid #031520;
    
}

.pro_box2 p{
    font-size: 1.4rem;
    padding: 20px 0 10px;
    
}
.pro_box2 h2{
    font-size: 1.8rem;
    padding-bottom: 40px;
}
.pro_box2 h3{
    font-size: 1.8rem;
    padding-bottom: 60px;
}

.pro_box2 span{
    display: inline-block;
    font-size: 1.6rem;
    line-height: 28px;
}
.p_personmap{
    width: 60%;
    padding-top: 60px;
    margin: 0 auto 80px;
    justify-content: center;

}

.p_personmap span{
    border: 1px solid #031520;
    padding: 5px 5px;
    display: table;
 
}
.p_personmap img{
    width: 80%;
    display: block;
    margin: auto;
}

.p_personmaptxt{
    margin: auto;
    width: 77%;
    padding-bottom: 10px;
}
.p_personmaptxt2{
    width: 77%;
    margin: auto;
    border-left: 1px solid #031520;
    padding-left: 10px;
}
.p_personmaptxt2 a{
    border-bottom: 0.7px solid #031520;
}

.historycont{
    flex-direction: row-reverse;
    align-items: center;

}
.histflex{
    display: flex;
    position: relative;
}
.hist_box2 h4{
    text-align: right;
}

.hist_box2 ul{
    line-height: 32px;
    padding-top: 40px;
    background-image: url("../img/quoto1.png"),url("../img/quoto2.png"),url("../img/quoto3.png");
    background-repeat: no-repeat;
    background-position: 0% 4%,0% 35%,0% 75%;
    background-size: 4%;

}
.hist_box2 li{
    padding-bottom: 45px;
    padding-left: 35px;
    width: 80%;
}
.historycont2{
    border-top: 1px solid #031520;
    border-bottom: 1px solid #031520;
    display: flex;
    width: 70%;
    padding: 30px 0;
    margin: 40px auto 100px;
    justify-content: space-around;
    position: relative;
}
.historycont2 span{
    display: block;
    padding-bottom: 30px;
}
.historycont2 p{
    width: 40%;
    font-size: 1.4rem;
   
}
.historycont2::after{
     content:'';
    background-image: url(../img/line.png);
    background-size: 50%;
    position: absolute;
    top: 3%;
    width: 0.3%;
    height: 93%;
    left: 50%;
}

.p_history{
    left: -2%;
}
.p_crerrer{
    position: absolute;
    top:15%;
    left: -3%;
}

.carrer_box dl{
    display: flex;
}

.carrer_box{
    width: 100%;
    margin: auto;
    justify-content: center;
}
.carrerbox{
    width: 100%;
    justify-content: center;
    margin-bottom: 100px;
}

.carrer_box dl{
    align-items: center;
    position: relative;
}
.carrer_box dt{
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 1px solid #031520;
    background-color: #D1E0E5;
    margin: 10px 10px 20px;
    text-align: center;
    line-height: 70px;
   
        
}
.carrer_box dd{
    font-size: 1.4rem;
    width: 80%;
     padding-top: 9%;
}
.carrer_box dd::after{
     content:'';
    border-top: 1px dotted #031520;
    position: absolute;
    top: 45%;
    width: 80%;
    height: 2%;
    left: 12%;
}


.book_box{
    display: flex;
    width: 70%;
    margin: auto;
    justify-content: center;
    
}
.book_ttl{
    width: 15%;
}

.book_flex{
    width: 40%;
    text-align: center;
    margin: 0 auto 100px;
    box-shadow: 1px 3px 5px #d1d1d1;
    padding-bottom: 30px;
    height: 560px;
}

.book_flex img{
    width: 40%;
    text-align: center;
    padding-top: 10px;
}

.book_flex h3{
    padding: 20px 28px 10px;
    position: relative;
}
.book_flex h3::after{
     content:'';
    background-image: url("../img/attention@2x.png");
    background-repeat: no-repeat;
    background-size: 100%;
    position: absolute;
    top: 100%;
    width: 80%;
    height: 12%;
    left: 10%;
}

.book_flex p{
    width: 80%;
    margin: auto;
    text-align: center;
}

.massage{
    width: 800px;
    justify-content: center;
    margin: 0 auto ;
    background-image: url("../img/pro_img@2x.jpg");
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 20px 0 40%;
        
}
.massage p{
    width: 75%;
    margin: auto;
    padding-top: 60px;
}

.massage  span{
    display: inline-block;
    padding-bottom: 15px;
}

.fot_sns2{
    margin-top: -10%;
}

/*profile*/
.sec_box{
    width: 75%;
    margin: auto;
}

.traial{
    left: -2%;
    top:9%;
}

.traial_read h4{
    font-size: 2.4rem;
    line-height: 55px;
    letter-spacing: 0.15em;
    margin: 80px 0 80px;
    text-align: center;
}

.traial_read p{
    width: 60%;
    margin: auto;
    padding-bottom: 60px;
    text-align: center;
}

.traial_read span{
    display: inline-block;
    padding-bottom: 20px;
    line-height: 32px;
}
.traial_read mark {
	background: linear-gradient(transparent 20%, rgba(209,224,229,0.6) 0%);
	font-weight: 500;
}
.traial_ttl {
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    text-align: center;
    margin: auto;
}
.traial_ttl h2{
    font-size: 2.4rem;
    margin-bottom: 60px;
}

.benefit{
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    text-align: center;
    margin: auto;  
    margin-bottom: 60px;
}

.benefit h2{
    font-size: 2.4rem;
    text-align: center;
    margin: auto; 
    padding-bottom: 40px;
}

.benefit ul{
    width: 70%;
    margin: auto;
    text-align: left;
}
.benefit li{
    text-align: left;
    padding-bottom: 30px;
    font-size: 1.6rem;
    border-radius: 10px 10px;
    border: 2px double rgba(209,224,229,1.00);
    padding: 10px 25px;
    margin-bottom: 30px;
}

.traial_txt1{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.traial_txti img{
    width: 100%;
}
.traial_txti{
    width: 40%;
}

.traial_txta span{
    font-size: 1.5rem;
    padding-bottom:15px;
    display: inline-block;
    padding-top: 5px;
}
.traial_txta p {
    font-size: 1.5rem;
   
}
.traial_txta{
    width: 50%;
    padding: 0 20px 0 20px;
    margin: auto;
    

}
.traial_txtb{
    background-image: url("../img/traial_qt1@2x.png"),url("../img/traial_qt2@2x.png");
    background-repeat: no-repeat;
    background-position: 0% 0%,60% 26%;
    background-size: 4%;
}
.traial_txtb p{
    margin-bottom: 20px;
    margin-left: 20px;
}

.traial_txta ul{
    padding: 20px 0;
    font-size: 1.4rem;
}
.traial_txt2{
    flex-direction: row-reverse;
    margin-bottom: 100px;
}

.traial_mark span{
    display: inline;
    padding-bottom: 0;
    font-size: 1.6rem;
}

.stepimg{
    width: 80%;
    padding-top: 50px;
}
.voice_flex{
    display: flex;
    position:relative;
}
.voice{
    left: 0%;
    top: 25%;
}
.voice_box{
    width: 70%;
    margin: auto;
}

.voice_ttl{
    display: flex;
    position: relative;
    padding-top: 60px;
    margin: auto;
}
.voice_ttl h3{
    width: 75%;
    padding: 10px 40px 20px;
    margin: auto;
    background-color: rgba(209,224,229,0.70);
}

.voice_ttl span{
    display: block;
    padding: 15px 0 0 00px;
    margin-top: 20px;
    width: 75%;
    position: relative;
    margin: auto;
}
.voice_ttl img{
    width: 25%;
}


.voice_ttl span::after{
     content:'';
    border-left:1px solid #031520; 
    position: absolute;
    top: 20%;
    width: 10%;
    height: 80%;
    left: -40px;
}
.voice_copy{
    width: 80%;
}


.cp_box *, .cp_box *:before, .cp_box *:after {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
.cp_box {
	position: relative;

    padding-bottom: 80px;
}
.cp_box label {
	position: absolute;
	z-index: 1;
	bottom: 0;
	width: 100%;
	height: 160px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	/* 以下グラデーションは背景を自身のサイトに合わせて設定してください */
	background: linear-gradient(to bottom, rgba(250, 252, 252, 0) 0%, rgba(250, 252, 252, 0.95) 90%);
}
.cp_box input:checked + label {
	background: inherit; /* 開いた時にグラデーションを消す */
}
.cp_box label:after {
	line-height: 3.2rem;
	position: absolute;
	z-index: 2;
	bottom: 20px;
	left: 50%;
	width: 16rem;
	content: '＋'' 続きをよむ';
	transform: translate(-50%, 0);
	letter-spacing: 0.05em;
	color: #ffffff;
	border-radius: 8px;
	background-color: rgba(3, 21, 32, 1);
}
.cp_box input {
	display: none;
}
.cp_box .cp_container {
	overflow: hidden;
	height: 200px; /* 開く前に見えている部分の高さ */
	transition: all 0.5s;
}
.cp_box input:checked + label {
	/* display: none ; 閉じるボタンを消す場合解放 */
}
.cp_box input:checked + label:after {
	content: '-'' 閉じる';
}
.cp_box input:checked ~ .cp_container {
	height: auto;
	padding-bottom: 80px; /* 閉じるボタンのbottomからの位置 */
	transition: all 0.5s;
}

.youtube{
    text-align: center;
    padding-top: 30px;
}
.cp_container p{
    width: 85%;
    margin:20px auto 0;
}

.gaiyo{
    width: 80%;
    margin: 80px auto 100px;
    line-height: 0;
    text-align: center;
}
.gaiyo img{
    width: 80%;
    margin: auto;
    text-align: center;
    display: inline-block;
}

.traial_gaiyo{
    width: 65%;
    margin:0 auto 100px;
    text-align: center;
}
.traial_gaiyo dl{
    display: flex;
    margin-bottom: 30px;
    align-items: flex-start;
    
}
.traial_gaiyo dt{
    border: 1px solid #031520;
    border-radius: 5px 5px 5px 5px;
    padding: 5px 10px;
    margin-right: 40px;
    text-align: center;
    width: 16%;
}

.traial_gaiyo dd{
    width: 70%;
    text-align: left;
}
.traial_gaiyo span{
    font-size: 1.5rem;
}
.traial_ex{
    width: 60%;
    text-align: left;
    font-size: 1.4rem;
    margin: auto;
    padding: 20px 0;
    line-height: 20px;
}
.traial_ex span{
    display: inline-flex;
}

.faq_box{
    width: 70%;
    margin: auto;
    padding: 20px 40px;
    background: -moz-linear-gradient(bottom, rgba(209,224,229,0.5), rgba(189,215,226,0.8));
  background: -webkit-linear-gradient(bottom,rgba(209,224,229,0.5), rgba(189,215,226,0.8));
  background: linear-gradient(to top, rgba(209,224,229,0.5), rgba(189,215,226,0.8));
  /*グラデーション以外は省略*/
}
/*アコーディオン全体*/
.accordion-area{
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin:0 auto;
}

.accordion-area li{
    margin: 10px 0;
}

.accordion-area section {
	border: 1px solid #f3f3f3;
}

/*アコーディオンタイトル*/
.qatitle {
    position: relative;/*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size:1.6rem;
    font-weight: normal;
    padding: 3% 3% 3% 50px;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.qatitle::before,
.qatitle::after{
    position: absolute;
    content:'';
    width: 15px;
    height: 2px;
    background-color: #031520;
    
}
.qatitle::before{
    top:48%;
    left: 15px;
    transform: rotate(0deg);
    
}
.qatitle::after{    
    top:48%;
    left: 15px;
    transform: rotate(90deg);

}
/*　closeというクラスがついたら形状変化　*/
.qatitle.close::before{
	transform: rotate(45deg);
}

.qatitle.close::after{
	transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.qabox {
    display: none;/*はじめは非表示*/
    background: #f3f3f3;
	margin:0 3% 3% 3%;
    padding: 3%;
}

.pricemenu{
    display: flex;
    position: relative;
    text-align: center;
}
.price{
    left: -4%;
    top:90%;
}
.FAQ{
    display: flex;
    position: relative;
}
.faq_glex{
    left: 1.5%;
    top:20%;
}


.fot_sns3{
    margin-top: 100px;
}
.anchor {
margin-top:-78px;
padding-top:78px;
}

.mark {
	background: linear-gradient(transparent 20%, rgba(209,224,229,0.6) 0%);
	font-weight: 500;
}

	.pc_img{
		display:block; 
	}
	.pc_only{
		display: block;
	}
	.sp_img{
		display: none;
	}
	.sp_only{
		display: none;
	}
/*プライバシーポリシー */
.pagettl{
	padding-top: 15%;
	padding-bottom: 7%;
	font-size:2.4rem;
}
.read{
	width: 80%;
	margin: auto;
	padding-bottom: 30px;
}
.privacy_box{
	width: 80%;
	margin: auto;
}
.privacy_box dt{
	background-color: #D1E0E5;
	font-size: 1.8rem;
	display: block;
	padding: 15px 0 15px 10px;
}
.privacy_box dd{
	font-size: 1.4rem;
	padding: 20px 0% 30px;
}
.btn_p{
	margin-bottom: 40px;
}
.btn_p a{
	font-size: 1.8rem;
	font-weight: 500;
	border-radius: 50px;
	background: -moz-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: -webkit-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: linear-gradient(to bottom, #266175, rgba(38,97,117,0.5));
	color: #fff;
	padding: 20px 80px;
	display: table;
	margin: 40px auto 20px;
	box-shadow: 1px 1px 2px #ccc;
	transition: .2s;
}
.btn_p a:hover {
  opacity: 0.8;
}

/*特定商取引法による表記*/
.specified_box{
	margin: 30px auto 60px;
	width: 90%;
}
.specified_list{
	border: 1px solid #ccc;
	border-collapse: collapse;
	font-size: 1.4rem;
}
 .specified_list th,
.specified_list td {
    padding: 10px;
    border: 1px solid #ccc;
}

.specified_list th {
    background-color: #D1E0E5;
	width: 25%;
	text-align: inherit;
}

/*==================================================
visionshift
===================================*/
.visionshift_page{
   font-family: 'Noto Serif JP', serif;
}
.v_mainv{
	width: 60vw;
	margin: auto;
	margin-top: 100px;
	position: relative;
}
.vision_main{
	padding-top: 30px;
    background-image: url("../img/vision_MV_bg.png");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: 50% 200px;
    padding-bottom: 100px;
}
.visionmain{
	padding-top: 20px;
	position:relative;
}
.vision_copy{
	position: absolute;
	top: 25%;
	left: 5%;
	font-size: 2.8rem;
	letter-spacing: 7px;
	color: #266175;
	font-weight: 500;
	text-shadow: 1px 1px 2px #fff;
}

.vision_copy2 h2{
	font-size: 3.6rem;
    font-weight: 500;
    background-color: rgba(255,255,255,0.80);
    width: 86%;
    color: #266175;
    letter-spacing: 10px;
    text-align: center;
    margin-top: -150px;
    position: absolute;
    padding: 15px 0;
	text-shadow: 1px 1px 2px #ccc;
    font-family: 'GFS Didot', serif;
}
.maincopy2{
	margin-top: 20px;
	text-align: center;
     font-family: 'GFS Didot', serif;
}
.maincopy2 span{
	display: inline-block;
	border:thin solid #ffffff;
	background-color: #D1E0E5;
	padding: 10px 20px;
	margin: 40px 20px;
	color: #031520;
	box-shadow: 1px 2px 2px #ccc;
	font-size: 1.6rem;
    font-weight: 600;
}
.maincopy2 p{
	font-size: 2.0rem;
	letter-spacing: 0.2em;
	line-height: 30px;
	font-weight: 500;
    margin-top: 60px;
     font-family: 'GFS Didot', serif;
}
.vision_lead{
	width: 70%;
	margin: auto;
	
}
.vision_bg1{
	background-image: url("../img/vision_lead@2x.png");
	background-repeat: no-repeat;
	background-size: cover;
	padding: 10px 0;
	margin-bottom: 80px;
	
}
.vision_lead_box{
	width: 80%;
	margin: 40px auto;
	background-color: rgba(255,255,255,0.9);
	padding: 40px 60px;
    text-align: center;
}

.vision_lead_box h3{
	font-size: 2.4rem;
	font-weight: 500;
	padding: 30px 0;
	text-align: center;
    
}

.vision_lead_box li{
	line-height: 45px;
}
.vision_lead_box ul{
	padding-bottom: 40px;
    text-align: left;
}
.vision_lead_box p{
	text-align: center;
	font-size: 2.4rem;
	color:#266175;
	font-weight: 500;
	letter-spacing: 5px;
      border-bottom: 2px dotted #031520;
    display: inline-block;

}
.vision_lead_box span{
	font-size: 2.4rem;
	letter-spacing: 5px;
}
.v_ttl1{
    text-align: center;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
}
.v_ttl2{
    text-align: center;
    font-size: 2.4rem;
}
.vision_concept1{
	width: 70%;
	padding: 30px 60px;
	margin:0 auto 40px;
	background-image: url("../img/vision_line.png");
	background-repeat: no-repeat;
	background-size: cover;
	line-height: 32px;
}

.vision_concept1 h2{
	font-size: 3.6rem;
	color: #266175;
	text-shadow: 1px 1px 1px #fff;
	text-align: center;
	padding-bottom: 20px;
    border-bottom: 1px dotted #031520;
     font-family: 'GFS Didot', serif;
}
.vision_concept2{
	width: 70%;
	padding: 30px 60px;
	margin:0 auto 80px;
	background-image: url("../img/vision_inner_bg.png");
	background-repeat: no-repeat;
	background-size: cover;
	line-height: 32px;
}

.vision_concept2 h2{
	font-size: 3.6rem;
	color: #266175;
	text-shadow: 1px 1px 1px #fff;
	text-align: center;
	padding-bottom: 20px;
     border-bottom: 1px dotted #031520;
    padding-top: 10px;
     font-family: 'GFS Didot', serif;
}
.vision_featurelist{
	display: flex;
	width: 70%;	
	flex-wrap: wrap;
	margin: 40px auto 100px;
	justify-content: space-around;
}
.vision_featurebox{
	width: 40%;
	justify-content: space-around;
	margin-bottom: 40px;
}
.vision_featurebox img{
	width: 70%;
	margin: auto;
	display: block;
}
.vision_featurebox dt{
	font-size: 1.8rem;
	font-weight: 500;
	padding: 10px 30px;
	background-color: #fff;
	box-shadow: 0px 2px 4px #ccc;
	margin: 80px 20px 20px;
	z-index: 10;
    text-align: center;
    font-weight: 600;
}
.vision_featurebox dd{
	line-height: 32px;
	margin: 10px 20px 20px;
	text-align: left;
}
.feature1{
	background-image: url("../img/vision_feature_01@2x.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.feature2{
	background-image: url("../img/vision_feature_02@2x.png");
	background-size: cover;
	background-repeat: no-repeat;
}

.feature3{
	background-image: url("../img/vision_feature_03@2x.png");
	background-size: cover;
	background-repeat: no-repeat;
}
.feature4{
	background-image: url("../img/vision_feature_04@2x.png");
	background-size: cover;
	background-repeat: no-repeat;
}
.session_flow{
	position: relative;
}
.session_flow:after{
	content: "";
		position: absolute;
		background-image: url("../img/vision_session_bg.png");
		background-repeat: no-repeat;
		background-size: 90%;
	    background-position-x: center;
		width: 100%;
	height: 102%;
		top: -3%;
    	left: 0%;
		z-index: -10;
}
.vision_servicebox{
	padding: 80px 0 80px;
}
.vision_service{
	display: flex;
	width: 70%;
	margin: -50px auto;
	justify-content: center;
}
.vision_service img{
	width: 18%;
}
.vision_servicetxt{
	width: 60%;
	padding: 0 40px 80px;
}
.servicebox1{
	z-index: 90;
}
.servicebox2{
	z-index: 80;
}
.servicebox3{
	z-index: 70;
}
.servicebox4{
	z-index: 60;
}
.servicebox5{
	z-index: 50;
}
.vision_servicetxt dt{
	font-size: 1.8rem;
	color: #266175;
	line-height: 40px;
	padding-bottom: 10px;
    border-bottom: 1px dotted #031520;
}
.vision_service span{
    font-weight: 600;
}
.vision_service dd{
	line-height: 32px;
    padding-top: 10px;
}
.vision_ttl{
	font-size: 2.4rem;
	color: #266175;
	text-align: center;
	line-height: 60px;
	letter-spacing: 6px;
	font-weight: 600;
	padding-top: 30px;
	
}
.vision_innerbox{
	width: 40%;
	margin: 20px auto;
}
.vision_case{
	display: flex;
	width: 60%;
	margin: auto;
	
}
.vision_casebox{
	width: 40%;
	background-color: #fff;
	box-shadow: 1px 1px 2px #ccc;
	position: relative;
	justify-content: space-around;
	margin:60px auto 80px;
}

.vision_casebox:after {
		content: "";
		position: absolute;
		border: 1px solid #266175;
		width: 95%;
		height: 95%;
		top: 2%;
		right: 2%;
		z-index: 1;
	}
.vision_casebox p{
	display: inline-block;
	padding: 5px ;
	border-left: 1px solid #266175;
	margin: 15px 20px 20px;
	box-shadow: 1px 1px 2px #ccc;
}
.vision_casebox dl{
	padding: 5px 20px;
}

.vision_casebox dt{
	position: relative;
	padding-bottom: 10px;
}
.vision_casebox dt:after {
		content: "";
		position: absolute;
		border-bottom: 1px solid #266175;
	width: 50px;
	top: 65px;
    left: 0px;
	}

.vision_casebox dd{
	padding: 15px 0 20px;
	font-size: 1.4rem;
}
.vision_casebox span{
	font-size: 1.4rem;
}
.inner_example{
	width: 90%;
	margin: 60px auto 40px;
	position: relative;
}
.inner_example:after{
	content: "";
		position: absolute;
		background-image: url("../img/vision_example_bg.png");
		background-repeat: no-repeat;
		background-size: 100%;
	    background-position-x: center;
		width: 100%;
	height: 104%;
		top: -2%;
    	left: 0%;
		z-index: -10;
}
.inner_examplettl{
	display: flex;
	
}
.inner_examplettl1 img{
	width: 20%;
}
.inner_examplettl1 p{
	line-height: 50px;
	display: inline-block;
	padding: 0 20px;
}
.inner_examplettl1 span{
	border-radius: 30px;
	border: thin solid #266175;
	padding: 8px 15px;
}
.inner_examplettl1{
	text-align: center;
}
.japanbuild{
	width: 80%;
	margin: auto;
	padding-bottom: 100px;
	background-image: url("../img/vision_arrow.png");
	background-position: bottom;
	background-repeat: no-repeat;
	background-size: 10%;
	
}
.japanbuild dl{
	display: flex;
	justify-content: space-around;
	align-items: center;
	padding: 40px 0 0px;
}
.japanbuild dl:nth-child(even){
	flex-direction: row-reverse;
}
.japanbuild dt{
	width: 50%;
	padding: 0 20px;
	display: block;
}
.japanbuild dd{
	width: 40%;
}
.japanbuild span{
	border-radius: 20px;
	border: thin solid #266175;
	display: inline-block;
	padding: 0 15px;
	margin-bottom: 10px;
	color: #266175;
}
.japanbuild2{
	padding: 40px 0 0px;
	width: 50%;
	margin: auto;
}
.japanbuild2 span{
	border-radius: 20px;
	border: thin solid #266175;
	display: inline-block;
	padding: 0 15px;
	margin-bottom: 10px;
	color: #266175;
	
}
.japanbuild2 p{
	color: #266175;
	font-weight: 500;
	font-size: 1.8rem;
}

.japan_voice{
	width: 80%;
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 100px;
	justify-content: center;
	position: relative;
}
.japan_voice:after {
		content: "";
		position: absolute;
		background-image: url("../img/vision_eximg@2x.png");
		background-repeat: no-repeat;
		background-size: 100%;
		width: 42%;
	height: 42%;
		top: 78%;
    	left: 54%;
	}
.japan_voice dl{
	width: 40%;
	background-color: #fff;
	box-shadow: 1px 1px 2px #ccc;
	justify-content: space-around;
	margin: 10px 20px 40px;
	position: relative;

}
.japan_voice img{
	width: 24%;
	margin-right: 10px;
}
.japan_voice dt{
	align-items: center;
	display: flex;
	padding: 20px;
}
.japan_voice dd{
	padding: 10px 15px;
}
.japan_voice1{
	position: absolute;
	top:10px;
	left: -10px;
}
.japan_voice2{
	position: absolute;
	top:40px;
	left: 30px;
}
.japan_voice3{
	position: absolute;
	top: 5px;
	left: 25px;
}
.japan_voice4{
	position: absolute;
	top:80px;
	left: 30px;
}
.japan_voice5{
	position: absolute;
	top: 50px;
	left: -200px;
}

.suggestion{
	width: 80%;
	margin: auto;
}
.suggestion ul{
	padding: 40px 0 100px;
	width: 60%;
	margin: auto;
}
.suggestion li{
	line-height: 48px;
}

.vision_probox{
	width: 70%;
	margin: 20px auto 100px;
	text-align: center;
}

.vision_probox img{
	width: 65%;
	margin: auto;
	margin: 40px 0 20px;
}
.vision_probox p{
	width: 75%;
	margin: 10px auto;
	line-height: 36px;
	text-align: left;
}
.vision_qa{
    padding-top: 70px;
}
.QA_box {
	width: 70%;
	margin:40px auto 100px;
}
.qa span{
	font-size: 2.4rem;
	font-family: 'Josefin Sans';
	color: #266175;
	display: inline;
	padding: 0 20px 0 0;
}
.qa{
	line-height: 35px;
}
.qa_txt{
	display: block;
}
.qa_txt1{
	padding-bottom: 15px;
}
.qa_cont{
	padding: 10px 0 10px;
	border-bottom: dotted 2px #D1E0E5;
}
.vision_contact{
	background-color: #EDF3F5;
	width: 90%;
	margin: auto;
}
.vision_contactbox{
	width: 80%;
	margin: 40px auto 0;
	padding-bottom: 40px;
}

.vision_contactbox ul{
	padding: 40px 0;
	display: flex;
	
}

.vision_contactbox li{
	width: 160px;
	margin: auto;
	padding: 80px 30px;
}
.vision_contactimg1{
	background-image: url("../img/vosion_circle.png");
	background-position: center;
	background-size: contain;
	width: 100%;
	background-repeat: no-repeat;
}
.vision_contactimg2{
	background-image: url("../img/vosion_circle.png");
	background-position: center;
	background-size: contain;
	width: 100%;
	background-repeat: no-repeat;
}
.vision_contactimg3{
	background-image: url("../img/vosion_circle.png");
	 transform: rotateZ(90deg); 
	background-position: center;
	background-size: contain;
	width: 100%;
	background-repeat: no-repeat;
}
.vision_contactimg4{
	background-image: url("../img/vosion_circle.png");
	 transform: rotateZ(90deg); 
	background-position: center;
	background-size: contain;
	width: 100%;
	background-repeat: no-repeat;
}
.rotade{
	display: inline-block;
	 transform: rotateZ(-90deg); 
}
.vision_contact_close{
	font-size: 1.8rem;
	font-weight: 500;
	color: #266175;
	text-align: center;
	margin-bottom: 40px;
	line-height: 40px;
}
.vision_contacttxt{
	display: table;
  border: 1px solid #266175;
	padding: 10px;
	margin-bottom: 20px;
	font-size: 1.4rem;
	color: #266175;
}

.vision_contact_close2 img{
	width: 90%;
	margin: auto;
}

.btn a{
	font-size: 1.8rem;
	font-weight: 500;
	border-radius: 50px;
	background: -moz-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: -webkit-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: linear-gradient(to bottom, #266175, rgba(38,97,117,0.5));
	color: #fff;
	padding: 20px 40px;
	display: table;
	margin: 80px auto 80px;
	box-shadow: 1px 1px 2px #ccc;
	transition: .2s;
}
.btn a:hover {
  opacity: 0.8;
}
.sessionbg{
	background-image: url("../img/vision_session_bg.png");
    background-size: 85%;
    background-repeat: no-repeat;
    background-position: center;
	padding: 200px 0 40px;
	margin-top: -60px;
}
.officeinfomv{
	padding-top: 45px;
}
.office_mv{
	justify-content: center;
	padding-top: 20px;
}

.office_ttl{
	    font-size: 3.6rem;
    font-weight: 500;
    background-color: rgba(255,255,255,0.80);
    width: 100%;
    color: #266175;
    letter-spacing: 10px;
    text-align: center;
    margin-top: -91px;
    position: absolute;
    padding: 15px 0;
    text-shadow: 1px 1px 2px #ccc;
}
.office_copy{
	padding-top: 40px;
	width: 60%;
	margin: auto;
}

.office_txt{
	padding: 60px 0 80px;
	margin: auto;
	width: 60%;
}

.office_txt dl{
	padding-bottom: 30px;
}
.office_txt dt{
	border-left: 1px solid;
	padding-left: 10px;
}
.office_btn{
	margin-bottom: 80px;
}

.btn3{
	width: 20%;
	padding: 20px 20px;
	background-color: #D1E0E5;
	margin: 20px auto 40px;
	text-align: center;
	box-shadow: 1px 1px 2px #ccc;
}
.btn3 a{
	text-align: center;
}
.office_info{
    margin-top: -100px;
}
   .newhp{
        width: 50%;
        text-align: center;
        margin: 60px auto 200px;
    }
/*===========================タブレット=======================================*/
/*タブレット版*/
@media screen and (max-width:1024px){
	
	.leaning_box h2 {
    font-size: 1.8rem;
	}
	
}
/*==================================================
機能編 　5-1-11 クリックしたらナビが上から下に出現
===================================*/

@media screen and (max-width:960px) {
#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
	top:-120%;
    left:0;
	width:100%;
    height: 100vh;/*ナビの高さ*/
	background:#ffffff;
    /*動き*/
	transition: all 0.6s;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive{
    top: 0;
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list{
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;/*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

/*ナビゲーション*/
#g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin:100px auto 0 auto;
}
    
#g-nav ul ul{
    width: 100%;
    margin: 0;
}
 
/*プルダウンナビのCSS*/
#g-nav ul li.has-child ul{
  	position: relative;
	left:0;
	top:0;
	width:100%;
	visibility:visible;/*JSで制御するため一旦表示*/
	opacity:1;/*JSで制御するため一旦表示*/
	display: none;/*JSのslidetoggleで表示させるため非表示に*/
	transition:none;/*JSで制御するためCSSのアニメーションを切る*/
    transform: none;
}

	
/*リストのレイアウト設定*/

#g-nav li{
	list-style: none;
    text-align: center; 
}

#g-nav li a{
	color: #031520;
	text-decoration: none;
	padding:30px 0;
	display: block;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	font-weight: bold;
    border-right: none;
}
	#g-navi li a::after {
		background: none;
}
}

/*==================================================
　機能編 5-2-7 3本線が奥行きを持って回転して×に
===================================*/

.g-nav-openbtn{
    display: none;
}
 
@media screen and (max-width:960px) {
.g-nav-openbtn{
    display: block;
	position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
	top:5px;
	right: 20px;
	cursor: pointer;
    width: 60px;
    height:60px;
}

/*ボタン内側*/

.g-nav-openbtn .openbtn-area{
    transition: all .4s;
}

.g-nav-openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 1px;
    border-radius: 0px;
	background: #031520;
  	width: 45%;
  }


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

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

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

/*activeクラスが付与されると
線と周りのエリアが回転して×になる*/

.g-nav-openbtn.active .openbtn-area{
	transform: rotateY(-360deg);
}

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

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

.g-nav-openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
	nav ul{
		display: block;
	}
}
/*===========================SP=======================================*/
/*SP版*/
@media screen and (max-width:768px){
	.pc_img{
		display:none; 
	}
	.pc_only{
		display: none;
	}
	.sp_img{
		display: block;
	}
	.sp_only{
		display: block;
	}
nav ul li.has-child::before {
    left: 100px;
    top: 43%;
}

	/*===========================================================*/
	/* 機能編 5-2-1	3本線が×に*/
	/*===========================================================*/
	.navtoggle{
		position:fixed;
		z-index: 9999;/*ボタンを最前面に*/
		top:15px;
		right: 10px;
		cursor: pointer;
		width: 50px;
		height:50px;
	}

	/*×に変化*/	
	.navtoggle span{
		display: inline-block;
		transition: all .4s;
		position: absolute;
		left: 14px;
		height: 2px;
		border-radius: 2px;
		background-color: #266175;
		width: 45%;
	  }

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

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

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

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

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

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

.nav-list{
		display: block;
		font-size: 1.6rem;
		padding-left: 0;
		margin: 60px auto;
		
	}	
	.nav-list li{
		  padding: 40px 10px;
	}
	.nav-list li a{
		font-size: 1.8rem;
	}

/*===========================================================*/
	/* SPMV/
	/*===========================================================*/
	
#header{
		background-color: #fff;
		position: fixed;
		z-index: 100;
		margin: 0;
		width: 100%;
	}
    .logo{
        width: 20%;
    }
	.header_inner{
		width: 100%;
		margin: 0;
		display: block;
	}
	.main{
	background-image: none;
	padding-bottom: 20px;
	}
	.mv_sp{
		margin-top: -100px;
	}
	.mainv{
		width: 100vw;
    flex-wrap: wrap;
	}
    
    .slider{
        width: 100%;
        height: 100%;
        margin-top: 15%;
    }
    .slider-item{
        height:55vh;
    }
    .mainv h2{
        font-size: 2.0rem;
        margin-top: 15%;
        background-color: transparent;
        text-shadow: 1px 1px 1px #fff;
        line-height: 38px;
    }
    .main_copy{
        width: 100%;
        margin-top: -50%;
        z-index: 10;
    }
    .main_copy::before{
        display: none;
    }
    .main_copy h1{
        padding: 5px 0;
        text-shadow: 1px 1px 1px #fff;
    }
    .ttl{
        font-size: 1.5rem;
    }
    .newsx{
        top:15%;
        left: -9%;
    }

	.section_inner{
		margin: 0 auto;
	}
	.newstxt{
		padding-bottom: 80px;

	}

	.newstxt dl{
		display: block;
		width: 80%;
	}
	
	.newstxt dt{
		padding-bottom: 10px;
        font-size: 1.4rem;
	}
	
	.newstxt dd{
		padding:0 0 10px;
        font-size: 1.4rem;
	}
    
    .videottl{
        font-size: 1.6rem;
    }
    .pr{
        flex-wrap: wrap;
        padding-bottom: 10px;
    } 
    .pr p{
        width: 80%;
        margin-bottom: 0;
    }
    .pr img{
        width: 80%;
    }
    .video2_box{
        margin-top: 50px;
    }
    .about{
        top:5%;
        left: -11%;
    }
    .aboutbox img{
        width: 80%;
    }
    .aboutxt2{
        position: static;
        width: 75%;
        margin: 20px auto;
        display: block;
        padding: 20px;
    }
    .aboutxt2 span{
        font-size: 1.6rem;
    }
    .aboutcont{
        position: static;
    }
    .service_box{
        display: block;
        width: 100%;
        padding-top: 0;
        margin-bottom: 40px;
    }
    .service_box dl{
        width: 80%;
        margin: 80px auto 100px;
    }
    
    
    .service_box dd{
        margin-bottom: 20px;
    }
    .service_box dd :nth-child(2){
        margin-bottom: 60px;
    }

    .service{
        top:3%;
        left: -13%;
    }
    .profilecont{
        display: block;
    }
    
    .profiletxt{
        position: static;
        display: block;
        width: 100%;
    }
    .profilebox{
        width: 80%;
    }
    .profile_box::after{
        display: none;
    }
    
    .profilecont img {
    width: 80%;
    margin-left: 0px;
}
    .profilecont::after{
        display: none;
    }
    .profile{
        top:3%;
        left: -13%;
    }
    
   .profilebox::after {
   display: none;
}
 
    .fot_sns ul{
        width: 90%;
    }
    .fot_sns li{
        padding: 10px 15px;
    }
    .fot_sns img{
        width: 90%;
    }
    
    .fot_sns li:nth-child(3) {
    width: 65%;
        margin-top: -10px;
}
     .fot_sns li:nth-child(4) {
    width: 70%;
         margin-top: -12px;
}
    .contact img{
        width: 5%;
        transform: translate(0px, -4px);
    }
    .privacy{
        font-size: 1.3rem;
        margin-bottom: 0px;
    }
    
.profilebox button {
    margin-top: 0%;
}
.profiletxt p span {
    display: inline-block;
    padding-bottom: 0px;

}
    .footer_inner{
        margin: 35px 0 0;
    }

	.pagetop {
    position: fixed;
    bottom: 115px;
    right: -10px;
		width: 12%;
}
    .rss{
        width: 95%;
        margin-bottom: 60px;
    }
    .rss img{
        width: 20%;
    }
    
 /*お試しコンサル*/
    .main_2{
        width: 100%;
    }
    .mainv_2{
        display: block;
        width: 100%;
        padding-top: 0;
        position: relative;
    }
    .mainv_2 img{
        width: 100vw;
        margin-top: 16%;
    }
    .mainv_2 h2{
        position: absolute;
        top:24%;
        left: 7%;
        font-size: 2.0rem;
    }
    .mainv_2 span{
        line-height: 26px;
        font-size: 1.6rem;
        display: block;
    }
    
    .sec_box{
        width: 90%;
    }

    .traial_read h4{
        margin: 60px 0 40px;
        font-size: 1.8rem;
        line-height: 45px;
    }
    .benefit ul{
        width: 100%;
    }

    .traial_read p{
        width: 80%;
        padding-bottom: 40px;
    }
    .traial_read span{
        text-align: left;
    }
    .traial_ttl{
        margin-bottom: 10px;
    }
    .traial_ttl h2{
        font-size: 2.0rem;
        margin-bottom: 0px;
    }
    
    .traial_ttl p{
        font-size: 1.3rem;
    }
    .traial_txt1{
        flex-wrap: wrap;
    }
    .traial_txti{
        width: 70%;
        text-align: center;
        margin: auto;
    }
    .traial_txta{
        width: 85%;
        padding: 20px 0 0;
        
    } 
    
    .traial_txta ul{
        font-size: 1.5rem;
    }
    .traial_txta li{
        padding-bottom: 10px;
    }
    
    .traial_txtb{
        background-position: 0% 3%, 87% 32%;
        background-size: 5%;
    }
    
    .traial_txtb p{
        margin-left: 25px;
    }
    .stepimg {
        width: 100%;
        background-color: #D1E0E5;
        padding: 10px 0;
    }
    .voice_box{
        width: 85%;
        margin: auto;
    }
    .voice_ttl{
        flex-wrap: wrap;
        padding-top: 40px;
    } 
    .voice_ttl h3{
        width: 100%;
        padding: 10px 10px 10px;
    }
    
    
    .voice_ttl span::after{
        top:35%;
        height: 60%;
        left: 0%;
    }
    
    .voice_ttl span{
        padding-left: 20px;
        margin: 0;
        width: 80%;
    }
    .voicetxt{
        background-color: #D1E0E5;
        border-top: none;
    }
    .voice_copy{
        width: 95%;
    }
    .voice_ttl img{
        width: 50%;
        margin:20px auto;
        
    }
    .cp_container p{
        width: 100%;
       font-size: 1.5rem;
    }
    .gaiyo{
        width: 85%;
        margin-top: 60px;
    }
    .gaiyo img{
        width: 100%;
    }
    
    
    .traial_gaiyo{
        width: 80%;
        margin-top: 40px;
    }
    .traial_gaiyo dl{
        display: block;
        margin: 0px auto 0px;
        text-align: center;
    }
    
    .traial_gaiyo dt{
        display: block;
        width: 38%;
        
    }
    .traial_gaiyo dd{
        width: 100%;
        margin: 10px auto 20px;
        text-align: left;
    }
    .traial_gaiyo button a{
        padding: 10px 40px;
    } 
    .traial_ex{
        width: 100%;
    }
    .faq_glex{
        left: -6%;
    }
    .faq_box{
        padding: 20px 10px;
        width: 85%;
        margin-top: 20px;
        margin-bottom: 60px;
    }
	/*vision_shift*/
	.v_mainv{
		width: 100vw;
	}
	.v_mainv h2 {
    font-size: 2.6rem;
    font-weight: 500;
    background-color:rgba(255,255,255,0.79);
    width: 100%;
    color: #031520;
    letter-spacing: 7px;
    text-align: center;
        margin-top: -160px;
    position: absolute;
	text-shadow: 1px 1px 2px #ccc;
    padding: 80px 0 20px;
}

	.vision_copy {
    position: absolute;
    top: 64%;
    left: 22%;
    font-size: 1.6rem;
    letter-spacing: 6px;
    color: #266175;
    font-weight: 500;
    text-shadow: 1px 1px 2px #fff;
	z-index: 10;
	text-align: center;
}
	.maincopy {
    padding: 30px 20px 60px;
    font-size: 1.6rem;
    letter-spacing: 2px;
    line-height: 32px;
    text-align: center;
    background-image: url("../img/MV_spbg.png");
    background-position-y: -150px;
    background-repeat: no-repeat;
	background-size: cover;
}
	.maincopy2 {
    padding: 40px 10px 60px;
    line-height: 32px;
    text-align: center;
    background-image: none;
	margin-top: -20px;

}
	.maincopy2 p{
		width: 80%;
		margin: auto;
		    font-size: 1.8rem;
    letter-spacing: 3px;
		padding-bottom: 20px;
	}
	
    .maincopy2 span{
        margin: 10px 20px;
        width: 200px;
    }
	.vision_main {
    background-image: url("../img/vision_vbgsp.png");
    background-position-y: 80%;
    background-repeat: no-repeat;
		background-size: 100%;
		padding-bottom: 80px;
}
	.vision_lead{
		width: 100%;
	}
	
	.vision_bg1 {
    background-position-x: 15%;
    padding: 10px 0;
    margin-bottom: 80px;
}
	
	.vision_lead_box {
    width: 80%;
    padding: 20px 20px;
}
	
	.vision_lead_box h3 {
    font-size: 1.8rem;
}
	.vision_lead_box li {
    line-height: 40px;
	padding-bottom: 10px;
}
	
	.vision_lead_box span {
    font-size: 1.8rem;
    letter-spacing: 5px;
}
	.vision_lead_box p {
    font-size: 1.8rem;
}
	.vision_concept1 h2 {
    font-size: 2.8rem;
}

	.vision_concept1 {
    width: 68%;
    padding: 20px 20px;
    margin: 0 auto 40px;
}
	.vision_concept2 h2 {
    font-size: 2.4rem;
	}
	
	
	.vision_concept2 {
    width: 68%;
    padding: 20px 20px;
    margin: 0 auto 80px;
}
	.ttl1{
		font-size: 3.6rem;
	}
	.vision_featurelist {
		width: 90%;
	}
	
	.vision_featurebox { 
    width: 100%;
		margin: 20px 0 20px;
}
	.vision_service{
		width: 90%;
	}
	.vision_servicetxt {
    width: 70%;
    padding: 0 15px 40px;
}
	.vision_servicetxt dt {
    font-size: 1.6rem;
    line-height: 28px;
}
	.vision_service dd {
		font-size: 1.4rem;
    line-height: 20px;
}
	.vision_service p{
		font-size: 1.4rem;
	}
	.vision_service img{
		width: 23%;
		height: 23%;
		flex-shrink: 0;
	}
	.vision_servicetxt span{
		font-size: 1.4rem;
	}
	.session_flow {
    margin-top: -20px;
}
	.session_flow:after {
    content: "";
    position: absolute;
    background-image: url("../img/vision_session_bgsp.png");
    background-repeat: no-repeat;
    background-size: 90%;
    width: 100%;
    height: 105%;
    top: -3%;
}
	
	.servicebox1{
		width: 100%;
		margin-bottom: 40px;
	}
	.servicebox2_txt{
		margin-top: -90px;
	}
	.servicebox2{
		width: 100%;
	}
	.servicebox3{
		width: 100%;
	}
	.servicebox3_txt{
		margin-top: 16px;
	}
	.servicebox4{
		width: 100%;
	}
	.servicebox5{
		width: 100%;
	}

	.vision_ttl {
    font-size: 1.8rem;
    line-height: 40px;
    letter-spacing: 4px;
    font-weight: 500;
    padding-top: 0px;
	width: 70%;
	margin: auto;
}
	.vision_innerbox {
    width: 100%;
    margin: 20px auto;
}
	.vision_case{
		display: block;
		width: 100%;
	}
	
	.vision_casebox{
		width: 80%;
		margin: 20px auto 40px;
	}
	.inner_example:after {
    content: "";
    position: absolute;
    background-image: url("../img/vision_shift_exsp.png");
    background-size: cover;
    width: 90%;
    height: 100%;
    top: 1%;
    left: 5%;
}
	.inner_example {
    width: 100%;
		padding-top: 120px;
}
	.inner_examplettl1 span{
		font-size: 1.3rem;
		display: block;
		width: 40%;
		margin: 10px auto;
	}
	.inner_examplettl1 img {
    width: 15%;
}
	.japanbuild{
		background-size: 25%;
	}
	.japanbuild dl{
		flex-wrap: wrap;
	}
	.japanbuild dt {
    width: 100%;
    padding: 0 0 10px 0;
		display: block;
}
	.japanbuild dd{
		width: 100%;
	}
	.japanbuild2 {
    width: 80%;
}
	.japan_voice{
		display: block;
		width: 100%;
	}
	.japan_voice dl{
		width: 80%;
		margin:0 auto 20px;
	}
	.japan_voice dd{
		font-size: 1.4rem;
	}
	.japan_voice1{
		top:0;
		left:0;
	}
	.japan_voice2{
		top:0;
		left:0;
	}
	.japan_voice3{
		top:0;
		left:0;
	}
	.japan_voice4{
		top:0;
		left:0;
	}
	.japan_voice5{
		top:0;
		left:0;
	}
	.japan_voice:after {
    width: 50%;
    height: 42%;
    top: 99%;
    left: 49%;
}
	.suggestion {
    width: 100%;
    margin: 40px auto 0;
	padding-top: 40px;
}
	
	
	.suggestion ul {
    padding: 40px 0 60px;
    width: 70%;
}
	.suggestion li {
    line-height: 40px;
}
	.vision_probox {
    width: 80%;
    margin: 20px auto 60px;
}
	.vision_probox p {
    width: 100%;
}
	.vision_pro {
    padding-bottom: 0px;
}
	.vision_contact {
    width: 100%;
	}
	.vision_contactbox ul {
    flex-wrap: wrap;
	}
	.vision_contactbox li {
	font-size: 1.4rem;
    width: 140px;
}
	.vision_contact_close {
    font-size: 1.6rem;
    padding: 10px 14%;
}
	
	.vision_contactbox {
    width: 100%;
    margin: 0 auto 0;
	padding-top: 10px;
}
	.vision_probox img {
    width: 100%;
}
	.vision_contacttxt {
    margin-bottom: 20px;
	margin-left: 20px;
}
	.vision_contact_close2 img {
    width: 94%;
    margin: 0 auto;
    padding: 0 3% 0;
}
	.officeinfomv{
	margin-top: 0px;
}
	.office_ttl{
		padding: 0;
	}
	.office_ttl h2{
		padding: 20px 0 20px;
		top:70%;
		 margin: -5% 0%;
	}
	.office_copy {
    padding-top: 40px;
    width: 80%;
    margin: auto;
}
	.office_txt dd{
		font-size: 1.4rem;
	}
	.office_txt{
		width: 65%;
	}
	.btn3{
		width: 52%;
	}
	/*プロフィール*/
    
    .pro_lead{
        line-height: 32px;
    }
    
    .p_about{
        left:-11%;
        top:4%;
    }
    
  
        .traial{
        left:-14%;
        top:10%;
    }
    .voice{
        left: -10%;
        top:45%;
    }
    .price{
        left: -12%;
        top:100%;
    }
      .faq_glex{
        top:18%;
        left: -6%;
    }
    .sectionbox{
        width: 80%;
    }
    .p_about_box{
        margin-bottom: 60px;
    }
    .p_aboutcont ul{
        flex-wrap: wrap;
    }
    .p_person{
        top:8%;
        left: -21%;
    }
    
    .p_aboutcont li img{
        width: 80%;
        padding-bottom: 20px;
    }
    .p_perdsoncont{
        flex-wrap: wrap;
    }
    
    .p_perdsoncont img{
        width: 100%;
    }
    .pro_box2{
        margin: 0;
    }
    .pro_box2 h4{
        font-size: 2.4rem;
        line-height: 45px;
        text-shadow: 1px 2px 2px #d8d8d8;
    }
    .pro_box2 h3{
        font-size: 1.6rem;
        padding-bottom: 20px;
    }
    
    .p_personmaptxt{
        width: 100%;
        padding-bottom: 10px;
    }
    .p_personmap{
        margin-bottom: 60px;
    }
    .p_personmap img{
        width: 100%;
    }
    .p_personmaptxt2{
        width: 100%;
        padding-left: 10px;
        margin-left: 3px;
    }
    .p_history{
        top:5%;
        left: -13%;
    }
    .hist_box2 ul{
        background-size: 7%;
    }
    
    .hist_box2 li{
        width: 80%;
    }
    .historycont2{
        margin-top: 0px;
        display: block;
        width: 80%;
        margin-bottom: 60px;
    }
    .historycont2 p{
        width: 90%;
        margin: auto;
        font-size: 1.5rem;
    }
    .p_crerrer{
        top:6%;
        left: -12%;
    }
    .carrerbox{
        margin-bottom: 80px;
    }
    .historycont2::after{
        background-image: url("../img/sp_line.png");
            background-size: 50%;
    position: absolute;
    top: 52.5%;
    width: 35%;
    height: 0.5%;
    left: 35%;
    }
    .book_ttl {
        width: 40%;
    }
    .book_box{
        display: block;
        width: 80%;
    }
    .book_flex{
        width: 100%;
        margin-bottom: 40px;
    }
    .book_flex h3{
        padding: 20px 10px 10px;
    }
    .book_flex::after{
        width: 90%;
        left: 7.5%;
    }
    .massage{
        width: 95vw;
        background-image: url("../img/pro_back@2x.jpg");
        background-repeat: no-repeat;
        padding-bottom: 125%;
    }
    
    .massage p{
        padding-top: 30px;
        width: 85%;
    }
    .fot_sns2{
        margin-top: 0%;
    }
	/*プライバシーポリシー */
.pagettl{
	padding-top: 15%;
	padding-bottom: 0;
	font-size:2.0rem;
	border-bottom: dotted #D1E0E5;
}
.read{
	width: 100%;
	margin: auto;
	padding:10px 0 30px 0;
}
.privacy_box{
	width: 100%;
	margin: auto;
}
.privacy_box dt{
	font-size: 1.6rem;
	display: block;
	padding: 15px 0 15px 10px;
}
.privacy_box dd{
	font-size: 1.3rem;
	padding: 20px 0% 30px;
}
.btn_p{
	margin-bottom: 40px;
}
.btn_p a{
	font-size: 1.8rem;
	font-weight: 500;
	border-radius: 50px;
	background: -moz-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: -webkit-linear-gradient(top, #266175, rgba(38,97,117,0.5));
  background: linear-gradient(to bottom, #266175, rgba(38,97,117,0.5));
	color: #fff;
	padding: 20px 80px;
	display: table;
	margin: 40px auto 20px;
	box-shadow: 1px 1px 2px #ccc;
	transition: .2s;
}
.specified_box{
	width: 100%;
}
.specified_list{
	font-size: 1.3rem;
	align-items: center;
}
 .specified_list th,
.specified_list td {
    padding: 5px;
}

.specified_list th {
    background-color: #D1E0E5;
	width: 25%;
	text-align: inherit;
}
    .mailbtn {
        width: 80%;
    }	
    .mailbtn span{
        margin-bottom: 20px;
    }	
	
    .mailbtn h3{
        width: 80%;
    }
    .mail_btn{
        padding: 15px 30px;
    }
.scrollArea{
	height: 300px;
	overflow: auto;
	padding-right: 20px;
    margin: 40px auto 60px;
    width: 90%;
    
}
    .media{
    display: block;  
        padding: 20px 10px;
        width: 85%;
    }  
    .mediatxt{
        padding: 10px;
    }
    .media1{
        width: 100%;
    }
    .media2{
        width: 70%;
        padding: 20px 0;
    }
    .m-logo{
        display: none;
    }

}




