@charset "utf-8";

/*------------------------------------------------------------
	デフォルトスタイル
------------------------------------------------------------*/
html {
	height: 100%;
	margin: 0;
}

body {
	font-size: 14px;
	font-family: 'fantasy';
	width: 100%;
	height: 100%;
}

.bg-img {
	background-position: center;
	background-size: cover;
	background-attachment: fixed;
	background-repeat: no-repeat;
}

.container {
	width: 1100px;
	margin: 0 auto;
	padding: 20px 10px;
	box-sizing: border-box;
	position: relative;
	text-align: center;
}

#main {
	position: relative;
	z-index: 2;
}

.bgBox {
	background-image: url(../img/bg.png);
	width: 500px;
	height: 500px;
	margin: 40px auto;
	justify-content: center;
	vertical-align: middle;
}

.headline2 {
	font-size: 4rem;
	text-align: center;
	padding-top: 40px;
	margin-bottom: 20px;
	display: block;
}
h2 {
	font-family: 'Kiwi Maru', serif;
	letter-spacing: 2px;
}
p {
	font-family: 'Kiwi Maru', serif;
	letter-spacing: 3px;
	line-height: 40px;
}
.en {
	text-align: center;
	font-weight: 500;
	font-size: 1.5rem;
	display: block;
}

@media all and (min-width: 1100px) {
	.sp {
		display: none !important;
	}
}

@media all and (max-width: 1099px) {
	.pc {
		display: none !important;
	}
	.bgBox {
		max-width: inherit;
		width: 90%;
		height: auto;
		margin: 20px auto;
	}
	.container {
		width: inherit;
		padding: 0;
	}
	.headline2 {
		font-size: 2.8rem;
		padding: 15px 0;
		margin: 0;
		display: block;
	}
	p {
		letter-spacing: 2px;
		line-height: 30px;
	}
	.en {
		font-size: 1.2rem;
	}
	
}


/*------------------------------------------------------------
	Scroll Top
------------------------------------------------------------*/

.scroll-top {
	position: fixed;
	right: 20px;
	bottom: 10px;
	z-index: 10;

	opacity: 0;
	visibility: hidden; 
	transition: opacity .5s, visibility .5s; 

	-webkit-writing-mode: vertical-rl;
	  -ms-writing-mode: tb-rl;
	  writing-mode: vertical-rl;

	  white-space: nowrap;

	animation: arrowmove 1s ease-in-out infinite;
}

@keyframes arrowmove{
	0%{bottom:20px;}
	50%{bottom:25px;}
	100%{bottom:20px;}
}

/*リンク全体の aタグの形状*/
.scroll-top a {
	text-decoration: none;
	color: #666;
	text-transform: uppercase;
	font-size: 0.8rem bold;
	display: block;
	margin-right: 5px;
}


/*ページトップリンクの形状*/

.js-pagetop a::after{
	content:"";
	position: absolute;
	top: 0;
	right: 0;
	width: 3px;
	height: 80px;
	background: #666;
}

.js-pagetop a::before {
	content: "";
	position: absolute;
	top: 0;
	right: -6px;
	width: 3px;
	height: 20px;
	background: #666;
	transform: skewX(31deg);
}

/*.scroll-viewクラスがついたら出現*/
.js-pagetop.scroll-view {
	opacity: 1;
	visibility: visible;
	}

/*Edge IE11 hack*/
_:-ms-lang(x), .js-pagetop a::before{
	right: 0;
}


@media all and (max-width: 1099px) {
	.scroll-top {
		right: 15px;
		line-height: 20px;
	}
	.scroll-top a {
		font-size: 0.4rem;
		margin-right: 2px;
	}

	.js-pagetop a::after{
		width: 2px;
		height: 50px;
	}
	
	.js-pagetop a::before {
		right: -4px;
		width: 2px;
		height: 10px;
	}

	.contact .scroll-top {
		margin-bottom: 3rem;
	}
	
}
/*------------------------------------------------------------
	Animation
------------------------------------------------------------*/
.animation {
	opacity: 0;
	-webkit-animation-duration: 2s;
	animation-duration: 2s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
}
.fadeInUp {
	-webkit-animation-name: fadeInUp;
	animation-name: fadeInUp;
	visibility: visible !important;
}

/*------------------------------------------------------------
	fadeInUp
------------------------------------------------------------*/
@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
	}
}
@keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translateY(30px);
		-ms-transform: translateY(30px);
		transform: translateY(30px);
	}
	100% {
		opacity: 1;
		-webkit-transform: translateY(0);
		-ms-transform: translateY(0);
		transform: translateY(0);
	}
}

/*------------------------------------------------------------
	Modal
------------------------------------------------------------*/

.modal {
	max-height: 100%;
	overflow-y: auto;
	scrollbar-width: thin;
	-ms-overflow-style: none;
}
.modal::-webkit-scrollbar {
	display: none;
}

#modalBody {
	white-space: pre-wrap;
}
.modal-content {
	overflow-y: auto;
	overflow-y: scroll;
}



.modal-header {
	background-color: #E27933;
}
.modal-header h5 {
	color: #fff;
	font-size: 1.6rem;
}

.modal-footer {
	font-family: 'Kiwi Maru', serif;
}
.modal-footer a {
	text-decoration: none;
}
.modal-footer .btn {
	width: auto;
	min-width: 200px;
	height: 50px;
	font-size: 1.4rem;
}
.modal-footer .btn-submit {
	color: #fff;
	background-color: #E27933;
}
.modal-footer .btn-download {
	color: #dd1111;
	background-color: #eee;
	border: #111 solid 1px;
}
.modal-footer .btn-contact {
	color: #fff;
	background-color: #E27933;
}

@media all and (max-width: 1099px) {
	.modal-header h5 {
		font-size: 1.4rem;
	}
	.modal-footer {
		text-align: center;
	}
	.modal-footer .btn {
		min-width: 150px;
		font-size: 1.2rem;
		display: block;
	}
}

/*------------------------------------------------------------
	Content Top
------------------------------------------------------------*/

.content-top.bg-img {
	background-image: url(../img/bg_top.jpg);
}

.content-top .title {
	margin: 0 auto 30px auto;
	padding: 25vh 0;
	color: #005aba;
	font-size: 10rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-family: 'Kosugi Maru', sans-serif;
}
.content-top .title span {
	margin-top: 12px;
	display: block;
	font-size: 4rem;
	color: #005aba;
	letter-spacing: 0.05em;
	text-align: center;
}

@media all and (max-width: 1099px) {
	.content-top .title {
		max-width: inherit;
		font-size: 4rem;
		margin: 0 ;
	}	
	.content-top .title span{
		font-size: 2rem;
	}
}


/*------------------------------------------------------------
	Menu Bar
------------------------------------------------------------*/
.menu_bar .content-box{
	width: 100%;

	margin: 0 auto;
	background-color: #aaa;
}
.menu_bar .top_menu{
	display: block;
	border: 1px #aaa solid;
	text-align: center;
	margin-bottom: 0;

}
.menu_bar .top_menu li{
	margin: 0 20px;
	list-style: none;
	display: inline-block;
	background-color: #aaa;
	font-family: 'Kiwi Maru', serif;
}
.menu_bar .top_menu li a {
	color: #fff;
	font-size: 24px;
	text-decoration: none;
}
.menu_bar .top_menu li a::after {
	display: inline-block;
	content: "";
	margin-left: 5px;
	margin-bottom: 5px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
}

@media all and (max-width: 1099px) {
	.menu_bar .top_menu {
		margin: 0;
		padding: 0;
	}
	.menu_bar .top_menu li{
		display: block;
		margin: 10px 0;
	}
}

/*------------------------------------------------------------
	Calender
------------------------------------------------------------*/
#calender {
	background: url(../img/bg_calender.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: top center;
}

#calender .display {
	padding: 70px 0;
	text-align: center;
}

@media all and (max-width: 1099px) {
	#calender .display {
		margin: 0 auto;
		padding: 30px 0;
	}
	#calender .calender iframe {
		width: 100%;
	}
}

/*------------------------------------------------------------
	SNS
------------------------------------------------------------*/
#sns {
	background: url(../img/bg_bubble.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: bottom center;
}
#sns .timeline {
	padding: 70px 0;
	text-align: center;
}


@media all and (max-width: 1099px) {
	#sns .timeline {
		padding: 30px 0;
	}
	#sns .timeline .fb-page {
		margin: 0 auto;
	}

}
/*------------------------------------------------------------
	Event
------------------------------------------------------------*/
#event {
	height: 700px;
}
#event .container {
	padding: 40px 10px;
}
#event .container .bgBox {
	display: flex;
	justify-content: center;
	align-items: center;
}
#event h2 {
	padding-top: 20px;
	font-size: 2.8rem;
}
#event p {
	padding-top: 50px;
	font-size: 1.8rem;
}
#event span {
	color: #dd1111;
	text-decoration: underline 2px ;
}

@media all and (max-width: 1099px) {
	#event {
		height: auto;
	}
	#event .container {
		padding: 20px 0;
	}
	#event p {
		padding: 50px 0;
	}
}

/*------------------------------------------------------------
	Supply
------------------------------------------------------------*/
#supply div.slick_slide {
	margin-right: calc(50% - 49vw);
	margin-left: calc(50% - 50vw);
}

#supply h2 {
	padding-top: 20px;

}
#supply p {
	padding-top: 30px;
	font-size: 1.5rem;
}

#supply .slider img{
	width: auto;
	height: 40vh;
}

#supply .backstretch {
	opacity: 0.2;
}

@media all and (max-width: 1099px) {
	#supply div.slick_slide {
		margin: 0;
	}
	#supply .slider {
		padding: 0;
	}
	#supply .slider img{
		width: 100%;
		height: auto;
	}
}
/*------------------------------------------------------------
	Service
------------------------------------------------------------*/
#service {
	background-color: aquamarine;
}
#service h2 {
	padding-top: 20px;

}
#service p {
	padding-top: 30px;
	font-size: 1.5rem;
}

#service .service-link {
	display: block;
	text-align: center;
	padding-bottom: 50px;
}
#service .service-link .service-modal {
	width: 250px;
	height: 250px;
	display: inline-block;
	margin: 10px;
	border: #666 1px solid;
	border-radius: 25%;
	box-shadow: rgba(150, 150, 150, 0.509804) 9px 9px 10px 2px;
}
#service .service-link img {
	padding: 10px;
	width: 200px;
	height: 200px;
}
#service .service-link .service-modal {
	background-color: rgba(255, 255, 255, 1);
}
#service .service-link .service-modal:hover{
	cursor: pointer;
}
#service .service-link .service-modal p {
	padding: 0;
}


.modal-body .smpl-img {
	width: 200px;
	height: auto;
}
.modal-body .top-img {
	width: 1100px;
	height: auto;
}


@media all and (max-width: 1099px) {
	.modal-body .smpl-img {
		width: 120px;
		height: auto;
	}
	.modal-body .top-img {
		width: 100%;
		max-width: 100%;
	}
}
/*------------------------------------------------------------
	Maker
------------------------------------------------------------*/
#maker .bgArea {
	background-color: #fff;
}
#maker .maker_logo ul {
	display: block;
	text-align: center;
	padding-left: 0;
}
#maker .maker_logo ul li {
	list-style: none;
	display: inline-block;
	margin: 0 5px;
}
#maker .maker_logo img {
	width: 250px;
	height: auto;
}
@media all and (max-width: 1099px) {
	#maker .maker_logo ul {
		margin: 0;
	}
	#maker .maker_logo ul li {
		margin: 5px 0;
	}
}
/*------------------------------------------------------------
	Info
------------------------------------------------------------*/
#info {
	background-color: #eee;
}
#info .content{
	text-align: center;
}
#info .content .title {
	padding: 10px;
}
#info .content .title h2 {
	font-size: 4rem;
}
#info .content .title img {
	width: auto;
	height: 70px;
}
#info .content h4 {
	font-size: 2.4rem;
}
#info .content p {
	font-size: 1.6rem;
}
.icons {
	text-align: center;
	padding-bottom: 120px;
}
.icons a {
	margin: 20px;
}
.icons img {
	width: auto;
	height: 70px;
}


@media all and (max-width: 1099px) {
	#info .content .title {
		padding: 10px 0;
	}
	#info .content .title h2 {
		font-size: 3rem;
	}
	#info .content h4 {
		font-size: 1.8rem;
	}
	#info .content .title img {
		height: 60px;
	}
	#info .content p {
		font-size: 1.3rem;
	}
	.icons {
		padding-bottom: 80px;
	}
	.icons img {
		width: auto;
		height: 60px;
		margin: 10px 0;
	}
	.icons a {
		margin: 20px 0;
	}
}
/*------------------------------------------------------------
	contact
------------------------------------------------------------*/

.contact {
	text-align: center;
}
.contact .content .top-title {
	margin: 0px auto 30px auto;
	padding-top: 200px;
	color: #005aba;
	font-size: 10rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	font-family: 'Kosugi Maru', sans-serif;
}
.contact .content .top-title span {
	margin-top: 12px;
	display: block;
	font-size: 4rem;
	color: #005aba;
	letter-spacing: 0.05em;
	text-align: center;
}
.contact .content a {
	text-decoration: none;
}
.contact .form {
	padding-top: 50px;
	padding-bottom: 100px;
	background-color: rgba(255, 255, 255, .9);
}

.contact .form-title {
	padding-top: 50px;
}
.contact .form-title p {
	font-size: 1.6rem;
}

.contact .contact_form {
    margin: 60px auto 0px;
    border-collapse:collapse;
	text-align: left;
}
.contact .contact_form tr {
    border-bottom: solid 1px #aaa;
}
.contact .contact_form th {
    padding: 0 40px 0 0;
	font-size: 1.3rem;
	font-family: 'Kiwi Maru', serif;
}

.contact .contact_form th .must {
    font-size: 1.1rem;
    color: #fff;
    background: linear-gradient(45deg, rgba(226,121,51,1) 0%, rgba(255,167,74,1) 100%);
    border-radius: 5px;
    margin: 0 0 0 10px;
    padding: 2px 10px;
}
.contact .contact_form th .privacy-policy {
	text-decoration: underline;
	color: #005aba;
}
.contact .contact_form th .privacy-policy:hover {
	cursor: pointer;
}

.contact .contact_form td {
    padding: 25px 0px;
	text-align: left;
}
.contact .contact_form td p {
	line-height: 20px;
	margin-bottom: 0;
}
.contact .contact_form td span{
	font-size: 1rem;
    color: #525252;
    line-height: 1.68;
    margin: 0 20px 0 0;
}
.contact .contact_form tr:nth-child(1) td:nth-last-child(1) span{
    margin: 0 20px 0 28px;
}
.contact .contact_form td select {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
		 box-sizing: border-box;
	width: 100%;
	padding: 10px;
	font-size: 1.2rem;
}
.contact .contact_form td input{
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
    width: 100%;
    padding: 10px;
}
.contact .contact_form tr:nth-child(1) td:nth-last-child(1) input,
.contact .contact_form tr:nth-child(1) td:nth-last-child(2) input{
	margin: 0 10px;
    width: auto;
}
.contact .contact_form td textarea {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
    width: 100%;
    padding: 10px;
}
.contact .contact_form td input, .contact .contact_form td textarea {
    border: solid 1px #CCC;
}
.contact .contact_form tr:nth-last-child(1) td input{
    width: 30px;
    height: 30px;
    padding: 0;
    vertical-align: middle;
}
.contact .contact_form tr:nth-last-child(1) td input + span{
    vertical-align: middle;
}
.contact .submit_area{
    text-align: center;
    margin: 50px auto 0px;
}
.contact .submit_btn{
    width: 200px;
    height: 50px;
    background: linear-gradient(45deg, rgba(226,121,51,1) 0%, rgba(255,167,74,1) 100%);
    border: none;
    color: #fff;
    font-size: 16px;
}
.contact .cof_01{
	padding: 10px;
	border: solid 1px #CCC;
	width: 100%;
	color: #444;
}
.contact .name input {
	max-width: 150px;
}
.g-recaptcha{
    margin: 0px 0px 50px!important;
}

@media all and (max-width: 1099px) {
	.contact .content .top-title {
		background-color: rgba(255, 255, 255, .5);
		margin: 0 auto;
		padding: 100px 0 50px 0;
		font-size: 4rem;
		font-weight: 700;
	}
	.contact .content .top-title span {
		margin-top: 6px;
		display: block;
		font-size: 2rem;
		letter-spacing: 0.05em;
	}

	.contact .form {
		padding: 50px 10px 100px 15px;
	}
	
	.contact .form-title {
		padding-top: 0;

	}
	.contact .form-title p {
		font-size: 1.4rem;
		margin-bottom: 50px;
	}
	
    .contact .contact_form{
        margin: 40px auto 0px;
    }
    .contact .contact_form th{
        margin: 20px 0px;
        padding: 0;
        display: table;
    }
    .contact .contact_form td{
        margin: 10px 0px 20px 20px;
        padding: 0;
        display: table;
    }
    .contact .contact_form td span{
        margin: 0 20px 0 0;
    }
    .contact .contact_form tr:nth-child(1) td:nth-last-child(1) span{
        margin: 0 20px 0 0;
    }
    .contact .contact_form td input, .contact .contact_form td textarea{
        width: 94%;
    }
}

/*------------------------------------------------------------
	Modal privacy-policy
------------------------------------------------------------*/
#Modal-privacy .modal-body {
	text-align: left;
	background-color: #eee;
}
#Modal-privacy .content p {
	font-size: 1.1rem;
	font-family: Arial, Helvetica, sans-serif;
	letter-spacing: .5px;
}

#Modal-privacy .content p.title {
	font-weight: bold;
	font-size: 1.3rem;
	margin: 20px auto 5px;
}

#Modal-privacy .content ul {
	margin: 0 0 0 20px;
}

#Modal-privacy .content ul li {
	list-style: disc;
	font-size: 1rem;
	font-family: Arial, Helvetica, sans-serif;
}

@media all and (max-width: 1099px) {

}
/*------------------------------------------------------------
	Modal contact
------------------------------------------------------------*/
#Modal-contact {
	font-family: 'Kiwi Maru', serif;
}

#Modal-contact .modal-body {
	text-align: left;
	background-color: #eee;
}

@media all and (max-width: 1099px) {

}

.grecaptcha-badge {
	z-index: 9;
}