@charset "utf-8";
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700,900");
@import url("font-awesome.min.css");

/* Reset */

	html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

	article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
		display: block;
	}

	body {
        font-family: "Zen Maru Gothic", serif;
        font-weight: 400;
        font-style: normal;
        line-height: 1.8;
        font-size: 18px;
        letter-spacing: 1px;
        color: #695e41;

	}

.bgimg {
        margin-top: 0px;
        background:#fff url(../img/bg.gif) repeat;
        background-size: contain;
}
@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
.bgimg {
        background:#fff url(../img/bg2.gif) repeat;
}
}

/* google font */
.zen-maru gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}
.sawarabi-gothic-regular {
  font-family: "Sawarabi Gothic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

ol,
ul {
    list-style: none;
    list-style-type: none;
}

	blockquote, q {
		quotes: none;
	}

	blockquote:before, blockquote:after, q:before, q:after {
		content: '';
		content: none;
	}

	table {
		border-collapse: collapse;
		border-spacing: 0;
	}

	body {
		-webkit-text-size-adjust: none;
	}

    a { text-decoration: none; } 

/* body */



h3 {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 60px;
}

p.english {
    color: #e7be8b;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 3px;
}
section {
    text-align: center;
    margin: 100px 100px;
    border: 0px solid #e7be8b;
}
.yohaku {
    padding: 20px;
}
@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
section {
    text-align: center;
    margin: 80px 20px;
    border: 0px solid #e7be8b;
}
    h3 {
        margin-bottom: 40px;
    }
}
/*----------------------------
scroll_up ｜下から上へ出現
----------------------------*/

.scroll_up {
  transition: 0.8s ease-in-out;
  transform: translateY(30px);
  opacity: 0;
}
.scroll_up.on {
  transform: translateY(0);
  opacity: 1.0;
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pc { display: inline !important; }
.sp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 900px) {
    .pc { display: none !important; }
    .sp { display: inline !important; }
}

/*----------------------------
menu
----------------------------*/
/*ロゴの大きさを調整*/
.logo img {
    float: left;
    width: 192px;
    margin: 15px 20px;
}


.gNav .gNav-menu {
    display: flex;
    padding: 20px 10px;
    background-color: #fff;
    justify-content: space-between;
    
}

.gNav-menu a {
    padding: 10px 10px;
    margin: 10px 15px;
    border: 0px solid red;
    text-decoration: none;
    color: #1e1e1e;
    font-weight: 500;
    font-size: 16px;
    letter-spacing: 0.1em;
    text-shadow: 0 0 10px #fff,0 0 10px #fff,0 0 10px #fff;
}

.gnavi li a{
    /*線の基点とするためrelativeを指定*/
	position: relative;
}

.gnavi li.current a,
.gnavi li a:hover{
	color:#2a63af;
}

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

/*現在地とhoverの設定*/
.gnavi li.current a::after,
.gnavi li a:hover::after {
    transform: scale(1, 1);/*X方向にスケール拡大*/
}

.hamburger {
    margin: 0px auto 0;
    width: 100%;
    display: flex;
    x-index: 100;
    justify-content: space-between;
}

/* スマホ版 */
@media screen and (max-width: 1500px) {
.logo img {
    width: 192px;
}
.gnavi li.current a,
.gnavi li a:hover{
	color:#2a63af;
}
/*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
.btn-gNav{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    display: none;
	position: relative;
	background:#2a63af;
	cursor: pointer;
	border-radius: 5px;
    position: fixed;
    top: 15px;
    right: 15px;
    width: 50px;
    height: 50px;
    z-index: 12;
    box-sizing: border-box;
    -webkit-transition: all 400ms;
    transition: all 400ms;
}

/*ボタン内側*/
.btn-gNav span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
	background: #fff;
    position: absolute;
    width: 100%;
    -webkit-transition: all 400ms;
    transition: all 400ms;
  }

.btn-gNav span:nth-of-type(1) {
	top:15px;	
  	width: 45%;
}

.btn-gNav span:nth-of-type(2) {
	top:23px;
  	width: 35%;
}

.btn-gNav span:nth-of-type(3) {
	top:31px;
  	width: 20%;
}

/*activeクラスが付与されると線が回転して×になる*/

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

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

.btn-gNav.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 30%;
}
  .btn-gNav {
        display: block;
    }
    .gNav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100%;
        font-size: 16px;
        box-sizing: border-box;
        z-index: 1;
        padding-top: 80px;
        transition: .3s;
    }
    .gNav.open {
        right: 0;
        background-color: #fff;
    }
    .gNav .gNav-menu {
        background-color: #fff;
        padding: 0px;
        width: 100%;
        height: 100%;
        display: block;
        flex-direction: column;
        text-align: center;
        /*justify-content: center;*/
    }
    .gNav .gNav-menu li {
        width: 100%;
        padding: 15px 0px;
    }
    .gNav .gNav-menu li a {
        color: #1e1e1e;
    }
}


/*----------------------------
index.html
----------------------------*/
/* FV */

.imgmax {
    width: 100%;
}
.slide {
  position: relative;
  width: 100%;
  height: 400px;
  overflow: hidden;
}
h2.fv {
    font-size: 33px;
    font-weight: 600;
    position: absolute;
    top: 40%;
    z-index: 1;
    margin-left: 30px;
    text-shadow: 0 0 10px #fff,0 0 15px #fff;
}
.pc {
        display: inline;
    }

.sp {
    display: none;
}

@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
    h2 {
        font-size: 18px;
    }
    .pc {
        display: none;
    }
    .sp {
        display: inline;
    }
}





/* サービス内容 */
.s_link li {
  display: inline-block;
  list-style: none;
    margin: 15px;
}
.s_menu {
    background: #fff;
    border-radius: 20px;        /* CSS3草案 */  
    -webkit-border-radius: 20px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 20px;   /* Firefox用 */  
    display: inline-block;
    transition: 0.3s;
    box-shadow: 0px 10px 30px 2px rgba(0, 0, 0, 0.1);
    padding: 10px 0 45px 0;
}
/*hoverをした後のボタンの形状*/
.s_menu:hover{
    border-color:transparent; 
    transform: translateY(4px);
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}
.s_menu img {
    width: 100%;
    max-width: 450px;
}

.s_number {
    font-size: 18px;
    color: #e7be8b;
    font-weight: 500;
}

.s_menu h4 {
    color: #695e41;
    font-size: 24px;
    font-weight: 500;
    line-height: 30px;
    padding: 10px 0 15px 0;
}

.oran {
    color: #f58f77;
}

.setu {
    color: #695e41;
    font-size: 16px;
}

/*== 押し込む円 */

.pushcircle{
    margin: -30px auto 0px auto;
    /*周囲の線の起点とするためrelativeを指定*/
  position: relative;
    /*円の形状*/
  width:80px;
  height:80px;
    box-sizing: border-box;
    padding: 0 10px;
  text-align: center;
  background:#e7be8b;
  border-radius:50%;
  color: #fff;
    text-decoration: none;
    outline: none;
    /*天地中央にテキストを配置*/
    display: flex;
    align-items: center;
    justify-content: center;
}

/*内側の線*/
.pushcircle:after {
  content: "";
    /*絶対配置で線の位置を決める*/
  position: absolute;
  top: 50%;
  left: 50%;
    /*線の形状*/
    width: 85%;
  height: 85%;
  border: 2px solid #e7be8b;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(1.1);
    /*アニメーションの指定*/
    transition: .3s ease; 
  }

/*hoverをしたら枠線が小さくなる*/
.pushcircle:hover:after {
  transform: translate(-50%, -50%) scale(1);
    border-color:#fff;
}

/* 矢印 */
.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
}


/* company */

#company {
    background: url(../img/pc_comimg.jpg) no-repeat;
     background-size: cover;
    border-radius: 20px; /* 角丸の半径 */
    height: 400px;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}
#company::before {
    content: '';
    position: absolute;
    border-radius: 20px; /* 角丸の半径 */
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.4);
}
#company p {
    position: absolute;
    width: 90%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size:30px;
    font-weight: 500;
  letter-spacing:5px;
  color:#fff;
}

/* beige-button */
.original-button {
  margin:30px auto 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  border-radius: 65px;
  max-width: 450px;
  width: 100%;
  height: 65px;
  font-weight: 500;
  letter-spacing: 3px;
  transition: 0.3s;
  box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(circle at 100% 0%, rgba(245, 143, 119, 1) 15%, rgba(246, 178, 94, 1));
}

.original-button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
    background-image: radial-gradient(circle at 100% 0%, rgba(246, 178, 94, 1) 15%, rgba(245, 143, 119, 1));
    border-color:transparent; 
    transform: translateY(4px);
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}
@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
    #company p {
        font-size: 18px;
    }
}
/* recruite */
#recruite {
    margin: 100px 30px;
}
#popup {
    
  display: none; /* label でコントロールするので input は非表示に */
}

.popup-open {
    text-align: left;
  cursor: pointer; /* マウスオーバーでカーソルの形状を変えることで、クリックできる要素だとわかりやすいように */
    font-family: "Zen Maru Gothic", serif;
    display: block;
    margin: auto;
    font-size: 30px;
    font-weight: 500;
    letter-spacing: 5px;
  padding: 110px 200px 0px 50px;
  max-width: 350px;
    color: #fff;
  height: 160px;
    border: 0;
    background: url(../img/recruite.jpg) no-repeat;
  border-radius: 20px 20px 20px 20px;
  box-shadow: 0px 10px 30px 2px rgba(0, 0, 0, 0.1);
}

.popup-overlay {
  display: none; /* input にチェックが入るまでは非表示に */
}
.popup-open:hover {
    border-color:transparent; 
    transform: translateY(4px);
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}

#popup:checked ~ .popup-overlay {
  display: block;
  z-index: 99999;
  background-color: #00000070;
  position: fixed;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.popup-window {
  width: 90vw;
  max-width: 560px;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 6px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.popup-text {
  margin: 0;
}

.popup-text:not(:last-of-type) {
  margin-bottom: 1em
}

.popup-close {
  cursor: pointer;
  position: absolute;
  top: -26px;
  right: 0;
}

@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/

.popup-open {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 2px;
  padding: 60px 0px 0px 20px;
  height: 100px;
    background-size: cover;
}
    .popup-window {
}
}

/*----------------------------
kaigo.html
----------------------------*/
#title h2 {
    font-size: 46px;
    font-weight: 500;
}
@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
#title h2 {
    font-size: 36px;
    font-weight: 500;
}
}

/* content */
#content {
    text-align: left;
    max-width: 1000px;
    margin: auto;
}

.box-img img {
    border-radius: 20px 20px 20px 20px;
    width: 100%;
    max-width: 500px;
}

.pri {
    border-radius: 20px 20px 20px 20px;
    width: 100%;
    max-width: 500px;
    margin: 35px 0 65px 0;
}
.sub_box {
    border: 0px #000 solid;
}
.box-img {
    border: 0px solid red;
    text-align: right;
}

@media(max-width: 1450px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
    #content img {
        margin-left: 0px;
        margin-top: 35px;
    }
.sub_box {
    margin: 0 0 0 0px;
}
}


.subtitle {
    border-left: 3px solid #f58f77;
    padding-left: 30px;
    
}

.list_test-wrap {
    list-style:  none;  /* デフォルトのアイコンを消す */
    margin:  0;         /* デフォルト指定上書き */
    padding: 0;         /* デフォルト指定上書き */
    line-height: 50px;
    color: #666666;
}

.list_test:before {
    content:  "";     /* 空の要素作成 */
    width:  10px;               /* 幅指定 */
    height:  10px;              /* 高さ指定 */
    display:  inline-block;     /* インラインブロックにする */
    background-color: #f58f77;  /* 背景色指定 */
    border-radius:  50%;        /* 要素を丸くする */
    position:  relative;        /* 位置調整 */
    top: -1px;                  /* 位置調整 */
    margin-right: 10px;          /* 余白指定 */
}

/* table */
.table_design01 {
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
    margin: auto;
}
.table_design01 th, .table_design01 td {
  border: 2px solid #fff;
  background-color: #f7e6ce;
  padding: 1em;
    vertical-align:middle;
}
.table_design01 th {
  background-color: #fbf5ed;
  color: #1e1e1e;
  text-align: center;
  width: 70%;
  min-width: 4em;
}
/* table02 */
.table_design02 {
  border-collapse: collapse;
  width: 100%;
  max-width: 1000px;
    margin: auto;
}
.table_design02 th, .table_design02 td {
  border: 2px solid #fff;
  background-color: #fbf5ed;
  padding: 1em;
    vertical-align:middle;
}
.table_design02 th {
  background-color: #f7e6ce;
  color: #1e1e1e;
    
  text-align: center;
  width: 30%;
  min-width: 4em;
}




/* flow */
.flow_design05 {
  display: flex;
  justify-content: center;
  align-items: center;
    text-align: left;
}

.flow05 {
  padding-left: 0;
}

.flow05 > li {
  list-style-type: none;
  position: relative;
  padding-left: 60px;
}

.flow05 > li:not(:last-child) {
  padding-bottom: 10px;
}

.flow05 > li .icon05 {
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  border-radius: 100vh;
  display: inline-block;
  background: #695e41;
  color: #fff;
  position: absolute;
  left: 0;
}

.flow05 > li:not(:last-child)::before {
  content: '';
  background: #f7e6ce;
  width: 4px;
  height: 100%;
  position: absolute;
  top: calc(50% - -30px);
  left: 19px;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

.flow05 > li dl dt {
  font-size: 1.3em;
  font-weight: 500;
  color: #f58f77;
}

.flow05 > li dl dd {
  margin-left: 0;
    margin-bottom: 50px;
    color: #1e1e1e;
}

/*----------------------------
pryvate
----------------------------*/
ul.list_maru {
    margin: auto;
}

ul.list_maru li {
    width: 160px;
  height: 140px;
    border: 1px solid #f58f77;
  border-radius: 50%;
  color: #f58f77;
  text-align: center;
    display: inline-block;
    margin: 8px;
    padding: 40px 15px 0px 15px;
    font-weight: 500;
}




/*----------------------------
company
----------------------------*/

.sign {
    width: 200px;
}

.history {
    text-align: left;
}
.cp_timeline01 {
	position: relative;
	width: 100%;
	margin: 3em auto;
	padding: 1em 0;
	list-style-type: none;
}
.cp_timeline01:before {
	position: absolute;
	left: 50%;
	top: 0;
	content: '';
	display: block;
	width: 6px;
	height: 100%;
	margin-left: -3px;
	background: #feedd8;
	z-index: 5;
}
.cp_timeline01 li {
	padding: 1em 0;
}
.cp_timeline01 li:after {
	content: '';
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.cp_timeline01 li:nth-child(odd) .timeline_item {
	position: relative;
	width: calc(50% - 29px);
	float: left;
	text-align: right;
}
.cp_timeline01 li:nth-child(even) .timeline_item {
	position: relative;
	width: calc(50% - 29px);
	float: right;
}
.cp_timeline01 li .timeline_item .flag_cont {
	position: relative;
	display: inline-block;
	text-align: center;
}
.cp_timeline01 li .timeline_item .flag {
	position: relative;
	display: inline;
	background: #695e41;
	color: #ffffff;
	padding: 6px 10px;
	border-radius: 5px;
	font-weight: bold;
	text-align: left;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag {
	-webkit-box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
	        box-shadow: -1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
    font-size: 18px;
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag {
    font-size: 18px;
	-webkit-box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
	        box-shadow: 1px 1px 1px rgba(0,0,0,0.15), 0 0 1px rgba(0,0,0,0.15);
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
	position: absolute;
	top: 10px;
	right: -41px;
	content: ' ';
	display: block;
	width: 12px;
	height: 12px;
	margin-top: -10px;
	background: #e7be8b;
	border-radius: 12px;
	border: 6px solid #e7be8b;
	z-index: 10;
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
	left: -41px;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:after,
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
	position: absolute;
	top: 12px;
	right: -39px;
	content: ' ';
	display: block;
	width: 16px;
	height: 16px;
	margin-top: -10px;
	border-radius: 10px;
	border: 2px solid rgba(255,255,255 ,1);
	z-index: 10;
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
	left: -39px;
}
.cp_timeline01 li:nth-child(odd) .timeline_item .flag:after {
	content: '';
	position: absolute;
	left: 100%;
	top: 50%;
	height: 0;
	width: 0;
	margin-top: -6px;
	border: solid transparent;
	border-left-color: #695e41;
	border-width: 6px;
}
.cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
	content: '';
	position: absolute;
	right: 100%;
	top: 50%;
	height: 0;
	width: 0;
	margin-top: -6px;
	border: solid transparent;
	border-right-color: #695e41;
	border-width: 6px;
}
.cp_timeline01 li .timeline_item .time {
	display: block;
	margin-top: 1em;
	padding: 4px 6px;
    font-weight: 500;
    font-size: 20px;
	color: #f58f77;
	text-align: right;
}
.cp_timeline01 li:nth-child(even) .timeline_item .time {
	text-align: left;
}
.cp_timeline01 li .timeline_item .desc {
	margin: 1em 0.75em 0 0;
	margin: 1em 1em 0 1em;
	padding: 1em;
    text-align: center;
	box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.1);
  background: #fff;
	border-radius: 6px;
}
@media only screen and (max-width:768px) {
	.cp_timeline01 {
		width: 100%;
		padding: 4em 0 1em 0;
	}
	.cp_timeline01 li {
		padding: 2em 0;
	}
	.cp_timeline01 li:nth-child(odd) .timeline_item,
	.cp_timeline01 li:nth-child(even) .timeline_item {
		float: none;
		width: 100%;
		text-align: center;
	}
	.cp_timeline01 li .timeline_item .flag_cont {
		text-align: center;
	}
	.cp_timeline01 li .timeline_item .flag {
		z-index: 15;
	}
	.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:before,
	.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:before {
		top: -30px;
		right: calc(50% - 12px);
		left: calc(50% - 12px);
	}
	.cp_timeline01 li:nth-child(odd) .timeline_item .flag_cont:after,
	.cp_timeline01 li:nth-child(even) .timeline_item .flag_cont:after {
		top: -28px;
		right: calc(50% - 10px);
		left: calc(50% - 10px);
	}
	.cp_timeline01 li:nth-child(odd) .timeline_item .flag:after,
	.cp_timeline01 li:nth-child(even) .timeline_item .flag:after {
		content: '';
		position: absolute;
		left: 50%;
		top: -6px;
		height: 0;
		width: 0;
		margin-left: -6px;
		border: solid transparent;
		border-bottom-color: rgba(26,35,126 ,1);
		border-width: 6px;
		pointer-events: none;
	}
	.cp_timeline01 li .flag_cont {
		display: block;
		position: relative;
		margin: 4px 0 0 0;
		z-index: 14;
	}
	.cp_timeline01 li:nth-child(odd) .timeline_item .time,
	.cp_timeline01 li:nth-child(even) .timeline_item .time {
		float: none;
		text-align: center;
		background: #ffffff;
	}
	.cp_timeline01 li .timeline_item .desc {
		position: relative;
		z-index: 15;
	}
}
/* company */
#sisetu img {
    width: 100%;
    max-width: 750px;
    border-radius: 20px;
}
.table_design05 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
    margin: auto;
}
.table_design05 th, .table_design05 td {
  padding: 1em;
}
.table_design05 th {
  color: #2a63af;
  font-weight: 500;
  text-align: left;
  width: 20%;
  min-width: 4em;
  position: relative;
}
.table_design05 th::after {
  content: '';
  background-color: #dfdfdf;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
  width: 1px;
  height: 60%;
}
.table_design05 td {
    text-align: left;
    color: #1e1e1e;
}

.about_i {
    max-width: 350px;
    width: 80%;
    max-height: 350px;
    border-radius:50%;
    margin-bottom: 1.5em;
}

.hello {
    text-align: left;
    max-width: 1000px;
    width: 100%;
    margin: auto;
  background-image: linear-gradient(180deg, #ccc 1px, transparent 1px); /* 罫線の色と太さ  */
  background-size: 100% 2.5em; /* 行の高さ */
  line-height: 2.5em; /* 文字の高さ */
  padding-bottom: 1px; /* 最終行の下にも罫線を引く */
}
.t_sign {
    text-align: right;
    max-width: 1000px;
    width: 100%;
    margin: auto;
    color: #1e1e1e;
    border: 0px solid red;
    padding-top: 35px;
}

/*----------------------------
footer
----------------------------*/
/* contact */
#contact {
}
.c_box {
    margin: auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 20px;        /* CSS3草案 */  
    -webkit-border-radius:20px;    /* Safari,Google Chrome用 */  
    -moz-border-radius: 20px;   /* Firefox用 */
    
    transition: 0.3s;
    box-shadow: 0px 10px 30px 2px rgba(0, 0, 0, 0.1);
    padding: 90px 10px 20px 10px;
}

img.left {
    float: left;
    width: 120px;
    margin-top: -120px;
}

img.right {
    float: right;
    width: 100px;
    margin-top: -120px;
}

/* 下やじるし */
.dli-chevron-down {
  display: inline-block;
  vertical-align: middle;
  color: #e7be8b;
  line-height: 5;
    margin-top: 30px;
  width: 2em;
  height: 2em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}

.tel {
    color: #f58f77;
    font-size: 46px;
    font-weight: 500;
}

.tel::before {
  content: url(../img/tel.jpg);
    display: inline-block;
    vertical-align: middle;
    padding-right: 5px;
    transform: scale(0.6);
}

.t_setu {
    color: #695e41;
    padding-left: 60px;
    margin-top: -15px;
}

/* contact-button */
.contact-button {
  margin: 30px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  border-radius: 65px;
  max-width: 450px;
  width: 100%;
  height: 65px;
  transition: 0.3s;
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.1);
  background-image: radial-gradient(circle at 100% 0%, rgba(43, 207, 180, 1) 15%, rgba(19, 227, 226, 1));
}

.contact-button:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
    background-image: radial-gradient(circle at 100% 0%, rgba(19, 227, 226, 1) 15%, rgba(43, 207, 180, 1));
    border-color:transparent; 
    transform: translateY(4px);
    /*アニメーションの指定*/
    transition: all 0.3s ease;
}

.contact-button::before {
    content: url(../img/mail.png);
    display: inline-block;
    vertical-align: middle;
    padding-right: 15px;
    transform: scale(0.8);
}
@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
.box {
    margin: auto;
    width: 90%;
    box-shadow: 0px 10px 30px 2px rgba(0, 0, 0, 0.1);
    padding: 50px 15px 20px 15px;
}
img.left,img.right {
    width: 75px;
}
img.right {
    width: 61px;    
    }
.tel {
    font-size: 34px;
}

.tel::before {
    padding-right: -10px;
    transform: scale(0.4);
}
    .setu {
        font-size: 14px;
    }
.t_setu {
    padding-left: 0px;
    margin-top: -15px;
    font-size: 14px;
}
/* 下やじるし */
.dli-chevron-down {
  margin-top: 10px;
  width: 1.5em;
  height: 1.5em;
  border: 0.3em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
}
}


/* CV */

#page_top{
  position: fixed;
  right: 0;
    left: 0;
  bottom: -150px;
}

/* copyright */

.cpl {
    padding-top: 95px;
    text-align: center;
    font-size: 12px;
    background: #72bbcc;
}

/* footer */

footer {
    padding: 90px 30px;
    background-color: #e4f2f8;
    text-align: center;
    color: #1e1e1e;
}

.f_frame {
    width: 100%;
    vertical-align:top;
}

.f_sty {
    font-size: 24px;    
    font-weight: 500;
    color: #2a63af;
}

.f_logo {
    width: 100px;
    margin: 15px 0;
}
ul.footer {
    width: 100%;
    max-width: 1000px;
    margin: 30px auto;
    text-align: center;
}
ul.footer li {
    display:inline;
    margin-right: 15px;
    white-space: nowrap;
}

ul.footer li::before {
    content: url(../img/f_menu.gif);
    display: inline-block;
    vertical-align: middle;
    padding-right: 8px;
    transform: scale(0.6);
}

ul.footer li a {
    color: #2a63af;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all  0.3s ease;
}

ul.footer li a:hover {
    color: #f58f77;
    
}

.iframe-wrapper {
  margin: 0 auto;
  overflow: hidden;
}

.iframe-wrapper iframe {
  top: 0;
  left: 0;
  width: 100%;
    max-width: 1000px;
  height: 350px;
}

address {
    padding: 20px 0;
}

.last {
     background: #fff;
    text-align: center;
    height: 100px;
}
.last img {
    width: 450px;
    margin-top: -90px;
}
copylight {
    font-size: 14px;
    line-height: 80px;
}

/* PC_fixed-button */

.fixed_btn { 
    font-size: 20px;
    letter-spacing: 3px;
    position: fixed;
    text-align: center;
    writing-mode: vertical-rl;
    width: 60px;
    height: 300px;
    top: 50%;
    right: 0px;
    font-weight: 500;
    color: #fff;
    border-radius: 65px;
    border: 3px solid #fff;
    transition: 0.3s;
    box-shadow: 0px 10px 20px 2px rgba(0, 0, 0, 0.2);
  background-image: radial-gradient(circle at 100% 0%, rgba(19, 227, 226, 1) 15%, rgba(43, 207, 180, 1));
    animation: move 4s infinite;
}
@keyframes move {
  0%, 40% {
    transform: skew(0deg, 0deg);
  }
  5% {
    transform: skew(4deg, 4deg);
  }
  10% {
    transform: skew(-3deg, -3deg);
  }
  15% {
    transform: skew(2deg, 2deg);
  }
  20% {
    transform: skew(-1deg, -1deg);
  }
  25% {
    transform: skew(0.6deg, 0.6deg);
  }
  30% {
    transform: skew(-0.4deg, -0.4deg);
  }
  35% {
    transform: skew(0.2deg, 0.2deg);
  }
}
.fixed_btn:hover {
  box-shadow: 0 0 rgba(0, 0, 0, 0);
}

.fixed_btn::before {
    content: url(../img/mail.png);
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 15px;
    padding-right: 15px;
    transform: scale(0.6);
}

/* SP_fixed-button */
/*メニューをページ下部に固定*/
#sp-fixed-menu{
   position: fixed;
   width: 100%;
   bottom: 0px;
   font-size: 0;
   opacity: 0.9;
   z-index: 99;
}

/*メニューを横並びにする*/
#sp-fixed-menu ul{
   display: flex;
   list-style: none;
   padding:0;
   margin:0;
   width:100%;
}

#sp-fixed-menu li{
   justify-content: center;
   align-items: center;
   width: 50%;
   padding:0;
   margin:0;
    font-weight: 500;
   font-size: 18px;
   border-right: 1px solid #fff;
}

/*左側メニューを緑色に*/
#sp-fixed-menu li:first-child{
   background-image: radial-gradient(circle at 100% 0%, rgba(19, 227, 226, 1) 15%, rgba(43, 207, 180, 1));
}

/*左側メニューをオレンジ色に*/
#sp-fixed-menu li:last-child{
   background: #f58f77;
}

/*ボタンを調整*/
#sp-fixed-menu li a{
   color: #fff;
   text-align: center;
   display:block;
   width: 100%;
   padding:20px 5px;
}

@media(max-width: 767px){ /*ウィンドウ幅が最大767pxまでの場合に適用*/
.f_logo {
    width: 61px;
}
    .fixed_btn {
        display: none;
    }
    .last img {
    width: 80%;
    margin-top: -90px;
}
}
@media(min-width: 767px){ /*ウィンドウ幅が最大767pxからの場合に適用*/
    #sp-fixed-menu{
        display: none;
    }
    
}







.wave {
  bottom: 0;
  left: 0;
    margin-bottom: -10px;
}









