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

common

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

html {
	scroll-behavior: smooth;
	scroll-padding-top: 100px;
}
body {
    background: #f4f6f9;;
    margin: 0;
    padding: 92px 0 0 0;
}

* {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
	box-sizing: border-box;
}
.en {
	font-family: "Zen Kaku Gothic New", sans-serif;	
}

ul,ol,li,dl,dt,dd {
	margin: 0;
	padding: 0;
	list-style-type: none;
}
h1,h2,h3,h4 {
	margin: 0;
	padding: 0;
}
a {

}
.inner {
    width: 800px;
	margin:0 auto;	
}
section p.catch {
	text-align: center;
	font-size: 20px;
	font-weight: 100;
	margin: 0 0 20px;
	padding: 0;
}
.pc {
	display:block;
}
.sp {
	display:none;
}

h1 {
    font-family: "Jost", sans-serif;
    font-size: 60px;
    color: #3096ae;
}
h1 span {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-size: 20px;
	    display: none;
}
h2 {
	font-family: "Jost", sans-serif;
	color: #3096ae;
	text-align: center;
	padding: 100px 0 10px 0;
	font-size: 40px;
	font-weight: 400;
}
p.catch {
	text-align: center;
	font-size: 20px;
	font-weight: 100;
	margin: 0 0 20px;
	padding: 0;
}

h3 {
    font-size: 20px;
    font-weight: 400;
    border-bottom: 2px solid #333;
    display: inline-block;
    margin: 20px 0 10px 0;
}
h4 {
    line-height: 1;
    border: 1px solid #333;
    border-radius: 30px;
    padding: 4px 12px;
    margin: 5px 0 10px 0;
    display: table;
    font-size: 15px;
}
h5 {
	font-size: 16px;
	margin: 10px 0 10px 0;
	border-bottom: 1px dotted #333;
	padding: 0 0 5px 0;
}
@media screen and (max-width:800px) {
	.inner {
		width:94%;
		margin:0 auto;	
	}
	h1 {
	    text-align: center;	
	}
	section h2 {
		        font-size: 32px;
	}
	section p.catch {
		font-size: 18px;
	}
	.pc {
		display:none;
	}
	.sp {
		display:block;
	}
}


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

header

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 99px;
    margin: 0 auto;
    background-color: #fff;
    z-index: 100;
    display: flex;
    justify-content: space-around;
    align-items: anchor-center;
}
header ul {
	display: flex;
	padding-top: 10px;
}
header ul li {
	margin: 0 10px;
}
header ul li a {
	text-decoration: none;
	color: #3096ae;
	font-size: 15px;
}
header ul li a:hover {
	color: #f1ca95;
	border-bottom: 2px solid;
}


@media screen and (max-width:800px) {
	header {
	height:99px;	
	}
}


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

sp menu

-----------------------------------------------*/
@media screen and (max-width:800px) {
.head-wrap {
	width: 100%;
	display: flex;
	justify-content: space-between;
	height: 99px;
}

.menu {
    list-style: none;
    width: 100%;
    height: auto;
    margin-top: 10px;
    padding: 0 0 10px 0;
    background-color: #fff;
	transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
	transform: scale(1, 0);
	transform-origin: top;
	display: flex;
	flex-direction: column;
}

/* Hamburger menu button */
.menu-btn:checked ~ .menu {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* Hamburger menbu text */
.menu a {
      text-decoration: none;
    font-weight: 500;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #38aac6;
    padding: 0 20px;
    opacity: 0;
    transition: 0.5s;
}

.menu li {
border-top: 1px solid rgb(215 213 213);
    padding: 15px 0;
    margin: 0;
    opacity: 0;
    transition: 0.5s;
}

.menu-btn:checked ~ .menu a,
.menu-btn:checked ~ .menu li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}

.menu-btn {
  display: none;
}

.menu-icon {
  display: inline-block;
    position: absolute;
    right: 0;
    top: 20px;
  cursor: pointer;
  padding: 24px 24px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.navicon {
  background: #333;
  display: block;
    height: 4px;
    width: 50px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before,
.navicon:after {
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  position: absolute;
  background: #333;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

.navicon:before {
  top: 12px;
}

.navicon:after {
  bottom: 12px;
}

/* Hamburger Menu Animation Start */
.menu-btn:checked ~ .menu-icon .navicon:before {
  transform: rotate(-45deg);
}

.menu-btn:checked ~ .menu-icon .navicon:after {
  transform: rotate(45deg);
}

.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:before {
  top: 0;
}
.menu-btn:checked ~ .menu-icon:not(.steps) .navicon:after {
  bottom: 0;
}

.menu-btn:checked ~ .menu-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
/* Hamburger Menu Animation End */

/* Navbar Container */
.navtext-container {
  width: 100%;
  height: auto;
}

.navtext {

	}
}
/*-----------------------------------------------

mv

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

.mv {
  overflow: hidden;
}
.mv .image {
	border-bottom-left-radius: 1000px 100px;
	border-bottom-right-radius: 1000px 100px;
	height: 500px;
	margin-left: -100px;
	margin-right: -100px;
	padding-left: 100px;
	padding-right: 100px;
	background: url(images/mv_loop.jpg) repeat-x 0 0;
	background-size: auto 100%;
	animation: bg-slider 160s linear infinite;
}
@keyframes bg-slider {
	from { background-position: 0 0; }
    to { background-position: -4125px 0; } /* 1518pxとは使用した背景画像の長さ */
}


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

business

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


.business ul.s-list {
	    display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.business ul.s-list>li {
	width: 48%;
	background: #fff;
	padding: 0;
	border-radius: 20px;
	margin-bottom: 30px;
	
}
.business ul.s-list>li.full {
	width: 100%;
}
.business ul.s-list>li .ttl {
	font-size: 22px;
	text-align: center;
	display: block;
	background: #3096ae;
	color: #fff;
	border-radius: 10px;
	line-height: 1;
	padding: 14px 0;
	margin: 0;
	border: none;
}
.business ul.s-list>li.full .ttl {
	border-radius: 20px 20px 0 0;
}
.business ul.s-list>li .sub {
	display: block;
	padding: 20px 0 10px 0;
	text-align: center;
}
.business ul.s-list>li  h4 {
	width: 100%;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #3096ae;
	padding: 8px;
	border-color: #c3c3c3;
}
.business ul.s-list>li  h5 {
	font-size: 15px;
    font-weight: 500;
}
.business ul.s-list>li img {
	width: 100%;
}

.business ul.s-list>li .set {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 0 20px 20px 20px;
	margin: 0;
	position:relative;
}
.business ul.s-list>li .set img {
	width: 30%;
}
.business ul.s-list>li .set img.seminar {
	width: 40%;
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.business ul.s-list>li .set div.list {
	width:48%;
}
.business ul.s-list>li .set div.list ul {
	padding: 0 0 0 5px;
	list-style-position: inside;
}
.business ul.s-list>li .set div.list ul li {
	    list-style-type: circle;
	    font-size: 13px;
}

.business ul.s-list>li .set.advisory  {
    justify-content: center;
    align-items: center;
}
.business ul.s-list>li .set.advisory img {
    width: 40%;
}
.business ul.s-list>li .set.advisory ul {
	width:48%;
}
.business ul.s-list>li .set.advisory ul li {
	list-style-type: none;
}
.business ul.s-list>li .set.advisory ul li h4 {
	font-size: 18px;
}

@media screen and (max-width:800px) {
	.business ul li {
		width: 100%;
	}
	.business ul.s-list>li .set.advisory {
		flex-direction: column;
	}
	.business ul.s-list>li .set.advisory img {
		width: 60%;
	}
	.business ul.s-list>li .set.advisory ul {
		width: 80%;
	}
	.business ul.s-list>li .set.seminar {
		flex-direction: column;
	}
	.business ul.s-list>li .set.seminar div {
		width: 100%;
	}
	.business ul.s-list>li .set.seminar h4 {
		margin: 20px 0 20px 0;
	}
	.business ul.s-list>li .set img.seminar {
		width: 70%;
		position: relative;
		bottom: unset;
		right: unset;
		margin: 10px 0 0 10px;
	}
	.business ul.s-list>li {
		width: 100%;
        margin-bottom: 10px;
	}
	
}


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

about

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

.about h2 span {
	    font-size: 20px;
}

.about .box {
	background: #fff;
	padding: 30px;
	border-radius: 20px;
}
.about .box h3 {
	border: none;
	text-align: center;
	display: block;
	margin: 0 0 10px 0;
	font-size: 20px;
}
.about .box p {
	text-align: center;
	line-height: 170%;
	padding: 0;
	margin: 0;
}
@media screen and (max-width:800px) {
	.about .box h3 {
		text-align: left;		
	}
	.about .box p {
		text-align: left;
	}	
}

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

orner

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

.orner .box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px;
    border-radius: 20px;
}
.orner .box .main {
	width:36%;
}
.orner .box .detail {
	width:60%;	
}
.orner .box .detail h3 {
    font-size: 17px;
    color: #3096ae;
    border-color: #3096ae;
}
.orner .box .detail li {
	font-size: 15px;
}
.orner .box .main .name {
	font-size: 30px;
	padding: 10px 10px;
	display: block;
	text-align: center;
	font-weight: 100;
}
.orner .box .main img {
	width:100%;
}
.orner .box .main .name span {
	display: block;
	font-size: 17px;
}

@media screen and (max-width:800px) {
	.orner .box .main {
		width: 100%;
	}
	.orner .box .detail {
		width:100%;	
	}
}


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

works

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

.works {

}
.works h3 {
	font-size: 17px;
    font-weight: 500;
    color: #3096ae;
    border-bottom: 2px solid #3096ae;
}
.works ul {
	padding-left: 20px;
	margin-bottom: 20px;
}
.works ul li {
	list-style: disc;
	font-size: 15px;
	line-height: 150%;
}
@media screen and (max-width:800px) {
	.works div.half {
		width: 96%;
		margin: 0 auto;
	}
	
	
}
/*-----------------------------------------------

inquiry

-----------------------------------------------*/
.inquiry {
	display: flex;
	justify-content: center;
	margin: 50px 0 20px 0;
}
.inquiry a {
    background: #ab8e1e;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    width: 50%;
    padding: 20px 20px;
    border-radius: 40px;
    font-size: 20px;
    text-align: center;
}
.inquiry a span{
	display: block;
	font-size: 15px;
	margin-bottom: 8px;
}
.inquiry a:hover {
	background: #d2bd6b;
}
@media screen and (max-width:800px) {
	.inquiry a {
        width: 90%;
	}
}


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

privacy

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


.privacy .scroll {
	height: 300px;
	overflow: scroll;
	border: 1px solid #ddd;
	background: #fff;
	padding: 30px;
	margin-bottom: 20px;
}
.privacy .scroll h5 {
	font-size: 15px;
}
.privacy .scroll p {
	    font-size: 14px;
}

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

pertner

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


.pertner.box {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    background: #fff;
    padding: 30px;
	border-radius: 20px;
	margin-bottom:50px;
}


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

footer

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

footer {
	background: #fff;
}
footer h2 { 
	    padding: 20px 0 10px 0;
}

footer .box {
	display: flex;
	justify-content: center;
	align-items: center;
	padding-bottom:20px;
}
footer ul {
	width:50%;
	display: flex;
	justify-content: space-evenly;
}
footer ul li {
	width: 24%;
}
footer ul li a {
	
}
footer ul li a img {
	width: 100%;
}