@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap');
html{
  font-size: 62.5%;
  font-family: 'Noto Sans', sans-serif;
}
body{
	margin-top: 0px;
	background-color: #fff;
	animation: fadeIn 2s ease 0s 1 normal;
    -webkit-animation: fadeIn 2s ease 0s 1 normal;
	font-size: 1.6rem;
}

@keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
    0% {opacity: 0}
    100% {opacity: 1}
}
h1 {
	font-weight: 900 !important;
}
h2,h3,h4,h5,.sub_title {
	font-weight: 700 !important;
}

/*p {
  font-size: 0.857rem;
  line-height: 180%;
  //font-weight: bold;
}*/

img{
max-width: 100%;
height: auto;
//width /***/:auto;
vertical-align:bottom;　
}
a:hover img.over{
opacity:0.6;
filter:alpha(opacity=60);
-ms-filter: "alpha( opacity=60 )";
}
a {
transition: color 0.3s ease 0s;
}
a:link {
	color: #062372;
}
a:hover {
	color: #eee;
}
a:visited {
	color: #999;
}

.box_link {
	position:relative;
}
.box_link a {
	position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    text-indent:-9999px;
}
.box_link a:hover{
    background-color:#FFF;
    filter:alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}
.inner {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 50px;
}
.pc {
	display: block;
}
.mob {
	display: none;
}
.indentback1 {
	text-indent: -1em;
	padding-left: 1em;
}
.indentback2 {
	text-indent: -2em;
	padding-left: 2em;
}
.indentback3 {
	text-indent: -3em;
	padding-left: 3em;
}

main {
	width: 100%;
}
strong {
	font-weight: bold;
}
.movie-wrap {
     position: relative;
     padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
     height: 0;
     overflow: hidden;
}
.movie-wrap iframe {
     position: absolute;
     top: 0;
     left: 0;
     width: 100%;
     height: 100%;
}

/*まずはお決まりのボックスサイズ算出をborer-boxに */
*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;/*rem算出をしやすくするために*/
}
.btn,
a.btn,
button.btn {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border-radius: 0.5rem;
	width: 100%;
	max-width: 700px;
}
a.btn--pink {
  color: #fff;
  background-color: #D37C7C;
	border: solid 2px #fff;
}
a.btn--pink:hover {
  color: #fff;
  background: #F19FC2;
}
a.btn--pink:visited {
	color: #fff;
}



h2 {
	font-size: 4rem;
	margin: 20px auto 30px;
	line-height: 1.4;
	color: #DA755F;
	text-align: center;
}
h3 {
	font-size: 2rem;
	line-height: 1.5;
	margin-bottom: 20px;
}
h4 {
	font-size: 1.6rem;
	line-height: 1.5;
	margin-bottom: 10px;
}
p {
	font-size: 1.6rem;
	line-height: 2;
	margin-bottom: 30px;
}

.float {
	width: 100%;
	background-color: #fff;
	padding: 10px 0px;
	box-shadow: 0 5px 3px -3px rgba(0,0,0,0.1) inset;
	position: fixed;
	bottom: 0px;
	z-index: 10;
}
.float .container {
	display: grid;
    grid-gap: 10px;
	grid-template-columns: 1fr;
	width: 100%;
	max-width: 500px;
	margin: auto;
	text-align: center;
}
.float .container .btn {
	background-color: #06C755;
	color: #fff;
}
.float .container .btn:hover {
	opacity: .5;
}

.line {
	line-height: 1.5;
	position: relative;
	padding: 0 60px;
	display: inline-block;
	margin-bottom: 0px;
}

.line:before {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(50deg);
  transform: rotate(50deg);
	left:0;
}
.line:after {
  content: '';
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 50px;
  height: 1px;
  background-color: #000;
  -webkit-transform: rotate(-50deg);
  transform: rotate(-50deg);
	right: 0;
}


@media (max-width: 767px) {
	html{
		font-size: calc(100vw / 32);/*iPhoneの最小サイズ320pxに10px*/
	}
	h1 {
		font-size:2.0rem !important;/*320pxの時30pxに*/
	}
	p {
		font-size: 1rem !important;/*320pxの時14pxに*/
	}
	h2 {
		font-size: 2rem !important;
	}
	h3 {
		font-size: 1.6rem !important;
	}
	h4 {
	font-size: 1.3rem !important;
}
	.line {
	font-size: 1.6rem !important;
}
	.inner {
	padding: 30px;
	}
	.pc {
	display: none;
	}
	.mob {
	display: block;
	}

	.float {
		padding: 10px 0px !important;
	}
	.float .container .btn,
	.float .container a.btn,
	.float .container button.btn {
		padding: 10px 00px;
		margin: 0px auto !important;
		width: 90%;
	}
	.float_btn {
	font-size: 1rem;
}
.btn,
a.btn,
button.btn {
  font-size: 1rem;
	max-width: 750px;
}
}

.c-btn a {
  color: #333;
  display: block;
  border: 1px solid #282828;
  border-radius: 5px;
  padding: 12px;
  text-align: center;
	margin: 50px auto;
}

.c-btn a:hover {
  text-decoration: none;
  opacity: .8
}

.c-btn a.light:hover {
  opacity: 1;
  position: relative;
  top: -2px
}

.c-btn.-center {
  margin: 0 auto
}

.c-btn.-left {
  margin-left: 0;
  margin-right: auto
}

.c-btn.-right {
  margin-left: auto;
  margin-right: 0
}

.c-btn.-size-100 {
  width: 100px
}

.c-btn.-size-150 {
  width: 150px
}

.c-btn.-size-200 {
  width: 200px
}

.c-btn.-size-250 {
  width: 250px
}

.c-btn.-size-300 {
  width: 300px
}

.c-btn.-size-335 {
  width: 335px
}

.c-btn.-size-350 {
  width: 350px
}

.c-btn.-size-400 {
  width: 400px
}

.c-btn.-size-450 {
  width: 450px
}

.c-btn.-size-500 {
  width: 500px
}

.c-btn.-gray a {
  background-color: #555555
}


/* header
-----------------------------------------------*/

header {
	width: 100%;
	height: 80px;
	margin: auto;
	padding: 10px 20px 20px;
	display: inline-block;
	background-color: rgba(255, 255, 255, 0.678);
	z-index: 10;
	text-align: right;
	
}
header .logo img {
	width: 100%;
	max-width: 200px;
	height: auto;
}
header .c-btn {

}


/* main
---------------------------------------------*/
main {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}
main img {
	width: 100%;
	height: auto;
}


/* service
---------------------------------------------*/
.service {
	width: 100%;
	background-color: #E6D7D7;
}
.service .container {
	width: 100%;
	max-width: 1000px;
	margin: auto;
	padding: 20px 0px;
}
.service .container article {
	background-color: #F9F6F6;
	margin: 30px 30px 50px;
	padding: 50px;
}
.service .container article p {
	margin: 50px auto auto;
	padding-top: 50px;
	border-top: solid 1px #000;
}


.office {
	margin: 30px 30px 50px;
	padding: 50px 50px 30px;
	border: solid 5px #D19998;
	text-align: left;
}


/* movie
-----------------------------------------------*/
#movie {
	background-color: #EFF1F3;
	padding: 50px 0px;
}
#movie h2 {
	padding: 10px;
	background-color: #1463BB;
	color: #fff;
	width: 100%;
	max-width: 500px;
}
#movie .box {
	padding: 30px 30px 10px;
	background-color: #fff;
	width: 80%;
	margin: 0 auto 30px;
	border-radius: 30px;
}
#movie .box .no {
	font-size: 3rem;
	border-radius: 50%;
	width: 80px;
	height: 80px;
	text-align:center;
	line-height: 78px;
	margin: 0 auto 30px;
	background-color: #146EC3;
	color: #fff;
}
#movie .box h3 {
	font-size: 3.4rem;
	color: #146EC3;
}
#movie .box .container {
	border-top: dotted;
	padding-top: 20px;
}
#movie .box p {
	font-size: 3rem;
}

/* recommendation
-----------------------------------------------*/
#recommendation {
	padding: 50px 0px;
	width: 94%;
	margin: 0 auto;
}
#recommendation h2 {
	color: #000;
	margin-bottom: 50px;
}
#recommendation .circle {
	margin-bottom: 80px;
}
#recommendation .circle img {
	width: 50%;
	max-width: 400px;
	border-radius: 50%;	
	margin-bottom: 20px;
}
#recommendation .circle h3 {
	font-size: 3.4rem;
}



/* entry
-----------------------------------------------*/
#entry {
	background-color: #EFF1F3;
	padding: 50px 0px;
}
#entry p {
	font-size: 3rem;
}


/* form
-----------------------------------------------*/
#form {
	padding: 50px 0px;
}

/* footer
-----------------------------------------------*/

footer {
	width: 100%;
	max-width: 1000px;
	margin: 0 auto;
	clear: both;
	text-align: center;
	padding: 30px 0 150px;
	line-height: 1.6;
}

@media (max-width: 767px){
	footer{
		font-size: 1rem;
	}
}